From 296984ea716a1acb669e6a0f6dc3549ef507e2a0 Mon Sep 17 00:00:00 2001 From: nhatvu148 Date: Sat, 21 Feb 2026 16:40:33 +0700 Subject: [PATCH 01/14] feat: v2 rewrite with monorepo + live OpenSky --- .env.example | 14 +++++++++++ .gitignore | 44 +++++++--------------------------- README.md | 28 ++++++++++++++++++---- package.json | 68 ++++++++++++---------------------------------------- 4 files changed, 61 insertions(+), 93 deletions(-) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..365dc74 --- /dev/null +++ b/.env.example @@ -0,0 +1,14 @@ +# FlightAware AeroAPI +FLIGHTAWARE_API_KEY=your-key-here + +# MapTiler (for satellite tile layer) +NEXT_PUBLIC_MAPTILER_TOKEN=your-token-here + +# API URL (used by web app) +NEXT_PUBLIC_API_URL=http://localhost:5001 + +# Database (for future use) +DATABASE_URL=postgresql://postgres:postgres@localhost:5432/flight_tracker + +# Redis (for future use) +REDIS_URL=redis://localhost:6379 diff --git a/.gitignore b/.gitignore index a276a84..d54340b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,37 +1,9 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. - -# dependencies -/node_modules -/.pnp -.pnp.js - -# testing -/coverage - -# next.js -/.next/ -/out/ - -# production -/build - -# misc -.DS_Store -*.pem - -# debug -npm-debug.log* -yarn-debug.log* -yarn-error.log* -.pnpm-debug.log* - -# local env files -.env*.local - -# vercel -.vercel - -# typescript -*.tsbuildinfo - +node_modules/ +dist/ +.next/ +out/ +.turbo/ .env +.env.local +*.tsbuildinfo +.DS_Store diff --git a/README.md b/README.md index 30c18b1..9d34abe 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,27 @@ -## Run docker compose for development +# Flight Tracker -- docker compose -f docker-compose-dev.yml up --build +Real-time flight tracking with AI-powered travel assistance. Built by an aerospace engineer. -## Run docker compose for production +## Quick Start -- docker compose up --build +```bash +npm install +task dev # Start web (3000) + api (5001) +``` + +## Architecture + +Monorepo with npm workspaces + Turborepo: + +- `apps/web` — Next.js 16 (App Router, Tailwind, Leaflet map) +- `apps/api` — Express API (flight data, caching, AI) +- `apps/mobile` — Vite SPA + Capacitor (iOS/Android) +- `packages/types` — Shared TypeScript types +- `packages/config` — Map layers, API config, constants +- `packages/utils` — Map helpers (angle snapping, bounds check) +- `packages/ui` — Shared React components +- `packages/api-client` — API client (fetch wrappers) + +## Environment + +Copy `.env.example` to `.env` and fill in your API keys. diff --git a/package.json b/package.json index b4122a1..a1c82f0 100644 --- a/package.json +++ b/package.json @@ -2,60 +2,22 @@ "name": "flight-tracker", "version": "0.1.0", "private": true, + "workspaces": [ + "apps/*", + "packages/*" + ], "scripts": { - "dev": "next dev", - "build": "next build", - "start": "next start", - "lint": "next lint", - "format": "prettier --write \"pages/**/*.+(ts|tsx)\" \"components/**/*.+(ts|tsx)\" \"tests/**/*.+(ts|tsx)\" \"redux/**/*.+(ts|tsx)\"", - "test": "jest" - }, - "dependencies": { - "@material-ui/core": "^4.12.4", - "@material-ui/icons": "^4.11.3", - "axios": "^0.27.2", - "classnames": "^2.3.1", - "leaflet": "^1.8.0", - "leaflet-defaulticon-compatibility": "^0.1.1", - "leaflet-easybutton": "^2.4.0", - "leaflet-fullscreen": "^1.0.2", - "leaflet-geosearch": "^3.6.1", - "leaflet-markers-canvas": "^0.2.2", - "leaflet-minimap": "^3.6.1", - "leaflet-sidebar-v2": "^3.2.3", - "leaflet-tracksymbol": "^1.0.8", - "leaflet.mousecoordinatesystems": "^1.0.2", - "next": "^12.2.0", - "next-compose-plugins": "^2.2.1", - "next-images": "^1.8.4", - "node-sass": "^7.0.1", - "rbush": "^3.0.1", - "react": "18.2.0", - "react-dom": "18.2.0", - "react-leaflet": "^4.0.0", - "react-query": "^3.39.1", - "react-redux": "^8.0.2", - "redux": "^4.2.0", - "redux-devtools-extension": "^2.13.9", - "redux-thunk": "^2.4.1", - "sharp": "^0.30.7" + "dev": "turbo run dev", + "build": "turbo run build", + "lint": "turbo run lint", + "clean": "turbo run clean", + "test": "turbo run test" }, "devDependencies": { - "@testing-library/jest-dom": "^5.16.4", - "@testing-library/react": "^13.3.0", - "@testing-library/user-event": "^14.2.1", - "@types/jest": "^28.1.3", - "@types/leaflet": "^1.7.11", - "@types/node": "18.0.0", - "@types/react": "18.0.14", - "@types/react-dom": "18.0.5", - "@types/react-redux": "^7.1.24", - "eslint": "8.17.0", - "eslint-config-next": "12.1.6", - "jest": "^28.1.1", - "jest-environment-jsdom": "^28.1.1", - "prettier": "^2.7.1", - "ts-jest": "^28.0.5", - "typescript": "4.7.3" - } + "turbo": "^2.7.2" + }, + "engines": { + "node": ">=20.0.0" + }, + "packageManager": "npm@10.0.0" } From 643a0e8d5964aef57b0ab2612d3d83c7de3ab2b1 Mon Sep 17 00:00:00 2001 From: nhatvu148 Date: Sat, 21 Feb 2026 16:40:46 +0700 Subject: [PATCH 02/14] feat: v2 rewrite with monorepo + live OpenSky --- Dockerfile | 6 - Dockerfile.dev | 8 - Taskfile.yml | 74 + api/airports.ts | 15 - api/flights.ts | 15 - apps/api/package.json | 29 + apps/api/src/index.ts | 28 + apps/api/src/routes/airports.routes.ts | 29 + apps/api/src/routes/flights.routes.ts | 73 + apps/api/src/services/opensky.service.ts | 126 + apps/api/tsconfig.json | 10 + apps/mobile/index.html | 12 + apps/mobile/package.json | 31 + apps/mobile/src/App.tsx | 13 + apps/mobile/src/main.tsx | 12 + apps/mobile/tsconfig.json | 10 + apps/mobile/vite.config.ts | 31 + apps/web/next-env.d.ts | 6 + apps/web/next.config.ts | 14 + apps/web/package.json | 36 + apps/web/postcss.config.mjs | 8 + .../web/public/aircraft-icons}/aircraft-0.svg | 0 .../public/aircraft-icons}/aircraft-105.svg | 0 .../public/aircraft-icons}/aircraft-120.svg | 0 .../public/aircraft-icons}/aircraft-135.svg | 0 .../public/aircraft-icons}/aircraft-15.svg | 0 .../public/aircraft-icons}/aircraft-150.svg | 0 .../public/aircraft-icons}/aircraft-165.svg | 0 .../public/aircraft-icons}/aircraft-180.svg | 0 .../public/aircraft-icons}/aircraft-195.svg | 0 .../public/aircraft-icons}/aircraft-210.svg | 0 .../public/aircraft-icons}/aircraft-225.svg | 0 .../public/aircraft-icons}/aircraft-240.svg | 0 .../public/aircraft-icons}/aircraft-255.svg | 0 .../public/aircraft-icons}/aircraft-270.svg | 0 .../public/aircraft-icons}/aircraft-285.svg | 0 .../public/aircraft-icons}/aircraft-30.svg | 0 .../public/aircraft-icons}/aircraft-300.svg | 0 .../public/aircraft-icons}/aircraft-315.svg | 0 .../public/aircraft-icons}/aircraft-330.svg | 0 .../public/aircraft-icons}/aircraft-345.svg | 0 .../public/aircraft-icons}/aircraft-360.svg | 0 .../public/aircraft-icons}/aircraft-45.svg | 0 .../public/aircraft-icons}/aircraft-60.svg | 0 .../public/aircraft-icons}/aircraft-75.svg | 0 .../public/aircraft-icons}/aircraft-90.svg | 0 {public => apps/web/public}/landing.svg | 0 apps/web/src/app/globals.css | 1 + apps/web/src/app/layout.tsx | 23 + apps/web/src/app/page.tsx | 9 + apps/web/src/app/providers.tsx | 12 + apps/web/src/components/map/FlightMap.tsx | 88 + apps/web/src/components/map/FlightMarkers.tsx | 77 + apps/web/src/components/map/MapLoader.tsx | 16 + apps/web/src/hooks/useFlights.ts | 30 + apps/web/src/stores/map-store.ts | 31 + apps/web/tsconfig.json | 13 + components/Card/Card.js | 71 - components/Card/CardAvatar.js | 48 - components/Card/CardBody.js | 54 - components/Card/CardFooter.js | 48 - components/Card/CardHeader.js | 61 - components/CustomButtons/Button.js | 92 - components/CustomInput/CustomInput.js | 100 - components/Grid/GridContainer.js | 36 - components/Grid/GridItem.js | 38 - components/Header/Header.js | 152 - components/Header/HeaderLinks.js | 331 - components/Loading.tsx | 5 - components/Parallax/Parallax.js | 70 - components/Popup.test.tsx | 11 - components/Popup.tsx | 187 - components/PreRoute.tsx | 28 - components/Typography/Danger.js | 23 - components/Typography/Info.js | 23 - components/Typography/Muted.js | 23 - components/Typography/Primary.js | 23 - components/Typography/Quote.js | 38 - components/Typography/Rose.js | 23 - components/Typography/Small.js | 23 - components/Typography/Success.js | 23 - components/Typography/Warning.js | 23 - components/ZoomLevel.test.tsx | 11 - components/ZoomLevel.tsx | 93 - components/layout.tsx | 31 - components/main.test.tsx | 11 - components/main.tsx | 91 - docker-compose-dev.yml | 13 - docker-compose.yml | 17 - helpers/index.test.ts | 33 - helpers/index.ts | 213 - install-docker-compose.sh | 3 - install-docker.sh | 13 - jest.config.js | 14 - next-env.d.ts | 5 - next.config.js | 14 - package-lock.json | 5359 ++++++++++++++ packages/api-client/package.json | 14 + packages/api-client/src/index.ts | 45 + packages/api-client/tsconfig.json | 4 + packages/config/package.json | 14 + packages/config/src/index.ts | 69 + packages/config/tsconfig.json | 8 + packages/types/package.json | 14 + .../types.ts => packages/types/src/flight.ts | 8 +- packages/types/src/index.ts | 2 + packages/types/src/user.ts | 27 + packages/types/tsconfig.json | 8 + packages/ui/package.json | 15 + packages/ui/src/index.ts | 2 + packages/ui/tsconfig.json | 4 + packages/utils/package.json | 14 + packages/utils/src/index.ts | 1 + packages/utils/src/map.ts | 39 + packages/utils/tsconfig.json | 8 + pages-sections/components/SectionCarousel.js | 61 - pages-sections/components/SectionNavbars.js | 117 - pages/404.tsx | 11 - pages/[coordinates]/[zoom].tsx | 66 - pages/[coordinates]/index.tsx | 8 - pages/_app.tsx | 42 - pages/_document.tsx | 83 - pages/about.tsx | 5 - pages/aircraft.tsx | 5 - pages/airlines.tsx | 5 - pages/airports.tsx | 5 - pages/flights.tsx | 5 - pages/index.tsx | 8 - public/NhatVu.png | Bin 29658 -> 0 bytes public/aircraft.svg | 10 - public/aircraft_old.svg | 7 - public/aircrafts-type-2/aircraft-0.svg | 17 - public/aircrafts-type-2/aircraft-180.svg | 10 - public/aircrafts-type-2/aircraft-90.svg | 10 - public/favicon.ico | Bin 1901 -> 0 bytes public/vercel.svg | 4 - redux/actions/mainActions.ts | 51 - redux/reducers/index.ts | 11 - redux/reducers/mainReducer.ts | 50 - redux/selectors.ts | 3 - redux/store.ts | 13 - redux/types.ts | 39 - styles/Home.module.css | 116 - styles/Popup.module.scss | 16 - styles/css/nextjs-material-kit-pro.css | 1715 ----- styles/css/nextjs-material-kit-pro.css.map | 28 - styles/css/nextjs-material-kit-pro.min.css | 3 - styles/css/react-demo.css | 23 - styles/globals.css | 22 - styles/jss/nextjs-material-kit-pro.js | 480 -- .../buttonGroupStyle.js | 37 - .../components/accordionStyle.js | 141 - .../components/badgeStyle.js | 50 - .../components/buttonStyle.js | 743 -- .../components/cardAvatarStyle.js | 55 - .../components/cardBodyStyle.js | 46 - .../components/cardFooterStyle.js | 25 - .../components/cardHeaderStyle.js | 77 - .../components/cardStyle.js | 194 - .../components/customDropdownStyle.js | 226 - .../components/customFileInputStyle.js | 20 - .../components/customInputStyle.js | 102 - .../components/customLinearProgressStyle.js | 65 - .../components/customTabsStyle.js | 70 - .../components/footerStyle.js | 172 - .../components/headerLinksStyle.js | 213 - .../components/headerStyle.js | 212 - .../components/infoStyle.js | 76 - .../components/instructionStyle.js | 13 - .../components/mediaStyle.js | 73 - .../components/navPillsStyle.js | 162 - .../components/paginationStyle.js | 161 - .../components/parallaxStyle.js | 187 - .../components/snackbarContentStyle.js | 99 - .../components/tableStyle.js | 121 - .../components/typographyStyle.js | 87 - .../customCheckboxRadioSwitchStyle.js | 188 - .../customSelectStyle.js | 133 - .../nextjs-material-kit-pro/imagesStyles.js | 50 - .../jss/nextjs-material-kit-pro/modalStyle.js | 160 - .../pages/aboutUsSections/contactStyle.js | 31 - .../pages/aboutUsSections/descriptionStyle.js | 21 - .../pages/aboutUsSections/officeStyle.js | 31 - .../pages/aboutUsSections/servicesStyle.js | 22 - .../pages/aboutUsSections/teamStyle.js | 40 - .../pages/aboutUsStyle.js | 67 - .../pages/blogPostPageStyle.js | 66 - .../blogPostSections/sectionBlogInfoStyle.js | 33 - .../blogPostSections/sectionCommentsStyle.js | 38 - .../sectionSimilarStoriesStyle.js | 27 - .../blogPostSections/sectionTextStyle.js | 30 - .../pages/blogPostsPageStyle.js | 64 - .../blogPostsSections/sectionImageStyle.js | 46 - .../sectionInterestedStyle.js | 25 - .../blogPostsSections/sectionPillsStyle.js | 43 - .../sectionSubscribeLineStyle.js | 32 - .../pages/componentsSections/basicsStyle.js | 41 - .../pages/componentsSections/carouselStyle.js | 14 - .../pages/componentsSections/contentAreas.js | 97 - .../pages/componentsSections/footerStyle.js | 188 - .../componentsSections/javascriptStyles.js | 94 - .../pages/componentsSections/navbarsStyle.js | 70 - .../componentsSections/notificationsStyles.js | 30 - .../pages/componentsSections/pillsStyle.js | 16 - .../pages/componentsSections/preFooter.js | 115 - .../pages/componentsSections/sectionCards.js | 206 - .../pages/componentsSections/tabsStyle.js | 13 - .../componentsSections/typographyStyle.js | 49 - .../pages/componentsStyle.js | 109 - .../pages/contactUsStyle.js | 75 - .../pages/ecommerceSections/blogStyle.js | 29 - .../ecommerceSections/latestOffersStyle.js | 49 - .../pages/ecommerceSections/productsStyle.js | 99 - .../pages/ecommerceStyle.js | 138 - .../pages/errorPageStyles.js | 108 - .../pages/landingPageSections/productStyle.js | 20 - .../pages/landingPageSections/teamStyle.js | 54 - .../pages/landingPageSections/workStyle.js | 35 - .../pages/landingPageStyle.js | 73 - .../pages/loginPageStyle.js | 122 - .../pages/presentationSections/cardsStyle.js | 46 - .../presentationSections/componentsStyle.js | 145 - .../presentationSections/contentStyle.js | 91 - .../presentationSections/descriptionStyle.js | 31 - .../presentationSections/examplesStyle.js | 47 - .../presentationSections/freeDemoStyle.js | 84 - .../presentationSections/overviewStyle.js | 111 - .../presentationSections/pricingStyle.js | 97 - .../presentationSections/sectionsStyle.js | 51 - .../pages/presentationStyle.js | 58 - .../pages/pricingSections/featuresStyle.js | 15 - .../pages/pricingSections/pricingStyle.js | 32 - .../pages/pricingStyle.js | 67 - .../pages/productStyle.js | 192 - .../pages/profilePageStyle.js | 148 - .../pages/sectionsPageStyle.js | 9 - .../pages/sectionsSections/blogsStyle.js | 51 - .../pages/sectionsSections/contactsStyle.js | 113 - .../pages/sectionsSections/featuresStyle.js | 108 - .../pages/sectionsSections/headersStyle.js | 94 - .../pages/sectionsSections/pricingStyle.js | 124 - .../pages/sectionsSections/projectsStyle.js | 97 - .../pages/sectionsSections/teamsStyle.js | 87 - .../sectionsSections/testimonialsStyle.js | 108 - .../pages/shoppingCartStyle.js | 125 - .../pages/signupPageStyle.js | 143 - .../nextjs-material-kit-pro/popoverStyles.js | 59 - .../nextjs-material-kit-pro/rotatingCards.js | 132 - .../nextjs-material-kit-pro/tooltipsStyle.js | 42 - styles/scss/core/_fileupload.scss | 123 - styles/scss/core/_misc.scss | 252 - styles/scss/core/_mixins.scss | 1 - styles/scss/core/_page-transition.scss | 37 - styles/scss/core/_variables.scss | 17 - styles/scss/core/mixins/_colored-shadows.scss | 128 - .../_bootstrap-material-design-base.scss | 36 - .../variables/_bootstrap-material-design.scss | 232 - styles/scss/core/variables/_brand.scss | 7 - styles/scss/core/variables/_colors-map.scss | 311 - styles/scss/core/variables/_colors.scss | 315 - styles/scss/core/variables/_functions.scss | 91 - styles/scss/core/variables/_shadow.scss | 35 - styles/scss/core/variables/_variables.scss | 945 --- styles/scss/nextjs-material-kit-pro.scss | 15 - styles/scss/plugins/_plugin-nouislider.scss | 345 - .../scss/plugins/_plugin-react-datetime.scss | 382 - .../plugins/_plugin-react-image-gallery.scss | 85 - styles/scss/plugins/_plugin-react-slick.scss | 254 - .../scss/plugins/_plugin-react-tagsinput.scss | 123 - tests/lib/formatCurrency.test.ts | 10 - tests/lib/formatCurrency.ts | 1 - tests/lib/math.test.ts | 57 - tests/lib/math.ts | 8 - tests/lib/numbers.test.ts | 17 - tests/lib/numbers.ts | 3 - tests/lib/validation.test.ts | 67 - tests/lib/validation.ts | 11 - tests/pages/index.spec.tsx | 86 - tests/setupTests.ts | 1 - tsconfig.base.json | 18 + tsconfig.json | 24 - turbo.json | 22 + yarn.lock | 6193 ----------------- 283 files changed, 6533 insertions(+), 24350 deletions(-) delete mode 100644 Dockerfile delete mode 100644 Dockerfile.dev create mode 100644 Taskfile.yml delete mode 100644 api/airports.ts delete mode 100644 api/flights.ts create mode 100644 apps/api/package.json create mode 100644 apps/api/src/index.ts create mode 100644 apps/api/src/routes/airports.routes.ts create mode 100644 apps/api/src/routes/flights.routes.ts create mode 100644 apps/api/src/services/opensky.service.ts create mode 100644 apps/api/tsconfig.json create mode 100644 apps/mobile/index.html create mode 100644 apps/mobile/package.json create mode 100644 apps/mobile/src/App.tsx create mode 100644 apps/mobile/src/main.tsx create mode 100644 apps/mobile/tsconfig.json create mode 100644 apps/mobile/vite.config.ts create mode 100644 apps/web/next-env.d.ts create mode 100644 apps/web/next.config.ts create mode 100644 apps/web/package.json create mode 100644 apps/web/postcss.config.mjs rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-0.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-105.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-120.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-135.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-15.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-150.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-165.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-180.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-195.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-210.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-225.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-240.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-255.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-270.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-285.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-30.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-300.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-315.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-330.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-345.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-360.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-45.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-60.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-75.svg (100%) rename {public/aircrafts-type-1 => apps/web/public/aircraft-icons}/aircraft-90.svg (100%) rename {public => apps/web/public}/landing.svg (100%) create mode 100644 apps/web/src/app/globals.css create mode 100644 apps/web/src/app/layout.tsx create mode 100644 apps/web/src/app/page.tsx create mode 100644 apps/web/src/app/providers.tsx create mode 100644 apps/web/src/components/map/FlightMap.tsx create mode 100644 apps/web/src/components/map/FlightMarkers.tsx create mode 100644 apps/web/src/components/map/MapLoader.tsx create mode 100644 apps/web/src/hooks/useFlights.ts create mode 100644 apps/web/src/stores/map-store.ts create mode 100644 apps/web/tsconfig.json delete mode 100644 components/Card/Card.js delete mode 100644 components/Card/CardAvatar.js delete mode 100644 components/Card/CardBody.js delete mode 100644 components/Card/CardFooter.js delete mode 100644 components/Card/CardHeader.js delete mode 100644 components/CustomButtons/Button.js delete mode 100644 components/CustomInput/CustomInput.js delete mode 100644 components/Grid/GridContainer.js delete mode 100644 components/Grid/GridItem.js delete mode 100644 components/Header/Header.js delete mode 100644 components/Header/HeaderLinks.js delete mode 100644 components/Loading.tsx delete mode 100644 components/Parallax/Parallax.js delete mode 100644 components/Popup.test.tsx delete mode 100644 components/Popup.tsx delete mode 100644 components/PreRoute.tsx delete mode 100644 components/Typography/Danger.js delete mode 100644 components/Typography/Info.js delete mode 100644 components/Typography/Muted.js delete mode 100644 components/Typography/Primary.js delete mode 100644 components/Typography/Quote.js delete mode 100644 components/Typography/Rose.js delete mode 100644 components/Typography/Small.js delete mode 100644 components/Typography/Success.js delete mode 100644 components/Typography/Warning.js delete mode 100644 components/ZoomLevel.test.tsx delete mode 100644 components/ZoomLevel.tsx delete mode 100644 components/layout.tsx delete mode 100644 components/main.test.tsx delete mode 100644 components/main.tsx delete mode 100644 docker-compose-dev.yml delete mode 100644 docker-compose.yml delete mode 100644 helpers/index.test.ts delete mode 100644 helpers/index.ts delete mode 100644 install-docker-compose.sh delete mode 100644 install-docker.sh delete mode 100644 jest.config.js delete mode 100644 next-env.d.ts delete mode 100644 next.config.js create mode 100644 package-lock.json create mode 100644 packages/api-client/package.json create mode 100644 packages/api-client/src/index.ts create mode 100644 packages/api-client/tsconfig.json create mode 100644 packages/config/package.json create mode 100644 packages/config/src/index.ts create mode 100644 packages/config/tsconfig.json create mode 100644 packages/types/package.json rename components/types.ts => packages/types/src/flight.ts (89%) create mode 100644 packages/types/src/index.ts create mode 100644 packages/types/src/user.ts create mode 100644 packages/types/tsconfig.json create mode 100644 packages/ui/package.json create mode 100644 packages/ui/src/index.ts create mode 100644 packages/ui/tsconfig.json create mode 100644 packages/utils/package.json create mode 100644 packages/utils/src/index.ts create mode 100644 packages/utils/src/map.ts create mode 100644 packages/utils/tsconfig.json delete mode 100644 pages-sections/components/SectionCarousel.js delete mode 100644 pages-sections/components/SectionNavbars.js delete mode 100644 pages/404.tsx delete mode 100644 pages/[coordinates]/[zoom].tsx delete mode 100644 pages/[coordinates]/index.tsx delete mode 100644 pages/_app.tsx delete mode 100644 pages/_document.tsx delete mode 100644 pages/about.tsx delete mode 100644 pages/aircraft.tsx delete mode 100644 pages/airlines.tsx delete mode 100644 pages/airports.tsx delete mode 100644 pages/flights.tsx delete mode 100644 pages/index.tsx delete mode 100644 public/NhatVu.png delete mode 100644 public/aircraft.svg delete mode 100644 public/aircraft_old.svg delete mode 100644 public/aircrafts-type-2/aircraft-0.svg delete mode 100644 public/aircrafts-type-2/aircraft-180.svg delete mode 100644 public/aircrafts-type-2/aircraft-90.svg delete mode 100644 public/favicon.ico delete mode 100644 public/vercel.svg delete mode 100644 redux/actions/mainActions.ts delete mode 100644 redux/reducers/index.ts delete mode 100644 redux/reducers/mainReducer.ts delete mode 100644 redux/selectors.ts delete mode 100644 redux/store.ts delete mode 100644 redux/types.ts delete mode 100644 styles/Home.module.css delete mode 100644 styles/Popup.module.scss delete mode 100644 styles/css/nextjs-material-kit-pro.css delete mode 100644 styles/css/nextjs-material-kit-pro.css.map delete mode 100644 styles/css/nextjs-material-kit-pro.min.css delete mode 100644 styles/css/react-demo.css delete mode 100644 styles/globals.css delete mode 100644 styles/jss/nextjs-material-kit-pro.js delete mode 100644 styles/jss/nextjs-material-kit-pro/buttonGroupStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/accordionStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/badgeStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/buttonStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/cardAvatarStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/cardBodyStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/cardFooterStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/cardHeaderStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/cardStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/customDropdownStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/customFileInputStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/customInputStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/customLinearProgressStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/customTabsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/footerStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/headerLinksStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/headerStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/infoStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/instructionStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/mediaStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/navPillsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/paginationStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/parallaxStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/snackbarContentStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/tableStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/components/typographyStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/customCheckboxRadioSwitchStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/customSelectStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/imagesStyles.js delete mode 100644 styles/jss/nextjs-material-kit-pro/modalStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/contactStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/descriptionStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/officeStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/servicesStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/teamStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/aboutUsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/blogPostPageStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/blogPostSections/sectionBlogInfoStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/blogPostSections/sectionCommentsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/blogPostSections/sectionSimilarStoriesStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/blogPostSections/sectionTextStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/blogPostsPageStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/blogPostsSections/sectionImageStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/blogPostsSections/sectionInterestedStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/blogPostsSections/sectionPillsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/blogPostsSections/sectionSubscribeLineStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/componentsSections/basicsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/componentsSections/carouselStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/componentsSections/contentAreas.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/componentsSections/footerStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/componentsSections/javascriptStyles.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/componentsSections/navbarsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/componentsSections/notificationsStyles.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/componentsSections/pillsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/componentsSections/preFooter.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/componentsSections/sectionCards.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/componentsSections/tabsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/componentsSections/typographyStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/componentsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/contactUsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/ecommerceSections/blogStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/ecommerceSections/latestOffersStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/ecommerceSections/productsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/ecommerceStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/errorPageStyles.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/landingPageSections/productStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/landingPageSections/teamStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/landingPageSections/workStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/landingPageStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/loginPageStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/presentationSections/cardsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/presentationSections/componentsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/presentationSections/contentStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/presentationSections/descriptionStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/presentationSections/examplesStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/presentationSections/freeDemoStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/presentationSections/overviewStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/presentationSections/pricingStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/presentationSections/sectionsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/presentationStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/pricingSections/featuresStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/pricingSections/pricingStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/pricingStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/productStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/profilePageStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/sectionsPageStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/sectionsSections/blogsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/sectionsSections/contactsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/sectionsSections/featuresStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/sectionsSections/headersStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/sectionsSections/pricingStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/sectionsSections/projectsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/sectionsSections/teamsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/sectionsSections/testimonialsStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/shoppingCartStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/pages/signupPageStyle.js delete mode 100644 styles/jss/nextjs-material-kit-pro/popoverStyles.js delete mode 100644 styles/jss/nextjs-material-kit-pro/rotatingCards.js delete mode 100644 styles/jss/nextjs-material-kit-pro/tooltipsStyle.js delete mode 100644 styles/scss/core/_fileupload.scss delete mode 100644 styles/scss/core/_misc.scss delete mode 100644 styles/scss/core/_mixins.scss delete mode 100644 styles/scss/core/_page-transition.scss delete mode 100644 styles/scss/core/_variables.scss delete mode 100644 styles/scss/core/mixins/_colored-shadows.scss delete mode 100644 styles/scss/core/variables/_bootstrap-material-design-base.scss delete mode 100644 styles/scss/core/variables/_bootstrap-material-design.scss delete mode 100644 styles/scss/core/variables/_brand.scss delete mode 100644 styles/scss/core/variables/_colors-map.scss delete mode 100644 styles/scss/core/variables/_colors.scss delete mode 100644 styles/scss/core/variables/_functions.scss delete mode 100644 styles/scss/core/variables/_shadow.scss delete mode 100644 styles/scss/core/variables/_variables.scss delete mode 100644 styles/scss/nextjs-material-kit-pro.scss delete mode 100644 styles/scss/plugins/_plugin-nouislider.scss delete mode 100644 styles/scss/plugins/_plugin-react-datetime.scss delete mode 100644 styles/scss/plugins/_plugin-react-image-gallery.scss delete mode 100644 styles/scss/plugins/_plugin-react-slick.scss delete mode 100644 styles/scss/plugins/_plugin-react-tagsinput.scss delete mode 100644 tests/lib/formatCurrency.test.ts delete mode 100644 tests/lib/formatCurrency.ts delete mode 100644 tests/lib/math.test.ts delete mode 100644 tests/lib/math.ts delete mode 100644 tests/lib/numbers.test.ts delete mode 100644 tests/lib/numbers.ts delete mode 100644 tests/lib/validation.test.ts delete mode 100644 tests/lib/validation.ts delete mode 100644 tests/pages/index.spec.tsx delete mode 100644 tests/setupTests.ts create mode 100644 tsconfig.base.json delete mode 100644 tsconfig.json create mode 100644 turbo.json delete mode 100644 yarn.lock diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 5b74b73..0000000 --- a/Dockerfile +++ /dev/null @@ -1,6 +0,0 @@ -FROM node:16 - -WORKDIR /app -COPY ./package.json . -RUN yarn -COPY . . \ No newline at end of file diff --git a/Dockerfile.dev b/Dockerfile.dev deleted file mode 100644 index da23b5b..0000000 --- a/Dockerfile.dev +++ /dev/null @@ -1,8 +0,0 @@ -FROM node:16 - -WORKDIR /app -COPY ./package.json . -RUN yarn -COPY . . - -CMD ["yarn", "dev"] \ No newline at end of file diff --git a/Taskfile.yml b/Taskfile.yml new file mode 100644 index 0000000..a9ceaa7 --- /dev/null +++ b/Taskfile.yml @@ -0,0 +1,74 @@ +version: "3" + +includes: + db: + taskfile: taskfiles/db.yml + optional: true + +tasks: + dev: + desc: Start all services (web + api) + cmds: + - npx turbo run dev + + dev:web: + desc: Start web dev server only + dir: apps/web + cmds: + - npm run dev + + dev:api: + desc: Start API dev server only + dir: apps/api + cmds: + - npm run dev + + build: + desc: Build all packages + cmds: + - npx turbo run build + + build:web: + desc: Build web app + dir: apps/web + cmds: + - npm run build + + build:api: + desc: Build API + dir: apps/api + cmds: + - npm run build + + build:mobile: + desc: Build mobile app (Vite + Cap sync) + dir: apps/mobile + cmds: + - npm run build + - npx cap sync + + ios: + desc: Run iOS simulator + dir: apps/mobile + cmds: + - npm run build + - test -d ios || npx cap add ios + - npx cap sync + - npx cap run ios + + ios:open: + desc: Open Xcode project + dir: apps/mobile + cmds: + - npx cap open ios + + lint: + desc: Lint all packages + cmds: + - npx turbo run lint + + clean: + desc: Clean all build artifacts + cmds: + - npx turbo run clean + - rm -rf node_modules diff --git a/api/airports.ts b/api/airports.ts deleted file mode 100644 index 756fbfc..0000000 --- a/api/airports.ts +++ /dev/null @@ -1,15 +0,0 @@ -import axios from "axios"; -import getConfig from "next/config"; - -export const getAirports = async (limit: number = undefined) => { - const { publicRuntimeConfig } = getConfig(); - const response = await axios.get( - `${publicRuntimeConfig.apiURL}/api/airports`, - { - params: { - limit, - }, - } - ); - return response.data; -}; diff --git a/api/flights.ts b/api/flights.ts deleted file mode 100644 index 6b3c053..0000000 --- a/api/flights.ts +++ /dev/null @@ -1,15 +0,0 @@ -import axios from "axios"; -import getConfig from "next/config"; - -export const getFlights = async (limit: number = undefined) => { - const { publicRuntimeConfig } = getConfig(); - let API = publicRuntimeConfig.apiURL.includes("aviation-edge") - ? `${publicRuntimeConfig.apiURL}/v2/public/flights?key=${publicRuntimeConfig.aviationToken}` - : `${publicRuntimeConfig.apiURL}/api/flights`; - const response = await axios.get(API, { - params: { - limit, - }, - }); - return response.data; -}; diff --git a/apps/api/package.json b/apps/api/package.json new file mode 100644 index 0000000..964b344 --- /dev/null +++ b/apps/api/package.json @@ -0,0 +1,29 @@ +{ + "name": "@flight-tracker/api", + "version": "0.1.0", + "private": true, + "scripts": { + "dev": "tsx watch src/index.ts", + "build": "tsc", + "start": "node dist/index.js", + "clean": "rm -rf dist" + }, + "dependencies": { + "@flight-tracker/types": "*", + "@flight-tracker/config": "*", + "cors": "^2.8.5", + "express": "^4.21.0", + "helmet": "^8.0.0", + "morgan": "^1.10.0", + "compression": "^1.7.5" + }, + "devDependencies": { + "@types/cors": "^2.8.17", + "@types/express": "^5.0.0", + "@types/morgan": "^1.9.9", + "@types/compression": "^1.7.5", + "@types/node": "^22.0.0", + "tsx": "^4.19.0", + "typescript": "^5.7.0" + } +} diff --git a/apps/api/src/index.ts b/apps/api/src/index.ts new file mode 100644 index 0000000..3a9e758 --- /dev/null +++ b/apps/api/src/index.ts @@ -0,0 +1,28 @@ +import express from "express"; +import cors from "cors"; +import helmet from "helmet"; +import morgan from "morgan"; +import compression from "compression"; +import { API_CONFIG } from "@flight-tracker/config"; +import { flightsRouter } from "./routes/flights.routes.js"; +import { airportsRouter } from "./routes/airports.routes.js"; + +const app = express(); +const port = process.env.PORT ?? API_CONFIG.defaultPort; + +app.use(cors()); +app.use(helmet()); +app.use(morgan("dev")); +app.use(compression()); +app.use(express.json()); + +app.use("/api/flights", flightsRouter); +app.use("/api/airports", airportsRouter); + +app.get("/api/health", (_req, res) => { + res.json({ status: "ok", timestamp: new Date().toISOString() }); +}); + +app.listen(port, () => { + console.log(`Flight Tracker API running on http://localhost:${port}`); +}); diff --git a/apps/api/src/routes/airports.routes.ts b/apps/api/src/routes/airports.routes.ts new file mode 100644 index 0000000..554361a --- /dev/null +++ b/apps/api/src/routes/airports.routes.ts @@ -0,0 +1,29 @@ +import { Router } from "express"; +import type { AirportData } from "@flight-tracker/types"; + +export const airportsRouter = Router(); + +// GET /api/airports?limit= +airportsRouter.get("/", async (req, res) => { + try { + const { limit } = req.query; + // TODO: Integrate airport data source (OurAirports CSV or DB) + const airports: AirportData[] = []; + res.json(airports); + } catch (error) { + console.error("Error fetching airports:", error); + res.status(500).json({ error: "Failed to fetch airports" }); + } +}); + +// GET /api/airports/:code +airportsRouter.get("/:code", async (req, res) => { + try { + const { code } = req.params; + // TODO: Fetch single airport detail + res.json({ message: `Airport ${code} detail — not yet implemented` }); + } catch (error) { + console.error("Error fetching airport:", error); + res.status(500).json({ error: "Failed to fetch airport" }); + } +}); diff --git a/apps/api/src/routes/flights.routes.ts b/apps/api/src/routes/flights.routes.ts new file mode 100644 index 0000000..06cfe4d --- /dev/null +++ b/apps/api/src/routes/flights.routes.ts @@ -0,0 +1,73 @@ +import { Router } from "express"; +import { fetchLiveFlights } from "../services/opensky.service.js"; + +export const flightsRouter = Router(); + +// Keyed cache: "all" for global, "bounds:..." for bounded queries +const cacheMap = new Map(); +const CACHE_TTL = 15_000; // 15 seconds + +// GET /api/flights/live?north=&south=&east=&west= +flightsRouter.get("/live", async (req, res) => { + try { + const { north, south, east, west } = req.query; + + const hasBounds = north && south && east && west; + const cacheKey = hasBounds + ? `bounds:${Math.round(Number(north))},${Math.round(Number(south))},${Math.round(Number(east))},${Math.round(Number(west))}` + : "all"; + + // Return cached data if fresh + const cached = cacheMap.get(cacheKey); + if (cached && Date.now() - cached.timestamp < CACHE_TTL) { + return res.json(cached.data); + } + + const bounds = hasBounds + ? { + north: Number(north), + south: Number(south), + east: Number(east), + west: Number(west), + } + : undefined; + + const flights = await fetchLiveFlights(bounds); + + cacheMap.set(cacheKey, { data: flights, timestamp: Date.now() }); + + // Clean old cache entries (keep max 10) + if (cacheMap.size > 10) { + const oldest = [...cacheMap.entries()].sort( + (a, b) => a[1].timestamp - b[1].timestamp + )[0]; + if (oldest) cacheMap.delete(oldest[0]); + } + + console.log( + `Fetched ${flights.length} flights from OpenSky [${cacheKey}]` + ); + + res.json(flights); + } catch (error) { + console.error("Error fetching flights:", error); + // On error, return any cached data as fallback + const anyCached = cacheMap.values().next().value; + if (anyCached) { + return res.json(anyCached.data); + } + res.status(500).json({ error: "Failed to fetch flights" }); + } +}); + +// GET /api/flights/:id +flightsRouter.get("/:id", async (req, res) => { + try { + const { id } = req.params; + // TODO: Fetch single flight detail from FlightAware + res.json({ message: `Flight ${id} detail — not yet implemented` }); + } catch (error) { + console.error("Error fetching flight:", error); + res.status(500).json({ error: "Failed to fetch flight" }); + } +}); diff --git a/apps/api/src/services/opensky.service.ts b/apps/api/src/services/opensky.service.ts new file mode 100644 index 0000000..2a91fb4 --- /dev/null +++ b/apps/api/src/services/opensky.service.ts @@ -0,0 +1,126 @@ +import type { FlightData } from "@flight-tracker/types"; + +const OPENSKY_API = "https://opensky-network.org/api"; + +interface OpenSkyState { + // [0] icao24, [1] callsign, [2] origin_country, [3] time_position, + // [4] last_contact, [5] longitude, [6] latitude, [7] baro_altitude, + // [8] on_ground, [9] velocity, [10] true_track, [11] vertical_rate, + // [12] sensors, [13] geo_altitude, [14] squawk, [15] spi, [16] position_source + // [17] category + 0: string; // icao24 + 1: string | null; // callsign + 2: string; // origin_country + 3: number | null; // time_position + 4: number; // last_contact + 5: number | null; // longitude + 6: number | null; // latitude + 7: number | null; // baro_altitude + 8: boolean; // on_ground + 9: number | null; // velocity + 10: number | null; // true_track (heading) + 11: number | null; // vertical_rate + 12: number[] | null; // sensors + 13: number | null; // geo_altitude + 14: string | null; // squawk + 15: boolean; // spi + 16: number; // position_source +} + +interface OpenSkyResponse { + time: number; + states: OpenSkyState[] | null; +} + +interface BoundingBox { + north: number; + south: number; + east: number; + west: number; +} + +function toFlightData(state: OpenSkyState): FlightData | null { + const lat = state[6]; + const lng = state[5]; + const heading = state[10]; + const callsign = (state[1] ?? "").trim(); + + // Skip entries without position + if (lat === null || lng === null) return null; + + return { + aircraft: { + iataCode: "", + icaoCode: "", + icao24: state[0], + regNumber: "", + }, + airline: { + iataCode: "", + icaoCode: "", + }, + arrival: { + iataCode: "", + icaoCode: "", + }, + departure: { + iataCode: "", + icaoCode: "", + }, + flight: { + iataNumber: "", + icaoNumber: callsign || state[0], + number: callsign, + }, + geography: { + altitude: state[7] ?? state[13] ?? 0, + direction: heading ?? 0, + latitude: lat, + longitude: lng, + }, + speed: { + horizontal: state[9] ?? 0, + isGround: state[8] ? 1 : 0, + vspeed: state[11] ?? 0, + }, + status: state[8] ? "grounded" : "en-route", + system: { + squawk: state[14] ? parseInt(state[14], 10) : 0, + updated: state[4], + }, + }; +} + +export async function fetchLiveFlights( + bounds?: BoundingBox +): Promise { + let url = `${OPENSKY_API}/states/all`; + + if (bounds) { + const params = new URLSearchParams({ + lamin: String(bounds.south), + lamax: String(bounds.north), + lomin: String(bounds.west), + lomax: String(bounds.east), + }); + url += `?${params}`; + } + + const res = await fetch(url); + + if (!res.ok) { + throw new Error(`OpenSky API error: ${res.status} ${res.statusText}`); + } + + const data: OpenSkyResponse = await res.json(); + + if (!data.states) return []; + + const flights: FlightData[] = []; + for (const state of data.states) { + const flight = toFlightData(state); + if (flight) flights.push(flight); + } + + return flights; +} diff --git a/apps/api/tsconfig.json b/apps/api/tsconfig.json new file mode 100644 index 0000000..0ff12c7 --- /dev/null +++ b/apps/api/tsconfig.json @@ -0,0 +1,10 @@ +{ + "extends": "../../tsconfig.base.json", + "compilerOptions": { + "outDir": "dist", + "rootDir": "src", + "module": "NodeNext", + "moduleResolution": "NodeNext" + }, + "include": ["src"] +} diff --git a/apps/mobile/index.html b/apps/mobile/index.html new file mode 100644 index 0000000..63c9892 --- /dev/null +++ b/apps/mobile/index.html @@ -0,0 +1,12 @@ + + + + + + Flight Tracker + + +
+ + + diff --git a/apps/mobile/package.json b/apps/mobile/package.json new file mode 100644 index 0000000..d776b37 --- /dev/null +++ b/apps/mobile/package.json @@ -0,0 +1,31 @@ +{ + "name": "@flight-tracker/mobile", + "version": "0.1.0", + "private": true, + "type": "module", + "scripts": { + "dev": "vite --port 3001", + "build": "vite build", + "preview": "vite preview", + "clean": "rm -rf dist" + }, + "dependencies": { + "@flight-tracker/types": "*", + "@flight-tracker/config": "*", + "@flight-tracker/utils": "*", + "@flight-tracker/ui": "*", + "@flight-tracker/api-client": "*", + "react": "^19.0.0", + "react-dom": "^19.0.0", + "react-router-dom": "^7.6.0" + }, + "devDependencies": { + "@types/react": "^19.0.0", + "@types/react-dom": "^19.0.0", + "@vitejs/plugin-react": "^4.4.0", + "tailwindcss": "^4.0.0", + "@tailwindcss/vite": "^4.0.0", + "typescript": "^5.7.0", + "vite": "^6.0.0" + } +} diff --git a/apps/mobile/src/App.tsx b/apps/mobile/src/App.tsx new file mode 100644 index 0000000..5636f1b --- /dev/null +++ b/apps/mobile/src/App.tsx @@ -0,0 +1,13 @@ +import { Routes, Route } from "react-router-dom"; + +function Home() { + return
Flight Tracker Mobile — coming soon
; +} + +export default function App() { + return ( + + } /> + + ); +} diff --git a/apps/mobile/src/main.tsx b/apps/mobile/src/main.tsx new file mode 100644 index 0000000..a9247ae --- /dev/null +++ b/apps/mobile/src/main.tsx @@ -0,0 +1,12 @@ +import React from "react"; +import ReactDOM from "react-dom/client"; +import { BrowserRouter } from "react-router-dom"; +import App from "./App"; + +ReactDOM.createRoot(document.getElementById("root")!).render( + + + + + +); diff --git a/apps/mobile/tsconfig.json b/apps/mobile/tsconfig.json new file mode 100644 index 0000000..8c711a1 --- /dev/null +++ b/apps/mobile/tsconfig.json @@ -0,0 +1,10 @@ +{ + "extends": "../../tsconfig.base.json", + "compilerOptions": { + "paths": { + "@/*": ["../web/src/*"] + }, + "noEmit": true + }, + "include": ["src", "../web/src"] +} diff --git a/apps/mobile/vite.config.ts b/apps/mobile/vite.config.ts new file mode 100644 index 0000000..512da1d --- /dev/null +++ b/apps/mobile/vite.config.ts @@ -0,0 +1,31 @@ +import { defineConfig } from "vite"; +import react from "@vitejs/plugin-react"; +import tailwindcss from "@tailwindcss/vite"; +import path from "path"; + +export default defineConfig({ + plugins: [react(), tailwindcss()], + resolve: { + alias: [ + // Catch-all: @/ → apps/web/src/ + { find: /^@\//, replacement: path.resolve(__dirname, "../web/src") + "/" }, + + // Monorepo packages → source (avoids CJS issues) + { + find: "@flight-tracker/utils", + replacement: path.resolve(__dirname, "../../packages/utils/src/index.ts"), + }, + { + find: "@flight-tracker/config", + replacement: path.resolve(__dirname, "../../packages/config/src/index.ts"), + }, + { + find: "@flight-tracker/types", + replacement: path.resolve(__dirname, "../../packages/types/src/index.ts"), + }, + ], + }, + server: { + port: 3001, + }, +}); diff --git a/apps/web/next-env.d.ts b/apps/web/next-env.d.ts new file mode 100644 index 0000000..c4b7818 --- /dev/null +++ b/apps/web/next-env.d.ts @@ -0,0 +1,6 @@ +/// +/// +import "./.next/dev/types/routes.d.ts"; + +// NOTE: This file should not be edited +// see https://nextjs.org/docs/app/api-reference/config/typescript for more information. diff --git a/apps/web/next.config.ts b/apps/web/next.config.ts new file mode 100644 index 0000000..3e3de55 --- /dev/null +++ b/apps/web/next.config.ts @@ -0,0 +1,14 @@ +import type { NextConfig } from "next"; + +const nextConfig: NextConfig = { + output: "standalone", + transpilePackages: [ + "@flight-tracker/types", + "@flight-tracker/config", + "@flight-tracker/utils", + "@flight-tracker/ui", + "@flight-tracker/api-client", + ], +}; + +export default nextConfig; diff --git a/apps/web/package.json b/apps/web/package.json new file mode 100644 index 0000000..798dc97 --- /dev/null +++ b/apps/web/package.json @@ -0,0 +1,36 @@ +{ + "name": "@flight-tracker/web", + "version": "0.1.0", + "private": true, + "scripts": { + "dev": "next dev -p 3000", + "build": "next build", + "start": "next start", + "lint": "next lint", + "clean": "rm -rf .next out" + }, + "dependencies": { + "@flight-tracker/api-client": "*", + "@flight-tracker/config": "*", + "@flight-tracker/types": "*", + "@flight-tracker/ui": "*", + "@flight-tracker/utils": "*", + "@tanstack/react-query": "^5.62.0", + "leaflet": "^1.9.4", + "leaflet-markers-canvas": "^0.2.2", + "next": "^16.0.3", + "react": "^19.0.0", + "react-dom": "^19.0.0", + "react-leaflet": "^5.0.0", + "zustand": "^5.0.0" + }, + "devDependencies": { + "@tailwindcss/postcss": "^4.0.0", + "@types/leaflet": "^1.9.0", + "@types/node": "^22.0.0", + "@types/react": "^19.0.0", + "@types/react-dom": "^19.0.0", + "tailwindcss": "^4.0.0", + "typescript": "^5.7.0" + } +} diff --git a/apps/web/postcss.config.mjs b/apps/web/postcss.config.mjs new file mode 100644 index 0000000..79bcf13 --- /dev/null +++ b/apps/web/postcss.config.mjs @@ -0,0 +1,8 @@ +/** @type {import('postcss-load-config').Config} */ +const config = { + plugins: { + "@tailwindcss/postcss": {}, + }, +}; + +export default config; diff --git a/public/aircrafts-type-1/aircraft-0.svg b/apps/web/public/aircraft-icons/aircraft-0.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-0.svg rename to apps/web/public/aircraft-icons/aircraft-0.svg diff --git a/public/aircrafts-type-1/aircraft-105.svg b/apps/web/public/aircraft-icons/aircraft-105.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-105.svg rename to apps/web/public/aircraft-icons/aircraft-105.svg diff --git a/public/aircrafts-type-1/aircraft-120.svg b/apps/web/public/aircraft-icons/aircraft-120.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-120.svg rename to apps/web/public/aircraft-icons/aircraft-120.svg diff --git a/public/aircrafts-type-1/aircraft-135.svg b/apps/web/public/aircraft-icons/aircraft-135.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-135.svg rename to apps/web/public/aircraft-icons/aircraft-135.svg diff --git a/public/aircrafts-type-1/aircraft-15.svg b/apps/web/public/aircraft-icons/aircraft-15.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-15.svg rename to apps/web/public/aircraft-icons/aircraft-15.svg diff --git a/public/aircrafts-type-1/aircraft-150.svg b/apps/web/public/aircraft-icons/aircraft-150.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-150.svg rename to apps/web/public/aircraft-icons/aircraft-150.svg diff --git a/public/aircrafts-type-1/aircraft-165.svg b/apps/web/public/aircraft-icons/aircraft-165.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-165.svg rename to apps/web/public/aircraft-icons/aircraft-165.svg diff --git a/public/aircrafts-type-1/aircraft-180.svg b/apps/web/public/aircraft-icons/aircraft-180.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-180.svg rename to apps/web/public/aircraft-icons/aircraft-180.svg diff --git a/public/aircrafts-type-1/aircraft-195.svg b/apps/web/public/aircraft-icons/aircraft-195.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-195.svg rename to apps/web/public/aircraft-icons/aircraft-195.svg diff --git a/public/aircrafts-type-1/aircraft-210.svg b/apps/web/public/aircraft-icons/aircraft-210.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-210.svg rename to apps/web/public/aircraft-icons/aircraft-210.svg diff --git a/public/aircrafts-type-1/aircraft-225.svg b/apps/web/public/aircraft-icons/aircraft-225.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-225.svg rename to apps/web/public/aircraft-icons/aircraft-225.svg diff --git a/public/aircrafts-type-1/aircraft-240.svg b/apps/web/public/aircraft-icons/aircraft-240.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-240.svg rename to apps/web/public/aircraft-icons/aircraft-240.svg diff --git a/public/aircrafts-type-1/aircraft-255.svg b/apps/web/public/aircraft-icons/aircraft-255.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-255.svg rename to apps/web/public/aircraft-icons/aircraft-255.svg diff --git a/public/aircrafts-type-1/aircraft-270.svg b/apps/web/public/aircraft-icons/aircraft-270.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-270.svg rename to apps/web/public/aircraft-icons/aircraft-270.svg diff --git a/public/aircrafts-type-1/aircraft-285.svg b/apps/web/public/aircraft-icons/aircraft-285.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-285.svg rename to apps/web/public/aircraft-icons/aircraft-285.svg diff --git a/public/aircrafts-type-1/aircraft-30.svg b/apps/web/public/aircraft-icons/aircraft-30.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-30.svg rename to apps/web/public/aircraft-icons/aircraft-30.svg diff --git a/public/aircrafts-type-1/aircraft-300.svg b/apps/web/public/aircraft-icons/aircraft-300.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-300.svg rename to apps/web/public/aircraft-icons/aircraft-300.svg diff --git a/public/aircrafts-type-1/aircraft-315.svg b/apps/web/public/aircraft-icons/aircraft-315.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-315.svg rename to apps/web/public/aircraft-icons/aircraft-315.svg diff --git a/public/aircrafts-type-1/aircraft-330.svg b/apps/web/public/aircraft-icons/aircraft-330.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-330.svg rename to apps/web/public/aircraft-icons/aircraft-330.svg diff --git a/public/aircrafts-type-1/aircraft-345.svg b/apps/web/public/aircraft-icons/aircraft-345.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-345.svg rename to apps/web/public/aircraft-icons/aircraft-345.svg diff --git a/public/aircrafts-type-1/aircraft-360.svg b/apps/web/public/aircraft-icons/aircraft-360.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-360.svg rename to apps/web/public/aircraft-icons/aircraft-360.svg diff --git a/public/aircrafts-type-1/aircraft-45.svg b/apps/web/public/aircraft-icons/aircraft-45.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-45.svg rename to apps/web/public/aircraft-icons/aircraft-45.svg diff --git a/public/aircrafts-type-1/aircraft-60.svg b/apps/web/public/aircraft-icons/aircraft-60.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-60.svg rename to apps/web/public/aircraft-icons/aircraft-60.svg diff --git a/public/aircrafts-type-1/aircraft-75.svg b/apps/web/public/aircraft-icons/aircraft-75.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-75.svg rename to apps/web/public/aircraft-icons/aircraft-75.svg diff --git a/public/aircrafts-type-1/aircraft-90.svg b/apps/web/public/aircraft-icons/aircraft-90.svg similarity index 100% rename from public/aircrafts-type-1/aircraft-90.svg rename to apps/web/public/aircraft-icons/aircraft-90.svg diff --git a/public/landing.svg b/apps/web/public/landing.svg similarity index 100% rename from public/landing.svg rename to apps/web/public/landing.svg diff --git a/apps/web/src/app/globals.css b/apps/web/src/app/globals.css new file mode 100644 index 0000000..f1d8c73 --- /dev/null +++ b/apps/web/src/app/globals.css @@ -0,0 +1 @@ +@import "tailwindcss"; diff --git a/apps/web/src/app/layout.tsx b/apps/web/src/app/layout.tsx new file mode 100644 index 0000000..8d87ef8 --- /dev/null +++ b/apps/web/src/app/layout.tsx @@ -0,0 +1,23 @@ +import type { Metadata } from "next"; +import "./globals.css"; +import { Providers } from "./providers"; + +export const metadata: Metadata = { + title: "Flight Tracker", + description: "Real-time flight tracking with AI-powered travel assistance", + icons: { icon: "/aircraft-icons/aircraft-0.svg" }, +}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + + {children} + + + ); +} diff --git a/apps/web/src/app/page.tsx b/apps/web/src/app/page.tsx new file mode 100644 index 0000000..8a7bc75 --- /dev/null +++ b/apps/web/src/app/page.tsx @@ -0,0 +1,9 @@ +import { MapLoader } from "@/components/map/MapLoader"; + +export default function Home() { + return ( +
+ +
+ ); +} diff --git a/apps/web/src/app/providers.tsx b/apps/web/src/app/providers.tsx new file mode 100644 index 0000000..536bfae --- /dev/null +++ b/apps/web/src/app/providers.tsx @@ -0,0 +1,12 @@ +"use client"; + +import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; +import { useState } from "react"; + +export function Providers({ children }: { children: React.ReactNode }) { + const [queryClient] = useState(() => new QueryClient()); + + return ( + {children} + ); +} diff --git a/apps/web/src/components/map/FlightMap.tsx b/apps/web/src/components/map/FlightMap.tsx new file mode 100644 index 0000000..dc6b7a3 --- /dev/null +++ b/apps/web/src/components/map/FlightMap.tsx @@ -0,0 +1,88 @@ +"use client"; + +import { useEffect } from "react"; +import { + MapContainer, + TileLayer, + LayersControl, + ZoomControl, + ScaleControl, + useMapEvents, +} from "react-leaflet"; +import "leaflet/dist/leaflet.css"; +import { getTileLayers, MAP_DEFAULTS } from "@flight-tracker/config"; +import { useMapStore } from "@/stores/map-store"; +import { FlightMarkers } from "./FlightMarkers"; + +function MapEventHandler() { + const { setCenter, setZoom, setBounds } = useMapStore(); + + const map = useMapEvents({ + moveend(e) { + const m = e.target; + const c = m.getCenter(); + setCenter({ lat: c.lat, lng: c.lng }); + const b = m.getBounds(); + setBounds({ + north: b.getNorth(), + south: b.getSouth(), + east: b.getEast(), + west: b.getWest(), + }); + }, + zoomend(e) { + setZoom(e.target.getZoom()); + }, + }); + + // Set initial bounds on mount so flights load immediately + useEffect(() => { + const b = map.getBounds(); + setBounds({ + north: b.getNorth(), + south: b.getSouth(), + east: b.getEast(), + west: b.getWest(), + }); + }, [map, setBounds]); + + return null; +} + +export default function FlightMap() { + const { center, zoom, activeLayer } = useMapStore(); + const mapTilerToken = process.env.NEXT_PUBLIC_MAPTILER_TOKEN; + const layers = getTileLayers(mapTilerToken); + + return ( + + + + + {layers.map((layer) => ( + + + + ))} + + + + + + + ); +} diff --git a/apps/web/src/components/map/FlightMarkers.tsx b/apps/web/src/components/map/FlightMarkers.tsx new file mode 100644 index 0000000..8c1d9b8 --- /dev/null +++ b/apps/web/src/components/map/FlightMarkers.tsx @@ -0,0 +1,77 @@ +"use client"; + +import { useEffect, useRef } from "react"; +import { useMap } from "react-leaflet"; +import L from "leaflet"; +import "leaflet-markers-canvas"; +import { useFlights } from "@/hooks/useFlights"; +import { getClosest } from "@flight-tracker/utils"; +import { ANGLE_STEPS } from "@flight-tracker/config"; +import type { FlightData } from "@flight-tracker/types"; + +// Pre-create icon cache — one L.icon per angle (image-based, not divIcon) +const iconCache = new Map(); +function getAircraftIcon(angle: number): L.Icon { + if (!iconCache.has(angle)) { + iconCache.set( + angle, + L.icon({ + iconUrl: `/aircraft-icons/aircraft-${angle}.svg`, + iconSize: [20, 20], + iconAnchor: [10, 10], + }) + ); + } + return iconCache.get(angle)!; +} + +function buildMarkers(flights: FlightData[]): L.Marker[] { + const markers: L.Marker[] = []; + + for (const flight of flights) { + const { latitude, longitude, direction } = flight.geography; + if (latitude == null || longitude == null) continue; + + const { icaoNumber } = flight.flight; + const angle = getClosest(ANGLE_STEPS, direction); + + const marker = L.marker([latitude, longitude], { + icon: getAircraftIcon(angle), + }).bindPopup(icaoNumber || flight.aircraft.icao24); + + markers.push(marker); + } + + return markers; +} + +export function FlightMarkers() { + const map = useMap(); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const canvasRef = useRef(null); + const { data: flights } = useFlights(); + + useEffect(() => { + if (!map) return; + + // Initialize canvas layer once + if (!canvasRef.current) { + // @ts-expect-error leaflet-markers-canvas extends L + canvasRef.current = new L.MarkersCanvas(); + canvasRef.current.addTo(map); + } + + const canvas = canvasRef.current; + + // Clear previous markers + canvas.clear(); + + // Draw flights on canvas (single world — worldCopyJump handles wrapping) + if (flights?.length) { + const markers = buildMarkers(flights); + canvas.addMarkers(markers); + } + }, [map, flights]); + + return null; +} diff --git a/apps/web/src/components/map/MapLoader.tsx b/apps/web/src/components/map/MapLoader.tsx new file mode 100644 index 0000000..b877d24 --- /dev/null +++ b/apps/web/src/components/map/MapLoader.tsx @@ -0,0 +1,16 @@ +"use client"; + +import dynamic from "next/dynamic"; + +const FlightMap = dynamic(() => import("./FlightMap"), { + ssr: false, + loading: () => ( +
+ Loading map... +
+ ), +}); + +export function MapLoader() { + return ; +} diff --git a/apps/web/src/hooks/useFlights.ts b/apps/web/src/hooks/useFlights.ts new file mode 100644 index 0000000..6b2d49d --- /dev/null +++ b/apps/web/src/hooks/useFlights.ts @@ -0,0 +1,30 @@ +"use client"; + +import { useQuery } from "@tanstack/react-query"; +import { getFlights, getAirports } from "@flight-tracker/api-client"; +import { useMapStore } from "@/stores/map-store"; +import { WEB_CONFIG } from "@flight-tracker/config"; + +export function useFlights() { + const bounds = useMapStore((s) => s.bounds); + const zoom = useMapStore((s) => s.zoom); + + // At low zoom (world view), fetch ALL flights without bounds + // At higher zoom, use viewport bounds to limit the query + const useBounds = zoom >= 6 ? bounds : undefined; + + return useQuery({ + queryKey: ["flights", zoom >= 6 ? "bounded" : "global", useBounds], + queryFn: () => getFlights(useBounds ?? undefined), + refetchInterval: WEB_CONFIG.pollInterval, + enabled: !!bounds, // wait until map has initialized bounds + }); +} + +export function useAirports() { + return useQuery({ + queryKey: ["airports"], + queryFn: () => getAirports(), + staleTime: 1000 * 60 * 60, // 1 hour + }); +} diff --git a/apps/web/src/stores/map-store.ts b/apps/web/src/stores/map-store.ts new file mode 100644 index 0000000..964dbfe --- /dev/null +++ b/apps/web/src/stores/map-store.ts @@ -0,0 +1,31 @@ +import { create } from "zustand"; +import { MAP_DEFAULTS } from "@flight-tracker/config"; + +interface MapBounds { + north: number; + south: number; + east: number; + west: number; +} + +interface MapState { + center: { lat: number; lng: number }; + zoom: number; + bounds: MapBounds | null; + activeLayer: string; + setCenter: (center: { lat: number; lng: number }) => void; + setZoom: (zoom: number) => void; + setBounds: (bounds: MapBounds) => void; + setActiveLayer: (layer: string) => void; +} + +export const useMapStore = create((set) => ({ + center: { ...MAP_DEFAULTS.center }, + zoom: MAP_DEFAULTS.zoom, + bounds: null, + activeLayer: MAP_DEFAULTS.defaultLayer, + setCenter: (center) => set({ center }), + setZoom: (zoom) => set({ zoom }), + setBounds: (bounds) => set({ bounds }), + setActiveLayer: (activeLayer) => set({ activeLayer }), +})); diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json new file mode 100644 index 0000000..ba343d4 --- /dev/null +++ b/apps/web/tsconfig.json @@ -0,0 +1,13 @@ +{ + "extends": "../../tsconfig.base.json", + "compilerOptions": { + "plugins": [{ "name": "next" }], + "paths": { + "@/*": ["./src/*"] + }, + "module": "ESNext", + "noEmit": true + }, + "include": ["src", "next-env.d.ts", ".next/types/**/*.ts"], + "exclude": ["node_modules"] +} diff --git a/components/Card/Card.js b/components/Card/Card.js deleted file mode 100644 index d5ca0f7..0000000 --- a/components/Card/Card.js +++ /dev/null @@ -1,71 +0,0 @@ -import React from "react"; -// nodejs library that concatenates classes -import classNames from "classnames"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -// @material-ui/icons - -// core components -import styles from "styles/jss/nextjs-material-kit-pro/components/cardStyle.js"; - -const useStyles = makeStyles(styles); - -export default function Card(props) { - const { - className, - children, - plain, - profile, - blog, - raised, - background, - pricing, - color, - product, - testimonial, - ...rest - } = props; - const classes = useStyles(); - const cardClasses = classNames({ - [classes.card]: true, - [classes.cardPlain]: plain, - [classes.cardProfile]: profile || testimonial, - [classes.cardBlog]: blog, - [classes.cardRaised]: raised, - [classes.cardBackground]: background, - [classes.cardPricingColor]: - (pricing && color !== undefined) || (pricing && background !== undefined), - [classes[color]]: color, - [classes.cardPricing]: pricing, - [classes.cardProduct]: product, - [className]: className !== undefined, - }); - return ( -
- {children} -
- ); -} - -Card.propTypes = { - className: PropTypes.string, - plain: PropTypes.bool, - profile: PropTypes.bool, - blog: PropTypes.bool, - raised: PropTypes.bool, - background: PropTypes.bool, - pricing: PropTypes.bool, - testimonial: PropTypes.bool, - color: PropTypes.oneOf([ - "primary", - "info", - "success", - "warning", - "danger", - "rose", - ]), - product: PropTypes.bool, - children: PropTypes.node, -}; diff --git a/components/Card/CardAvatar.js b/components/Card/CardAvatar.js deleted file mode 100644 index 22a7b91..0000000 --- a/components/Card/CardAvatar.js +++ /dev/null @@ -1,48 +0,0 @@ -import React from "react"; -// nodejs library that concatenates classes -import classNames from "classnames"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -// @material-ui/icons -// core components - -import styles from "styles/jss/nextjs-material-kit-pro/components/cardAvatarStyle.js"; - -const useStyles = makeStyles(styles); - -export default function CardAvatar(props) { - const { - children, - className, - plain, - profile, - testimonial, - testimonialFooter, - ...rest - } = props; - const classes = useStyles(); - const cardAvatarClasses = classNames({ - [classes.cardAvatar]: true, - [classes.cardAvatarProfile]: profile, - [classes.cardAvatarPlain]: plain, - [classes.cardAvatarTestimonial]: testimonial, - [classes.cardAvatarTestimonialFooter]: testimonialFooter, - [className]: className !== undefined, - }); - return ( -
- {children} -
- ); -} - -CardAvatar.propTypes = { - children: PropTypes.node.isRequired, - className: PropTypes.string, - profile: PropTypes.bool, - plain: PropTypes.bool, - testimonial: PropTypes.bool, - testimonialFooter: PropTypes.bool, -}; diff --git a/components/Card/CardBody.js b/components/Card/CardBody.js deleted file mode 100644 index eb252bc..0000000 --- a/components/Card/CardBody.js +++ /dev/null @@ -1,54 +0,0 @@ -import React from "react"; -// nodejs library that concatenates classes -import classNames from "classnames"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -// @material-ui/icons - -// core components -import styles from "styles/jss/nextjs-material-kit-pro/components/cardBodyStyle.js"; - -const useStyles = makeStyles(styles); - -export default function CardBody(props) { - const { - className, - children, - background, - plain, - formHorizontal, - pricing, - signup, - color, - ...rest - } = props; - const classes = useStyles(); - const cardBodyClasses = classNames({ - [classes.cardBody]: true, - [classes.cardBodyBackground]: background, - [classes.cardBodyPlain]: plain, - [classes.cardBodyFormHorizontal]: formHorizontal, - [classes.cardPricing]: pricing, - [classes.cardSignup]: signup, - [classes.cardBodyColor]: color, - [className]: className !== undefined, - }); - return ( -
- {children} -
- ); -} - -CardBody.propTypes = { - className: PropTypes.string, - background: PropTypes.bool, - plain: PropTypes.bool, - formHorizontal: PropTypes.bool, - pricing: PropTypes.bool, - signup: PropTypes.bool, - color: PropTypes.bool, - children: PropTypes.node, -}; diff --git a/components/Card/CardFooter.js b/components/Card/CardFooter.js deleted file mode 100644 index c488b9c..0000000 --- a/components/Card/CardFooter.js +++ /dev/null @@ -1,48 +0,0 @@ -import React from "react"; -// nodejs library that concatenates classes -import classNames from "classnames"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -// @material-ui/icons - -// core components -import styles from "styles/jss/nextjs-material-kit-pro/components/cardFooterStyle.js"; - -const useStyles = makeStyles(styles); - -export default function CardFooter(props) { - const { - className, - children, - plain, - profile, - pricing, - testimonial, - ...rest - } = props; - const classes = useStyles(); - const cardFooterClasses = classNames({ - [classes.cardFooter]: true, - [classes.cardFooterPlain]: plain, - [classes.cardFooterProfile]: profile || testimonial, - [classes.cardFooterPricing]: pricing, - [classes.cardFooterTestimonial]: testimonial, - [className]: className !== undefined, - }); - return ( -
- {children} -
- ); -} - -CardFooter.propTypes = { - className: PropTypes.string, - plain: PropTypes.bool, - profile: PropTypes.bool, - pricing: PropTypes.bool, - testimonial: PropTypes.bool, - children: PropTypes.node, -}; diff --git a/components/Card/CardHeader.js b/components/Card/CardHeader.js deleted file mode 100644 index 3ad9c72..0000000 --- a/components/Card/CardHeader.js +++ /dev/null @@ -1,61 +0,0 @@ -import React from "react"; -// nodejs library that concatenates classes -import classNames from "classnames"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -// @material-ui/icons - -// core components -import styles from "styles/jss/nextjs-material-kit-pro/components/cardHeaderStyle.js"; - -const useStyles = makeStyles(styles); - -export default function CardHeader(props) { - const { - className, - children, - color, - plain, - image, - contact, - signup, - noShadow, - ...rest - } = props; - const classes = useStyles(); - const cardHeaderClasses = classNames({ - [classes.cardHeader]: true, - [classes[color + "CardHeader"]]: color, - [classes.cardHeaderPlain]: plain, - [classes.cardHeaderImage]: image, - [classes.cardHeaderContact]: contact, - [classes.cardHeaderSignup]: signup, - [classes.noShadow]: noShadow, - [className]: className !== undefined, - }); - return ( -
- {children} -
- ); -} - -CardHeader.propTypes = { - className: PropTypes.string, - color: PropTypes.oneOf([ - "warning", - "success", - "danger", - "info", - "primary", - "rose", - ]), - plain: PropTypes.bool, - image: PropTypes.bool, - contact: PropTypes.bool, - signup: PropTypes.bool, - noShadow: PropTypes.bool, - children: PropTypes.node, -}; diff --git a/components/CustomButtons/Button.js b/components/CustomButtons/Button.js deleted file mode 100644 index e6e4711..0000000 --- a/components/CustomButtons/Button.js +++ /dev/null @@ -1,92 +0,0 @@ -import React from "react"; -// nodejs library that concatenates classes -import classNames from "classnames"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; - -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -import Button from "@material-ui/core/Button"; - -import styles from "styles/jss/nextjs-material-kit-pro/components/buttonStyle.js"; - -const useStyles = makeStyles(styles); - -const RegularButton = React.forwardRef((props, ref) => { - const { - color, - round, - children, - fullWidth, - disabled, - simple, - size, - block, - link, - justIcon, - fileButton, - className, - ...rest - } = props; - const classes = useStyles(); - const btnClasses = classNames({ - [classes.button]: true, - [classes[size]]: size, - [classes[color]]: color, - [classes.round]: round, - [classes.fullWidth]: fullWidth, - [classes.disabled]: disabled, - [classes.simple]: simple, - [classes.block]: block, - [classes.link]: link, - [classes.justIcon]: justIcon, - [classes.fileButton]: fileButton, - [className]: className, - }); - return ( - - ); -}); - -RegularButton.displayName = "RegularButton"; - -RegularButton.propTypes = { - color: PropTypes.oneOf([ - "primary", - "secondary", - "info", - "success", - "warning", - "danger", - "rose", - "white", - "twitter", - "facebook", - "google", - "linkedin", - "pinterest", - "youtube", - "tumblr", - "github", - "behance", - "dribbble", - "reddit", - "instagram", - "transparent", - ]), - size: PropTypes.oneOf(["sm", "lg"]), - simple: PropTypes.bool, - round: PropTypes.bool, - fullWidth: PropTypes.bool, - disabled: PropTypes.bool, - block: PropTypes.bool, - link: PropTypes.bool, - justIcon: PropTypes.bool, - fileButton: PropTypes.bool, - children: PropTypes.node, - className: PropTypes.string, -}; - -export default RegularButton; diff --git a/components/CustomInput/CustomInput.js b/components/CustomInput/CustomInput.js deleted file mode 100644 index ef903d9..0000000 --- a/components/CustomInput/CustomInput.js +++ /dev/null @@ -1,100 +0,0 @@ -import React from "react"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; -// nodejs library that concatenates classes -import classNames from "classnames"; - -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -import FormControl from "@material-ui/core/FormControl"; -import InputLabel from "@material-ui/core/InputLabel"; -import Input from "@material-ui/core/Input"; -// @material-ui/icons -import Clear from "@material-ui/icons/Clear"; -import Check from "@material-ui/icons/Check"; -// core components - -import styles from "styles/jss/nextjs-material-kit-pro/components/customInputStyle.js"; - -const useStyles = makeStyles(styles); - -export default function CustomInput(props) { - const { - formControlProps, - labelText, - id, - labelProps, - inputProps, - error, - white, - inputRootCustomClasses, - success, - } = props; - const classes = useStyles(); - const labelClasses = classNames({ - [" " + classes.labelRootError]: error, - [" " + classes.labelRootSuccess]: success && !error, - }); - const underlineClasses = classNames({ - [classes.underlineError]: error, - [classes.underlineSuccess]: success && !error, - [classes.underline]: true, - [classes.whiteUnderline]: white, - }); - const marginTop = classNames({ - [inputRootCustomClasses]: inputRootCustomClasses !== undefined, - }); - const inputClasses = classNames({ - [classes.input]: true, - [classes.whiteInput]: white, - }); - var formControlClasses; - if (formControlProps !== undefined) { - formControlClasses = classNames( - formControlProps.className, - classes.formControl - ); - } else { - formControlClasses = classes.formControl; - } - return ( - - {labelText !== undefined ? ( - - {labelText} - - ) : null} - - {error ? ( - - ) : success ? ( - - ) : null} - - ); -} - -CustomInput.propTypes = { - labelText: PropTypes.node, - labelProps: PropTypes.object, - id: PropTypes.string, - inputProps: PropTypes.object, - formControlProps: PropTypes.object, - inputRootCustomClasses: PropTypes.string, - error: PropTypes.bool, - success: PropTypes.bool, - white: PropTypes.bool, -}; diff --git a/components/Grid/GridContainer.js b/components/Grid/GridContainer.js deleted file mode 100644 index 3dffb41..0000000 --- a/components/Grid/GridContainer.js +++ /dev/null @@ -1,36 +0,0 @@ -import React from "react"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; - -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -import Grid from "@material-ui/core/Grid"; - -const styles = { - grid: { - marginRight: "-15px", - marginLeft: "-15px", - width: "auto", - }, -}; - -const useStyles = makeStyles(styles); - -export default function GridContainer(props) { - const { children, className, ...rest } = props; - const classes = useStyles(); - return ( - - {children} - - ); -} - -GridContainer.defaultProps = { - className: "", -}; - -GridContainer.propTypes = { - children: PropTypes.node, - className: PropTypes.string, -}; diff --git a/components/Grid/GridItem.js b/components/Grid/GridItem.js deleted file mode 100644 index 4d5631c..0000000 --- a/components/Grid/GridItem.js +++ /dev/null @@ -1,38 +0,0 @@ -import React from "react"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -import Grid from "@material-ui/core/Grid"; - -const styles = { - grid: { - position: "relative", - width: "100%", - minHeight: "1px", - paddingRight: "15px", - paddingLeft: "15px", - /* flexBasis: "auto" */ - }, -}; - -const useStyles = makeStyles(styles); - -export default function GridItem(props) { - const { children, className, ...rest } = props; - const classes = useStyles(); - return ( - - {children} - - ); -} - -GridItem.defaultProps = { - className: "", -}; - -GridItem.propTypes = { - children: PropTypes.node, - className: PropTypes.string, -}; diff --git a/components/Header/Header.js b/components/Header/Header.js deleted file mode 100644 index ee584bb..0000000 --- a/components/Header/Header.js +++ /dev/null @@ -1,152 +0,0 @@ -import React from "react"; -import Link from "next/link"; -// nodejs library that concatenates classes -import classNames from "classnames"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -import AppBar from "@material-ui/core/AppBar"; -import Toolbar from "@material-ui/core/Toolbar"; -import IconButton from "@material-ui/core/IconButton"; -import Button from "@material-ui/core/Button"; -import Hidden from "@material-ui/core/Hidden"; -import Drawer from "@material-ui/core/Drawer"; -// @material-ui/icons -import Menu from "@material-ui/icons/Menu"; -import Close from "@material-ui/icons/Close"; -// core components -import styles from "styles/jss/nextjs-material-kit-pro/components/headerStyle.js"; - -const useStyles = makeStyles(styles); - -export default function Header(props) { - const [mobileOpen, setMobileOpen] = React.useState(false); - const classes = useStyles(); - React.useEffect(() => { - if (props.changeColorOnScroll) { - window.addEventListener("scroll", headerColorChange); - } - return function cleanup() { - if (props.changeColorOnScroll) { - window.removeEventListener("scroll", headerColorChange); - } - }; - }); - const handleDrawerToggle = () => { - setMobileOpen(!mobileOpen); - }; - const headerColorChange = () => { - const { color, changeColorOnScroll } = props; - - const windowsScrollTop = window.pageYOffset; - if (windowsScrollTop > changeColorOnScroll.height) { - document.body - .getElementsByTagName("header")[0] - .classList.remove(classes[color]); - document.body - .getElementsByTagName("header")[0] - .classList.add(classes[changeColorOnScroll.color]); - } else { - document.body - .getElementsByTagName("header")[0] - .classList.add(classes[color]); - document.body - .getElementsByTagName("header")[0] - .classList.remove(classes[changeColorOnScroll.color]); - } - }; - const { color, links, brand, fixed, absolute } = props; - const appBarClasses = classNames({ - [classes.appBar]: true, - [classes[color]]: color, - [classes.absolute]: absolute, - [classes.fixed]: fixed, - }); - return ( - - - - -
{links}
-
- - - - - - - - - - - -
{links}
-
-
- - ); -} - -Header.defaultProp = { - color: "white", -}; - -Header.propTypes = { - color: PropTypes.oneOf([ - "primary", - "info", - "success", - "warning", - "danger", - "transparent", - "white", - "rose", - "dark", - ]), - links: PropTypes.node, - brand: PropTypes.string, - fixed: PropTypes.bool, - absolute: PropTypes.bool, - // this will cause the sidebar to change the color from - // props.color (see above) to changeColorOnScroll.color - // when the window.pageYOffset is heigher or equal to - // changeColorOnScroll.height and then when it is smaller than - // changeColorOnScroll.height change it back to - // props.color (see above) - changeColorOnScroll: PropTypes.shape({ - height: PropTypes.number.isRequired, - color: PropTypes.oneOf([ - "primary", - "info", - "success", - "warning", - "danger", - "transparent", - "white", - "rose", - "dark", - ]).isRequired, - }), -}; diff --git a/components/Header/HeaderLinks.js b/components/Header/HeaderLinks.js deleted file mode 100644 index a05e9f8..0000000 --- a/components/Header/HeaderLinks.js +++ /dev/null @@ -1,331 +0,0 @@ -/* eslint-disable */ -import React from "react"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; -// react components for routing our app without refresh -import Link from "next/link"; - -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -import List from "@material-ui/core/List"; -import ListItem from "@material-ui/core/ListItem"; -import Icon from "@material-ui/core/Icon"; -import Hidden from "@material-ui/core/Hidden"; - -// @material-ui/icons -import Apps from "@material-ui/icons/Apps"; -import ShoppingCart from "@material-ui/icons/ShoppingCart"; -import ViewDay from "@material-ui/icons/ViewDay"; -import Dns from "@material-ui/icons/Dns"; -import Build from "@material-ui/icons/Build"; -import ListIcon from "@material-ui/icons/List"; -import People from "@material-ui/icons/People"; -import Assignment from "@material-ui/icons/Assignment"; -import MonetizationOn from "@material-ui/icons/MonetizationOn"; -import Chat from "@material-ui/icons/Chat"; -import Call from "@material-ui/icons/Call"; -import ViewCarousel from "@material-ui/icons/ViewCarousel"; -import AccountBalance from "@material-ui/icons/AccountBalance"; -import ArtTrack from "@material-ui/icons/ArtTrack"; -import ViewQuilt from "@material-ui/icons/ViewQuilt"; -import LocationOn from "@material-ui/icons/LocationOn"; -import Fingerprint from "@material-ui/icons/Fingerprint"; -import AttachMoney from "@material-ui/icons/AttachMoney"; -import Store from "@material-ui/icons/Store"; -import AccountCircle from "@material-ui/icons/AccountCircle"; -import PersonAdd from "@material-ui/icons/PersonAdd"; -import Layers from "@material-ui/icons/Layers"; -import ShoppingBasket from "@material-ui/icons/ShoppingBasket"; -import LineStyle from "@material-ui/icons/LineStyle"; -import Error from "@material-ui/icons/Error"; - -// core components -import CustomDropdown from "components/CustomDropdown/CustomDropdown.js"; -import Button from "components/CustomButtons/Button.js"; - -import styles from "styles/jss/nextjs-material-kit-pro/components/headerLinksStyle.js"; - -const useStyles = makeStyles(styles); - -export default function HeaderLinks(props) { - const easeInOutQuad = (t, b, c, d) => { - t /= d / 2; - if (t < 1) return (c / 2) * t * t + b; - t--; - return (-c / 2) * (t * (t - 2) - 1) + b; - }; - - const smoothScroll = (e, target) => { - if (window.location.pathname === "/sections") { - var isMobile = navigator.userAgent.match( - /(iPad)|(iPhone)|(iPod)|(android)|(webOS)/i - ); - if (isMobile) { - // if we are on mobile device the scroll into view will be managed by the browser - } else { - e.preventDefault(); - var targetScroll = document.getElementById(target); - scrollGo(document.documentElement, targetScroll.offsetTop, 1250); - } - } - }; - const scrollGo = (element, to, duration) => { - var start = element.scrollTop, - change = to - start, - currentTime = 0, - increment = 20; - - var animateScroll = function () { - currentTime += increment; - var val = easeInOutQuad(currentTime, start, change, duration); - element.scrollTop = val; - if (currentTime < duration) { - setTimeout(animateScroll, increment); - } - }; - animateScroll(); - }; - var onClickSections = {}; - - const { dropdownHoverColor } = props; - const classes = useStyles(); - return ( - - - - - Presentation - Page - - , - - - - All components - - , - - content_paste - Documentation - , - ]} - /> - - - - smoothScroll(e, "headers")} - > - Headers - - , - - smoothScroll(e, "features")} - > - Features - - , - - smoothScroll(e, "blogs")} - > - Blogs - - , - - smoothScroll(e, "teams")} - > - Teams - - , - - smoothScroll(e, "projects")} - > - Projects - - , - - smoothScroll(e, "pricing")} - > - Pricing - - , - - smoothScroll(e, "testimonials")} - > - Testimonials - - , - - smoothScroll(e, "contacts")} - > - Contacts - - , - ]} - /> - - - - - About Us - - , - - - Blog Post - - , - - - Blog Posts - - , - - - Contact Us - - , - - - Landing Page - - , - - - Login Page - - , - - - Pricing Page - - , - - - Shopping - Cart - - , - - - Ecommerce Page - - , - - - Product Page - - , - - - Profile Page - - , - - - Signup Page - - , - - - Error Page - - , - ]} - /> - - - - - - - - - - - ); -} - -HeaderLinks.defaultProps = { - hoverColor: "primary", -}; - -HeaderLinks.propTypes = { - dropdownHoverColor: PropTypes.oneOf([ - "dark", - "primary", - "info", - "success", - "warning", - "danger", - "rose", - ]), -}; diff --git a/components/Loading.tsx b/components/Loading.tsx deleted file mode 100644 index bbf8d65..0000000 --- a/components/Loading.tsx +++ /dev/null @@ -1,5 +0,0 @@ -const Loading = () => { - return
; -}; - -export default Loading; diff --git a/components/Parallax/Parallax.js b/components/Parallax/Parallax.js deleted file mode 100644 index d24ec0c..0000000 --- a/components/Parallax/Parallax.js +++ /dev/null @@ -1,70 +0,0 @@ -import React from "react"; -// nodejs library that concatenates classes -import classNames from "classnames"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; - -// core components -import styles from "styles/jss/nextjs-material-kit-pro/components/parallaxStyle.js"; - -const useStyles = makeStyles(styles); - -export default function Parallax(props) { - let windowScrollTop = 0; - const [transform, setTransform] = React.useState( - "translate3d(0," + windowScrollTop + "px,0)" - ); - React.useEffect(() => { - if (window.innerWidth >= 768) { - window.addEventListener("scroll", resetTransform); - } - return function cleanup() { - if (window.innerWidth >= 768) { - window.removeEventListener("scroll", resetTransform); - } - }; - }); - const resetTransform = () => { - var windowScrollTop = window.pageYOffset / 3; - setTransform("translate3d(0," + windowScrollTop + "px,0)"); - }; - const { filter, className, children, style, image, small } = props; - const classes = useStyles(); - const parallaxClasses = classNames({ - [classes.parallax]: true, - [classes[filter + "Color"]]: filter !== undefined, - [classes.small]: small, - [className]: className !== undefined, - }); - return ( -
- {children} -
- ); -} - -Parallax.propTypes = { - className: PropTypes.string, - filter: PropTypes.oneOf([ - "primary", - "rose", - "dark", - "info", - "success", - "warning", - "danger", - ]), - children: PropTypes.node, - style: PropTypes.string, - image: PropTypes.string, - small: PropTypes.bool, -}; diff --git a/components/Popup.test.tsx b/components/Popup.test.tsx deleted file mode 100644 index d0ab401..0000000 --- a/components/Popup.test.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import { render, screen } from "@testing-library/react"; -import userEvent from "@testing-library/user-event"; -import Main from "./main"; - -describe("main tests", () => { - it("show screen", () => { - // render(
) - - expect(1 + 1).toBe(2); - }); -}); diff --git a/components/Popup.tsx b/components/Popup.tsx deleted file mode 100644 index 73333b8..0000000 --- a/components/Popup.tsx +++ /dev/null @@ -1,187 +0,0 @@ -import { FC, useEffect, useRef } from "react"; -declare const L: any; -import { useMap, useMapEvents } from "react-leaflet"; -import { Icon } from "leaflet"; -import Link from "next/link"; -import { makeStyles } from "@material-ui/core"; - -import "node_modules/leaflet-markers-canvas/src/leaflet-markers-canvas.js"; -import javascriptStyles from "styles/jss/nextjs-material-kit-pro/pages/componentsSections/javascriptStyles.js"; -import { AirportData, FlightData } from "./types"; -import { useQuery, UseQueryResult } from "react-query"; -import { getAirports } from "api/airports"; -import styles from "styles/Popup.module.scss"; -import { drawAircraftOnEachWorld, drawAirportsOnEachWorld } from "helpers"; -import { IAppState, IMainState } from "redux/types"; -import { getMain } from "redux/selectors"; -import { connect } from "react-redux"; -import { getFlights } from "api/flights"; - -// @ts-ignore -const useStyles = makeStyles(javascriptStyles); - -interface IStateProps { - main: IMainState; -} - -type IProps = IStateProps; - -const LocationMarker: FC = ({ main: { zoom } }) => { - const map = useMap(); - const markersCanvas = useRef(null); - const currentZoom = useRef(zoom); - const aircraftMarkers = useRef([]); - const airportMarkers = useRef([]); - - // query from cache, no need to pass through props - const { data: flights }: UseQueryResult = useQuery( - "flights", - () => getFlights() - ); - const { data: airports }: UseQueryResult = useQuery( - "airports", - () => getAirports() - ); - - useEffect(() => { - if (markersCanvas.current === null) { - map.invalidateSize(); - - // @ts-ignore - markersCanvas.current = new L.MarkersCanvas(); - markersCanvas.current.addTo(map); - - const mouse = L.control.mouseCoordinate({ position: "bottomleft" }); - mouse.addTo(map); - } - - if (map && flights && markersCanvas && markersCanvas.current) { - const icon = () => (angle: number) => - L.divIcon({ - iconUrl: `/aircrafts-type-1/aircraft-${angle}.svg`, // "https://cdn1.iconfinder.com/data/icons/maps-and-navigation-free/32/Maps_Maps_Navigation_Direction_Arrow_Pointer-22-512.png", - iconSize: [20, 20], - iconAnchor: [10, 0], - popupAnchor: [5, 0], - // className: styles.rotate, - }); - - aircraftMarkers.current = []; - - drawAircraftOnEachWorld(flights, icon(), aircraftMarkers.current, 0); - drawAircraftOnEachWorld(flights, icon(), aircraftMarkers.current, -360); - drawAircraftOnEachWorld(flights, icon(), aircraftMarkers.current, 360); - - markersCanvas.current.addMarkers(aircraftMarkers.current); - } - return () => { - if (map && markersCanvas && markersCanvas.current) { - // markersCanvas.current.clear(); - markersCanvas.current.removeMarkers(aircraftMarkers.current); - } - }; - }, [map, flights]); - - useEffect(() => { - if (map && airports && markersCanvas && markersCanvas.current) { - const airportIcon = L.divIcon({ - // https://github.com/pointhi/leaflet-color-markers - iconUrl: `https://raw.githubusercontent.com/pointhi/leaflet-color-markers/master/img/marker-icon-2x-green.png`, - shadowUrl: - "https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/images/marker-shadow.png", - iconSize: [12, 20], - iconAnchor: [6, 20], - popupAnchor: [1, -17], - shadowSize: [20, 20], - }); - - //// To do: when zoom is smaller than 6 => reduce the number of displayed airports - // let airportsSlice = zoom >= 6 ? airports : airports.slice(0, 100); - // if (currentZoom.current < 6 && zoom < currentZoom.current) { - // markersCanvas.current.removeMarkers(airportMarkers.current); - // } - - let airportsSlice = airports; - drawAirportsOnEachWorld( - airportsSlice, - airportIcon, - airportMarkers.current, - 0 - ); - drawAirportsOnEachWorld( - airportsSlice, - airportIcon, - airportMarkers.current, - -360 - ); - drawAirportsOnEachWorld( - airportsSlice, - airportIcon, - airportMarkers.current, - 360 - ); - - markersCanvas.current.addMarkers(airportMarkers.current); - // currentZoom.current = zoom; - } - - return () => { - if (map && markersCanvas && markersCanvas.current) { - markersCanvas.current.removeMarkers(airportMarkers.current); - } - }; - }, [map, airports, markersCanvas]); - - // const map = useMapEvents({ - // locationfound(e) { - // map.flyTo(position, map.getZoom()); - // map.setView(center, zoom); - // }, - // }); - const classes = useStyles(); - - return null; - // position === null ? null : ( - // - // - //

{iataNumber}/{icaoNumber}

- // ship - // {/*

- // - // Report - // - // - // Vessel Details - // - //

*/} - //

From {airports[departureIataCode]} ({departureIataCode}) To {airports[arrivalIataCode]} ({arrivalIataCode})

- // Aircraft Type:
- // {icaoCode} - // Location:
- // Latitude: {latitude} | Longitude: {longitude} - //
- // {/* { - // console.log("Mouse over") - // }} - // > - //

- // {icaoNumber} - //

- //
*/} - // {/* - // - // */} - - //
- // ); -}; - -const mapStateToProps = (state: IAppState): IStateProps => ({ - main: getMain(state), -}); - -export default connect(mapStateToProps)(LocationMarker); diff --git a/components/PreRoute.tsx b/components/PreRoute.tsx deleted file mode 100644 index 2f6ff7a..0000000 --- a/components/PreRoute.tsx +++ /dev/null @@ -1,28 +0,0 @@ -import React, { FC, useEffect } from "react"; -import { IAppState, IMainState } from "redux/types"; -import { getMain } from "redux/selectors"; -import { connect } from "react-redux"; -import { useRouter } from "next/router"; -import Loading from "@/Loading"; - -interface IStateProps { - main: IMainState; -} - -type IProps = IStateProps; - -const PreRoute: FC = ({ main: { mapCenter, zoom } }) => { - const router = useRouter(); - - useEffect(() => { - router.push(`/${mapCenter.lat},${mapCenter.lng}/${zoom}`); - }, [mapCenter, zoom, router]); - - return ; -}; - -const mapStateToProps = (state: IAppState): IStateProps => ({ - main: getMain(state), -}); - -export default connect(mapStateToProps)(PreRoute); diff --git a/components/Typography/Danger.js b/components/Typography/Danger.js deleted file mode 100644 index 5ed8899..0000000 --- a/components/Typography/Danger.js +++ /dev/null @@ -1,23 +0,0 @@ -import React from "react"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -// core components -import styles from "styles/jss/nextjs-material-kit-pro/components/typographyStyle.js"; - -const useStyles = makeStyles(styles); - -export default function Danger(props) { - const { children } = props; - const classes = useStyles(); - return ( -
- {children} -
- ); -} - -Danger.propTypes = { - children: PropTypes.node, -}; diff --git a/components/Typography/Info.js b/components/Typography/Info.js deleted file mode 100644 index 183b4fb..0000000 --- a/components/Typography/Info.js +++ /dev/null @@ -1,23 +0,0 @@ -import React from "react"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -// core components -import styles from "styles/jss/nextjs-material-kit-pro/components/typographyStyle.js"; - -const useStyles = makeStyles(styles); - -export default function Info(props) { - const { children } = props; - const classes = useStyles(); - return ( -
- {children} -
- ); -} - -Info.propTypes = { - children: PropTypes.node, -}; diff --git a/components/Typography/Muted.js b/components/Typography/Muted.js deleted file mode 100644 index 7359896..0000000 --- a/components/Typography/Muted.js +++ /dev/null @@ -1,23 +0,0 @@ -import React from "react"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -// core components -import styles from "styles/jss/nextjs-material-kit-pro/components/typographyStyle.js"; - -const useStyles = makeStyles(styles); - -export default function Muted(props) { - const { children } = props; - const classes = useStyles(); - return ( -
- {children} -
- ); -} - -Muted.propTypes = { - children: PropTypes.node, -}; diff --git a/components/Typography/Primary.js b/components/Typography/Primary.js deleted file mode 100644 index 57e97c4..0000000 --- a/components/Typography/Primary.js +++ /dev/null @@ -1,23 +0,0 @@ -import React from "react"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -// core components -import styles from "styles/jss/nextjs-material-kit-pro/components/typographyStyle.js"; - -const useStyles = makeStyles(styles); - -export default function Primary(props) { - const { children } = props; - const classes = useStyles(); - return ( -
- {children} -
- ); -} - -Primary.propTypes = { - children: PropTypes.node, -}; diff --git a/components/Typography/Quote.js b/components/Typography/Quote.js deleted file mode 100644 index 6afa4af..0000000 --- a/components/Typography/Quote.js +++ /dev/null @@ -1,38 +0,0 @@ -import React from "react"; -// nodejs library that concatenates classes -import classNames from "classnames"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -// core components -import styles from "styles/jss/nextjs-material-kit-pro/components/typographyStyle.js"; - -const useStyles = makeStyles(styles); - -export default function Quote(props) { - const { text, author, authorClassName, textClassName } = props; - const classes = useStyles(); - const quoteClasses = classNames(classes.defaultFontStyle, classes.quote); - const quoteTextClasses = classNames({ - [classes.quoteText]: true, - [textClassName]: textClassName !== undefined, - }); - const quoteAuthorClasses = classNames({ - [classes.quoteAuthor]: true, - [authorClassName]: authorClassName !== undefined, - }); - return ( -
-

{text}

- {author} -
- ); -} - -Quote.propTypes = { - text: PropTypes.node, - author: PropTypes.node, - textClassName: PropTypes.string, - authorClassName: PropTypes.string, -}; diff --git a/components/Typography/Rose.js b/components/Typography/Rose.js deleted file mode 100644 index b6e2c89..0000000 --- a/components/Typography/Rose.js +++ /dev/null @@ -1,23 +0,0 @@ -import React from "react"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -// core components -import styles from "styles/jss/nextjs-material-kit-pro/components/typographyStyle.js"; - -const useStyles = makeStyles(styles); - -export default function Rose(props) { - const { children } = props; - const classes = useStyles(); - return ( -
- {children} -
- ); -} - -Rose.propTypes = { - children: PropTypes.node, -}; diff --git a/components/Typography/Small.js b/components/Typography/Small.js deleted file mode 100644 index de9760f..0000000 --- a/components/Typography/Small.js +++ /dev/null @@ -1,23 +0,0 @@ -import React from "react"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -// core components -import styles from "styles/jss/nextjs-material-kit-pro/components/typographyStyle.js"; - -const useStyles = makeStyles(styles); - -export default function Small(props) { - const { children } = props; - const classes = useStyles(); - return ( -
- {children} -
- ); -} - -Small.propTypes = { - children: PropTypes.node, -}; diff --git a/components/Typography/Success.js b/components/Typography/Success.js deleted file mode 100644 index f0dd710..0000000 --- a/components/Typography/Success.js +++ /dev/null @@ -1,23 +0,0 @@ -import React from "react"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -// core components -import styles from "styles/jss/nextjs-material-kit-pro/components/typographyStyle.js"; - -const useStyles = makeStyles(styles); - -export default function Success(props) { - const { children } = props; - const classes = useStyles(); - return ( -
- {children} -
- ); -} - -Success.propTypes = { - children: PropTypes.node, -}; diff --git a/components/Typography/Warning.js b/components/Typography/Warning.js deleted file mode 100644 index 0f11e23..0000000 --- a/components/Typography/Warning.js +++ /dev/null @@ -1,23 +0,0 @@ -import React from "react"; -// nodejs library to set properties for components -import PropTypes from "prop-types"; -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -// core components -import styles from "styles/jss/nextjs-material-kit-pro/components/typographyStyle.js"; - -const useStyles = makeStyles(styles); - -export default function Warning(props) { - const { children } = props; - const classes = useStyles(); - return ( -
- {children} -
- ); -} - -Warning.propTypes = { - children: PropTypes.node, -}; diff --git a/components/ZoomLevel.test.tsx b/components/ZoomLevel.test.tsx deleted file mode 100644 index de14e20..0000000 --- a/components/ZoomLevel.test.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import { render, screen } from "@testing-library/react"; -import userEvent from "@testing-library/user-event"; -import ZoomLevel from "./ZoomLevel"; - -describe("main tests", () => { - it("show screen", () => { - // render() - - expect(1 + 1).toBe(2); - }); -}); diff --git a/components/ZoomLevel.tsx b/components/ZoomLevel.tsx deleted file mode 100644 index f2dd340..0000000 --- a/components/ZoomLevel.tsx +++ /dev/null @@ -1,93 +0,0 @@ -import { FC, useEffect } from "react"; -import { useMapEvents } from "react-leaflet"; - -import { ThunkDispatch } from "redux-thunk"; -import { AnyAction, bindActionCreators } from "redux"; -import { connect } from "react-redux"; -import { IBounds, IAppState, IMainState, ICoordinate } from "redux/types"; -import { - setBounds, - setZoom, - setMapCenter, - setOpenLayer, -} from "redux/actions/mainActions"; -import { getMain } from "redux/selectors"; - -interface IStateProps { - main?: IMainState; -} - -interface IDispatchProps { - dispatch?: ThunkDispatch<{}, {}, AnyAction>; - setBounds: ( - newData: IBounds - ) => (dispatch: ThunkDispatch<{}, {}, AnyAction>) => void; - setZoom: ( - newData: number - ) => (dispatch: ThunkDispatch<{}, {}, AnyAction>) => void; - setMapCenter: ( - newData: ICoordinate - ) => (dispatch: ThunkDispatch<{}, {}, AnyAction>) => void; - setOpenLayer: ( - newData: string - ) => (dispatch: ThunkDispatch<{}, {}, AnyAction>) => void; -} - -type IProps = IStateProps & IDispatchProps; - -const ZoomLevel: FC = ({ - setBounds, - setZoom, - setMapCenter, - setOpenLayer, -}) => { - const mapEvents = useMapEvents({ - zoomend: () => { - const zoom = mapEvents.getZoom(); - setZoom(zoom); - window.localStorage.setItem("map.zoom", zoom.toString()); - }, - moveend: () => { - const localBounds = mapEvents.getBounds(); - setBounds({ - west: localBounds.getWest(), - east: localBounds.getEast(), - south: localBounds.getSouth(), - north: localBounds.getNorth(), - }); - - const { lat, lng } = mapEvents.getCenter(); - setMapCenter({ lat, lng }); - window.localStorage.setItem("map.latitude", lat.toString()); - window.localStorage.setItem("map.longitude", lng.toString()); - }, - baselayerchange: (e) => { - setOpenLayer(e.name); - window.localStorage.setItem("openLayer", e.name); - }, - }); - - // To do: create dynamic route with variable center coordinates - - return null; -}; - -const mapStateToProps = (state: IAppState): IStateProps => ({ - main: getMain(state), -}); - -const mapDispatchToProps = (dispatch: ThunkDispatch<{}, {}, AnyAction>) => { - return { - ...bindActionCreators( - { - setBounds, - setZoom, - setMapCenter, - setOpenLayer, - }, - dispatch - ), - }; -}; - -export default connect(mapStateToProps, mapDispatchToProps)(ZoomLevel); diff --git a/components/layout.tsx b/components/layout.tsx deleted file mode 100644 index 74db45e..0000000 --- a/components/layout.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import Head from "next/head"; -import Image from "next/image"; -import Script from "next/script"; -import SectionNavbars from "pages-sections/components/SectionNavbars.js"; -import styles from "../styles/Home.module.css"; - -export default function Layout({ children }) { - return ( - <> - - Flight Tracker - - - - - {children} - - - ); -} diff --git a/components/main.test.tsx b/components/main.test.tsx deleted file mode 100644 index d0ab401..0000000 --- a/components/main.test.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import { render, screen } from "@testing-library/react"; -import userEvent from "@testing-library/user-event"; -import Main from "./main"; - -describe("main tests", () => { - it("show screen", () => { - // render(
) - - expect(1 + 1).toBe(2); - }); -}); diff --git a/components/main.tsx b/components/main.tsx deleted file mode 100644 index 4edd7cf..0000000 --- a/components/main.tsx +++ /dev/null @@ -1,91 +0,0 @@ -import { FC } from "react"; -import { - MapContainer, - TileLayer, - LayersControl, - ScaleControl, - ZoomControl, -} from "react-leaflet"; -import styles from "../styles/Home.module.css"; -import LocationMarker from "./Popup"; -import "leaflet-easybutton"; -import "leaflet-fullscreen/dist/Leaflet.fullscreen.js"; -import "leaflet-fullscreen/dist/leaflet.fullscreen.css"; -import "node_modules/leaflet-minimap/src/Control.MiniMap.js"; -import "node_modules/leaflet-minimap/src/Control.MiniMap.css"; -import "node_modules/leaflet-markers-canvas/src/leaflet-markers-canvas.js"; -import "leaflet-sidebar-v2"; -import "leaflet.mousecoordinatesystems"; - -import "leaflet/dist/leaflet.css"; -import "leaflet-defaulticon-compatibility/dist/leaflet-defaulticon-compatibility.css"; -import "leaflet-defaulticon-compatibility"; - -import getConfig from "next/config"; -import { connect } from "react-redux"; -import { IMainState, IAppState } from "redux/types"; -import ZoomLevel from "./ZoomLevel"; -import { getMain } from "redux/selectors"; -import { layerMap } from "helpers"; - -const { publicRuntimeConfig } = getConfig(); - -interface IStateProps { - main: IMainState; -} - -type IProps = IStateProps; - -const Main: FC = ({ main: { mapCenter, zoom, openLayer } }) => { - return ( -
-
- - - - {layerMap(publicRuntimeConfig).map((layer, id: number) => { - return ( - - - - ); - })} - - - - - -
-
- ); -}; - -const mapStateToProps = (state: IAppState): IStateProps => ({ - main: getMain(state), -}); - -export default connect(mapStateToProps)(Main); diff --git a/docker-compose-dev.yml b/docker-compose-dev.yml deleted file mode 100644 index a7595b4..0000000 --- a/docker-compose-dev.yml +++ /dev/null @@ -1,13 +0,0 @@ -version: "3.9" -services: - flight_tracker_dev: - container_name: flight_tracker_dev - restart: always - build: - dockerfile: Dockerfile.dev - context: . - ports: - - "3003:3000" - volumes: - - /app/node_modules - - .:/app \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index df4e770..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,17 +0,0 @@ -version: "3.9" -services: - flight_tracker: - container_name: flight_tracker - restart: always - build: - dockerfile: Dockerfile - context: . - entrypoint: ["/bin/sh","-c"] - command: - - | - yarn build && yarn start - ports: - - "3003:3000" - volumes: - - /app/node_modules - - .:/app \ No newline at end of file diff --git a/helpers/index.test.ts b/helpers/index.test.ts deleted file mode 100644 index 6e4df73..0000000 --- a/helpers/index.test.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { getClosest, isInsideMapBound } from "."; - -describe("getClosest()", () => { - const arr = [ - 0, 15, 30, 45, 60, 75, 90, 105, 120, 135, 150, 165, 180, 195, 210, 225, 240, - 255, 270, 285, 300, 315, 330, 345, 360, - ]; - it("should yield 15", () => { - expect(getClosest(arr, 16)).toBe(15); - }); - - it("should yield 315", () => { - expect(getClosest(arr, 310)).toBe(315); - }); - - it("should yield 90", () => { - expect(getClosest(arr, 97)).toBe(90); - }); -}); - -describe("isInsideMapBound()", () => { - it("should yield true", () => { - expect(isInsideMapBound(1, 1, 10, 10, 2, 3)).toBe(true); - }); - - it("should yield false", () => { - expect(isInsideMapBound(1, 1, 10, 10, 2, 12)).toBe(false); - }); - - it("should yield true", () => { - expect(isInsideMapBound(1, 10, 20, 50, 2, 15)).toBe(true); - }); -}); diff --git a/helpers/index.ts b/helpers/index.ts deleted file mode 100644 index 631b31c..0000000 --- a/helpers/index.ts +++ /dev/null @@ -1,213 +0,0 @@ -import { AirportData, FlightData } from "@/types"; -declare const L: any; - -export const initialMap = { - "map.latitude": 51, - "map.longitude": -2, - "map.zoom": 4, - openLayer: "Satellite", -}; - -const isNum = (val: number) => { - return !isNaN(val); -}; - -export const isInsideMapBound = ( - x1: number, - y1: number, - x2: number, - y2: number, - x: number, - y: number -) => { - if (x > x1 && x < x2 && y > y1 && y < y2) return true; - - return false; -}; - -export const checkLocalStorage = (key: string) => { - return typeof window !== "undefined" && !!window.localStorage.getItem(key); -}; - -export const getInitial = (input: string) => { - return checkLocalStorage(input) - ? window.localStorage.getItem(input) - : initialMap[input]; -}; - -export const getInitialMapCenter = (mapParam: string): number => { - return ( - // https://javascript.info/nullish-coalescing-operator - checkPathname(mapParam) ?? getInitial(mapParam) - ); -}; - -export const checkPathname = (mapParam: string): number | undefined => { - if (typeof window !== "undefined") { - const pathArr = location.pathname.split("/"); - if (pathArr.length !== 3) { - return undefined; - } - const latLng = pathArr[1]; - const zoom = pathArr[2]; - const [latitude, longitude] = latLng.split(","); - - switch (mapParam) { - case "map.latitude": - if (isNum(+`${latitude}`)) { - return +`${latitude}`; - } - break; - - case "map.longitude": - if (isNum(+`${longitude}`)) { - return +`${longitude}`; - } - break; - - case "map.zoom": - if (isNum(+`${zoom}`)) { - return +`${zoom}`; - } - break; - - default: - break; - } - - return undefined; - } -}; - -export const getClosest = (arr: number[], goal: number) => - arr.reduce(function (prev, curr) { - return Math.abs(curr - goal) < Math.abs(prev - goal) ? curr : prev; - }); - -export const drawAircraftOnEachWorld = ( - flights: FlightData[], - icon: any, - markers: any, - offset: number -) => { - for (let i = 0; i < flights.length; i++) { - const flight = flights[i]; - const { latitude, longitude, direction } = flight.geography; - const { iataCode: arrivalIataCode } = flight.arrival; - const { iataCode: departureIataCode } = flight.departure; - - const { icaoCode } = flight.aircraft; - const { iataNumber, icaoNumber } = flight.flight; - - const angleArr = [ - 0, 15, 30, 45, 60, 75, 90, 105, 120, 135, 150, 165, 180, 195, 210, 225, - 240, 255, 270, 285, 300, 315, 330, 345, 360, - ]; - - // example: https://github.com/francoisromain/leaflet-markers-canvas/blob/master/examples/index.html - const marker = L.marker( - // [58.5578 + Math.random() * 1.8, 29.0087 + Math.random() * 3.6], - [latitude, longitude + offset], - { icon: icon(getClosest(angleArr, direction)) } - ) - .bindPopup(icaoNumber) - .on({ - mouseover(e) { - this.openPopup(); - }, - mouseout(e) { - this.closePopup(); - }, - }); - - markers.push(marker); - } -}; - -export const drawAirportsOnEachWorld = ( - airports: AirportData[], - icon: any, - markers: any, - offset: number -) => { - for (let i = 0; i < airports.length; i++) { - const airport = airports[i]; - - const { - latitudeAirport, - longitudeAirport, - nameAirport, - codeIataAirport, - codeIcaoAirport, - } = airport; - - const marker = L.marker([latitudeAirport, longitudeAirport + offset], { - icon, - }) - .bindPopup( - `${nameAirport} Airport (${codeIataAirport}/${codeIcaoAirport})` - ) - .on({ - mouseover(e) { - this.openPopup(); - }, - mouseout(e) { - this.closePopup(); - }, - }); - - markers.push(marker); - } -}; - -export const layerMap = (publicRuntimeConfig: any) => [ - // https://stackoverflow.com/questions/62923809/list-of-all-available-tile-layers-for-leaflet - // https://leaflet-extras.github.io/leaflet-providers/preview/ - { - name: "Mapnik", - attribution: - '© OpenStreetMap contributors', - url: "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", - }, - { - name: "OpenTopoMap", - attribution: - 'Map data: © OpenStreetMap contributors, SRTM | Map style: © OpenTopoMap (CC-BY-SA)', - url: "https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png", - }, - { - name: "AlidadeSmoothDark", - attribution: - '© Stadia Maps, © OpenMapTiles © OpenStreetMap contributors', - url: `https://tiles.stadiamaps.com/tiles/alidade_smooth_dark/{z}/{x}/{y}{r}.png`, - }, - { - name: "Satellite", - attribution: - '© MapTiler © OpenStreetMap contributors', - url: `https://api.maptiler.com/maps/hybrid/{z}/{x}/{y}.jpg?key=${publicRuntimeConfig.mapTilerToken}`, - }, - { - name: "Watercolor", - attribution: - 'Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors', - url: `https://stamen-tiles-{s}.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.jpg`, - }, - { - name: "TerrainBackground", - attribution: - 'Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors', - url: `https://stamen-tiles-{s}.a.ssl.fastly.net/terrain-background/{z}/{x}/{y}{r}.png`, - }, - { - name: "WorldStreetMap", - attribution: - "Tiles © Esri — Source: Esri, DeLorme, NAVTEQ, USGS, Intermap, iPC, NRCAN, Esri Japan, METI, Esri China (Hong Kong), Esri (Thailand), TomTom, 2012", - url: `https://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer/tile/{z}/{y}/{x}`, - }, - // { - // name: "Mapbox Map", - // attribution: 'Map data © OpenStreetMap contributors, CC-BY-SA, Imagery © Mapbox', - // url: `https://api.mapbox.com/styles/v1/nhatvu148/ckmf0vdp2hj0817lkwm8z7a50/tiles/512/{z}/{x}/{y}@2x?access_token=${publicRuntimeConfig.mapboxToken}`, - // } -]; diff --git a/install-docker-compose.sh b/install-docker-compose.sh deleted file mode 100644 index d593e8c..0000000 --- a/install-docker-compose.sh +++ /dev/null @@ -1,3 +0,0 @@ -sudo curl -L "https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose -sudo chmod +x /usr/local/bin/docker-compose -docker-compose --version \ No newline at end of file diff --git a/install-docker.sh b/install-docker.sh deleted file mode 100644 index c082407..0000000 --- a/install-docker.sh +++ /dev/null @@ -1,13 +0,0 @@ -sudo apt-get update -sudo apt-get install \ - apt-transport-https \ - ca-certificates \ - curl \ - gnupg \ - lsb-release -curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg -echo \ - "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \ - $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null -sudo apt-get update -sudo apt-get install docker-ce docker-ce-cli containerd.io \ No newline at end of file diff --git a/jest.config.js b/jest.config.js deleted file mode 100644 index 5588226..0000000 --- a/jest.config.js +++ /dev/null @@ -1,14 +0,0 @@ -const nextJest = require("next/jest"); - -const createJestConfig = nextJest({ dir: "." }); - -const customJestConfig = { - preset: "ts-jest", - testEnvironment: "jsdom", - clearMocks: true, - moduleDirectories: ["node_modules"], - setupFilesAfterEnv: ["/tests/setupTests.ts"], - testRegex: "(/__tests__/.*|(\\.|/)test)\\.[jt]sx?$", -}; - -module.exports = createJestConfig(customJestConfig); diff --git a/next-env.d.ts b/next-env.d.ts deleted file mode 100644 index 4f11a03..0000000 --- a/next-env.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -/// -/// - -// NOTE: This file should not be edited -// see https://nextjs.org/docs/basic-features/typescript for more information. diff --git a/next.config.js b/next.config.js deleted file mode 100644 index 02e9b8a..0000000 --- a/next.config.js +++ /dev/null @@ -1,14 +0,0 @@ -module.exports = { - serverRuntimeConfig: { - // Will only be available on the server side - mySecret: "secret", - }, - publicRuntimeConfig: { - // Will be available on both server and client - staticFolder: "/static", - mapboxToken: process.env.MAPBOX_TOKEN, // Pass through env variables - mapTilerToken: process.env.MAPTILER_TOKEN, - aviationToken: process.env.AVIATION_TOKEN, - apiURL: process.env.API_URL, - }, -}; diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..711fc87 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,5359 @@ +{ + "name": "flight-tracker", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "flight-tracker", + "version": "0.1.0", + "workspaces": [ + "apps/*", + "packages/*" + ], + "devDependencies": { + "turbo": "^2.7.2" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "apps/api": { + "name": "@flight-tracker/api", + "version": "0.1.0", + "dependencies": { + "@flight-tracker/config": "*", + "@flight-tracker/types": "*", + "compression": "^1.7.5", + "cors": "^2.8.5", + "express": "^4.21.0", + "helmet": "^8.0.0", + "morgan": "^1.10.0" + }, + "devDependencies": { + "@types/compression": "^1.7.5", + "@types/cors": "^2.8.17", + "@types/express": "^5.0.0", + "@types/morgan": "^1.9.9", + "@types/node": "^22.0.0", + "tsx": "^4.19.0", + "typescript": "^5.7.0" + } + }, + "apps/mobile": { + "name": "@flight-tracker/mobile", + "version": "0.1.0", + "dependencies": { + "@flight-tracker/api-client": "*", + "@flight-tracker/config": "*", + "@flight-tracker/types": "*", + "@flight-tracker/ui": "*", + "@flight-tracker/utils": "*", + "react": "^19.0.0", + "react-dom": "^19.0.0", + "react-router-dom": "^7.6.0" + }, + "devDependencies": { + "@tailwindcss/vite": "^4.0.0", + "@types/react": "^19.0.0", + "@types/react-dom": "^19.0.0", + "@vitejs/plugin-react": "^4.4.0", + "tailwindcss": "^4.0.0", + "typescript": "^5.7.0", + "vite": "^6.0.0" + } + }, + "apps/web": { + "name": "@flight-tracker/web", + "version": "0.1.0", + "dependencies": { + "@flight-tracker/api-client": "*", + "@flight-tracker/config": "*", + "@flight-tracker/types": "*", + "@flight-tracker/ui": "*", + "@flight-tracker/utils": "*", + "@tanstack/react-query": "^5.62.0", + "leaflet": "^1.9.4", + "leaflet-markers-canvas": "^0.2.2", + "next": "^16.0.3", + "react": "^19.0.0", + "react-dom": "^19.0.0", + "react-leaflet": "^5.0.0", + "zustand": "^5.0.0" + }, + "devDependencies": { + "@tailwindcss/postcss": "^4.0.0", + "@types/leaflet": "^1.9.0", + "@types/node": "^22.0.0", + "@types/react": "^19.0.0", + "@types/react-dom": "^19.0.0", + "tailwindcss": "^4.0.0", + "typescript": "^5.7.0" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz", + "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.28.5", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz", + "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz", + "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helpers": "^7.28.6", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/traverse": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.29.1", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz", + "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz", + "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.28.6", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz", + "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz", + "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz", + "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.6.tgz", + "integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.0.tgz", + "integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.0" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", + "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", + "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz", + "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz", + "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.8.1.tgz", + "integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==", + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz", + "integrity": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.3.tgz", + "integrity": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.3.tgz", + "integrity": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.3.tgz", + "integrity": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.3.tgz", + "integrity": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.3.tgz", + "integrity": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.3.tgz", + "integrity": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.3.tgz", + "integrity": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.3.tgz", + "integrity": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.3.tgz", + "integrity": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.3.tgz", + "integrity": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.3.tgz", + "integrity": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.3.tgz", + "integrity": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.3.tgz", + "integrity": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.3.tgz", + "integrity": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.3.tgz", + "integrity": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.3.tgz", + "integrity": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.3.tgz", + "integrity": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.3.tgz", + "integrity": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.3.tgz", + "integrity": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.3.tgz", + "integrity": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.3.tgz", + "integrity": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.3.tgz", + "integrity": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.3.tgz", + "integrity": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.3.tgz", + "integrity": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.3.tgz", + "integrity": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@flight-tracker/api": { + "resolved": "apps/api", + "link": true + }, + "node_modules/@flight-tracker/api-client": { + "resolved": "packages/api-client", + "link": true + }, + "node_modules/@flight-tracker/config": { + "resolved": "packages/config", + "link": true + }, + "node_modules/@flight-tracker/mobile": { + "resolved": "apps/mobile", + "link": true + }, + "node_modules/@flight-tracker/types": { + "resolved": "packages/types", + "link": true + }, + "node_modules/@flight-tracker/ui": { + "resolved": "packages/ui", + "link": true + }, + "node_modules/@flight-tracker/utils": { + "resolved": "packages/utils", + "link": true + }, + "node_modules/@flight-tracker/web": { + "resolved": "apps/web", + "link": true + }, + "node_modules/@img/colour": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.0.0.tgz", + "integrity": "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=18" + } + }, + "node_modules/@img/sharp-darwin-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", + "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-darwin-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", + "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-libvips-darwin-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", + "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-darwin-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", + "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", + "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", + "cpu": [ + "arm" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", + "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-ppc64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", + "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", + "cpu": [ + "ppc64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-riscv64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", + "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", + "cpu": [ + "riscv64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-s390x": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", + "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", + "cpu": [ + "s390x" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", + "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", + "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", + "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-linux-arm": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", + "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", + "cpu": [ + "arm" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", + "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-ppc64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", + "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", + "cpu": [ + "ppc64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-ppc64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-riscv64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", + "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", + "cpu": [ + "riscv64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-riscv64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-s390x": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", + "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", + "cpu": [ + "s390x" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-s390x": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", + "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", + "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", + "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-wasm32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", + "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", + "cpu": [ + "wasm32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, + "dependencies": { + "@emnapi/runtime": "^1.7.0" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", + "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-ia32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", + "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", + "cpu": [ + "ia32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", + "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@next/env": { + "version": "16.1.6", + "resolved": "https://registry.npmjs.org/@next/env/-/env-16.1.6.tgz", + "integrity": "sha512-N1ySLuZjnAtN3kFnwhAwPvZah8RJxKasD7x1f8shFqhncnWZn4JMfg37diLNuoHsLAlrDfM3g4mawVdtAG8XLQ==", + "license": "MIT" + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "16.1.6", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.1.6.tgz", + "integrity": "sha512-wTzYulosJr/6nFnqGW7FrG3jfUUlEf8UjGA0/pyypJl42ExdVgC6xJgcXQ+V8QFn6niSG2Pb8+MIG1mZr2vczw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-darwin-x64": { + "version": "16.1.6", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.1.6.tgz", + "integrity": "sha512-BLFPYPDO+MNJsiDWbeVzqvYd4NyuRrEYVB5k2N3JfWncuHAy2IVwMAOlVQDFjj+krkWzhY2apvmekMkfQR0CUQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "16.1.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.1.6.tgz", + "integrity": "sha512-OJYkCd5pj/QloBvoEcJ2XiMnlJkRv9idWA/j0ugSuA34gMT6f5b7vOiCQHVRpvStoZUknhl6/UxOXL4OwtdaBw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "16.1.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.1.6.tgz", + "integrity": "sha512-S4J2v+8tT3NIO9u2q+S0G5KdvNDjXfAv06OhfOzNDaBn5rw84DGXWndOEB7d5/x852A20sW1M56vhC/tRVbccQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "16.1.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.1.6.tgz", + "integrity": "sha512-2eEBDkFlMMNQnkTyPBhQOAyn2qMxyG2eE7GPH2WIDGEpEILcBPI/jdSv4t6xupSP+ot/jkfrCShLAa7+ZUPcJQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "16.1.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.1.6.tgz", + "integrity": "sha512-oicJwRlyOoZXVlxmIMaTq7f8pN9QNbdes0q2FXfRsPhfCi8n8JmOZJm5oo1pwDaFbnnD421rVU409M3evFbIqg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "16.1.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.1.6.tgz", + "integrity": "sha512-gQmm8izDTPgs+DCWH22kcDmuUp7NyiJgEl18bcr8irXA5N2m2O+JQIr6f3ct42GOs9c0h8QF3L5SzIxcYAAXXw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "16.1.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.1.6.tgz", + "integrity": "sha512-NRfO39AIrzBnixKbjuo2YiYhB6o9d8v/ymU9m/Xk8cyVk+k7XylniXkHwjs4s70wedVffc6bQNbufk5v0xEm0A==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@react-leaflet/core": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@react-leaflet/core/-/core-3.0.0.tgz", + "integrity": "sha512-3EWmekh4Nz+pGcr+xjf0KNyYfC3U2JjnkWsh0zcqaexYqmmB5ZhH37kz41JXGmKzpaMZCnPofBBm64i+YrEvGQ==", + "license": "Hippocratic-2.1", + "peerDependencies": { + "leaflet": "^1.9.0", + "react": "^19.0.0", + "react-dom": "^19.0.0" + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-beta.27", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz", + "integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.58.0.tgz", + "integrity": "sha512-mr0tmS/4FoVk1cnaeN244A/wjvGDNItZKR8hRhnmCzygyRXYtKF5jVDSIILR1U97CTzAYmbgIj/Dukg62ggG5w==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.58.0.tgz", + "integrity": "sha512-+s++dbp+/RTte62mQD9wLSbiMTV+xr/PeRJEc/sFZFSBRlHPNPVaf5FXlzAL77Mr8FtSfQqCN+I598M8U41ccQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.58.0.tgz", + "integrity": "sha512-MFWBwTcYs0jZbINQBXHfSrpSQJq3IUOakcKPzfeSznONop14Pxuqa0Kg19GD0rNBMPQI2tFtu3UzapZpH0Uc1Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.58.0.tgz", + "integrity": "sha512-yiKJY7pj9c9JwzuKYLFaDZw5gma3fI9bkPEIyofvVfsPqjCWPglSHdpdwXpKGvDeYDms3Qal8qGMEHZ1M/4Udg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.58.0.tgz", + "integrity": "sha512-x97kCoBh5MOevpn/CNK9W1x8BEzO238541BGWBc315uOlN0AD/ifZ1msg+ZQB05Ux+VF6EcYqpiagfLJ8U3LvQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.58.0.tgz", + "integrity": "sha512-Aa8jPoZ6IQAG2eIrcXPpjRcMjROMFxCt1UYPZZtCxRV68WkuSigYtQ/7Zwrcr2IvtNJo7T2JfDXyMLxq5L4Jlg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.58.0.tgz", + "integrity": "sha512-Ob8YgT5kD/lSIYW2Rcngs5kNB/44Q2RzBSPz9brf2WEtcGR7/f/E9HeHn1wYaAwKBni+bdXEwgHvUd0x12lQSA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.58.0.tgz", + "integrity": "sha512-K+RI5oP1ceqoadvNt1FecL17Qtw/n9BgRSzxif3rTL2QlIu88ccvY+Y9nnHe/cmT5zbH9+bpiJuG1mGHRVwF4Q==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.58.0.tgz", + "integrity": "sha512-T+17JAsCKUjmbopcKepJjHWHXSjeW7O5PL7lEFaeQmiVyw4kkc5/lyYKzrv6ElWRX/MrEWfPiJWqbTvfIvjM1Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.58.0.tgz", + "integrity": "sha512-cCePktb9+6R9itIJdeCFF9txPU7pQeEHB5AbHu/MKsfH/k70ZtOeq1k4YAtBv9Z7mmKI5/wOLYjQ+B9QdxR6LA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.58.0.tgz", + "integrity": "sha512-iekUaLkfliAsDl4/xSdoCJ1gnnIXvoNz85C8U8+ZxknM5pBStfZjeXgB8lXobDQvvPRCN8FPmmuTtH+z95HTmg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.58.0.tgz", + "integrity": "sha512-68ofRgJNl/jYJbxFjCKE7IwhbfxOl1muPN4KbIqAIe32lm22KmU7E8OPvyy68HTNkI2iV/c8y2kSPSm2mW/Q9Q==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.58.0.tgz", + "integrity": "sha512-dpz8vT0i+JqUKuSNPCP5SYyIV2Lh0sNL1+FhM7eLC457d5B9/BC3kDPp5BBftMmTNsBarcPcoz5UGSsnCiw4XQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.58.0.tgz", + "integrity": "sha512-4gdkkf9UJ7tafnweBCR/mk4jf3Jfl0cKX9Np80t5i78kjIH0ZdezUv/JDI2VtruE5lunfACqftJ8dIMGN4oHew==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.58.0.tgz", + "integrity": "sha512-YFS4vPnOkDTD/JriUeeZurFYoJhPf9GQQEF/v4lltp3mVcBmnsAdjEWhr2cjUCZzZNzxCG0HZOvJU44UGHSdzw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.58.0.tgz", + "integrity": "sha512-x2xgZlFne+QVNKV8b4wwaCS8pwq3y14zedZ5DqLzjdRITvreBk//4Knbcvm7+lWmms9V9qFp60MtUd0/t/PXPw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.58.0.tgz", + "integrity": "sha512-jIhrujyn4UnWF8S+DHSkAkDEO3hLX0cjzxJZPLF80xFyzyUIYgSMRcYQ3+uqEoyDD2beGq7Dj7edi8OnJcS/hg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.58.0.tgz", + "integrity": "sha512-+410Srdoh78MKSJxTQ+hZ/Mx+ajd6RjjPwBPNd0R3J9FtL6ZA0GqiiyNjCO9In0IzZkCNrpGymSfn+kgyPQocg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.58.0.tgz", + "integrity": "sha512-ZjMyby5SICi227y1MTR3VYBpFTdZs823Rs/hpakufleBoufoOIB6jtm9FEoxn/cgO7l6PM2rCEl5Kre5vX0QrQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.58.0.tgz", + "integrity": "sha512-ds4iwfYkSQ0k1nb8LTcyXw//ToHOnNTJtceySpL3fa7tc/AsE+UpUFphW126A6fKBGJD5dhRvg8zw1rvoGFxmw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.58.0.tgz", + "integrity": "sha512-fd/zpJniln4ICdPkjWFhZYeY/bpnaN9pGa6ko+5WD38I0tTqk9lXMgXZg09MNdhpARngmxiCg0B0XUamNw/5BQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.58.0.tgz", + "integrity": "sha512-YpG8dUOip7DCz3nr/JUfPbIUo+2d/dy++5bFzgi4ugOGBIox+qMbbqt/JoORwvI/C9Kn2tz6+Bieoqd5+B1CjA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.58.0.tgz", + "integrity": "sha512-b9DI8jpFQVh4hIXFr0/+N/TzLdpBIoPzjt0Rt4xJbW3mzguV3mduR9cNgiuFcuL/TeORejJhCWiAXe3E/6PxWA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.58.0.tgz", + "integrity": "sha512-CSrVpmoRJFN06LL9xhkitkwUcTZtIotYAF5p6XOR2zW0Zz5mzb3IPpcoPhB02frzMHFNo1reQ9xSF5fFm3hUsQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.58.0.tgz", + "integrity": "sha512-QFsBgQNTnh5K0t/sBsjJLq24YVqEIVkGpfN2VHsnN90soZyhaiA9UUHufcctVNL4ypJY0wrwad0wslx2KJQ1/w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@swc/helpers": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", + "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.8.0" + } + }, + "node_modules/@tailwindcss/node": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.0.tgz", + "integrity": "sha512-Yv+fn/o2OmL5fh/Ir62VXItdShnUxfpkMA4Y7jdeC8O81WPB8Kf6TT6GSHvnqgSwDzlB5iT7kDpeXxLsUS0T6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/remapping": "^2.3.5", + "enhanced-resolve": "^5.19.0", + "jiti": "^2.6.1", + "lightningcss": "1.31.1", + "magic-string": "^0.30.21", + "source-map-js": "^1.2.1", + "tailwindcss": "4.2.0" + } + }, + "node_modules/@tailwindcss/oxide": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.0.tgz", + "integrity": "sha512-AZqQzADaj742oqn2xjl5JbIOzZB/DGCYF/7bpvhA8KvjUj9HJkag6bBuwZvH1ps6dfgxNHyuJVlzSr2VpMgdTQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 20" + }, + "optionalDependencies": { + "@tailwindcss/oxide-android-arm64": "4.2.0", + "@tailwindcss/oxide-darwin-arm64": "4.2.0", + "@tailwindcss/oxide-darwin-x64": "4.2.0", + "@tailwindcss/oxide-freebsd-x64": "4.2.0", + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.0", + "@tailwindcss/oxide-linux-arm64-gnu": "4.2.0", + "@tailwindcss/oxide-linux-arm64-musl": "4.2.0", + "@tailwindcss/oxide-linux-x64-gnu": "4.2.0", + "@tailwindcss/oxide-linux-x64-musl": "4.2.0", + "@tailwindcss/oxide-wasm32-wasi": "4.2.0", + "@tailwindcss/oxide-win32-arm64-msvc": "4.2.0", + "@tailwindcss/oxide-win32-x64-msvc": "4.2.0" + } + }, + "node_modules/@tailwindcss/oxide-android-arm64": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.0.tgz", + "integrity": "sha512-F0QkHAVaW/JNBWl4CEKWdZ9PMb0khw5DCELAOnu+RtjAfx5Zgw+gqCHFvqg3AirU1IAd181fwOtJQ5I8Yx5wtw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-darwin-arm64": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.0.tgz", + "integrity": "sha512-I0QylkXsBsJMZ4nkUNSR04p6+UptjcwhcVo3Zu828ikiEqHjVmQL9RuQ6uT/cVIiKpvtVA25msu/eRV97JeNSA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-darwin-x64": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.0.tgz", + "integrity": "sha512-6TmQIn4p09PBrmnkvbYQ0wbZhLtbaksCDx7Y7R3FYYx0yxNA7xg5KP7dowmQ3d2JVdabIHvs3Hx4K3d5uCf8xg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-freebsd-x64": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.0.tgz", + "integrity": "sha512-qBudxDvAa2QwGlq9y7VIzhTvp2mLJ6nD/G8/tI70DCDoneaUeLWBJaPcbfzqRIWraj+o969aDQKvKW9dvkUizw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.0.tgz", + "integrity": "sha512-7XKkitpy5NIjFZNUQPeUyNJNJn1CJeV7rmMR+exHfTuOsg8rxIO9eNV5TSEnqRcaOK77zQpsyUkBWmPy8FgdSg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.0.tgz", + "integrity": "sha512-Mff5a5Q3WoQR01pGU1gr29hHM1N93xYrKkGXfPw/aRtK4bOc331Ho4Tgfsm5WDGvpevqMpdlkCojT3qlCQbCpA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-musl": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.0.tgz", + "integrity": "sha512-XKcSStleEVnbH6W/9DHzZv1YhjE4eSS6zOu2eRtYAIh7aV4o3vIBs+t/B15xlqoxt6ef/0uiqJVB6hkHjWD/0A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-gnu": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.0.tgz", + "integrity": "sha512-/hlXCBqn9K6fi7eAM0RsobHwJYa5V/xzWspVTzxnX+Ft9v6n+30Pz8+RxCn7sQL/vRHHLS30iQPrHQunu6/vJA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-musl": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.0.tgz", + "integrity": "sha512-lKUaygq4G7sWkhQbfdRRBkaq4LY39IriqBQ+Gk6l5nKq6Ay2M2ZZb1tlIyRNgZKS8cbErTwuYSor0IIULC0SHw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.0.tgz", + "integrity": "sha512-xuDjhAsFdUuFP5W9Ze4k/o4AskUtI8bcAGU4puTYprr89QaYFmhYOPfP+d1pH+k9ets6RoE23BXZM1X1jJqoyw==", + "bundleDependencies": [ + "@napi-rs/wasm-runtime", + "@emnapi/core", + "@emnapi/runtime", + "@tybys/wasm-util", + "@emnapi/wasi-threads", + "tslib" + ], + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.8.1", + "@emnapi/runtime": "^1.8.1", + "@emnapi/wasi-threads": "^1.1.0", + "@napi-rs/wasm-runtime": "^1.1.1", + "@tybys/wasm-util": "^0.10.1", + "tslib": "^2.8.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.0.tgz", + "integrity": "sha512-2UU/15y1sWDEDNJXxEIrfWKC2Yb4YgIW5Xz2fKFqGzFWfoMHWFlfa1EJlGO2Xzjkq/tvSarh9ZTjvbxqWvLLXA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-win32-x64-msvc": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.0.tgz", + "integrity": "sha512-CrFadmFoc+z76EV6LPG1jx6XceDsaCG3lFhyLNo/bV9ByPrE+FnBPckXQVP4XRkN76h3Fjt/a+5Er/oA/nCBvQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/postcss": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.2.0.tgz", + "integrity": "sha512-u6YBacGpOm/ixPfKqfgrJEjMfrYmPD7gEFRoygS/hnQaRtV0VCBdpkx5Ouw9pnaLRwwlgGCuJw8xLpaR0hOrQg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "@tailwindcss/node": "4.2.0", + "@tailwindcss/oxide": "4.2.0", + "postcss": "^8.5.6", + "tailwindcss": "4.2.0" + } + }, + "node_modules/@tailwindcss/vite": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.2.0.tgz", + "integrity": "sha512-da9mFCaHpoOgtQiWtDGIikTrSpUFBtIZCG3jy/u2BGV+l/X1/pbxzmIUxNt6JWm19N3WtGi4KlJdSH/Si83WOA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@tailwindcss/node": "4.2.0", + "@tailwindcss/oxide": "4.2.0", + "tailwindcss": "4.2.0" + }, + "peerDependencies": { + "vite": "^5.2.0 || ^6 || ^7" + } + }, + "node_modules/@tanstack/query-core": { + "version": "5.90.20", + "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.90.20.tgz", + "integrity": "sha512-OMD2HLpNouXEfZJWcKeVKUgQ5n+n3A2JFmBaScpNDUqSrQSjiveC7dKMe53uJUg1nDG16ttFPz2xfilz6i2uVg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + } + }, + "node_modules/@tanstack/react-query": { + "version": "5.90.21", + "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.90.21.tgz", + "integrity": "sha512-0Lu6y5t+tvlTJMTO7oh5NSpJfpg/5D41LlThfepTixPYkJ0sE2Jj0m0f6yYqujBwIXlId87e234+MxG3D3g7kg==", + "license": "MIT", + "dependencies": { + "@tanstack/query-core": "5.90.20" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + }, + "peerDependencies": { + "react": "^18 || ^19" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", + "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.2" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.6", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.6.tgz", + "integrity": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/compression": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/@types/compression/-/compression-1.8.1.tgz", + "integrity": "sha512-kCFuWS0ebDbmxs0AXYn6e2r2nrGAb5KwQhknjSPSPgJcGd8+HVSILlUyFhGqML2gk39HcG7D1ydW9/qpYkN00Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/express": "*", + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/cors": { + "version": "2.8.19", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.19.tgz", + "integrity": "sha512-mFNylyeyqN93lfe/9CSxOGREz8cpzAhH+E93xJ4xWQf62V8sQ/24reV2nyzUWM6H6Xji+GGHpkbLe7pVoUEskg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/express": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@types/express/-/express-5.0.6.tgz", + "integrity": "sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^5.0.0", + "@types/serve-static": "^2" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.1.1.tgz", + "integrity": "sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/geojson": { + "version": "7946.0.16", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz", + "integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/http-errors": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.5.tgz", + "integrity": "sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/leaflet": { + "version": "1.9.21", + "resolved": "https://registry.npmjs.org/@types/leaflet/-/leaflet-1.9.21.tgz", + "integrity": "sha512-TbAd9DaPGSnzp6QvtYngntMZgcRk+igFELwR2N99XZn7RXUdKgsXMR+28bUO0rPsWp8MIu/f47luLIQuSLYv/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/morgan": { + "version": "1.9.10", + "resolved": "https://registry.npmjs.org/@types/morgan/-/morgan-1.9.10.tgz", + "integrity": "sha512-sS4A1zheMvsADRVfT0lYbJ4S9lmsey8Zo2F7cnbYjWHP67Q0AwMYuuzLlkIM2N8gAbb9cubhIVFwcIN2XyYCkA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/node": { + "version": "22.19.11", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.11.tgz", + "integrity": "sha512-BH7YwL6rA93ReqeQS1c4bsPpcfOmJasG+Fkr6Y59q83f9M1WcBRHR2vM+P9eOisYRcN3ujQoiZY8uk5W+1WL8w==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/@types/qs": { + "version": "6.14.0", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.14.0.tgz", + "integrity": "sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/range-parser": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "19.2.14", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz", + "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==", + "devOptional": true, + "license": "MIT", + "peer": true, + "dependencies": { + "csstype": "^3.2.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.2.3", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", + "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^19.2.0" + } + }, + "node_modules/@types/send": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@types/send/-/send-1.2.1.tgz", + "integrity": "sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-2.2.0.tgz", + "integrity": "sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/http-errors": "*", + "@types/node": "*" + } + }, + "node_modules/@vitejs/plugin-react": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz", + "integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.28.0", + "@babel/plugin-transform-react-jsx-self": "^7.27.1", + "@babel/plugin-transform-react-jsx-source": "^7.27.1", + "@rolldown/pluginutils": "1.0.0-beta.27", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.17.0" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" + } + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/accepts/node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "license": "MIT" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.0.tgz", + "integrity": "sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==", + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.cjs" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/basic-auth": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", + "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.1.2" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/basic-auth/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/body-parser": { + "version": "1.20.4", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.4.tgz", + "integrity": "sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA==", + "license": "MIT", + "dependencies": { + "bytes": "~3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "~1.2.0", + "http-errors": "~2.0.1", + "iconv-lite": "~0.4.24", + "on-finished": "~2.4.1", + "qs": "~6.14.0", + "raw-body": "~2.5.3", + "type-is": "~1.6.18", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/browserslist": { + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz", + "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "peer": true, + "dependencies": { + "baseline-browser-mapping": "^2.9.0", + "caniuse-lite": "^1.0.30001759", + "electron-to-chromium": "^1.5.263", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.2.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001770", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001770.tgz", + "integrity": "sha512-x/2CLQ1jHENRbHg5PSId2sXq1CIO1CISvwWAj027ltMVG2UNgW+w9oH2+HzgEIRFembL8bUlXtfbBHR1fCg2xw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", + "license": "MIT" + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "license": "MIT", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz", + "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "compressible": "~2.0.18", + "debug": "2.6.9", + "negotiator": "~0.6.4", + "on-headers": "~1.1.0", + "safe-buffer": "5.2.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cookie": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", + "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz", + "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==", + "license": "MIT" + }, + "node_modules/cors": { + "version": "2.8.6", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz", + "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==", + "license": "MIT", + "dependencies": { + "object-assign": "^4", + "vary": "^1" + }, + "engines": { + "node": ">= 0.10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "devOptional": true, + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.302", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.302.tgz", + "integrity": "sha512-sM6HAN2LyK82IyPBpznDRqlTQAtuSaO+ShzFiWTvoMJLHyZ+Y39r8VMfHzwbU8MVBzQ4Wdn85+wlZl2TLGIlwg==", + "dev": true, + "license": "ISC" + }, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.19.0.tgz", + "integrity": "sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.3.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/esbuild": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.3.tgz", + "integrity": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.27.3", + "@esbuild/android-arm": "0.27.3", + "@esbuild/android-arm64": "0.27.3", + "@esbuild/android-x64": "0.27.3", + "@esbuild/darwin-arm64": "0.27.3", + "@esbuild/darwin-x64": "0.27.3", + "@esbuild/freebsd-arm64": "0.27.3", + "@esbuild/freebsd-x64": "0.27.3", + "@esbuild/linux-arm": "0.27.3", + "@esbuild/linux-arm64": "0.27.3", + "@esbuild/linux-ia32": "0.27.3", + "@esbuild/linux-loong64": "0.27.3", + "@esbuild/linux-mips64el": "0.27.3", + "@esbuild/linux-ppc64": "0.27.3", + "@esbuild/linux-riscv64": "0.27.3", + "@esbuild/linux-s390x": "0.27.3", + "@esbuild/linux-x64": "0.27.3", + "@esbuild/netbsd-arm64": "0.27.3", + "@esbuild/netbsd-x64": "0.27.3", + "@esbuild/openbsd-arm64": "0.27.3", + "@esbuild/openbsd-x64": "0.27.3", + "@esbuild/openharmony-arm64": "0.27.3", + "@esbuild/sunos-x64": "0.27.3", + "@esbuild/win32-arm64": "0.27.3", + "@esbuild/win32-ia32": "0.27.3", + "@esbuild/win32-x64": "0.27.3" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express": { + "version": "4.22.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.22.1.tgz", + "integrity": "sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "~1.20.3", + "content-disposition": "~0.5.4", + "content-type": "~1.0.4", + "cookie": "~0.7.1", + "cookie-signature": "~1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.3.1", + "fresh": "~0.5.2", + "http-errors": "~2.0.0", + "merge-descriptors": "1.0.3", + "methods": "~1.1.2", + "on-finished": "~2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "~0.1.12", + "proxy-addr": "~2.0.7", + "qs": "~6.14.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "~0.19.0", + "serve-static": "~1.16.2", + "setprototypeof": "1.2.0", + "statuses": "~2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/finalhandler": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz", + "integrity": "sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "~2.4.1", + "parseurl": "~1.3.3", + "statuses": "~2.0.2", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-tsconfig": { + "version": "4.13.6", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.13.6.tgz", + "integrity": "sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/helmet": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/helmet/-/helmet-8.1.0.tgz", + "integrity": "sha512-jOiHyAZsmnr8LqoPGmCjYAaiuWwjAPLgY8ZX2XrmHawt99/u1y6RgrZMTeoPfpUbV96HOalYgz1qzkRbw54Pmg==", + "license": "MIT", + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", + "license": "MIT", + "dependencies": { + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/jiti": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz", + "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==", + "dev": true, + "license": "MIT", + "peer": true, + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/leaflet": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.9.4.tgz", + "integrity": "sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA==", + "license": "BSD-2-Clause", + "peer": true + }, + "node_modules/leaflet-markers-canvas": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/leaflet-markers-canvas/-/leaflet-markers-canvas-0.2.2.tgz", + "integrity": "sha512-UU/98qrmljhU6Xl3lrsUAUke4Qb/p8BCfmhiw7L1hHtkVMxdRYgwk7RwUW9QNoPbhnmuyxsc90whKjWVVP5cNw==", + "license": "AGPL-3.0-or-later", + "peerDependencies": { + "leaflet": "^1.7.1", + "rbush": "^3.0.1" + } + }, + "node_modules/lightningcss": { + "version": "1.31.1", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.31.1.tgz", + "integrity": "sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==", + "dev": true, + "license": "MPL-2.0", + "peer": true, + "dependencies": { + "detect-libc": "^2.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-android-arm64": "1.31.1", + "lightningcss-darwin-arm64": "1.31.1", + "lightningcss-darwin-x64": "1.31.1", + "lightningcss-freebsd-x64": "1.31.1", + "lightningcss-linux-arm-gnueabihf": "1.31.1", + "lightningcss-linux-arm64-gnu": "1.31.1", + "lightningcss-linux-arm64-musl": "1.31.1", + "lightningcss-linux-x64-gnu": "1.31.1", + "lightningcss-linux-x64-musl": "1.31.1", + "lightningcss-win32-arm64-msvc": "1.31.1", + "lightningcss-win32-x64-msvc": "1.31.1" + } + }, + "node_modules/lightningcss-android-arm64": { + "version": "1.31.1", + "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.31.1.tgz", + "integrity": "sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-arm64": { + "version": "1.31.1", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.31.1.tgz", + "integrity": "sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-x64": { + "version": "1.31.1", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.31.1.tgz", + "integrity": "sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-freebsd-x64": { + "version": "1.31.1", + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.31.1.tgz", + "integrity": "sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.31.1", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.31.1.tgz", + "integrity": "sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.31.1", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.31.1.tgz", + "integrity": "sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.31.1", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.31.1.tgz", + "integrity": "sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.31.1", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.31.1.tgz", + "integrity": "sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.31.1", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.31.1.tgz", + "integrity": "sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.31.1", + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.31.1.tgz", + "integrity": "sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.31.1", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.31.1.tgz", + "integrity": "sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.54.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types/node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/morgan": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.1.tgz", + "integrity": "sha512-223dMRJtI/l25dJKWpgij2cMtywuG/WiUKXdvwfbhGKBhy1puASqXwFzmWZ7+K73vUPoR7SS2Qz2cI/g9MKw0A==", + "license": "MIT", + "dependencies": { + "basic-auth": "~2.0.1", + "debug": "2.6.9", + "depd": "~2.0.0", + "on-finished": "~2.3.0", + "on-headers": "~1.1.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/morgan/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/morgan/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/morgan/node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/negotiator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/next": { + "version": "16.1.6", + "resolved": "https://registry.npmjs.org/next/-/next-16.1.6.tgz", + "integrity": "sha512-hkyRkcu5x/41KoqnROkfTm2pZVbKxvbZRuNvKXLRXxs3VfyO0WhY50TQS40EuKO9SW3rBj/sF3WbVwDACeMZyw==", + "license": "MIT", + "dependencies": { + "@next/env": "16.1.6", + "@swc/helpers": "0.5.15", + "baseline-browser-mapping": "^2.8.3", + "caniuse-lite": "^1.0.30001579", + "postcss": "8.4.31", + "styled-jsx": "5.1.6" + }, + "bin": { + "next": "dist/bin/next" + }, + "engines": { + "node": ">=20.9.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "16.1.6", + "@next/swc-darwin-x64": "16.1.6", + "@next/swc-linux-arm64-gnu": "16.1.6", + "@next/swc-linux-arm64-musl": "16.1.6", + "@next/swc-linux-x64-gnu": "16.1.6", + "@next/swc-linux-x64-musl": "16.1.6", + "@next/swc-win32-arm64-msvc": "16.1.6", + "@next/swc-win32-x64-msvc": "16.1.6", + "sharp": "^0.34.4" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "@playwright/test": "^1.51.1", + "babel-plugin-react-compiler": "*", + "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "@playwright/test": { + "optional": true + }, + "babel-plugin-react-compiler": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/next/node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/node-releases": { + "version": "2.0.27", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz", + "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz", + "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-to-regexp": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", + "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==", + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/qs": { + "version": "6.14.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz", + "integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/quickselect": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz", + "integrity": "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==", + "license": "ISC" + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz", + "integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==", + "license": "MIT", + "dependencies": { + "bytes": "~3.1.2", + "http-errors": "~2.0.1", + "iconv-lite": "~0.4.24", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/rbush": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/rbush/-/rbush-3.0.1.tgz", + "integrity": "sha512-XRaVO0YecOpEuIvbhbpTrZgoiI6xBlz6hnlr6EHhd+0x9ase6EmeN+hdwwUaJvLcsFFQ8iWVF1GAK1yB0BWi0w==", + "license": "MIT", + "peer": true, + "dependencies": { + "quickselect": "^2.0.0" + } + }, + "node_modules/react": { + "version": "19.2.4", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz", + "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "19.2.4", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz", + "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "scheduler": "^0.27.0" + }, + "peerDependencies": { + "react": "^19.2.4" + } + }, + "node_modules/react-leaflet": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/react-leaflet/-/react-leaflet-5.0.0.tgz", + "integrity": "sha512-CWbTpr5vcHw5bt9i4zSlPEVQdTVcML390TjeDG0cK59z1ylexpqC6M1PJFjV8jD7CF+ACBFsLIDs6DRMoLEofw==", + "license": "Hippocratic-2.1", + "dependencies": { + "@react-leaflet/core": "^3.0.0" + }, + "peerDependencies": { + "leaflet": "^1.9.0", + "react": "^19.0.0", + "react-dom": "^19.0.0" + } + }, + "node_modules/react-refresh": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz", + "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-router": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.13.0.tgz", + "integrity": "sha512-PZgus8ETambRT17BUm/LL8lX3Of+oiLaPuVTRH3l1eLvSPpKO3AvhAEb5N7ihAFZQrYDqkvvWfFh9p0z9VsjLw==", + "license": "MIT", + "dependencies": { + "cookie": "^1.0.1", + "set-cookie-parser": "^2.6.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "react": ">=18", + "react-dom": ">=18" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + } + } + }, + "node_modules/react-router-dom": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.13.0.tgz", + "integrity": "sha512-5CO/l5Yahi2SKC6rGZ+HDEjpjkGaG/ncEP7eWFTvFxbHP8yeeI0PxTDjimtpXYlR3b3i9/WIL4VJttPrESIf2g==", + "license": "MIT", + "dependencies": { + "react-router": "7.13.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "react": ">=18", + "react-dom": ">=18" + } + }, + "node_modules/react-router/node_modules/cookie": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz", + "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/rollup": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.58.0.tgz", + "integrity": "sha512-wbT0mBmWbIvvq8NeEYWWvevvxnOyhKChir47S66WCxw1SXqhw7ssIYejnQEVt7XYQpsj2y8F9PM+Cr3SNEa0gw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.58.0", + "@rollup/rollup-android-arm64": "4.58.0", + "@rollup/rollup-darwin-arm64": "4.58.0", + "@rollup/rollup-darwin-x64": "4.58.0", + "@rollup/rollup-freebsd-arm64": "4.58.0", + "@rollup/rollup-freebsd-x64": "4.58.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.58.0", + "@rollup/rollup-linux-arm-musleabihf": "4.58.0", + "@rollup/rollup-linux-arm64-gnu": "4.58.0", + "@rollup/rollup-linux-arm64-musl": "4.58.0", + "@rollup/rollup-linux-loong64-gnu": "4.58.0", + "@rollup/rollup-linux-loong64-musl": "4.58.0", + "@rollup/rollup-linux-ppc64-gnu": "4.58.0", + "@rollup/rollup-linux-ppc64-musl": "4.58.0", + "@rollup/rollup-linux-riscv64-gnu": "4.58.0", + "@rollup/rollup-linux-riscv64-musl": "4.58.0", + "@rollup/rollup-linux-s390x-gnu": "4.58.0", + "@rollup/rollup-linux-x64-gnu": "4.58.0", + "@rollup/rollup-linux-x64-musl": "4.58.0", + "@rollup/rollup-openbsd-x64": "4.58.0", + "@rollup/rollup-openharmony-arm64": "4.58.0", + "@rollup/rollup-win32-arm64-msvc": "4.58.0", + "@rollup/rollup-win32-ia32-msvc": "4.58.0", + "@rollup/rollup-win32-x64-gnu": "4.58.0", + "@rollup/rollup-win32-x64-msvc": "4.58.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/scheduler": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", + "license": "MIT" + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.2.tgz", + "integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "~0.5.2", + "http-errors": "~2.0.1", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "~2.4.1", + "range-parser": "~1.2.1", + "statuses": "~2.0.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/serve-static": { + "version": "1.16.3", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.3.tgz", + "integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==", + "license": "MIT", + "dependencies": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "~0.19.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-cookie-parser": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.2.tgz", + "integrity": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==", + "license": "MIT" + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/sharp": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz", + "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==", + "hasInstallScript": true, + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "@img/colour": "^1.0.0", + "detect-libc": "^2.1.2", + "semver": "^7.7.3" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-darwin-arm64": "0.34.5", + "@img/sharp-darwin-x64": "0.34.5", + "@img/sharp-libvips-darwin-arm64": "1.2.4", + "@img/sharp-libvips-darwin-x64": "1.2.4", + "@img/sharp-libvips-linux-arm": "1.2.4", + "@img/sharp-libvips-linux-arm64": "1.2.4", + "@img/sharp-libvips-linux-ppc64": "1.2.4", + "@img/sharp-libvips-linux-riscv64": "1.2.4", + "@img/sharp-libvips-linux-s390x": "1.2.4", + "@img/sharp-libvips-linux-x64": "1.2.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4", + "@img/sharp-libvips-linuxmusl-x64": "1.2.4", + "@img/sharp-linux-arm": "0.34.5", + "@img/sharp-linux-arm64": "0.34.5", + "@img/sharp-linux-ppc64": "0.34.5", + "@img/sharp-linux-riscv64": "0.34.5", + "@img/sharp-linux-s390x": "0.34.5", + "@img/sharp-linux-x64": "0.34.5", + "@img/sharp-linuxmusl-arm64": "0.34.5", + "@img/sharp-linuxmusl-x64": "0.34.5", + "@img/sharp-wasm32": "0.34.5", + "@img/sharp-win32-arm64": "0.34.5", + "@img/sharp-win32-ia32": "0.34.5", + "@img/sharp-win32-x64": "0.34.5" + } + }, + "node_modules/sharp/node_modules/semver": { + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "license": "ISC", + "optional": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/statuses": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", + "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/styled-jsx": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz", + "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==", + "license": "MIT", + "dependencies": { + "client-only": "0.0.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/tailwindcss": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.0.tgz", + "integrity": "sha512-yYzTZ4++b7fNYxFfpnberEEKu43w44aqDMNM9MHMmcKuCH7lL8jJ4yJ7LGHv7rSwiqM0nkiobF9I6cLlpS2P7Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/tapable": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz", + "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/tsx": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.21.0.tgz", + "integrity": "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "~0.27.0", + "get-tsconfig": "^4.7.5" + }, + "bin": { + "tsx": "dist/cli.mjs" + }, + "engines": { + "node": ">=18.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + } + }, + "node_modules/turbo": { + "version": "2.8.10", + "resolved": "https://registry.npmjs.org/turbo/-/turbo-2.8.10.tgz", + "integrity": "sha512-OxbzDES66+x7nnKGg2MwBA1ypVsZoDTLHpeaP4giyiHSixbsiTaMyeJqbEyvBdp5Cm28fc+8GG6RdQtic0ijwQ==", + "dev": true, + "license": "MIT", + "bin": { + "turbo": "bin/turbo" + }, + "optionalDependencies": { + "turbo-darwin-64": "2.8.10", + "turbo-darwin-arm64": "2.8.10", + "turbo-linux-64": "2.8.10", + "turbo-linux-arm64": "2.8.10", + "turbo-windows-64": "2.8.10", + "turbo-windows-arm64": "2.8.10" + } + }, + "node_modules/turbo-darwin-64": { + "version": "2.8.10", + "resolved": "https://registry.npmjs.org/turbo-darwin-64/-/turbo-darwin-64-2.8.10.tgz", + "integrity": "sha512-A03fXh+B7S8mL3PbdhTd+0UsaGrhfyPkODvzBDpKRY7bbeac4MDFpJ7I+Slf2oSkCEeSvHKR7Z4U71uKRUfX7g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/turbo-darwin-arm64": { + "version": "2.8.10", + "resolved": "https://registry.npmjs.org/turbo-darwin-arm64/-/turbo-darwin-arm64-2.8.10.tgz", + "integrity": "sha512-sidzowgWL3s5xCHLeqwC9M3s9M0i16W1nuQF3Mc7fPHpZ+YPohvcbVFBB2uoRRHYZg6yBnwD4gyUHKTeXfwtXA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/turbo-linux-64": { + "version": "2.8.10", + "resolved": "https://registry.npmjs.org/turbo-linux-64/-/turbo-linux-64-2.8.10.tgz", + "integrity": "sha512-YK9vcpL3TVtqonB021XwgaQhY9hJJbKKUhLv16osxV0HkcQASQWUqR56yMge7puh6nxU67rQlTq1b7ksR1T3KA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/turbo-linux-arm64": { + "version": "2.8.10", + "resolved": "https://registry.npmjs.org/turbo-linux-arm64/-/turbo-linux-arm64-2.8.10.tgz", + "integrity": "sha512-3+j2tL0sG95iBJTm+6J8/45JsETQABPqtFyYjVjBbi6eVGdtNTiBmHNKrbvXRlQ3ZbUG75bKLaSSDHSEEN+btQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/turbo-windows-64": { + "version": "2.8.10", + "resolved": "https://registry.npmjs.org/turbo-windows-64/-/turbo-windows-64-2.8.10.tgz", + "integrity": "sha512-hdeF5qmVY/NFgiucf8FW0CWJWtyT2QPm5mIsX0W1DXAVzqKVXGq+Zf+dg4EUngAFKjDzoBeN6ec2Fhajwfztkw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/turbo-windows-arm64": { + "version": "2.8.10", + "resolved": "https://registry.npmjs.org/turbo-windows-arm64/-/turbo-windows-arm64-2.8.10.tgz", + "integrity": "sha512-QGdr/Q8LWmj+ITMkSvfiz2glf0d7JG0oXVzGL3jxkGqiBI1zXFj20oqVY0qWi+112LO9SVrYdpHS0E/oGFrMbQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vite": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/vite/-/vite-6.4.1.tgz", + "integrity": "sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "esbuild": "^0.25.0", + "fdir": "^6.4.4", + "picomatch": "^4.0.2", + "postcss": "^8.5.3", + "rollup": "^4.34.9", + "tinyglobby": "^0.2.13" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", + "jiti": ">=1.21.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vite/node_modules/@esbuild/aix-ppc64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz", + "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/android-arm": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz", + "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/android-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz", + "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/android-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz", + "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/darwin-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz", + "integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/darwin-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz", + "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz", + "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/freebsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz", + "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-arm": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz", + "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz", + "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-ia32": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz", + "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-loong64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz", + "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-mips64el": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz", + "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-ppc64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz", + "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-riscv64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz", + "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-s390x": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz", + "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz", + "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz", + "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/netbsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz", + "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz", + "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/openbsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz", + "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/openharmony-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz", + "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/sunos-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz", + "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz", + "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-ia32": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz", + "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz", + "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/esbuild": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz", + "integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.12", + "@esbuild/android-arm": "0.25.12", + "@esbuild/android-arm64": "0.25.12", + "@esbuild/android-x64": "0.25.12", + "@esbuild/darwin-arm64": "0.25.12", + "@esbuild/darwin-x64": "0.25.12", + "@esbuild/freebsd-arm64": "0.25.12", + "@esbuild/freebsd-x64": "0.25.12", + "@esbuild/linux-arm": "0.25.12", + "@esbuild/linux-arm64": "0.25.12", + "@esbuild/linux-ia32": "0.25.12", + "@esbuild/linux-loong64": "0.25.12", + "@esbuild/linux-mips64el": "0.25.12", + "@esbuild/linux-ppc64": "0.25.12", + "@esbuild/linux-riscv64": "0.25.12", + "@esbuild/linux-s390x": "0.25.12", + "@esbuild/linux-x64": "0.25.12", + "@esbuild/netbsd-arm64": "0.25.12", + "@esbuild/netbsd-x64": "0.25.12", + "@esbuild/openbsd-arm64": "0.25.12", + "@esbuild/openbsd-x64": "0.25.12", + "@esbuild/openharmony-arm64": "0.25.12", + "@esbuild/sunos-x64": "0.25.12", + "@esbuild/win32-arm64": "0.25.12", + "@esbuild/win32-ia32": "0.25.12", + "@esbuild/win32-x64": "0.25.12" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/zustand": { + "version": "5.0.11", + "resolved": "https://registry.npmjs.org/zustand/-/zustand-5.0.11.tgz", + "integrity": "sha512-fdZY+dk7zn/vbWNCYmzZULHRrss0jx5pPFiOuMZ/5HJN6Yv3u+1Wswy/4MpZEkEGhtNH+pwxZB8OKgUBPzYAGg==", + "license": "MIT", + "engines": { + "node": ">=12.20.0" + }, + "peerDependencies": { + "@types/react": ">=18.0.0", + "immer": ">=9.0.6", + "react": ">=18.0.0", + "use-sync-external-store": ">=1.2.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "immer": { + "optional": true + }, + "react": { + "optional": true + }, + "use-sync-external-store": { + "optional": true + } + } + }, + "packages/api-client": { + "name": "@flight-tracker/api-client", + "version": "0.1.0", + "dependencies": { + "@flight-tracker/types": "*" + } + }, + "packages/config": { + "name": "@flight-tracker/config", + "version": "0.1.0", + "devDependencies": { + "typescript": "^5.7.0" + } + }, + "packages/types": { + "name": "@flight-tracker/types", + "version": "0.1.0", + "devDependencies": { + "typescript": "^5.7.0" + } + }, + "packages/ui": { + "name": "@flight-tracker/ui", + "version": "0.1.0", + "peerDependencies": { + "react": "^19.0.0", + "react-dom": "^19.0.0" + } + }, + "packages/utils": { + "name": "@flight-tracker/utils", + "version": "0.1.0", + "devDependencies": { + "typescript": "^5.7.0" + } + } + } +} diff --git a/packages/api-client/package.json b/packages/api-client/package.json new file mode 100644 index 0000000..0397fb7 --- /dev/null +++ b/packages/api-client/package.json @@ -0,0 +1,14 @@ +{ + "name": "@flight-tracker/api-client", + "version": "0.1.0", + "private": true, + "main": "./src/index.ts", + "types": "./src/index.ts", + "scripts": { + "build": "echo 'No build needed — consumed as source'", + "clean": "echo 'Nothing to clean'" + }, + "dependencies": { + "@flight-tracker/types": "*" + } +} diff --git a/packages/api-client/src/index.ts b/packages/api-client/src/index.ts new file mode 100644 index 0000000..751b014 --- /dev/null +++ b/packages/api-client/src/index.ts @@ -0,0 +1,45 @@ +import type { FlightData, AirportData } from "@flight-tracker/types"; + +const getBaseUrl = () => { + if (typeof window !== "undefined") { + return process.env.NEXT_PUBLIC_API_URL ?? "http://localhost:5001"; + } + return process.env.API_URL ?? "http://localhost:5001"; +}; + +export async function getFlights( + bounds?: { north: number; south: number; east: number; west: number }, + limit?: number +): Promise { + const params = new URLSearchParams(); + if (bounds) { + params.set("north", String(bounds.north)); + params.set("south", String(bounds.south)); + params.set("east", String(bounds.east)); + params.set("west", String(bounds.west)); + } + if (limit) params.set("limit", String(limit)); + + const res = await fetch(`${getBaseUrl()}/api/flights/live?${params}`); + if (!res.ok) throw new Error(`Failed to fetch flights: ${res.status}`); + return res.json(); +} + +export async function getFlight(id: string): Promise { + const res = await fetch(`${getBaseUrl()}/api/flights/${encodeURIComponent(id)}`); + if (!res.ok) throw new Error(`Failed to fetch flight: ${res.status}`); + return res.json(); +} + +export async function getAirports(limit?: number): Promise { + const params = limit ? `?limit=${limit}` : ""; + const res = await fetch(`${getBaseUrl()}/api/airports${params}`); + if (!res.ok) throw new Error(`Failed to fetch airports: ${res.status}`); + return res.json(); +} + +export async function getAirport(code: string): Promise { + const res = await fetch(`${getBaseUrl()}/api/airports/${encodeURIComponent(code)}`); + if (!res.ok) throw new Error(`Failed to fetch airport: ${res.status}`); + return res.json(); +} diff --git a/packages/api-client/tsconfig.json b/packages/api-client/tsconfig.json new file mode 100644 index 0000000..564a599 --- /dev/null +++ b/packages/api-client/tsconfig.json @@ -0,0 +1,4 @@ +{ + "extends": "../../tsconfig.base.json", + "include": ["src"] +} diff --git a/packages/config/package.json b/packages/config/package.json new file mode 100644 index 0000000..841acfd --- /dev/null +++ b/packages/config/package.json @@ -0,0 +1,14 @@ +{ + "name": "@flight-tracker/config", + "version": "0.1.0", + "private": true, + "main": "./dist/index.js", + "types": "./dist/index.d.ts", + "scripts": { + "build": "tsc", + "clean": "rm -rf dist" + }, + "devDependencies": { + "typescript": "^5.7.0" + } +} diff --git a/packages/config/src/index.ts b/packages/config/src/index.ts new file mode 100644 index 0000000..084207a --- /dev/null +++ b/packages/config/src/index.ts @@ -0,0 +1,69 @@ +export const MAP_DEFAULTS = { + center: { lat: 51, lng: -2 } as const, + zoom: 4, + minZoom: 2, + maxZoom: 15, + defaultLayer: "Mapnik", +} as const; + +export const ANGLE_STEPS = [ + 0, 15, 30, 45, 60, 75, 90, 105, 120, 135, 150, 165, 180, 195, 210, 225, + 240, 255, 270, 285, 300, 315, 330, 345, 360, +] as const; + +export interface TileLayerConfig { + name: string; + attribution: string; + url: string; +} + +export function getTileLayers(mapTilerToken?: string): TileLayerConfig[] { + return [ + { + name: "Mapnik", + attribution: + '© OpenStreetMap contributors', + url: "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", + }, + { + name: "OpenTopoMap", + attribution: + 'Map data: © OpenStreetMap contributors, SRTM | Map style: © OpenTopoMap (CC-BY-SA)', + url: "https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png", + }, + { + name: "AlidadeSmoothDark", + attribution: + '© Stadia Maps, © OpenMapTiles © OpenStreetMap contributors', + url: "https://tiles.stadiamaps.com/tiles/alidade_smooth_dark/{z}/{x}/{y}{r}.png", + }, + ...(mapTilerToken + ? [ + { + name: "Satellite", + attribution: + '© MapTiler © OpenStreetMap contributors', + url: `https://api.maptiler.com/maps/hybrid/{z}/{x}/{y}.jpg?key=${mapTilerToken}`, + }, + ] + : []), + { + name: "WorldStreetMap", + attribution: + "Tiles © Esri — Source: Esri, DeLorme, NAVTEQ, USGS, Intermap, iPC, NRCAN, Esri Japan, METI, Esri China (Hong Kong), Esri (Thailand), TomTom, 2012", + url: "https://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer/tile/{z}/{y}/{x}", + }, + ]; +} + +export const API_CONFIG = { + defaultPort: 5001, + flightCacheTTL: 30, // seconds + airportCacheTTL: 86400, // 24 hours + weatherCacheTTL: 900, // 15 minutes +} as const; + +export const WEB_CONFIG = { + defaultPort: 3000, + pollInterval: 30_000, // 30s for live flight updates +} as const; diff --git a/packages/config/tsconfig.json b/packages/config/tsconfig.json new file mode 100644 index 0000000..5a24989 --- /dev/null +++ b/packages/config/tsconfig.json @@ -0,0 +1,8 @@ +{ + "extends": "../../tsconfig.base.json", + "compilerOptions": { + "outDir": "dist", + "rootDir": "src" + }, + "include": ["src"] +} diff --git a/packages/types/package.json b/packages/types/package.json new file mode 100644 index 0000000..af4cd68 --- /dev/null +++ b/packages/types/package.json @@ -0,0 +1,14 @@ +{ + "name": "@flight-tracker/types", + "version": "0.1.0", + "private": true, + "main": "./dist/index.js", + "types": "./dist/index.d.ts", + "scripts": { + "build": "tsc", + "clean": "rm -rf dist" + }, + "devDependencies": { + "typescript": "^5.7.0" + } +} diff --git a/components/types.ts b/packages/types/src/flight.ts similarity index 89% rename from components/types.ts rename to packages/types/src/flight.ts index 75512e7..e01166e 100644 --- a/components/types.ts +++ b/packages/types/src/flight.ts @@ -8,7 +8,7 @@ interface Aircraft extends ICode { regNumber: string; } -interface Flight { +interface FlightIdentifier { iataNumber: string; icaoNumber: string; number: string; @@ -27,7 +27,7 @@ interface Speed { vspeed: number; } -interface System { +interface FlightSystem { squawk: number; updated: number; } @@ -37,11 +37,11 @@ export interface FlightData { airline: ICode; arrival: ICode; departure: ICode; - flight: Flight; + flight: FlightIdentifier; geography: Geography; speed: Speed; status: string; - system: System; + system: FlightSystem; } export interface AirportData { diff --git a/packages/types/src/index.ts b/packages/types/src/index.ts new file mode 100644 index 0000000..acba62e --- /dev/null +++ b/packages/types/src/index.ts @@ -0,0 +1,2 @@ +export type { FlightData, AirportData } from "./flight"; +export type { User, SavedFlight, TrackedRoute } from "./user"; diff --git a/packages/types/src/user.ts b/packages/types/src/user.ts new file mode 100644 index 0000000..8a2b150 --- /dev/null +++ b/packages/types/src/user.ts @@ -0,0 +1,27 @@ +export interface User { + id: string; + email: string; + name: string; + image?: string; + plan: "free" | "premium" | "family" | "business"; + createdAt: string; +} + +export interface SavedFlight { + id: string; + userId: string; + flightNumber: string; + departureCode: string; + arrivalCode: string; + date: string; + createdAt: string; +} + +export interface TrackedRoute { + id: string; + userId: string; + departureCode: string; + arrivalCode: string; + notifyDelays: boolean; + createdAt: string; +} diff --git a/packages/types/tsconfig.json b/packages/types/tsconfig.json new file mode 100644 index 0000000..5a24989 --- /dev/null +++ b/packages/types/tsconfig.json @@ -0,0 +1,8 @@ +{ + "extends": "../../tsconfig.base.json", + "compilerOptions": { + "outDir": "dist", + "rootDir": "src" + }, + "include": ["src"] +} diff --git a/packages/ui/package.json b/packages/ui/package.json new file mode 100644 index 0000000..add0490 --- /dev/null +++ b/packages/ui/package.json @@ -0,0 +1,15 @@ +{ + "name": "@flight-tracker/ui", + "version": "0.1.0", + "private": true, + "main": "./src/index.ts", + "types": "./src/index.ts", + "scripts": { + "build": "echo 'No build needed — consumed as source'", + "clean": "echo 'Nothing to clean'" + }, + "peerDependencies": { + "react": "^19.0.0", + "react-dom": "^19.0.0" + } +} diff --git a/packages/ui/src/index.ts b/packages/ui/src/index.ts new file mode 100644 index 0000000..a855f6e --- /dev/null +++ b/packages/ui/src/index.ts @@ -0,0 +1,2 @@ +// Shared UI components — consumed as source by Next.js (transpilePackages) and Vite +// Add components here as they're built diff --git a/packages/ui/tsconfig.json b/packages/ui/tsconfig.json new file mode 100644 index 0000000..564a599 --- /dev/null +++ b/packages/ui/tsconfig.json @@ -0,0 +1,4 @@ +{ + "extends": "../../tsconfig.base.json", + "include": ["src"] +} diff --git a/packages/utils/package.json b/packages/utils/package.json new file mode 100644 index 0000000..f0c429d --- /dev/null +++ b/packages/utils/package.json @@ -0,0 +1,14 @@ +{ + "name": "@flight-tracker/utils", + "version": "0.1.0", + "private": true, + "main": "./dist/index.js", + "types": "./dist/index.d.ts", + "scripts": { + "build": "tsc", + "clean": "rm -rf dist" + }, + "devDependencies": { + "typescript": "^5.7.0" + } +} diff --git a/packages/utils/src/index.ts b/packages/utils/src/index.ts new file mode 100644 index 0000000..f1e7960 --- /dev/null +++ b/packages/utils/src/index.ts @@ -0,0 +1 @@ +export { getClosest, isInsideMapBound, getFromStorage, setToStorage } from "./map"; diff --git a/packages/utils/src/map.ts b/packages/utils/src/map.ts new file mode 100644 index 0000000..11bf48d --- /dev/null +++ b/packages/utils/src/map.ts @@ -0,0 +1,39 @@ +/** + * Snap a compass heading (0-360) to the nearest pre-rendered SVG angle. + * The SVGs are rendered every 15 degrees: 0, 15, 30, ..., 345, 360. + */ +export function getClosest(arr: readonly number[], goal: number): number { + return arr.reduce((prev, curr) => + Math.abs(curr - goal) < Math.abs(prev - goal) ? curr : prev + ); +} + +/** + * Check if a point (x, y) is inside a bounding box. + */ +export function isInsideMapBound( + x1: number, + y1: number, + x2: number, + y2: number, + x: number, + y: number +): boolean { + return x > x1 && x < x2 && y > y1 && y < y2; +} + +/** + * Safe localStorage check for SSR. + */ +export function getFromStorage(key: string): string | null { + if (typeof window === "undefined") return null; + return window.localStorage.getItem(key); +} + +/** + * Safe localStorage set for SSR. + */ +export function setToStorage(key: string, value: string): void { + if (typeof window === "undefined") return; + window.localStorage.setItem(key, value); +} diff --git a/packages/utils/tsconfig.json b/packages/utils/tsconfig.json new file mode 100644 index 0000000..5a24989 --- /dev/null +++ b/packages/utils/tsconfig.json @@ -0,0 +1,8 @@ +{ + "extends": "../../tsconfig.base.json", + "compilerOptions": { + "outDir": "dist", + "rootDir": "src" + }, + "include": ["src"] +} diff --git a/pages-sections/components/SectionCarousel.js b/pages-sections/components/SectionCarousel.js deleted file mode 100644 index 0c0ac15..0000000 --- a/pages-sections/components/SectionCarousel.js +++ /dev/null @@ -1,61 +0,0 @@ -import React from "react"; -import Image from "next/image"; - -// react component for creating beautiful carousel -import Carousel from "react-slick"; -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -// @material-ui/icons -import LocationOn from "@material-ui/icons/LocationOn"; -// core components -import GridContainer from "components/Grid/GridContainer.js"; -import GridItem from "components/Grid/GridItem.js"; -import Card from "components/Card/Card.js"; - -import carouselStyle from "styles/jss/nextjs-material-kit-pro/pages/componentsSections/carouselStyle.js"; - -const useStyles = makeStyles(carouselStyle); - -export default function SectionCarousel() { - const classes = useStyles(); - const settings = { - dots: false, - infinite: true, - speed: 1000, - slidesToShow: 1, - slidesToScroll: 1, - autoplay: true, - }; - return ( - - ); -} diff --git a/pages-sections/components/SectionNavbars.js b/pages-sections/components/SectionNavbars.js deleted file mode 100644 index f2d45d1..0000000 --- a/pages-sections/components/SectionNavbars.js +++ /dev/null @@ -1,117 +0,0 @@ -import { useRouter } from "next/router"; - -// @material-ui/icons -import Search from "@material-ui/icons/Search"; - -// @material-ui/core components -import { makeStyles } from "@material-ui/core/styles"; -import List from "@material-ui/core/List"; -import ListItem from "@material-ui/core/ListItem"; - -// core components -import Header from "components/Header/Header.js"; -import Button from "components/CustomButtons/Button.js"; -import CustomInput from "components/CustomInput/CustomInput.js"; - -import navbarsStyle from "styles/jss/nextjs-material-kit-pro/pages/componentsSections/navbarsStyle.js"; - -const useStyles = makeStyles(navbarsStyle); - -const SectionNavbars = () => { - const router = useRouter(); - const classes = useStyles(); - - return ( -
- - - - - - - - - - - - - - - - - -
- - -
- - } - /> - ); -}; - -export default SectionNavbars; diff --git a/pages/404.tsx b/pages/404.tsx deleted file mode 100644 index eb5026c..0000000 --- a/pages/404.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import { NextPage } from "next"; - -const PageNotFound: NextPage = () => { - return ( -
-

404 Page with all the custom styling necessary

-
- ); -}; - -export default PageNotFound; diff --git a/pages/[coordinates]/[zoom].tsx b/pages/[coordinates]/[zoom].tsx deleted file mode 100644 index 970020f..0000000 --- a/pages/[coordinates]/[zoom].tsx +++ /dev/null @@ -1,66 +0,0 @@ -import React, { FC, useEffect, useMemo } from "react"; -import type { GetServerSideProps } from "next"; -import dynamic from "next/dynamic"; -import { dehydrate, QueryClient } from "react-query"; -import { getFlights } from "api/flights"; -import { getAirports } from "api/airports"; -import Loading from "@/Loading"; -import { connect } from "react-redux"; -import { getMain } from "redux/selectors"; -import { IAppState, IMainState } from "redux/types"; - -interface IStateProps { - main: IMainState; -} - -type IProps = IStateProps; - -const Zoom: FC = ({ main: { mapCenter, zoom } }) => { - useEffect(() => { - window.history.pushState( - null, - "coordinates", - `/${mapCenter.lat},${mapCenter.lng}/${zoom}` - ); - }, [mapCenter, zoom]); - - const Map = useMemo( - () => - dynamic( - () => import("@/main"), // replace '@components/map' with your component's location - { - loading: () => , - ssr: false, // This line is important. It's what prevents server-side render - } - ), - [ - /* list variables which should trigger a re-render here */ - ] - ); - - return ; -}; - -//// Loading large data from server side may cause issue in production --> Use client side query or prefetch the first few data -// export const getServerSideProps: GetServerSideProps = async ({ params }) => { -// // const { coordinates, zoom } = params; -// // console.log({ coordinates, zoom }); - -// const queryClient = new QueryClient(); - -// // prefetch the first 100 results -// await queryClient.prefetchQuery("flights", () => getFlights(100)); -// await queryClient.prefetchQuery("airports", () => getAirports(100)); - -// return { -// props: { -// dehydratedState: dehydrate(queryClient), -// }, -// }; -// }; - -const mapStateToProps = (state: IAppState): IStateProps => ({ - main: getMain(state), -}); - -export default connect(mapStateToProps)(Zoom); diff --git a/pages/[coordinates]/index.tsx b/pages/[coordinates]/index.tsx deleted file mode 100644 index aa7be6a..0000000 --- a/pages/[coordinates]/index.tsx +++ /dev/null @@ -1,8 +0,0 @@ -import React, { FC } from "react"; -import PreRoute from "@/PreRoute"; - -const Coordinates: FC = () => { - return ; -}; - -export default Coordinates; diff --git a/pages/_app.tsx b/pages/_app.tsx deleted file mode 100644 index 55a57be..0000000 --- a/pages/_app.tsx +++ /dev/null @@ -1,42 +0,0 @@ -import { useState } from "react"; -import "styles/globals.css"; -import Layout from "@/layout"; -import { AppProps } from "next/app"; -import { Hydrate, QueryClient, QueryClientProvider } from "react-query"; -import { ReactQueryDevtools } from "react-query/devtools"; -import store from "redux/store"; -import { Provider } from "react-redux"; - -function MyApp({ Component, pageProps }: AppProps) { - // useState to not share cache between users, create per life cycle - const [queryClient] = useState( - () => - new QueryClient({ - defaultOptions: { - queries: { - staleTime: 0, // = 0 -> refetch every time changing tab focus - }, - }, - }) - ); - - // @ts-ignore - if (Component.getLayout) { - // @ts-ignore - return Component.getLayout(); - } - return ( - - - - - - - - - - - ); -} - -export default MyApp; diff --git a/pages/_document.tsx b/pages/_document.tsx deleted file mode 100644 index a9ed025..0000000 --- a/pages/_document.tsx +++ /dev/null @@ -1,83 +0,0 @@ -import React from "react"; -import Document, { Html, Head, Main, NextScript } from "next/document"; -import { ServerStyleSheets } from "@material-ui/styles"; // works with @material-ui/core/styles, if you prefer to use it. -import Script from "next/script"; - -export default class MyDocument extends Document { - render() { - return ( - - - {/* Not exactly required, but this is the PWA primary color */} - - - {/* */} - - - - -
- - - - ); - } -} - -// `getInitialProps` belongs to `_document` (instead of `_app`), -// it's compatible with server-side generation (SSG). -MyDocument.getInitialProps = async (ctx) => { - // Resolution order - // - // On the server: - // 1. app.getInitialProps - // 2. page.getInitialProps - // 3. document.getInitialProps - // 4. app.render - // 5. page.render - // 6. document.render - // - // On the server with error: - // 1. document.getInitialProps - // 2. app.render - // 3. page.render - // 4. document.render - // - // On the client - // 1. app.getInitialProps - // 2. page.getInitialProps - // 3. app.render - // 4. page.render - - // Render app and page and get the context of the page with collected side effects. - const sheets = new ServerStyleSheets(); - const originalRenderPage = ctx.renderPage; - - ctx.renderPage = () => - originalRenderPage({ - enhanceApp: (App) => (props) => sheets.collect(), - }); - - const initialProps = await Document.getInitialProps(ctx); - - return { - ...initialProps, - // Styles fragment is rendered after the app and page rendering finish. - styles: [ - ...React.Children.toArray(initialProps.styles), - sheets.getStyleElement(), - ], - }; -}; diff --git a/pages/about.tsx b/pages/about.tsx deleted file mode 100644 index 6322bea..0000000 --- a/pages/about.tsx +++ /dev/null @@ -1,5 +0,0 @@ -const About = () => { - return
Hello About
; -}; - -export default About; diff --git a/pages/aircraft.tsx b/pages/aircraft.tsx deleted file mode 100644 index 42ea634..0000000 --- a/pages/aircraft.tsx +++ /dev/null @@ -1,5 +0,0 @@ -const Aircraft = () => { - return
Hello Aircraft
; -}; - -export default Aircraft; diff --git a/pages/airlines.tsx b/pages/airlines.tsx deleted file mode 100644 index 8043ad5..0000000 --- a/pages/airlines.tsx +++ /dev/null @@ -1,5 +0,0 @@ -const Airlines = () => { - return
Hello Airlines
; -}; - -export default Airlines; diff --git a/pages/airports.tsx b/pages/airports.tsx deleted file mode 100644 index a66ff8e..0000000 --- a/pages/airports.tsx +++ /dev/null @@ -1,5 +0,0 @@ -const Airports = () => { - return
Hello Airports
; -}; - -export default Airports; diff --git a/pages/flights.tsx b/pages/flights.tsx deleted file mode 100644 index 9ce297d..0000000 --- a/pages/flights.tsx +++ /dev/null @@ -1,5 +0,0 @@ -const Flights = () => { - return
Hello Flights
; -}; - -export default Flights; diff --git a/pages/index.tsx b/pages/index.tsx deleted file mode 100644 index 3ad5aeb..0000000 --- a/pages/index.tsx +++ /dev/null @@ -1,8 +0,0 @@ -import React, { FC } from "react"; -import PreRoute from "@/PreRoute"; - -const Home: FC = () => { - return ; -}; - -export default Home; diff --git a/public/NhatVu.png b/public/NhatVu.png deleted file mode 100644 index a2dc6ea340653cdf302a98a0653bc3a1f1d89780..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 29658 zcmXV1WmH>T(?trjXmN)^ffl#o-r`=|JwR~}?!~1z6nA%bcXth19D;`6e0kpW{kSVD z=iHo}nLB%C&fZD5vZ53QDhVna92|y>w73c!9Q^Hn*L!5x$oSG$1nlL5gS56Y931Ar ze;0fbBPJzYkByCskDK!w zCkK-YKL-aJHwPOV$2-drS2#Fl1sQQMHTR4&kWUnuEBWvhbP-`t!(QwieM2+zoYcC( zpe3GdGfs5uF*ZKC@GT1i!q6?M_)qjsD;jnNTkLPbh3h$ad3R+c>=E*%*9CKx{-1Je z#1f@esox_Yz1@RboW0tc1q3(+u%0|%?OPA86kXk2hgo}k;swsMMt%_I z!JE~6;U#(Fh-?f5zG-OdiD?!5r!8Mq37Ymtycvl#HH13^Ku@VJ%ka|QaOBz^uj&+QutDi2^U_z)+u*sio#$yqa!x`0;}q_9h8& zx}TycXXS98d)zlLMpMZWf;!sHBuw)CSyr3yi9SD>?#k?tr?BRHVx5yfJ&ISrOioJK zvkg%uUHY0s>q?ES0{iqToK1K;_FO#a(anPSnl(a}^f2BGZRf_mxiaImide7UISJsl ze9t;YTIXwy-1S+RuUlDmXQ8TY($A!`v1Ol@a=f+UuIdKIDCsf!969eXtq^@`k3uzC zpAOfHQ|ryc8g)$4v^KXc=?K^~@T?C3n5F|q7~aoTLku{J=R-Zh=|pI>bBUuFF&-yg z9^Sx=`v|-7b|@fW&n}oIi&T%iO)~`eaeN6)zb#8TxM&arcMSidhdZZxbQ+~?g+Qjt zM{7wBAq&yXNKANaS?YsU&?1xa6_pGh;Al<=V3n}7aRHKXq&Cvu$=CV>jd6_C6lrR9 ze?2+50o65tr#!$n(8iWKqLYx61(-v?WpDxk)PIS-sFDtu7aj`5wz?uW!99@*enHWb z*xUUEcIIhpscPGyErhwr6W>N9Bb~O?TJ@P|5W(gH+AiV($EBp{IbTJ4*UUff!jowd z&_{QS{ME~N2AHM7&4KBA4`{`;lfdg?NGg{p>dn^gy?mM( zV*#f>sG7uR-k~1NX?<9UpsSVPu<7SGM%5@7`S9?}XLH`3P5K+bEq@2}p(=_w+Bs#M z%QNOKFeU73&bZkovvhNQg$>gH6smu=inWXmK6;9o;BabLfQB( zrko1io}H-lV`@v20S(RA%pgbRxn+F%GHRQqlAh=EC+?^mCjIXPI^a&bk6PibwT!9# zIu&!NK}!^JF0w0c?bzQ6XmfvtY@U+YI7b*P#YRuZaMUt3L;;S$lQAKbGz|UnEY6I( z2?(CmjHYSdtC7oHwR%`obqz17Y6*{25E%iT-@Cc<0E9T{`ZbmI$GW1Oj( zzve*WQJb1N!iLVp;}zFiBa~2&I!$ns;}~)AWl|8hKMP-Y*q}2S&D-1%AH$%l-Aw*8 zZ5Y!`OpPOoiFRVwx{6A$4K;=L!_&>B5>gmnsvGO2YsbhpVu^RN8(lYnJY^hOqoCd1 z)R4L#Ymd#;7X?<@Lh4t8!wP<2uKTbUzWDwbMf!7Xd6P;}h%O}8WCA=!J)mCww^?I9 zEcWN*pnc!=IvkEEgdx^q$Wy;(piAUX>4Y`0>P$dXbgWsq9D$Z zDPb#Eqtz^fvvLKawwmaf%qm&ETU8tyBYx_ zXYlgv{=Ca&f!Z;c26PbFbBc?qa!`uk^{aRcf@iZ9%Sw-$(@ZIO63$YwhkB5kK|d4HJ|PpT02tOw5() z?QL5|)8ZR+yxk>?b0HeKlSg56=ThhCFz@*if#A8qAn)yH-}9;(7FIC$DY@{l_Mchm z0q7F-Bs|xj0w1VRlI$5KO|p2AVlWW$5z526aN?9-hpy z;%{D7lv7uivMnr)?oB;lMhJ;%p+7|k&YF~#c$=xj`$M7uKV@K0W3w9MYfW*L0_sWa zPf;u@vQBr20nCoQ>dLSf)LsX1HhdbNs{>sNr|xVDTzW_ zr+&5QS|;sBXovbZwRlE1E?Q?q-8F`V4bABO0(NZp)W+oOTT{mi+X>wv^d`icBbk#i z^-zYKbW4d6KdP;fvl@mXIiesrW6Km{TY>(GaYD?;mrxh#T$6?|GZ8#F!H?HYk$c>x ztZO(VlsIv>45k;xcKE#Z$`>wkdiA3Yrdncu*&8&3#8Ho;ZSp!Dvmjc91*mHmdg62T zWTZ;K$ia&KK#xD3q>zN24d|#h#1ri4_CenC$N>M$u5RVuA!7~U7R%Xhg8{G^*XR%N zx`B4Pj;PKHa)QeYaM!Vs{)Kf-AGciqS@C1b(4s(*KlpFi>m{5UN?Ly)6z*5T7$%+)YDb&G$rzEA8{f=yD{5Uz9IbUcIQCT!}?SNsE$&2f5m(l1qVaG6D*%l)s zVO+&EG6a>tvR^Cy6d6L@cm)x&8MPMd1AJsk(*zuL`uRNiqo7rtqg1# zTb29vZ6iZ|TBUX0sbEz!e;Ksxqq9agV$}e0grx)pwuar(0sAiK&N^#--)Du_@!6&QQLXy3D;+`O)I|Hqrr9Yv$!ILr!o)qQZ+~wDn zy!644gsnR@5&LRkjUvdJGYtA%5z)X4v}5leEtCCBmtrt9=2k-#7}?#@>n+q|UyZ97 zBrYB-c=;ap3y8ktX-NRSb9SJK>_m|eTc%8KDYC5b*!DP@{gyg{#pBDPqD$p; z>nLX;OPI>Tq;>dKS~?pN&sm_CK<}}!KTK4z71LDa!fyKfH8nEKOd@>fsT}RkB08v&``>@4!2Xa8^wNCjK0~^7 z{8p|nPBX6NQj}}s+8S$0T2V19`ynDs`mW{4@vCF{CtY}-ur*0WFH_s_urP6%z2gKk z#+;y~tjMt22egd(ZW(0 zb*HR^1qWLQxQb7cjS%}-|D@Cl?mNZG52dKe;^uLE^+0j)f+P;1dJUmW;3`d^t;^G{I-{~~vX$5kusWV`%Gq&EqcyH*` zzAaT%3l%!^TNZl7{ogG6xqncDPQO zyh4nefhcQUxC6`+Up$KiTwXK=CJJwMIaqLz5;w#WQ!~WZQustc;_Jc1P z!3<{uosc%XkLm^n%tCpRD&LmtmH0+qyqO=G;;XPb#q-glxZOM8&d#jls1q{$tIqVq z#q;Xm%RyaT;46f*V>cy9*!RLlX>1jRxWEJr_GG#^LLsj8?IC5^k@|K@?{=|{@Dnp5 z!wM#4zVxnI41-YpBD9LY?iAyQj5T&pr)E;Ts(ZvXZX;}LnG|Bq?LIW);g}ZPUBkFh z(t31Fk>ZYZp-tB#d>fDlZ4*IQSeT*V6N&d_5SyRyh7WL~@_2%+DG|deJz!tPm43yY z^OpI)$SxQ~BJBB9+zSRBV;mTzJ!(Nt1((hZ%uRsaWAd@*V}NgNEYvv3g>uHd2&qD( z2DjAiciOxTa1?%I;7-EVSK!x_o!2J;fwvD|dMtzy?L8uW{2ummxrDgWYZ{M!XbpAc zK59{Q(IH_QraX-n_;!33r_o^bq0ew7=-9!ya}~()#-VVBd%eO!yM}IBr`>h=IBfY` zu9#kKy{#$qo~_oHAXVrfRr@gCLRR^*+!11g2wox8N50K=qsE{!fDr&vTW(3V&^+VL z?Dc&hAy?o(tKKG z73ZHLzWi85W}>FfWF#;KwYgXMZ2JSwn>TQ#A^Cs$xh?78+RI|O#^#<%0Jp6yjgz5Z zrHFZ0K*dezJIQ$Wk{KON*&sPv>d{yE#%QiOpJ@%8A1ebnZ#lRnbJJjud9Bp9w(bVi zp4oZresF&n-)UOkZS_q=4p0G^ZZd)3m)w1uiXSuH9ovO;!NclRoMOl2Z--flD(d>OC_3kUs+=(d04I7x+4*|{mT04o@1(zafgIR4p{t8Hgq1T$8j zy*AG0iJH{i9w9!G;JBiErk>-PFY2uWG}(C_t7vr)ZQf9fd#*RSltvpaD}@L+^tA0z zde0zSP=)qPq+Q0R^knck%!u`_z0PN^-IV}0u+IcLbF=}iERjtr8@#ZjH%A&HLZMMr zfdrO_JgX(H}pXu2Jbg?2R)Okk1uZ#^S-U18ksv+m4Fk&0M6y0pLMNoe4>Z3?C< z1J7y+&Yqq~MeMhP?-#4LQABE{=dywq{9?I(XiD&6kN)LzW^(9012pz@8U-*jTJJA+ zH?^JmZnz}qpEj)@0uHHFQH3+A2SfD z&6h?;Bm3ZG;;_pNVR76U#vYA|_RiS}SQRKp<-GP2t$H2xL-xuO7HH3?!@{vQSeb^1G$>^bTCihFUvlz4>9jl z|6n!MejvJww8eTsrKVQZZFsLJgfIN0eZPZcOZFIuMn?(lg7)HT_BiXW%$ZD6tVed} z-yE(B?`!H|>!$~%a*f|fi`>Y!+?%9RI!p^WyuEN6U);{`+2tx|MCNU@kd8!R_!5{( zEL?KlQa2i^6dFj-$T}Y?X5=(Ec{Rc93pt`F^RQHmAW%#>KYt zPRDQf?c9E8k)k;WE34(!ZkGCq^zcR%YQv(CAYnuJ?ZjK88~W#fn2 zcHdrFw5F7ti{@*Csd12-NtZKo4v@j0V=ONoiZjjSI*T}*>1;O9DIb-;k>;RdtS;rt zG`U|56avu*`y7W?<=wksNh*e);hFm}sULPe@Ovby!ANI4U}l<^vJt42Xtt>w8OXE} z7uQMS8b^o_5SyGtwwMMBju<%pj+SUXeYt41*=+X}EGf=zN{@ee>KCve5`H;e!`MVRRw#WOY+Zv9tUYdA|eMw=`xgy1wBcO3D`6FkMk)t@;afK>~WTQQJhA~H=-sKE%SP>W_9zYO=v};)koiyaxPBO5Qr6%p>VB* zDOj(ZbZg{#UsY+O{e*#c=iU86@%A2NbEQsyox7v^p==#l4VErw@i!9gWH9B7RLzN? zjvotk^o9eX_puy-Xx>6a`f4oY%ShnHZ$dZU7>n%2$5UVVbaUc*plZr*G+X-gEd|YF z7F(YQRi)mQRKTg>3qys@{sqY-jd76|&)MfTM^DPWOgx?lz&^kV?UZX?f6nsN`xK`O zvecrB6Vs0wbm2?5`KW=$<|uG)gm%WLA?}r#pcHcTacTPX-Cb@Hu zqV3TyCYcop4bdrIN}_*ldOL4avR8ZJ>-jVyK}!@6`}CQFJG*|(uDK=SAb_Ea;|pX7LQ&{VAq;KZK72S75ul{D9P6_nftgRDU>o~$2eX4 zZMplgdr0l^(FVDL((ggeeOYPEn#D@dI|Y+s#(5!PVOhkW#P=Vfp+tdzMrGaOf&nb; za1_y~bzYxFac(bGSNUW&Xb&q10n%dyA!;tmslwzetu*)YuKr5ieOp&R5P(*19TI7{ z^09ZRa!3BenOXPX;-2j=hUT1$u<>j2FI%eTN$nH$nK~|+*!pR^=lgitr5AAVDTkdD z#fNlm1#g?3KKC__q|+)i?#K>uMva~?BE-*v?Z78pRo{M$*XpbLy(PKZO8W;tJ5FEg zg)JwT5sFWLk__#tUD5Nfj@EJ{=1h)N(vdbN7!8aYTP&u|4AKMdpARcHN|qgmf9uYD zV)yGXT0}(zM5Pfu}H$52IRjn+FSXANmFMy zE1u${R(p}_`Fb>P*7w&~B`wla182l$S@BQBdD=F!-@Mb$DHjS;`hu{UfHneqhm*m4 z%|^Wle#2Y7UYAMmRX?zzi%|9B`L6W1*ZjLaREnjz@E#DkL)+H{?k4R+?EM5D$M{=gpzcw$cX*W{D;w=9q8fqrGK=A=bQWs&+hHOZR@V?>!hXLri3f!>S2m{*IVPOc5iu3kO1L4uO}~jXW;n<0W3yk z!wO-#c;uHCRl-+Gb2FO9sJUuB=k1Q0B4N7Ggv5<1XmNH7m_&*U`+4g;M!?8E@_1rd z5BH1&t{Ft|OvWa98#5QNJJk$T!F;HQ_q`^{+L}Q6RzpFSdMFvO2S6 zugiQFe>`7#DgE&<+a9#x=rx~i^ED@_)j7e?&}(nVQf}c6qTQRRUC%Evyr{|Zrd^2B zF;2dldF;Cvy`%5-`fOHJl`0!oSDaq7> zG`oyqc>n!!R6~r+y9Utc<5L-%$<6$*&ztSd@mK}*-W-}2aNSRujO>1Xh3+IeGXLiN zc*-N!bx7fUl|d4_iX%)+|!rycOjP;W#gLar%^-`Vt|lw`hx+?FBY_+!n-S483)@A?H5>`g>7bkCSxNjZU)_JD#oRdi z?^ytjiOc1QA3u)ds1gx==yv|?=+1zf2H%;T{1e?EF7ch<^?TsIyJOOpz~rGJg6O!(wAt({WBH({WfBbj~DQOEKDZh-*jLQ^P1Jd z_S;q}dqtx`eaKt3+n7i5$W+l#@8kk3Xk6k{jiYp? zPH$~(@Oyc7MxH&bE~Zj=x_baS%EmE|Kl-uU<51ZxBhK>y#oyy0x+WZZlZe(SJ(gv+Y z>O?WubDdADO7b?pLaW<$ErSy!9#qaRc*zdQYbw?e|EYk9b3EjY=ZWV1X*<5EqY?>c zm{fhqP6Q4{3?wz6LrxJvZTQ}{%PinJi69T-yK_?v_ecVCekH+Ptg7lRr|Puv{8$7o z>o!g|<0%nCrKg|j-etf{W(l!4V22DB_okgBw4>(FHHDcUj&{UKReFA4T}3?~7w>nb`z(~T;c<^~%y0_l-`_FeEr@*jLs_zX`#3TA{o z#KcI1!{GI#WR`;(xk) zh>)vD?)&xBs2_PdKlbbH_1nd?NbAk*2Za7`cGFbP6!qgsm0Sd``lq)Tt)DGR-u=iv z`eVupI0KgnAl&dxzDZ0c2}7<{BzYC+*BE^kgVF3K+`L|b>t z@qa}3A%CdU3{MMw<{zOS1)*?$$`YR3zPz2!&H8C{vbd*MtwIaUay(1rG)+?8mg{8I z-rdCRiRP(OF`go;J$V>e)E~KIiepI zMo^jqo4|M0fIshTiP(q!Z1z%6!I`&DpsTG<))k+V)k)m!B%V-J4Oqntro?CD;JiLA z)>8uj*d;nmkZK&L*nljVeZFtxFjnUNS`N$r=&Vr6Hka+t|TJC@Vt+u7B1re4;P?m9Q=esrTPGyg3HiQU6v zq`uRN-5>L}fpyfMTQ4p+%e6#{4ah0yV+rVpg3oEyMo9W=Ygl>6e{mc)kS5(^>na#KAg?Ykl>Mu_$i&dF^ zewiA4ks<)phU>D#Cv`nLcD>&t$J)x%6~ulg&@uEptI3ny}@^ zLEGu&YkSh?HSZ5Q=-B=z^H((N8xA%V3rn4qBq+zx6bvWwMg}|V`t04EqR3~I_`a<* zKC0xz`8Mpjopj3Jdh);PH*7p#dT5PR=9c{cFuZdR)kJsZD?hgr?Iuv`Pp{*4j88~A zP*nioL&4JgVX?(Vb`UG5;3}o($eP?{#Dx5k$myp!aoOLaV@_KR<_jg;2;bi>vULv+ zgq_rRfUbiML#iNbo$?W*>Lp~Y6+ z@PfZT_4OR!k!<@zZ#qBiMr^D8vk&%hFgh?4I6YoVdDOr;)%ZmmxwclGoy%^*XovHCt+T1Bg52>f2CE(8 zak@RSfnTOJ4y&|uj&)|l-ul6$=URhC*+9Kdc~ebXPd}Dw#nIA*&2Y@^11po|Epyn0 zpa>LOw(w~vT5xHes)JcG#-z^(Ek`l)zLkF7`jd*ZGteFCb|j1~<|x}-TmZMMFBN;9 z#;FaCOB?<4wCN=ea=n-`vV~&(Xq41S@u64lKzK}L?`gmAB%JWMJuTK4%C9#Ltq^4( zyDHpt{e^~b^)CU*Ph+wC5Li6F%ECo-x_oN=`P4d*dTca7t?e}L*L+^};80!V%|`3y zn?MxK2HMeu|4EOfLbIVe)qI_Ox5DC8?hhuzhkv+6&+a6F-|Q;De)^sKnss$&n;6fK zlr>H?)kdq!tmD}MQhPXDI_3BGH`5gqM;pYJixJEMpbeiS7KL>KZ5Nh}4Ti?+zku-# zh0bgrZd+rYd)DA&CdZ3b;kx>?wdDZWe7wxZjJ|GXE~`tg`;pJyQ^S;}UK;Fuo&H(y z(>g=HgUi$(#+R!p1#C*+88VufAXJ-3%oMtyEF3DQu4v_WdkC2xo1H9pclI4--~6!K z6^HfzEDKp)m@T&|Wu+hoYs41!KY(!ppRAqP#BgFRS^I7JiAkPAO4s|qxh@~i>E_Cr zQtlLHO6PLcC)Z_ok!MkMw(Tl3qY}qfm&up9MoYk}H$#qVWh!E>PBrn#-`U`IWi2VJ zhr7Ey@I_~s6lNbEucX?Fg|4M7GsiZ)6Ats>YAmpx(ojyL?gnssgrIn~L%Bibla^%E zkyThwOB{Lt;Og+7#)%MJ2>Dig{59csgN*E_8Dcd+xt0ry&dJh#?Or6S6AyU&9e7hA z79$8}kTGX?=sKlEi87gXGOd5R*)s00_Q+qZ+cSd(={G%i*QC~|Yl2n2Z6@Ryq1Q*MCVW5fMe2qmcZ)yK@qeEjkKd!>#%;Zx#1v)zlw8Cp7JwS>%eTUe2+X`}ez&bWVgjSno7DK~<+A=RHf)O!ez#rwR1%00B$5 zL>@VP$trRIj{PxPHZ>v>H{^$mmD{RiF8e$Pms6U`yR!uLnKjxXuY59lK@5m11 zPt3Wnc>bI3knGB6Z`!{5%7DC}0Ipl-+q;<9;_r>>j6&1S@yxZbq)6EnAZ}#4Hj+fa ztT&=j+BPzg$oLuI>%jAAbzUSceh7y1MG${t$369Yn;pBKa8PDSg?_nG#pATdvry9` z$bLB{aJCN6YMIR@_C`&|nUH-rn@C%ihm4RuQ4l0>Lj)JPABz7(!>j6RWV_)fGTw_x zzN-!SH>yV4Y+WppipV6_3g(AA9ZncmKFsEO9^{`CSE&+N@Prm;%@Iz(o6EV}F+i_& zBYW{d_>5!GkjK-h!#yRZI&Yrx{!n`AIk9i_pqKx!y(neu!aas9VPRfmCbJ#M>W;3S z>O2ita@zThe3L2wvom?;MpH*ZENgNznRjuyqvFC2!f8G6@Q`@fDK9W?I zS9?8_en(!u=0(EH(glAob3PzEHQYZ|6Dkg)eIlU!@oTN#o^pD`wGk69*X5V5QMO;# zBT=~qJAQFI3sh^w@qUG}~?o54go2M!l{(sHhH`7mrPqZmD!GpGHHa}llw-L6xp3bTnbu|nGYRx_< zIJ@Lhn=G`dsw`TIBiI#eYF01tBs10HU)PqA@vANP!PGz@(^&FyrAErqD6C7Jv2MSj zQ4Cs&8C9EVhwQ<~R@3>#9MRw=TW!q4VD)nU&CW%Q8^BmikwLQQa7EHFMX(Oxdd0z7SqwkBs;=z%GK0_YM11iW z?io(k1zr}b)CI+=IR}HzbPA}?n~C%%d#@19uJbyoOBV7!!cwsv{+O47786AF*`;gE zYuTl$0gikBE>zD$3RRE6>zzpq`!O%2_#9%Z*`bulxM#F9Bg;&uw^vnKKP$HySd23W ztE_S*HBWr@hGvQ*KyK<2qq$Fj8ikRCQVAfKI)i^uqq$9%B|iWiZzH<+^~r)CE?m|8 z%0J7>>vyx@gITXeh{5HCvmh3*FZjbXqwZp6!jw5`7auzDZq-K?7}dm@9b>ma)N-fu zU;%PX$)KMBZXG-CM@Fiurk_6Y36!3M(GV~@fj@s7yK$z3`OWlQv->&Msp)Ui;TE{$ zhZh(%&|Rw};ws#2`FVv!KkrS`3_Rn5PLBF~;kPMNE&kz71Zb7#wB_S;%%N_)5rSa_ zMN0qC>V$qI?Bt|{`?R3S^oy7?#Dp9~5}Hc%iAx=vmHT6H?3h7)%)Z!4DuM3SZ~1tu zx=w2j;#{S})s_T)^1-XV;uPmd{#e`-Vx{qR>Q|uWIV6`$z=VAOy0@#>-t+eH5C0gW@WW(-czLN(Y7t=-jz z(q_^cX|s&2E!Ec-)jSTaYsAOnc|BTBSlzkhcB@NY?aHM5N=-RnkyW}R3;8GGV`ok) zcaY8McSkHxgCx+d-y9=_%TKyEa`gTYlAjjEBmhLf5)^gRV`J$|guk7Y@;LCl{rb}3 z>IiPVhLQ=6_=5Sv++chd8e!efSSH=3BW6vPv2oUU99_a6p<@=G3_QalXT2`=z0Icz zj3;^mL>sMcv9H?PgmFAjB$Cc?$ejlf+a%em-CX{bguxQWbU?;JiQhey--CoQi0@df zE!z=Uy}HxOnF=uYm#ZOR;kUeG0nom+mdE}eroc{r`!^v1t2hphdqa(l_Ukk?X998f zv`C6q7CyrPhrckqnWJ*s6Q{|$XdSZ|`rw7ZKU5V1jtqBR4**xq&Ix%dTyQsK%Y!)u zbJt_pUxzAQXMq9?fOi;*%OHw-UkJv-p>+3KRW*AAx$PRS5)}q1-5q>xoAca01Vj0p z-|~+;19*}LBGhiBzFkp&R&Bki(lK!nN~z`LyYsuJ;a4vqz3rMq0EdZq7wXFjyE#=d z)9jOw#`zzMM6gv!!Dj#da|aui&_F(&y2Tj1>c+Xe#mCQxq6%=R#!T0$U^t+fz*`c6 z-NyS3C$x10&tAx~fVF_fH4QM)O^kyq5xnJ##$?Fi`|_9T@h|VdKv-iG9($;aoGJYV zZ3>$lPLxXF*L&@{g6+VQ1^OJNZ0~bP&$cd3n??WE{9vb{h+Tpi__nN3CSlk<1V0-3 zjv}3m#O+3Q;C@LpC&UjT**JWkShu?i56V}l=IB~*0=4yQw4TthFbLj%I^|Md?IKU* zoqZ%xFKk!b!^Qu?nYmOzop~4tDVmx@>Uuy6{uM)=Z{gP-1i#q_u-J!#sAl|9cU%^GkrMy!pY(>{u$D=@VLuc zg|-z`1cC>A>K!m_w7MeG)Ua#T}WgWF=s|J z?yq~53+F?f6oHVvhgSSwzj9q0BHic$qSa#jqcsFw{$T{KV1j;}x&XXO_gh+?ITsxF zw0OWsT_ljD%0;k<$J|=daTMo*;H0xNL`xq5sk=GvNd95nHS31wWpv8C)4D$dMkPfc z-IS@PNm2@MJFqFq?eTejGW)HrQIa}-)Zl+UCo#<%H}w2)SER(K>B&j>!_48`H~rI? zXW@gkUsS%OTB4dZcn9>a2PCfn7gg=4Cf9)lG~gNaX(~e2CW6&cZu;3$mz2yPMQ2ih zFZGO7aIdfFr30Q2|8;vp!U|Wge4Jh=X28}~Ggixa(>5AQ=9X!@Ms@ED?bPW~bmQ}2 z9QNmH2ycKE>?en8e^*)c^(#tChFD3;UG|fLJ zN8m4lDcPyr)1-L6f&iyGJa!A3u?D5_5Wd#}8T3c!7AtUy&yH+*xl-i-#u`Y|67l=o zs3Shog$JrL#wQ#~Y-B14S!_Hsvput>cOZd$Pa z=HDZP{!B*5X+w(xje$+ydyv}?^tm3!4zpIAr?zQd~%=&%2 z?YFL#Ist}T-Gd{hDZN?v!$O!tF?df(1AC!LB_3blscK)}Z=Viq&=xuFF^&RVrP zzQ$blKOxTxUSZ*wro@!55hrfv2!{1W@LpG*>iNQE?_YWW9(&Pwg>sILCj>R?&E+7? z)YQ~Vjka~iDZaBmbZZQ1Md&{@MVtA@{ceAJ&Mw{zReFBg8#Mz;|bSvz+6A!jy^5rmTJ$5pBg zwCQ(CzwGt~Ml1CAz#P*8O3zt*&I8qpjg}0Wm|qRMwyl#G*n6TVr`6oqSm9WoTtuEK z8mR?I+>fYU^}1jA7dY928I9`%Q1X~_E>_^l9+q8%mB&EY!<3q*4F%uBabRuXEUsRN zrXiB=Q{}cbgZ{Gr3xSR>$?Y$dgg{!_LiC24Zi$7-d(A#GAf~vkD9SZZ<}lNun&5TX@5tv238s(? zQ;wgr)z_~E&QLBU*0WUGiz*NmTSHMtil5=Z4g7A2?NUvnu~wxfpS%zMnGQJsk8sB( zGk)pEH(MnMJ7(ek2=y$MU?)QVE^a6aRbpf05%U>YFF}0f-7L^V7T_mnQr_V*+CN55pl-UaFa5tKj3=iv3@k?4#s1jwN zga&X^f~v24`{R*ses@Q?T`Q;qJpnyQngrgqcQ)*%xI8{9es7t~E*Qu`JWLJU1EE@? z(7`MYxS_z1+noqMt5&&`Z7Ui@UOB%ZN$1dH z^P!-qOy~<8a?1h9)9F~^sEE?k$k#Hj88L&b7x2a~q2Wm8%lO1j*VD@6xDi`0IgBjl zBN~~9k3wu84`zHV-JdI5P5lw9kZy_XwHqvO!ysR6(7=GdGp~fk!mT!`?!o{9%y06q zmy8{K%xGvtDygq=eop7-@>85IsSzrhzo;-7L(HNxkbsN!W;p@37YJ_FzRWR;NzHs7l5$WC^K=4hdweSrDx{yvbhjau*qeLm9QBjK>{iS4?MVY3sUtFpMPbqvN~lU=JFDF&y58yimS_mG&(eC|fKDwWt+D!ydyS7_z>zFqFzW$p%EomMw^aWVhE2niEq&PhSi9s14qTXlT$ z?^TdYvaY?W)HYt2Y?A-9NHdGf&Bfh9L+P6H_fi)q|Gxbqjyg{|5220W3C;T_USBfz zd*j2sTks^s6^ES3t{`;R~A;XsrwC`swbX`0JP<-vwQz zF5*QO>3t`c^|iG>K>a}2#Z5RNvp)dw@gyG?_dJ`jA|Tw(_ldciF(nqbRY=&uP_Bvi z_EKH%fp0#H3BEsF$W?A|wblsGbH%S`w#dfN^Jc$1NcYUPW+M_56V3^B#%L1>a9b=p zfmG^h|NW=#f3(W!AmZXLMy{;cX1`J5X87s5E&O^(9OUWg?$|3CKj8}@gll>tkrNB1 z8UBRnj6mII@cQuQj98JPK^xDudZaKIV)#w~)^c1^eHaLZ$*k>BndNF)wSkm%21#Ia z3UtAHquFJjb9VJ4Fex`&v0~};c=pY7ibyf60+^;;8#YL9)d$wP**XN}gyZgW;ta>u zNBumU4a@x+9xj?K+!M)q?QXWty#yZDAt6OK7I#_7MeI##&6g^VeYhGvTib^*xddE8 zR}cavSrxfp$WJ)+kQBN{pp8_ zB?h$gY`yUE8$f-)5OB$Hu21Ag+oCG2@;YC1>}6mq8C}ECYm!p;oO!Vy|u2qg;)y^9rlR%#b2m<%SW zF+$kBc&dUmO7~@xv~d0fclqp}^QvDhmS~m@RQpgq$CbEWN^=dGPKJjd}Uqqnk znVO_7rt`$2ohIV7S`ecv#;tfsUSN{fC^B!kk&e5njZPJjfEcgh{i55Hw2I1HmecMq z8<8rc$NYxS!7*rFxFb%x?;Mu(ZykBuLqT9Iw-neBm~ez+V4!9W0OH@?^x6k=5oI`J z-51W1&s5?qva_qTMBK_@4Fw>IHrs)3voOWWH5#sNA?sE8x|0~^!<3Q9+NDmL9=*{H zfw`*3uN%(t{cC9xQRL&98&`YR(<7rhCS~f3Mq_x59wZC3xCY#oqM3o{u|h?6_Bncd zO-1BZr3RQU z?$-B*Hrf``D!~a#*V0Oj-U~(!@QwZyQ!I|JVcu|C&R7n^uQ&#sSf<$aINiDqMRu^6! z@%PX$R^MX9>+j1l2`j-e>hp0K6I**6c9{@!+oz$?SFb2tp{#ILKm&Fq~-E>p|LhFX^Vs>XK26>*o$106@o~KKA=L)Hx{Hl9D^=0p-NJ8hXZ-3P;T&G#6 z@b0U|m0zEf_slB^kp3VLa85D`mOb9AOusS3q}0~dYw&qy_nEfuhzr;#5X+Cu6gcL( zs29Qvk*!Ade>t^plL4*4-0(}ol&vKom?t^(h4#lllkHuh0^Imd^C`2FsqoIzlAofG z6PwNxq%v73Xo^llGAy5?^mAFh&`Vs= z0)G;4G1As4l)c5`^(MOCC)9~l%sf#P@}`-sAf9yQwqsgB)e1&LvD{zp@VK;IYbq4w zWR&x@LnDCGZ@(TXvQlsL8czl+PB2!Fh%6h`m^R)Q!UXs~)%!9M_g<|}_ZNQJZ;WG% z)irjjAFi%!+#MhGr-rbpzJ#_T;zRCc^94~B29uf9-jJOH%60IyTIbqgcz9Cuubb=- ziQkG8o-dV@mW#)hCt)pIjqx31)bB-teb2hugQK!0PlFkzU4jGmcJJ2?CVTc`IsGG? z_LH800ErZq9-gg|=|)M6zmob+;Tt~lMWf68r0CQxNT1v}N}7JeCK_Rm6epu#zKbD) zABy_vcQBe@Qxlg=mrU;PU5`xtfKhX7tKFv^5+jxT2+`hpTGZ?b!+zL$g7G2zH&~v2 z&vBG3evjep=Z)5_BVq5x5_eGi4yR0(HA{Lvr=2WjmX?1GkHCMpIGPfOJkerl@gLSx zFOLua7Zy4~ZPn>k>k8}rUr(!D&b@9Fa)9<%PaP)%mTX!dK^8~;I#wRHN6&L?>X_sR z|JTBMhr`vq-^02mQA32N(W4VYFA0h0qPNkK5N-4lT|^IpDA9?CE_ydajW+rij9x~Y z!KgFJ?|i=R`{$hN%)WLx``&A>d#$_84_fosk2YYWcTvw$eljOKj5|wRtC$MgpqZRRI(GG0$7eh#qz)K0m5gOXhmoLP^ZKmYZ`OGEhCl!?BL* zXG+o^GM~M2i#wVZyH6dwvy}b3HU}y&%_8zcw8xBumouWuq0^~Owtwf(RA`fv$Z_eT`Z){kjv~yRWJHqg z&;3iyRk$m!$n+F8n}SRCm^KV88}{eh_Rgej-(9N|W1or!)ki!9 z^y{4$Ge$eDt>j^;JTlq6xqbw09cwxX*gSGdLC=lB(dVbTc3`((8ntVQvoZlIT}wv$Jc@aPf}pk| zQ`CuU}Vb!+&T9H(?QX>rm5&b@3Tr8I@C z6vtxa`Hj~9cB)a?<2SjHDqejV#4o=?QIHs=6G&4&d3)e_6~@Y^h`JpLGBus7=cQXv z2*AT}9|T^vVssJchSBN?Fybl zOSudQe*cOT<&NCh48}e@=r*llyx|&1+WCAvYtla`!Qg!)g!dx$dl1~b__768??9EH z;5|{t{U@lkt^DlN5lG`c<(lqc3!R8Ihu!7(WP#dGzhZFcfB}!}KGpN5^Gyk_MZrWE zN#{+*RjoWN4|~y+)PBu1Mv2v{n{=U3St94(mW2etE4j}-pE10@dV4*EtWmkBbB;ON(6!!fzm;S1B@-y9^%?Y;fdSvRSPS&}Dquieb6PynA}3H- zfc@FCr~jq#sifMXt!$2LS_4C{_b%7T_MI1+n?oS4$l_F_z{N2-s-)CRWb(Mm7Q9)T ziSRFH&d1U!qzn^2zE}Jf=`R{UawwbkP?#^;elKLQ=<`k)ug=4&9V>{H+vCI+xu@Q! zr@7JxxzhL@cU@gFyTu_5AmP9N|-``mMUoHEG6FoN$H1jKzkg>oV(c^0AHck^; z2^yh#B=r@flV7sesYy>e5l_||CFXMr=(+MPf9uxY`5$@=BZvP4_JUHK#D@Peh`^ey@xx6Dh z0+?c(#}u&&V1$@9GZxwo!h(aXzoi`6V=Q`Ah8kOIlLJnbb$H;&2Y z)0395zmep9fDIt@@L#F~r-oLss080V)26Qu>sIGgD@{TY_`&~ZXh$h*)sIEfk86Dd zv^lP20C9u68$5-r<#1GhoFp`nWuw}AOJk3ZBe^F6PIolG6yN1{DM|=8u@*~nbr3%w zwrb#^`~vb~h0LdjZsYM`(4S|1*X# z<*Cu=>&IAWyp3NdQHG-UldauzSUqp>f9o3&)__cuW$teyN?!k|Nn+DKza{*cvW**z zm)GvYi*CYYrA0k?KEfx2%4WwFaWG1RjUKnmW8`dndoLwRpWN5k8t8eaiS?NIM-gb| z&u}skA`~S52Vw4*&HMSbG@qU1@2+C1iU@YP(eQQOD6r_zx6C(EkUWKOK&#crFNNrP zCbdB<{5pwMtHKYd9FeK_$DRVXh&EVIW^9nC9J3qUKDzoI$Ui?dW)t(8h9(S*VCVz# z>F8=vsf;QGfPR*;mv}JT5THYOCb7Faqa3=N8HN1$$%`b_ zs&i@Ih?Pk*Lz;GiY^w6HT<+Q4maBR2;&c8Bdg0=l4nB3sFSH3;Zpl>06q(=%b{BOW z`@4O`;IMd+^X(tnS^k(DcV2dU;6{iVuxRog>=C05ydV&F&@bz~} z4%pzCT0OVHBL-WMRe4)fzGiH6#<*P1S)Ac2ERr+S-mc@&(@`*+n3r10QV*$yGj>P= z(96m{Ul(Spjb%NAv1A})87REb{Kfi}bODa_KKgH4vD}2}jC^V9WaN`hZgS7^F_;9iWGS4en$=?&SQUs7W$;cZ^38@9 zG8IK{kA;U5nt2+xHAq31+B2MXT^BzJELCLOC=`}g_@|8M_+#D`x$yoNE();SmeC8)JneoY&47bE30d;_AiZ5 zo}d%p0H+{neoAQ5hCOt`?|guVPZ8HsFbX6=ck-zY7W(h1A$es807V3Yflfts-6`Ti zM!w73+%(VoBtM*>r43&Mzx%iHE29nb6%8RR(cbvvZ=8;m-rbc~Ypzc?Tv;LVR=E_r zr>rC`J7-LW+-63s@^l8&s{B}#1N^0*x~Y`hd2b_%CJ$*M4 zy3HH_YsK$8g4YRCQp+&wMbgvp+;GhJhFDw=HKhbWL7{lf0QjHV zO;@1Q(KSZ7H)<(ZC##rsG<=8(dGDS)y>%10DI|}PSSmsW&#; zv3BXIee}FqQXGgLjNfUcke9F$BtB--QT&3i zb3@2_oHHv+vZ|*2@OfS{lSdBw(i>8DA`K>oM%_n0y`@@S+4CH2Bn1qPju9JI7GwgN zfRbb%QZMBW3zIT^Y<|_tv%T)?tL_r*?$w@v|Dn4-U=~r|N}uf_b=sQ&adG>3YlEsR z)7ZkERc!|^K`l{ley)txFN8`-YpdQQN7^=2Tl!#PB{aXxmxWoDsN?&e1D$^{adMh++f#qi^eaP!8nM3(U8<@>=F z`pG-d0ns5R#n{eIpDg7;ek^{MPz8q?RI|k<7cZ$_PWy=l<0!Lqx6;Kyp~1@Ku{Rm{ zfEpWq=(X*QWf;jT-w$Athz#kNDxmK(MNCVoo6I*?JAf=E%sSL3SoW{#%i-XS*XalU zzU6A8vGF3?>$~;PJ~XKAi`Bky!^gKr`%x4>K3rj)QKP|#ll65|yG!IxmvNedz)x6- zh&C2(jZ9D*d&ht3%DP6Or9C$BLo(QY`gSEMGgV(?p-w9yaEXlvW#mzQW$4lQ(7dGo z=WzmgG^H72r9}I7MeXbA=V}$w{lF~ApAIiXmxBxrklX1NAMZJfej#MPhYWk$#p#Y<<5xV(+e>PhJpGSx2_IetQIp`9}01Y^Op%Xx| z^0pycZ+r^^FS^mL%cCq^Eb8hHb=!I2n~0nZ_Bes0%KCk`ZH~A%!<{af z_w=5-+O1~G!4%#WBA_${XO;Jjg)B3KHmX+=`&4a485(yi-u{Y{`6(5Xx_98)8fNvV z`#oO$-HmKNyqAJRQ+0e&q-ksXusv!eJTLY1qaeNuBt$Z4iPeI%Sv(4>8h zL{bEMxCpmirs%p`ZhMHH*6ly|qM2SCV8xpzfPvcfo+diS=rC8~Ht#-^Jb}Cy`v1Cg zj%xJ#q^Ul+Skwb9jopBVj zH{ZA_OvdYDh(3;O$|vw%@g5&*C4=FAU$Ytiddsi+QhB8%xv8q><8+j;b5YDCCLV~) z6Tiqrod9`q(J#lH92JN^FW^?4g#Dc)|3@95e@4Dx`6G2Nh=wGB+bZuTFE>7?T3rTq zM5G*TPsEGq*E%6GSgIQN9&+=ZTq z%J$}UR6AgF5Wi25bC3BIg_|$xp~$=VB+?R{G4wy-IH=)3zULNz(l-ahRHba`Ckz_D z+KCdW70*e}%LH@=0I7uTxhlbkeYnAmr6D~4aPZTE%qBZpGueRW=P8(nC`&xbpyl)Vi7}iFY?}=A%4U@gf>o&h}zqfDB<| zkj=}_q@HJ@0N*)X>6T$=l<52bUnjSYjdzLw+u%5=OvEYkqug807u5jSuB^}WxVjCr zw?BCFq2B%&SN-?$*z$Yqw;Zj=4$##Pqm1rMhMf=TQA58;8XTI>h`m#NrCJh(WZEp4 z6-QZ|l2|L*A!{V7jj)ytK`pTG(N6yPyEf2%b#^fBV81)?td7lLkP_$oI?3KAVzzoo z4P0Fx#Se#{me7}JleT=!QAA)F+lh1Em?)}vW5RCP$0!lhGMD*f0X-|Bgn-BtfYgeS7Ukobr$Qm4XQaDRyYn2&Y{{|t^HR3BQl3xY^+B#sOz>`=_L9rSVSrW z&Xa+>L%22TzE-`8FG90O+XUCd;d0nz-}pF~2Fso9iUP+iPFg{2r7M?j;kj#An-5>t zR4xHYkz4^Z&o$S##*DTUBzK8}!(HO{zaMWLvK$y@N>TY=dmQhlriSY(2`&6UU#wK2 z#s9Xf$7{k}g7G^AE#DqKCMPy+(i-286QKew1#A=AS)wsik6%VmOV#2;NjacG<7&Q5 z!3#GhBZLsE@`wBVx#$noVvh_N z=Db5d(tDShO%{Z!y77^baY;4%O-a}PZUAq07X^hz4^c|+@p&#fh8#zp;ld4NmFl+a4#~FQQb^O&Swd5{9o=Dp{ zcN{|!A?bTwghx0~^vX^W3jX7q0bI#U+eq**I~FikDVNN<3mWeE|33Vq$vTo=>&8D< z%c%ADIjIDqAGz~z+Pkt1B=@+6_%J3+p4PTfCp8Y=C!Y5_7ub(RtLK4*^7%G1# zSs%2G=OS{W>C}>@B*zoq7`72Uq%uFW3XT#@U=;iLETF-Q6hh03Bz~elSPi7BS~nEE z-(2UlNDJFM5@~|WUAECH2@?{wk+pm80F!?oHPzl5vq6rk3+c>6Y8B%$vSYqi6Yu?C z;WL%FNE4<2u&&K=M=QqR21BJe{7BGUFjf$Sxoji&lX1?1hpbXcAGLFd{`9D149^cTgitg{n*Hz$N&R+r|YB)Y&DHjzT z8U2)j)eNigcl)uII60@I^w;jQMn<~I(5I(9<>_xJqE=&Oe)94XW`MSDEkCo{>Cybd z4_o7heRli?f?VL)Aw@{F|E-aWHjy z$!7nn53Km}k~Yb|)TrD5roON+AD1*iJ7Mrvv;b!%&akA~$6VrQfJ0e>+3kc4x;lWK zL_BvzhK8QaVh6{Ei|~Y*BU+Por^{M0=!W59?_-va$=6hrF4zj)qHjMH))+J-xQG(j z|D(Y%vg{bsmzl)0XFjR zo9g_nk;59mPEz1xbg`qKxnzkmKXs=-*4DZRwR>^{Y3@w* zxck7~&Y7;tww%s&-^g|=9fB2x(0gQxt5PPc!XGqreGjA%&BRHts9jr0F)Y2@WL9|o z2)M@luRXxjqA*BH+xa7&TwVQu`MJ~g_Qpxboz7cCrWn9_Yx3xlfLr_98Y@|p?#Nx1 zO5Jp#CN>Huv%13aPSE+&_zk3lIDH0~bVNHqC;I03wge{v`S6Jf`lC^C%lFKRqWA8E2{9!o>M4M1y@SJ!olu;Vi!4bJc+MLQFjS?qNr+1dCYb%6ZWaPEeL%}}en z?F&CDIb+5+_QAxrrL*N}XFjeA$YAhviF~%(CiBH-yk}3X&Q=qd1>#-xnA4&@iBGj^gVJ)I&#~y-nBMiCGiO zlI)Cx8|C#;MAz}{RkY&4yTR8@pAi%^G<^+hQA1nic=esZ#Q>D&$gdQ9qL8}-H*Nrf zP8)?mrCMEBrvjIlue9Ux;u27y(eYfDn4+Jmt~~@LSqXM>qCA;uO6=5M_6=H@XdkOQ zHS1is&5EP@L}Jy*FA8S<<4h0racdXy?qQyo7Plmgrj$YFHQ7^4GzuL0YKuxeG?7PE zK8m>`{9pZ(LquoNI|umSv0HI8rDINt6LT!Vy<(4VrB4S6Uw!oD{`U0SfB+X`T<#5- zufCo`6X88RoiIwi)RZV6z5h70I}G{4e2DIU;Gqzqz&*^M+L?bBm}s2{4NioxIZC*l zqtxvOAzla(SZBL(bL`i>(_7pY>jfsi*ZP*Gw;KWem0@VkA5IC><#IjmNK#5<`so(L z2~H_id0x6xg8&t1`d|;;MjDr|7hvU})u!0*1UJ8xB3EvzuQ&1);`^>&AA9(`mV`(1vM<_HgjInK&*?#T;n;20duCXQX(E*L9(QJX<|%{yA1vJk$eL z2t5N62G2@t-aC30)mCm`&#Lh1?%DxiBD&9Z7ej|mV(q_0jzaEO2D3si*~jPm)-b;W z{c@-Baodc=IXvNTSVj<Crp||4K zNVRzAhtPc?2J-XZwEe5O=2Zdf*bM`vn+8-x@|4f$f!KOr)1oq4ZIB3-%#LB5)q_8~ z!Py#1bA5x(Zngoze&-K}-qkxyhMen$#`W8dMCC(nT!FH6KXtJV`TYc)gGm=&RVn2c zJdHvz5g<}5k^hH(7gl&Co59QUjj?G>XUBtnY%z7Qcehg8X`y#Gq}IhP?rp3l&5TuU zZ#C11ckErM?xP?#t)!xaY5xZp^Rp=1mHSJxv2LG;4QRyMf?_N8LXEYKN z7}^7a#@0`%O%HmTc7^FI%)lV5MpzI}sx$*<_TBAjgmjmFO4ISTOsnc16d?;orIPhg z<3UhVU|;A_-IcE+Q+@~|*=G6`46+(;?Tv0IMpSs%T1t+D(@Xw>u=Ag;UkJztn2{c2 zKrC-=Ah)xk84ZEIXWE84vy|Bcudo)8=p++)orMA2kUH!VM(Nfg6vnaZPQHJ$UvckL zu@>pN922x??$Ezc>>6|{6SN~&+wamv6N+=aJWkqg6;?ky%Um$;vM>Lk65V3(>CftZ zaFH`}pXl{j%Ak7t(UwTBAA}63PgH4nchuWf^G1J>nfB+nBpas{s6b_@N^s#y9P-fy zzQLugfsj+JHTNnoS>yyP0ZO4yM)p;G@>(lT`MK1~2Oif>;M!1RWwH~vzH$g_y}$zR zC~BH%mCq%m*j|RC&P5;Nqh$nq2JYC~I5@GpZstwC-bS)l3Rl(P=gena9I+saS<--v zAaJ2Hmj|Ide^5xcQ5#p;WP&uu<^4dW{S&$)2s#U^i@f zn3GAXh^LC-p_%hM>(Se_KoRtr6PLRA%D2)f+?mzu$q@e2BFcKQ^?^;y0gDT%fV##C z6BpgKo?2wyZVFlfO#uDPrh7E;NL_y+FU7I|4S5N*e59BsYVk`m<$HNF7yY)LLnLLr zQNZ&I#XjRdDa8^j4_Qnku>LuZ$&(0`Y9oqbZ%DMQo?}>a7D2Kd^ zmJZNKDSik_3CdLAr^7P%H=^RdaXF5Q{bNoF$dKSaWvy4M&`A0I*%m>sXT=y!nb*Lh zt}()=?)$}pCxPA1UAK*kPY4?OYLOyYClZzCt*+0{I#ntf{hi-ChEl#}HuynGam3s= zS0~I=*#!GGzs_FQf9g{&G+V53{Eo!3Ez&wEfc=(nu}7kc-7lu!1GI|Cs!>VtHcgD_ zdWy)Zd8e{#gk%|BVPP@yXGtmU^;Cb?%dAiC{Z#27#BA%;n-t0czJ&Y}ZSjfrZnN0I zGmi(kT#kXgZ6Y>-jwAqaYtU9mr$nT#pTIheEIik03t#4qQZ{}}8@$S95+a#W{9LwB za=Lk!M0N@ED@jukn2c9ZKGxl+Vix3uDd?9{b{AR?JPt}J9#ygX-poC<7_I2mx99sO z|3NtF)<<36Y_RXC8=>4^p;U0BBAyj{`H|7=#o1|a^xSB~n-u=%#YVQ2e5BaSkBOo9 zL3QgMu*f8lmO%DguH8Sm)1_YHBN~1~od?tb(bDzL+o!Xry*Ma4HB+`FPq`YOO;t_E zjT*1SGt>5j8eN*xM=x`$$5S|d$W$2)rxfEl8Hhte2;{eXkK|5;)wBFwALQ{f&bqVE zsRK=Z#Or9>4AlMC%<>T3#-qBbnbLsdYIL^y?x)v#X87drzJgc(N#0=%?F&VvFH`-L zo+-ud|6DSYVkeib;yQb>-WK-mz4C;bEk`$x>=~V;6#L43@ckI9bt?7gO~st05+!*84O@*k>1Eeidy`)b;CR z`v~?~A8f-p_WVB1y30w3O|YYySVx0hZ==0bu2)G~lyy?R%Wa@sCn;uf*e{CkCwG5; zl)m^B-NH1oy$pK7tA6Oyx6TKDmBeHm$mio|ADQ=qO(Wl$IfJ6ca(zuGW#;u@pL0<3 z;&g4i{I4`u>%ua+0Q;c>-=>jP^hL~?Zw#C7$Rp)9Q!fJFJOmT2s>cp0l{DH?YS&D# zhhzqy4C6TMq0KB0Y?piaK`9IC6ek?6Lx(;_m~qELy}%MUovf-JJ-yWEogPjV83BZh z#-7Jl&Q}zZHZEzj#%^xlSfDnJ>PLvojsNIj;RSeYgKStR=Ns2AN4?9-xF9E=WZIMD zg>>iJZ-J9x9Xq(}(c1~NO)uVzrC>E)bq#}bbE&@c&1~)@ISwmapk~*~v%}H}@%}tC zRVGVZ{zFC9gWUiw^>(k(ga7u4qdvW8Cs2@6QNV?-@LCgzu~VH1H(%6hrc8NjxJU)2 z$rlU?Dn(-OdYKmW*@}zQPG5`SjL{Y*qftlBD$86HPLw zMFNlRy5qHpv8oe5JMLN!EeTH|U8Gcf6xprUZWmH^pf&ljPYx?4#OVcDjUl>zITiTS*8K1)ZvD~6NMd8=Ix2?`z#zSxbFJanv0lFX*>}$<};W2otNsD zi=Z%i1)C=J(Z}(+Q28U#=q6HGK{O?d`xf7F{ZBjB;q-&IE)-^+O4kqSDQpwNGFm$8 z5Tc|D@|$_P)MWhI+5fa+WHNP8{?*zaxg7m;VqwdEX3JEYLUy57L4M7`QCIg5YbL}o z3M(VB_C83>6qK(j(JAeT?-DgTBEO4`mUzCXb88S77+=tsXugMZIOP`OrHJSF$xUKP z@hs5Z3T`y&N;bd?Dmm)rc=!J=nCvolA|jQmYDes?4;5T~v`18A?GFLVbFwogjv1-e z$KQ%o=JLB%W}p7H?V4F5mhDrD^09y<{&s8nnpS+mqxx0?egc)@Xkwyjy7n?ZxZCRr zTOj|9hP65e5p>k|V7PYmT*XK8WG0pm_GOopqsLy};7?lkBX-oM*crXrTVb*~G0O*t zTubc=mO1{5SLr^f7QfWKVDVHyDdnCo4Yw<@pvX{4FUroR&hlQKgBx)Jn}`498e|kB z#7ANF1-`cVVs!Ct*t!RU#FP7K*)ECBO>Z5B*B?L~3SmSYB zHP5&f9#hs{edTiP616rx^TN69i_4+fl5!DG>Rrbi&>QA)4sT4{8XA`=9bjX z)o3=C-D!dT(2!7N4HM&uni^?}J*56kcoy>wqPB$hW{SOCD!85xrejuE!&xyiV!UYf zOYwcv=Zs>Nb7nOm0h@vv=a8;zVX4iEl^zm_6iV2GTEeH8Yw5o z{~Yk2i`AOk(5Qg)1LrBgXlBovsZ55?cg333chjNw8h- zdv^!9S+g7CgVQoYhh?YX&y4lU>*~iSFbmSrU2amUKO^fb76Vip^KMcqeI8ziTxP|%=BDc>zM%X7nUp+Qms(zRm@G^ z(j`#QfyQW9xn?>hlWk=H&p$4Hvsgu6K1v32UyRP=7pEN)7_tsgV-lO#e{O@j-yU(3 z@=IlkJF49+Cakjr3k#dxUD==xtRp{d(~gmIj%i0JJ~+WKE2b73G26Kj5h@T9o;-nC zK7c4!+hrJLytCsf0M@jWnNZ=wyLI}1dKnFFRIx>W+0O^u7tMzQ`u?^WMb|T@vTbvy zFUs;fT4;lGc#xmYoS7ob!16b@*|=6_b)oZbLGSev-W5n8{IMax)^QX!-m0=Gkm^aL zTWN>7lq&UOrn%D`jFuTm0`_?Rc*55yCUbbm&J@MaR@<4z>e2f|6({Lp69zEuESZkl zbulT`q>HsvFWvX43$EF3TR80k#>+c=$WM8Y`ryRto>PkTL|oR#|JchESiRa0ogb@B z@8~=a>Pp#BJS}PE33+UCsEvN0;s_UA_=si3b!v|Jyi~k@vBwCNBN2{);YH6`jNR{a zL_JXXz$?HizJ1=&rgEe&&ho$j{O&|j{6h{tnwsv4IO+=j&r7#DO}iH(bxxfshI^fV zVZ(-(zld9Sm!_m+%5LqGr-z&p655 z5q1S^pAY(NCaH5~+rCHH87UI5Cf7vp$@0A3E|w9FlOtkDhyMPsxR_@r&R8bwpz6QE z83l`vH{SuFcC%)rjgi9$YLQ13=3^QQx$o?3oii>wnbQ5oF}oYTWJub;Otig6P^T`+ zvN5cxXp*Vhe>ZWNN}(^l{*lS3<|71+fCy?}0OqyNp~f75wWpa0K^59DPB)zaA}X>U z;j9?4%Av;Z@#_ud84NT*5r>ptkko0BWN2@s4xbWL$jh8HQTA;Zg%|J@ROFDMz%uQ_ z6k@!0jJ46{oJB%gDweB1d%xv+KIi!R2>_Ejedsq$dHsbxX{+Db=luSid+nR~RqV^L z@;1Jh6XcP5vMb|}y2uXpu8DmG&XAU>PI!!57>)5?s~yQ{=yE{@X&G)1%4b_zh)*=O z-g~eIc1xYxNG>T43$H$00{T@bj5z%I-$}?AtkC$`M5BTV$Q+ef+DF=gXP5^3W|HcQ zPxIQ-m*#wVZ3Vm&VO!wr7uDB8Q?^G_k-*z$$K|Hj;B356o*Z6{*h_I6Q=jFoy$gOx zgv&H-M1K!|zNO*A-K`7*gC@RCFUa;aD(2y^G4h+d^C!M0Iv-akQWa*?7zjb_k{nUX zYQ@%NDqo*kQq#@V(Qo}bbv3-4FR(uNav8di-SvTmpvDZXT5HIXOjWiRWfUtmVU+9g zG?1vnVn6M>_>-vhkuE*mp+FaiQ9m*F-j|lE-Bh*}cy3qc-~sf;{w~8L)~krdFFc#Z zzQ9=t97BJ(ziTl}Hr2K%vizGnUz~__G7qm^Gf94;emB-50cH>>eiBMbSyq8h?mfGa zCBJIGmL(EpVw}AEjdWhpG1|=6U|pgIp)=H+<>TB*#tB$!gr%&1tb8 zq93P=MvDJT3AK7Y3fXfO5xNqW>wCOJJ7v|Z*Z6LoXNUD_EOF);Nn6%hRL~1VOha!O zq5OwVS8X_a{sZWN9O=MPC$-3;S14hJO1+xmoX2ZL^R-9fEO>;VF$o^3i-+`qK0|U- zRi1<$!w1ZM`9a9*@BJ_S7lyU6?rx0!@gJg2G3y-t2bfo!j8pic6SG16LLQt`<;sDZ z3C@rB#0PUDaSA7q;P|g4=z1ML*CnRVm)D^~1af3<(G%Q+AffM)&s%wN_Zn4}TS_c0 zv6AkgV@d-1f9H12%MS!cYt-FzgM7t3VNk9>%Z!fwoE{;>KV_5lU-J_@6${Xq{lH(# zBk*|I^&L^RAvj~$ZC;I<6FVU&ntSn)6h}fDhH$E~#BVp|^6s#s$q?9$(E=7S`4p4C zsgGPw9}2iTQjvR?eN<&VdN*Zm1Cub`p0aw3oZ^Qw2Z?POWJc>E_{16~t1g}utJoE2 z?laOazh++6yLoWMk6RzcxcJ=IV0j#C$h{ruUvJU{Ek^An4arrXdHe^`_#Q57#J-PE zv}?)_9G(p_{^a-D?dI=bN{R!(&oOAPIN<*9y0BtRy2(ziLRt_V++_Q}!L?i>r0>jt y)GvQMeL;I-h3@Y)jav)VxSC$%YMi - - - - - - \ No newline at end of file diff --git a/public/aircraft_old.svg b/public/aircraft_old.svg deleted file mode 100644 index 7562261..0000000 --- a/public/aircraft_old.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/public/aircrafts-type-2/aircraft-0.svg b/public/aircrafts-type-2/aircraft-0.svg deleted file mode 100644 index 6e7ae4e..0000000 --- a/public/aircrafts-type-2/aircraft-0.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/public/aircrafts-type-2/aircraft-180.svg b/public/aircrafts-type-2/aircraft-180.svg deleted file mode 100644 index b484e06..0000000 --- a/public/aircrafts-type-2/aircraft-180.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - -Created with Fabric.js 3.6.3 - - - - - - \ No newline at end of file diff --git a/public/aircrafts-type-2/aircraft-90.svg b/public/aircrafts-type-2/aircraft-90.svg deleted file mode 100644 index 0f13572..0000000 --- a/public/aircrafts-type-2/aircraft-90.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - -Created with Fabric.js 3.6.3 - - - - - - \ No newline at end of file diff --git a/public/favicon.ico b/public/favicon.ico deleted file mode 100644 index ddeabee00bdc312287c7e853ca8644c974e78982..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1901 zcmds2J&)5s6ny*PcoUjMa+zX7btfSds1DJXLxFGw${p8SnSVe_7v~f~g(zr|j)JQZ zB^@XJ!ik^Z0#Q(fH_u+59YGPOU==w#yU(`XcxLv|(le`_;r%JIyrfJ zdiwGF{L}aH>*Zxxmh1JJelzmOpc#ExIdfRxivP5Yj2_+k0o1v2*(Gz z@8299>?X@FJMFEWEJtfyufvMh*1XjYDG2$)(Y1Y5bKFCcuz`F zHOO{mXL+IBAlrL}NpgcI($e7o?F$E!xvvPobspSN&Bsck$A$wz4F`h$GY+B@=Jw*S zreU>Tc>c~WqYl(|Q zA)lR*w$A@y9@IM67|p2*pHcrPAV*!2-MC*hMi1gSk>2=hrDK64&=jbaW1quU>yi$&AGrW!BFvB00gej1yCZdiyW9P2ciR37@rIG Fegb0D?w9}o diff --git a/public/vercel.svg b/public/vercel.svg deleted file mode 100644 index fbf0e25..0000000 --- a/public/vercel.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - \ No newline at end of file diff --git a/redux/actions/mainActions.ts b/redux/actions/mainActions.ts deleted file mode 100644 index 57221f9..0000000 --- a/redux/actions/mainActions.ts +++ /dev/null @@ -1,51 +0,0 @@ -import { ThunkDispatch } from "redux-thunk"; -import { AnyAction } from "redux"; -import { ActionTypes, IBounds, ICoordinate } from "redux/types"; - -export const setBounds = - (newData: IBounds) => (dispatch: ThunkDispatch<{}, {}, AnyAction>) => { - try { - dispatch({ - type: ActionTypes.SET_BOUNDS, - payload: newData, - }); - } catch (error) { - console.log(error); - } - }; - -export const setMapCenter = - (newData: ICoordinate) => (dispatch: ThunkDispatch<{}, {}, AnyAction>) => { - try { - dispatch({ - type: ActionTypes.SET_MAP_CENTER, - payload: newData, - }); - } catch (error) { - console.log(error); - } - }; - -export const setZoom = - (newData: number) => (dispatch: ThunkDispatch<{}, {}, AnyAction>) => { - try { - dispatch({ - type: ActionTypes.SET_ZOOM, - payload: newData, - }); - } catch (error) { - console.log(error); - } - }; - -export const setOpenLayer = - (newData: string) => (dispatch: ThunkDispatch<{}, {}, AnyAction>) => { - try { - dispatch({ - type: ActionTypes.SET_OPEN_LAYER, - payload: newData, - }); - } catch (error) { - console.log(error); - } - }; diff --git a/redux/reducers/index.ts b/redux/reducers/index.ts deleted file mode 100644 index d4a24ef..0000000 --- a/redux/reducers/index.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { combineReducers } from "redux"; -import mainReducer from "redux/reducers/mainReducer"; -import { IMainState } from "redux/types"; - -export interface IAppState { - main: IMainState; -} - -export default combineReducers({ - main: mainReducer, -}); diff --git a/redux/reducers/mainReducer.ts b/redux/reducers/mainReducer.ts deleted file mode 100644 index acd4cdc..0000000 --- a/redux/reducers/mainReducer.ts +++ /dev/null @@ -1,50 +0,0 @@ -import { getInitial, getInitialMapCenter } from "helpers"; -import { ActionTypes, IMainState, TMainAction } from "redux/types"; - -const initialState: IMainState = { - bounds: { - west: 0, - east: 0, - south: 0, - north: 0, - }, - mapCenter: { - lat: getInitialMapCenter("map.latitude"), - lng: getInitialMapCenter("map.longitude"), - }, - zoom: getInitialMapCenter("map.zoom"), - openLayer: getInitial("openLayer"), -}; - -const mainReducer = (state = initialState, action: TMainAction) => { - switch (action.type) { - case ActionTypes.SET_OPEN_LAYER: - return { - ...state, - openLayer: action.payload, - }; - - case ActionTypes.SET_BOUNDS: - return { - ...state, - bounds: action.payload, - }; - - case ActionTypes.SET_MAP_CENTER: - return { - ...state, - mapCenter: action.payload, - }; - - case ActionTypes.SET_ZOOM: - return { - ...state, - zoom: action.payload, - }; - - default: - return state; - } -}; - -export default mainReducer; diff --git a/redux/selectors.ts b/redux/selectors.ts deleted file mode 100644 index 7787a13..0000000 --- a/redux/selectors.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { IAppState } from "./types"; - -export const getMain = (state: IAppState) => state.main; diff --git a/redux/store.ts b/redux/store.ts deleted file mode 100644 index afa64b9..0000000 --- a/redux/store.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { createStore, applyMiddleware } from "redux"; -import { composeWithDevTools } from "redux-devtools-extension"; -import thunk from "redux-thunk"; -import rootReducer from "redux/reducers"; - -const middleware: any = [thunk]; - -const store = createStore( - rootReducer, - composeWithDevTools(applyMiddleware(...middleware)) -); - -export default store; diff --git a/redux/types.ts b/redux/types.ts deleted file mode 100644 index f3eff5a..0000000 --- a/redux/types.ts +++ /dev/null @@ -1,39 +0,0 @@ -export interface IAppState { - main: IMainState; -} - -export enum ActionTypes { - SET_BOUNDS, - SET_MAP_CENTER, - SET_ZOOM, - SET_OPEN_LAYER, -} - -export enum DownloadType { - UNKNOWN, -} - -export interface IBounds { - west: number; - east: number; - south: number; - north: number; -} - -export interface ICoordinate { - lat: number; - lng: number; -} - -export interface IMainState { - bounds: IBounds; - mapCenter: ICoordinate; - zoom: number; - openLayer: string; -} - -export type TMainAction = - | { type: ActionTypes.SET_BOUNDS; payload: IBounds } - | { type: ActionTypes.SET_MAP_CENTER; payload: ICoordinate } - | { type: ActionTypes.SET_OPEN_LAYER; payload: string } - | { type: ActionTypes.SET_ZOOM; payload: number }; diff --git a/styles/Home.module.css b/styles/Home.module.css deleted file mode 100644 index 7296ec0..0000000 --- a/styles/Home.module.css +++ /dev/null @@ -1,116 +0,0 @@ -.container { - padding: 0 2rem; -} - -.main { - min-height: 93vh; - padding: 4rem 0; - flex: 1; - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; -} - -.footer { - display: flex; - flex: 1; - padding: 1.8rem 0; - border-top: 1px solid #eaeaea; - justify-content: center; - align-items: center; -} - -.footer a { - display: flex; - justify-content: center; - align-items: center; - flex-grow: 1; -} - -.title a { - color: #0070f3; - text-decoration: none; -} - -.title a:hover, -.title a:focus, -.title a:active { - text-decoration: underline; -} - -.title { - margin: 0; - line-height: 1.15; - font-size: 4rem; -} - -.title, -.description { - text-align: center; -} - -.description { - margin: 4rem 0; - line-height: 1.5; - font-size: 1.5rem; -} - -.code { - background: #fafafa; - border-radius: 5px; - padding: 0.75rem; - font-size: 1.1rem; - font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, - Bitstream Vera Sans Mono, Courier New, monospace; -} - -.grid { - display: flex; - align-items: center; - justify-content: center; - flex-wrap: wrap; - max-width: 800px; -} - -.card { - margin: 1rem; - padding: 1.5rem; - text-align: left; - color: inherit; - text-decoration: none; - border: 1px solid #eaeaea; - border-radius: 10px; - transition: color 0.15s ease, border-color 0.15s ease; - max-width: 300px; -} - -.card:hover, -.card:focus, -.card:active { - color: #0070f3; - border-color: #0070f3; -} - -.card h2 { - margin: 0 0 1rem 0; - font-size: 1.5rem; -} - -.card p { - margin: 0; - font-size: 1.25rem; - line-height: 1.5; -} - -.logo { - height: 1em; - margin-left: 0.5rem; -} - -@media (max-width: 600px) { - .grid { - width: 100%; - flex-direction: column; - } -} diff --git a/styles/Popup.module.scss b/styles/Popup.module.scss deleted file mode 100644 index a148173..0000000 --- a/styles/Popup.module.scss +++ /dev/null @@ -1,16 +0,0 @@ -$color: red; -$value: 180deg; - -.rotate { - background: $color !important; - transform: rotate(90deg); - /* CSS3 */ - -moz-transform: rotate(90deg); - /* Firefox */ - -webkit-transform: rotate(90deg); - /* Webkit */ - -o-transform: rotate(90deg); - /* Opera */ - -ms-transform: rotate(90deg); - /* IE 9 */ -} \ No newline at end of file diff --git a/styles/css/nextjs-material-kit-pro.css b/styles/css/nextjs-material-kit-pro.css deleted file mode 100644 index ecb865d..0000000 --- a/styles/css/nextjs-material-kit-pro.css +++ /dev/null @@ -1,1715 +0,0 @@ -.btn-file { - position: relative; - overflow: hidden; - vertical-align: middle; } - -.btn-file > input { - position: absolute; - top: 0; - right: 0; - width: 100%; - height: 100%; - margin: 0; - font-size: 23px; - cursor: pointer; - filter: alpha(opacity=0); - opacity: 0; - direction: ltr; } - -.fileinput { - text-align: center; - display: inline-block; - margin-bottom: 9px; } - .fileinput input[type="file"] { - display: none; } - -.fileinput .form-control { - display: inline-block; - padding-top: 7px; - padding-bottom: 5px; - margin-bottom: 0; - vertical-align: middle; - cursor: text; } - -.fileinput .thumbnail { - display: inline-block; - margin-bottom: 10px; - overflow: hidden; - text-align: center; - vertical-align: middle; - max-width: 360px; - box-shadow: 0 5px 15px -8px rgba(0, 0, 0, 0.24), 0 8px 10px -5px rgba(0, 0, 0, 0.2); } - .fileinput .thumbnail.img-circle { - border-radius: 50%; - max-width: 100px; } - -.fileinput .thumbnail > img { - max-height: 100%; - width: 100%; } - -.fileinput .btn { - vertical-align: middle; } - -.fileinput-exists .fileinput-new, -.fileinput-new .fileinput-exists { - display: none; } - -.fileinput-inline .fileinput-controls { - display: inline; } - -.fileinput-filename { - display: inline-block; - overflow: hidden; - vertical-align: middle; } - -.form-control .fileinput-filename { - vertical-align: bottom; } - -.fileinput.input-group { - display: table; } - -.fileinput.input-group > * { - position: relative; - z-index: 2; } - -.fileinput.input-group > .btn-file { - z-index: 1; } - -.fileinput-new.input-group .btn-file, -.fileinput-new .input-group .btn-file { - border-radius: 0 4px 4px 0; } - -.fileinput-new.input-group .btn-file.btn-xs, -.fileinput-new .input-group .btn-file.btn-xs, -.fileinput-new.input-group .btn-file.btn-sm, -.fileinput-new .input-group .btn-file.btn-sm { - border-radius: 0 3px 3px 0; } - -.fileinput-new.input-group .btn-file.btn-lg, -.fileinput-new .input-group .btn-file.btn-lg { - border-radius: 0 6px 6px 0; } - -.form-group.has-warning .fileinput .fileinput-preview { - color: #ff9800; } - -.form-group.has-warning .fileinput .thumbnail { - border-color: #ff9800; } - -.form-group.has-error .fileinput .fileinput-preview { - color: #f44336; } - -.form-group.has-error .fileinput .thumbnail { - border-color: #f44336; } - -.form-group.has-success .fileinput .fileinput-preview { - color: #4caf50; } - -.form-group.has-success .fileinput .thumbnail { - border-color: #4caf50; } - -.input-group-addon:not(:first-child) { - border-left: 0; } - -.thumbnail { - border: 0 none; - border-radius: 0; - padding: 0; } - -html * { - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; } - -* { - letter-spacing: normal !important; } - -body { - font-size: 1rem; - overflow-x: hidden; } - -body, -h1, -h2, -h3, -h4, -h5, -h6 { - font-family: "Roboto", "Helvetica", "Arial", sans-serif; - font-weight: 300; - line-height: 1.5em; } - -h1, -h2, -h3, -h4, -h5, -h6 { - color: inherit; } - -h1, -h2, -h3 { - margin-top: 20px; - margin-bottom: 10px; } - -h4, -h5, -h6 { - margin-top: 10px; - margin-bottom: 10px; } - -h1 { - font-size: 3.3125rem; - line-height: 1.15em; } - -h2 { - font-size: 2.25rem; - line-height: 1.5em; } - -h3 { - font-size: 1.5625rem; - line-height: 1.4em; } - -h4 { - font-size: 1.125rem; - line-height: 1.5em; } - -h5 { - font-size: 1.0625rem; - line-height: 1.55em; } - -h6 { - font-size: 0.75rem; - text-transform: uppercase; - font-weight: 500; } - -p { - font-size: 14px; - margin: 0 0 10px; } - -b, -strong { - font-weight: 700; } - -html { - font-family: sans-serif; - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; - -ms-overflow-style: scrollbar; - -webkit-tap-highlight-color: transparent; } - -body { - background-color: #eee; - color: #3c4858; - margin: 0; - font-size: 1rem; - text-align: left; } - -legend { - border-bottom: 0; } - -* { - -webkit-tap-highlight-color: rgba(255, 255, 255, 0); - -webkit-tap-highlight-color: transparent; - box-sizing: border-box; } - *:focus { - outline: 0; } - -a { - color: #9c27b0; - text-decoration: none; - background-color: transparent; } - a:hover, a:focus { - color: #89229b; - text-decoration: none; } - -label { - font-size: 14px; - line-height: 1.42857; - color: #aaaaaa; - font-weight: 400; } - -small { - font-size: 75%; - color: #777; - font-weight: 400; } - -img { - vertical-align: middle; - border-style: none; } - -form { - margin-bottom: 1.125rem; } - -hr { - margin-top: 1rem; - margin-bottom: 1rem; - border: 0; - border-top: 1px solid rgba(0, 0, 0, 0.1); } - -hr { - box-sizing: content-box; - height: 0; - overflow: visible; } - -ol, -ul, -dl { - margin-top: 0; - margin-bottom: 1rem; } - -#images h4 { - margin-bottom: 30px; } - -#root { - overflow: hidden; } - -#cd-vertical-nav { - position: fixed; - right: -78px; - top: 50%; - bottom: auto; - -webkit-transform: translateY(-50%); - -moz-transform: translateY(-50%); - -ms-transform: translateY(-50%); - -o-transform: translateY(-50%); - transform: translateY(-50%); - z-index: 4; } - -#cd-vertical-nav ul { - list-style: none; - padding: 0; } - -#cd-vertical-nav li { - text-align: right; } - -#cd-vertical-nav a { - display: inline-block; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - width: 100%; } - -#cd-vertical-nav a:hover span, -#cd-vertical-nav a.is-selected .cd-dot { - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - -o-transform: scale(1); - transform: scale(1); } - -#cd-vertical-nav .cd-dot { - position: relative; - top: 8px; - right: calc(100% - 15px); - height: 10px; - width: 10px; - border-radius: 50%; - background-color: #995581; - -webkit-transition: -webkit-transform 0.2s, background-color 0.5s; - -moz-transition: -moz-transform 0.2s, background-color 0.5s; - transition: transform 0.2s, background-color 0.5s; - -webkit-transform-origin: 50% 50%; - -moz-transform-origin: 50% 50%; - -ms-transform-origin: 50% 50%; - -o-transform-origin: 50% 50%; - transform-origin: 50% 50%; } - -#cd-vertical-nav a span { - float: right; - display: inline-block; - -webkit-transform: scale(0.6); - -moz-transform: scale(0.6); - -ms-transform: scale(0.6); - -o-transform: scale(0.6); - transform: scale(0.6); } - -#cd-vertical-nav .cd-label { - position: relative; - margin-right: 10px; - padding: 4px 14px; - color: white; - background: rgba(0, 0, 0, 0.53); - font-size: 10px; - border-radius: 20px; - text-transform: uppercase; - font-weight: 600; - opacity: 0; - -webkit-transform-origin: 100% 50%; - -moz-transform-origin: 100% 50%; - -ms-transform-origin: 100% 50%; - -o-transform-origin: 100% 50%; - transform-origin: 100% 50%; } - -#cd-vertical-nav a:after { - content: ""; - display: table; - clear: both; } - -#cd-vertical-nav a:hover .cd-label { - opacity: 1; - left: -100%; - -webkit-transition: -webkit-transform 0.2s, opacity 0.2s; - -moz-transition: -moz-transform 0.2s, opacity 0.2s; - transition: transform 0.2s, opacity 0.2s; } - -.body-page-transition { - overflow: hidden; } - .body-page-transition #page-transition { - position: fixed; - z-index: 9999; - width: 100%; - display: flex; - height: 100%; - justify-content: center; - align-items: center; } - .body-page-transition #page-transition > div:after { - content: ""; - background-image: url("../img/bg7.jpg"); - background-size: cover; - position: fixed; - z-index: 9998; - width: 100%; - height: 100%; - top: 0; - left: 0; } - .body-page-transition #page-transition > div:before { - top: 0; - left: 0; - width: 100%; - height: 100%; - content: ''; - display: block; - z-index: 9999; - position: absolute; - background: rgba(0, 0, 0, 0.5); } - -.noUi-target, -.noUi-target * { - -webkit-touch-callout: none; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); - -webkit-user-select: none; - -ms-touch-action: none; - touch-action: none; - -ms-user-select: none; - -moz-user-select: none; - user-select: none; - -moz-box-sizing: border-box; - box-sizing: border-box; } - -.noUi-target { - position: relative; - direction: ltr; } - -.noUi-base, -.noUi-connects { - width: 100%; - height: 100%; - position: relative; - z-index: 1; } - -/* Wrapper for all connect elements. - */ -.noUi-connects { - overflow: hidden; - z-index: 0; } - -.noUi-connect, -.noUi-origin { - will-change: transform; - position: absolute; - z-index: 1; - top: 0; - left: 0; - -ms-transform-origin: 0 0; - -webkit-transform-origin: 0 0; - -webkit-transform-style: preserve-3d; - transform-origin: 0 0; - transform-style: flat; } - -.noUi-connect { - height: 100%; - width: 100%; } - -.noUi-origin { - height: 10%; - width: 10%; } - -/* Offset direction - */ -html:not([dir="rtl"]) .noUi-horizontal .noUi-origin { - left: auto; - right: 0; } - -/* Give origins 0 height/width so they don't interfere with clicking the - * connect elements. - */ -.noUi-vertical .noUi-origin { - width: 0; } - -.noUi-horizontal .noUi-origin { - height: 0; } - -.noUi-handle { - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - position: absolute; } - -.noUi-touch-area { - height: 100%; - width: 100%; } - -.noUi-state-tap .noUi-connect, -.noUi-state-tap .noUi-origin { - -webkit-transition: transform 0.3s; - transition: transform 0.3s; } - -.noUi-state-drag * { - cursor: inherit !important; } - -/* Slider size and handle placement; - */ -.noUi-horizontal { - height: 2px; - margin: 15px 0; } - -.noUi-horizontal .noUi-handle { - box-sizing: border-box; - width: 14px; - height: 14px; - left: -10px; - top: -6px; - cursor: pointer; - border-radius: 100%; - -webkit-transition: all .2s ease-out; - transition: all .2s ease-out; - border: 1px solid #9c27b0; - background: #fff; - box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2); } - -.noUi-vertical { - width: 18px; } - -.noUi-vertical .noUi-handle { - width: 15px; - height: 15px; - left: 0px; - top: -7px; } - -html:not([dir="rtl"]) .noUi-horizontal .noUi-handle { - right: -4px; - left: auto; } - -/* Styling; - * Giving the connect element a border radius causes issues with using transform: scale - */ -.noUi-target { - background-color: #c8c8c8; - border-radius: 3px; } - -.noUi-connects { - border-radius: 3px; } - -/* Handles and cursors; - */ -.noUi-draggable { - cursor: ew-resize; } - -.noUi-vertical .noUi-draggable { - cursor: ns-resize; } - -.noUi-handle { - border-radius: 3px; - background: #FFF; - cursor: default; - box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB; } - -.noUi-active { - box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB; } - -.noUi-handle.noUi-active { - transform: scale3d(1.5, 1.5, 1); } - -/* Disabled state; - */ -[disabled] .noUi-connect { - background: #B8B8B8; } - -[disabled].noUi-target, -[disabled].noUi-handle, -[disabled] .noUi-handle { - cursor: not-allowed; } - -/* Base; - * - */ -.noUi-pips, -.noUi-pips * { - -moz-box-sizing: border-box; - box-sizing: border-box; } - -.noUi-pips { - position: absolute; - color: #999; } - -/* Values; - * - */ -.noUi-value { - position: absolute; - white-space: nowrap; - text-align: center; } - -.noUi-value-sub { - color: #ccc; - font-size: 10px; } - -/* Markings; - * - */ -.noUi-marker { - position: absolute; - background: #CCC; } - -.noUi-marker-sub { - background: #AAA; } - -.noUi-marker-large { - background: #AAA; } - -/* Horizontal layout; - * - */ -.noUi-pips-horizontal { - padding: 10px 0; - height: 80px; - top: 100%; - left: 0; - width: 100%; } - -.noUi-value-horizontal { - -webkit-transform: translate(-50%, 50%); - transform: translate(-50%, 50%); } - -.noUi-rtl .noUi-value-horizontal { - -webkit-transform: translate(50%, 50%); - transform: translate(50%, 50%); } - -.noUi-marker-horizontal.noUi-marker { - margin-left: -1px; - width: 2px; - height: 5px; } - -.noUi-marker-horizontal.noUi-marker-sub { - height: 10px; } - -.noUi-marker-horizontal.noUi-marker-large { - height: 15px; } - -/* Vertical layout; - * - */ -.noUi-pips-vertical { - padding: 0 10px; - height: 100%; - top: 0; - left: 100%; } - -.noUi-value-vertical { - -webkit-transform: translate(0, -50%); - transform: translate(0, -50%); - padding-left: 25px; } - -.noUi-rtl .noUi-value-vertical { - -webkit-transform: translate(0, 50%); - transform: translate(0, 50%); } - -.noUi-marker-vertical.noUi-marker { - width: 5px; - height: 2px; - margin-top: -1px; } - -.noUi-marker-vertical.noUi-marker-sub { - width: 10px; } - -.noUi-marker-vertical.noUi-marker-large { - width: 15px; } - -.noUi-tooltip { - display: block; - position: absolute; - border: 1px solid #D9D9D9; - border-radius: 3px; - background: #fff; - color: #000; - padding: 5px; - text-align: center; - white-space: nowrap; } - -.noUi-horizontal .noUi-tooltip { - -webkit-transform: translate(-50%, 0); - transform: translate(-50%, 0); - left: 50%; - bottom: 120%; } - -.noUi-vertical .noUi-tooltip { - -webkit-transform: translate(0, -50%); - transform: translate(0, -50%); - top: 50%; - right: 120%; } - -.noUi-target .noUi-handle { - border: 1px solid #333; } - -.noUi-target.slider-primary .noUi-connect, .noUi-target.slider-primary.noUi-connect { - background-color: #9c27b0; } - -.noUi-target.slider-primary .noUi-handle { - border-color: #9c27b0; } - -.noUi-target.slider-info .noUi-connect, .noUi-target.slider-info.noUi-connect { - background-color: #00bcd4; } - -.noUi-target.slider-info .noUi-handle { - border-color: #00bcd4; } - -.noUi-target.slider-success .noUi-connect, .noUi-target.slider-success.noUi-connect { - background-color: #4caf50; } - -.noUi-target.slider-success .noUi-handle { - border-color: #4caf50; } - -.noUi-target.slider-warning .noUi-connect, .noUi-target.slider-warning.noUi-connect { - background-color: #ff9800; } - -.noUi-target.slider-warning .noUi-handle { - border-color: #ff9800; } - -.noUi-target.slider-danger .noUi-connect, .noUi-target.slider-danger.noUi-connect { - background-color: #f44336; } - -.noUi-target.slider-danger .noUi-handle { - border-color: #f44336; } - -.noUi-target.slider-rose .noUi-connect, .noUi-target.slider-rose.noUi-connect { - background-color: #e91e63; } - -.noUi-target.slider-rose .noUi-handle { - border-color: #e91e63; } - -/*! -* https://github.com/YouCanBookMe/react-datetime -*/ -.rdt { - position: relative; } - .rdt .rdtPicker { - -webkit-transition: all 150ms linear; - -moz-transition: all 150ms linear; - -o-transition: all 150ms linear; - -ms-transition: all 150ms linear; - transition: all 150ms linear; - margin-top: -20px; - visibility: hidden; - display: block; - opacity: 0; } - .rdt.rdtOpen .rdtPicker { - opacity: 1; - visibility: visible; - margin-top: 0; } - .rdt input.form-control { - border: 0; - background-image: linear-gradient(#9c27b0, #9c27b0), linear-gradient(#d2d2d2, #d2d2d2); - background-size: 0 2px, 100% 1px; - background-repeat: no-repeat; - background-position: center bottom, center calc(100% - 1px); - background-color: rgba(0, 0, 0, 0); - transition: background 0s ease-out; - float: none; - box-shadow: none; - border-radius: 0; - font-weight: 400; - width: 100%; - height: 36px; - padding: 7px 0; - font-size: 14px; - font-family: "Roboto", "Helvetica", "Arial", sans-serif; - font-weight: 400; - line-height: 1.42857; - display: block; - width: 100%; - color: #555; } - .rdt input.form-control:focus { - outline: none; - background-image: linear-gradient(#9c27b0, #9c27b0), linear-gradient(#d2d2d2, #d2d2d2); - background-size: 100% 2px, 100% 1px; - box-shadow: none; - transition-duration: 0.3s; } - -.rdtPicker { - display: none; - position: absolute; - width: 260px; - padding: 4px; - margin-top: 1px; - z-index: 99999 !important; - background: #fff; - border-radius: 0.125rem; - box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.2); - -webkit-background-clip: padding-box; - background-clip: padding-box; - min-width: 160px; } - .rdtPicker:before { - display: inline-block; - position: absolute; - width: 0; - height: 0; - vertical-align: middle; - content: ""; - top: -5px; - left: 10px; - right: auto; - color: #ffffff; - border-bottom: 0.4em solid; - border-right: 0.4em solid transparent; - border-left: 0.4em solid transparent; } - .rdtPicker:after { - border-bottom: 0.4em solid #ffffff; - border-right: 0.4em solid transparent; - border-left: 0.4em solid transparent; - content: ""; - display: inline-block; - position: absolute; - top: -5px; - left: 10px; } - -.rdtPicker { - display: block; - top: 40px; } - -.rdtStatic .rdtPicker { - box-shadow: none; - position: static; } - -.rdtPicker .rdtTimeToggle { - text-align: center; - padding: 5px; - border-radius: 4px; } - -.rdtPicker table { - width: 100%; - margin: 0; - border-color: #fff !important; - border-collapse: collapse; } - -.rdtPicker td, -.rdtPicker th { - text-align: center; - padding: 1px; } - -.rdtPicker td { - cursor: pointer; } - -.rdtDay { - height: 30px; - line-height: 33px; - width: 30px; - text-align: center; - padding: 0px; - border-radius: 50%; } - .rdtDay.rdtToday.rdtActive, .rdtDay.rdtActive, .rdtDay.rdtActive:hover { - background-color: #9c27b0 !important; - color: #fff; - box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.2), 0 13px 24px -11px rgba(156, 39, 176, 0.6); } - -.rdtDays tr .dow { - border-bottom: 1px solid #e3e3e3; - text-align: center; - font-size: 12px; - text-transform: uppercase; - font-weight: 400; - padding-bottom: 5px; - padding-top: 10px; } - -.rdtDays tr .rdtOld, -.rdtDays tr .rdtNew { - color: #bdbdbd; } - -.rdtPicker td.rdtDay:hover, -.rdtPicker td.rdtHour:hover, -.rdtPicker td.rdtMinute:hover, -.rdtPicker td.rdtSecond:hover, -.rdtPicker .rdtTimeToggle:hover { - background: #eeeeee; - cursor: pointer; } - -.rdtPicker td.rdtToday { - position: relative; } - -.rdtPicker td.rdtActive.rdtToday:before { - border-bottom-color: #fff; } - -.rdtPicker td.rdtDisabled, -.rdtPicker td.rdtDisabled:hover { - background: none; - color: #999999; - cursor: not-allowed; } - -.rdtPicker td span.rdtOld { - color: #999999; } - -.rdtPicker td span.rdtDisabled, -.rdtPicker td span.rdtDisabled:hover { - background: none; - color: #999999; - cursor: not-allowed; } - -.rdtPicker .dow { - width: 14.2857%; - border-bottom: none; } - -.rdtPicker th.rdtSwitch { - width: 50px; - padding: 5px; - border-radius: 4px; } - -.rdtPicker th.rdtNext, -.rdtPicker th.rdtPrev { - font-size: 21px; - vertical-align: top; - border-radius: 50%; - line-height: 33px; } - -.rdtPicker .dow, -.rdtPicker th.rdtSwitch, -.rdtPicker th.rdtNext, -.rdtPicker th.rdtPrev, -.rdtPicker .rdtTimeToggle { - color: #495057; } - -.rdtPicker .rdtTimeToggle { - color: #9c27b0; } - -.rdtPicker .rdtTime th.rdtSwitch { - color: #9c27b0; } - -.rdtPrev span, -.rdtNext span { - display: block; - -webkit-touch-callout: none; - /* iOS Safari */ - -webkit-user-select: none; - /* Chrome/Safari/Opera */ - -khtml-user-select: none; - /* Konqueror */ - -moz-user-select: none; - /* Firefox */ - -ms-user-select: none; - /* Internet Explorer/Edge */ - user-select: none; } - -.rdtPicker th.rdtDisabled, -.rdtPicker th.rdtDisabled:hover { - background: none; - color: #999999; - cursor: not-allowed; } - -.rdtPicker thead tr:first-child th { - cursor: pointer; } - -.rdtPicker thead tr:first-child th:hover { - background: #eeeeee; } - -.rdtPicker button { - border: none; - background: none; - cursor: pointer; } - -.rdtPicker button:hover { - background-color: #eee; } - -.rdtPicker thead button { - width: 100%; - height: 100%; } - -td.rdtMonth, -td.rdtYear { - height: 50px; - width: 25%; - cursor: pointer; } - -td.rdtMonth:hover, -td.rdtYear:hover { - background: #eee; } - -.rdtCounters { - display: inline-block; } - -.rdtCounters > div { - float: left; - width: 40px; - font-weight: inherit; - margin: 3px; - border-radius: 50%; } - -.rdtCounters .rdtCounterSeparator { - width: 0; - border: 1px solid transparent; } - -.rdtCounter { - height: 100px; } - -.rdtCounter { - width: 40px; } - .rdtCounter .rdtCount { - padding: 7px; - height: 40px; - border: 1px solid transparent; } - -.rdtCounters .rdtCounter:last-child .rdtCount { - color: #9c27b0; - border-radius: 50%; - border: 1px solid #9c27b0; } - -.rdtCounterSeparator { - padding: 7px; - line-height: 100px; } - -.rdtCounter .rdtBtn { - line-height: 40px; - cursor: pointer; - display: block; - border-radius: 50%; - color: #9c27b0; - -webkit-transition: all 60ms ease-in; - -moz-transition: all 60ms ease-in; - -o-transition: all 60ms ease-in; - -ms-transition: all 60ms ease-in; - transition: all 60ms ease-in; - -webkit-touch-callout: none; - /* iOS Safari */ - -webkit-user-select: none; - /* Chrome/Safari/Opera */ - -khtml-user-select: none; - /* Konqueror */ - -moz-user-select: none; - /* Firefox */ - -ms-user-select: none; - /* Internet Explorer/Edge */ - user-select: none; } - -.rdtCounter .rdtBtn:hover { - background: #eee; } - -.rdtCounter .rdtCount { - font-size: inherit; - line-height: 25px; } - -.rdtMilli { - vertical-align: middle; - padding-left: 8px; - width: 48px; } - -.rdtMilli input { - width: 100%; - font-size: inherit; - margin-top: 37px; } - -.rdtMonths, -.rdtYears { - padding-bottom: 10px; } - .rdtMonths .rdtMonth, - .rdtMonths .rdtYear, - .rdtYears .rdtMonth, - .rdtYears .rdtYear { - display: inline-block; - width: 56px; - height: 56px; - line-height: 56px; - margin: 3px 3px; - cursor: pointer; - border-radius: 50%; - text-align: center; } - .rdtMonths .rdtMonth.rdtActive, - .rdtMonths .rdtYear.rdtActive, - .rdtYears .rdtMonth.rdtActive, - .rdtYears .rdtYear.rdtActive { - background-color: #9c27b0 !important; - color: #fff; } - -.image-gallery-icon { - color: #fff; - transition: all .2s ease-out; - appearance: none; - background-color: transparent; - border: 0; - cursor: pointer; - outline: none; - position: absolute; - z-index: 4; - filter: drop-shadow(0 2px 2px #1a1a1a); } - @media (min-width: 768px) { - .image-gallery-icon:hover { - color: #337ab7; } - .image-gallery-icon:hover .image-gallery-svg { - transform: scale(1.1); } } - .image-gallery-icon:focus { - outline: 2px solid #337ab7; } - -.image-gallery-using-mouse .image-gallery-icon:focus { - outline: none; } - -.image-gallery-fullscreen-button, -.image-gallery-play-button { - bottom: 0; - padding: 20px; } - .image-gallery-fullscreen-button .image-gallery-svg, - .image-gallery-play-button .image-gallery-svg { - height: 36px; - width: 36px; } - @media (max-width: 768px) { - .image-gallery-fullscreen-button, - .image-gallery-play-button { - padding: 15px; } - .image-gallery-fullscreen-button .image-gallery-svg, - .image-gallery-play-button .image-gallery-svg { - height: 24px; - width: 24px; } } - @media (max-width: 480px) { - .image-gallery-fullscreen-button, - .image-gallery-play-button { - padding: 10px; } - .image-gallery-fullscreen-button .image-gallery-svg, - .image-gallery-play-button .image-gallery-svg { - height: 16px; - width: 16px; } } - -.image-gallery-fullscreen-button { - right: 0; } - -.image-gallery-play-button { - left: 0; } - -.image-gallery-left-nav, -.image-gallery-right-nav { - padding: 50px 10px; - top: 50%; - transform: translateY(-50%); } - .image-gallery-left-nav .image-gallery-svg, - .image-gallery-right-nav .image-gallery-svg { - height: 120px; - width: 60px; } - @media (max-width: 768px) { - .image-gallery-left-nav .image-gallery-svg, - .image-gallery-right-nav .image-gallery-svg { - height: 72px; - width: 36px; } } - @media (max-width: 480px) { - .image-gallery-left-nav .image-gallery-svg, - .image-gallery-right-nav .image-gallery-svg { - height: 48px; - width: 24px; } } - .image-gallery-left-nav[disabled], - .image-gallery-right-nav[disabled] { - cursor: disabled; - opacity: .6; - pointer-events: none; } - -.image-gallery-left-nav { - left: 0; } - -.image-gallery-right-nav { - right: 0; } - -.image-gallery { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - -o-user-select: none; - user-select: none; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); - position: relative; } - .image-gallery.fullscreen-modal { - background: #000; - bottom: 0; - height: 100%; - left: 0; - position: fixed; - right: 0; - top: 0; - width: 100%; - z-index: 5; } - .image-gallery.fullscreen-modal .image-gallery-content { - top: 50%; - transform: translateY(-50%); } - -.image-gallery-content { - position: relative; - line-height: 0; - top: 0; } - .image-gallery-content.fullscreen { - background: #000; } - .image-gallery-content .image-gallery-slide .image-gallery-image { - max-height: calc(100vh - 80px); } - .image-gallery-content.left .image-gallery-slide .image-gallery-image, .image-gallery-content.right .image-gallery-slide .image-gallery-image { - max-height: 100vh; } - -.image-gallery-slide-wrapper { - position: relative; } - .image-gallery-slide-wrapper.left, .image-gallery-slide-wrapper.right { - display: inline-block; - width: calc(100% - 110px); } - @media (max-width: 768px) { - .image-gallery-slide-wrapper.left, .image-gallery-slide-wrapper.right { - width: calc(100% - 87px); } } - .image-gallery-slide-wrapper.image-gallery-rtl { - direction: rtl; } - -.image-gallery-slides { - line-height: 0; - overflow: hidden; - position: relative; - white-space: nowrap; - text-align: center; } - -.image-gallery-slide { - left: 0; - position: absolute; - top: 0; - width: 100%; } - .image-gallery-slide.center { - position: relative; } - .image-gallery-slide .image-gallery-image { - width: 100%; - object-fit: contain; } - .image-gallery-slide .image-gallery-description { - background: rgba(0, 0, 0, 0.4); - bottom: 70px; - color: #fff; - left: 0; - line-height: 1; - padding: 10px 20px; - position: absolute; - white-space: normal; } - @media (max-width: 768px) { - .image-gallery-slide .image-gallery-description { - bottom: 45px; - font-size: .8em; - padding: 8px 15px; } } - -.image-gallery-bullets { - bottom: 20px; - left: 0; - margin: 0 auto; - position: absolute; - right: 0; - width: 80%; - z-index: 4; } - .image-gallery-bullets .image-gallery-bullets-container { - margin: 0; - padding: 0; - text-align: center; } - .image-gallery-bullets .image-gallery-bullet { - appearance: none; - background-color: transparent; - border: 1px solid #fff; - border-radius: 50%; - box-shadow: 0 1px 0 #1a1a1a; - cursor: pointer; - display: inline-block; - margin: 0 5px; - outline: none; - padding: 5px; - transition: background .2s ease-out; } - @media (max-width: 768px) { - .image-gallery-bullets .image-gallery-bullet { - margin: 0 3px; - padding: 3px; } } - @media (max-width: 480px) { - .image-gallery-bullets .image-gallery-bullet { - padding: 2.7px; } } - .image-gallery-bullets .image-gallery-bullet:focus, .image-gallery-bullets .image-gallery-bullet:hover { - background: #337ab7; - transform: scale(1.1); } - .image-gallery-bullets .image-gallery-bullet.active { - background: #fff; } - -.image-gallery-thumbnails-wrapper { - position: relative; } - .image-gallery-thumbnails-wrapper.thumbnails-wrapper-rtl { - direction: rtl; } - .image-gallery-thumbnails-wrapper.left, .image-gallery-thumbnails-wrapper.right { - display: inline-block; - vertical-align: top; - width: 100px; } - @media (max-width: 768px) { - .image-gallery-thumbnails-wrapper.left, .image-gallery-thumbnails-wrapper.right { - width: 81px; } } - .image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails, .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails { - height: 100%; - width: 100%; - left: 0; - padding: 0; - position: absolute; - top: 0; } - .image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail, .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail { - display: block; - margin-right: 0; - padding: 0; } - .image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail + .image-gallery-thumbnail, .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail + .image-gallery-thumbnail { - margin-left: 0; - margin-top: 2px; } - .image-gallery-thumbnails-wrapper.left, .image-gallery-thumbnails-wrapper.right { - margin: 0 5px; } - @media (max-width: 768px) { - .image-gallery-thumbnails-wrapper.left, .image-gallery-thumbnails-wrapper.right { - margin: 0 3px; } } - -.image-gallery-thumbnails { - overflow: hidden; - padding: 5px 0; } - @media (max-width: 768px) { - .image-gallery-thumbnails { - padding: 3px 0; } } - .image-gallery-thumbnails .image-gallery-thumbnails-container { - cursor: pointer; - text-align: center; - transition: transform .45s ease-out; - white-space: nowrap; } - -.image-gallery-thumbnail { - display: inline-block; - border: 4px solid transparent; - transition: border .3s ease-out; - width: 100px; - background: transparent; - padding: 0; } - @media (max-width: 768px) { - .image-gallery-thumbnail { - border: 3px solid transparent; - width: 81px; } } - .image-gallery-thumbnail + .image-gallery-thumbnail { - margin-left: 2px; } - .image-gallery-thumbnail .image-gallery-thumbnail-inner { - position: relative; } - .image-gallery-thumbnail .image-gallery-thumbnail-image { - vertical-align: middle; - width: 100%; - line-height: 0; } - .image-gallery-thumbnail.active, .image-gallery-thumbnail:hover, .image-gallery-thumbnail:focus { - outline: none; - border: 4px solid #337ab7; } - @media (max-width: 768px) { - .image-gallery-thumbnail.active, .image-gallery-thumbnail:hover, .image-gallery-thumbnail:focus { - border: 3px solid #337ab7; } } - -.image-gallery-thumbnail-label { - box-sizing: border-box; - color: white; - font-size: 1em; - left: 0; - line-height: 1em; - padding: 5%; - position: absolute; - top: 50%; - text-shadow: 1px 1px 0 black; - transform: translateY(-50%); - white-space: normal; - width: 100%; } - @media (max-width: 768px) { - .image-gallery-thumbnail-label { - font-size: .8em; - line-height: .8em; } } - -.image-gallery-index { - background: rgba(0, 0, 0, 0.4); - color: #fff; - line-height: 1; - padding: 10px 20px; - position: absolute; - right: 0; - top: 0; - z-index: 4; } - @media (max-width: 768px) { - .image-gallery-index { - font-size: .8em; - padding: 5px 10px; } } - -.image-gallery-left-nav, -.image-gallery-right-nav { - position: absolute; - cursor: pointer; - z-index: 100; - opacity: 0.5; - bottom: -40%; - top: auto; - padding: 0 !important; - color: #fff; - font-size: 5em; - outline: none; - background-color: transparent; - border: 0; - transform: translateY(-50%); } - .image-gallery-left-nav:before, .image-gallery-left-nav:hover:before, - .image-gallery-right-nav:before, - .image-gallery-right-nav:hover:before { - color: #3c4858; - text-shadow: none; } - .image-gallery-left-nav:before, - .image-gallery-right-nav:before { - font-family: "Material Icons"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-feature-settings: "liga"; - -webkit-font-smoothing: antialiased; } - -.image-gallery-left-nav { - left: -20px; } - .image-gallery-left-nav::before { - content: "chevron_left"; } - -.image-gallery-right-nav { - right: -20px; } - .image-gallery-right-nav::before { - content: "chevron_right"; } - -.image-gallery-thumbnail { - margin: 0px; - padding: 0px; - cursor: pointer; - position: relative; - line-height: 0px; - width: 125px; - border: none !important; } - .image-gallery-thumbnail + .image-gallery-thumbnail { - margin: 0 !important; } - .image-gallery-thumbnail img { - max-width: 100%; - cursor: pointer; - position: relative; - margin-top: 10px; - margin-bottom: 10px; } - -.image-gallery-thumbnail-label { - display: none !important; } - -.image-gallery-thumbnails { - padding: 0 !important; - overflow: hidden; - width: 100%; } - -.image-gallery-thumbnails-container { - position: relative; - margin: 0px; - padding: 0px; - list-style-type: none; - text-align: center; } - -/* Slider */ -.slick-slider { - position: relative; - display: block; - box-sizing: border-box; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -webkit-touch-callout: none; - -khtml-user-select: none; - -ms-touch-action: pan-y; - touch-action: pan-y; - -webkit-tap-highlight-color: transparent; } - @media (min-width: 768px) { - .slick-slider .slick-caption { - display: block !important; } } - .slick-slider .slick-caption { - padding-bottom: 45px; - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - color: #ffffff; - text-align: center; - z-index: 3; - display: none; } - .slick-slider .slick-slide > div:first-child { - position: relative; } - .slick-slider .slick-icons { - position: relative; - top: 5px; } - .slick-slider .slick-image { - width: 100% !important; - display: inline-flex !important; } - -.slick-list { - position: relative; - display: block; - overflow: hidden; - margin: 0; - padding: 0; } - -.slick-list:focus { - outline: none; } - -.slick-list.dragging { - cursor: pointer; - cursor: hand; } - -.slick-slider .slick-track, -.slick-slider .slick-list { - -webkit-transform: translate3d(0, 0, 0); - -moz-transform: translate3d(0, 0, 0); - -ms-transform: translate3d(0, 0, 0); - -o-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); } - -.slick-track { - position: relative; - top: 0; - left: 0; - display: block; - margin-left: auto; - margin-right: auto; } - -.slick-track:before, -.slick-track:after { - display: table; - content: ""; } - -.slick-track:after { - clear: both; } - -.slick-loading .slick-track { - visibility: hidden; } - -.slick-slide { - display: none; - float: left; - height: 100%; - min-height: 1px; } - -[dir="rtl"] .slick-slide { - float: right; } - -.slick-slide img { - display: block; } - -.slick-slide.slick-loading img { - display: none; } - -.slick-slide.dragging img { - pointer-events: none; } - -.slick-initialized .slick-slide { - display: block; } - -.slick-loading .slick-slide { - visibility: hidden; } - -.slick-vertical .slick-slide { - display: block; - height: auto; - border: 1px solid transparent; } - -.slick-arrow.slick-hidden { - display: none; } - -button.slick-arrow.slick-prev, -button.slick-arrow.slick-next { - font-size: 0; - line-height: 0; - position: absolute; - top: 50%; - display: block; - height: 100%; - padding: 0; - -ms-transform: translateY(-50%); - transform: translateY(-50%); - cursor: pointer; - border: none; - color: transparent; - outline: none; - background: transparent; - width: 15%; - z-index: 2; - opacity: 0.5; } - -.slick-prev { - left: 0; } - .slick-prev::before { - content: "\f053"; - font-weight: 600; - font-family: Font Awesome\ 5 Free; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: inline-block; - font-style: normal; - font-variant: normal; - text-rendering: auto; - line-height: 1; - color: white; - font-size: 30px; - width: 100%; } - -.slick-next { - right: 0; } - .slick-next::before { - content: "\f054"; - font-weight: 600; - font-family: Font Awesome\ 5 Free; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: inline-block; - font-style: normal; - font-variant: normal; - text-rendering: auto; - line-height: 1; - color: #fff; - font-size: 30px; - width: 100%; } - -.slick-list { - z-index: 1; } - -.slick-dots { - margin-top: 0; - margin-bottom: 1rem; - position: absolute; - bottom: 5px; - width: 100%; - padding: 0; - list-style: none; - text-align: center; - z-index: 3; } - -.slick-dots li, -.slick-dots li button { - width: 20px; - height: 20px; - cursor: pointer; } - -.slick-dots li { - position: relative; - display: inline-block; - margin: 0 5px; - padding: 0; } - -.slick-dots li button { - font-size: 0; - line-height: 0; - display: block; - padding: 5px; - color: transparent; - border: 0; - outline: none; - background: transparent; } - .slick-dots li button::before { - position: absolute; - top: 0; - left: 0; - width: 10px; - height: 10px; - content: "\2022"; - text-align: center; - opacity: 1; - background-color: #fff; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2); - border-radius: 2px; - transition: all 300ms linear; } - -.slick-dots li.slick-active button:before { - width: 15px; - height: 15px; - box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2); - top: -3px; } - -.react-tagsinput { - display: inline-block; - padding: 4px 6px; - max-width: 100%; - line-height: 22px; } - -.react-tagsinput-tag { - cursor: pointer; - margin: 5px 3px 5px 0; - position: relative; - padding: 3px 8px; - border-radius: 12px; - color: #ffffff; - font-weight: 500; - font-size: 0.75em; - text-transform: uppercase; - display: inline-block; - line-height: 1.5em; - padding-left: 0.8em; } - -.react-tagsinput-remove { - cursor: pointer; - font-weight: bold; } - -.react-tagsinput-tag a::before { - font-family: Font Awesome\ 5 Free; - content: "\f00d"; - padding: 0px 2px; - font-weight: 900; } - -.react-tagsinput-tag a { - cursor: pointer; - position: absolute; - top: 3px; - right: 0px; - opacity: 0; - background-color: transparent; - color: #ffffff; } - -.react-tagsinput-input { - background: transparent; - border: 0; - color: #777; - font-family: sans-serif; - font-size: 13px; - font-weight: 400; - margin-bottom: 6px; - margin-top: 1px; - outline: none; - padding: 5px; - width: 80px; } - -.react-tagsinput .react-tagsinput-tag { - -webkit-transition: all 300ms ease 0s; - -moz-transition: all 300ms ease 0s; - -o-transition: all 300ms ease 0s; - -ms-transition: all 300ms ease 0s; - transition: all 300ms ease 0s; - background-color: #999; } - .react-tagsinput .react-tagsinput-tag:hover { - padding-right: 22px; } - .react-tagsinput .react-tagsinput-tag:hover a { - opacity: 1; - padding-right: 4px; - background-color: transparent; - color: #ffffff; } - .react-tagsinput .react-tagsinput-tag.primary { - background-color: #9c27b0; } - .react-tagsinput .react-tagsinput-tag.info { - background-color: #00bcd4; } - .react-tagsinput .react-tagsinput-tag.success { - background-color: #4caf50; } - .react-tagsinput .react-tagsinput-tag.warning { - background-color: #ff9800; } - .react-tagsinput .react-tagsinput-tag.danger { - background-color: #f44336; } - .react-tagsinput .react-tagsinput-tag.rose { - background-color: #e91e63; } - .react-tagsinput .react-tagsinput-tag.default { - background-color: #999; } diff --git a/styles/css/nextjs-material-kit-pro.css.map b/styles/css/nextjs-material-kit-pro.css.map deleted file mode 100644 index f2419d6..0000000 --- a/styles/css/nextjs-material-kit-pro.css.map +++ /dev/null @@ -1,28 +0,0 @@ -{ - "version": 3, - "file": "nextjs-material-kit-pro.css", - "sources": [ - "../scss/nextjs-material-kit-pro.scss", - "../scss/core/_variables.scss", - "../scss/core/variables/_colors.scss", - "../scss/core/variables/_shadow.scss", - "../scss/core/variables/_bootstrap-material-design-base.scss", - "../scss/core/variables/_brand.scss", - "../scss/core/variables/_functions.scss", - "../scss/core/variables/_variables.scss", - "../scss/core/variables/_bootstrap-material-design.scss", - "../scss/core/_mixins.scss", - "../scss/core/mixins/_colored-shadows.scss", - "../scss/core/_fileupload.scss", - "../scss/core/_misc.scss", - "../scss/core/_page-transition.scss", - "../scss/plugins/_plugin-nouislider.scss", - "../scss/plugins/_plugin-react-datetime.scss", - "../scss/plugins/_plugin-react-image-gallery.scss", - "../../node_modules/react-image-gallery/styles/scss/image-gallery.scss", - "../scss/plugins/_plugin-react-slick.scss", - "../scss/plugins/_plugin-react-tagsinput.scss" - ], - "names": [], - "mappings": "AAAA;;;;;;;;;;;;;;;EAeE;AWfF,AAAA,SAAS,CAAC;EACR,QAAQ,EAAE,QAAQ;EAClB,QAAQ,EAAE,MAAM;EAChB,cAAc,EAAE,MAAM,GACvB;;AACD,AAAA,SAAS,GAAG,KAAK,CAAC;EAChB,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,CAAC;EACN,KAAK,EAAE,CAAC;EACR,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,CAAC;EACT,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,OAAO;EACf,MAAM,EAAE,gBAAgB;EACxB,OAAO,EAAE,CAAC;EAEV,SAAS,EAAE,GAAG,GACf;;AACD,AAAA,UAAU,CAAC;EACT,UAAU,EAAE,MAAM;EAClB,OAAO,EAAE,YAAY;EACrB,aAAa,EAAE,GAAG,GAKnB;EARD,AAKE,UALQ,CAKR,KAAK,CAAA,AAAA,IAAC,CAAK,MAAM,AAAX,EAAa;IACjB,OAAO,EAAE,IAAI,GACd;;AAEH,AAAA,UAAU,CAAC,aAAa,CAAC;EACvB,OAAO,EAAE,YAAY;EACrB,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,GAAG;EACnB,aAAa,EAAE,CAAC;EAChB,cAAc,EAAE,MAAM;EACtB,MAAM,EAAE,IAAI,GACb;;AACD,AAAA,UAAU,CAAC,UAAU,CAAC;EACpB,OAAO,EAAE,YAAY;EACrB,aAAa,EAAE,IAAI;EACnB,QAAQ,EAAE,MAAM;EAChB,UAAU,EAAE,MAAM;EAClB,cAAc,EAAE,MAAM;EACtB,SAAS,EAAE,KAAK;EAChB,UAAU,EAAE,CAAC,CAAC,GAAG,CAAC,IAAI,CAAE,IAAG,CAAC,mBAAmB,EAC7C,CAAC,CAAC,GAAG,CAAC,IAAI,CAAE,IAAG,CAAC,kBAAkB,GAMrC;EAdD,AAUE,UAVQ,CAAC,UAAU,AAUlB,WAAW,CAAC;IACX,aAAa,EAAE,GAAG;IAClB,SAAS,EAAE,KAAK,GACjB;;AAEH,AAAA,UAAU,CAAC,UAAU,GAAG,GAAG,CAAC;EAC1B,UAAU,EAAE,IAAI;EAChB,KAAK,EAAE,IAAI,GACZ;;AACD,AAAA,UAAU,CAAC,IAAI,CAAC;EACd,cAAc,EAAE,MAAM,GACvB;;AACD,AAAA,iBAAiB,CAAC,cAAc;AAChC,cAAc,CAAC,iBAAiB,CAAC;EAC/B,OAAO,EAAE,IAAI,GACd;;AACD,AAAA,iBAAiB,CAAC,mBAAmB,CAAC;EACpC,OAAO,EAAE,MAAM,GAChB;;AACD,AAAA,mBAAmB,CAAC;EAClB,OAAO,EAAE,YAAY;EACrB,QAAQ,EAAE,MAAM;EAChB,cAAc,EAAE,MAAM,GACvB;;AACD,AAAA,aAAa,CAAC,mBAAmB,CAAC;EAChC,cAAc,EAAE,MAAM,GACvB;;AACD,AAAA,UAAU,AAAA,YAAY,CAAC;EACrB,OAAO,EAAE,KAAK,GACf;;AACD,AAAA,UAAU,AAAA,YAAY,GAAG,CAAC,CAAC;EACzB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,CAAC,GACX;;AACD,AAAA,UAAU,AAAA,YAAY,GAAG,SAAS,CAAC;EACjC,OAAO,EAAE,CAAC,GACX;;AACD,AAAA,cAAc,AAAA,YAAY,CAAC,SAAS;AACpC,cAAc,CAAC,YAAY,CAAC,SAAS,CAAC;EACpC,aAAa,EAAE,WAAW,GAC3B;;AACD,AAAA,cAAc,AAAA,YAAY,CAAC,SAAS,AAAA,OAAO;AAC3C,cAAc,CAAC,YAAY,CAAC,SAAS,AAAA,OAAO;AAC5C,cAAc,AAAA,YAAY,CAAC,SAAS,AAAA,OAAO;AAC3C,cAAc,CAAC,YAAY,CAAC,SAAS,AAAA,OAAO,CAAC;EAC3C,aAAa,EAAE,WAAW,GAC3B;;AACD,AAAA,cAAc,AAAA,YAAY,CAAC,SAAS,AAAA,OAAO;AAC3C,cAAc,CAAC,YAAY,CAAC,SAAS,AAAA,OAAO,CAAC;EAC3C,aAAa,EAAE,WAAW,GAC3B;;AACD,AAAA,WAAW,AAAA,YAAY,CAAC,UAAU,CAAC,kBAAkB,CAAC;EACpD,KAAK,ETmIM,OAAO,GSlInB;;AACD,AAAA,WAAW,AAAA,YAAY,CAAC,UAAU,CAAC,UAAU,CAAC;EAC5C,YAAY,ETgID,OAAO,GS/HnB;;AACD,AAAA,WAAW,AAAA,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC;EAClD,KAAK,ETnGG,OAAO,GSoGhB;;AACD,AAAA,WAAW,AAAA,UAAU,CAAC,UAAU,CAAC,UAAU,CAAC;EAC1C,YAAY,ETtGJ,OAAO,GSuGhB;;AACD,AAAA,WAAW,AAAA,YAAY,CAAC,UAAU,CAAC,kBAAkB,CAAC;EACpD,KAAK,ETuCK,OAAO,GStClB;;AACD,AAAA,WAAW,AAAA,YAAY,CAAC,UAAU,CAAC,UAAU,CAAC;EAC5C,YAAY,EToCF,OAAO,GSnClB;;AACD,AAAA,kBAAkB,AAAA,IAAK,CAAA,YAAY,EAAE;EACnC,WAAW,EAAE,CAAC,GACf;;AACD,AAAA,UAAU,CAAC;EACT,MAAM,EAAE,MAAM;EACd,aAAa,EAAE,CAAC;EAChB,OAAO,EAAE,CAAC,GACX;;AC1HD,AAAA,IAAI,CAAC,CAAC,CAAC;EACL,sBAAsB,EAAE,WAAW;EACnC,uBAAuB,EAAE,SAAS,GACnC;;AACD,AAAA,CAAC,CAAC;EACA,cAAc,EAAE,iBAAiB,GAClC;;AACD,AAAA,IAAI,CAAC;EACH,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,MAAM,GACnB;;AAED,AAAA,IAAI;AACJ,EAAE;AACF,EAAE;AACF,EAAE;AACF,EAAE;AACF,EAAE;AACF,EAAE,CAAC;EACD,WAAW,EAAE,0CAA0C;EACvD,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,KAAK,GACnB;;AACD,AAAA,EAAE;AACF,EAAE;AACF,EAAE;AACF,EAAE;AACF,EAAE;AACF,EAAE,CAAC;EACD,KAAK,EAAE,OAAO,GACf;;AACD,AAAA,EAAE;AACF,EAAE;AACF,EAAE,CAAC;EACD,UAAU,EAAE,IAAI;EAChB,aAAa,EAAE,IAAI,GACpB;;AACD,AAAA,EAAE;AACF,EAAE;AACF,EAAE,CAAC;EACD,UAAU,EAAE,IAAI;EAChB,aAAa,EAAE,IAAI,GACpB;;AACD,AAAA,EAAE,CAAC;EACD,SAAS,EAAE,SAAS;EACpB,WAAW,EAAE,MAAM,GACpB;;AACD,AAAA,EAAE,CAAC;EACD,SAAS,EAAE,OAAO;EAClB,WAAW,EAAE,KAAK,GACnB;;AACD,AAAA,EAAE,CAAC;EACD,SAAS,EAAE,SAAS;EACpB,WAAW,EAAE,KAAK,GACnB;;AACD,AAAA,EAAE,CAAC;EACD,SAAS,EAAE,QAAQ;EACnB,WAAW,EAAE,KAAK,GACnB;;AACD,AAAA,EAAE,CAAC;EACD,SAAS,EAAE,SAAS;EACpB,WAAW,EAAE,MAAM,GACpB;;AACD,AAAA,EAAE,CAAC;EACD,SAAS,EAAE,OAAO;EAClB,cAAc,EAAE,SAAS;EACzB,WAAW,EAAE,GAAG,GACjB;;AACD,AAAA,CAAC,CAAC;EACA,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,QAAQ,GACjB;;AACD,AAAA,CAAC;AACD,MAAM,CAAC;EACL,WAAW,EAAE,GAAG,GACjB;;AACD,AAAA,IAAI,CAAC;EACH,WAAW,EAAE,UAAU;EACvB,WAAW,EAAE,IAAI;EACjB,wBAAwB,EAAE,IAAI;EAC9B,oBAAoB,EAAE,IAAI;EAC1B,kBAAkB,EAAE,SAAS;EAC7B,2BAA2B,EAAE,WAAW,GACzC;;AACD,AAAA,IAAI,CAAC;EACH,gBAAgB,EAAE,IAAI;EACtB,KAAK,EV+NO,OAAO;EU9NnB,MAAM,EAAE,CAAC;EACT,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,IAAI,GACjB;;AAED,AAAA,MAAM,CAAC;EACL,aAAa,EAAE,CAAC,GACjB;;AAGD,AAAA,CAAC,CAAC;EACA,2BAA2B,EAAE,sBAAsB;EACnD,2BAA2B,EAAE,WAAW;EACxC,UAAU,EAAE,UAAU,GAIvB;EAPD,AAIE,CAJD,AAIE,MAAM,CAAC;IACN,OAAO,EAAE,CAAC,GACX;;AAGH,AAAA,CAAC,CAAC;EACA,KAAK,EVtEM,OAAO;EUuElB,eAAe,EAAE,IAAI;EACrB,gBAAgB,EAAE,WAAW,GAM9B;EATD,AAIE,CAJD,AAIE,MAAM,EAJT,CAAC,AAKE,MAAM,CAAC;IACN,KAAK,EAAE,OAAuB;IAC9B,eAAe,EAAE,IAAI,GACtB;;AAGH,AAAA,KAAK,CAAC;EACJ,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,OAAO;EACpB,KAAK,EJzGuB,OAAO;EI0GnC,WAAW,EAAE,GAAG,GACjB;;AACD,AAAA,KAAK,CAAC;EACJ,SAAS,EAAE,GAAG;EACd,KAAK,EAAE,IAAI;EACX,WAAW,EAAE,GAAG,GACjB;;AACD,AAAA,GAAG,CAAC;EACF,cAAc,EAAE,MAAM;EACtB,YAAY,EAAE,IAAI,GACnB;;AACD,AAAA,IAAI,CAAC;EACH,aAAa,EAAE,QAAQ,GACxB;;AAED,AAAA,EAAE,CAAC;EACD,UAAU,EAAE,IAAI;EAChB,aAAa,EAAE,IAAI;EACnB,MAAM,EAAE,CAAC;EACT,UAAU,EAAE,GAAG,CAAC,KAAK,CAAC,kBAAkB,GACzC;;AACD,AAAA,EAAE,CAAC;EACD,UAAU,EAAE,WAAW;EACvB,MAAM,EAAE,CAAC;EACT,QAAQ,EAAE,OAAO,GAClB;;AAED,AAAA,EAAE;AACF,EAAE;AACF,EAAE,CAAC;EACD,UAAU,EAAE,CAAC;EACb,aAAa,EAAE,IAAI,GACpB;;AAED,AAAA,OAAO,CAAC,EAAE,CAAC;EACT,aAAa,EAAE,IAAI,GACpB;;AAED,AAAA,KAAK,CAAC;EACJ,QAAQ,EAAE,MAAM,GACjB;;AAED,AAAA,gBAAgB,CAAC;EACf,QAAQ,EAAE,KAAK;EACf,KAAK,EAAE,KAAK;EACZ,GAAG,EAAE,GAAG;EACR,MAAM,EAAE,IAAI;EACZ,iBAAiB,EAAE,gBAAgB;EACnC,cAAc,EAAE,gBAAgB;EAChC,aAAa,EAAE,gBAAgB;EAC/B,YAAY,EAAE,gBAAgB;EAC9B,SAAS,EAAE,gBAAgB;EAC3B,OAAO,EAAE,CAAC,GACX;;AACD,AAAA,gBAAgB,CAAC,EAAE,CAAC;EAClB,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,CAAC,GACX;;AACD,AAAA,gBAAgB,CAAC,EAAE,CAAC;EAClB,UAAU,EAAE,KAAK,GAClB;;AACD,AAAA,gBAAgB,CAAC,CAAC,CAAC;EACjB,OAAO,EAAE,YAAY;EACrB,2BAA2B,EAAE,MAAM;EACnC,mBAAmB,EAAE,MAAM;EAC3B,KAAK,EAAE,IAAI,GACZ;;AACD,AAAA,gBAAgB,CAAC,CAAC,AAAA,MAAM,CAAC,IAAI;AAC7B,gBAAgB,CAAC,CAAC,AAAA,YAAY,CAAC,OAAO,CAAC;EACrC,iBAAiB,EAAE,QAAQ;EAC3B,cAAc,EAAE,QAAQ;EACxB,aAAa,EAAE,QAAQ;EACvB,YAAY,EAAE,QAAQ;EACtB,SAAS,EAAE,QAAQ,GACpB;;AACD,AAAA,gBAAgB,CAAC,OAAO,CAAC;EACvB,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,GAAG;EACR,KAAK,EAAE,iBAAiB;EACxB,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,GAAG;EAClB,gBAAgB,EAAE,OAAO;EACzB,kBAAkB,EAAE,6CAA6C;EACjE,eAAe,EAAE,0CAA0C;EAC3D,UAAU,EAAE,qCAAqC;EACjD,wBAAwB,EAAE,OAAO;EACjC,qBAAqB,EAAE,OAAO;EAC9B,oBAAoB,EAAE,OAAO;EAC7B,mBAAmB,EAAE,OAAO;EAC5B,gBAAgB,EAAE,OAAO,GAC1B;;AACD,AAAA,gBAAgB,CAAC,CAAC,CAAC,IAAI,CAAC;EACtB,KAAK,EAAE,KAAK;EACZ,OAAO,EAAE,YAAY;EACrB,iBAAiB,EAAE,UAAU;EAC7B,cAAc,EAAE,UAAU;EAC1B,aAAa,EAAE,UAAU;EACzB,YAAY,EAAE,UAAU;EACxB,SAAS,EAAE,UAAU,GACtB;;AACD,AAAA,gBAAgB,CAAC,SAAS,CAAC;EACzB,QAAQ,EAAE,QAAQ;EAClB,YAAY,EAAE,IAAI;EAClB,OAAO,EAAE,QAAQ;EACjB,KAAK,EAAE,KAAK;EACZ,UAAU,EAAE,mBAAmB;EAC/B,SAAS,EAAE,IAAI;EACf,aAAa,EAAE,IAAI;EACnB,cAAc,EAAE,SAAS;EACzB,WAAW,EAAE,GAAG;EAChB,OAAO,EAAE,CAAC;EACV,wBAAwB,EAAE,QAAQ;EAClC,qBAAqB,EAAE,QAAQ;EAC/B,oBAAoB,EAAE,QAAQ;EAC9B,mBAAmB,EAAE,QAAQ;EAC7B,gBAAgB,EAAE,QAAQ,GAC3B;;AACD,AAAA,gBAAgB,CAAC,CAAC,AAAA,MAAM,CAAC;EACvB,OAAO,EAAE,EAAE;EACX,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI,GACZ;;AAED,AAAA,gBAAgB,CAAC,CAAC,AAAA,MAAM,CAAC,SAAS,CAAC;EACjC,OAAO,EAAE,CAAC;EACV,IAAI,EAAE,KAAK;EACX,kBAAkB,EAAE,oCAAoC;EACxD,eAAe,EAAE,iCAAiC;EAClD,UAAU,EAAE,4BAA4B,GACzC;;AC3PD,AAAA,qBAAqB,CAAA;EACnB,QAAQ,EAAE,MAAM,GAmCjB;EApCD,AAEE,qBAFmB,CAEnB,gBAAgB,CAAC;IACf,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE,IAAI;IACb,KAAK,EAAE,IAAI;IACX,OAAO,EAAE,IAAI;IACb,MAAM,EAAE,IAAI;IACZ,eAAe,EAAE,MAAM;IACvB,WAAW,EAAE,MAAM,GACpB;EAVH,AAaI,qBAbiB,CAYnB,gBAAgB,GAAG,GAAG,AACnB,MAAM,CAAA;IACL,OAAO,EAAE,EAAE;IACX,gBAAgB,EAAE,qBAAqB;IACvC,eAAe,EAAE,KAAK;IACtB,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE,IAAI;IACb,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IACZ,GAAG,EAAE,CAAC;IACN,IAAI,EAAE,CAAC,GACR;EAvBL,AAwBI,qBAxBiB,CAYnB,gBAAgB,GAAG,GAAG,AAYnB,OAAO,CAAC;IACP,GAAG,EAAE,CAAC;IACN,IAAI,EAAE,CAAC;IACP,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,EAAE;IACX,OAAO,EAAE,KAAK;IACd,OAAO,EAAE,IAAI;IACb,QAAQ,EAAE,QAAQ;IAClB,UAAU,EAAE,kBAAkB,GAC/B;;AClCL,sCAAsC;AACtC;;;GAGG;AACH;;;;EAIE;AACF,AAAA,YAAY;AACZ,YAAY,CAAC,CAAC,CAAC;EACb,qBAAqB,EAAE,IAAI;EAC3B,2BAA2B,EAAE,gBAAgB;EAC7C,mBAAmB,EAAE,IAAI;EACzB,gBAAgB,EAAE,IAAI;EACtB,YAAY,EAAE,IAAI;EAClB,eAAe,EAAE,IAAI;EACrB,gBAAgB,EAAE,IAAI;EACtB,WAAW,EAAE,IAAI;EACjB,eAAe,EAAE,UAAU;EAC3B,UAAU,EAAE,UAAU,GACvB;;AACD,AAAA,YAAY,CAAC;EACX,QAAQ,EAAE,QAAQ;EAClB,SAAS,EAAE,GAAG,GACf;;AACD,AAAA,UAAU;AACV,cAAc,CAAC;EACb,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,CAAC,GACX;;AACD;GACG;AACH,AAAA,cAAc,CAAC;EACb,QAAQ,EAAE,MAAM;EAChB,OAAO,EAAE,CAAC,GACX;;AACD,AAAA,aAAa;AACb,YAAY,CAAC;EACX,WAAW,EAAE,SAAS;EACtB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,CAAC;EACV,GAAG,EAAE,CAAC;EACN,IAAI,EAAE,CAAC;EACP,oBAAoB,EAAE,GAAG;EACzB,wBAAwB,EAAE,GAAG;EAC7B,uBAAuB,EAAE,WAAW;EACpC,gBAAgB,EAAE,GAAG;EACrB,eAAe,EAAE,IAAI,GACtB;;AACD,AAAA,aAAa,CAAC;EACZ,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI,GACZ;;AACD,AAAA,YAAY,CAAC;EACX,MAAM,EAAE,GAAG;EACX,KAAK,EAAE,GAAG,GACX;;AACD;GACG;AACH,AAAA,IAAI,AAAA,IAAK,EAAA,AAAA,GAAC,CAAI,KAAK,AAAT,GAAY,gBAAgB,CAAC,YAAY,CAAC;EAClD,IAAI,EAAE,IAAI;EACV,KAAK,EAAE,CAAC,GACT;;AACD;;GAEG;AACH,AAAA,cAAc,CAAC,YAAY,CAAC;EAC1B,KAAK,EAAE,CAAC,GACT;;AACD,AAAA,gBAAgB,CAAC,YAAY,CAAC;EAC5B,MAAM,EAAE,CAAC,GACV;;AACD,AAAA,YAAY,CAAC;EACX,2BAA2B,EAAE,MAAM;EACnC,mBAAmB,EAAE,MAAM;EAC3B,QAAQ,EAAE,QAAQ,GACnB;;AACD,AAAA,gBAAgB,CAAC;EACf,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI,GACZ;;AACD,AAAA,eAAe,CAAC,aAAa;AAC7B,eAAe,CAAC,YAAY,CAAC;EAC3B,kBAAkB,EAAE,cAAc;EAClC,UAAU,EAAE,cAAc,GAC3B;;AACD,AAAA,gBAAgB,CAAC,CAAC,CAAC;EACjB,MAAM,EAAE,kBAAkB,GAC3B;;AACD;GACG;AACH,AAAA,gBAAgB,CAAC;EACf,MAAM,EAAE,GAAG;EACX,MAAM,EAAE,MAAM,GACf;;AACD,AAAA,gBAAgB,CAAC,YAAY,CAAC;EAC5B,UAAU,EAAE,UAAU;EACtB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,IAAI,EAAE,KAAK;EACX,GAAG,EAAE,IAAI;EACT,MAAM,EAAE,OAAO;EACf,aAAa,EAAE,IAAI;EACnB,kBAAkB,EAAE,gBAAgB;EACpC,UAAU,EAAE,gBAAgB;EAC5B,MAAM,EAAE,iBAAiB;EACzB,UAAU,EAAE,IAAI;EAChB,UAAU,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,mBAAe,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAE,IAAG,CAAC,mBAAe,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,kBAAc,GACpG;;AACD,AAAA,cAAc,CAAC;EACb,KAAK,EAAE,IAAI,GACZ;;AACD,AAAA,cAAc,CAAC,YAAY,CAAC;EAC1B,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,IAAI,EAAE,GAAG;EACT,GAAG,EAAE,IAAI,GACV;;AACD,AAAA,IAAI,AAAA,IAAK,EAAA,AAAA,GAAC,CAAI,KAAK,AAAT,GAAY,gBAAgB,CAAC,YAAY,CAAC;EAClD,KAAK,EAAE,IAAI;EACX,IAAI,EAAE,IAAI,GACX;;AACD;;GAEG;AACH,AAAA,YAAY,CAAC;EACX,gBAAgB,EAAE,OAAO;EACzB,aAAa,EAAE,GAAG,GACnB;;AACD,AAAA,cAAc,CAAC;EACb,aAAa,EAAE,GAAG,GACnB;;AAID;GACG;AACH,AAAA,eAAe,CAAC;EACd,MAAM,EAAE,SAAS,GAClB;;AACD,AAAA,cAAc,CAAC,eAAe,CAAC;EAC7B,MAAM,EAAE,SAAS,GAClB;;AACD,AAAA,YAAY,CAAC;EACX,aAAa,EAAE,GAAG;EAClB,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,OAAO;EACf,UAAU,EAAE,gEAAgE,GAC7E;;AACD,AAAA,YAAY,CAAC;EACX,UAAU,EAAE,6DAA6D,GAC1E;;AACD,AAAA,YAAY,AAAA,YAAY,CAAA;EACtB,SAAS,EAAE,oBAAkB,GAC9B;;AACD;GACG;CACH,AAAA,AAAA,QAAC,AAAA,EAAU,aAAa,CAAC;EACvB,UAAU,EAAE,OAAO,GACpB;;CACD,AAAA,AAAA,QAAC,AAAA,CAAS,YAAY;CACtB,AAAA,QAAC,AAAA,CAAS,YAAY;CACtB,AAAA,QAAC,AAAA,EAAU,YAAY,CAAC;EACtB,MAAM,EAAE,WAAW,GACpB;;AACD;;GAEG;AACH,AAAA,UAAU;AACV,UAAU,CAAC,CAAC,CAAC;EACX,eAAe,EAAE,UAAU;EAC3B,UAAU,EAAE,UAAU,GACvB;;AACD,AAAA,UAAU,CAAC;EACT,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,IAAI,GACZ;;AACD;;GAEG;AACH,AAAA,WAAW,CAAC;EACV,QAAQ,EAAE,QAAQ;EAClB,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM,GACnB;;AACD,AAAA,eAAe,CAAC;EACd,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,IAAI,GAChB;;AACD;;GAEG;AACH,AAAA,YAAY,CAAC;EACX,QAAQ,EAAE,QAAQ;EAClB,UAAU,EAAE,IAAI,GACjB;;AACD,AAAA,gBAAgB,CAAC;EACf,UAAU,EAAE,IAAI,GACjB;;AACD,AAAA,kBAAkB,CAAC;EACjB,UAAU,EAAE,IAAI,GACjB;;AACD;;GAEG;AACH,AAAA,qBAAqB,CAAC;EACpB,OAAO,EAAE,MAAM;EACf,MAAM,EAAE,IAAI;EACZ,GAAG,EAAE,IAAI;EACT,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,IAAI,GACZ;;AACD,AAAA,sBAAsB,CAAC;EACrB,iBAAiB,EAAE,oBAAoB;EACvC,SAAS,EAAE,oBAAoB,GAChC;;AACD,AAAA,SAAS,CAAC,sBAAsB,CAAC;EAC/B,iBAAiB,EAAE,mBAAmB;EACtC,SAAS,EAAE,mBAAmB,GAC/B;;AACD,AAAA,uBAAuB,AAAA,YAAY,CAAC;EAClC,WAAW,EAAE,IAAI;EACjB,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,GAAG,GACZ;;AACD,AAAA,uBAAuB,AAAA,gBAAgB,CAAC;EACtC,MAAM,EAAE,IAAI,GACb;;AACD,AAAA,uBAAuB,AAAA,kBAAkB,CAAC;EACxC,MAAM,EAAE,IAAI,GACb;;AACD;;GAEG;AACH,AAAA,mBAAmB,CAAC;EAClB,OAAO,EAAE,MAAM;EACf,MAAM,EAAE,IAAI;EACZ,GAAG,EAAE,CAAC;EACN,IAAI,EAAE,IAAI,GACX;;AACD,AAAA,oBAAoB,CAAC;EACnB,iBAAiB,EAAE,kBAAkB;EACrC,SAAS,EAAE,kBAAkB;EAC7B,YAAY,EAAE,IAAI,GACnB;;AACD,AAAA,SAAS,CAAC,oBAAoB,CAAC;EAC7B,iBAAiB,EAAE,iBAAiB;EACpC,SAAS,EAAE,iBAAiB,GAC7B;;AACD,AAAA,qBAAqB,AAAA,YAAY,CAAC;EAChC,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,GAAG;EACX,UAAU,EAAE,IAAI,GACjB;;AACD,AAAA,qBAAqB,AAAA,gBAAgB,CAAC;EACpC,KAAK,EAAE,IAAI,GACZ;;AACD,AAAA,qBAAqB,AAAA,kBAAkB,CAAC;EACtC,KAAK,EAAE,IAAI,GACZ;;AACD,AAAA,aAAa,CAAC;EACZ,OAAO,EAAE,KAAK;EACd,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,iBAAiB;EACzB,aAAa,EAAE,GAAG;EAClB,UAAU,EAAE,IAAI;EAChB,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,GAAG;EACZ,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,MAAM,GACpB;;AACD,AAAA,gBAAgB,CAAC,aAAa,CAAC;EAC7B,iBAAiB,EAAE,kBAAkB;EACrC,SAAS,EAAE,kBAAkB;EAC7B,IAAI,EAAE,GAAG;EACT,MAAM,EAAE,IAAI,GACb;;AACD,AAAA,cAAc,CAAC,aAAa,CAAC;EAC3B,iBAAiB,EAAE,kBAAkB;EACrC,SAAS,EAAE,kBAAkB;EAC7B,GAAG,EAAE,GAAG;EACR,KAAK,EAAE,IAAI,GACZ;;AAED,AACE,YADU,CACR,YAAY,CAAC;EACb,MAAM,EAAE,cAAc,GACvB;;AAHH,AAMI,YANQ,AAKT,eAAe,CACZ,aAAa,EANnB,YAAY,AAKT,eAAe,AAEb,aAAa,CAAC;EACb,gBAAgB,EZnQT,OAAO,GYoQf;;AATL,AAWI,YAXQ,AAKT,eAAe,CAMZ,YAAY,CAAC;EACb,YAAY,EZvQL,OAAO,GYwQf;;AAbL,AAiBI,YAjBQ,AAgBT,YAAY,CACT,aAAa,EAjBnB,YAAY,AAgBT,YAAY,AAEV,aAAa,CAAC;EACb,gBAAgB,EZ9LX,OAAO,GY+Lb;;AApBL,AAsBI,YAtBQ,AAgBT,YAAY,CAMT,YAAY,CAAC;EACb,YAAY,EZlMP,OAAO,GYmMb;;AAxBL,AA2BI,YA3BQ,AA0BT,eAAe,CACZ,aAAa,EA3BnB,YAAY,AA0BT,eAAe,AAEb,aAAa,CAAC;EACb,gBAAgB,EZxKV,OAAO,GYyKd;;AA9BL,AAgCI,YAhCQ,AA0BT,eAAe,CAMZ,YAAY,CAAC;EACb,YAAY,EZ5KN,OAAO,GY6Kd;;AAlCL,AAqCI,YArCQ,AAoCT,eAAe,CACZ,aAAa,EArCnB,YAAY,AAoCT,eAAe,AAEb,aAAa,CAAC;EACb,gBAAgB,EZlGT,OAAO,GYmGf;;AAxCL,AA0CI,YA1CQ,AAoCT,eAAe,CAMZ,YAAY,CAAC;EACb,YAAY,EZtGL,OAAO,GYuGf;;AA5CL,AA+CI,YA/CQ,AA8CT,cAAc,CACX,aAAa,EA/CnB,YAAY,AA8CT,cAAc,AAEZ,aAAa,CAAC;EACb,gBAAgB,EZ5UZ,OAAO,GY6UZ;;AAlDL,AAoDI,YApDQ,AA8CT,cAAc,CAMX,YAAY,CAAC;EACb,YAAY,EZhVR,OAAO,GYiVZ;;AAtDL,AAyDI,YAzDQ,AAwDT,YAAY,CACT,aAAa,EAzDnB,YAAY,AAwDT,YAAY,AAEV,aAAa,CAAC;EACb,gBAAgB,EZtUX,OAAO,GYuUb;;AA5DL,AA8DI,YA9DQ,AAwDT,YAAY,CAMT,YAAY,CAAC;EACb,YAAY,EZ1UP,OAAO,GY2Ub;;AChWL;;EAEE;AACF,AAAA,IAAI,CAAC;EACH,QAAQ,EAAE,QAAQ,GAmDnB;EApDD,AAEE,IAFE,CAEF,UAAU,CAAC;IACT,kBAAkB,EAAE,gBAAgB;IACpC,eAAe,EAAE,gBAAgB;IACjC,aAAa,EAAE,gBAAgB;IAC/B,cAAc,EAAE,gBAAgB;IAChC,UAAU,EAAE,gBAAgB;IAC5B,UAAU,EAAE,KAAK;IACjB,UAAU,EAAE,MAAM;IAClB,OAAO,EAAE,KAAK;IACd,OAAO,EAAE,CAAC,GACX;EAZH,AAcI,IAdA,AAaD,QAAQ,CACP,UAAU,CAAC;IACT,OAAO,EAAE,CAAC;IACV,UAAU,EAAE,OAAO;IACnB,UAAU,EAAE,CAAC,GACd;EAlBL,AAoBE,IApBE,CAoBF,KAAK,AAAA,aAAa,CAAC;IACjB,MAAM,EAAE,CAAC;IACT,gBAAgB,EAAE,iCAAiC,EACjD,iCAAiC;IACnC,eAAe,EAAE,eAAe;IAChC,iBAAiB,EAAE,SAAS;IAC5B,mBAAmB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,gBAAgB;IAC3D,gBAAgB,EAAE,gBAAgB;IAClC,UAAU,EAAE,sBAAsB;IAClC,KAAK,EAAE,IAAI;IACX,UAAU,EAAE,IAAI;IAChB,aAAa,EAAE,CAAC;IAChB,WAAW,EAAE,GAAG;IAChB,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,KAAK;IACd,SAAS,EAAE,IAAI;IACf,WAAW,EAAE,0CAA0C;IACvD,WAAW,EAAE,GAAG;IAChB,WAAW,EAAE,OAAO;IACpB,OAAO,EAAE,KAAK;IACd,KAAK,EAAE,IAAI;IACX,KAAK,EAAE,IAAI,GACZ;EA3CH,AA4CE,IA5CE,CA4CF,KAAK,AAAA,aAAa,AAAA,MAAM,CAAC;IACvB,OAAO,EAAE,IAAI;IACb,gBAAgB,EAAE,iCAAiC,EACjD,iCAAiC;IACnC,eAAe,EAAE,kBAAkB;IACnC,UAAU,EAAE,IAAI;IAChB,mBAAmB,EAAE,IAAI,GAC1B;;AAEH,AAAA,UAAU,CAAC;EACT,OAAO,EAAE,IAAI;EACb,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,KAAK;EACZ,OAAO,EAAE,GAAG;EACZ,UAAU,EAAE,GAAG;EACf,OAAO,EAAE,gBAAgB;EACzB,UAAU,EAAE,IAAI;EAChB,aAAa,EAAE,QAAQ;EACvB,UAAU,EAAE,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,kBAAkB;EAChD,uBAAuB,EAAE,WAAW;EACpC,eAAe,EAAE,WAAW;EAC5B,SAAS,EAAE,KAAK,GA2BjB;EAvCD,AAcE,UAdQ,AAcP,OAAO,CAAC;IACP,OAAO,EAAE,YAAY;IACrB,QAAQ,EAAE,QAAQ;IAClB,KAAK,EAAE,CAAC;IACR,MAAM,EAAE,CAAC;IACT,cAAc,EAAE,MAAM;IACtB,OAAO,EAAE,EAAE;IACX,GAAG,EAAE,IAAI;IACT,IAAI,EAAE,IAAI;IACV,KAAK,EAAE,IAAI;IACX,KAAK,EAAE,OAAO;IACd,aAAa,EAAE,WAAW;IAC1B,YAAY,EAAE,uBAAuB;IACrC,WAAW,EAAE,uBAAuB,GACrC;EA5BH,AA6BE,UA7BQ,AA6BP,MAAM,CAAC;IACN,aAAa,EAAE,mBAAmB;IAClC,YAAY,EAAE,uBAAuB;IACrC,WAAW,EAAE,uBAAuB;IACpC,OAAO,EAAE,EAAE;IACX,OAAO,EAAE,YAAY;IACrB,QAAQ,EAAE,QAAQ;IAClB,GAAG,EAAE,IAAI;IACT,IAAI,EAAE,IAAI,GACX;;AAGH,AAAA,UAAU,CAAC;EACT,OAAO,EAAE,KAAK;EACd,GAAG,EAAE,IAAI,GACV;;AACD,AAAA,UAAU,CAAC,UAAU,CAAC;EACpB,UAAU,EAAE,IAAI;EAChB,QAAQ,EAAE,MAAM,GACjB;;AAED,AAAA,UAAU,CAAC,cAAc,CAAC;EACxB,UAAU,EAAE,MAAM;EAClB,OAAO,EAAE,GAAG;EACZ,aAAa,EAAE,GAAG,GACnB;;AAED,AAAA,UAAU,CAAC,KAAK,CAAC;EACf,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,CAAC;EACT,YAAY,EPQA,IAAI,CORW,UAAU;EACrC,eAAe,EAAE,QAAQ,GAC1B;;AACD,AAAA,UAAU,CAAC,EAAE;AACb,UAAU,CAAC,EAAE,CAAC;EACZ,UAAU,EAAE,MAAM;EAClB,OAAO,EAAE,GAAG,GACb;;AACD,AAAA,UAAU,CAAC,EAAE,CAAC;EACZ,MAAM,EAAE,OAAO,GAChB;;AACD,AAAA,OAAO,CAAC;EACN,MAAM,EAAE,IAAI;EACZ,WAAW,EAAE,IAAI;EACjB,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;EAClB,OAAO,EAAE,GAAG;EACZ,aAAa,EAAE,GAAG,GAQnB;EAdD,AAOE,OAPK,AAOJ,SAAS,AAAA,UAAU,EAPtB,OAAO,AAQJ,UAAU,EARb,OAAO,AASJ,UAAU,AAAA,MAAM,CAAC;IAChB,gBAAgB,EbnGP,OAAO,CamGiB,UAAU;IAC3C,KAAK,EPdK,IAAI;IEvGhB,UAAU,EAAE,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,kBAAkB,EAC3C,CAAC,CAAC,IAAI,CAAC,IAAI,CAAE,KAAI,CRgBR,uBAAO,GasGjB;;AAEH,AAEI,QAFI,CACN,EAAE,CACA,IAAI,CAAC;EACH,aAAa,EAAE,iBAAiB;EAChC,UAAU,EAAE,MAAM;EAClB,SAAS,EAAE,IAAI;EACf,cAAc,EAAE,SAAS;EACzB,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,GAAG;EACnB,WAAW,EAAE,IAAI,GAClB;;AAVL,AAWI,QAXI,CACN,EAAE,CAUA,OAAO;AAXX,QAAQ,CACN,EAAE,CAWA,OAAO,CAAC;EACN,KAAK,EbkIC,OAAO,GajId;;AAIL,AAAA,UAAU,CAAC,EAAE,AAAA,OAAO,AAAA,MAAM;AAC1B,UAAU,CAAC,EAAE,AAAA,QAAQ,AAAA,MAAM;AAC3B,UAAU,CAAC,EAAE,AAAA,UAAU,AAAA,MAAM;AAC7B,UAAU,CAAC,EAAE,AAAA,UAAU,AAAA,MAAM;AAC7B,UAAU,CAAC,cAAc,AAAA,MAAM,CAAC;EAC9B,UAAU,EAAE,OAAO;EACnB,MAAM,EAAE,OAAO,GAChB;;AACD,AAAA,UAAU,CAAC,EAAE,AAAA,SAAS,CAAC;EACrB,QAAQ,EAAE,QAAQ,GACnB;;AACD,AAAA,UAAU,CAAC,EAAE,AAAA,UAAU,AAAA,SAAS,AAAA,OAAO,CAAC;EACtC,mBAAmB,EAAE,IAAI,GAC1B;;AACD,AAAA,UAAU,CAAC,EAAE,AAAA,YAAY;AACzB,UAAU,CAAC,EAAE,AAAA,YAAY,AAAA,MAAM,CAAC;EAC9B,UAAU,EAAE,IAAI;EAChB,KAAK,EAAE,OAAO;EACd,MAAM,EAAE,WAAW,GACpB;;AAED,AAAA,UAAU,CAAC,EAAE,CAAC,IAAI,AAAA,OAAO,CAAC;EACxB,KAAK,EAAE,OAAO,GACf;;AACD,AAAA,UAAU,CAAC,EAAE,CAAC,IAAI,AAAA,YAAY;AAC9B,UAAU,CAAC,EAAE,CAAC,IAAI,AAAA,YAAY,AAAA,MAAM,CAAC;EACnC,UAAU,EAAE,IAAI;EAChB,KAAK,EAAE,OAAO;EACd,MAAM,EAAE,WAAW,GACpB;;AACD,AAAA,UAAU,CAAC,IAAI,CAAC;EACd,KAAK,EAAE,QAAQ;EACf,aAAa,EAAE,IAAI,GACpB;;AACD,AAAA,UAAU,CAAC,EAAE,AAAA,UAAU,CAAC;EACtB,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,GAAG;EACZ,aAAa,EAAE,GAAG,GACnB;;AACD,AAAA,UAAU,CAAC,EAAE,AAAA,QAAQ;AACrB,UAAU,CAAC,EAAE,AAAA,QAAQ,CAAC;EACpB,SAAS,EAAE,IAAI;EACf,cAAc,EAAE,GAAG;EACnB,aAAa,EAAE,GAAG;EAClB,WAAW,EAAE,IAAI,GAClB;;AAED,AACE,UADQ,CACR,IAAI;AADN,UAAU,CAER,EAAE,AAAA,UAAU;AAFd,UAAU,CAGR,EAAE,AAAA,QAAQ;AAHZ,UAAU,CAIR,EAAE,AAAA,QAAQ;AAJZ,UAAU,CAKR,cAAc,CAAC;EACb,KAAK,ERnME,OAAO,GQoMf;;AAGH,AACE,UADQ,CACR,cAAc,CAAC;EACb,KAAK,EbrLI,OAAO,GasLjB;;AAGH,AAEI,UAFM,CACR,QAAQ,CACN,EAAE,AAAA,UAAU,CAAC;EACX,KAAK,Eb5LE,OAAO,Ga6Lf;;AAIL,AAAA,QAAQ,CAAC,IAAI;AACb,QAAQ,CAAC,IAAI,CAAC;EACZ,OAAO,EAAE,KAAK;EACd,qBAAqB,EAAE,IAAI;EAAE,gBAAgB;EAC7C,mBAAmB,EAAE,IAAI;EAAE,yBAAyB;EACpD,kBAAkB,EAAE,IAAI;EAAE,eAAe;EACzC,gBAAgB,EAAE,IAAI;EAAE,aAAa;EACrC,eAAe,EAAE,IAAI;EAAE,4BAA4B;EACnD,WAAW,EAAE,IAAI,GAClB;;AAED,AAAA,UAAU,CAAC,EAAE,AAAA,YAAY;AACzB,UAAU,CAAC,EAAE,AAAA,YAAY,AAAA,MAAM,CAAC;EAC9B,UAAU,EAAE,IAAI;EAChB,KAAK,EAAE,OAAO;EACd,MAAM,EAAE,WAAW,GACpB;;AACD,AAAA,UAAU,CAAC,KAAK,CAAC,EAAE,AAAA,YAAY,CAAC,EAAE,CAAC;EACjC,MAAM,EAAE,OAAO,GAChB;;AACD,AAAA,UAAU,CAAC,KAAK,CAAC,EAAE,AAAA,YAAY,CAAC,EAAE,AAAA,MAAM,CAAC;EACvC,UAAU,EAAE,OAAO,GACpB;;AAED,AAAA,UAAU,CAAC,MAAM,CAAC;EAChB,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,OAAO,GAChB;;AACD,AAAA,UAAU,CAAC,MAAM,AAAA,MAAM,CAAC;EACtB,gBAAgB,EAAE,IAAI,GACvB;;AAED,AAAA,UAAU,CAAC,KAAK,CAAC,MAAM,CAAC;EACtB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI,GACb;;AAED,AAAA,EAAE,AAAA,SAAS;AACX,EAAE,AAAA,QAAQ,CAAC;EACT,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,OAAO,GAChB;;AACD,AAAA,EAAE,AAAA,SAAS,AAAA,MAAM;AACjB,EAAE,AAAA,QAAQ,AAAA,MAAM,CAAC;EACf,UAAU,EAAE,IAAI,GACjB;;AAED,AAAA,YAAY,CAAC;EACX,OAAO,EAAE,YAAY,GACtB;;AAED,AACE,YADU,GACR,GAAG,CAAC;EACJ,KAAK,EAAE,IAAI;EACX,KAAK,EAAE,IAAI;EACX,WAAW,EAAE,OAAO;EACpB,MAAM,EAAE,GAAG;EACX,aAAa,EAAE,GAAG,GACnB;;AAPH,AAQE,YARU,CAQV,oBAAoB,CAAC;EACnB,KAAK,EAAE,CAAC;EACR,MAAM,EAAE,qBAAqB,GAC9B;;AAGH,AAAA,WAAW,CAAC;EACV,MAAM,EAAE,KAAK,GACd;;AAED,AAAA,WAAW,CAAC;EACV,KAAK,EAAE,IAAI,GAMZ;EAPD,AAEE,WAFS,CAET,SAAS,CAAC;IACR,OAAO,EAAE,GAAG;IACZ,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,qBAAqB,GAC9B;;AAEH,AAEI,YAFQ,CACV,WAAW,AAAA,WAAW,CACpB,SAAS,CAAC;EACR,KAAK,EbnRE,OAAO;EaoRd,aAAa,EAAE,GAAG;EAClB,MAAM,EAAE,GAAG,CAAC,KAAK,CbrRV,OAAO,GasRf;;AAIL,AAAA,oBAAoB,CAAC;EACnB,OAAO,EAAE,GAAG;EACZ,WAAW,EAAE,KAAK,GACnB;;AACD,AAAA,WAAW,CAAC,OAAO,CAAC;EAClB,WAAW,EAAE,IAAI;EACjB,MAAM,EAAE,OAAO;EACf,OAAO,EAAE,KAAK;EACd,aAAa,EAAE,GAAG;EAClB,KAAK,EbnSM,OAAO;EaoSlB,kBAAkB,EAAE,gBAAgB;EACpC,eAAe,EAAE,gBAAgB;EACjC,aAAa,EAAE,gBAAgB;EAC/B,cAAc,EAAE,gBAAgB;EAChC,UAAU,EAAE,gBAAgB;EAE5B,qBAAqB,EAAE,IAAI;EAAE,gBAAgB;EAC7C,mBAAmB,EAAE,IAAI;EAAE,yBAAyB;EACpD,kBAAkB,EAAE,IAAI;EAAE,eAAe;EACzC,gBAAgB,EAAE,IAAI;EAAE,aAAa;EACrC,eAAe,EAAE,IAAI;EAAE,4BAA4B;EACnD,WAAW,EAAE,IAAI,GAClB;;AACD,AAAA,WAAW,CAAC,OAAO,AAAA,MAAM,CAAC;EACxB,UAAU,EAAE,IAAI,GAEjB;;AACD,AAAA,WAAW,CAAC,SAAS,CAAC;EACpB,SAAS,EAAE,OAAO;EAClB,WAAW,EAAE,IAAI,GAClB;;AAED,AAAA,SAAS,CAAC;EACR,cAAc,EAAE,MAAM;EACtB,YAAY,EAAE,GAAG;EACjB,KAAK,EAAE,IAAI,GACZ;;AAED,AAAA,SAAS,CAAC,KAAK,CAAC;EACd,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,OAAO;EAClB,UAAU,EAAE,IAAI,GACjB;;AACD,AAAA,UAAU;AACV,SAAS,CAAC;EACR,cAAc,EAAE,IAAI,GAiBrB;EAnBD,AAGE,UAHQ,CAGR,SAAS;EAHX,UAAU,CAIR,QAAQ;EAHV,SAAS,CAEP,SAAS;EAFX,SAAS,CAGP,QAAQ,CAAC;IACP,OAAO,EAAE,YAAY;IACrB,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IACZ,WAAW,EAAE,IAAI;IACjB,MAAM,EAAE,OAAO;IACf,MAAM,EAAE,OAAO;IACf,aAAa,EAAE,GAAG;IAClB,UAAU,EAAE,MAAM,GAMnB;IAlBH,AAcI,UAdM,CAGR,SAAS,AAWN,UAAU;IAdf,UAAU,CAIR,QAAQ,AAUL,UAAU;IAbf,SAAS,CAEP,SAAS,AAWN,UAAU;IAbf,SAAS,CAGP,QAAQ,AAUL,UAAU,CAAC;MACV,gBAAgB,EbpVT,OAAO,CaoVmB,UAAU;MAC3C,KAAK,EP/PG,IAAI,GOgQb;;AE5WL,AAAA,mBAAmB,CAAC;EAClB,KAAK,EAdI,IAAI;EAeb,UAAU,EAAE,gBAAgB;EAC5B,UAAU,EAAE,IAAI;EAChB,gBAAgB,EAAE,WAAW;EAC7B,MAAM,EAAE,CAAC;EACT,MAAM,EAAE,OAAO;EACf,OAAO,EAAE,IAAI;EACb,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,CAAC;EACV,MAAM,EAAE,8BAA8C,GAgBvD;EAdC,MAAM,EAAE,SAAS,EAAE,KAAK;IAZ1B,AAcI,mBAde,AAcd,MAAM,CAAC;MACN,KAAK,EA1BD,OAAO,GA8BZ;MAnBL,AAgBM,mBAhBa,AAcd,MAAM,CAEL,kBAAkB,CAAC;QACjB,SAAS,EAAE,UAAU,GACtB;EAlBP,AAsBE,mBAtBiB,AAsBhB,MAAM,CAAC;IAEN,OAAO,EAAE,GAAG,CAAC,KAAK,CAnCZ,OAAO,GAoCd;;AAGH,AAEI,0BAFsB,CACxB,mBAAmB,AAChB,MAAM,CAAC;EACN,OAAO,EAAE,IAAI,GACd;;AAIL,AAAA,gCAAgC;AAChC,0BAA0B,CAAC;EACzB,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,IAAI,GAwBd;EA3BD,AAKE,gCAL8B,CAK9B,kBAAkB;EAJpB,0BAA0B,CAIxB,kBAAkB,CAAC;IACjB,MAAM,EAAE,IAAI;IACZ,KAAK,EAAE,IAAI,GACZ;EAED,MAAM,EAAE,SAAS,EAAE,KAAK;IAV1B,AAAA,gCAAgC;IAChC,0BAA0B,CAAC;MAUvB,OAAO,EAAE,IAAI,GAgBhB;MA3BD,AAaI,gCAb4B,CAa5B,kBAAkB;MAZtB,0BAA0B,CAYtB,kBAAkB,CAAC;QACjB,MAAM,EAAE,IAAI;QACZ,KAAK,EAAE,IAAI,GACZ;EAGH,MAAM,EAAE,SAAS,EAAE,KAAK;IAnB1B,AAAA,gCAAgC;IAChC,0BAA0B,CAAC;MAmBvB,OAAO,EAAE,IAAI,GAOhB;MA3BD,AAsBI,gCAtB4B,CAsB5B,kBAAkB;MArBtB,0BAA0B,CAqBtB,kBAAkB,CAAC;QACjB,MAAM,EAAE,IAAI;QACZ,KAAK,EAAE,IAAI,GACZ;;AAIL,AAAA,gCAAgC,CAAC;EAC/B,KAAK,EAAE,CAAC,GACT;;AAED,AAAA,0BAA0B,CAAC;EACzB,IAAI,EAAE,CAAC,GACR;;AAED,AAAA,uBAAuB;AACvB,wBAAwB,CAAC;EACvB,OAAO,EAAE,SAAS;EAClB,GAAG,EAAE,GAAG;EACR,SAAS,EAAE,gBAAgB,GA0B5B;EA9BD,AAME,uBANqB,CAMrB,kBAAkB;EALpB,wBAAwB,CAKtB,kBAAkB,CAAC;IACjB,MAAM,EAAE,KAAK;IACb,KAAK,EAAE,IAAI,GACZ;EAED,MAAM,EAAE,SAAS,EAAE,KAAK;IAX1B,AAYI,uBAZmB,CAYnB,kBAAkB;IAXtB,wBAAwB,CAWpB,kBAAkB,CAAC;MACjB,MAAM,EAAE,IAAI;MACZ,KAAK,EAAE,IAAI,GACZ;EAGH,MAAM,EAAE,SAAS,EAAE,KAAK;IAlB1B,AAmBI,uBAnBmB,CAmBnB,kBAAkB;IAlBtB,wBAAwB,CAkBpB,kBAAkB,CAAC;MACjB,MAAM,EAAE,IAAI;MACZ,KAAK,EAAE,IAAI,GACZ;EAtBL,AAyBE,uBAzBqB,CAyBpB,AAAA,QAAC,AAAA;EAxBJ,wBAAwB,CAwBrB,AAAA,QAAC,AAAA,EAAU;IACV,MAAM,EAAE,QAAQ;IAChB,OAAO,EAAE,EAAE;IACX,cAAc,EAAE,IAAI,GACrB;;AAGH,AAAA,uBAAuB,CAAC;EACtB,IAAI,EAAE,CAAC,GACR;;AAED,AAAA,wBAAwB,CAAC;EACvB,KAAK,EAAE,CAAC,GACT;;AAGD,AAAA,cAAc,CAAC;EAvHX,mBAAkB,EAAC,IAAC;EAApB,gBAAkB,EAAC,IAAC;EAApB,eAAkB,EAAC,IAAC;EAApB,cAAkB,EAAC,IAAC;EAApB,WAAkB,EAAC,IAAC;EAyHtB,2BAA2B,EA7HZ,gBAAgB;EA8H/B,QAAQ,EAAE,QAAQ,GAkBnB;EArBD,AAKE,cALY,AAKX,iBAAiB,CAAC;IACjB,UAAU,EApIH,IAAI;IAqIX,MAAM,EAAE,CAAC;IACT,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE,CAAC;IACP,QAAQ,EAAE,KAAK;IACf,KAAK,EAAE,CAAC;IACR,GAAG,EAAE,CAAC;IACN,KAAK,EAAE,IAAI;IACX,OAAO,EAAE,CAAC,GAMX;IApBH,AAgBI,cAhBU,AAKX,iBAAiB,CAWhB,sBAAsB,CAAC;MACrB,GAAG,EAAE,GAAG;MACR,SAAS,EAAE,gBAAgB,GAC5B;;AAIL,AAAA,sBAAsB,CAAC;EACrB,QAAQ,EAAE,QAAQ;EAClB,WAAW,EAAE,CAAC;EACd,GAAG,EAAE,CAAC,GAgBP;EAnBD,AAKE,sBALoB,AAKnB,WAAW,CAAC;IACX,UAAU,EA3JH,IAAI,GA4JZ;EAPH,AASE,sBAToB,CASpB,oBAAoB,CAAC,oBAAoB,CAAC;IACxC,UAAU,EAAE,kBAAkB,GAC/B;EAXH,AAeI,sBAfkB,AAanB,KAAK,CAEJ,oBAAoB,CAAC,oBAAoB,EAf7C,sBAAsB,AAcnB,MAAM,CACL,oBAAoB,CAAC,oBAAoB,CAAC;IACxC,UAAU,EAAE,KAAK,GAClB;;AAIL,AAAA,4BAA4B,CAAC;EAC3B,QAAQ,EAAE,QAAQ,GAcnB;EAfD,AAGE,4BAH0B,AAGzB,KAAK,EAHR,4BAA4B,AAIzB,MAAM,CAAC;IACN,OAAO,EAAE,YAAY;IACrB,KAAK,EAAE,kBAAkB,GAK1B;IAHC,MAAM,EAAE,SAAS,EAAE,KAAK;MAR5B,AAGE,4BAH0B,AAGzB,KAAK,EAHR,4BAA4B,AAIzB,MAAM,CAAC;QAKJ,KAAK,EAAE,iBAAiB,GAE3B;EAXH,AAYE,4BAZ0B,AAYzB,kBAAkB,CAAC;IAClB,SAAS,EAAE,GAAG,GACf;;AAGH,AAAA,qBAAqB,CAAC;EACpB,WAAW,EAAE,CAAC;EACd,QAAQ,EAAE,MAAM;EAChB,QAAQ,EAAE,QAAQ;EAClB,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM,GACnB;;AAED,AAAA,oBAAoB,CAAC;EACnB,IAAI,EAAE,CAAC;EACP,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,CAAC;EACN,KAAK,EAAE,IAAI,GA4BZ;EAhCD,AAME,oBANkB,AAMjB,OAAO,CAAC;IACP,QAAQ,EAAE,QAAQ,GACnB;EARH,AAUE,oBAVkB,CAUlB,oBAAoB,CAAC;IACnB,KAAK,EAAE,IAAI;IACX,UAAU,EAAE,OAAO,GACpB;EAbH,AAeE,oBAfkB,CAelB,0BAA0B,CAAC;IACzB,UAAU,EAjNQ,kBAAiB;IAkNnC,MAAM,EAAE,IAAI;IACZ,KAAK,EAtNE,IAAI;IAuNX,IAAI,EAAE,CAAC;IACP,WAAW,EAAE,CAAC;IACd,OAAO,EAAE,SAAS;IAClB,QAAQ,EAAE,QAAQ;IAClB,WAAW,EAAE,MAAM,GAQpB;IANC,MAAM,EAAE,SAAS,EAAE,KAAK;MAzB5B,AAeE,oBAfkB,CAelB,0BAA0B,CAAC;QAWvB,MAAM,EAAE,IAAI;QACZ,SAAS,EAAE,IAAI;QACf,OAAO,EAAE,QAAQ,GAGpB;;AAGH,AAAA,sBAAsB,CAAC;EACrB,MAAM,EAAE,IAAI;EACZ,IAAI,EAAE,CAAC;EACP,MAAM,EAAE,MAAM;EACd,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,CAAC;EACR,KAAK,EAAE,GAAG;EACV,OAAO,EAAE,CAAC,GAwCX;EA/CD,AASE,sBAToB,CASpB,gCAAgC,CAAC;IAC/B,MAAM,EAAE,CAAC;IACT,OAAO,EAAE,CAAC;IACV,UAAU,EAAE,MAAM,GACnB;EAbH,AAeE,sBAfoB,CAepB,qBAAqB,CAAC;IACpB,UAAU,EAAE,IAAI;IAChB,gBAAgB,EAAE,WAAW;IAC7B,MAAM,EAAE,GAAG,CAAC,KAAK,CAxPV,IAAI;IAyPX,aAAa,EAAE,GAAG;IAClB,UAAU,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,OAAuB;IAC3C,MAAM,EAAE,OAAO;IACf,OAAO,EAAE,YAAY;IACrB,MAAM,EAAE,KAAK;IACb,OAAO,EAAE,IAAI;IACb,OAAO,EAAE,GAAG;IACZ,UAAU,EAAE,uBAAuB,GAoBpC;IAlBC,MAAM,EAAE,SAAS,EAAE,KAAK;MA5B5B,AAeE,sBAfoB,CAepB,qBAAqB,CAAC;QAclB,MAAM,EAAE,KAAK;QACb,OAAO,EAAE,GAAG,GAgBf;IAbC,MAAM,EAAE,SAAS,EAAE,KAAK;MAjC5B,AAeE,sBAfoB,CAepB,qBAAqB,CAAC;QAmBlB,OAAO,EAAE,KAAK,GAYjB;IA9CH,AAqCI,sBArCkB,CAepB,qBAAqB,AAsBlB,MAAM,EArCX,sBAAsB,CAepB,qBAAqB,AAuBlB,MAAM,CAAC;MACN,UAAU,EA3QN,OAAO;MA4QX,SAAS,EAAE,UAAU,GACtB;IAzCL,AA2CI,sBA3CkB,CAepB,qBAAqB,AA4BlB,OAAO,CAAC;MACP,UAAU,EAlRL,IAAI,GAmRV;;AAIL,AAAA,iCAAiC,CAAC;EAChC,QAAQ,EAAE,QAAQ,GA8CnB;EA/CD,AAGE,iCAH+B,AAG9B,uBAAuB,CAAC;IACvB,SAAS,EAAE,GAAG,GACf;EALH,AAME,iCAN+B,AAM9B,KAAK,EANR,iCAAiC,AAO9B,MAAM,CAAC;IACN,OAAO,EAAE,YAAY;IACrB,cAAc,EAAE,GAAG;IACnB,KAAK,EAAE,KAAK,GA2Bb;IAzBC,MAAM,EAAE,SAAS,EAAE,KAAK;MAZ5B,AAME,iCAN+B,AAM9B,KAAK,EANR,iCAAiC,AAO9B,MAAM,CAAC;QAMJ,KAAK,EAAE,IAAI,GAwBd;IArCH,AAgBI,iCAhB6B,AAM9B,KAAK,CAUJ,yBAAyB,EAhB7B,iCAAiC,AAO9B,MAAM,CASL,yBAAyB,CAAC;MACxB,MAAM,EAAE,IAAI;MACZ,KAAK,EAAE,IAAI;MACX,IAAI,EAAE,CAAC;MACP,OAAO,EAAE,CAAC;MACV,QAAQ,EAAE,QAAQ;MAClB,GAAG,EAAE,CAAC,GAcP;MApCL,AAwBM,iCAxB2B,AAM9B,KAAK,CAUJ,yBAAyB,CAQvB,wBAAwB,EAxB9B,iCAAiC,AAO9B,MAAM,CASL,yBAAyB,CAQvB,wBAAwB,CAAC;QACvB,OAAO,EAAE,KAAK;QACd,YAAY,EAAE,CAAC;QACf,OAAO,EAAE,CAAC,GAOX;QAlCP,AA6BQ,iCA7ByB,AAM9B,KAAK,CAUJ,yBAAyB,CAQvB,wBAAwB,GAKpB,wBAAwB,EA7BlC,iCAAiC,AAO9B,MAAM,CASL,yBAAyB,CAQvB,wBAAwB,GAKpB,wBAAwB,CAAC;UACzB,WAAW,EAAE,CAAC;UACd,UAAU,EAAE,GAAG,GAChB;EAhCT,AAuCE,iCAvC+B,AAuC9B,KAAK,EAvCR,iCAAiC,AAwC9B,MAAM,CAAC;IACN,MAAM,EAAE,KAAK,GAKd;IAHC,MAAM,EAAE,SAAS,EAAE,KAAK;MA3C5B,AAuCE,iCAvC+B,AAuC9B,KAAK,EAvCR,iCAAiC,AAwC9B,MAAM,CAAC;QAIJ,MAAM,EAAE,KAAK,GAEhB;;AAGH,AAAA,yBAAyB,CAAC;EACxB,QAAQ,EAAE,MAAM;EAChB,OAAO,EAAE,KAAK,GAaf;EAXC,MAAM,EAAE,SAAS,EAAE,KAAK;IAJ1B,AAAA,yBAAyB,CAAC;MAKtB,OAAO,EAAE,KAAK,GAUjB;EAfD,AAQE,yBARuB,CAQvB,mCAAmC,CAAC;IAClC,MAAM,EAAE,OAAO;IACf,UAAU,EAAE,MAAM;IAClB,UAAU,EAAE,uBAAuB;IACnC,WAAW,EAAE,MAAM,GACpB;;AAIH,AAAA,wBAAwB,CAAC;EACvB,OAAO,EAAE,YAAY;EACrB,MAAM,EAAE,qBAAqB;EAC7B,UAAU,EAAE,mBAAmB;EAC/B,KAAK,EAAE,KAAK;EACZ,UAAU,EAAE,WAAW;EACvB,OAAO,EAAE,CAAC,GAgCX;EA9BC,MAAM,EAAE,SAAS,EAAE,KAAK;IAR1B,AAAA,wBAAwB,CAAC;MASrB,MAAM,EAAE,qBAAqB;MAC7B,KAAK,EAAE,IAAI,GA4Bd;EAtCD,AAaE,wBAbsB,GAapB,wBAAwB,CAAC;IACzB,WAAW,EAAE,GAAG,GACjB;EAfH,AAiBE,wBAjBsB,CAiBtB,8BAA8B,CAAC;IAC7B,QAAQ,EAAE,QAAQ,GACnB;EAnBH,AAqBE,wBArBsB,CAqBtB,8BAA8B,CAAC;IAC7B,cAAc,EAAE,MAAM;IACtB,KAAK,EAAE,IAAI;IACX,WAAW,EAAE,CAAC,GACf;EAzBH,AA2BE,wBA3BsB,AA2BrB,OAAO,EA3BV,wBAAwB,AA4BrB,MAAM,EA5BT,wBAAwB,AA6BrB,MAAM,CAAC;IACN,OAAO,EAAE,IAAI;IACb,MAAM,EAAE,GAAG,CAAC,KAAK,CAtXX,OAAO,GA2Xd;IAHC,MAAM,EAAE,SAAS,EAAE,KAAK;MAjC5B,AA2BE,wBA3BsB,AA2BrB,OAAO,EA3BV,wBAAwB,AA4BrB,MAAM,EA5BT,wBAAwB,AA6BrB,MAAM,CAAC;QAKJ,MAAM,EAAE,GAAG,CAAC,KAAK,CAzXb,OAAO,GA2Xd;;AAIH,AAAA,8BAA8B,CAAC;EAC7B,UAAU,EAAE,UAAU;EACtB,KAAK,EAAE,KAAK;EACZ,SAAS,EAAE,GAAG;EACd,IAAI,EAAE,CAAC;EACP,WAAW,EAAE,GAAG;EAChB,OAAO,EAAE,EAAE;EACX,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,GAAG;EACR,WAAW,EAAE,eAAe;EAC5B,SAAS,EAAE,gBAAgB;EAC3B,WAAW,EAAE,MAAM;EACnB,KAAK,EAAE,IAAI,GAMZ;EAJC,MAAM,EAAC,SAAS,EAAE,KAAK;IAdzB,AAAA,8BAA8B,CAAC;MAe3B,SAAS,EAAE,IAAI;MACf,WAAW,EAAE,IAAI,GAEpB;;AAED,AAAA,oBAAoB,CAAC;EACnB,UAAU,EAnZU,kBAAiB;EAoZrC,KAAK,EAvZI,IAAI;EAwZb,WAAW,EAAE,CAAC;EACd,OAAO,EAAE,SAAS;EAClB,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,CAAC;EACR,GAAG,EAAE,CAAC;EACN,OAAO,EAAE,CAAC,GAMX;EAJC,MAAM,EAAC,SAAS,EAAE,KAAK;IAVzB,AAAA,oBAAoB,CAAC;MAWjB,SAAS,EAAE,IAAI;MACf,OAAO,EAAE,QAAQ,GAEpB;;ADnaD,AAAA,uBAAuB;AACvB,wBAAwB,CAAC;EACvB,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,OAAO;EACf,OAAO,EAAE,GAAG;EACZ,OAAO,EAAE,GAAG;EACZ,MAAM,EAAE,IAAI;EACZ,GAAG,EAAE,IAAI;EACT,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,GAAG;EACd,OAAO,EAAE,IAAI;EACb,gBAAgB,EAAE,WAAW;EAC7B,MAAM,EAAE,CAAC;EACT,SAAS,EAAE,gBAAgB,GAqB5B;EAnCD,AAeE,uBAfqB,AAepB,OAAO,EAfV,uBAAuB,AAgBpB,MAAM,AAAA,OAAO;EAfhB,wBAAwB,AAcrB,OAAO;EAdV,wBAAwB,AAerB,MAAM,AAAA,OAAO,CAAC;IACb,KAAK,EAAE,OAAO;IACd,WAAW,EAAE,IAAI,GAClB;EAnBH,AAoBE,uBApBqB,AAoBpB,OAAO;EAnBV,wBAAwB,AAmBrB,OAAO,CAAC;IACP,WAAW,EAAE,gBAAgB;IAC7B,WAAW,EAAE,MAAM;IACnB,UAAU,EAAE,MAAM;IAClB,SAAS,EAAE,IAAI;IACf,WAAW,EAAE,CAAC;IACd,cAAc,EAAE,MAAM;IACtB,cAAc,EAAE,IAAI;IACpB,OAAO,EAAE,YAAY;IACrB,WAAW,EAAE,MAAM;IACnB,SAAS,EAAE,MAAM;IACjB,SAAS,EAAE,GAAG;IACd,6BAA6B,EAAE,MAAM;IACrC,sBAAsB,EAAE,WAAW,GACpC;;AAEH,AAAA,uBAAuB,CAAC;EACtB,IAAI,EAAE,KAAK,GAIZ;EALD,AAEE,uBAFqB,AAEpB,QAAQ,CAAC;IACR,OAAO,EAAE,cAAc,GACxB;;AAEH,AAAA,wBAAwB,CAAC;EACvB,KAAK,EAAE,KAAK,GAIb;EALD,AAEE,wBAFsB,AAErB,QAAQ,CAAC;IACR,OAAO,EAAE,eAAe,GACzB;;AAEH,AAAA,wBAAwB,CAAC;EACvB,MAAM,EAAE,GAAG;EACX,OAAO,EAAE,GAAG;EACZ,MAAM,EAAE,OAAO;EACf,QAAQ,EAAE,QAAQ;EAClB,WAAW,EAAE,GAAG;EAChB,KAAK,EAAE,KAAK;EACZ,MAAM,EAAE,eAAe,GAWxB;EAlBD,AAQE,wBARsB,GAQlB,wBAAwB,CAAC;IAC3B,MAAM,EAAE,YAAY,GACrB;EAVH,AAWE,wBAXsB,CAWtB,GAAG,CAAC;IACF,SAAS,EAAE,IAAI;IACf,MAAM,EAAE,OAAO;IACf,QAAQ,EAAE,QAAQ;IAClB,UAAU,EAAE,IAAI;IAChB,aAAa,EAAE,IAAI,GACpB;;AAEH,AAAA,8BAA8B,CAAC;EAC7B,OAAO,EAAE,eAAe,GACzB;;AACD,AAAA,yBAAyB,CAAC;EACxB,OAAO,EAAE,YAAY;EACrB,QAAQ,EAAE,MAAM;EAChB,KAAK,EAAE,IAAI,GACZ;;AACD,AAAA,mCAAmC,CAAC;EAClC,QAAQ,EAAE,QAAQ;EAElB,MAAM,EAAE,GAAG;EACX,OAAO,EAAE,GAAG;EACZ,eAAe,EAAE,IAAI;EACrB,UAAU,EAAE,MAAM,GACnB;;AEpFD,YAAY;AACZ,AAAA,aAAa,CAAC;EACZ,QAAQ,EAAE,QAAQ;EAElB,OAAO,EAAE,KAAK;EACd,UAAU,EAAE,UAAU;EAEtB,mBAAmB,EAAE,IAAI;EACzB,gBAAgB,EAAE,IAAI;EACtB,eAAe,EAAE,IAAI;EACrB,WAAW,EAAE,IAAI;EAEjB,qBAAqB,EAAE,IAAI;EAC3B,kBAAkB,EAAE,IAAI;EACxB,gBAAgB,EAAE,KAAK;EACvB,YAAY,EAAE,KAAK;EACnB,2BAA2B,EAAE,WAAW,GAkCzC;EAhCC,MAAM,EAAE,SAAS,EAAE,KAAK;IAjB1B,AAkBI,aAlBS,CAkBT,cAAc,CAAC;MACb,OAAO,EAAE,gBAAgB,GAC1B;EApBL,AAuBE,aAvBW,CAuBX,cAAc,CAAC;IACb,cAAc,EAAE,IAAI;IACpB,QAAQ,EAAE,QAAQ;IAClB,KAAK,EAAE,GAAG;IACV,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE,GAAG;IACT,OAAO,EAAE,EAAE;IACX,WAAW,EAAE,IAAI;IACjB,KAAK,EAAE,OAAO;IACd,UAAU,EAAE,MAAM;IAClB,OAAO,EAAE,CAAC;IACV,OAAO,EAAE,IAAI,GACd;EAnCH,AAqCI,aArCS,CAoCX,YAAY,GACR,GAAG,AAAA,YAAY,CAAC;IAChB,QAAQ,EAAE,QAAQ,GACnB;EAvCL,AAyCE,aAzCW,CAyCX,YAAY,CAAC;IACX,QAAQ,EAAE,QAAQ;IAClB,GAAG,EAAE,GAAG,GACT;EA5CH,AA6CE,aA7CW,CA6CX,YAAY,CAAC;IACX,KAAK,EAAE,eAAe;IACtB,OAAO,EAAE,sBAAsB,GAChC;;AAGH,AAAA,WAAW,CAAC;EACV,QAAQ,EAAE,QAAQ;EAElB,OAAO,EAAE,KAAK;EACd,QAAQ,EAAE,MAAM;EAEhB,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC,GACX;;AACD,AAAA,WAAW,AAAA,MAAM,CAAC;EAChB,OAAO,EAAE,IAAI,GACd;;AACD,AAAA,WAAW,AAAA,SAAS,CAAC;EACnB,MAAM,EAAE,OAAO;EACf,MAAM,EAAE,IAAI,GACb;;AAED,AAAA,aAAa,CAAC,YAAY;AAC1B,aAAa,CAAC,WAAW,CAAC;EACxB,iBAAiB,EAAE,oBAAoB;EACvC,cAAc,EAAE,oBAAoB;EACpC,aAAa,EAAE,oBAAoB;EACnC,YAAY,EAAE,oBAAoB;EAClC,SAAS,EAAE,oBAAoB,GAChC;;AAED,AAAA,YAAY,CAAC;EACX,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,CAAC;EACN,IAAI,EAAE,CAAC;EAEP,OAAO,EAAE,KAAK;EACd,WAAW,EAAE,IAAI;EACjB,YAAY,EAAE,IAAI,GACnB;;AACD,AAAA,YAAY,AAAA,OAAO;AACnB,YAAY,AAAA,MAAM,CAAC;EACjB,OAAO,EAAE,KAAK;EAEd,OAAO,EAAE,EAAE,GACZ;;AACD,AAAA,YAAY,AAAA,MAAM,CAAC;EACjB,KAAK,EAAE,IAAI,GACZ;;AACD,AAAA,cAAc,CAAC,YAAY,CAAC;EAC1B,UAAU,EAAE,MAAM,GACnB;;AAED,AAAA,YAAY,CAAC;EACX,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI;EAEX,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,GAAG,GAChB;;CACD,AAAA,AAAA,GAAC,CAAI,KAAK,AAAT,EAAW,YAAY,CAAC;EACvB,KAAK,EAAE,KAAK,GACb;;AACD,AAAA,YAAY,CAAC,GAAG,CAAC;EACf,OAAO,EAAE,KAAK,GACf;;AACD,AAAA,YAAY,AAAA,cAAc,CAAC,GAAG,CAAC;EAC7B,OAAO,EAAE,IAAI,GACd;;AACD,AAAA,YAAY,AAAA,SAAS,CAAC,GAAG,CAAC;EACxB,cAAc,EAAE,IAAI,GACrB;;AACD,AAAA,kBAAkB,CAAC,YAAY,CAAC;EAC9B,OAAO,EAAE,KAAK,GACf;;AACD,AAAA,cAAc,CAAC,YAAY,CAAC;EAC1B,UAAU,EAAE,MAAM,GACnB;;AACD,AAAA,eAAe,CAAC,YAAY,CAAC;EAC3B,OAAO,EAAE,KAAK;EAEd,MAAM,EAAE,IAAI;EAEZ,MAAM,EAAE,qBAAqB,GAC9B;;AACD,AAAA,YAAY,AAAA,aAAa,CAAC;EACxB,OAAO,EAAE,IAAI,GACd;;AACD,AAAA,MAAM,AAAA,YAAY,AAAA,WAAW;AAC7B,MAAM,AAAA,YAAY,AAAA,WAAW,CAAC;EAC5B,SAAS,EAAE,CAAC;EACZ,WAAW,EAAE,CAAC;EACd,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,GAAG;EACR,OAAO,EAAE,KAAK;EAEd,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,CAAC;EACV,aAAa,EAAE,gBAAgB;EAC/B,SAAS,EAAE,gBAAgB;EAC3B,MAAM,EAAE,OAAO;EACf,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,WAAW;EAClB,OAAO,EAAE,IAAI;EACb,UAAU,EAAE,WAAW;EACvB,KAAK,EAAE,GAAG;EACV,OAAO,EAAE,CAAC;EACV,OAAO,EAAE,GAAG,GACb;;AACD,AAAA,WAAW,CAAC;EACV,IAAI,EAAE,CAAC,GAgBR;EAjBD,AAEE,WAFS,AAER,QAAQ,CAAC;IACR,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,GAAG;IAChB,WAAW,EAAE,oBAAoB;IACjC,uBAAuB,EAAE,SAAS;IAClC,sBAAsB,EAAE,WAAW;IACnC,OAAO,EAAE,YAAY;IACrB,UAAU,EAAE,MAAM;IAClB,YAAY,EAAE,MAAM;IACpB,cAAc,EAAE,IAAI;IACpB,WAAW,EAAE,CAAC;IACd,KAAK,EAAE,KAAK;IACZ,SAAS,EAAE,IAAI;IACf,KAAK,EAAE,IAAI,GACZ;;AAEH,AAAA,WAAW,CAAC;EACV,KAAK,EAAE,CAAC,GAgBT;EAjBD,AAEE,WAFS,AAER,QAAQ,CAAC;IACR,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,GAAG;IAChB,WAAW,EAAE,oBAAoB;IACjC,uBAAuB,EAAE,SAAS;IAClC,sBAAsB,EAAE,WAAW;IACnC,OAAO,EAAE,YAAY;IACrB,UAAU,EAAE,MAAM;IAClB,YAAY,EAAE,MAAM;IACpB,cAAc,EAAE,IAAI;IACpB,WAAW,EAAE,CAAC;IACd,KAAK,EAAE,IAAI;IACX,SAAS,EAAE,IAAI;IACf,KAAK,EAAE,IAAI,GACZ;;AAEH,AAAA,WAAW,CAAC;EACV,OAAO,EAAE,CAAC,GACX;;AACD,AAAA,WAAW,CAAC;EACV,UAAU,EAAE,CAAC;EACb,aAAa,EAAE,IAAI;EACnB,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,GAAG;EAGX,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI;EAChB,UAAU,EAAE,MAAM;EAClB,OAAO,EAAE,CAAC,GACX;;AACD,AAAA,WAAW,CAAC,EAAE;AACd,WAAW,CAAC,EAAE,CAAC,MAAM,CAAC;EACpB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,OAAO,GAChB;;AACD,AAAA,WAAW,CAAC,EAAE,CAAC;EACb,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,MAAM,EAAE,KAAK;EACb,OAAO,EAAE,CAAC,GACX;;AACD,AAAA,WAAW,CAAC,EAAE,CAAC,MAAM,CAAC;EACpB,SAAS,EAAE,CAAC;EACZ,WAAW,EAAE,CAAC;EACd,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,GAAG;EACZ,KAAK,EAAE,WAAW;EAClB,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,IAAI;EACb,UAAU,EAAE,WAAW,GAkBxB;EA1BD,AASE,WATS,CAAC,EAAE,CAAC,MAAM,AASlB,QAAQ,CAAC;IACR,QAAQ,EAAE,QAAQ;IAClB,GAAG,EAAE,CAAC;IACN,IAAI,EAAE,CAAC;IACP,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,OAAO;IAChB,UAAU,EAAE,MAAM;IAClB,OAAO,EAAE,CAAC;IACV,gBAAgB,EAAE,IAAI;IACtB,sBAAsB,EAAE,WAAW;IACnC,uBAAuB,EAAE,SAAS;IAClC,UAAU,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,mBAAmB,EACzC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAE,IAAG,CAAC,mBAAmB,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,kBAAkB;IACpE,aAAa,EAAE,GAAG;IAClB,UAAU,EAAE,gBAAgB,GAC7B;;AAEH,AAAA,WAAW,CAAC,EAAE,AAAA,aAAa,CAAC,MAAM,AAAA,OAAO,CAAC;EACxC,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,mBAAmB,EAAE,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,mBAAmB,EAC3E,CAAC,CAAC,GAAG,CAAC,GAAG,CAAE,IAAG,CAAC,kBAAkB;EACnC,GAAG,EAAE,IAAI,GACV;;AC3PD,AAAA,gBAAgB,CAAC;EACf,OAAO,EAAE,YAAY;EACrB,OAAO,EAAE,OAAO;EAChB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI,GAClB;;AAED,AAAA,oBAAoB,CAAC;EACnB,MAAM,EAAE,OAAO;EACf,MAAM,EAAE,aAAa;EACrB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,OAAO;EAChB,aAAa,EAAE,IAAI;EACnB,KAAK,EAAE,OAAO;EACd,WAAW,EAAE,GAAG;EAChB,SAAS,EAAE,MAAM;EACjB,cAAc,EAAE,SAAS;EACzB,OAAO,EAAE,YAAY;EACrB,WAAW,EAAE,KAAK;EAClB,YAAY,EAAE,KAAK,GACpB;;AAED,AAAA,uBAAuB,CAAC;EACtB,MAAM,EAAE,OAAO;EACf,WAAW,EAAE,IAAI,GAClB;;AAED,AAAA,oBAAoB,CAAC,CAAC,AAAA,QAAQ,CAAC;EAC7B,WAAW,EAAE,oBAAoB;EACjC,OAAO,EAAE,OAAO;EAChB,OAAO,EAAE,OAAO;EAChB,WAAW,EAAE,GAAG,GACjB;;AACD,AAAA,oBAAoB,CAAC,CAAC,CAAC;EACrB,MAAM,EAAE,OAAO;EACf,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,GAAG;EACR,KAAK,EAAE,GAAG;EACV,OAAO,EAAE,CAAC;EACV,gBAAgB,EAAE,WAAW;EAC7B,KAAK,EAAE,OAAO,GACf;;AAED,AAAA,sBAAsB,CAAC;EACrB,UAAU,EAAE,WAAW;EACvB,MAAM,EAAE,CAAC;EACT,KAAK,EAAE,IAAI;EACX,WAAW,EAAE,UAAU;EACvB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,aAAa,EAAE,GAAG;EAClB,UAAU,EAAE,GAAG;EACf,OAAO,EAAE,IAAI;EACb,OAAO,EAAE,GAAG;EACZ,KAAK,EAAE,IAAI,GACZ;;AAED,AACE,gBADc,CACd,oBAAoB,CAAC;EACnB,kBAAkB,EAAE,iBAAiB;EACrC,eAAe,EAAE,iBAAiB;EAClC,aAAa,EAAE,iBAAiB;EAChC,cAAc,EAAE,iBAAiB;EACjC,UAAU,EAAE,iBAAiB;EAuD7B,gBAAgB,EfvHP,IAAI,GewHd;EA9DH,AAQI,gBARY,CACd,oBAAoB,AAOjB,MAAM,CAAC;IACN,aAAa,EAAE,IAAI,GAQpB;IAjBL,AAWM,gBAXU,CACd,oBAAoB,AAOjB,MAAM,CAGL,CAAC,CAAC;MACA,OAAO,EAAE,CAAC;MACV,aAAa,EAAE,GAAG;MAClB,gBAAgB,EAAE,WAAW;MAC7B,KAAK,EAAE,OAAO,GACf;EAhBP,AAwCI,gBAxCY,CACd,oBAAoB,AAuCjB,QAAQ,CAAC;IACR,gBAAgB,EjB/DT,OAAO,GiBgEf;EA1CL,AA2CI,gBA3CY,CACd,oBAAoB,AA0CjB,KAAK,CAAC;IACL,gBAAgB,EjBcX,OAAO,GiBbb;EA7CL,AA8CI,gBA9CY,CACd,oBAAoB,AA6CjB,QAAQ,CAAC;IACR,gBAAgB,EjB2CV,OAAO,GiB1Cd;EAhDL,AAiDI,gBAjDY,CACd,oBAAoB,AAgDjB,QAAQ,CAAC;IACR,gBAAgB,EjBwHT,OAAO,GiBvHf;EAnDL,AAoDI,gBApDY,CACd,oBAAoB,AAmDjB,OAAO,CAAC;IACP,gBAAgB,EjB3GZ,OAAO,GiB4GZ;EAtDL,AAuDI,gBAvDY,CACd,oBAAoB,AAsDjB,KAAK,CAAC;IACL,gBAAgB,EjB9FX,OAAO,GiB+Fb;EAzDL,AA0DI,gBA1DY,CACd,oBAAoB,AAyDjB,QAAQ,CAAC;IACR,gBAAgB,EfrHT,IAAI,GesHZ" -} \ No newline at end of file diff --git a/styles/css/nextjs-material-kit-pro.min.css b/styles/css/nextjs-material-kit-pro.min.css deleted file mode 100644 index 696daa6..0000000 --- a/styles/css/nextjs-material-kit-pro.min.css +++ /dev/null @@ -1,3 +0,0 @@ -.btn-file{position:relative;overflow:hidden;vertical-align:middle}.btn-file>input{position:absolute;top:0;right:0;width:100%;height:100%;margin:0;font-size:23px;cursor:pointer;filter:alpha(opacity=0);opacity:0;direction:ltr}.fileinput{text-align:center;display:inline-block;margin-bottom:9px}.fileinput input[type="file"]{display:none}.fileinput .form-control{display:inline-block;padding-top:7px;padding-bottom:5px;margin-bottom:0;vertical-align:middle;cursor:text}.fileinput .thumbnail{display:inline-block;margin-bottom:10px;overflow:hidden;text-align:center;vertical-align:middle;max-width:360px;box-shadow:0 5px 15px -8px rgba(0,0,0,0.24),0 8px 10px -5px rgba(0,0,0,0.2)}.fileinput .thumbnail.img-circle{border-radius:50%;max-width:100px}.fileinput .thumbnail>img{max-height:100%;width:100%}.fileinput .btn{vertical-align:middle}.fileinput-exists .fileinput-new,.fileinput-new .fileinput-exists{display:none}.fileinput-inline .fileinput-controls{display:inline}.fileinput-filename{display:inline-block;overflow:hidden;vertical-align:middle}.form-control .fileinput-filename{vertical-align:bottom}.fileinput.input-group{display:table}.fileinput.input-group>*{position:relative;z-index:2}.fileinput.input-group>.btn-file{z-index:1}.fileinput-new.input-group .btn-file,.fileinput-new .input-group .btn-file{border-radius:0 4px 4px 0}.fileinput-new.input-group .btn-file.btn-xs,.fileinput-new .input-group .btn-file.btn-xs,.fileinput-new.input-group .btn-file.btn-sm,.fileinput-new .input-group .btn-file.btn-sm{border-radius:0 3px 3px 0}.fileinput-new.input-group .btn-file.btn-lg,.fileinput-new .input-group .btn-file.btn-lg{border-radius:0 6px 6px 0}.form-group.has-warning .fileinput .fileinput-preview{color:#ff9800}.form-group.has-warning .fileinput .thumbnail{border-color:#ff9800}.form-group.has-error .fileinput .fileinput-preview{color:#f44336}.form-group.has-error .fileinput .thumbnail{border-color:#f44336}.form-group.has-success .fileinput .fileinput-preview{color:#4caf50}.form-group.has-success .fileinput .thumbnail{border-color:#4caf50}.input-group-addon:not(:first-child){border-left:0}.thumbnail{border:0 none;border-radius:0;padding:0}html *{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}*{letter-spacing:normal !important}body{font-size:1rem;overflow-x:hidden}body,h1,h2,h3,h4,h5,h6{font-family:"Roboto", "Helvetica", "Arial", sans-serif;font-weight:300;line-height:1.5em}h1,h2,h3,h4,h5,h6{color:inherit}h1,h2,h3{margin-top:20px;margin-bottom:10px}h4,h5,h6{margin-top:10px;margin-bottom:10px}h1{font-size:3.3125rem;line-height:1.15em}h2{font-size:2.25rem;line-height:1.5em}h3{font-size:1.5625rem;line-height:1.4em}h4{font-size:1.125rem;line-height:1.5em}h5{font-size:1.0625rem;line-height:1.55em}h6{font-size:0.75rem;text-transform:uppercase;font-weight:500}p{font-size:14px;margin:0 0 10px}b,strong{font-weight:700}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}body{background-color:#eee;color:#3c4858;margin:0;font-size:1rem;text-align:left}legend{border-bottom:0}*{-webkit-tap-highlight-color:rgba(255,255,255,0);-webkit-tap-highlight-color:transparent;box-sizing:border-box}*:focus{outline:0}a{color:#9c27b0;text-decoration:none;background-color:transparent}a:hover,a:focus{color:#89229b;text-decoration:none}label{font-size:14px;line-height:1.42857;color:#aaa;font-weight:400}small{font-size:75%;color:#777;font-weight:400}img{vertical-align:middle;border-style:none}form{margin-bottom:1.125rem}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}hr{box-sizing:content-box;height:0;overflow:visible}ol,ul,dl{margin-top:0;margin-bottom:1rem}#images h4{margin-bottom:30px}#root{overflow:hidden}#cd-vertical-nav{position:fixed;right:-78px;top:50%;bottom:auto;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%);z-index:4}#cd-vertical-nav ul{list-style:none;padding:0}#cd-vertical-nav li{text-align:right}#cd-vertical-nav a{display:inline-block;-webkit-backface-visibility:hidden;backface-visibility:hidden;width:100%}#cd-vertical-nav a:hover span,#cd-vertical-nav a.is-selected .cd-dot{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}#cd-vertical-nav .cd-dot{position:relative;top:8px;right:calc(100% - 15px);height:10px;width:10px;border-radius:50%;background-color:#995581;-webkit-transition:-webkit-transform 0.2s, background-color 0.5s;-moz-transition:-moz-transform 0.2s, background-color 0.5s;transition:transform 0.2s, background-color 0.5s;-webkit-transform-origin:50% 50%;-moz-transform-origin:50% 50%;-ms-transform-origin:50% 50%;-o-transform-origin:50% 50%;transform-origin:50% 50%}#cd-vertical-nav a span{float:right;display:inline-block;-webkit-transform:scale(0.6);-moz-transform:scale(0.6);-ms-transform:scale(0.6);-o-transform:scale(0.6);transform:scale(0.6)}#cd-vertical-nav .cd-label{position:relative;margin-right:10px;padding:4px 14px;color:white;background:rgba(0,0,0,0.53);font-size:10px;border-radius:20px;text-transform:uppercase;font-weight:600;opacity:0;-webkit-transform-origin:100% 50%;-moz-transform-origin:100% 50%;-ms-transform-origin:100% 50%;-o-transform-origin:100% 50%;transform-origin:100% 50%}#cd-vertical-nav a:after{content:"";display:table;clear:both}#cd-vertical-nav a:hover .cd-label{opacity:1;left:-100%;-webkit-transition:-webkit-transform 0.2s, opacity 0.2s;-moz-transition:-moz-transform 0.2s, opacity 0.2s;transition:transform 0.2s, opacity 0.2s}.body-page-transition{overflow:hidden}.body-page-transition #page-transition{position:fixed;z-index:9999;width:100%;display:flex;height:100%;justify-content:center;align-items:center}.body-page-transition #page-transition>div:after{content:"";background-image:url("../img/bg7.jpg");background-size:cover;position:fixed;z-index:9998;width:100%;height:100%;top:0;left:0}.body-page-transition #page-transition>div:before{top:0;left:0;width:100%;height:100%;content:'';display:block;z-index:9999;position:absolute;background:rgba(0,0,0,0.5)}/*! nouislider - 14.0.2 - 6/28/2019 */.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative;direction:ltr}.noUi-base,.noUi-connects{width:100%;height:100%;position:relative;z-index:1}.noUi-connects{overflow:hidden;z-index:0}.noUi-connect,.noUi-origin{will-change:transform;position:absolute;z-index:1;top:0;left:0;-ms-transform-origin:0 0;-webkit-transform-origin:0 0;-webkit-transform-style:preserve-3d;transform-origin:0 0;transform-style:flat}.noUi-connect{height:100%;width:100%}.noUi-origin{height:10%;width:10%}html:not([dir="rtl"]) .noUi-horizontal .noUi-origin{left:auto;right:0}.noUi-vertical .noUi-origin{width:0}.noUi-horizontal .noUi-origin{height:0}.noUi-handle{-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute}.noUi-touch-area{height:100%;width:100%}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{-webkit-transition:transform 0.3s;transition:transform 0.3s}.noUi-state-drag *{cursor:inherit !important}.noUi-horizontal{height:2px;margin:15px 0}.noUi-horizontal .noUi-handle{box-sizing:border-box;width:14px;height:14px;left:-10px;top:-6px;cursor:pointer;border-radius:100%;-webkit-transition:all .2s ease-out;transition:all .2s ease-out;border:1px solid #9c27b0;background:#fff;box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2)}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:15px;height:15px;left:0px;top:-7px}html:not([dir="rtl"]) .noUi-horizontal .noUi-handle{right:-4px;left:auto}.noUi-target{background-color:#c8c8c8;border-radius:3px}.noUi-connects{border-radius:3px}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border-radius:3px;background:#FFF;cursor:default;box-shadow:inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB}.noUi-active{box-shadow:inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB}.noUi-handle.noUi-active{transform:scale3d(1.5, 1.5, 1)}[disabled] .noUi-connect{background:#B8B8B8}[disabled].noUi-target,[disabled].noUi-handle,[disabled] .noUi-handle{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:#999}.noUi-value{position:absolute;white-space:nowrap;text-align:center}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{position:absolute;background:#CCC}.noUi-marker-sub{background:#AAA}.noUi-marker-large{background:#AAA}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{-webkit-transform:translate(-50%, 50%);transform:translate(-50%, 50%)}.noUi-rtl .noUi-value-horizontal{-webkit-transform:translate(50%, 50%);transform:translate(50%, 50%)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{-webkit-transform:translate(0, -50%);transform:translate(0, -50%);padding-left:25px}.noUi-rtl .noUi-value-vertical{-webkit-transform:translate(0, 50%);transform:translate(0, 50%)}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #D9D9D9;border-radius:3px;background:#fff;color:#000;padding:5px;text-align:center;white-space:nowrap}.noUi-horizontal .noUi-tooltip{-webkit-transform:translate(-50%, 0);transform:translate(-50%, 0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(0, -50%);transform:translate(0, -50%);top:50%;right:120%}.noUi-target .noUi-handle{border:1px solid #333}.noUi-target.slider-primary .noUi-connect,.noUi-target.slider-primary.noUi-connect{background-color:#9c27b0}.noUi-target.slider-primary .noUi-handle{border-color:#9c27b0}.noUi-target.slider-info .noUi-connect,.noUi-target.slider-info.noUi-connect{background-color:#00bcd4}.noUi-target.slider-info .noUi-handle{border-color:#00bcd4}.noUi-target.slider-success .noUi-connect,.noUi-target.slider-success.noUi-connect{background-color:#4caf50}.noUi-target.slider-success .noUi-handle{border-color:#4caf50}.noUi-target.slider-warning .noUi-connect,.noUi-target.slider-warning.noUi-connect{background-color:#ff9800}.noUi-target.slider-warning .noUi-handle{border-color:#ff9800}.noUi-target.slider-danger .noUi-connect,.noUi-target.slider-danger.noUi-connect{background-color:#f44336}.noUi-target.slider-danger .noUi-handle{border-color:#f44336}.noUi-target.slider-rose .noUi-connect,.noUi-target.slider-rose.noUi-connect{background-color:#e91e63}.noUi-target.slider-rose .noUi-handle{border-color:#e91e63}/*! -* https://github.com/YouCanBookMe/react-datetime -*/.rdt{position:relative}.rdt .rdtPicker{-webkit-transition:all 150ms linear;-moz-transition:all 150ms linear;-o-transition:all 150ms linear;-ms-transition:all 150ms linear;transition:all 150ms linear;margin-top:-20px;visibility:hidden;display:block;opacity:0}.rdt.rdtOpen .rdtPicker{opacity:1;visibility:visible;margin-top:0}.rdt input.form-control{border:0;background-image:linear-gradient(#9c27b0, #9c27b0),linear-gradient(#d2d2d2, #d2d2d2);background-size:0 2px, 100% 1px;background-repeat:no-repeat;background-position:center bottom,center calc(100% - 1px);background-color:rgba(0,0,0,0);transition:background 0s ease-out;float:none;box-shadow:none;border-radius:0;font-weight:400;width:100%;height:36px;padding:7px 0;font-size:14px;font-family:"Roboto", "Helvetica", "Arial", sans-serif;font-weight:400;line-height:1.42857;display:block;width:100%;color:#555}.rdt input.form-control:focus{outline:none;background-image:linear-gradient(#9c27b0, #9c27b0),linear-gradient(#d2d2d2, #d2d2d2);background-size:100% 2px, 100% 1px;box-shadow:none;transition-duration:0.3s}.rdtPicker{display:none;position:absolute;width:260px;padding:4px;margin-top:1px;z-index:99999 !important;background:#fff;border-radius:0.125rem;box-shadow:0px 10px 50px 0px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;background-clip:padding-box;min-width:160px}.rdtPicker:before{display:inline-block;position:absolute;width:0;height:0;vertical-align:middle;content:"";top:-5px;left:10px;right:auto;color:#ffffff;border-bottom:0.4em solid;border-right:0.4em solid transparent;border-left:0.4em solid transparent}.rdtPicker:after{border-bottom:0.4em solid #ffffff;border-right:0.4em solid transparent;border-left:0.4em solid transparent;content:"";display:inline-block;position:absolute;top:-5px;left:10px}.rdtPicker{display:block;top:40px}.rdtStatic .rdtPicker{box-shadow:none;position:static}.rdtPicker .rdtTimeToggle{text-align:center;padding:5px;border-radius:4px}.rdtPicker table{width:100%;margin:0;border-color:#fff !important;border-collapse:collapse}.rdtPicker td,.rdtPicker th{text-align:center;padding:1px}.rdtPicker td{cursor:pointer}.rdtDay{height:30px;line-height:33px;width:30px;text-align:center;padding:0px;border-radius:50%}.rdtDay.rdtToday.rdtActive,.rdtDay.rdtActive,.rdtDay.rdtActive:hover{background-color:#9c27b0 !important;color:#fff;box-shadow:0 5px 20px 0px rgba(0,0,0,0.2),0 13px 24px -11px rgba(156,39,176,0.6)}.rdtDays tr .dow{border-bottom:1px solid #e3e3e3;text-align:center;font-size:12px;text-transform:uppercase;font-weight:400;padding-bottom:5px;padding-top:10px}.rdtDays tr .rdtOld,.rdtDays tr .rdtNew{color:#bdbdbd}.rdtPicker td.rdtDay:hover,.rdtPicker td.rdtHour:hover,.rdtPicker td.rdtMinute:hover,.rdtPicker td.rdtSecond:hover,.rdtPicker .rdtTimeToggle:hover{background:#eeeeee;cursor:pointer}.rdtPicker td.rdtToday{position:relative}.rdtPicker td.rdtActive.rdtToday:before{border-bottom-color:#fff}.rdtPicker td.rdtDisabled,.rdtPicker td.rdtDisabled:hover{background:none;color:#999999;cursor:not-allowed}.rdtPicker td span.rdtOld{color:#999999}.rdtPicker td span.rdtDisabled,.rdtPicker td span.rdtDisabled:hover{background:none;color:#999999;cursor:not-allowed}.rdtPicker .dow{width:14.2857%;border-bottom:none}.rdtPicker th.rdtSwitch{width:50px;padding:5px;border-radius:4px}.rdtPicker th.rdtNext,.rdtPicker th.rdtPrev{font-size:21px;vertical-align:top;border-radius:50%;line-height:33px}.rdtPicker .dow,.rdtPicker th.rdtSwitch,.rdtPicker th.rdtNext,.rdtPicker th.rdtPrev,.rdtPicker .rdtTimeToggle{color:#495057}.rdtPicker .rdtTimeToggle{color:#9c27b0}.rdtPicker .rdtTime th.rdtSwitch{color:#9c27b0}.rdtPrev span,.rdtNext span{display:block;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.rdtPicker th.rdtDisabled,.rdtPicker th.rdtDisabled:hover{background:none;color:#999999;cursor:not-allowed}.rdtPicker thead tr:first-child th{cursor:pointer}.rdtPicker thead tr:first-child th:hover{background:#eeeeee}.rdtPicker button{border:none;background:none;cursor:pointer}.rdtPicker button:hover{background-color:#eee}.rdtPicker thead button{width:100%;height:100%}td.rdtMonth,td.rdtYear{height:50px;width:25%;cursor:pointer}td.rdtMonth:hover,td.rdtYear:hover{background:#eee}.rdtCounters{display:inline-block}.rdtCounters>div{float:left;width:40px;font-weight:inherit;margin:3px;border-radius:50%}.rdtCounters .rdtCounterSeparator{width:0;border:1px solid transparent}.rdtCounter{height:100px}.rdtCounter{width:40px}.rdtCounter .rdtCount{padding:7px;height:40px;border:1px solid transparent}.rdtCounters .rdtCounter:last-child .rdtCount{color:#9c27b0;border-radius:50%;border:1px solid #9c27b0}.rdtCounterSeparator{padding:7px;line-height:100px}.rdtCounter .rdtBtn{line-height:40px;cursor:pointer;display:block;border-radius:50%;color:#9c27b0;-webkit-transition:all 60ms ease-in;-moz-transition:all 60ms ease-in;-o-transition:all 60ms ease-in;-ms-transition:all 60ms ease-in;transition:all 60ms ease-in;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.rdtCounter .rdtBtn:hover{background:#eee}.rdtCounter .rdtCount{font-size:inherit;line-height:25px}.rdtMilli{vertical-align:middle;padding-left:8px;width:48px}.rdtMilli input{width:100%;font-size:inherit;margin-top:37px}.rdtMonths,.rdtYears{padding-bottom:10px}.rdtMonths .rdtMonth,.rdtMonths .rdtYear,.rdtYears .rdtMonth,.rdtYears .rdtYear{display:inline-block;width:56px;height:56px;line-height:56px;margin:3px 3px;cursor:pointer;border-radius:50%;text-align:center}.rdtMonths .rdtMonth.rdtActive,.rdtMonths .rdtYear.rdtActive,.rdtYears .rdtMonth.rdtActive,.rdtYears .rdtYear.rdtActive{background-color:#9c27b0 !important;color:#fff}.image-gallery-icon{color:#fff;transition:all .2s ease-out;appearance:none;background-color:transparent;border:0;cursor:pointer;outline:none;position:absolute;z-index:4;filter:drop-shadow(0 2px 2px #1a1a1a)}@media (min-width: 768px){.image-gallery-icon:hover{color:#337ab7}.image-gallery-icon:hover .image-gallery-svg{transform:scale(1.1)}}.image-gallery-icon:focus{outline:2px solid #337ab7}.image-gallery-using-mouse .image-gallery-icon:focus{outline:none}.image-gallery-fullscreen-button,.image-gallery-play-button{bottom:0;padding:20px}.image-gallery-fullscreen-button .image-gallery-svg,.image-gallery-play-button .image-gallery-svg{height:36px;width:36px}@media (max-width: 768px){.image-gallery-fullscreen-button,.image-gallery-play-button{padding:15px}.image-gallery-fullscreen-button .image-gallery-svg,.image-gallery-play-button .image-gallery-svg{height:24px;width:24px}}@media (max-width: 480px){.image-gallery-fullscreen-button,.image-gallery-play-button{padding:10px}.image-gallery-fullscreen-button .image-gallery-svg,.image-gallery-play-button .image-gallery-svg{height:16px;width:16px}}.image-gallery-fullscreen-button{right:0}.image-gallery-play-button{left:0}.image-gallery-left-nav,.image-gallery-right-nav{padding:50px 10px;top:50%;transform:translateY(-50%)}.image-gallery-left-nav .image-gallery-svg,.image-gallery-right-nav .image-gallery-svg{height:120px;width:60px}@media (max-width: 768px){.image-gallery-left-nav .image-gallery-svg,.image-gallery-right-nav .image-gallery-svg{height:72px;width:36px}}@media (max-width: 480px){.image-gallery-left-nav .image-gallery-svg,.image-gallery-right-nav .image-gallery-svg{height:48px;width:24px}}.image-gallery-left-nav[disabled],.image-gallery-right-nav[disabled]{cursor:disabled;opacity:.6;pointer-events:none}.image-gallery-left-nav{left:0}.image-gallery-right-nav{right:0}.image-gallery{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0);position:relative}.image-gallery.fullscreen-modal{background:#000;bottom:0;height:100%;left:0;position:fixed;right:0;top:0;width:100%;z-index:5}.image-gallery.fullscreen-modal .image-gallery-content{top:50%;transform:translateY(-50%)}.image-gallery-content{position:relative;line-height:0;top:0}.image-gallery-content.fullscreen{background:#000}.image-gallery-content .image-gallery-slide .image-gallery-image{max-height:calc(100vh - 80px)}.image-gallery-content.left .image-gallery-slide .image-gallery-image,.image-gallery-content.right .image-gallery-slide .image-gallery-image{max-height:100vh}.image-gallery-slide-wrapper{position:relative}.image-gallery-slide-wrapper.left,.image-gallery-slide-wrapper.right{display:inline-block;width:calc(100% - 110px)}@media (max-width: 768px){.image-gallery-slide-wrapper.left,.image-gallery-slide-wrapper.right{width:calc(100% - 87px)}}.image-gallery-slide-wrapper.image-gallery-rtl{direction:rtl}.image-gallery-slides{line-height:0;overflow:hidden;position:relative;white-space:nowrap;text-align:center}.image-gallery-slide{left:0;position:absolute;top:0;width:100%}.image-gallery-slide.center{position:relative}.image-gallery-slide .image-gallery-image{width:100%;object-fit:contain}.image-gallery-slide .image-gallery-description{background:rgba(0,0,0,0.4);bottom:70px;color:#fff;left:0;line-height:1;padding:10px 20px;position:absolute;white-space:normal}@media (max-width: 768px){.image-gallery-slide .image-gallery-description{bottom:45px;font-size:.8em;padding:8px 15px}}.image-gallery-bullets{bottom:20px;left:0;margin:0 auto;position:absolute;right:0;width:80%;z-index:4}.image-gallery-bullets .image-gallery-bullets-container{margin:0;padding:0;text-align:center}.image-gallery-bullets .image-gallery-bullet{appearance:none;background-color:transparent;border:1px solid #fff;border-radius:50%;box-shadow:0 1px 0 #1a1a1a;cursor:pointer;display:inline-block;margin:0 5px;outline:none;padding:5px;transition:background .2s ease-out}@media (max-width: 768px){.image-gallery-bullets .image-gallery-bullet{margin:0 3px;padding:3px}}@media (max-width: 480px){.image-gallery-bullets .image-gallery-bullet{padding:2.7px}}.image-gallery-bullets .image-gallery-bullet:focus,.image-gallery-bullets .image-gallery-bullet:hover{background:#337ab7;transform:scale(1.1)}.image-gallery-bullets .image-gallery-bullet.active{background:#fff}.image-gallery-thumbnails-wrapper{position:relative}.image-gallery-thumbnails-wrapper.thumbnails-wrapper-rtl{direction:rtl}.image-gallery-thumbnails-wrapper.left,.image-gallery-thumbnails-wrapper.right{display:inline-block;vertical-align:top;width:100px}@media (max-width: 768px){.image-gallery-thumbnails-wrapper.left,.image-gallery-thumbnails-wrapper.right{width:81px}}.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails,.image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails{height:100%;width:100%;left:0;padding:0;position:absolute;top:0}.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail,.image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail{display:block;margin-right:0;padding:0}.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail+.image-gallery-thumbnail,.image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail+.image-gallery-thumbnail{margin-left:0;margin-top:2px}.image-gallery-thumbnails-wrapper.left,.image-gallery-thumbnails-wrapper.right{margin:0 5px}@media (max-width: 768px){.image-gallery-thumbnails-wrapper.left,.image-gallery-thumbnails-wrapper.right{margin:0 3px}}.image-gallery-thumbnails{overflow:hidden;padding:5px 0}@media (max-width: 768px){.image-gallery-thumbnails{padding:3px 0}}.image-gallery-thumbnails .image-gallery-thumbnails-container{cursor:pointer;text-align:center;transition:transform .45s ease-out;white-space:nowrap}.image-gallery-thumbnail{display:inline-block;border:4px solid transparent;transition:border .3s ease-out;width:100px;background:transparent;padding:0}@media (max-width: 768px){.image-gallery-thumbnail{border:3px solid transparent;width:81px}}.image-gallery-thumbnail+.image-gallery-thumbnail{margin-left:2px}.image-gallery-thumbnail .image-gallery-thumbnail-inner{position:relative}.image-gallery-thumbnail .image-gallery-thumbnail-image{vertical-align:middle;width:100%;line-height:0}.image-gallery-thumbnail.active,.image-gallery-thumbnail:hover,.image-gallery-thumbnail:focus{outline:none;border:4px solid #337ab7}@media (max-width: 768px){.image-gallery-thumbnail.active,.image-gallery-thumbnail:hover,.image-gallery-thumbnail:focus{border:3px solid #337ab7}}.image-gallery-thumbnail-label{box-sizing:border-box;color:white;font-size:1em;left:0;line-height:1em;padding:5%;position:absolute;top:50%;text-shadow:1px 1px 0 black;transform:translateY(-50%);white-space:normal;width:100%}@media (max-width: 768px){.image-gallery-thumbnail-label{font-size:.8em;line-height:.8em}}.image-gallery-index{background:rgba(0,0,0,0.4);color:#fff;line-height:1;padding:10px 20px;position:absolute;right:0;top:0;z-index:4}@media (max-width: 768px){.image-gallery-index{font-size:.8em;padding:5px 10px}}.image-gallery-left-nav,.image-gallery-right-nav{position:absolute;cursor:pointer;z-index:100;opacity:0.5;bottom:-40%;top:auto;padding:0 !important;color:#fff;font-size:5em;outline:none;background-color:transparent;border:0;transform:translateY(-50%)}.image-gallery-left-nav:before,.image-gallery-left-nav:hover:before,.image-gallery-right-nav:before,.image-gallery-right-nav:hover:before{color:#3c4858;text-shadow:none}.image-gallery-left-nav:before,.image-gallery-right-nav:before{font-family:"Material Icons";font-weight:normal;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased}.image-gallery-left-nav{left:-20px}.image-gallery-left-nav::before{content:"chevron_left"}.image-gallery-right-nav{right:-20px}.image-gallery-right-nav::before{content:"chevron_right"}.image-gallery-thumbnail{margin:0px;padding:0px;cursor:pointer;position:relative;line-height:0px;width:125px;border:none !important}.image-gallery-thumbnail+.image-gallery-thumbnail{margin:0 !important}.image-gallery-thumbnail img{max-width:100%;cursor:pointer;position:relative;margin-top:10px;margin-bottom:10px}.image-gallery-thumbnail-label{display:none !important}.image-gallery-thumbnails{padding:0 !important;overflow:hidden;width:100%}.image-gallery-thumbnails-container{position:relative;margin:0px;padding:0px;list-style-type:none;text-align:center}.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}@media (min-width: 768px){.slick-slider .slick-caption{display:block !important}}.slick-slider .slick-caption{padding-bottom:45px;position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;color:#ffffff;text-align:center;z-index:3;display:none}.slick-slider .slick-slide>div:first-child{position:relative}.slick-slider .slick-icons{position:relative;top:5px}.slick-slider .slick-image{width:100% !important;display:inline-flex !important}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:before,.slick-track:after{display:table;content:""}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir="rtl"] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}button.slick-arrow.slick-prev,button.slick-arrow.slick-next{font-size:0;line-height:0;position:absolute;top:50%;display:block;height:100%;padding:0;-ms-transform:translateY(-50%);transform:translateY(-50%);cursor:pointer;border:none;color:transparent;outline:none;background:transparent;width:15%;z-index:2;opacity:0.5}.slick-prev{left:0}.slick-prev::before{content:"\f053";font-weight:600;font-family:Font Awesome\ 5 Free;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;color:white;font-size:30px;width:100%}.slick-next{right:0}.slick-next::before{content:"\f054";font-weight:600;font-family:Font Awesome\ 5 Free;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;color:#fff;font-size:30px;width:100%}.slick-list{z-index:1}.slick-dots{margin-top:0;margin-bottom:1rem;position:absolute;bottom:5px;width:100%;padding:0;list-style:none;text-align:center;z-index:3}.slick-dots li,.slick-dots li button{width:20px;height:20px;cursor:pointer}.slick-dots li{position:relative;display:inline-block;margin:0 5px;padding:0}.slick-dots li button{font-size:0;line-height:0;display:block;padding:5px;color:transparent;border:0;outline:none;background:transparent}.slick-dots li button::before{position:absolute;top:0;left:0;width:10px;height:10px;content:"\2022";text-align:center;opacity:1;background-color:#fff;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2);border-radius:2px;transition:all 300ms linear}.slick-dots li.slick-active button:before{width:15px;height:15px;box-shadow:0 4px 5px 0 rgba(0,0,0,0.14),0 1px 10px 0 rgba(0,0,0,0.12),0 2px 4px -1px rgba(0,0,0,0.2);top:-3px}.react-tagsinput{display:inline-block;padding:4px 6px;max-width:100%;line-height:22px}.react-tagsinput-tag{cursor:pointer;margin:5px 3px 5px 0;position:relative;padding:3px 8px;border-radius:12px;color:#ffffff;font-weight:500;font-size:0.75em;text-transform:uppercase;display:inline-block;line-height:1.5em;padding-left:0.8em}.react-tagsinput-remove{cursor:pointer;font-weight:bold}.react-tagsinput-tag a::before{font-family:Font Awesome\ 5 Free;content:"\f00d";padding:0px 2px;font-weight:900}.react-tagsinput-tag a{cursor:pointer;position:absolute;top:3px;right:0px;opacity:0;background-color:transparent;color:#ffffff}.react-tagsinput-input{background:transparent;border:0;color:#777;font-family:sans-serif;font-size:13px;font-weight:400;margin-bottom:6px;margin-top:1px;outline:none;padding:5px;width:80px}.react-tagsinput .react-tagsinput-tag{-webkit-transition:all 300ms ease 0s;-moz-transition:all 300ms ease 0s;-o-transition:all 300ms ease 0s;-ms-transition:all 300ms ease 0s;transition:all 300ms ease 0s;background-color:#999}.react-tagsinput .react-tagsinput-tag:hover{padding-right:22px}.react-tagsinput .react-tagsinput-tag:hover a{opacity:1;padding-right:4px;background-color:transparent;color:#ffffff}.react-tagsinput .react-tagsinput-tag.primary{background-color:#9c27b0}.react-tagsinput .react-tagsinput-tag.info{background-color:#00bcd4}.react-tagsinput .react-tagsinput-tag.success{background-color:#4caf50}.react-tagsinput .react-tagsinput-tag.warning{background-color:#ff9800}.react-tagsinput .react-tagsinput-tag.danger{background-color:#f44336}.react-tagsinput .react-tagsinput-tag.rose{background-color:#e91e63}.react-tagsinput .react-tagsinput-tag.default{background-color:#999} diff --git a/styles/css/react-demo.css b/styles/css/react-demo.css deleted file mode 100644 index b51bd5c..0000000 --- a/styles/css/react-demo.css +++ /dev/null @@ -1,23 +0,0 @@ -@keyframes Floatingy { - from { - -webkit-transform: translate(0, 0px); - } - 65% { - -webkit-transform: translate(50px, 0); - } - to { - -webkit-transform: translate(0, 0px); - } -} - -@keyframes Floatingx { - from { - -webkit-transform: translate(50px, 0px); - } - 65% { - -webkit-transform: translate(0, 0); - } - to { - -webkit-transform: translate(50px, 0px); - } -} diff --git a/styles/globals.css b/styles/globals.css deleted file mode 100644 index 51e5184..0000000 --- a/styles/globals.css +++ /dev/null @@ -1,22 +0,0 @@ -html, -body { - padding: 0; - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, - Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; -} - -a { - color: inherit; - text-decoration: none; -} - -* { - box-sizing: border-box; -} - -.aircraft { - filter: invert(94%) sepia(64%) saturate(6447%) hue-rotate(336deg) - brightness(91%) contrast(91%); - /* How to get filter from Hex: https://codepen.io/sosuke/pen/Pjoqqp */ -} diff --git a/styles/jss/nextjs-material-kit-pro.js b/styles/jss/nextjs-material-kit-pro.js deleted file mode 100644 index 1019790..0000000 --- a/styles/jss/nextjs-material-kit-pro.js +++ /dev/null @@ -1,480 +0,0 @@ -// ############################## -// // // Function that converts from hex color to rgb color -// // // Example: input = #9c27b0 => output = 156, 39, 176 -// // // Example: input = 9c27b0 => output = 156, 39, 176 -// // // Example: input = #999 => output = 153, 153, 153 -// // // Example: input = 999 => output = 153, 153, 153 -// ############################# -const hexToRgb = (input) => { - input = input + ""; - input = input.replace("#", ""); - let hexRegex = /[0-9A-Fa-f]/g; - if (!hexRegex.test(input) || (input.length !== 3 && input.length !== 6)) { - throw new Error("input is not a valid hex color."); - } - if (input.length === 3) { - let first = input[0]; - let second = input[1]; - let last = input[2]; - input = first + first + second + second + last + last; - } - input = input.toUpperCase(input); - let first = input[0] + input[1]; - let second = input[2] + input[3]; - let last = input[4] + input[5]; - return ( - parseInt(first, 16) + - ", " + - parseInt(second, 16) + - ", " + - parseInt(last, 16) - ); -}; - -// ############################## -// // // Variables - Styles that are used on more than one component -// ############################# - -const drawerWidth = 260; - -const primaryColor = [ - "#9c27b0", - "#ab47bc", - "#8e24aa", - "#af2cc5", - "#e1bee7", - "#ba68c8", -]; -const secondaryColor = ["#fafafa"]; -const warningColor = [ - "#ff9800", - "#ffa726", - "#fb8c00", - "#ffa21a", - "#fcf8e3", - "#faf2cc", - "#ffe0b2", - "#ffb74d", -]; -const dangerColor = [ - "#f44336", - "#ef5350", - "#e53935", - "#f55a4e", - "#f2dede", - "#ebcccc", - "ef9a9a", - "#ef5350", -]; -const successColor = [ - "#4caf50", - "#66bb6a", - "#43a047", - "#5cb860", - "#dff0d8", - "#d0e9c6", - "#a5d6a7", - "#66bb6a", -]; -const infoColor = [ - "#00acc1", - "#26c6da", - "#00acc1", - "#00d3ee", - "#d9edf7", - "#c4e3f3", - "#b2ebf2", - "#4dd0e1", -]; -const roseColor = ["#e91e63", "#ec407a", "#d81b60", "#f8bbd0", "#f06292"]; -const grayColor = [ - "#999", - "#3C4858", - "#eee", - "#343434", - "#585858", - "#232323", - "#ddd", - "#6c757d", - "#333", - "#212121", - "#777", - "#D2D2D2", - "#AAA", - "#495057", - "#e5e5e5", - "#555", - "#f9f9f9", - "#ccc", - "#444", - "#f2f2f2", - "#89229b", - "#c0c1c2", - "#9a9a9a", - "#f5f5f5", - "#505050", - "#1f1f1f", -]; -const whiteColor = "#FFF"; -const blackColor = "#000"; -const twitterColor = "#55acee"; -const facebookColor = "#3b5998"; -const googleColor = "#dd4b39"; -const linkedinColor = "#0976b4"; -const pinterestColor = "#cc2127"; -const youtubeColor = "#e52d27"; -const tumblrColor = "#35465c"; -const behanceColor = "#1769ff"; -const dribbbleColor = "#ea4c89"; -const redditColor = "#ff4500"; -const instagramColor = "#125688"; - -const transition = { - transition: "all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1)", -}; - -const containerFluid = { - paddingRight: "15px", - paddingLeft: "15px", - marginRight: "auto", - marginLeft: "auto", - width: "100%", -}; -const container = { - ...containerFluid, - "@media (min-width: 576px)": { - maxWidth: "540px", - }, - "@media (min-width: 768px)": { - maxWidth: "720px", - }, - "@media (min-width: 992px)": { - maxWidth: "960px", - }, - "@media (min-width: 1200px)": { - maxWidth: "1140px", - }, -}; - -const card = { - display: "inline-block", - position: "relative", - width: "100%", - margin: "25px 0", - boxShadow: "0 1px 4px 0 rgba(" + hexToRgb(blackColor) + ", 0.14)", - borderRadius: "3px", - color: "rgba(" + hexToRgb(blackColor) + ", 0.87)", - background: whiteColor, -}; - -const defaultFont = { - fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif', - fontWeight: "300", - lineHeight: "1.5em", -}; - -const boxShadow = { - boxShadow: - "0 10px 30px -12px rgba(" + - hexToRgb(blackColor) + - ", 0.42), 0 4px 25px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(blackColor) + - ", 0.2)", -}; -const primaryBoxShadow = { - boxShadow: - "0 12px 20px -10px rgba(" + - hexToRgb(primaryColor[0]) + - ", 0.28), 0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 7px 8px -5px rgba(" + - hexToRgb(primaryColor[0]) + - ", 0.2)", -}; -const infoBoxShadow = { - boxShadow: - "0 12px 20px -10px rgba(" + - hexToRgb(infoColor[0]) + - ", 0.28), 0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 7px 8px -5px rgba(" + - hexToRgb(infoColor[0]) + - ", 0.2)", -}; -const successBoxShadow = { - boxShadow: - "0 12px 20px -10px rgba(" + - hexToRgb(successColor[0]) + - ", 0.28), 0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 7px 8px -5px rgba(" + - hexToRgb(successColor[0]) + - ", 0.2)", -}; -const warningBoxShadow = { - boxShadow: - "0 12px 20px -10px rgba(" + - hexToRgb(warningColor[0]) + - ", 0.28), 0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 7px 8px -5px rgba(" + - hexToRgb(warningColor[0]) + - ", 0.2)", -}; -const dangerBoxShadow = { - boxShadow: - "0 12px 20px -10px rgba(" + - hexToRgb(dangerColor[0]) + - ", 0.28), 0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 7px 8px -5px rgba(" + - hexToRgb(dangerColor[0]) + - ", 0.2)", -}; -const roseBoxShadow = { - boxShadow: - "0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 7px 10px -5px rgba(" + - hexToRgb(roseColor[0]) + - ", 0.4)", -}; - -const warningCardHeader = { - color: whiteColor, - background: - "linear-gradient(60deg, " + warningColor[1] + ", " + warningColor[2] + ")", - ...warningBoxShadow, -}; -const successCardHeader = { - color: whiteColor, - background: - "linear-gradient(60deg, " + successColor[1] + ", " + successColor[2] + ")", - ...successBoxShadow, -}; -const dangerCardHeader = { - color: whiteColor, - background: - "linear-gradient(60deg, " + dangerColor[1] + ", " + dangerColor[2] + ")", - ...dangerBoxShadow, -}; -const infoCardHeader = { - color: whiteColor, - background: - "linear-gradient(60deg, " + infoColor[1] + ", " + infoColor[2] + ")", - ...infoBoxShadow, -}; -const primaryCardHeader = { - color: whiteColor, - background: - "linear-gradient(60deg, " + primaryColor[1] + ", " + primaryColor[2] + ")", - ...primaryBoxShadow, -}; -const roseCardHeader = { - color: whiteColor, - background: - "linear-gradient(60deg, " + roseColor[1] + ", " + roseColor[2] + ")", - ...roseBoxShadow, -}; -const cardActions = { - margin: "0 20px 10px", - paddingTop: "10px", - borderTop: "1px solid " + grayColor[2], - height: "auto", - ...defaultFont, -}; - -const cardHeader = { - margin: "-30px 15px 0", - borderRadius: "3px", - padding: "15px", -}; - -const defaultBoxShadow = { - border: "0", - borderRadius: "3px", - boxShadow: - "0 10px 20px -12px rgba(" + - hexToRgb(blackColor) + - ", 0.42), 0 3px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(blackColor) + - ", 0.2)", - padding: "10px 0", - transition: "all 150ms ease 0s", -}; - -const title = { - color: grayColor[1], - textDecoration: "none", - fontWeight: "700", - marginTop: "30px", - marginBottom: "25px", - minHeight: "32px", - fontFamily: `"Roboto Slab", "Times New Roman", serif`, -}; - -const cardTitle = { - "&, & a": { - ...title, - marginTop: ".625rem", - marginBottom: "0.75rem", - minHeight: "auto", - }, -}; - -const cardLink = { - "& + $cardLink": { - marginLeft: "1.25rem", - }, -}; - -const cardSubtitle = { - marginBottom: "0", - marginTop: "-.375rem", -}; - -const main = { - background: whiteColor, - position: "relative", - zIndex: "3", -}; - -const mainRaised = { - "@media (max-width: 576px)": { - marginTop: "-30px", - }, - "@media (max-width: 830px)": { - marginLeft: "10px", - marginRight: "10px", - }, - margin: "-60px 30px 0px", - borderRadius: "6px", - boxShadow: - "0 16px 24px 2px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 6px 30px 5px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(blackColor) + - ", 0.2)", -}; - -const section = { - backgroundPosition: "50%", - backgroundSize: "cover", -}; - -const sectionDark = { - backgroundColor: grayColor[3], - background: - "radial-gradient(ellipse at center," + - grayColor[4] + - " 0," + - grayColor[5] + - " 100%)", -}; - -const sectionDescription = { - marginTop: "130px", -}; - -const description = { - color: grayColor[0], -}; - -const mlAuto = { - marginLeft: "auto", -}; - -const mrAuto = { - marginRight: "auto", -}; - -const btnLink = { - backgroundColor: "transparent", - boxShdow: "none", - marginTop: "5px", - marginBottom: "5px", -}; -const coloredShadow = { - // some jss/css to make the cards look a bit better on Internet Explorer - "@media all and (-ms-high-contrast: none), (-ms-high-contrast: active)": { - display: "none !important", - }, - transform: "scale(0.94)", - top: "12px", - filter: "blur(12px)", - position: "absolute", - width: "100%", - height: "100%", - backgroundSize: "cover", - zIndex: "-1", - transition: "opacity .45s", - opacity: "0", -}; - -export { - //variables - drawerWidth, - transition, - container, - containerFluid, - boxShadow, - card, - defaultFont, - primaryColor, - secondaryColor, - warningColor, - dangerColor, - successColor, - infoColor, - roseColor, - grayColor, - whiteColor, - blackColor, - twitterColor, - facebookColor, - googleColor, - linkedinColor, - pinterestColor, - youtubeColor, - tumblrColor, - behanceColor, - dribbbleColor, - redditColor, - instagramColor, - primaryBoxShadow, - infoBoxShadow, - successBoxShadow, - warningBoxShadow, - dangerBoxShadow, - roseBoxShadow, - warningCardHeader, - successCardHeader, - dangerCardHeader, - infoCardHeader, - primaryCardHeader, - roseCardHeader, - cardActions, - cardHeader, - defaultBoxShadow, - title, - cardTitle, - description, - cardLink, - cardSubtitle, - main, - mainRaised, - section, - sectionDark, - sectionDescription, - mlAuto, - mrAuto, - btnLink, - coloredShadow, - hexToRgb, -}; diff --git a/styles/jss/nextjs-material-kit-pro/buttonGroupStyle.js b/styles/jss/nextjs-material-kit-pro/buttonGroupStyle.js deleted file mode 100644 index 0be24dc..0000000 --- a/styles/jss/nextjs-material-kit-pro/buttonGroupStyle.js +++ /dev/null @@ -1,37 +0,0 @@ -const buttonGroupStyle = { - buttonGroup: { - position: "relative", - margin: "10px 1px", - display: "inline-flex", - verticalAlign: "middle", - }, - firstButton: { - borderTopRightRadius: "0", - borderBottomRightRadius: "0", - margin: "0", - position: "relative", - float: "left", - "&:hover": { - zIndex: "2", - }, - }, - middleButton: { - borderRadius: "0", - margin: "0", - position: "relative", - float: "left", - "&:hover": { - zIndex: "2", - }, - }, - lastButton: { - borderTopLeftRadius: "0", - borderBottomLeftRadius: "0", - margin: "0", - "&:hover": { - zIndex: "2", - }, - }, -}; - -export default buttonGroupStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/accordionStyle.js b/styles/jss/nextjs-material-kit-pro/components/accordionStyle.js deleted file mode 100644 index 26d6c45..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/accordionStyle.js +++ /dev/null @@ -1,141 +0,0 @@ -import { - primaryColor, - secondaryColor, - warningColor, - dangerColor, - successColor, - infoColor, - roseColor, - grayColor, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const accordionStyle = (theme) => ({ - root: { - flexGrow: 1, - marginBottom: "20px", - }, - accordion: { - boxShadow: "none", - "&:before": { - display: "none !important", - }, - }, - accordionExpanded: { - margin: "0 !important", - }, - accordionSummary: { - minHeight: "auto !important", - backgroundColor: "transparent", - borderBottom: "1px solid " + grayColor[6], - padding: "25px 10px 5px 0px", - borderTopLeftRadius: "3px", - borderTopRightRadius: "3px", - color: grayColor[1], - }, - primaryExpansionPanelSummary: { - "&:hover": { - color: primaryColor[0], - }, - }, - secondaryExpansionPanelSummary: { - "&:hover": { - color: secondaryColor[0], - }, - }, - warningExpansionPanelSummary: { - "&:hover": { - color: warningColor[0], - }, - }, - dangerExpansionPanelSummary: { - "&:hover": { - color: dangerColor[0], - }, - }, - successExpansionPanelSummary: { - "&:hover": { - color: successColor[0], - }, - }, - infoExpansionPanelSummary: { - "&:hover": { - color: infoColor[0], - }, - }, - roseExpansionPanelSummary: { - "&:hover": { - color: roseColor[0], - }, - }, - accordionSummaryExpaned: { - "& $accordionSummaryExpandIcon": { - [theme.breakpoints.up("md")]: { - top: "auto !important", - }, - transform: "rotate(180deg)", - [theme.breakpoints.down("sm")]: { - top: "10px !important", - }, - // some jss/css to make the cards look a bit better on Internet Explorer - "@media all and (-ms-high-contrast: none), (-ms-high-contrast: active)": { - display: "inline-block !important", - top: "10px !important", - }, - }, - }, - primaryExpansionPanelSummaryExpaned: { - color: primaryColor[0], - }, - secondaryExpansionPanelSummaryExpaned: { - color: secondaryColor[0], - }, - warningExpansionPanelSummaryExpaned: { - color: warningColor[0], - }, - dangerExpansionPanelSummaryExpaned: { - color: dangerColor[0], - }, - successExpansionPanelSummaryExpaned: { - color: successColor[0], - }, - infoExpansionPanelSummaryExpaned: { - color: infoColor[0], - }, - roseExpansionPanelSummaryExpaned: { - color: roseColor[0], - }, - accordionSummaryContent: { - margin: "0 !important", - }, - accordionSummaryExpandIcon: { - [theme.breakpoints.up("md")]: { - top: "auto !important", - }, - transform: "rotate(0deg)", - color: "inherit", - right: "10px", - position: "absolute", - [theme.breakpoints.down("sm")]: { - top: "10px !important", - }, - // some jss/css to make the cards look a bit better on Internet Explorer - "@media all and (-ms-high-contrast: none), (-ms-high-contrast: active)": { - display: "inline-block !important", - }, - }, - accordionSummaryExpandIconExpanded: {}, - title: { - fontSize: "15px", - fontWeight: "bolder", - marginTop: "0", - marginBottom: "0", - color: "inherit", - }, - accordionDetails: { - display: "block", - padding: "15px 0px 5px", - fontSize: ".875rem", - }, -}); - -export default accordionStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/badgeStyle.js b/styles/jss/nextjs-material-kit-pro/components/badgeStyle.js deleted file mode 100644 index 1823ac6..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/badgeStyle.js +++ /dev/null @@ -1,50 +0,0 @@ -import { - primaryColor, - warningColor, - dangerColor, - successColor, - infoColor, - roseColor, - whiteColor, - grayColor, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const badgeStyle = { - badge: { - marginRight: "3px", - borderRadius: "12px", - padding: "5px 12px", - textTransform: "uppercase", - fontSize: "10px", - fontWeight: "500", - lineHeight: "1", - color: whiteColor, - textAlign: "center", - whiteSpace: "nowrap", - verticalAlign: "baseline", - display: "inline-block", - }, - primary: { - backgroundColor: primaryColor[0], - }, - warning: { - backgroundColor: warningColor[0], - }, - danger: { - backgroundColor: dangerColor[0], - }, - success: { - backgroundColor: successColor[0], - }, - info: { - backgroundColor: infoColor[0], - }, - rose: { - backgroundColor: roseColor[0], - }, - gray: { - backgroundColor: grayColor[7], - }, -}; - -export default badgeStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/buttonStyle.js b/styles/jss/nextjs-material-kit-pro/components/buttonStyle.js deleted file mode 100644 index a8cc521..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/buttonStyle.js +++ /dev/null @@ -1,743 +0,0 @@ -import { - grayColor, - roseColor, - primaryColor, - secondaryColor, - infoColor, - successColor, - warningColor, - dangerColor, - blackColor, - whiteColor, - twitterColor, - facebookColor, - googleColor, - linkedinColor, - pinterestColor, - youtubeColor, - tumblrColor, - behanceColor, - dribbbleColor, - redditColor, - instagramColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const buttonStyle = { - button: { - minHeight: "auto", - minWidth: "auto", - backgroundColor: grayColor[0], - color: whiteColor, - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(grayColor[0]) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(grayColor[0]) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(grayColor[0]) + - ", 0.12)", - border: "none", - borderRadius: "3px", - position: "relative", - padding: "12px 30px", - margin: ".3125rem 1px", - fontSize: "12px", - fontWeight: "400", - textTransform: "uppercase", - letterSpacing: "0", - willChange: "box-shadow, transform", - transition: - "box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1)", - lineHeight: "1.42857143", - textAlign: "center", - whiteSpace: "nowrap", - verticalAlign: "middle", - touchAction: "manipulation", - cursor: "pointer", - "&:hover,&:focus": { - color: whiteColor, - backgroundColor: grayColor[0], - boxShadow: - "0 14px 26px -12px rgba(" + - hexToRgb(grayColor[0]) + - ", 0.42), 0 4px 23px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(grayColor[0]) + - ", 0.2)", - }, - "& .fab,& .fas,& .far,& .fal,& .material-icons": { - position: "relative", - display: "inline-block", - top: "0", - marginTop: "-1em", - marginBottom: "-1em", - fontSize: "1.1rem", - marginRight: "4px", - verticalAlign: "middle", - }, - "& svg": { - position: "relative", - display: "inline-block", - top: "0", - width: "18px", - height: "18px", - marginRight: "4px", - verticalAlign: "middle", - }, - "&$justIcon": { - "& .fab,& .fas,& .far,& .fal,& .material-icons": { - marginTop: "0px", - marginRight: "0px", - position: "absolute", - width: "100%", - transform: "none", - left: "0px", - top: "0px", - height: "100%", - lineHeight: "41px", - fontSize: "20px", - }, - }, - }, - fullWidth: { - width: "100%", - }, - primary: { - backgroundColor: primaryColor[0], - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(primaryColor[0]) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(primaryColor[0]) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(primaryColor[0]) + - ", 0.12)", - "&:hover,&:focus": { - backgroundColor: primaryColor[0], - boxShadow: - "0 14px 26px -12px rgba(" + - hexToRgb(primaryColor[0]) + - ", 0.42), 0 4px 23px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(primaryColor[0]) + - ", 0.2)", - }, - }, - secondary: { - color: "rgba(" + hexToRgb(blackColor) + ",.87)", - backgroundColor: secondaryColor[0], - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(secondaryColor[0]) + - ",.14), 0 3px 1px -2px rgba(" + - hexToRgb(secondaryColor[0]) + - ",.2), 0 1px 5px 0 rgba(" + - hexToRgb(secondaryColor[0]) + - ",.12)", - "&:hover,&:focus": { - boxShdow: - "0 14px 26px -12px rgba(" + - hexToRgb(secondaryColor[0]) + - ",.42), 0 4px 23px 0 rgba(" + - hexToRgb(blackColor) + - ",.12), 0 8px 10px -5px rgba(" + - hexToRgb(secondaryColor[0]) + - ",.2)", - color: "rgba(" + hexToRgb(blackColor) + ",.87)", - backgroundColor: grayColor[19], - }, - }, - info: { - backgroundColor: infoColor[0], - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(infoColor[0]) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(infoColor[0]) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(infoColor[0]) + - ", 0.12)", - "&:hover,&:focus": { - backgroundColor: infoColor[0], - boxShadow: - "0 14px 26px -12px rgba(" + - hexToRgb(infoColor[0]) + - ", 0.42), 0 4px 23px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(infoColor[0]) + - ", 0.2)", - }, - }, - success: { - backgroundColor: successColor[0], - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(successColor[0]) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(successColor[0]) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(successColor[0]) + - ", 0.12)", - "&:hover,&:focus": { - backgroundColor: successColor[0], - boxShadow: - "0 14px 26px -12px rgba(" + - hexToRgb(successColor[0]) + - ", 0.42), 0 4px 23px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(successColor[0]) + - ", 0.2)", - }, - }, - warning: { - backgroundColor: warningColor[0], - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(warningColor[0]) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(warningColor[0]) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(warningColor[0]) + - ", 0.12)", - "&:hover,&:focus": { - backgroundColor: warningColor[0], - boxShadow: - "0 14px 26px -12px rgba(" + - hexToRgb(warningColor[0]) + - ", 0.42), 0 4px 23px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(warningColor[0]) + - ", 0.2)", - }, - }, - danger: { - backgroundColor: dangerColor[0], - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(dangerColor[0]) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(dangerColor[0]) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(dangerColor[0]) + - ", 0.12)", - "&:hover,&:focus": { - backgroundColor: dangerColor[0], - boxShadow: - "0 14px 26px -12px rgba(" + - hexToRgb(dangerColor[0]) + - ", 0.42), 0 4px 23px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(dangerColor[0]) + - ", 0.2)", - }, - }, - rose: { - backgroundColor: roseColor[0], - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(roseColor[0]) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(roseColor[0]) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(roseColor[0]) + - ", 0.12)", - "&:hover,&:focus": { - backgroundColor: roseColor[0], - boxShadow: - "0 14px 26px -12px rgba(" + - hexToRgb(roseColor[0]) + - ", 0.42), 0 4px 23px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(roseColor[0]) + - ", 0.2)", - }, - }, - white: { - "&,&:focus,&:hover": { - backgroundColor: whiteColor, - color: grayColor[0], - }, - }, - twitter: { - backgroundColor: twitterColor, - color: whiteColor, - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(twitterColor) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(twitterColor) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(twitterColor) + - ", 0.12)", - "&:hover,&:focus,&:visited": { - backgroundColor: twitterColor, - color: whiteColor, - boxShadow: - "0 14px 26px -12px rgba(" + - hexToRgb(twitterColor) + - ", 0.42), 0 4px 23px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(twitterColor) + - ", 0.2)", - }, - }, - facebook: { - backgroundColor: facebookColor, - color: whiteColor, - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(facebookColor) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(facebookColor) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(facebookColor) + - ", 0.12)", - "&:hover,&:focus": { - backgroundColor: facebookColor, - color: whiteColor, - boxShadow: - "0 14px 26px -12px rgba(" + - hexToRgb(facebookColor) + - ", 0.42), 0 4px 23px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(facebookColor) + - ", 0.2)", - }, - }, - google: { - backgroundColor: googleColor, - color: whiteColor, - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(googleColor) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(googleColor) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(googleColor) + - ", 0.12)", - "&:hover,&:focus": { - backgroundColor: googleColor, - color: whiteColor, - boxShadow: - "0 14px 26px -12px rgba(" + - hexToRgb(googleColor) + - ", 0.42), 0 4px 23px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(googleColor) + - ", 0.2)", - }, - }, - linkedin: { - backgroundColor: linkedinColor, - color: whiteColor, - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(linkedinColor) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(linkedinColor) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(linkedinColor) + - ", 0.12)", - "&:hover,&:focus": { - backgroundColor: linkedinColor, - color: whiteColor, - boxShadow: - "0 14px 26px -12px rgba(" + - hexToRgb(linkedinColor) + - ", 0.42), 0 4px 23px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(linkedinColor) + - ", 0.2)", - }, - }, - pinterest: { - backgroundColor: pinterestColor, - color: whiteColor, - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(pinterestColor) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(pinterestColor) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(pinterestColor) + - ", 0.12)", - "&:hover,&:focus": { - backgroundColor: pinterestColor, - color: whiteColor, - boxShadow: - "0 14px 26px -12px rgba(" + - hexToRgb(pinterestColor) + - ", 0.42), 0 4px 23px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(pinterestColor) + - ", 0.2)", - }, - }, - youtube: { - backgroundColor: youtubeColor, - color: whiteColor, - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(youtubeColor) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(youtubeColor) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(youtubeColor) + - ", 0.12)", - "&:hover,&:focus": { - backgroundColor: youtubeColor, - color: whiteColor, - boxShadow: - "0 14px 26px -12px rgba(" + - hexToRgb(youtubeColor) + - ", 0.42), 0 4px 23px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(youtubeColor) + - ", 0.2)", - }, - }, - tumblr: { - backgroundColor: tumblrColor, - color: whiteColor, - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(tumblrColor) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(tumblrColor) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(tumblrColor) + - ", 0.12)", - "&:hover,&:focus": { - backgroundColor: tumblrColor, - color: whiteColor, - boxShadow: - "0 14px 26px -12px rgba(" + - hexToRgb(tumblrColor) + - ", 0.42), 0 4px 23px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(tumblrColor) + - ", 0.2)", - }, - }, - github: { - backgroundColor: grayColor[8], - color: whiteColor, - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(grayColor[8]) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(grayColor[8]) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(grayColor[8]) + - ", 0.12)", - "&:hover,&:focus": { - backgroundColor: grayColor[8], - color: whiteColor, - boxShadow: - "0 14px 26px -12px rgba(" + - hexToRgb(grayColor[8]) + - ", 0.42), 0 4px 23px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(grayColor[8]) + - ", 0.2)", - }, - }, - behance: { - backgroundColor: behanceColor, - color: whiteColor, - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(behanceColor) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(behanceColor) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(behanceColor) + - ", 0.12)", - "&:hover,&:focus": { - backgroundColor: behanceColor, - color: whiteColor, - boxShadow: - "0 14px 26px -12px rgba(" + - hexToRgb(behanceColor) + - ", 0.42), 0 4px 23px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(behanceColor) + - ", 0.2)", - }, - }, - dribbble: { - backgroundColor: dribbbleColor, - color: whiteColor, - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(dribbbleColor) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(dribbbleColor) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(dribbbleColor) + - ", 0.12)", - "&:hover,&:focus": { - backgroundColor: dribbbleColor, - color: whiteColor, - boxShadow: - "0 14px 26px -12px rgba(" + - hexToRgb(dribbbleColor) + - ", 0.42), 0 4px 23px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(dribbbleColor) + - ", 0.2)", - }, - }, - reddit: { - backgroundColor: redditColor, - color: whiteColor, - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(redditColor) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(redditColor) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(redditColor) + - ", 0.12)", - "&:hover,&:focus": { - backgroundColor: redditColor, - color: whiteColor, - boxShadow: - "0 14px 26px -12px rgba(" + - hexToRgb(redditColor) + - ", 0.42), 0 4px 23px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(redditColor) + - ", 0.2)", - }, - }, - instagram: { - backgroundColor: instagramColor, - color: whiteColor, - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(instagramColor) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(instagramColor) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(instagramColor) + - ", 0.12)", - "&:hover,&:focus": { - backgroundColor: instagramColor, - color: whiteColor, - boxShadow: - "0 14px 26px -12px rgba(" + - hexToRgb(instagramColor) + - ", 0.42), 0 4px 23px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(instagramColor) + - ", 0.2)", - }, - }, - simple: { - "&,&:focus,&:hover": { - color: whiteColor, - background: "transparent", - boxShadow: "none", - }, - "&$primary": { - "&,&:focus,&:hover,&:visited": { - color: primaryColor[0], - }, - }, - "&$info": { - "&,&:focus,&:hover,&:visited": { - color: infoColor[0], - }, - }, - "&$success": { - "&,&:focus,&:hover,&:visited": { - color: successColor[0], - }, - }, - "&$warning": { - "&,&:focus,&:hover,&:visited": { - color: warningColor[0], - }, - }, - "&$rose": { - "&,&:focus,&:hover,&:visited": { - color: roseColor[0], - }, - }, - "&$danger": { - "&,&:focus,&:hover,&:visited": { - color: dangerColor[0], - }, - }, - "&$twitter": { - "&,&:focus,&:hover,&:visited": { - color: twitterColor, - }, - }, - "&$facebook": { - "&,&:focus,&:hover,&:visited": { - color: facebookColor, - }, - }, - "&$google": { - "&,&:focus,&:hover,&:visited": { - color: googleColor, - }, - }, - "&$linkedin": { - "&,&:focus,&:hover,&:visited": { - color: linkedinColor, - }, - }, - "&$pinterest": { - "&,&:focus,&:hover,&:visited": { - color: pinterestColor, - }, - }, - "&$youtube": { - "&,&:focus,&:hover,&:visited": { - color: youtubeColor, - }, - }, - "&$tumblr": { - "&,&:focus,&:hover,&:visited": { - color: tumblrColor, - }, - }, - "&$github": { - "&,&:focus,&:hover,&:visited": { - color: grayColor[8], - }, - }, - "&$behance": { - "&,&:focus,&:hover,&:visited": { - color: behanceColor, - }, - }, - "&$dribbble": { - "&,&:focus,&:hover,&:visited": { - color: dribbbleColor, - }, - }, - "&$reddit": { - "&,&:focus,&:hover,&:visited": { - color: redditColor, - }, - }, - "&$instagram": { - "&,&:focus,&:hover,&:visited": { - color: instagramColor, - }, - }, - }, - transparent: { - "&,&:focus,&:hover": { - color: "inherit", - background: "transparent", - boxShadow: "none", - }, - }, - disabled: { - opacity: "0.65", - pointerEvents: "none", - }, - lg: { - "&$justIcon": { - "& .fab,& .fas,& .far,& .fal,& svg,& .material-icons": { - marginTop: "-4px", - }, - }, - padding: "1.125rem 2.25rem", - fontSize: "0.875rem", - lineHeight: "1.333333", - borderRadius: "0.2rem", - }, - sm: { - "&$justIcon": { - "& .fab,& .fas,& .far,& .fal,& svg,& .material-icons": { - marginTop: "1px", - }, - }, - padding: "0.40625rem 1.25rem", - fontSize: "0.6875rem", - lineHeight: "1.5", - borderRadius: "0.2rem", - }, - round: { - borderRadius: "30px", - }, - block: { - width: "100% !important", - }, - link: { - "&,&:hover,&:focus": { - backgroundColor: "transparent", - color: grayColor[0], - boxShadow: "none", - }, - }, - justIcon: { - paddingLeft: "12px", - paddingRight: "12px", - fontSize: "20px", - height: "41px", - minWidth: "41px", - width: "41px", - "& .fab,& .fas,& .far,& .fal,& svg,& .material-icons": { - marginRight: "0px", - }, - "&$lg": { - height: "57px", - minWidth: "57px", - width: "57px", - lineHeight: "56px", - "& .fab,& .fas,& .far,& .fal,& .material-icons": { - fontSize: "32px", - lineHeight: "56px", - }, - "& svg": { - width: "32px", - height: "32px", - }, - }, - "&$sm": { - height: "30px", - minWidth: "30px", - width: "30px", - "& .fab,& .fas,& .far,& .fal,& .material-icons": { - fontSize: "17px", - lineHeight: "29px", - }, - "& svg": { - width: "17px", - height: "17px", - }, - }, - }, - fileButton: { - // display: "inline-block" - }, -}; - -export default buttonStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/cardAvatarStyle.js b/styles/jss/nextjs-material-kit-pro/components/cardAvatarStyle.js deleted file mode 100644 index 8e33118..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/cardAvatarStyle.js +++ /dev/null @@ -1,55 +0,0 @@ -import { blackColor, hexToRgb } from "styles/jss/nextjs-material-kit-pro.js"; - -const cardAvatarStyle = { - cardAvatar: { - "&$cardAvatarProfile img,&$cardAvatarTestimonial img": { - width: "100%", - height: "auto", - }, - }, - cardAvatarProfile: { - maxWidth: "130px", - maxHeight: "130px", - margin: "-50px auto 0", - borderRadius: "50%", - overflow: "hidden", - padding: "0", - boxShadow: - "0 16px 38px -12px rgba(" + - hexToRgb(blackColor) + - ", 0.56), 0 4px 25px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(blackColor) + - ", 0.2)", - "&$cardAvatarPlain": { - marginTop: "0", - }, - }, - cardAvatarPlain: {}, - cardAvatarTestimonial: { - margin: "-50px auto 0", - maxWidth: "100px", - maxHeight: "100px", - borderRadius: "50%", - overflow: "hidden", - padding: "0", - boxShadow: - "0 16px 38px -12px rgba(" + - hexToRgb(blackColor) + - ", 0.56), 0 4px 25px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(blackColor) + - ", 0.2)", - "&$cardAvatarPlain": { - marginTop: "0", - }, - }, - cardAvatarTestimonialFooter: { - marginBottom: "-50px", - marginTop: "10px", - }, -}; - -export default cardAvatarStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/cardBodyStyle.js b/styles/jss/nextjs-material-kit-pro/components/cardBodyStyle.js deleted file mode 100644 index f9a9e79..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/cardBodyStyle.js +++ /dev/null @@ -1,46 +0,0 @@ -import { whiteColor, hexToRgb } from "styles/jss/nextjs-material-kit-pro.js"; - -const cardBodyStyle = { - cardBody: { - padding: "0.9375rem 1.875rem", - flex: "1 1 auto", - WebkitBoxFlex: "1", - }, - cardBodyBackground: { - position: "relative", - zIndex: "2", - minHeight: "280px", - paddingTop: "40px", - paddingBottom: "40px", - maxWidth: "440px", - margin: "0 auto", - }, - cardBodyPlain: { - paddingLeft: "5px", - paddingRight: "5px", - }, - cardBodyFormHorizontal: { - paddingLeft: "15px", - paddingRight: "15px", - "& form": { - margin: "0", - }, - }, - cardPricing: { - padding: "15px!important", - margin: "0px!important", - }, - cardSignup: { - padding: "0px 30px 0px 30px", - }, - cardBodyColor: { - borderRadius: "6px", - "& h1,& h2,& h3": { - "& small": { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.8)", - }, - }, - }, -}; - -export default cardBodyStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/cardFooterStyle.js b/styles/jss/nextjs-material-kit-pro/components/cardFooterStyle.js deleted file mode 100644 index 42f9692..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/cardFooterStyle.js +++ /dev/null @@ -1,25 +0,0 @@ -const cardFooterStyle = { - cardFooter: { - display: "flex", - alignItems: "center", - backgroundColor: "transparent", - padding: "0.9375rem 1.875rem", - paddingTop: "0", - }, - cardFooterProfile: { - marginTop: "-15px", - }, - cardFooterPlain: { - paddingLeft: "5px", - paddingRight: "5px", - backgroundColor: "transparent", - }, - cardFooterPricing: { - zIndex: "2", - }, - cardFooterTestimonial: { - display: "block", - }, -}; - -export default cardFooterStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/cardHeaderStyle.js b/styles/jss/nextjs-material-kit-pro/components/cardHeaderStyle.js deleted file mode 100644 index f0419c6..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/cardHeaderStyle.js +++ /dev/null @@ -1,77 +0,0 @@ -import { - warningCardHeader, - successCardHeader, - dangerCardHeader, - infoCardHeader, - primaryCardHeader, - roseCardHeader, - blackColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const cardHeaderStyle = { - cardHeader: { - borderRadius: "3px", - padding: "1rem 15px", - marginLeft: "15px", - marginRight: "15px", - marginTop: "-30px", - border: "0", - marginBottom: "0", - }, - cardHeaderPlain: { - marginLeft: "0px", - marginRight: "0px", - "&$cardHeaderImage": { - margin: "0 !important", - }, - }, - cardHeaderImage: { - position: "relative", - padding: "0", - zIndex: "1", - marginLeft: "15px", - marginRight: "15px", - marginTop: "-30px", - borderRadius: "6px", - "& img": { - width: "100%", - borderRadius: "6px", - pointerEvents: "none", - boxShadow: - "0 5px 15px -8px rgba(" + - hexToRgb(blackColor) + - ", 0.24), 0 8px 10px -5px rgba(" + - hexToRgb(blackColor) + - ", 0.2)", - }, - "& a": { - display: "block", - }, - }, - noShadow: { - "& img": { - boxShadow: "none !important", - }, - }, - cardHeaderContact: { - margin: "0 15px", - marginTop: "-20px", - }, - cardHeaderSignup: { - marginLeft: "20px", - marginRight: "20px", - marginTop: "-40px", - padding: "20px 0", - width: "100%", - marginBottom: "15px", - }, - warningCardHeader, - successCardHeader, - dangerCardHeader, - infoCardHeader, - primaryCardHeader, - roseCardHeader, -}; - -export default cardHeaderStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/cardStyle.js b/styles/jss/nextjs-material-kit-pro/components/cardStyle.js deleted file mode 100644 index 91f6082..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/cardStyle.js +++ /dev/null @@ -1,194 +0,0 @@ -import { - blackColor, - whiteColor, - grayColor, - roseColor, - primaryColor, - successColor, - dangerColor, - warningColor, - infoColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const cardStyle = { - card: { - border: "0", - marginBottom: "30px", - marginTop: "30px", - borderRadius: "6px", - color: "rgba(" + hexToRgb(blackColor) + ", 0.87)", - background: whiteColor, - width: "100%", - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(blackColor) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(blackColor) + - ", 0.12)", - position: "relative", - display: "flex", - flexDirection: "column", - minWidth: "0", - wordWrap: "break-word", - fontSize: ".875rem", - // some jss/css to make the cards look a bit better on Internet Explorer - "@media all and (-ms-high-contrast: none), (-ms-high-contrast: active)": { - display: "inline-block !important", - }, - }, - cardPlain: { - background: "transparent", - boxShadow: "none", - }, - cardProfile: { - marginTop: "30px", - textAlign: "center", - }, - cardBlog: { - marginTop: "60px", - }, - cardRaised: { - boxShadow: - "0 16px 38px -12px rgba(" + - hexToRgb(blackColor) + - ", 0.56), 0 4px 25px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(blackColor) + - ", 0.2)", - }, - cardBackground: { - backgroundPosition: "50%", - backgroundSize: "cover", - textAlign: "center", - color: whiteColor, - "& h3": { - color: whiteColor + " !important", - }, - "& p": { - color: "rgba(" + hexToRgb(whiteColor) + ",0.7)!important", - }, - "&:after": { - position: "absolute", - zIndex: "1", - width: "100%", - height: "100%", - display: "block", - left: "0", - top: "0", - content: '""', - backgroundColor: "rgba(" + hexToRgb(blackColor) + ", 0.56)", - borderRadius: "6px", - }, - "& small": { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.7) !important", - }, - }, - cardPricing: { - textAlign: "center", - "&:after": { - backgroundColor: "rgba(" + hexToRgb(blackColor) + ", 0.7) !important", - }, - "& ul": { - listStyle: "none", - padding: 0, - maxWidth: "240px", - margin: "10px auto", - }, - "& ul li": { - color: grayColor[0], - textAlign: "center", - padding: "12px 0px", - borderBottom: "1px solid rgba(" + hexToRgb(grayColor[0]) + ",0.3)", - }, - "& ul li:last-child": { - border: 0, - }, - "& ul li b": { - color: grayColor[1], - }, - "& h1": { - marginTop: "30px", - }, - "& h1 small": { - display: "inline-flex", - height: 0, - fontSize: "18px", - }, - "& h1 small:first-child": { - position: "relative", - top: "-17px", - fontSize: "26px", - }, - "& ul li svg,& ul li .fab,& ul li .fas,& ul li .far,& ul li .fal,& ul li .material-icons": { - position: "relative", - top: "7px", - }, - }, - cardPricingColor: { - "& ul li": { - color: whiteColor, - borderColor: "rgba(" + hexToRgb(whiteColor) + ",0.3)", - "& b, & svg,& .fab,& .fas,& .far,& .fal,& .material-icons": { - color: whiteColor, - fontWeight: "700", - }, - }, - }, - cardProduct: { - marginTop: "30px", - }, - primary: { - background: - "linear-gradient(60deg," + primaryColor[1] + ", " + primaryColor[2] + ")", - "& h1 small": { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.8)", - }, - color: whiteColor, - }, - info: { - background: - "linear-gradient(60deg," + infoColor[1] + "," + infoColor[2] + ")", - "& h1 small": { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.8)", - }, - color: whiteColor, - }, - success: { - background: - "linear-gradient(60deg," + successColor[1] + "," + successColor[2] + ")", - "& h1 small": { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.8)", - }, - color: whiteColor, - }, - warning: { - background: - "linear-gradient(60deg," + warningColor[1] + "," + warningColor[2] + ")", - "& h1 small": { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.8)", - }, - color: whiteColor, - }, - danger: { - background: - "linear-gradient(60deg," + dangerColor[1] + "," + dangerColor[2] + ")", - "& h1 small": { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.8)", - }, - color: whiteColor, - }, - rose: { - background: - "linear-gradient(60deg," + roseColor[1] + "," + roseColor[2] + ")", - "& h1 small": { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.8)", - }, - color: whiteColor, - }, -}; - -export default cardStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/customDropdownStyle.js b/styles/jss/nextjs-material-kit-pro/components/customDropdownStyle.js deleted file mode 100644 index 8718721..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/customDropdownStyle.js +++ /dev/null @@ -1,226 +0,0 @@ -import { - defaultFont, - primaryColor, - primaryBoxShadow, - infoColor, - infoBoxShadow, - successColor, - successBoxShadow, - warningColor, - warningBoxShadow, - dangerColor, - dangerBoxShadow, - roseColor, - roseBoxShadow, - blackColor, - whiteColor, - grayColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const customDropdownStyle = (theme) => ({ - popperClose: { - pointerEvents: "none", - display: "none !important", - }, - popperNav: { - [theme.breakpoints.down("sm")]: { - "&, &$popperResponsive": { - position: "static !important", - left: "unset !important", - top: "unset !important", - transform: "none !important", - willChange: "none !important", - "& > div": { - boxShadow: "none !important", - marginLeft: "1.5rem", - marginRight: "1.5rem", - transition: "none !important", - marginTop: "0px !important", - marginBottom: "5px !important", - padding: "0px !important", - }, - }, - }, - }, - manager: { - "& > div > button:first-child > span:first-child, & > div > a:first-child > span:first-child": { - width: "100%", - }, - }, - innerManager: { - display: "block", - "& > div > button,& > div > a": { - margin: "0px !important", - color: "inherit !important", - padding: "10px 20px !important", - "& > span:first-child": { - width: "100%", - justifyContent: "flex-start", - }, - }, - }, - target: { - "& > button:first-child > span:first-child, & > a:first-child > span:first-child": { - display: "inline-block", - }, - "& $caret": { - marginLeft: "0px", - }, - }, - dropdown: { - borderRadius: "3px", - border: "0", - boxShadow: "0 2px 5px 0 rgba(" + hexToRgb(blackColor) + ", 0.26)", - top: "100%", - zIndex: "1000", - minWidth: "160px", - padding: "5px 0", - margin: "2px 0 0", - fontSize: "14px", - textAlign: "left", - listStyle: "none", - backgroundColor: whiteColor, - backgroundClip: "padding-box", - }, - menuList: { - padding: "0", - }, - popperResponsive: { - zIndex: "1200", - position: "absolute !important", - [theme.breakpoints.down("sm")]: { - zIndex: "1640", - float: "none", - width: "auto", - marginTop: "0", - backgroundColor: "transparent", - border: "0", - boxShadow: "none", - color: "black", - }, - }, - dropdownItem: { - ...defaultFont, - fontSize: "13px", - padding: "10px 20px", - margin: "0 5px", - borderRadius: "2px", - position: "relative", - transition: "all 150ms linear", - display: "block", - clear: "both", - fontWeight: "400", - height: "100%", - color: grayColor[8], - whiteSpace: "nowrap", - minHeight: "unset", - }, - darkHover: { - "&:hover": { - boxShadow: - "0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 7px 10px -5px rgba(" + - hexToRgb(grayColor[9]) + - ", 0.4)", - backgroundColor: grayColor[9], - color: whiteColor, - }, - }, - primaryHover: { - "&:hover": { - backgroundColor: primaryColor[0], - color: whiteColor, - ...primaryBoxShadow, - }, - }, - infoHover: { - "&:hover": { - backgroundColor: infoColor[0], - color: whiteColor, - ...infoBoxShadow, - }, - }, - successHover: { - "&:hover": { - backgroundColor: successColor[0], - color: whiteColor, - ...successBoxShadow, - }, - }, - warningHover: { - "&:hover": { - backgroundColor: warningColor[0], - color: whiteColor, - ...warningBoxShadow, - }, - }, - dangerHover: { - "&:hover": { - backgroundColor: dangerColor[0], - color: whiteColor, - ...dangerBoxShadow, - }, - }, - roseHover: { - "&:hover": { - backgroundColor: roseColor[0], - color: whiteColor, - ...roseBoxShadow, - }, - }, - dropdownItemRTL: { - textAlign: "right", - }, - dropdownDividerItem: { - margin: "5px 0", - backgroundColor: "rgba(" + hexToRgb(blackColor) + ", 0.12)", - height: "1px", - overflow: "hidden", - }, - buttonIcon: { - width: "20px", - height: "20px", - }, - caret: { - transition: "all 150ms ease-in", - display: "inline-block", - width: "0", - height: "0", - marginLeft: "4px", - verticalAlign: "middle", - borderTop: "4px solid", - borderRight: "4px solid transparent", - borderLeft: "4px solid transparent", - }, - caretActive: { - transform: "rotate(180deg)", - }, - caretDropup: { - transform: "rotate(180deg)", - }, - caretRTL: { - marginRight: "4px", - }, - dropdownHeader: { - display: "block", - padding: "0.1875rem 1.25rem", - fontSize: "0.75rem", - lineHeight: "1.428571", - color: grayColor[10], - whiteSpace: "nowrap", - fontWeight: "inherit", - marginTop: "10px", - minHeight: "24px", - "&:hover,&:focus": { - backgroundColor: "transparent", - cursor: "auto", - }, - }, - noLiPadding: { - padding: "0", - }, -}); - -export default customDropdownStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/customFileInputStyle.js b/styles/jss/nextjs-material-kit-pro/components/customFileInputStyle.js deleted file mode 100644 index 1ce6351..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/customFileInputStyle.js +++ /dev/null @@ -1,20 +0,0 @@ -const customFileInputStyle = { - inputFile: { - opacity: "0", - position: "absolute", - top: "0", - right: "0", - bottom: "0", - left: "0", - width: "100%", - height: "100%", - zIndex: "-1", - }, - inputFileWrapper: { - "& button svg": { - color: "inherit", - }, - }, -}; - -export default customFileInputStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/customInputStyle.js b/styles/jss/nextjs-material-kit-pro/components/customInputStyle.js deleted file mode 100644 index 7d84808..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/customInputStyle.js +++ /dev/null @@ -1,102 +0,0 @@ -import { - primaryColor, - dangerColor, - successColor, - whiteColor, - grayColor, - defaultFont, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const customInputStyle = { - disabled: { - "&:before": { - backgroundColor: "transparent !important", - }, - }, - underline: { - "&:hover:not($disabled):before,&:before": { - borderBottomColor: grayColor[11] + " !important", - borderBottomWidth: "1px !important", - }, - "&:after": { - borderBottomColor: primaryColor[0], - }, - }, - underlineError: { - "&:after": { - borderBottomColor: dangerColor[0], - }, - }, - underlineSuccess: { - "&:after": { - borderBottomColor: successColor[0], - }, - }, - labelRoot: { - ...defaultFont, - color: grayColor[12] + " !important", - fontWeight: "400", - fontSize: "14px", - lineHeight: "1.42857", - top: "10px", - letterSpacing: "unset", - "& + $underline": { - marginTop: "0px", - }, - }, - labelRootError: { - color: dangerColor[0] + " !important", - }, - labelRootSuccess: { - color: successColor[0] + " !important", - }, - feedback: { - position: "absolute", - bottom: "4px", - right: "0", - zIndex: "2", - display: "block", - width: "24px", - height: "24px", - textAlign: "center", - pointerEvents: "none", - }, - formControl: { - margin: "0 0 17px 0", - paddingTop: "27px", - position: "relative", - "& svg,& .fab,& .far,& .fal,& .fas,& .material-icons": { - color: grayColor[13], - }, - }, - whiteUnderline: { - "&:hover:not($disabled):before,&:before": { - borderBottomColor: whiteColor, - }, - "&:after": { - borderBottomColor: whiteColor, - }, - }, - input: { - color: grayColor[13], - height: "unset", - "&,&::placeholder": { - fontSize: "14px", - fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif', - fontWeight: "400", - lineHeight: "1.42857", - opacity: "1", - }, - "&::placeholder": { - color: grayColor[12], - }, - }, - whiteInput: { - "&,&::placeholder": { - color: whiteColor, - opacity: "1", - }, - }, -}; - -export default customInputStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/customLinearProgressStyle.js b/styles/jss/nextjs-material-kit-pro/components/customLinearProgressStyle.js deleted file mode 100644 index 5f74c6a..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/customLinearProgressStyle.js +++ /dev/null @@ -1,65 +0,0 @@ -import { - primaryColor, - warningColor, - dangerColor, - successColor, - infoColor, - roseColor, - grayColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const customLinearProgressStyle = { - root: { - height: "4px", - marginBottom: "20px", - overflow: "hidden", - }, - bar: { - height: "4px", - }, - primary: { - backgroundColor: primaryColor[0], - }, - warning: { - backgroundColor: warningColor[0], - }, - danger: { - backgroundColor: dangerColor[0], - }, - success: { - backgroundColor: successColor[0], - }, - info: { - backgroundColor: infoColor[0], - }, - rose: { - backgroundColor: roseColor[0], - }, - gray: { - backgroundColor: grayColor[0], - }, - primaryBackground: { - background: "rgba(" + hexToRgb(primaryColor[0]) + ", 0.2)", - }, - warningBackground: { - background: "rgba(" + hexToRgb(warningColor[0]) + ", 0.2)", - }, - dangerBackground: { - background: "rgba(" + hexToRgb(dangerColor[0]) + ", 0.2)", - }, - successBackground: { - background: "rgba(" + hexToRgb(successColor[0]) + ", 0.2)", - }, - infoBackground: { - background: "rgba(" + hexToRgb(infoColor[0]) + ", 0.2)", - }, - roseBackground: { - background: "rgba(" + hexToRgb(roseColor[0]) + ", 0.2)", - }, - grayBackground: { - background: "rgba(" + hexToRgb(grayColor[6]) + ", 0.2)", - }, -}; - -export default customLinearProgressStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/customTabsStyle.js b/styles/jss/nextjs-material-kit-pro/components/customTabsStyle.js deleted file mode 100644 index d4ebf64..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/customTabsStyle.js +++ /dev/null @@ -1,70 +0,0 @@ -import { - whiteColor, - defaultFont, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const customTabsStyle = { - cardTitle: { - ...defaultFont, - float: "left", - padding: "10px 10px 10px 0", - lineHeight: "24px", - fontSize: "14px", - color: whiteColor, - }, - cardTitleRTL: { - float: "right", - padding: "10px 0px 10px 10px !important", - }, - displayNone: { - display: "none", - }, - tabsContainer: {}, - tabsContainerRTL: { - float: "right", - }, - tabIcon: { - width: "24px", - height: "24px", - marginRight: "4px", - }, - customTabsRoot: { - minHeight: "unset !important", - }, - customTabSelected: { - backgroundColor: "rgba(" + hexToRgb(whiteColor) + ", 0.2)", - transition: "background-color .4s", - }, - customTabRoot: { - width: "auto", - minWidth: "70px", - borderRadius: "3px", - opacity: "1", - height: "auto", - padding: "10px 15px", - display: "block", - minHeight: "unset", - fontWeight: "500", - fontSize: "12px", - lineHeight: "24px", - }, - customTabWrapper: { - display: "inline-block", - minHeight: "unset !important", - minWidth: "unset !important", - width: "unset !important", - height: "unset !important", - maxWidth: "unset !important", - maxHeight: "unset !important", - "& > svg": { - verticalAlign: "middle", - margin: "-1.55px 5px 0 0 !important", - }, - "&,& *": { - letterSpacing: "normal !important", - }, - }, -}; - -export default customTabsStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/footerStyle.js b/styles/jss/nextjs-material-kit-pro/components/footerStyle.js deleted file mode 100644 index 9143690..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/footerStyle.js +++ /dev/null @@ -1,172 +0,0 @@ -import { - container, - primaryColor, - whiteColor, - btnLink, - grayColor, - twitterColor, - dribbbleColor, - instagramColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const footerStyle = { - left: { - float: "left!important", - display: "block", - }, - right: { - padding: "15px 0", - margin: "0", - float: "right", - }, - rightLinks: { - float: "right!important", - "& ul": { - marginBottom: 0, - marginTop: 10, - padding: 0, - listStyle: "none", - height: 38, - "& li": { - display: "inline-block", - }, - }, - "& i": { - fontSize: "20px", - }, - }, - footer: { - padding: "0.9375rem 0", - textAlign: "center", - display: "flex", - zIndex: "2", - position: "relative", - "& ul": { - marginBottom: "0", - padding: 0, - listStyle: "none", - }, - }, - big: { - padding: "1.875rem 0", - "& h5, & h4": { - fontWeight: 700, - fontFamily: "Roboto Slab,Times New Roman,serif", - marginBottom: "15px", - }, - "& p": { - color: grayColor[0], - }, - }, - content: { - textAlign: "left", - }, - a: { - color: primaryColor[0], - textDecoration: "none", - backgroundColor: "transparent", - }, - dark: { - background: - "radial-gradient(ellipse at center," + - grayColor[4] + - " 0," + - grayColor[5] + - " 100%)", - backgroundSize: "550% 450%", - color: whiteColor, - "& p": { - color: grayColor[0], - }, - "& i": { - color: whiteColor, - }, - "& a": { - color: whiteColor, - opacity: ".86", - "&:visited": { - color: whiteColor, - }, - "&:focus, &:hover": { - opacity: 1, - }, - }, - "& hr": { - borderColor: "rgba(" + hexToRgb(whiteColor) + ",0.2)", - }, - "& $btnTwitter, & $btnDribbble, & $btnInstagram": { - color: whiteColor, - }, - }, - white: { - backgroundColor: whiteColor, - color: grayColor[1], - textDecoration: "none", - "& a": { - "&:visited": { - color: grayColor[1], - }, - "&:hover, &:focus": { - color: grayColor[20], - }, - }, - }, - container, - list: { - marginBottom: "0", - padding: "0", - marginTop: "0", - }, - inlineBlock: { - display: "inline-block", - padding: "0px", - width: "auto", - }, - icon: { - width: "18px", - height: "18px", - position: "relative", - top: "3px", - }, - iconSocial: { - width: "41px", - height: "41px", - fontSize: "24px", - minWidth: "41px", - padding: 0, - overflow: "hidden", - position: "relative", - }, - btnTwitter: { - ...btnLink, - color: twitterColor, - }, - btnDribbble: { - ...btnLink, - color: dribbbleColor, - }, - btnInstagram: { - ...btnLink, - color: instagramColor, - }, - footerBrand: { - height: "50px", - padding: "15px 15px", - fontSize: "18px", - lineHeight: "50px", - marginLeft: "-15px", - color: grayColor[1], - textDecoration: "none", - fontWeight: 700, - fontFamily: "Roboto Slab,Times New Roman,serif", - }, - pullCenter: { - display: "inline-block", - float: "none", - }, - clearFix: { - clear: "both", - }, -}; -export default footerStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/headerLinksStyle.js b/styles/jss/nextjs-material-kit-pro/components/headerLinksStyle.js deleted file mode 100644 index df07e5c..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/headerLinksStyle.js +++ /dev/null @@ -1,213 +0,0 @@ -import { - grayColor, - whiteColor, - mlAuto, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -import tooltip from "styles/jss/nextjs-material-kit-pro/tooltipsStyle.js"; - -const headerLinksStyle = (theme) => ({ - list: { - [theme.breakpoints.up("md")]: { - WebkitBoxAlign: "center", - MsFlexAlign: "center", - alignItems: "center", - WebkitBoxOrient: "horizontal", - WebkitBoxDirection: "normal", - MsFlexDirection: "row", - flexDirection: "row", - }, - [theme.breakpoints.down("sm")]: { - display: "block", - }, - marginTop: "0px", - display: "flex", - paddingLeft: "0", - marginBottom: "0", - listStyle: "none", - padding: "0", - }, - listItem: { - float: "left", - color: "inherit", - position: "relative", - display: "block", - width: "auto", - margin: "0", - padding: "0", - [theme.breakpoints.down("sm")]: { - "& ul": { - maxHeight: "300px", - overflow: "scroll", - }, - width: "100%", - "&:not(:last-child)": { - "&:after": { - width: "calc(100% - 30px)", - content: '""', - display: "block", - height: "1px", - marginLeft: "15px", - backgroundColor: grayColor[14], - }, - }, - }, - }, - listItemText: { - padding: "0 !important", - }, - navLink: { - color: "inherit", - position: "relative", - padding: "0.9375rem", - fontWeight: "400", - fontSize: "12px", - textTransform: "uppercase", - lineHeight: "20px", - textDecoration: "none", - margin: "0px", - display: "inline-flex", - "&:hover,&:focus": { - color: "inherit", - }, - "& .fab,& .far,& .fal,& .fas,& .material-icons": { - position: "relative", - top: "2px", - marginTop: "-4px", - marginRight: "4px", - marginBottom: "0px", - fontSize: "1.25rem", - }, - [theme.breakpoints.down("sm")]: { - width: "calc(100% - 30px)", - marginLeft: "15px", - marginBottom: "8px", - marginTop: "8px", - textAlign: "left", - "& > span:first-child": { - justifyContent: "flex-start", - }, - }, - "& svg": { - marginRight: "3px", - width: "20px", - height: "20px", - }, - }, - navLinkJustIcon: { - "& .fab,& .far,& .fal,& .fas,& .material-icons": { - marginRight: "0px", - }, - "& svg": { - marginRight: "0px", - }, - }, - navButton: { - position: "relative", - fontWeight: "400", - fontSize: "12px", - textTransform: "uppercase", - lineHeight: "20px", - textDecoration: "none", - margin: "0px", - display: "inline-flex", - [theme.breakpoints.down("sm")]: { - width: "calc(100% - 30px)", - marginLeft: "15px", - marginBottom: "5px", - marginTop: "5px", - textAlign: "left", - "& > span:first-child": { - justifyContent: "flex-start", - }, - }, - "& $icons": { - marginRight: "3px", - }, - }, - notificationNavLink: { - [theme.breakpoints.down("md")]: { - top: "0", - margin: "5px 15px", - }, - color: whiteColor, - padding: "0.9375rem", - fontWeight: "400", - fontSize: "12px", - textTransform: "uppercase", - lineHeight: "20px", - textDecoration: "none", - margin: "0px", - display: "inline-flex", - }, - registerNavLink: { - [theme.breakpoints.down("md")]: { - top: "0", - margin: "5px 15px", - }, - position: "relative", - fontWeight: "400", - fontSize: "12px", - textTransform: "uppercase", - lineHeight: "20px", - textDecoration: "none", - margin: "0px", - display: "inline-flex", - }, - navLinkActive: { - "&, &:hover, &:focus,&:active ": { - color: "inherit", - backgroundColor: "rgba(" + hexToRgb(whiteColor) + ", 0.1)", - }, - }, - icons: { - width: "20px", - height: "20px", - marginRight: "14px", - }, - dropdownIcons: { - width: "24px", - height: "24px", - marginRight: "14px", - opacity: "0.5", - marginTop: "-4px", - top: "1px", - verticalAlign: "middle", - fontSize: "24px", - position: "relative", - }, - socialIcons: { - position: "relative", - fontSize: "1.25rem", - maxWidth: "24px", - }, - dropdownLink: { - "&,&:hover,&:focus": { - color: "inherit", - textDecoration: "none", - display: "flex", - padding: "0.75rem 1.25rem 0.75rem 0.75rem", - }, - }, - ...tooltip, - marginRight5: { - marginRight: "5px", - }, - collapse: { - [theme.breakpoints.up("md")]: { - display: "flex !important", - MsFlexPreferredSize: "auto", - flexBasis: "auto", - }, - WebkitBoxFlex: "1", - MsFlexPositive: "1", - flexGrow: "1", - WebkitBoxAlign: "center", - MsFlexAlign: "center", - alignItems: "center", - }, - mlAuto, -}); - -export default headerLinksStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/headerStyle.js b/styles/jss/nextjs-material-kit-pro/components/headerStyle.js deleted file mode 100644 index edcd399..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/headerStyle.js +++ /dev/null @@ -1,212 +0,0 @@ -import { - container, - defaultFont, - primaryColor, - infoColor, - successColor, - warningColor, - dangerColor, - roseColor, - transition, - boxShadow, - drawerWidth, - blackColor, - whiteColor, - grayColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const headerStyle = (theme) => ({ - appBar: { - display: "flex", - border: "0", - borderRadius: "3px", - padding: "0.625rem 0", - marginBottom: "20px", - color: grayColor[15], - width: "100%", - backgroundColor: whiteColor, - boxShadow: - "0 4px 18px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 7px 10px -5px rgba(" + - hexToRgb(blackColor) + - ", 0.15)", - transition: "all 150ms ease 0s", - alignItems: "center", - flexFlow: "row nowrap", - justifyContent: "flex-start", - position: "relative", - }, - absolute: { - position: "absolute", - top: "auto", - }, - fixed: { - position: "fixed", - }, - container: { - ...container, - minHeight: "50px", - alignItems: "center", - justifyContent: "space-between", - display: "flex", - flexWrap: "nowrap", - }, - title: { - letterSpacing: "unset", - "&,& a": { - ...defaultFont, - minWidth: "unset", - lineHeight: "30px", - fontSize: "18px", - borderRadius: "3px", - textTransform: "none", - whiteSpace: "nowrap", - color: "inherit", - "&:hover,&:focus": { - color: "inherit", - background: "transparent", - }, - }, - }, - appResponsive: { - margin: "20px 10px", - marginTop: "0px", - }, - primary: { - backgroundColor: primaryColor[0], - color: whiteColor, - boxShadow: - "0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 7px 12px -5px rgba(" + - hexToRgb(primaryColor[0]) + - ", 0.46)", - }, - info: { - backgroundColor: infoColor[0], - color: whiteColor, - boxShadow: - "0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 7px 12px -5px rgba(" + - hexToRgb(infoColor[0]) + - ", 0.46)", - }, - success: { - backgroundColor: successColor[0], - color: whiteColor, - boxShadow: - "0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 7px 12px -5px rgba(" + - hexToRgb(successColor[0]) + - ", 0.46)", - }, - warning: { - backgroundColor: warningColor[0], - color: whiteColor, - boxShadow: - "0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 7px 12px -5px rgba(" + - hexToRgb(warningColor[0]) + - ", 0.46)", - }, - danger: { - backgroundColor: dangerColor[0], - color: whiteColor, - boxShadow: - "0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 7px 12px -5px rgba(" + - hexToRgb(dangerColor[0]) + - ", 0.46)", - }, - rose: { - backgroundColor: roseColor[0], - color: whiteColor, - boxShadow: - "0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 7px 12px -5px rgba(" + - hexToRgb(roseColor[0]) + - ", 0.46)", - }, - transparent: { - backgroundColor: "transparent !important", - boxShadow: "none", - paddingTop: "25px", - color: whiteColor, - }, - dark: { - color: whiteColor, - backgroundColor: grayColor[9] + " !important", - boxShadow: - "0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 7px 12px -5px rgba(" + - hexToRgb(grayColor[9]) + - ", 0.46)", - }, - white: { - border: "0", - padding: "0.625rem 0", - marginBottom: "20px", - color: grayColor[15], - backgroundColor: whiteColor + " !important", - boxShadow: - "0 4px 18px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 7px 10px -5px rgba(" + - hexToRgb(blackColor) + - ", 0.15)", - }, - drawerPaper: { - border: "none", - bottom: "0", - transitionProperty: "top, bottom, width", - transitionDuration: ".2s, .2s, .35s", - transitionTimingFunction: "linear, linear, ease", - width: drawerWidth, - ...boxShadow, - position: "fixed", - display: "block", - top: "0", - height: "100vh", - right: "0", - left: "auto", - visibility: "visible", - overflowY: "visible", - borderTop: "none", - textAlign: "left", - paddingRight: "0px", - paddingLeft: "0", - ...transition, - }, - hidden: { - width: "100%", - }, - collapse: { - [theme.breakpoints.up("md")]: { - display: "flex !important", - MsFlexPreferredSize: "auto", - flexBasis: "auto", - }, - WebkitBoxFlex: "1", - MsFlexPositive: "1", - flexGrow: "1", - WebkitBoxAlign: "center", - MsFlexAlign: "center", - alignItems: "center", - }, - closeButtonDrawer: { - position: "absolute", - right: "8px", - top: "9px", - zIndex: "1", - }, -}); - -export default headerStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/infoStyle.js b/styles/jss/nextjs-material-kit-pro/components/infoStyle.js deleted file mode 100644 index 9241cbf..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/infoStyle.js +++ /dev/null @@ -1,76 +0,0 @@ -import { - primaryColor, - warningColor, - dangerColor, - successColor, - infoColor, - roseColor, - grayColor, - title, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const infoStyle = { - infoArea: { - maxWidth: "360px", - margin: "0 auto", - padding: "70px 0 30px", - }, - iconWrapper: { - float: "left", - marginTop: "24px", - marginRight: "10px", - }, - primary: { - color: primaryColor[0], - }, - warning: { - color: warningColor[0], - }, - danger: { - color: dangerColor[0], - }, - success: { - color: successColor[0], - }, - info: { - color: infoColor[0], - }, - rose: { - color: roseColor[0], - }, - gray: { - color: grayColor[0], - }, - icon: { - width: "2.25rem", - height: "2.25rem", - fontSize: "2.25rem", - }, - descriptionWrapper: { - color: grayColor[0], - overflow: "hidden", - }, - title: { - ...title, - margin: "1.75rem 0 0.875rem !important", - minHeight: "unset", - }, - description: { - color: grayColor[0], - overflow: "hidden", - marginTop: "0px", - "& p": { - color: grayColor[0], - fontSize: "14px", - }, - }, - iconWrapperVertical: { - float: "none", - }, - iconVertical: { - width: "61px", - height: "61px", - }, -}; - -export default infoStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/instructionStyle.js b/styles/jss/nextjs-material-kit-pro/components/instructionStyle.js deleted file mode 100644 index b299235..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/instructionStyle.js +++ /dev/null @@ -1,13 +0,0 @@ -const instructionStyle = { - instruction: {}, - picture: {}, - image: { - width: "100%", - height: "auto", - borderRadius: "6px", - display: "block", - maxWidth: "100%", - }, -}; - -export default instructionStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/mediaStyle.js b/styles/jss/nextjs-material-kit-pro/components/mediaStyle.js deleted file mode 100644 index 8cdbc14..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/mediaStyle.js +++ /dev/null @@ -1,73 +0,0 @@ -import { - title, - blackColor, - grayColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const mediaStyle = (theme) => ({ - media: { - [theme.breakpoints.down("md")]: { - display: "block", - }, - display: "flex", - WebkitBoxAlign: "start", - alignItems: "flex-start", - "& p": { - color: grayColor[0], - fontSize: "1rem", - lineHeight: "1.6em", - }, - "& $media $mediaBody": { - paddingRight: "0px", - }, - }, - mediaLink: { - padding: "10px", - float: "left !important", - }, - mediaAvatar: { - margin: "0 auto", - width: "64px", - height: "64px", - overflow: "hidden", - borderRadius: "50%", - marginRight: "15px", - boxShadow: - "0 6px 10px 0 rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 1px 18px 0 rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 3px 5px -1px rgba(" + - hexToRgb(blackColor) + - ", 0.2)", - "& img": { - width: "100%", - }, - }, - mediaBody: { - paddingRight: "10px", - WebkitBoxFlex: "1", - flex: "1", - }, - mediaHeading: { - ...title, - marginTop: "10px", - marginBottom: "10px", - "& small": { - fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif', - }, - }, - mediaFooter: { - "& button, & a": { - marginBottom: "20px", - }, - "&:after": { - display: "table", - content: '" "', - clear: "both", - }, - }, -}); - -export default mediaStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/navPillsStyle.js b/styles/jss/nextjs-material-kit-pro/components/navPillsStyle.js deleted file mode 100644 index 4db5cb4..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/navPillsStyle.js +++ /dev/null @@ -1,162 +0,0 @@ -import { - roseColor, - primaryColor, - infoColor, - successColor, - warningColor, - dangerColor, - blackColor, - whiteColor, - grayColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const navPillsStyle = (theme) => ({ - root: { - marginTop: "20px", - paddingLeft: "0", - marginBottom: "0", - overflow: "visible !important", - }, - flexContainer: { - [theme.breakpoints.down("xs")]: { - display: "flex", - flexWrap: "wrap", - }, - }, - displayNone: { - display: "none !important", - }, - fixed: { - overflow: "visible !important", - }, - horizontalDisplay: { - display: "block", - }, - pills: { - float: "left", - position: "relative", - display: "block", - borderRadius: "30px", - minWidth: "100px", - textAlign: "center", - transition: "all .3s", - padding: "10px 15px", - color: grayColor[15], - height: "auto", - opacity: "1", - maxWidth: "100%", - margin: "0 5px", - minHeight: "unset", - lineHeight: "24px", - textTransform: "uppercase", - fontSize: "12px", - fontWeight: "500", - }, - pillsWithIcons: { - borderRadius: "4px", - }, - tabIcon: { - width: "30px", - height: "30px", - display: "block", - margin: "15px 0 !important", - }, - horizontalPills: { - width: "100%", - float: "none !important", - "& + button": { - margin: "10px 0", - }, - }, - contentWrapper: { - marginTop: "20px", - "& .react-swipeable-view-container > div > div": { - paddingLeft: "15px", - paddingRight: "15px", - }, - }, - primary: { - "&,&:hover": { - color: whiteColor, - backgroundColor: primaryColor[0], - boxShadow: - "0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 7px 10px -5px rgba(" + - hexToRgb(primaryColor[0]) + - ", 0.4)", - }, - }, - info: { - "&,&:hover": { - color: whiteColor, - backgroundColor: infoColor[0], - boxShadow: - "0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 7px 10px -5px rgba(" + - hexToRgb(successColor[0]) + - ", 0.4)", - }, - }, - success: { - "&,&:hover": { - color: whiteColor, - backgroundColor: successColor[0], - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(successColor[0]) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(successColor[0]) + - ", 0.2), 0 1px 5px 0 rgba(" + - hexToRgb(successColor[0]) + - ", 0.12)", - }, - }, - warning: { - "&,&:hover": { - color: whiteColor, - backgroundColor: warningColor[0], - boxShadow: - "0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 7px 10px -5px rgba(" + - hexToRgb(warningColor[0]) + - ", 0.4)", - }, - }, - danger: { - "&,&:hover": { - color: whiteColor, - backgroundColor: dangerColor[0], - boxShadow: - "0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 7px 10px -5px rgba(" + - hexToRgb(warningColor[0]) + - ", 0.4)", - }, - }, - rose: { - "&,&:hover": { - color: whiteColor, - backgroundColor: roseColor[0], - boxShadow: - "0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 7px 10px -5px rgba(" + - hexToRgb(roseColor[0]) + - ", 0.4)", - }, - }, - alignCenter: { - alignItems: "center", - justifyContent: "center", - }, - tabLabelContainer: { - padding: "unset !important", - }, -}); - -export default navPillsStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/paginationStyle.js b/styles/jss/nextjs-material-kit-pro/components/paginationStyle.js deleted file mode 100644 index dce0b7a..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/paginationStyle.js +++ /dev/null @@ -1,161 +0,0 @@ -import { - grayColor, - primaryColor, - infoColor, - successColor, - warningColor, - whiteColor, - dangerColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const paginationStyle = { - pagination: { - display: "flex", - paddingLeft: "0", - listStyle: "none", - borderRadius: "0.25rem", - }, - paginationItem: { - display: "inline", - }, - paginationLink: { - ":first-of-type": { - marginleft: "0", - }, - letterSpacing: "unset", - border: "0", - borderRadius: "30px !important", - transition: "all .3s", - padding: "0px 11px", - margin: "0 3px", - minWidth: "30px", - height: "30px", - minHeight: "auto", - lineHeight: "30px", - fontWeight: "400", - fontSize: "12px", - textTransform: "uppercase", - background: "transparent", - position: "relative", - float: "left", - textDecoration: "none", - boxSizing: "border-box", - "&,&:hover,&:focus": { - color: grayColor[0], - }, - "&:hover,&:focus": { - zIndex: "3", - backgroundColor: grayColor[2], - borderColor: grayColor[6], - }, - "&:hover": { - cursor: "pointer", - }, - }, - primary: { - "&,&:hover,&:focus": { - backgroundColor: primaryColor[0], - borderColor: primaryColor[0], - color: whiteColor, - boxShadow: - "0 4px 5px 0 rgba(" + - hexToRgb(primaryColor[0]) + - ", 0.14), 0 1px 10px 0 rgba(" + - hexToRgb(primaryColor[0]) + - ", 0.12), 0 2px 4px -1px rgba(" + - hexToRgb(primaryColor[0]) + - ", 0.2)", - }, - "&:hover,&:focus": { - zIndex: "2", - cursor: "default", - }, - }, - info: { - "&,&:hover,&:focus": { - backgroundColor: infoColor[0], - borderColor: infoColor[0], - color: whiteColor, - boxShadow: - "0 4px 5px 0 rgba(" + - hexToRgb(infoColor[0]) + - ", 0.14), 0 1px 10px 0 rgba(" + - hexToRgb(infoColor[0]) + - ", 0.12), 0 2px 4px -1px rgba(" + - hexToRgb(infoColor[0]) + - ", 0.2)", - }, - "&:hover,&:focus": { - zIndex: "2", - cursor: "default", - }, - }, - success: { - "&,&:hover,&:focus": { - backgroundColor: successColor[0], - borderColor: successColor[0], - color: whiteColor, - boxShadow: - "0 4px 5px 0 rgba(" + - hexToRgb(successColor[0]) + - ", 0.14), 0 1px 10px 0 rgba(" + - hexToRgb(successColor[0]) + - ", 0.12), 0 2px 4px -1px rgba(" + - hexToRgb(successColor[0]) + - ", 0.2)", - }, - "&:hover,&:focus": { - zIndex: "2", - cursor: "default", - }, - }, - warning: { - "&,&:hover,&:focus": { - backgroundColor: warningColor[0], - borderColor: warningColor[0], - color: whiteColor, - boxShadow: - "0 4px 5px 0 rgba(" + - hexToRgb(warningColor[0]) + - ", 0.14), 0 1px 10px 0 rgba(" + - hexToRgb(warningColor[0]) + - ", 0.12), 0 2px 4px -1px rgba(" + - hexToRgb(warningColor[0]) + - ", 0.2)", - }, - "&:hover,&:focus": { - zIndex: "2", - cursor: "default", - }, - }, - danger: { - "&,&:hover,&:focus": { - backgroundColor: dangerColor[0], - borderColor: dangerColor[0], - color: whiteColor, - boxShadow: - "0 4px 5px 0 rgba(" + - hexToRgb(dangerColor[0]) + - ", 0.14), 0 1px 10px 0 rgba(" + - hexToRgb(dangerColor[0]) + - ", 0.12), 0 2px 4px -1px rgba(" + - hexToRgb(dangerColor[0]) + - ", 0.2)", - }, - "&:hover,&:focus": { - zIndex: "2", - cursor: "default", - }, - }, - disabled: { - "&,&:hover,&:focus": { - color: grayColor[10], - cursor: "not-allowed", - backgroundColor: whiteColor, - borderColor: grayColor[6], - }, - }, -}; - -export default paginationStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/parallaxStyle.js b/styles/jss/nextjs-material-kit-pro/components/parallaxStyle.js deleted file mode 100644 index 10de480..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/parallaxStyle.js +++ /dev/null @@ -1,187 +0,0 @@ -import { - blackColor, - primaryColor, - roseColor, - infoColor, - successColor, - warningColor, - dangerColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const parallaxStyle = { - parallax: { - height: "100vh", - maxHeight: "1600px", - overflow: "hidden", - position: "relative", - backgroundPosition: "50%", - backgroundSize: "cover", - margin: "0", - padding: "0", - border: "0", - display: "flex", - alignItems: "center", - }, - filter: {}, - primaryColor: { - "&:before": { - background: "rgba(" + hexToRgb(blackColor) + ", 0.5)", - }, - "&:after": { - background: - "linear-gradient(60deg,rgba(" + - hexToRgb(primaryColor[4]) + - ",.56),rgba(" + - hexToRgb(primaryColor[5]) + - ",.95))", - }, - "&:after,&:before": { - position: "absolute", - zIndex: "1", - width: "100%", - height: "100%", - display: "block", - left: "0", - top: "0", - content: "''", - }, - }, - roseColor: { - "&:before": { - background: "rgba(" + hexToRgb(blackColor) + ", 0.5)", - }, - "&:after": { - background: - "linear-gradient(60deg,rgba(" + - hexToRgb(roseColor[3]) + - ",.56),rgba(" + - hexToRgb(roseColor[4]) + - ",.95))", - }, - "&:after,&:before": { - position: "absolute", - zIndex: "1", - width: "100%", - height: "100%", - display: "block", - left: "0", - top: "0", - content: "''", - }, - }, - darkColor: { - "&:before": { - background: "rgba(" + hexToRgb(blackColor) + ", 0.5)", - }, - "&:after,&:before": { - position: "absolute", - zIndex: "1", - width: "100%", - height: "100%", - display: "block", - left: "0", - top: "0", - content: "''", - }, - }, - infoColor: { - "&:before": { - background: "rgba(" + hexToRgb(blackColor) + ", 0.5)", - }, - "&:after": { - background: - "linear-gradient(60deg,rgba(" + - hexToRgb(infoColor[6]) + - ",.56),rgba(" + - hexToRgb(infoColor[7]) + - ",.95))", - }, - "&:after,&:before": { - position: "absolute", - zIndex: "1", - width: "100%", - height: "100%", - display: "block", - left: "0", - top: "0", - content: "''", - }, - }, - successColor: { - "&:before": { - background: "rgba(" + hexToRgb(blackColor) + ", 0.5)", - }, - "&:after": { - background: - "linear-gradient(60deg,rgba(" + - hexToRgb(successColor[6]) + - ",.56),rgba(" + - hexToRgb(successColor[7]) + - ",.95))", - }, - "&:after,&:before": { - position: "absolute", - zIndex: "1", - width: "100%", - height: "100%", - display: "block", - left: "0", - top: "0", - content: "''", - }, - }, - warningColor: { - "&:before": { - background: "rgba(" + hexToRgb(blackColor) + ", 0.5)", - }, - "&:after": { - background: - "linear-gradient(60deg,rgba(" + - hexToRgb(warningColor[6]) + - ",.56),rgba(" + - hexToRgb(warningColor[7]) + - ",.95))", - }, - "&:after,&:before": { - position: "absolute", - zIndex: "1", - width: "100%", - height: "100%", - display: "block", - left: "0", - top: "0", - content: "''", - }, - }, - dangerColor: { - "&:before": { - background: "rgba(" + hexToRgb(blackColor) + ", 0.5)", - }, - "&:after": { - background: - "linear-gradient(60deg,rgba(" + - hexToRgb(dangerColor[6]) + - ",.56),rgba(" + - hexToRgb(dangerColor[7]) + - ",.95))", - }, - "&:after,&:before": { - position: "absolute", - zIndex: "1", - width: "100%", - height: "100%", - display: "block", - left: "0", - top: "0", - content: "''", - }, - }, - small: { - height: "65vh", - minHeight: "65vh", - maxHeight: "650px", - }, -}; - -export default parallaxStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/snackbarContentStyle.js b/styles/jss/nextjs-material-kit-pro/components/snackbarContentStyle.js deleted file mode 100644 index 119171c..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/snackbarContentStyle.js +++ /dev/null @@ -1,99 +0,0 @@ -import { - defaultFont, - primaryBoxShadow, - infoBoxShadow, - successBoxShadow, - warningBoxShadow, - dangerBoxShadow, - container, - blackColor, - whiteColor, - grayColor, - primaryColor, - warningColor, - dangerColor, - successColor, - infoColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const snackbarContentStyle = { - root: { - ...defaultFont, - position: "relative", - padding: "20px 15px", - lineHeight: "20px", - marginBottom: "20px", - fontSize: "14px", - backgroundColor: "white", - color: grayColor[15], - borderRadius: "0px", - maxWidth: "100%", - minWidth: "auto", - boxShadow: - "0 12px 20px -10px rgba(" + - hexToRgb(whiteColor) + - ", 0.28), 0 4px 20px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 7px 8px -5px rgba(" + - hexToRgb(whiteColor) + - ", 0.2)", - }, - info: { - backgroundColor: infoColor[3], - color: whiteColor, - ...infoBoxShadow, - }, - success: { - backgroundColor: successColor[3], - color: whiteColor, - ...successBoxShadow, - }, - warning: { - backgroundColor: warningColor[3], - color: whiteColor, - ...warningBoxShadow, - }, - danger: { - backgroundColor: dangerColor[3], - color: whiteColor, - ...dangerBoxShadow, - }, - primary: { - backgroundColor: primaryColor[3], - color: whiteColor, - ...primaryBoxShadow, - }, - message: { - padding: "0", - display: "block", - maxWidth: "89%", - }, - close: { - width: "20px", - height: "20px", - }, - iconButton: { - width: "24px", - height: "24px", - float: "right", - fontSize: "1.5rem", - fontWeight: "500", - lineHeight: "1", - position: "absolute", - right: "-4px", - top: "0", - padding: "0", - }, - icon: { - display: "block", - float: "left", - marginRight: "1.071rem", - }, - container: { - ...container, - position: "relative", - }, -}; - -export default snackbarContentStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/tableStyle.js b/styles/jss/nextjs-material-kit-pro/components/tableStyle.js deleted file mode 100644 index 642694c..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/tableStyle.js +++ /dev/null @@ -1,121 +0,0 @@ -import { - warningColor, - primaryColor, - dangerColor, - successColor, - infoColor, - roseColor, - grayColor, - defaultFont, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const tableStyle = { - warning: { - color: warningColor[0], - }, - primary: { - color: primaryColor[0], - }, - danger: { - color: dangerColor[0], - }, - success: { - color: successColor[0], - }, - info: { - color: infoColor[0], - }, - rose: { - color: roseColor[0], - }, - gray: { - color: grayColor[0], - }, - right: { - textAlign: "right", - }, - table: { - marginBottom: "0", - width: "100%", - maxWidth: "100%", - backgroundColor: "transparent", - borderSpacing: "0", - borderCollapse: "collapse", - overflow: "auto", - "& > tbody > tr, & > thead > tr": { - height: "auto", - }, - }, - tableShoppingHead: { - fontSize: "0.75em !important", - textTransform: "uppercase !important", - }, - tableCell: { - ...defaultFont, - lineHeight: "1.5em", - padding: "12px 8px!important", - verticalAlign: "middle", - fontSize: "0.875rem", - borderBottom: "none", - borderTop: "1px solid " + grayColor[6], - position: "relative", - color: grayColor[1], - }, - tableHeadCell: { - fontSize: "1.063rem", - borderBottomWidth: "1px", - fontWeight: "300", - color: grayColor[15], - borderTopWidth: "0 !important", - }, - tableCellTotal: { - fontWeight: "500", - fontSize: "1.0625rem", - paddingTop: "20px", - textAlign: "right", - }, - tableCellAmount: { - fontSize: "26px", - fontWeight: "300", - marginTop: "5px", - textAlign: "right", - }, - tableResponsive: { - minHeight: "0.1%", - overflowX: "auto", - }, - tableStripedRow: { - backgroundColor: grayColor[16], - }, - tableRowHover: { - "&:hover": { - backgroundColor: grayColor[23], - }, - }, - warningRow: { - backgroundColor: warningColor[4], - "&:hover": { - backgroundColor: warningColor[5], - }, - }, - dangerRow: { - backgroundColor: dangerColor[4], - "&:hover": { - backgroundColor: dangerColor[5], - }, - }, - successRow: { - backgroundColor: successColor[4], - "&:hover": { - backgroundColor: successColor[5], - }, - }, - infoRow: { - backgroundColor: infoColor[4], - "&:hover": { - backgroundColor: infoColor[5], - }, - }, -}; - -export default tableStyle; diff --git a/styles/jss/nextjs-material-kit-pro/components/typographyStyle.js b/styles/jss/nextjs-material-kit-pro/components/typographyStyle.js deleted file mode 100644 index 91147d4..0000000 --- a/styles/jss/nextjs-material-kit-pro/components/typographyStyle.js +++ /dev/null @@ -1,87 +0,0 @@ -import { - defaultFont, - primaryColor, - infoColor, - successColor, - warningColor, - dangerColor, - roseColor, - grayColor, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const typographyStyle = { - defaultFontStyle: { - ...defaultFont, - fontSize: "14px", - }, - defaultHeaderMargins: { - marginTop: "20px", - marginBottom: "10px", - }, - quote: { - padding: "10px 20px", - margin: "0 0 20px", - fontSize: "1.25rem", - borderLeft: "5px solid " + grayColor[2], - }, - quoteText: { - margin: "0 0 10px", - fontStyle: "italic", - }, - quoteAuthor: { - display: "block", - fontSize: "80%", - lineHeight: "1.42857143", - color: grayColor[10], - }, - mutedText: { - "&, & *": { - color: grayColor[7], - display: "inline-block", - }, - }, - primaryText: { - "&, & *": { - color: primaryColor[0], - display: "inline-block", - }, - }, - infoText: { - "&, & *": { - color: infoColor[0], - display: "inline-block", - }, - }, - successText: { - "&, & *": { - color: successColor[0], - display: "inline-block", - }, - }, - warningText: { - "&, & *": { - color: warningColor[0], - display: "inline-block", - }, - }, - dangerText: { - "&, & *": { - color: dangerColor[0], - display: "inline-block", - }, - }, - roseText: { - "&, & *": { - color: roseColor[0], - display: "inline-block", - }, - }, - smallText: { - fontSize: "65%", - fontWeight: "400", - lineHeight: "1", - color: grayColor[10], - }, -}; - -export default typographyStyle; diff --git a/styles/jss/nextjs-material-kit-pro/customCheckboxRadioSwitchStyle.js b/styles/jss/nextjs-material-kit-pro/customCheckboxRadioSwitchStyle.js deleted file mode 100644 index 9838d6e..0000000 --- a/styles/jss/nextjs-material-kit-pro/customCheckboxRadioSwitchStyle.js +++ /dev/null @@ -1,188 +0,0 @@ -import { - primaryColor, - dangerColor, - roseColor, - grayColor, - blackColor, - whiteColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const customCheckboxRadioSwitch = { - checkRoot: { - padding: "14px", - "&:hover": { - backgroundColor: "unset !important", - }, - }, - radioRoot: { - padding: "16px", - "&:hover": { - backgroundColor: "unset !important", - }, - }, - labelRoot: { - marginLeft: "-14px", - }, - checkboxAndRadio: { - position: "relative", - display: "block", - marginTop: "10px", - marginBottom: "10px", - }, - checkboxAndRadioHorizontal: { - position: "relative", - display: "block", - "&:first-child": { - marginTop: "10px", - }, - "&:not(:first-child)": { - marginTop: "-14px", - }, - marginTop: "0", - marginBottom: "0", - }, - checked: { - color: primaryColor[0] + "!important", - }, - checkedIcon: { - width: "20px", - height: "20px", - border: "1px solid rgba(" + hexToRgb(blackColor) + ", 0.84)", - borderRadius: "3px", - }, - uncheckedIcon: { - width: "0px", - height: "0px", - padding: "9px", - border: "1px solid rgba(" + hexToRgb(blackColor) + ", .54)", - borderRadius: "3px", - }, - disabledCheckboxAndRadio: { - "& $checkedIcon,& $uncheckedIcon,& $radioChecked,& $radioUnchecked": { - borderColor: blackColor, - opacity: "0.26", - color: blackColor, - }, - }, - label: { - cursor: "pointer", - paddingLeft: "0", - color: grayColor[12], - fontSize: "14px", - lineHeight: "1.428571429", - fontWeight: "400", - display: "inline-flex", - transition: "0.3s ease all", - letterSpacing: "unset", - }, - labelHorizontal: { - color: "rgba(" + hexToRgb(blackColor) + ", 0.26)", - cursor: "pointer", - display: "inline-flex", - fontSize: "14px", - lineHeight: "1.428571429", - fontWeight: "400", - paddingTop: "39px", - marginRight: "0", - "@media (min-width: 992px)": { - float: "right", - }, - }, - labelHorizontalRadioCheckbox: { - paddingTop: "22px", - }, - labelLeftHorizontal: { - color: "rgba(" + hexToRgb(blackColor) + ", 0.26)", - cursor: "pointer", - display: "inline-flex", - fontSize: "14px", - lineHeight: "1.428571429", - fontWeight: "400", - paddingTop: "22px", - marginRight: "0", - }, - labelError: { - color: dangerColor[0], - }, - radio: { - color: primaryColor[0] + "!important", - }, - radioChecked: { - width: "16px", - height: "16px", - border: "1px solid " + primaryColor[0], - borderRadius: "50%", - }, - radioUnchecked: { - width: "0px", - height: "0px", - padding: "7px", - border: "1px solid rgba(" + hexToRgb(blackColor) + ", .54)", - borderRadius: "50%", - }, - inlineChecks: { - marginTop: "8px", - }, - iconCheckbox: { - height: "116px", - width: "116px", - color: grayColor[0], - "& > span:first-child": { - borderWidth: "4px", - borderStyle: "solid", - borderColor: grayColor[17], - textAlign: "center", - verticalAlign: "middle", - borderRadius: "50%", - color: "inherit", - margin: "0 auto 20px", - transition: "all 0.2s", - }, - "&:hover": { - color: roseColor[0], - "& > span:first-child": { - borderColor: roseColor[0], - }, - }, - }, - iconCheckboxChecked: { - color: roseColor[0], - "& > span:first-child": { - borderColor: roseColor[0], - }, - }, - iconCheckboxIcon: { - fontSize: "40px", - lineHeight: "111px", - }, - switchBase: { - color: primaryColor[0] + "!important", - }, - switchIcon: { - boxShadow: "0 1px 3px 1px rgba(" + hexToRgb(blackColor) + ", 0.4)", - color: whiteColor + " !important", - border: "1px solid rgba(" + hexToRgb(blackColor) + ", .54)", - }, - switchIconChecked: { - borderColor: primaryColor[0], - transform: "translateX(0px)!important", - }, - switchBar: { - width: "30px", - height: "15px", - backgroundColor: "rgb(" + hexToRgb(grayColor[24]) + ")", - borderRadius: "15px", - opacity: "0.7!important", - }, - switchChecked: { - "& + $switchBar": { - backgroundColor: "rgba(" + hexToRgb(primaryColor[0]) + ", 1) !important", - }, - "& $switchIcon": { - borderColor: primaryColor[0], - }, - }, -}; - -export default customCheckboxRadioSwitch; diff --git a/styles/jss/nextjs-material-kit-pro/customSelectStyle.js b/styles/jss/nextjs-material-kit-pro/customSelectStyle.js deleted file mode 100644 index 05949ec..0000000 --- a/styles/jss/nextjs-material-kit-pro/customSelectStyle.js +++ /dev/null @@ -1,133 +0,0 @@ -import { - primaryColor, - primaryBoxShadow, - blackColor, - whiteColor, - grayColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const customSelectStyle = { - select: { - padding: "12px 0 7px", - fontSize: ".75rem", - fontWeight: "400", - lineHeight: "1.42857", - textDecoration: "none", - textTransform: "uppercase", - color: grayColor[1], - letterSpacing: "0", - "&:focus": { - backgroundColor: "transparent", - }, - "&[aria-owns] + input + svg": { - transform: "rotate(180deg)", - }, - "& + input + svg": { - transition: "all 300ms linear", - }, - }, - selectFormControl: { - margin: "10px 1px 10px 0px !important", - "& > div": { - "&:before": { - borderBottomWidth: "1px !important", - borderBottomColor: grayColor[11] + " !important", - }, - "&:after": { - borderBottomColor: primaryColor[0] + "!important", - }, - }, - }, - selectLabel: { - fontSize: "12px", - textTransform: "uppercase", - color: grayColor[1] + " !important", - top: "8px", - }, - selectMenu: { - "& > div > ul": { - border: "0", - padding: "5px 0", - margin: "0", - boxShadow: "none", - minWidth: "100%", - borderRadius: "4px", - boxSizing: "border-box", - display: "block", - fontSize: "14px", - textAlign: "left", - listStyle: "none", - backgroundColor: whiteColor, - backgroundClip: "padding-box", - }, - "& $selectPaper $selectMenuItemSelectedMultiple": { - backgroundColor: "inherit", - }, - }, - selectMenuItem: { - fontSize: "13px", - padding: "10px 20px", - margin: "0 5px", - borderRadius: "2px", - transition: "all 150ms linear", - display: "block", - clear: "both", - fontWeight: "400", - lineHeight: "2", - whiteSpace: "nowrap", - color: grayColor[8], - paddingRight: "30px", - "&:hover": { - backgroundColor: primaryColor[0], - color: whiteColor, - ...primaryBoxShadow, - }, - }, - selectMenuItemSelected: { - backgroundColor: primaryColor[0] + "!important", - color: whiteColor, - }, - selectMenuItemSelectedMultiple: { - "&:hover": { - backgroundColor: primaryColor[0] + "!important", - color: whiteColor, - ...primaryBoxShadow, - "&:after": { - color: whiteColor, - }, - }, - "&:after": { - top: "16px", - right: "12px", - width: "12px", - height: "5px", - borderLeft: "2px solid currentColor", - transform: "rotate(-45deg)", - opacity: "1", - color: grayColor[1], - position: "absolute", - content: "''", - borderBottom: "2px solid currentColor", - transition: "opacity 90ms cubic-bezier(0,0,.2,.1)", - }, - }, - selectPaper: { - boxSizing: "borderBox", - borderRadius: "4px", - padding: "0", - minWidth: "100%", - display: "block", - border: "0", - boxShadow: "0 2px 5px 0 rgba(" + hexToRgb(blackColor) + ", 0.26)", - backgroundClip: "padding-box", - margin: "2px 0 0", - fontSize: "14px", - textAlign: "left", - listStyle: "none", - backgroundColor: "transparent", - maxHeight: "266px", - }, -}; - -export default customSelectStyle; diff --git a/styles/jss/nextjs-material-kit-pro/imagesStyles.js b/styles/jss/nextjs-material-kit-pro/imagesStyles.js deleted file mode 100644 index c0d25ea..0000000 --- a/styles/jss/nextjs-material-kit-pro/imagesStyles.js +++ /dev/null @@ -1,50 +0,0 @@ -import { blackColor, hexToRgb } from "styles/jss/nextjs-material-kit-pro.js"; - -const imagesStyles = { - imgFluid: { - maxWidth: "100%", - height: "auto", - }, - imgRounded: { - borderRadius: "6px !important", - }, - imgRoundedCircle: { - borderRadius: "50% !important", - }, - imgRaised: { - boxShadow: - "0 5px 15px -8px rgba(" + - hexToRgb(blackColor) + - ", 0.24), 0 8px 10px -5px rgba(" + - hexToRgb(blackColor) + - ", 0.2)", - }, - imgGallery: { - width: "100%", - marginBottom: "2.142rem", - }, - imgCardTop: { - width: "100%", - borderTopLeftRadius: "calc(.25rem - 1px)", - borderTopRightRadius: "calc(.25rem - 1px)", - }, - imgCardBottom: { - width: "100%", - borderBottomLeftRadius: "calc(.25rem - 1px)", - borderBottomRightRadius: "calc(.25rem - 1px)", - }, - imgCard: { - width: "100%", - borderRadius: "calc(.25rem - 1px)", - }, - imgCardOverlay: { - position: "absolute", - top: "0", - right: "0", - bottom: "0", - left: "0", - padding: "1.25rem", - }, -}; - -export default imagesStyles; diff --git a/styles/jss/nextjs-material-kit-pro/modalStyle.js b/styles/jss/nextjs-material-kit-pro/modalStyle.js deleted file mode 100644 index a7b8a32..0000000 --- a/styles/jss/nextjs-material-kit-pro/modalStyle.js +++ /dev/null @@ -1,160 +0,0 @@ -import { whiteColor, grayColor } from "styles/jss/nextjs-material-kit-pro.js"; - -const modalStyle = (theme) => ({ - modalRoot: { - overflow: "auto", - display: "block", - }, - modal: { - [theme.breakpoints.up("sm")]: { - maxWidth: "500px", - margin: "auto", - }, - borderRadius: "6px", - overflow: "visible", - maxHeight: "unset", - width: "100%", - marginTop: "130px !important", - }, - modalHeader: { - borderBottom: "none", - paddingTop: "24px", - paddingRight: "24px", - paddingBottom: "0", - paddingLeft: "24px", - minHeight: "16.43px", - }, - modalTitle: { - margin: "0", - lineHeight: "1.5", - }, - modalCloseButton: { - "&, &:hover": { - color: grayColor[0], - }, - "&:hover": { - opacity: "1", - }, - cursor: "pointer", - padding: "1rem", - margin: "-1rem -1rem -1rem auto", - backgroundColor: "transparent", - border: "0", - WebkitAppearance: "none", - float: "right", - fontSize: "1.5rem", - fontWeight: "500", - lineHeight: "1", - textShadow: "0 1px 0 " + whiteColor, - opacity: ".5", - }, - modalClose: { - width: "16px", - height: "16px", - }, - modalBody: { - paddingTop: "24px", - paddingRight: "24px", - paddingBottom: "16px", - paddingLeft: "24px", - position: "relative", - overflow: "visible", - }, - modalFooter: { - padding: "15px", - textAlign: "right", - paddingTop: "0", - margin: "0", - }, - modalFooterCenter: { - marginLeft: "auto", - marginRight: "auto", - }, - instructionNoticeModal: { - marginBottom: "25px", - }, - imageNoticeModal: { - maxWidth: "150px", - }, - modalLarge: { - [theme.breakpoints.up("md")]: { - maxWidth: "800px", - }, - }, - modalSmall: { - [theme.breakpoints.up("sm")]: { - width: "300px", - margin: "auto", - }, - margin: "0 auto", - }, - modalSmallBody: { - marginTop: "20px", - }, - modalSmallFooterFirstButton: { - margin: "0", - paddingLeft: "16px", - paddingRight: "16px", - width: "auto", - }, - modalSmallFooterSecondButton: { - marginBottom: "0", - marginLeft: "5px", - }, - modalLogin: { - maxWidth: "360px", - overflowY: "visible", - width: "100%", - "& $modalCloseButton": { - color: whiteColor, - top: "-10px", - right: "10px", - textShadow: "none", - position: "relative", - }, - "& $modalHeader": { - borderBottom: "none", - paddingTop: "24px", - paddingRight: "24px", - paddingBottom: "0", - paddingLeft: "24px", - }, - "& $modalBody": { - paddingBottom: "0", - paddingTop: "0", - }, - "& $modalFooter": { - paddingBottom: "0", - paddingTop: "0", - }, - }, - modalLoginCard: { - marginBottom: "0", - margin: "0", - "& $modalHeader": { - paddingTop: "0", - }, - }, - modalSignup: { - maxWidth: "900px", - width: "100%", - "& $modalHeader": { - paddingTop: "0", - }, - "& $modalTitle": { - textAlign: "center", - width: "100%", - marginTop: "0.625rem", - }, - "& $modalBody": { - paddingBottom: "0", - paddingTop: "0", - }, - }, - modalSignupCard: { - padding: "40px 0", - margin: "0", - }, -}); - -export default modalStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/contactStyle.js b/styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/contactStyle.js deleted file mode 100644 index 81049aa..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/contactStyle.js +++ /dev/null @@ -1,31 +0,0 @@ -import { - title, - description, - mrAuto, - mlAuto, -} from "styles/jss/nextjs-material-kit-pro.js"; -import customSelectStyle from "styles/jss/nextjs-material-kit-pro/customSelectStyle.js"; - -const contactStyle = { - title, - mrAuto, - mlAuto, - ...customSelectStyle, - description: { - ...description, - marginBottom: "70px", - }, - textCenter: { - textAlign: "center!important", - }, - selectUnderlineRoot: { - "& > div": { - marginTop: "13px", - }, - }, - aboutUs: { - padding: "80px 0px", - }, -}; - -export default contactStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/descriptionStyle.js b/styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/descriptionStyle.js deleted file mode 100644 index f21ba35..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/descriptionStyle.js +++ /dev/null @@ -1,21 +0,0 @@ -import { - container, - mrAuto, - mlAuto, - description, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const descriptionStyle = { - container, - textCenter: { - textAlign: "center", - }, - aboutDescription: { - padding: "70px 0 0 0", - }, - mrAuto, - mlAuto, - description, -}; - -export default descriptionStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/officeStyle.js b/styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/officeStyle.js deleted file mode 100644 index 1ef93ee..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/officeStyle.js +++ /dev/null @@ -1,31 +0,0 @@ -import { - title, - description, - mrAuto, - mlAuto, -} from "styles/jss/nextjs-material-kit-pro.js"; -import imagesStyles from "styles/jss/nextjs-material-kit-pro/imagesStyles.js"; - -const imgRaised = imagesStyles.imgRaised; -const rounded = imagesStyles.imgRounded; -const imgFluid = imagesStyles.imgFluid; - -const servicesStyle = { - title, - description, - mrAuto, - mlAuto, - textCenter: { - textAlign: "center!important", - }, - office: { - "& img": { - margin: "20px 0px", - }, - }, - imgRaised, - rounded, - imgFluid, -}; - -export default servicesStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/servicesStyle.js b/styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/servicesStyle.js deleted file mode 100644 index b6fb386..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/servicesStyle.js +++ /dev/null @@ -1,22 +0,0 @@ -import { - title, - description, - mrAuto, - mlAuto, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const servicesStyle = { - title, - mrAuto, - mlAuto, - services: { - paddingTop: "10px", - paddingBottom: "80px", - }, - textCenter: { - textAlign: "center", - }, - description, -}; - -export default servicesStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/teamStyle.js b/styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/teamStyle.js deleted file mode 100644 index f46aa8a..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/aboutUsSections/teamStyle.js +++ /dev/null @@ -1,40 +0,0 @@ -import { - mrAuto, - mlAuto, - title, - description, - cardTitle, - grayColor, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const teamStyle = { - mrAuto, - mlAuto, - title, - description: { - ...description, - marginBottom: "80px", - }, - cardTitle, - cardDescription: { - color: grayColor[0], - }, - team: { - padding: "80px 0px", - }, - textCenter: { - textAlign: "center!important", - }, - img: { - width: "100%", - height: "auto", - }, - textMuted: { - color: grayColor[7] + " !important", - }, - justifyContent: { - justifyContent: "center!important", - }, -}; - -export default teamStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/aboutUsStyle.js b/styles/jss/nextjs-material-kit-pro/pages/aboutUsStyle.js deleted file mode 100644 index 756d40e..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/aboutUsStyle.js +++ /dev/null @@ -1,67 +0,0 @@ -import { - container, - title, - main, - mainRaised, - mrAuto, - whiteColor, - mlAuto, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const aboutUsStyle = { - main, - mainRaised, - mrAuto, - mlAuto, - container: { - ...container, - zIndex: 1, - }, - title: { - ...title, - "&, & + h4": { - color: whiteColor, - }, - }, - textCenter: { - textAlign: "center", - }, - block: { - color: "inherit", - padding: "0.9375rem", - fontWeight: "500", - fontSize: "12px", - textTransform: "uppercase", - borderRadius: "3px", - textDecoration: "none", - position: "relative", - display: "block", - }, - inlineBlock: { - display: "inline-block", - padding: "0px", - width: "auto", - }, - list: { - marginBottom: "0", - padding: "0", - marginTop: "0", - }, - left: { - float: "left!important", - display: "block", - }, - right: { - padding: "15px 0", - margin: "0", - float: "right", - }, - icon: { - width: "18px", - height: "18px", - top: "3px", - position: "relative", - }, -}; - -export default aboutUsStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/blogPostPageStyle.js b/styles/jss/nextjs-material-kit-pro/pages/blogPostPageStyle.js deleted file mode 100644 index e9b8fe3..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/blogPostPageStyle.js +++ /dev/null @@ -1,66 +0,0 @@ -import { - container, - title, - main, - whiteColor, - mainRaised, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const blogPostPageStyle = { - container: { - ...container, - zIndex: "2", - }, - textCenter: { - textAlign: "center", - }, - title: { - ...title, - color: whiteColor, - }, - subtitle: { - color: whiteColor, - }, - main: { - ...main, - ...mainRaised, - }, - block: { - color: "inherit", - padding: "0.9375rem", - fontWeight: "500", - fontSize: "12px", - textTransform: "uppercase", - borderRadius: "3px", - textDecoration: "none", - position: "relative", - display: "block", - }, - inlineBlock: { - display: "inline-block", - padding: "0px", - width: "auto", - }, - list: { - marginBottom: "0", - padding: "0", - marginTop: "0", - }, - left: { - float: "left!important", - display: "block", - }, - right: { - padding: "15px 0", - margin: "0", - float: "right", - }, - icon: { - width: "18px", - height: "18px", - top: "3px", - position: "relative", - }, -}; - -export default blogPostPageStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/blogPostSections/sectionBlogInfoStyle.js b/styles/jss/nextjs-material-kit-pro/pages/blogPostSections/sectionBlogInfoStyle.js deleted file mode 100644 index 4872f21..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/blogPostSections/sectionBlogInfoStyle.js +++ /dev/null @@ -1,33 +0,0 @@ -import { grayColor, cardTitle } from "styles/jss/nextjs-material-kit-pro.js"; -const sectionBlogInfoStyle = { - section: { - paddingTop: "30px", - paddingBottom: "0", - backgroundPosition: "50%", - backgroundSize: "cover", - padding: "70px 0", - }, - blogTags: { - marginTop: "8px", - }, - buttons: { - marginTop: "0", - marginBottom: "0", - float: "right !important", - }, - card: { - marginTop: "0", - textAlign: "left", - }, - cardTitle, - description: { - fontSize: "1rem", - color: grayColor[0], - }, - pullRight: { - marginTop: "25px", - float: "right", - }, -}; - -export default sectionBlogInfoStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/blogPostSections/sectionCommentsStyle.js b/styles/jss/nextjs-material-kit-pro/pages/blogPostSections/sectionCommentsStyle.js deleted file mode 100644 index 74fec5e..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/blogPostSections/sectionCommentsStyle.js +++ /dev/null @@ -1,38 +0,0 @@ -import { grayColor, title } from "styles/jss/nextjs-material-kit-pro.js"; - -import tooltipsStyle from "styles/jss/nextjs-material-kit-pro/tooltipsStyle.js"; - -const sectionCommentsStyle = { - ...tooltipsStyle, - section: { - backgroundposition: "50%", - backgroundSize: "cover", - padding: "70px 0", - }, - title: { - ...title, - marginBottom: "30px", - textAlign: "center", - }, - footerButtons: { - float: "right", - }, - footerIcons: { - width: "1.1rem", - height: "1.1rem", - position: "relative", - display: "inline-block", - top: "0", - marginTop: "-1em", - marginBottom: "-1em", - marginRight: "3px", - verticalAlign: "middle", - }, - color555: { - "&,& *": { - color: grayColor[15] + " !important", - }, - }, -}; - -export default sectionCommentsStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/blogPostSections/sectionSimilarStoriesStyle.js b/styles/jss/nextjs-material-kit-pro/pages/blogPostSections/sectionSimilarStoriesStyle.js deleted file mode 100644 index f9ce31f..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/blogPostSections/sectionSimilarStoriesStyle.js +++ /dev/null @@ -1,27 +0,0 @@ -import { - container, - title, - cardTitle, - grayColor, - coloredShadow, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const sectionSimilarStoriesStyle = { - container, - title, - cardTitle, - coloredShadow, - textCenter: { - textAlign: "center", - }, - section: { - backgroundPosition: "50%", - backgroundSize: "cover", - padding: "70px 0", - }, - description: { - color: grayColor[0], - }, -}; - -export default sectionSimilarStoriesStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/blogPostSections/sectionTextStyle.js b/styles/jss/nextjs-material-kit-pro/pages/blogPostSections/sectionTextStyle.js deleted file mode 100644 index 7f38da7..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/blogPostSections/sectionTextStyle.js +++ /dev/null @@ -1,30 +0,0 @@ -import { - grayColor, - container, - title, -} from "styles/jss/nextjs-material-kit-pro.js"; - -import imagesStyles from "styles/jss/nextjs-material-kit-pro/imagesStyles.js"; - -const sectionTextStyle = { - container, - title, - section: { - paddingBottom: "0", - backgroundPosition: "50%", - backgroundSize: "cover", - padding: "70px 0", - "& p": { - fontSize: "1.188rem", - lineHeight: "1.5em", - color: grayColor[15], - marginBottom: "30px", - }, - }, - quoteText: { - fontSize: "1.5rem !important", - }, - ...imagesStyles, -}; - -export default sectionTextStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/blogPostsPageStyle.js b/styles/jss/nextjs-material-kit-pro/pages/blogPostsPageStyle.js deleted file mode 100644 index a828ff1..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/blogPostsPageStyle.js +++ /dev/null @@ -1,64 +0,0 @@ -import { - container, - title, - main, - whiteColor, - mainRaised, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const blogPostsPageStyle = { - container: { - ...container, - zIndex: "2", - position: "relative", - }, - textCenter: { - textAlign: "center", - }, - title: { - ...title, - color: whiteColor, - }, - main: { - ...main, - ...mainRaised, - }, - block: { - color: "inherit", - padding: "0.9375rem", - fontWeight: "500", - fontSize: "12px", - textTransform: "uppercase", - borderRadius: "3px", - textDecoration: "none", - position: "relative", - display: "block", - }, - inlineBlock: { - display: "inline-block", - padding: "0px", - width: "auto", - }, - list: { - marginBottom: "0", - padding: "0", - marginTop: "0", - }, - left: { - float: "left!important", - display: "block", - }, - right: { - padding: "15px 0", - margin: "0", - float: "right", - }, - icon: { - width: "18px", - height: "18px", - top: "3px", - position: "relative", - }, -}; - -export default blogPostsPageStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/blogPostsSections/sectionImageStyle.js b/styles/jss/nextjs-material-kit-pro/pages/blogPostsSections/sectionImageStyle.js deleted file mode 100644 index 3e684b3..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/blogPostsSections/sectionImageStyle.js +++ /dev/null @@ -1,46 +0,0 @@ -import { - section, - sectionDark, - cardTitle, - container, - blackColor, - whiteColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const sectionImageStyle = { - container: { - ...container, - position: "relative", - zIndex: "2", - }, - section: { - ...section, - ...sectionDark, - padding: "80px 0", - position: "relative", - "&:after": { - position: "absolute", - zIndex: "1", - width: "100%", - height: "100%", - display: "block", - left: "0", - top: "0", - content: "''", - backgroundColor: "rgba(" + hexToRgb(blackColor) + ", 0.7)", - }, - }, - cardTitle: { - ...cardTitle, - color: whiteColor + " !important", - }, - description: { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.76)", - }, - textLeft: { - textAlign: "left", - }, -}; - -export default sectionImageStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/blogPostsSections/sectionInterestedStyle.js b/styles/jss/nextjs-material-kit-pro/pages/blogPostsSections/sectionInterestedStyle.js deleted file mode 100644 index 26cab2b..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/blogPostsSections/sectionInterestedStyle.js +++ /dev/null @@ -1,25 +0,0 @@ -import { - title, - cardTitle, - coloredShadow, - grayColor, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const sectionInterestedStyle = { - title, - cardTitle, - coloredShadow, - textCenter: { - textAlign: "center", - }, - section: { - backgroundPosition: "50%", - backgroundSize: "cover", - padding: "70px 0", - }, - description: { - color: grayColor[0], - }, -}; - -export default sectionInterestedStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/blogPostsSections/sectionPillsStyle.js b/styles/jss/nextjs-material-kit-pro/pages/blogPostsSections/sectionPillsStyle.js deleted file mode 100644 index 1b95f13..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/blogPostsSections/sectionPillsStyle.js +++ /dev/null @@ -1,43 +0,0 @@ -import { - whiteColor, - hexToRgb, - cardTitle, -} from "styles/jss/nextjs-material-kit-pro.js"; - -import tooltipsStyle from "styles/jss/nextjs-material-kit-pro/tooltipsStyle.js"; - -const sectionPillsStyle = { - ...tooltipsStyle, - section: { - backgroundPosition: "50%", - backgroundSize: "cover", - padding: "70px 0", - }, - textCenter: { - textAlign: "center", - }, - category: { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.7) !important", - marginTop: "10px", - }, - cardTitle: { - ...cardTitle, - color: whiteColor + " !important", - }, - icons: { - width: "1.1rem", - height: "1.1rem", - position: "relative", - display: "inline-block", - top: "0", - marginTop: "-1em", - marginBottom: "-1em", - marginRight: "4px", - verticalAlign: "middle", - }, - tabSpace: { - padding: "20px 0 50px", - }, -}; - -export default sectionPillsStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/blogPostsSections/sectionSubscribeLineStyle.js b/styles/jss/nextjs-material-kit-pro/pages/blogPostsSections/sectionSubscribeLineStyle.js deleted file mode 100644 index 8cd851b..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/blogPostsSections/sectionSubscribeLineStyle.js +++ /dev/null @@ -1,32 +0,0 @@ -import { - container, - title, - description, - grayColor, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const sectionSubscribeLineStyle = { - container, - title, - description, - section: { - padding: "1.875rem 0", - }, - cardClasses: { - marginTop: "30px", - }, - icon: { - color: grayColor[13], - }, - formControl: { - paddingTop: "0px !important", - paddingBottom: "0px !important", - margin: "0px !important", - }, - alignItemsCenter: { - display: "flex", - alignItems: "center", - }, -}; - -export default sectionSubscribeLineStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/basicsStyle.js b/styles/jss/nextjs-material-kit-pro/pages/componentsSections/basicsStyle.js deleted file mode 100644 index b22ea20..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/basicsStyle.js +++ /dev/null @@ -1,41 +0,0 @@ -import { - container, - whiteColor, - title, - mlAuto, - mrAuto, -} from "styles/jss/nextjs-material-kit-pro.js"; -import customCheckboxRadioSwitch from "styles/jss/nextjs-material-kit-pro/customCheckboxRadioSwitchStyle.js"; -import customSelectStyle from "styles/jss/nextjs-material-kit-pro/customSelectStyle.js"; - -const basicsStyle = { - mlAuto, - mrAuto, - container, - ...customSelectStyle, - ...customCheckboxRadioSwitch, - sections: { - padding: "70px 0", - }, - title: { - ...title, - marginTop: "30px", - minHeight: "32px", - textDecoration: "none", - }, - space50: { - height: "50px", - display: "block", - }, - space70: { - height: "70px", - display: "block", - }, - icons: { - width: "17px", - height: "17px", - color: whiteColor, - }, -}; - -export default basicsStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/carouselStyle.js b/styles/jss/nextjs-material-kit-pro/pages/componentsSections/carouselStyle.js deleted file mode 100644 index fe200a4..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/carouselStyle.js +++ /dev/null @@ -1,14 +0,0 @@ -import { container } from "styles/jss/nextjs-material-kit-pro.js"; - -const carouselStyle = { - section: { - padding: "0 0", - }, - container, - marginAuto: { - marginLeft: "auto !important", - marginRight: "auto !important", - }, -}; - -export default carouselStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/contentAreas.js b/styles/jss/nextjs-material-kit-pro/pages/componentsSections/contentAreas.js deleted file mode 100644 index e7b99ac..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/contentAreas.js +++ /dev/null @@ -1,97 +0,0 @@ -import { - title, - mrAuto, - mlAuto, - grayColor, -} from "styles/jss/nextjs-material-kit-pro.js"; - -import checkboxes from "styles/jss/nextjs-material-kit-pro/customCheckboxRadioSwitchStyle.js"; -import buttonGroup from "styles/jss/nextjs-material-kit-pro/buttonGroupStyle.js"; -import tooltips from "styles/jss/nextjs-material-kit-pro/tooltipsStyle.js"; - -const contentAreas = { - title, - mrAuto, - mlAuto, - ...checkboxes, - ...buttonGroup, - ...tooltips, - space50: { - height: "50px", - display: "block", - }, - padding0: { - padding: "0 !important", - }, - imgContainer: { - width: "120px", - maxHeight: "160px", - overflow: "hidden", - display: "block", - "& img": { - width: "100%", - }, - }, - description: { - maxWidth: "150px", - }, - tdName: { - minWidth: "200px", - fontWeight: "400", - fontSize: "1.5em", - }, - tdNameAnchor: { - color: grayColor[1], - }, - tdNameSmall: { - color: grayColor[0], - fontSize: "0.75em", - fontWeight: "300", - }, - tdNumber: { - textAlign: "right", - minWidth: "150px", - fontWeight: "300", - fontSize: "1.125em !important", - }, - tdNumberSmall: { - marginRight: "3px", - }, - tdNumberAndButtonGroup: { - lineHeight: "1 !important", - "& .fab,& .fas,& .far,& .fal,& .material-icons": { - marginRight: "0", - }, - "& svg": { - marginRight: "0", - }, - }, - customFont: { - fontSize: "16px !important", - }, - actionButton: { - margin: "0px", - padding: "5px", - }, - textCenter: { - textAlign: "center", - }, - textRight: { - textAlign: "right", - }, - floatRight: { - float: "right", - }, - justifyContentCenter: { - WebkitBoxPack: "center !important", - MsFlexPack: "center !important", - justifyContent: "center !important", - }, - signInButton: { - "& button": { - marginRight: "5px", - }, - }, -}; - -export default contentAreas; diff --git a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/footerStyle.js b/styles/jss/nextjs-material-kit-pro/pages/componentsSections/footerStyle.js deleted file mode 100644 index dd139a9..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/footerStyle.js +++ /dev/null @@ -1,188 +0,0 @@ -import { - container, - title, - description, - section, - btnLink, - twitterColor, - dribbbleColor, - instagramColor, - grayColor, -} from "styles/jss/nextjs-material-kit-pro.js"; - -import imagesStyles from "styles/jss/nextjs-material-kit-pro/imagesStyles.js"; - -const style = { - ...imagesStyles, - container, - title, - description, - section: { - ...section, - padding: "70px 0px", - }, - socialFeed: { - "& p": { - display: "table-cell", - verticalAlign: "top", - overflow: "hidden", - paddingBottom: "10px", - maxWidth: 300, - }, - "& i": { - fontSize: "20px", - display: "table-cell", - paddingRight: "10px", - }, - }, - img: { - width: "20%", - marginRight: "5%", - marginBottom: "5%", - float: "left", - }, - list: { - marginBottom: "0", - padding: "0", - marginTop: "0", - }, - inlineBlock: { - display: "inline-block", - padding: "0px", - width: "auto", - }, - left: { - float: "left!important", - display: "block", - }, - right: { - padding: "15px 0", - margin: "0", - float: "right", - }, - aClass: { - textDecoration: "none", - backgroundColor: "transparent", - }, - block: { - color: "inherit", - padding: "0.9375rem", - fontWeight: "500", - fontSize: "12px", - textTransform: "uppercase", - borderRadius: "3px", - textDecoration: "none", - position: "relative", - display: "block", - }, - footerBrand: { - height: "50px", - padding: "15px 15px", - fontSize: "18px", - lineHeight: "50px", - marginLeft: "-15px", - color: grayColor[1], - textDecoration: "none", - fontWeight: 700, - fontFamily: "Roboto Slab,Times New Roman,serif", - }, - pullCenter: { - display: "inline-block", - float: "none", - }, - rightLinks: { - float: "right!important", - "& ul": { - marginBottom: 0, - padding: 0, - listStyle: "none", - "& li": { - display: "inline-block", - }, - "& a": { - display: "block", - }, - }, - "& i": { - fontSize: "20px", - }, - }, - linksVertical: { - "& li": { - display: "block !important", - marginLeft: "-5px", - marginRight: "-5px", - "& a": { - padding: "5px !important", - }, - }, - }, - footer: { - "& ul li": { - display: "inline-block", - }, - "& h4, & h5": { - color: grayColor[1], - textDecoration: "none", - }, - "& ul:not($socialButtons) li a": { - color: "inherit", - padding: "0.9375rem", - fontWeight: "500", - fontSize: "12px", - textTransform: "uppercase", - borderRadius: "3px", - textDecoration: "none", - position: "relative", - display: "block", - }, - "& small": { - fontSize: "75%", - color: grayColor[10], - }, - "& $pullCenter": { - display: "inline-block", - float: "none", - }, - }, - iconSocial: { - width: "41px", - height: "41px", - fontSize: "24px", - minWidth: "41px", - padding: 0, - overflow: "hidden", - position: "relative", - }, - copyRight: { - padding: "15px 0px", - }, - socialButtons: { - "& li": { - display: "inline-block", - }, - }, - btnTwitter: { - ...btnLink, - color: twitterColor, - }, - btnDribbble: { - ...btnLink, - color: dribbbleColor, - }, - btnInstagram: { - ...btnLink, - color: instagramColor, - }, - icon: { - top: "3px", - width: "18px", - height: "18px", - position: "relative", - }, - customFormControl: { - paddingTop: "14px", - }, -}; - -export default style; diff --git a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/javascriptStyles.js b/styles/jss/nextjs-material-kit-pro/pages/componentsSections/javascriptStyles.js deleted file mode 100644 index 8bb2044..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/javascriptStyles.js +++ /dev/null @@ -1,94 +0,0 @@ -import { - container, - title, - cardTitle, - description, - mlAuto, - mrAuto, - blackColor, - whiteColor, - grayColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -import modalStyle from "styles/jss/nextjs-material-kit-pro/modalStyle.js"; -import tooltipsStyle from "styles/jss/nextjs-material-kit-pro/tooltipsStyle.js"; -import popoverStyles from "styles/jss/nextjs-material-kit-pro/popoverStyles.js"; -import customCheckboxRadioSwitch from "styles/jss/nextjs-material-kit-pro/customCheckboxRadioSwitchStyle.js"; - -const javascriptStyles = (theme) => ({ - container, - description, - cardTitle, - mlAuto, - mrAuto, - ...tooltipsStyle, - ...popoverStyles, - ...modalStyle(theme), - ...customCheckboxRadioSwitch, - section: { - padding: "70px 0 0", - }, - title: { - ...title, - marginTop: "30px", - minHeight: "32px", - textDecoration: "none", - }, - icon: { - width: "24px", - height: "24px", - color: grayColor[13], - }, - label: { - color: "rgba(" + hexToRgb(blackColor) + ", 0.26)", - cursor: "pointer", - display: "inline-flex", - fontSize: "14px", - transition: "0.3s ease all", - lineHeight: "1.428571429", - fontWeight: "400", - paddingLeft: "0", - }, - textCenter: { - textAlign: "center", - }, - cardTitleWhite: { - ...cardTitle, - color: whiteColor + " !important", - }, - socialLine: { - marginTop: "1rem", - textAlign: "center", - padding: "0", - }, - socialLineButton: { - "&, &:hover": { color: whiteColor }, - marginLeft: "5px", - marginRight: "5px", - }, - cardLoginHeader: { - marginTop: "-40px", - padding: "20px 0", - width: "100%", - marginBottom: "15px", - }, - cardLoginBody: { - paddingTop: "0", - paddingBottom: "0", - }, - justifyContentCenter: { - WebkitBoxPack: "center !important", - MsFlexPack: "center !important", - justifyContent: "center !important", - }, - infoArea: { - padding: "0px 0px 20px !important", - }, - space50: { - height: "50px", - display: "block", - }, -}); - -export default javascriptStyles; diff --git a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/navbarsStyle.js b/styles/jss/nextjs-material-kit-pro/pages/componentsSections/navbarsStyle.js deleted file mode 100644 index c4ca35a..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/navbarsStyle.js +++ /dev/null @@ -1,70 +0,0 @@ -import { - container, - title, - grayColor, -} from "styles/jss/nextjs-material-kit-pro.js"; -import headerLinksStyle from "styles/jss/nextjs-material-kit-pro/components/headerLinksStyle.js"; - -const navbarsStyle = (theme) => ({ - container, - ...headerLinksStyle(theme), - section: { - padding: "70px 0", - paddingBottom: "0", - }, - title: { - ...title, - marginTop: "30px", - minHeight: "32px", - textDecoration: "none", - }, - navbar: { - marginBottom: "-20px", - zIndex: "100", - position: "relative", - overflow: "hidden", - "& header": { - borderRadius: "0", - zIndex: "unset", - }, - }, - navigation: { - backgroundPosition: "50%", - backgroundSize: "cover", - marginTop: "0", - minHeight: "740px", - }, - formControl: { - [theme.breakpoints.down("md")]: { - color: grayColor[0], - marginLeft: "20px !important", - }, - margin: "0 !important", - paddingTop: "7px", - paddingBottom: "7px", - }, - inputRootCustomClasses: { - margin: "0!important", - }, - searchIcon: { - width: "20px", - height: "20px", - color: "inherit", - }, - img: { - width: "40px", - height: "40px", - borderRadius: "50%", - }, - imageDropdownButton: { - [theme.breakpoints.down("md")]: { - top: "0", - margin: "5px 15px", - }, - padding: "0px", - borderRadius: "50%", - marginLeft: "5px", - }, -}); - -export default navbarsStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/notificationsStyles.js b/styles/jss/nextjs-material-kit-pro/pages/componentsSections/notificationsStyles.js deleted file mode 100644 index b6eff18..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/notificationsStyles.js +++ /dev/null @@ -1,30 +0,0 @@ -import { - container, - title, - whiteColor, - section, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const notificationsStyles = { - section: { - backgroundColor: whiteColor, - display: "block", - width: "100%", - position: "relative", - padding: "70px 0", - ...section, - }, - title: { - ...title, - marginTop: "30px", - minHeight: "32px", - textDecoration: "none", - }, - space70: { - height: "70px", - display: "block", - }, - container, -}; - -export default notificationsStyles; diff --git a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/pillsStyle.js b/styles/jss/nextjs-material-kit-pro/pages/componentsSections/pillsStyle.js deleted file mode 100644 index dafa1c4..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/pillsStyle.js +++ /dev/null @@ -1,16 +0,0 @@ -import { container, title } from "styles/jss/nextjs-material-kit-pro.js"; - -const pillsStyle = { - section: { - padding: "70px 0", - }, - container, - title: { - ...title, - marginTop: "30px", - minHeight: "32px", - textDecoration: "none", - }, -}; - -export default pillsStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/preFooter.js b/styles/jss/nextjs-material-kit-pro/pages/componentsSections/preFooter.js deleted file mode 100644 index a37facc..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/preFooter.js +++ /dev/null @@ -1,115 +0,0 @@ -import { - container, - title, - mlAuto, - mrAuto, - description, - blackColor, - whiteColor, - grayColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const styles = { - container, - title, - mrAuto, - mlAuto, - description, - card: {}, - cardBody: { - padding: "15px", - "& form": { - marginBottom: "0", - }, - }, - cardForm: { - margin: "0 0 0 14px", - padding: 0, - top: 10, - }, - socialLine: { - padding: ".9375rem 0px", - "& $border": { - borderRight: "1px solid rgba(" + hexToRgb(blackColor) + ",0.12)", - }, - "& $border:last-child": { - border: 0, - }, - }, - textCenter: { - textAlign: "center !important", - }, - white: { - backgroundColor: whiteColor, - }, - dark: { - background: - "radial-gradient(ellipse at center," + - grayColor[4] + - " 0," + - grayColor[5] + - " 100%)", - backgroundSize: "550% 450%", - "& $border": { - borderColor: "rgba(" + hexToRgb(whiteColor) + ",0.1)", - }, - }, - bigIcons: { - "& a": { - margin: 0, - width: "100% !important", - paddingTop: "45px", - paddingBottom: "45px", - }, - "& button i.fab, & a i.fab": { - fontSize: "25px !important", - lineHeight: "90px !important", - }, - }, - subscribeLine: { - padding: "1.875rem 0px", - "& $card": { - marginTop: "30px", - }, - "& form": { margin: "0px" }, - "& $formFix": { paddingTop: "0px" }, - "&$subscribeLineImage:after": { - position: "absolute", - zIndex: 1, - width: "100%", - height: "100%", - display: "block", - left: 0, - top: 0, - content: "''", - backgroundColor: "rgba(" + hexToRgb(blackColor) + ",0.66)", - }, - }, - formFix: {}, - subscribeLineWhite: { - backgroundColor: whiteColor, - "& $subscribeButton": { - top: "-6px", - }, - }, - subscribeLineImage: { - position: "relative", - backgroundPosition: "top center", - backgroundSize: "cover", - "& $container": { - zIndex: 2, - position: "relative", - }, - "& $title": { - color: whiteColor, - }, - "& $description": { - color: grayColor[0], - }, - }, - subscribeButton: {}, - border: {}, -}; - -export default styles; diff --git a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/sectionCards.js b/styles/jss/nextjs-material-kit-pro/pages/componentsSections/sectionCards.js deleted file mode 100644 index 882ffb8..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/sectionCards.js +++ /dev/null @@ -1,206 +0,0 @@ -import { - container, - coloredShadow, - title, - cardTitle, - description, - mlAuto, - infoColor, - whiteColor, - roseColor, - grayColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -import imageStyles from "styles/jss/nextjs-material-kit-pro/imagesStyles.js"; - -import rotatingCards from "styles/jss/nextjs-material-kit-pro/rotatingCards.js"; - -const styles = { - container, - coloredShadow, - title, - mlAuto, - cardTitle, - ...imageStyles, - ...rotatingCards, - sectionGray: { - background: grayColor[14], - }, - sectionWhite: { - background: whiteColor, - }, - cardTitleAbsolute: { - ...cardTitle, - position: "absolute !important", - bottom: "15px !important", - left: "15px !important", - color: whiteColor + " !important", - fontSize: "1.125rem !important", - textShadow: - "0 2px 5px rgba(" + hexToRgb(grayColor[9]) + ", 0.5) !important", - }, - cardTitleWhite: { - "&, & a": { - ...title, - marginTop: ".625rem", - marginBottom: "0", - minHeight: "auto", - color: whiteColor + " !important", - }, - }, - cardCategory: { - marginTop: "10px", - "& svg": { - position: "relative", - top: "8px", - }, - }, - cardCategorySocial: { - marginTop: "10px", - "& .fab,& .fas,& .far,& .fal,& .material-icons": { - fontSize: "22px", - position: "relative", - marginTop: "-4px", - top: "2px", - marginRight: "5px", - }, - "& svg": { - position: "relative", - top: "5px", - }, - }, - cardCategorySocialWhite: { - marginTop: "10px", - color: "rgba(" + hexToRgb(whiteColor) + ", 0.8)", - "& .fab,& .fas,& .far,& .fal,& .material-icons": { - fontSize: "22px", - position: "relative", - marginTop: "-4px", - top: "2px", - marginRight: "5px", - }, - "& svg": { - position: "relative", - top: "5px", - }, - }, - cardCategoryWhite: { - marginTop: "10px", - color: "rgba(" + hexToRgb(whiteColor) + ", 0.7)", - }, - cardCategoryFullWhite: { - marginTop: "10px", - color: whiteColor, - }, - cardDescription: { - ...description, - }, - cardDescriptionWhite: { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.8)", - }, - author: { - display: "inline-flex", - "& a": { - color: grayColor[1], - }, - }, - authorWhite: { - display: "inline-flex", - "& a": { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.8)", - }, - }, - avatar: { - width: "30px", - height: "30px", - overflow: "hidden", - borderRadius: "50%", - marginRight: "5px", - }, - statsWhite: { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.8)", - display: "inline-flex", - "& .fab,& .fas,& .far,& .fal,& .material-icons": { - position: "relative", - top: "3px", - marginRight: "3px", - marginLeft: "3px", - fontSize: "18px", - lineHeight: "18px", - }, - "& svg": { - position: "relative", - top: "3px", - marginRight: "3px", - marginLeft: "3px", - width: "18px", - height: "18px", - }, - }, - stats: { - color: grayColor[0], - display: "flex", - "& .fab,& .fas,& .far,& .fal,& .material-icons": { - position: "relative", - top: "3px", - marginRight: "3px", - marginLeft: "3px", - fontSize: "18px", - lineHeight: "18px", - }, - "& svg": { - position: "relative", - top: "3px", - marginRight: "3px", - marginLeft: "3px", - width: "18px", - height: "18px", - }, - }, - justifyContentCenter: { - WebkitBoxPack: "center !important", - MsFlexPack: "center !important", - justifyContent: "center !important", - }, - iconWrapper: { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.76)", - margin: "10px auto 0", - width: "130px", - height: "130px", - border: "1px solid " + grayColor[14], - borderRadius: "50%", - lineHeight: "174px", - "& .fab,& .fas,& .far,& .fal,& .material-icons": { - fontSize: "55px", - lineHeight: "55px", - }, - "& svg": { - width: "55px", - height: "55px", - }, - }, - iconWrapperColor: { - borderColor: "rgba(" + hexToRgb(whiteColor) + ", 0.25)", - }, - iconWhite: { - color: whiteColor, - }, - iconRose: { - color: roseColor[0], - }, - iconInfo: { - color: infoColor[0], - }, - marginTop30: { - marginTop: "30px", - }, - textCenter: { - textAlign: "center", - }, - marginBottom20: { - marginBottom: "20px", - }, -}; - -export default styles; diff --git a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/tabsStyle.js b/styles/jss/nextjs-material-kit-pro/pages/componentsSections/tabsStyle.js deleted file mode 100644 index 53e2b7a..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/tabsStyle.js +++ /dev/null @@ -1,13 +0,0 @@ -import { container } from "styles/jss/nextjs-material-kit-pro.js"; - -const tabsStyle = { - section: { - padding: "70px 0", - }, - container, - textCenter: { - textAlign: "center", - }, -}; - -export default tabsStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/typographyStyle.js b/styles/jss/nextjs-material-kit-pro/pages/componentsSections/typographyStyle.js deleted file mode 100644 index 3bc1b5a..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/componentsSections/typographyStyle.js +++ /dev/null @@ -1,49 +0,0 @@ -import { - grayColor, - container, - title, -} from "styles/jss/nextjs-material-kit-pro.js"; - -import imagesStyles from "styles/jss/nextjs-material-kit-pro/imagesStyles.js"; - -const typographyStyle = { - section: { - padding: "70px 0", - }, - container, - space50: { - height: "50px", - display: "block", - }, - title: { - ...title, - marginTop: "30px", - minHeight: "32px", - textDecoration: "none", - }, - typo: { - paddingLeft: "25%", - marginBottom: "40px", - position: "relative", - width: "100%", - }, - note: { - fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif', - bottom: "10px", - color: grayColor[21], - display: "block", - fontWeight: "400", - fontSize: "13px", - lineHeight: "13px", - left: "0", - marginLeft: "20px", - position: "absolute", - width: "260px", - }, - marginLeft: { - marginLeft: "auto !important", - }, - ...imagesStyles, -}; - -export default typographyStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/componentsStyle.js b/styles/jss/nextjs-material-kit-pro/pages/componentsStyle.js deleted file mode 100644 index f08dc8d..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/componentsStyle.js +++ /dev/null @@ -1,109 +0,0 @@ -import { - container, - main, - mainRaised, - title, - whiteColor, - grayColor, - section, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const componentsStyle = { - main, - mainRaised, - parallax: { - height: "90vh", - overflow: "hidden", - backgroundPosition: "center top", - }, - container: { - ...container, - zIndex: "2", - position: "relative", - }, - brand: { - color: whiteColor, - textAlign: "center", - "& h1": { - fontSize: "4.2rem", - fontWeight: "600", - display: "inline-block", - position: "relative", - }, - "& h3": { - fontSize: "1.313rem", - maxWidth: "500px", - margin: "10px auto 0", - }, - }, - title: { - ...title, - color: whiteColor + " !important", - }, - link: { - textDecoration: "none", - }, - textCenter: { - textAlign: "center", - }, - proBadge: { - position: "absolute", - fontSize: "22px", - textTransform: "uppercase", - fontWeight: "bold", - right: "-90px", - top: "-3px", - padding: "10px 18px", - backgroundColor: whiteColor, - borderRadius: "3px", - color: grayColor[18], - lineHeight: "22px", - boxShadow: "0px 5px 5px -2px rgba(" + hexToRgb(grayColor[25]) + ",0.4)", - }, - section: { - ...section, - padding: "70px 0px", - }, - sectionGray: { - background: grayColor[14], - }, - block: { - color: "inherit", - padding: "0.9375rem", - fontWeight: "500", - fontSize: "12px", - textTransform: "uppercase", - borderRadius: "3px", - textDecoration: "none", - position: "relative", - display: "block", - }, - inlineBlock: { - display: "inline-block", - padding: "0px", - width: "auto", - }, - list: { - marginBottom: "0", - padding: "0", - marginTop: "0", - }, - left: { - float: "left!important", - display: "block", - }, - right: { - padding: "15px 0", - margin: "0", - float: "right", - }, - icon: { - width: "18px", - height: "18px", - top: "3px", - position: "relative", - }, -}; - -export default componentsStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/contactUsStyle.js b/styles/jss/nextjs-material-kit-pro/pages/contactUsStyle.js deleted file mode 100644 index 58d0c3a..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/contactUsStyle.js +++ /dev/null @@ -1,75 +0,0 @@ -import { - container, - title, - main, - mainRaised, - mlAuto, - description, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const contactUsStyle = { - main, - mainRaised, - title, - mlAuto, - description, - container: { - ...container, - maxWidth: "970px !important", - }, - contactContent: { - paddingBottom: "40px", - paddingTop: "40px", - }, - bigMap: { - height: "55vh", - maxHeight: "550px", - width: "100%", - display: "block", - }, - info: { - paddingBottom: "10px", - paddingTop: 0, - }, - textCenter: { - textAlign: "center !important", - }, - block: { - color: "inherit", - padding: "0.9375rem", - fontWeight: "500", - fontSize: "12px", - textTransform: "uppercase", - borderRadius: "3px", - textDecoration: "none", - position: "relative", - display: "block", - }, - inlineBlock: { - display: "inline-block", - padding: "0px", - width: "auto", - }, - list: { - marginBottom: "0", - padding: "0", - marginTop: "0", - }, - left: { - float: "left!important", - display: "block", - }, - right: { - padding: "15px 0", - margin: "0", - float: "right", - }, - icon: { - width: "18px", - height: "18px", - top: "3px", - position: "relative", - }, -}; - -export default contactUsStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/ecommerceSections/blogStyle.js b/styles/jss/nextjs-material-kit-pro/pages/ecommerceSections/blogStyle.js deleted file mode 100644 index abfd92a..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/ecommerceSections/blogStyle.js +++ /dev/null @@ -1,29 +0,0 @@ -import { - section, - container, - cardTitle, - grayColor, - roseColor, - coloredShadow, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const styles = { - cardTitle, - container, - section: { - ...section, - padding: "70px 0px", - }, - coloredShadow, - cardDescription: { - color: grayColor[0], - }, - cardCategory: { - marginTop: "10px", - }, - textRose: { - color: roseColor[0] + " !important", - }, -}; - -export default styles; diff --git a/styles/jss/nextjs-material-kit-pro/pages/ecommerceSections/latestOffersStyle.js b/styles/jss/nextjs-material-kit-pro/pages/ecommerceSections/latestOffersStyle.js deleted file mode 100644 index 8d0cc9f..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/ecommerceSections/latestOffersStyle.js +++ /dev/null @@ -1,49 +0,0 @@ -import { - section, - container, - cardTitle, - coloredShadow, - grayColor, - dangerColor, - mlAuto, -} from "styles/jss/nextjs-material-kit-pro.js"; - -import tooltipsStyle from "styles/jss/nextjs-material-kit-pro/tooltipsStyle.js"; - -const styles = { - cardTitle, - container, - ...tooltipsStyle, - section: { - ...section, - padding: "70px 0px", - }, - coloredShadow, - cardDescription: { - color: grayColor[0], - textAlign: "center", - }, - mlAuto, - priceContainer: { - display: "inline-flex", - }, - price: { - fontSize: "18px", - color: grayColor[22], - }, - priceOld: { - fontSize: "16px", - textDecoration: "line-through", - }, - priceNew: { - color: dangerColor[0], - }, - stats: { - color: grayColor[0], - }, - textCenter: { - textAlign: "center", - }, -}; - -export default styles; diff --git a/styles/jss/nextjs-material-kit-pro/pages/ecommerceSections/productsStyle.js b/styles/jss/nextjs-material-kit-pro/pages/ecommerceSections/productsStyle.js deleted file mode 100644 index 30be5e6..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/ecommerceSections/productsStyle.js +++ /dev/null @@ -1,99 +0,0 @@ -import { - section, - container, - cardTitle, - coloredShadow, - mlAuto, - mrAuto, - grayColor, -} from "styles/jss/nextjs-material-kit-pro.js"; - -import customCheckboxRadioSwitch from "styles/jss/nextjs-material-kit-pro/customCheckboxRadioSwitchStyle.js"; - -import tooltipsStyle from "styles/jss/nextjs-material-kit-pro/tooltipsStyle.js"; - -const styles = { - ...customCheckboxRadioSwitch, - ...tooltipsStyle, - checkRoot: { - padding: "14px", - "&:hover": { - backgroundColor: "unset !important", - }, - }, - coloredShadow, - mlAuto, - mrAuto, - cardTitle: { - ...cardTitle, - textAlign: "center", - marginBottom: "0px !important", - }, - cardDescription: { - color: grayColor[0], - textAlign: "center", - }, - container: { - ...container, - }, - description: { - color: grayColor[0], - }, - section: { - ...section, - padding: "70px 0px", - }, - priceContainer: { - display: "inline-flex", - }, - price: { - fontSize: "18px", - color: grayColor[22], - }, - pullRight: { - float: "right", - }, - cardHeaderImage: { - position: "relative", - padding: "0", - zIndex: "1", - marginLeft: "15px", - marginRight: "15px", - marginTop: "-30px", - borderRadius: "6px", - "& img": { - width: "100%", - borderRadius: "6px", - pointerEvents: "none", - }, - "& a": { - display: "block", - }, - }, - justifyContentBetween: { - WebkitBoxPack: "justify!important", - justifyContent: "space-between !important", - }, - customExpandPanel: { - maxHeight: "273px", - overflowY: "scroll", - "& label": { - display: "block", - }, - }, - priceSlider: { - fontWeight: "500", - }, - refineButton: { - margin: "-3px 0", - }, - cardBodyRefine: { - paddingLeft: "15px", - paddingRight: "15px", - }, - textLeft: { - textAlign: "left", - }, -}; - -export default styles; diff --git a/styles/jss/nextjs-material-kit-pro/pages/ecommerceStyle.js b/styles/jss/nextjs-material-kit-pro/pages/ecommerceStyle.js deleted file mode 100644 index 78bfd42..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/ecommerceStyle.js +++ /dev/null @@ -1,138 +0,0 @@ -import { - title, - main, - mainRaised, - mrAuto, - mlAuto, - container, - description, - blackColor, - whiteColor, - grayColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; -import imagesStyles from "styles/jss/nextjs-material-kit-pro/imagesStyles.js"; - -const styles = { - ...imagesStyles, - title, - main, - mainRaised, - mrAuto, - mlAuto, - description, - textCenter: { - textAlign: "center !important", - }, - container: { - ...container, - zIndex: "2", - }, - brand: { - "& h1, & h4": { - color: whiteColor, - }, - }, - card: {}, - subscribeButton: {}, - cardBody: { - padding: "15px", - "& form": { - marginBottom: "0", - }, - }, - cardForm: { - margin: "0 0 0 14px", - padding: 0, - top: 10, - }, - subscribeLine: { - padding: "1.875rem 0px", - "& $card": { - marginTop: "30px", - }, - "& form": { margin: "0px" }, - "&$subscribeLineImage:after": { - position: "absolute", - zIndex: 1, - width: "100%", - height: "100%", - display: "block", - left: 0, - top: 0, - content: "''", - backgroundColor: "rgba(" + hexToRgb(blackColor) + ",0.66)", - }, - }, - subscribeLineImage: { - position: "relative", - backgroundPosition: "top center", - backgroundSize: "cover", - "& $container": { - zIndex: 2, - position: "relative", - }, - "& $title": { - color: whiteColor, - }, - "& $description": { - color: grayColor[0], - }, - }, - socialFeed: { - "& p": { - display: "table-cell", - verticalAlign: "top", - overflow: "hidden", - paddingBottom: "10px", - maxWidth: 300, - }, - "& i": { - fontSize: "20px", - display: "table-cell", - paddingRight: "10px", - }, - }, - img: { - width: "20%", - marginRight: "5%", - marginBottom: "5%", - float: "left", - }, - list: { - marginBottom: "0", - padding: "0", - marginTop: "0", - }, - inlineBlock: { - display: "inline-block", - padding: "0px", - width: "auto", - }, - left: { - float: "left!important", - display: "block", - }, - right: { - padding: "15px 0", - margin: "0", - float: "right", - }, - aClass: { - textDecoration: "none", - backgroundColor: "transparent", - }, - block: { - color: "inherit", - padding: "0.9375rem", - fontWeight: "500", - fontSize: "12px", - textTransform: "uppercase", - borderRadius: "3px", - textDecoration: "none", - position: "relative", - display: "block", - }, -}; - -export default styles; diff --git a/styles/jss/nextjs-material-kit-pro/pages/errorPageStyles.js b/styles/jss/nextjs-material-kit-pro/pages/errorPageStyles.js deleted file mode 100644 index 61d1195..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/errorPageStyles.js +++ /dev/null @@ -1,108 +0,0 @@ -import { - title, - whiteColor, - blackColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const errorPageStyles = (theme) => ({ - contentCenter: { - position: "absolute", - top: "50%", - left: "50%", - zIndex: "3", - transform: "translate(-50%,-50%)", - textAlign: "center", - color: whiteColor, - padding: "0 15px", - width: "100%", - maxWidth: "880px", - }, - title: { - [theme.breakpoints.down("sm")]: { - fontSize: "5.7em", - }, - ...title, - fontSize: "13.7em", - color: whiteColor, - letterSpacing: "14px !important", - fontWeight: "700", - }, - subTitle: { - fontSize: "2.25rem", - marginTop: "0", - marginBottom: "8px", - }, - description: { - fontSize: "1.125rem", - marginTop: "0", - marginBottom: "8px", - }, - pageHeader: { - minHeight: "100vh", - height: "auto", - display: "inherit", - position: "relative", - margin: "0", - padding: "0", - border: "0", - alignItems: "center", - "&:before": { - background: "rgba(" + hexToRgb(blackColor) + ", 0.5)", - }, - "&:before,&:after": { - position: "absolute", - zIndex: "1", - width: "100%", - height: "100%", - display: "block", - left: "0", - top: "0", - content: '""', - }, - }, - block: { - color: "inherit", - padding: "0.9375rem", - fontWeight: "500", - fontSize: "12px", - textTransform: "uppercase", - borderRadius: "3px", - textDecoration: "none", - position: "relative", - display: "block", - }, - inlineBlock: { - display: "inline-block", - padding: "0px", - width: "auto", - }, - list: { - marginBottom: "0", - padding: "0", - marginTop: "0", - }, - left: { - float: "left!important", - display: "block", - "&,& *,& *:hover,& *:focus": { - color: "inherit !important", - }, - }, - right: { - padding: "15px 0", - margin: "0", - float: "right", - "&,& *,& *:hover,& *:focus": { - color: "inherit !important", - }, - }, - icon: { - width: "18px", - height: "18px", - top: "3px", - position: "relative", - }, -}); - -export default errorPageStyles; diff --git a/styles/jss/nextjs-material-kit-pro/pages/landingPageSections/productStyle.js b/styles/jss/nextjs-material-kit-pro/pages/landingPageSections/productStyle.js deleted file mode 100644 index d175824..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/landingPageSections/productStyle.js +++ /dev/null @@ -1,20 +0,0 @@ -import { title, grayColor } from "styles/jss/nextjs-material-kit-pro.js"; - -const productStyle = { - section: { - padding: "70px 0", - textAlign: "center", - }, - title: { - ...title, - marginBottom: "1rem", - marginTop: "30px", - minHeight: "32px", - textDecoration: "none", - }, - description: { - color: grayColor[0], - }, -}; - -export default productStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/landingPageSections/teamStyle.js b/styles/jss/nextjs-material-kit-pro/pages/landingPageSections/teamStyle.js deleted file mode 100644 index ca02acf..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/landingPageSections/teamStyle.js +++ /dev/null @@ -1,54 +0,0 @@ -import { - cardTitle, - title, - grayColor, -} from "styles/jss/nextjs-material-kit-pro.js"; -import imagesStyle from "styles/jss/nextjs-material-kit-pro/imagesStyles.js"; - -const teamStyle = { - section: { - padding: "70px 0", - textAlign: "center", - }, - title: { - ...title, - marginBottom: "1rem", - marginTop: "30px", - minHeight: "32px", - textDecoration: "none", - }, - ...imagesStyle, - itemGrid: { - marginLeft: "auto", - marginRight: "auto", - }, - cardTitle, - smallTitle: { - color: grayColor[7], - }, - description: { - color: grayColor[0], - }, - justifyCenter: { - justifyContent: "center !important", - }, - socials: { - marginTop: "0", - width: "100%", - transform: "none", - left: "0", - top: "0", - height: "100%", - lineHeight: "41px", - fontSize: "20px", - color: grayColor[0], - }, - margin5: { - margin: "5px", - }, - card3: { - textAlign: "center", - }, -}; - -export default teamStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/landingPageSections/workStyle.js b/styles/jss/nextjs-material-kit-pro/pages/landingPageSections/workStyle.js deleted file mode 100644 index 0d9df11..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/landingPageSections/workStyle.js +++ /dev/null @@ -1,35 +0,0 @@ -import { - title, - mrAuto, - mlAuto, - grayColor, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const workStyle = { - mrAuto, - mlAuto, - section: { - padding: "70px 0", - }, - title: { - ...title, - marginBottom: "1rem", - marginTop: "30px", - minHeight: "32px", - textDecoration: "none", - textAlign: "center", - }, - description: { - color: grayColor[0], - textAlign: "center", - }, - textCenter: { - textAlign: "center", - }, - textArea: { - marginRight: "15px", - marginLeft: "15px", - }, -}; - -export default workStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/landingPageStyle.js b/styles/jss/nextjs-material-kit-pro/pages/landingPageStyle.js deleted file mode 100644 index 4d55eb9..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/landingPageStyle.js +++ /dev/null @@ -1,73 +0,0 @@ -import { - container, - title, - main, - whiteColor, - mainRaised, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const landingPageStyle = { - container: { - color: whiteColor, - ...container, - zIndex: "2", - }, - title: { - ...title, - display: "inline-block", - position: "relative", - marginTop: "30px", - minHeight: "32px", - color: whiteColor, - textDecoration: "none", - }, - subtitle: { - fontSize: "1.313rem", - maxWidth: "500px", - margin: "10px auto 0", - }, - main: { - ...main, - }, - mainRaised: { - ...mainRaised, - }, - block: { - color: "inherit", - padding: "0.9375rem", - fontWeight: "500", - fontSize: "12px", - textTransform: "uppercase", - borderRadius: "3px", - textDecoration: "none", - position: "relative", - display: "block", - }, - inlineBlock: { - display: "inline-block", - padding: "0px", - width: "auto", - }, - list: { - marginBottom: "0", - padding: "0", - marginTop: "0", - }, - left: { - float: "left!important", - display: "block", - }, - right: { - padding: "15px 0", - margin: "0", - float: "right", - }, - icon: { - width: "18px", - height: "18px", - top: "3px", - position: "relative", - }, -}; - -export default landingPageStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/loginPageStyle.js b/styles/jss/nextjs-material-kit-pro/pages/loginPageStyle.js deleted file mode 100644 index 1e125fe..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/loginPageStyle.js +++ /dev/null @@ -1,122 +0,0 @@ -import { - container, - description, - cardTitle, - blackColor, - whiteColor, - grayColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const signupPageStyle = (theme) => ({ - description, - cardTitle: { - ...cardTitle, - color: whiteColor + " !important", - }, - container: { - ...container, - zIndex: "4", - [theme.breakpoints.down("sm")]: { - paddingBottom: "100px", - }, - }, - pageHeader: { - color: whiteColor, - border: "0", - height: "100%", - margin: "0", - display: "flex!important", - padding: "120px 0", - position: "relative", - minHeight: "100vh", - alignItems: "center", - "&:before": { - background: "rgba(" + hexToRgb(blackColor) + ", 0.5)", - }, - "&:before,&:after": { - position: "absolute", - zIndex: "1", - width: "100%", - height: "100%", - display: "block", - left: "0", - top: "0", - content: '""', - }, - }, - form: { - margin: "0", - }, - cardHeader: { - width: "auto", - textAlign: "center", - }, - socialLine: { - marginTop: "1rem", - textAlign: "center", - padding: "0", - }, - inputIconsColor: { - color: grayColor[13], - }, - textCenter: { - textAlign: "center", - }, - iconButtons: { - marginRight: "3px !important", - marginLeft: "3px !important", - }, - block: { - color: "inherit", - padding: "0.9375rem", - fontWeight: "500", - fontSize: "12px", - textTransform: "uppercase", - borderRadius: "3px", - textDecoration: "none", - position: "relative", - display: "block", - }, - inlineBlock: { - display: "inline-block", - padding: "0px", - width: "auto", - }, - list: { - marginBottom: "0", - padding: "0", - marginTop: "0", - }, - left: { - float: "left!important", - display: "block", - "&,& *,& *:hover,& *:focus": { - color: whiteColor + " !important", - }, - }, - right: { - padding: "15px 0", - margin: "0", - float: "right", - "&,& *,& *:hover,& *:focus": { - color: whiteColor + " !important", - }, - }, - icon: { - width: "18px", - height: "18px", - top: "3px", - position: "relative", - }, - footer: { - position: "absolute", - width: "100%", - background: "transparent", - bottom: "0", - color: whiteColor, - zIndex: "2", - }, -}); - -export default signupPageStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/presentationSections/cardsStyle.js b/styles/jss/nextjs-material-kit-pro/pages/presentationSections/cardsStyle.js deleted file mode 100644 index 5f38592..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/presentationSections/cardsStyle.js +++ /dev/null @@ -1,46 +0,0 @@ -import { - container, - section, - sectionDark, - sectionDescription, - title, - whiteColor, - mlAuto, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const cardsStyle = { - section: { - ...section, - padding: "50px 0px", - }, - sectionDark, - container, - sectionDescription, - title: { - ...title, - color: whiteColor, - marginTop: "30px", - marginBottom: "25px", - minHeight: "32px", - }, - description: { - color: "rgba(" + hexToRgb(whiteColor) + ",0.76)", - }, - imageContainer: { - maxWidth: "1040px", - marginTop: "-140px", - position: "relative", - height: "660px", - "& img": { - maxWidth: "1040px", - width: "auto", - position: "absolute", - right: "0px", - top: "0px", - }, - }, - mlAuto, -}; - -export default cardsStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/presentationSections/componentsStyle.js b/styles/jss/nextjs-material-kit-pro/pages/presentationSections/componentsStyle.js deleted file mode 100644 index 9b6a00b..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/presentationSections/componentsStyle.js +++ /dev/null @@ -1,145 +0,0 @@ -import { - container, - title, - mlAuto, - blackColor, - grayColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const reusableStylesForImgs = { - position: "absolute", - boxShadow: - "0 8px 10px 1px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 3px 14px 2px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 5px 5px -3px rgba(" + - hexToRgb(blackColor) + - ", 0.2)", -}; - -const componentsStyle = (theme) => ({ - section: { - [theme.breakpoints.down("sm")]: { - overflowX: "hidden", - }, - }, - container, - mlAuto, - title: { - ...title, - marginBottom: "5px", - marginTop: "60px", - "& + $description": { - marginTop: "5px", - marginBottom: "30px", - }, - }, - description: { - color: grayColor[0], - }, - imageContainer: { - height: "560px", - position: "relative", - }, - componentsMacbook: { - [theme.breakpoints.down("sm")]: { - maxWidth: "850px!important", - maxHeight: "480px!important", - marginTop: "12vh", - left: "-12px", - }, - [theme.breakpoints.down(768)]: { - maxWidth: "350px!important", - maxHeight: "250px!important", - marginTop: "12vh", - left: "-12px", - }, - width: "auto", - left: "-100px", - top: 0, - height: "100%", - position: "absolute", - }, - shoppingCart: { - [theme.breakpoints.down("md")]: { - display: "none", - }, - ...reusableStylesForImgs, - left: "-13%", - top: "27%", - height: "175px", - borderRadius: "2px", - WebkitAnimation: "Floatingx 14s ease-in-out infinite", - float: "left", - }, - shareButton: { - [theme.breakpoints.down("md")]: { - top: "12%", - }, - [theme.breakpoints.down("sm")]: { - top: "7%", - }, - ...reusableStylesForImgs, - left: "3%", - top: "-3%", - height: "25px", - borderRadius: "3px", - WebkitAnimation: "Floatingy 11s ease-in-out infinite", - }, - cardImage: { - [theme.breakpoints.down("md")]: { - top: "-2%", - left: "65%", - }, - [theme.breakpoints.down("sm")]: { - top: "-2%", - }, - ...reusableStylesForImgs, - left: "35%", - top: "2%", - height: "125px", - borderRadius: "6px", - WebkitAnimation: "Floatingy 18s ease-in-out infinite", - }, - twitterImage: { - [theme.breakpoints.down("md")]: { - display: "none", - }, - ...reusableStylesForImgs, - left: "90%", - top: "11%", - height: "90px", - borderRadius: "2px", - WebkitAnimation: "Floatingy 10s ease-in-out infinite", - }, - iconsImage: { - [theme.breakpoints.down("md")]: { - left: "47%", - top: "37%", - }, - [theme.breakpoints.down("sm")]: { - left: "-7%", - top: "37%", - }, - ...reusableStylesForImgs, - left: "70%", - top: "67%", - height: "40px", - WebkitAnimation: "Floatingx 16s ease-in-out infinite", - }, - repostImage: { - [theme.breakpoints.down("md")]: { - top: "54%", - }, - ...reusableStylesForImgs, - left: "0%", - top: "68%", - height: "25px", - borderRadius: "3px", - WebkitAnimation: "Floatingy 15s ease-in-out infinite", - }, -}); - -export default componentsStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/presentationSections/contentStyle.js b/styles/jss/nextjs-material-kit-pro/pages/presentationSections/contentStyle.js deleted file mode 100644 index 0d5a459..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/presentationSections/contentStyle.js +++ /dev/null @@ -1,91 +0,0 @@ -import { - container, - section, - title, - sectionDescription, - mlAuto, - blackColor, - grayColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const contentStyle = (theme) => ({ - container, - section: { - ...section, - padding: "70px 0px", - }, - sectionDescription, - title: { - ...title, - color: grayColor[1], - marginTop: "30px", - marginBottom: "5px", - "& + $description": { - marginBottom: "10px", - marginTop: "0px", - }, - }, - description: { - color: grayColor[0], - marginTop: "35px", - marginBottom: "15px", - }, - imageContainer: { - maxWidth: "900px", - position: "relative", - }, - ipadImg: { - width: "100%", - }, - mlAuto, - areaImg: { - height: "300px", - width: "250px", - zIndex: 2, - top: "10%", - left: "60%", - boxShadow: - "0 8px 10px 1px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 3px 14px 2px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 5px 5px -3px rgba(" + - hexToRgb(blackColor) + - ", 0.2)", - [theme.breakpoints.down("sm")]: { - maxWidth: "130px", - maxHeight: "170px", - }, - }, - infoImg: { - height: "200px", - width: "300px", - top: "50%", - left: "0%", - boxShadow: - "0 8px 10px 1px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 3px 14px 2px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 5px 5px -3px rgba(" + - hexToRgb(blackColor) + - ", 0.2)", - [theme.breakpoints.down("sm")]: { - maxWidth: "170px", - maxHeight: "120px", - }, - }, - animeInfoImg: { - top: "50%", - left: "0%", - position: "absolute", - }, - animeAreaImg: { - top: "10%", - left: "60%", - position: "absolute", - }, -}); - -export default contentStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/presentationSections/descriptionStyle.js b/styles/jss/nextjs-material-kit-pro/pages/presentationSections/descriptionStyle.js deleted file mode 100644 index 6159d17..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/presentationSections/descriptionStyle.js +++ /dev/null @@ -1,31 +0,0 @@ -import { - container, - section, - grayColor, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const descriptionStyle = { - container, - description: { - color: grayColor[0], - textAlign: "center", - }, - section: { - ...section, - padding: "70px 0px", - "& h4$description": { - fontSize: "1.5em", - }, - }, - features: { - textAlign: "center !important", - paddingTop: "30px", - paddingBottom: "0px", - "& p": { - fontSize: "16px", - lineHeight: "1.6em", - }, - }, -}; - -export default descriptionStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/presentationSections/examplesStyle.js b/styles/jss/nextjs-material-kit-pro/pages/presentationSections/examplesStyle.js deleted file mode 100644 index 2b87546..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/presentationSections/examplesStyle.js +++ /dev/null @@ -1,47 +0,0 @@ -import { - section, - sectionDark, - container, - mlAuto, - mrAuto, - title, - whiteColor, - description, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const examplesStyle = { - section: { - ...section, - padding: "70px 0px", - }, - sectionDark: { - ...sectionDark, - "& $title": { - color: whiteColor, - }, - "& $description": { - color: "rgba(" + hexToRgb(whiteColor) + ",0.76)", - }, - }, - container, - mlAuto, - mrAuto, - sectionDescription: { - textAlign: "center", - marginBottom: "90px", - }, - title: { - ...title, - textAlign: "center", - }, - description, - imgCardExtended: { - transition: "all .2s cubic-bezier(0.4,0,0.2,1)", - "&:hover": { - transform: "translate3d(0, -10px, 0)", - }, - }, -}; - -export default examplesStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/presentationSections/freeDemoStyle.js b/styles/jss/nextjs-material-kit-pro/pages/presentationSections/freeDemoStyle.js deleted file mode 100644 index 86ede85..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/presentationSections/freeDemoStyle.js +++ /dev/null @@ -1,84 +0,0 @@ -import { - title, - description, - section, - container, - mlAuto, - mrAuto, - cardTitle, - card, - dangerColor, - successColor, - blackColor, - grayColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const freeDemoStyle = { - container, - mlAuto, - mrAuto, - description, - cardTitle, - title: { - ...title, - marginTop: "15px", - marginBottom: "1rem", - }, - section: { - ...section, - padding: "70px 0px", - }, - iconGithub: { - fontSize: "82px", - color: grayColor[10], - }, - iframeGithub: { - top: "11px", - display: "inline-block", - position: "relative", - marginLeft: "10px", - }, - card: { - ...card, - border: "0px", - marginBottom: "30px", - marginTop: "30px", - borderRadius: "6px", - color: "rgba(" + hexToRgb(blackColor) + ",0.87)", - width: "100%", - "& ul": { - listStyle: "none", - padding: "0px", - maxWidth: "240px", - margin: "10px auto", - }, - "& ul li": { - color: grayColor[0], - padding: "12px 0px", - borderBottom: "1px solid rgba(" + hexToRgb(grayColor[0]) + ",0.3)", - textAlign: "left", - }, - "& ul li b": { - minWidth: "24px", - display: "inline-block", - textAlign: "center", - color: grayColor[1], - }, - }, - cardPricing: { - boxShadow: "none", - }, - cardIcons: { - top: "6px", - position: "relative", - }, - dangerColor: { - color: dangerColor[0], - }, - successColor: { - color: successColor[0], - }, -}; - -export default freeDemoStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/presentationSections/overviewStyle.js b/styles/jss/nextjs-material-kit-pro/pages/presentationSections/overviewStyle.js deleted file mode 100644 index 8028406..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/presentationSections/overviewStyle.js +++ /dev/null @@ -1,111 +0,0 @@ -import { - section, - mrAuto, - mlAuto, - title, - container, - description, - cardTitle, - coloredShadow, - blackColor, - whiteColor, - grayColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const overviewStyle = { - mrAuto, - mlAuto, - title, - container, - description: { - ...description, - marginBottom: "70px", - }, - section: { - ...section, - padding: "70px 0px", - }, - sectionTestimonials: { - paddingTop: "50px", - paddingBottom: "80px", - textAlign: "center", - "& $cardTitle": { - marginTop: "0px", - }, - }, - features5: { - ...section, - backgroundRepeat: "no-repeat", - position: "relative", - padding: "80px 0px", - textAlign: "center", - "& $title": { - zIndex: "2", - position: "relative", - marginBottom: "30px", - color: whiteColor, - }, - "& p": { - color: whiteColor, - }, - "&:after": { - background: "rgba(" + hexToRgb(blackColor) + ",0.65)", - position: "absolute", - width: "100%", - height: "100%", - content: "''", - zIndex: "0", - left: "0px", - top: "0px", - }, - }, - features: { - textAlign: "center", - paddingTop: "30px", - pddingBottom: "0px", - }, - featuresShow: { - zIndex: 3, - border: "1px solid rgba(" + hexToRgb(whiteColor) + ",0.35)", - borderTop: 0, - borderBottom: 0, - "&:last-of-type": { - borderRight: 0, - }, - "&:first-of-type": { - borderLeft: 0, - }, - "& h4,& p,& svg,& .fab,& .fas,& .far,& .fal,& .material-icons": { - color: whiteColor, - }, - "& p": { - lineHeight: "24px", - fontSize: "16px", - }, - }, - ourClients: { - textAlign: "center", - "& img": { - width: "100%", - maxWidth: "140px", - margin: "0 auto", - display: "inline-block", - }, - }, - cardTitle: { - ...cardTitle, - marginTop: 0, - }, - cardDescription: { - fontSize: "16px", - lineHeight: "1.6em", - color: grayColor[0], - }, - coloredShadow, - alignLeft: { - textAlign: "left", - }, -}; - -export default overviewStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/presentationSections/pricingStyle.js b/styles/jss/nextjs-material-kit-pro/pages/presentationSections/pricingStyle.js deleted file mode 100644 index 8907c14..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/presentationSections/pricingStyle.js +++ /dev/null @@ -1,97 +0,0 @@ -import { - section, - container, - mlAuto, - mrAuto, - title, - description, - card, - blackColor, - grayColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const pricingStyle = { - container, - mlAuto, - mrAuto, - title, - section: { - ...section, - padding: "80px 0", - zIndex: 3, - position: "relative", - textAlign: "center", - }, - socialLine: { - padding: ".9375rem 0px", - textAlign: "center", - width: "100%", - }, - marginRight: { - marginRight: "3px", - }, - description: { - ...description, - color: grayColor[0], - }, - card: { - ...card, - marginBottom: "30px", - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(blackColor) + - ",0.14), 0 3px 1px -2px rgba(" + - hexToRgb(blackColor) + - ",0.2), 0 1px 5px 0 rgba(" + - hexToRgb(blackColor) + - ",0.12)", - "& ul": { - listStyle: "none", - padding: 0, - maxWidth: "240px", - margin: "10px auto", - }, - "& ul li": { - color: grayColor[0], - textAlign: "center", - padding: "12px 0px", - borderBottom: "1px solid rgba(" + hexToRgb(grayColor[0]) + ",0.3)", - }, - "& ul li b": { - color: grayColor[1], - }, - "& ul li:last-child": { - border: 0, - }, - }, - cardMargin: { - marginTop: "80px", - }, - cardCategory: { - color: grayColor[0], - marginTop: "10px", - }, - cardTitle: { - marginTop: "30px", - color: grayColor[1], - textDecoration: "none", - fontWeight: "700", - fontFamily: "Roboto Slab,Times New Roman,serif", - "& small": { - position: "relative", - top: "-17px", - fontSize: "26px", - display: "inline-flex", - height: 0, - }, - }, - cardBody: { - padding: "15px", - }, - navPillsContent: { - padding: "20px 0px 50px 0px", - }, -}; - -export default pricingStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/presentationSections/sectionsStyle.js b/styles/jss/nextjs-material-kit-pro/pages/presentationSections/sectionsStyle.js deleted file mode 100644 index a5d33e9..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/presentationSections/sectionsStyle.js +++ /dev/null @@ -1,51 +0,0 @@ -import { - section, - container, - containerFluid, - title, - description, - mlAuto, - mrAuto, - blackColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const sectionStyle = { - sectionSections: { - ...section, - padding: "70px 0px", - paddingBottom: "0px", - marginBottom: "-35px", - "& img": { - width: "100%", - borderRadius: "3px", - boxShadow: - "0 8px 10px 1px rgba(" + - hexToRgb(blackColor) + - ",0.14), 0 3px 14px 2px rgba(" + - hexToRgb(blackColor) + - ",0.12), 0 5px 5px -3px rgba(" + - hexToRgb(blackColor) + - ",0.2)", - transition: "all .2s cubic-bezier(0.4,0,0.2,1)", - "&:hover": { - transform: "scale(1.02)", - }, - }, - }, - container, - containerFluid, - sectionDescription: { - textAlign: "center", - marginBottom: "60px", - }, - title, - description, - mlAuto, - mrAuto, - photoGallery: { - padding: "7.5px", - }, -}; - -export default sectionStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/presentationStyle.js b/styles/jss/nextjs-material-kit-pro/pages/presentationStyle.js deleted file mode 100644 index 7645fc7..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/presentationStyle.js +++ /dev/null @@ -1,58 +0,0 @@ -import { - container, - title, - main, - whiteColor, - grayColor, - mainRaised, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; -import footerStyle from "styles/jss/nextjs-material-kit-pro/pages/componentsSections/footerStyle.js"; - -const presentationStyle = { - ...footerStyle, - main: { - ...main, - /*overflow: "hidden"*/ - }, - mainRaised, - parallax: { - height: "90vh", - overflow: "hidden", - backgroundPosition: "center top", - }, - container: { - ...container, - zIndex: 1, - }, - title: { - ...title, - color: whiteColor, - }, - brand: { - color: whiteColor, - textAlign: "center", - "& h1": { - fontSize: "4.2rem", - fontWeight: "600", - display: "inline-block", - position: "relative", - }, - }, - proBadge: { - position: "relative", - fontSize: "22px", - textTransform: "uppercase", - fontWeight: "700", - right: "-10px", - padding: "10px 18px", - top: "-30px", - background: whiteColor, - borderRadius: "3px", - color: grayColor[18], - lineHeight: "22px", - boxShadow: "0 5px 5px -2px rgba(" + hexToRgb(grayColor[25]) + ",.4)", - }, -}; - -export default presentationStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/pricingSections/featuresStyle.js b/styles/jss/nextjs-material-kit-pro/pages/pricingSections/featuresStyle.js deleted file mode 100644 index f3da297..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/pricingSections/featuresStyle.js +++ /dev/null @@ -1,15 +0,0 @@ -import { title, mlAuto, mrAuto } from "styles/jss/nextjs-material-kit-pro.js"; - -const featuresStyle = { - featuresSection: { - padding: "80px 0px", - }, - textCenter: { - textAlign: "center", - }, - title, - mlAuto, - mrAuto, -}; - -export default featuresStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/pricingSections/pricingStyle.js b/styles/jss/nextjs-material-kit-pro/pages/pricingSections/pricingStyle.js deleted file mode 100644 index 45c8577..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/pricingSections/pricingStyle.js +++ /dev/null @@ -1,32 +0,0 @@ -import { - mrAuto, - mlAuto, - cardTitle, - whiteColor, - infoColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const pricingStyle = { - mrAuto, - mlAuto, - cardTitle, - cardTitleWhite: { - ...cardTitle, - color: whiteColor + " !important", - "& small": { - color: "rgba(" + hexToRgb(whiteColor) + ",0.8)!important", - }, - }, - textCenter: { - textAlign: "center", - }, - pricingSection: { - padding: "80px 0px", - }, - textInfo: { - color: infoColor[0] + " !important", - }, -}; - -export default pricingStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/pricingStyle.js b/styles/jss/nextjs-material-kit-pro/pages/pricingStyle.js deleted file mode 100644 index c0573ca..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/pricingStyle.js +++ /dev/null @@ -1,67 +0,0 @@ -import { - container, - title, - main, - mainRaised, - whiteColor, - mrAuto, - mlAuto, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const pricingStyle = { - main, - mainRaised, - mrAuto, - mlAuto, - container: { - ...container, - zIndex: 1, - }, - title: { - ...title, - "&, & + h4": { - color: whiteColor, - }, - }, - textCenter: { - textAlign: "center", - }, - block: { - color: "inherit", - padding: "0.9375rem", - fontWeight: "500", - fontSize: "12px", - textTransform: "uppercase", - borderRadius: "3px", - textDecoration: "none", - position: "relative", - display: "block", - }, - inlineBlock: { - display: "inline-block", - padding: "0px", - width: "auto", - }, - list: { - marginBottom: "0", - padding: "0", - marginTop: "0", - }, - left: { - float: "left!important", - display: "block", - }, - right: { - padding: "15px 0", - margin: "0", - float: "right", - }, - icon: { - width: "18px", - height: "18px", - top: "3px", - position: "relative", - }, -}; - -export default pricingStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/productStyle.js b/styles/jss/nextjs-material-kit-pro/pages/productStyle.js deleted file mode 100644 index 46d77dc..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/productStyle.js +++ /dev/null @@ -1,192 +0,0 @@ -import { - container, - mlAuto, - section, - main, - mainRaised, - title, - cardTitle, - grayColor, - roseColor, -} from "styles/jss/nextjs-material-kit-pro.js"; - -import tooltipsStyle from "styles/jss/nextjs-material-kit-pro/tooltipsStyle.js"; -import imagesStyles from "styles/jss/nextjs-material-kit-pro/imagesStyles.js"; -import customSelectStyle from "styles/jss/nextjs-material-kit-pro/customSelectStyle.js"; - -const productStyle = { - mlAuto, - main, - ...imagesStyles, - ...customSelectStyle, - ...tooltipsStyle, - container: { - ...container, - zIndex: 2, - }, - mainRaised: { - ...mainRaised, - }, - section: { - ...section, - padding: "70px 0px", - }, - title: { - ...title, - marginBottom: 0, - }, - sectionGray: { - background: grayColor[14], - }, - mainPrice: { - margin: "10px 0px 25px", - }, - textCenter: { - textAlign: "center!important", - }, - features: { - paddingTop: "30px", - }, - productPage: { - backgroundColor: grayColor[2], - "& $mainRaised": { - margin: "-40vh 0 0", - padding: "40px", - }, - "& .image-gallery-slide img": { - borderRadius: "3px", - maxWidth: "300px", - height: "auto", - }, - "& .image-gallery-swipe": { - margin: "30px 0px", - overflow: "hidden", - width: "100%", - height: "auto", - textAlign: "center", - }, - "& .image-gallery-thumbnails > .image-gallery-thumbnails-container .image-gallery-thumbnail": { - "&.active > .image-gallery-thumbnail-inner": { - opacity: "1", - borderColor: grayColor[6], - }, - "& > .image-gallery-thumbnail-inner": { - width: "80%", - maxWidth: "85px", - margin: "0 auto", - padding: "8px", - display: "block", - border: "1px solid transparent", - background: "transparent", - borderRadius: "3px", - opacity: ".8", - }, - "& > .image-gallery-thumbnail-inner img": { - borderRadius: "3px", - width: "100%", - height: "auto", - textAlign: "center", - }, - }, - }, - titleRow: { - marginTop: "-8vh", - }, - floatRight: { - float: "right!important", - }, - pageHeader: { - minHeight: "60vh", - maxHeight: "600px", - height: "auto", - backgroundPosition: "top center", - }, - relatedProducts: { - marginTop: "50px", - "& $title": { - marginBottom: "80px", - }, - }, - pickSize: { - marginTop: "50px", - }, - pullRight: { - float: "right", - }, - cardCategory: { - textAlign: "center", - marginTop: "10px", - }, - cardTitle: { - ...cardTitle, - textAlign: "center", - }, - cardDescription: { - textAlign: "center", - color: grayColor[0], - }, - textRose: { - color: roseColor[0], - }, - justifyContentBetween: { - justifyContent: "space-between!important", - }, - socialFeed: { - "& p": { - display: "table-cell", - verticalAlign: "top", - overflow: "hidden", - paddingBottom: "10px", - maxWidth: 300, - }, - "& i": { - fontSize: "20px", - display: "table-cell", - paddingRight: "10px", - }, - }, - img: { - width: "20%", - marginRight: "5%", - marginBottom: "5%", - float: "left", - }, - block: { - color: "inherit", - padding: "0.9375rem", - fontWeight: "500", - fontSize: "12px", - textTransform: "uppercase", - borderRadius: "3px", - textDecoration: "none", - position: "relative", - display: "block", - }, - inlineBlock: { - display: "inline-block", - padding: "0px", - width: "auto", - }, - list: { - marginBottom: "0", - padding: "0", - marginTop: "0", - }, - left: { - float: "left!important", - display: "block", - }, - right: { - padding: "15px 0", - margin: "0", - float: "right", - }, - icon: { - top: "3px", - width: "18px", - height: "18px", - position: "relative", - }, -}; - -export default productStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/profilePageStyle.js b/styles/jss/nextjs-material-kit-pro/pages/profilePageStyle.js deleted file mode 100644 index 822876c..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/profilePageStyle.js +++ /dev/null @@ -1,148 +0,0 @@ -import { - container, - cardTitle, - title, - mlAuto, - mrAuto, - main, - whiteColor, - mainRaised, - grayColor, -} from "styles/jss/nextjs-material-kit-pro.js"; - -import imagesStyle from "styles/jss/nextjs-material-kit-pro/imagesStyles.js"; - -import tooltipsStyle from "styles/jss/nextjs-material-kit-pro/tooltipsStyle.js"; - -const profilePageStyle = { - container, - ...imagesStyle, - ...tooltipsStyle, - cardTitleWhite: { - ...cardTitle, - color: whiteColor + " !important", - }, - cardTitle, - profile: { - textAlign: "center", - "& img": { - maxWidth: "160px", - width: "100%", - margin: "0 auto", - transform: "translate3d(0, -50%, 0)", - }, - }, - description: { - margin: "1.071rem auto 0", - maxWidth: "600px", - color: grayColor[0], - }, - textCenter: { - textAlign: "center !important", - }, - name: { - marginTop: "-80px", - }, - - main: { - ...main, - }, - mainRaised: { - ...mainRaised, - }, - title: { - ...title, - position: "relative", - marginTop: "30px", - minHeight: "32px", - textDecoration: "none", - }, - follow: { - position: "absolute", - top: "0", - right: "0", - }, - followIcon: { - width: "20px", - height: "20px", - }, - followButton: { - marginTop: "-28px !important", - }, - gridItem: { - ...mlAuto, - ...mrAuto, - }, - collections: { - marginTop: "20px", - }, - cardBody: { - display: "flex", - boxOrient: "vertical", - boxDirection: "normal", - flexDirection: "column", - boxPack: "center", - justifyContent: "center", - }, - badge: { - display: "inline-table", - margin: "0 auto", - }, - listUnstyled: { - paddingLeft: "0", - listStyle: "none", - "& > li": { - padding: "5px 0px", - fontSize: "1em", - }, - }, - profileTabs: { - marginTop: "4.284rem", - marginBottom: "50px", - }, - card: { - textAlign: "left !important", - }, - block: { - color: "inherit", - padding: "0.9375rem", - fontWeight: "500", - fontSize: "12px", - textTransform: "uppercase", - borderRadius: "3px", - textDecoration: "none", - position: "relative", - display: "block", - }, - inlineBlock: { - display: "inline-block", - padding: "0px", - width: "auto", - }, - list: { - marginBottom: "0", - padding: "0", - marginTop: "0", - }, - left: { - float: "left!important", - display: "block", - }, - right: { - padding: "15px 0", - margin: "0", - float: "right", - }, - icon: { - width: "18px", - height: "18px", - top: "3px", - position: "relative", - }, - parallax: { - height: "380px", - backgroundPosition: "top center", - }, -}; - -export default profilePageStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/sectionsPageStyle.js b/styles/jss/nextjs-material-kit-pro/pages/sectionsPageStyle.js deleted file mode 100644 index 545c9f3..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/sectionsPageStyle.js +++ /dev/null @@ -1,9 +0,0 @@ -import { main } from "styles/jss/nextjs-material-kit-pro.js"; - -const sectionsPageStyle = { - main: { - ...main, - }, -}; - -export default sectionsPageStyle; diff --git a/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/blogsStyle.js b/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/blogsStyle.js deleted file mode 100644 index a4f273c..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/blogsStyle.js +++ /dev/null @@ -1,51 +0,0 @@ -import { - container, - title, - cardTitle, - coloredShadow, - description, - mlAuto, - mrAuto, - grayColor, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const blogsSection = { - container, - title, - coloredShadow, - cardTitle, - mlAuto, - mrAuto, - description, - blog: { - padding: "50px 0", - }, - cardCategory: { - marginBottom: "0", - marginTop: "10px", - "& svg,& .fab,& .fas,& .far,& .fal,& .material-icons": { - position: "relative", - top: "8px", - lineHeight: "0", - }, - }, - description1: { - ...description, - lineHeight: "1.313rem", - }, - author: { - "& a": { - color: grayColor[1], - textDecoration: "none", - }, - }, - card: { - marginBottom: "80px", - }, - card4: { - marginBottom: "60px", - textAlign: "center", - }, -}; - -export default blogsSection; diff --git a/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/contactsStyle.js b/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/contactsStyle.js deleted file mode 100644 index b21c7ef..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/contactsStyle.js +++ /dev/null @@ -1,113 +0,0 @@ -import { - container, - section, - sectionDark, - mlAuto, - title, - description, - cardTitle, - blackColor, - whiteColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -import customCheckboxRadioSwitch from "styles/jss/nextjs-material-kit-pro/customCheckboxRadioSwitchStyle.js"; - -const contactsSection = { - ...customCheckboxRadioSwitch, - container, - mlAuto, - title, - description, - cardTitle, - section: { - ...sectionDark, - ...section, - position: "relative", - "& $container": { - zIndex: "2", - position: "relative", - }, - "&:after": { - position: "absolute", - zIndex: "1", - width: "100%", - height: "100%", - display: "block", - left: "0", - top: "0", - content: "''", - backgroundColor: "rgba(" + hexToRgb(blackColor) + ", 0.7)", - }, - "& $title": { - color: whiteColor, - }, - "& $description": { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.76)", - }, - "& $infoArea": {}, - }, - contacts: { - padding: "80px 0", - }, - infoArea: { - padding: "0", - margin: "0", - "& svg,& .fab,& .fas,& .far,& .fal,& .material-icons": { - color: whiteColor, - }, - "& h4": { - marginTop: "20px", - color: whiteColor, - }, - }, - card1: { - marginTop: "30px", - "& $cardTitle": { - marginBottom: "0.75rem !important", - color: whiteColor, - }, - }, - textCenter: { - textAlign: "center", - }, - justifyContentBetween: { - WebkitBoxPack: "justify !important", - MsFlexPack: "justify !important", - justifyContent: "space-between !important", - }, - pullRight: { - float: "right", - }, - card2: { - "@media (min-width: 991px)": { - margin: "80px 0 80px 150px", - }, - maxWidth: "560px", - float: "left", - "& $cardTitle": { - marginBottom: "0.75rem !important", - color: whiteColor, - }, - }, - map: { - overflow: "hidden", - width: "100%", - height: "800px", - position: "absolute", - }, - contacts2: { - padding: "0", - height: "800px", - }, - infoArea2: { - padding: "0", - margin: "0", - "& h4": { - fontSize: "1.0625rem", - lineHeight: "1.55em", - }, - }, -}; - -export default contactsSection; diff --git a/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/featuresStyle.js b/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/featuresStyle.js deleted file mode 100644 index f828316..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/featuresStyle.js +++ /dev/null @@ -1,108 +0,0 @@ -import { - container, - mlAuto, - mrAuto, - title, - description, - blackColor, - whiteColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const features = { - container, - mlAuto, - mrAuto, - title, - description, - features1: { - textAlign: "center", - padding: "80px 0", - }, - features2: { - padding: "80px 0", - }, - features3: { - padding: "80px 0", - "& $phoneContainer": { - maxWidth: "220px", - margin: "0 auto", - }, - }, - features4: { - padding: "80px 0", - "& $phoneContainer": { - maxWidth: "260px", - margin: "60px auto 0", - }, - }, - features5: { - padding: "80px 0", - backgroundSize: "cover", - backgroundPosition: "50%", - backgroundRepeat: "no-repeat", - position: "relative", - "& $title": { - marginBottom: "30px", - }, - "& $title,& $container": { - position: "relative", - zIndex: "2", - color: whiteColor, - }, - "&:after": { - background: "rgba(" + hexToRgb(blackColor) + ",0.55)", - position: "absolute", - width: "100%", - height: "100%", - content: "''", - zIndex: "0", - left: "0px", - top: "0px", - }, - "& $container": { - "& $gridContainer:last-child": { - "& $gridItem": { - borderBottom: "0", - }, - }, - "& $gridItem": { - border: "1px solid rgba(" + hexToRgb(whiteColor) + ", 0.35)", - borderTop: "0", - borderLeft: "0", - "&:last-child": { - borderRight: "0", - }, - }, - }, - "& $infoArea5": { - textAlign: "center", - maxWidth: "310px", - minHeight: "320px", - "& h4,& p,& svg,& .fab,& .fas,& .far,& .fal,& .material-icons": { - color: whiteColor, - }, - }, - }, - gridContainer: {}, - gridItem: {}, - margin0: { - margin: "0!important", - }, - textCenter: { - textAlign: "center", - }, - phoneContainer: { - "& img": { - width: "100%", - }, - }, - infoArea: { - maxWidth: "none", - margin: "0 auto", - padding: "10px 0 0px", - }, - infoArea5: {}, -}; - -export default features; diff --git a/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/headersStyle.js b/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/headersStyle.js deleted file mode 100644 index 9a29844..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/headersStyle.js +++ /dev/null @@ -1,94 +0,0 @@ -import headerLinksStyle from "styles/jss/nextjs-material-kit-pro/components/headerLinksStyle.js"; -import { - container, - mrAuto, - title, - blackColor, - whiteColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const headersSection = (theme) => ({ - ...headerLinksStyle(theme), - sectionBlank: { - height: "70px", - display: "block", - }, - container: { - ...container, - zIndex: "2", - position: "relative", - "& h1, & h4, & h6": { - color: whiteColor, - }, - }, - conatinerHeader2: { - ...container, - zIndex: "2", - position: "relative", - "& h1, & h4, & h6": { - color: whiteColor, - }, - paddingTop: "25vh", - }, - title, - pageHeader: { - position: "relative", - minHeight: "100vh", - maxHeight: "1600px", - backgroundPosition: "50%", - backgroundSize: "cover", - margin: "0", - padding: "0", - border: "0", - display: "flex", - WebkitBoxAlign: "center", - MsFlexAlign: "center", - alignItems: "center", - "&:before": { - background: "rgba(" + hexToRgb(blackColor) + ", 0.5)", - }, - "&:after,&:before": { - position: "absolute", - zIndex: "1", - width: "100%", - height: "100%", - display: "block", - left: "0", - top: "0", - content: "''", - }, - }, - iframeContainer: { - "& > iframe": { - width: "100%", - boxShadow: - "0 16px 38px -12px rgba(" + - hexToRgb(blackColor) + - ", 0.56), 0 4px 25px 0px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(blackColor) + - ", 0.2)", - }, - }, - mrAuto, - textCenter: { - textAlign: "center", - }, - card: { - marginTop: "60px", - }, - formControl: { - margin: "0", - padding: "8px 0 0 0", - }, - textRight: { - textAlign: "right", - }, - button: { - margin: "0 !important", - }, -}); - -export default headersSection; diff --git a/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/pricingStyle.js b/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/pricingStyle.js deleted file mode 100644 index 048e32d..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/pricingStyle.js +++ /dev/null @@ -1,124 +0,0 @@ -import { - container, - section, - sectionDark, - mlAuto, - mrAuto, - title, - description, - cardTitle, - roseColor, - blackColor, - whiteColor, - grayColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const pricingSection = { - container, - mlAuto, - mrAuto, - title, - cardTitle, - description, - cardTitleWhite: { - ...cardTitle, - color: whiteColor + " !important", - }, - sectionGray: { - background: grayColor[14], - }, - section: { - ...section, - ...sectionDark, - position: "relative", - "& $container": { - position: "relative", - zIndex: "2", - }, - "& $description": { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.5)", - }, - "& $cardCategory": { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.76)", - }, - "& $title": { - color: whiteColor, - marginBottom: "10px", - }, - "&:after": { - position: "absolute", - zIndex: "1", - width: "100%", - height: "100%", - display: "block", - left: "0", - top: "0", - content: "''", - backgroundColor: "rgba(" + hexToRgb(blackColor) + ", 0.7)", - }, - }, - pricing1: { - "&$section:after": { - backgroundColor: "rgba(" + hexToRgb(blackColor) + ", 0.8)", - }, - }, - pricing: { - padding: "80px 0", - }, - textCenter: { - textAlign: "center", - }, - sectionSpace: { - height: "70px", - display: "block", - }, - cardCategory: { - ...description, - }, - cardCategoryWhite: { - color: whiteColor, - }, - cardDescription: { - ...description, - }, - justifyContentCenter: { - WebkitBoxPack: "center !important", - MsFlexPack: "center !important", - justifyContent: "center !important", - }, - icon: { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.76)", - margin: "10px auto 0", - width: "130px", - height: "130px", - border: "1px solid " + grayColor[14], - borderRadius: "50%", - lineHeight: "174px", - "& .fab,& .fas,& .far,& .fal,& .material-icons": { - fontSize: "55px", - lineHeight: "55px", - }, - "& svg": { - width: "55px", - height: "55px", - }, - }, - iconWhite: { - color: whiteColor, - }, - iconRose: { - color: roseColor[0], - }, - marginTop30: { - marginTop: "30px", - }, - marginBottom20: { - marginBottom: "20px", - }, - marginBottom30: { - marginBottom: "30px", - }, -}; - -export default pricingSection; diff --git a/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/projectsStyle.js b/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/projectsStyle.js deleted file mode 100644 index a2ce291..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/projectsStyle.js +++ /dev/null @@ -1,97 +0,0 @@ -import { - container, - mlAuto, - mrAuto, - title, - cardTitle, - description, - coloredShadow, - whiteColor, - sectionDark, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const projectsSection = { - container, - mlAuto, - mrAuto, - title, - description, - coloredShadow, - cardTitle, - textCenter: { - textAlign: "center", - }, - projects: { - padding: "80px 0", - }, - tabSpace: { - padding: "20px 0 50px 0px", - }, - cardCategory: { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.7) !important", - marginTop: "10px", - }, - cardTitleWhite: { - ...cardTitle, - color: whiteColor + " !important", - marginTop: "10px !important", - }, - cardDescription: { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.7) !important", - }, - sectionSpace: { - height: "70px", - display: "block", - }, - marginTop20: { - marginTop: "20px", - }, - card2: { - textAlign: "center", - }, - sectionDark: { - ...sectionDark, - backgroundSize: "550% 450%", - "& $title, & $cardTitle": { - color: whiteColor, - }, - "& $cardCategory": { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.5) !important", - }, - "& $cardDescription": { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.76) !important", - }, - }, - projects3: { - "& $title": { - marginBottom: "80px", - marginTop: "5px", - }, - "& h6": { - marginBottom: "5px", - }, - }, - card4: { - marginTop: "0", - marginBottom: "0", - "& $cardTitle": { - color: whiteColor, - }, - }, - cardBody4: { - paddingTop: "140px", - paddingBottom: "140px", - }, - info4: { - padding: "0", - }, - projects4: { - "& hr": { - margin: "70px auto", - maxWidth: "970px", - }, - }, -}; - -export default projectsSection; diff --git a/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/teamsStyle.js b/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/teamsStyle.js deleted file mode 100644 index ffa83fa..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/teamsStyle.js +++ /dev/null @@ -1,87 +0,0 @@ -import { - container, - title, - cardTitle, - description, - mlAuto, - mrAuto, - section, - sectionDark, - coloredShadow, - blackColor, - whiteColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const teamsSection = { - container, - title, - mlAuto, - mrAuto, - cardTitle, - coloredShadow, - description, - descriptionWhite: { - ...description, - }, - textCenter: { - textAlign: "center", - }, - team: { - padding: "80px 0", - "& h5$description,& h5$descriptionWhite": { - marginBottom: "80px", - }, - }, - section: { - ...sectionDark, - ...section, - position: "relative", - "& $title": { - color: whiteColor, - }, - "& $descriptionWhite": { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.76)", - }, - "& $container": { - zIndex: "2", - position: "relative", - }, - "&:after": { - position: "absolute", - zIndex: "1", - width: "100%", - height: "100%", - display: "block", - left: "0", - top: "0", - content: "''", - backgroundColor: "rgba(" + hexToRgb(blackColor) + ", 0.7)", - }, - }, - justifyContent: { - WebkitBoxPack: "center !important", - MsFlexPack: "center !important", - justifyContent: "center !important", - }, - cardCategory: { - marginTop: "10px", - }, - btn: { - marginTop: "0 !important", - }, - card3: { - textAlign: "left", - }, - card5: { - textAlign: "left", - "& $cardTitle": { - color: whiteColor, - }, - "& $description": { - color: whiteColor, - }, - }, -}; - -export default teamsSection; diff --git a/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/testimonialsStyle.js b/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/testimonialsStyle.js deleted file mode 100644 index bde18bc..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/sectionsSections/testimonialsStyle.js +++ /dev/null @@ -1,108 +0,0 @@ -import { - container, - sectionDark, - section, - mlAuto, - mrAuto, - title, - description, - cardTitle, - blackColor, - whiteColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const testimonialsSection = { - container, - mlAuto, - mrAuto, - title, - description, - cardTitle, - sectionDark: { - ...sectionDark, - "& $cardDescription": { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.76)", - }, - "& $cardTitle": { - color: whiteColor, - }, - backgroundSize: "550% 450%", - }, - cardDescription: { - ...description, - }, - cardCategory: { - ...description, - }, - sectionImage: { - ...sectionDark, - ...section, - position: "relative", - "& $container": { - zIndex: "2", - position: "relative", - }, - "&:after": { - position: "absolute", - zIndex: "1", - width: "100%", - height: "100%", - display: "block", - left: "0", - top: "0", - content: "''", - backgroundColor: "rgba(" + hexToRgb(blackColor) + ", 0.7)", - }, - "& $title": { - color: whiteColor, - }, - "& $description": { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.76)", - }, - }, - testimonials: { - padding: "80px 0", - "& $cardDescription": { - fontStyle: "italic", - }, - }, - textCenter: { - textAlign: "center", - }, - icon: { - marginTop: "30px", - "& .fab,& .fas,& .far,& .fal,& .material-icons": { - fontSize: "40px", - lineHeight: "40px", - }, - "& svg": { - width: "40px", - height: "40px", - }, - }, - card1: { - "& $cardDescription": { - marginBottom: "50px", - fontStyle: "italic", - }, - }, - starIcons: { - width: "24px", - height: "24px", - }, - testimonial2: { - "& .slick-dots": { - display: "none !important", - }, - }, - card2: { - maxWidth: "650px", - margin: "60px auto", - "& $cardDescription": { - fontStyle: "italic", - }, - }, -}; - -export default testimonialsSection; diff --git a/styles/jss/nextjs-material-kit-pro/pages/shoppingCartStyle.js b/styles/jss/nextjs-material-kit-pro/pages/shoppingCartStyle.js deleted file mode 100644 index 277b6b3..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/shoppingCartStyle.js +++ /dev/null @@ -1,125 +0,0 @@ -import { - container, - title, - cardTitle, - main, - mainRaised, - mrAuto, - whiteColor, - grayColor, - mlAuto, -} from "styles/jss/nextjs-material-kit-pro.js"; - -import buttonGroup from "styles/jss/nextjs-material-kit-pro/buttonGroupStyle.js"; -import tooltips from "styles/jss/nextjs-material-kit-pro/tooltipsStyle.js"; - -const styles = { - main, - mainRaised, - mrAuto, - mlAuto, - cardTitle, - ...buttonGroup, - ...tooltips, - container: { - ...container, - zIndex: 1, - }, - title: { - ...title, - "&, & + h4": { - color: whiteColor, - }, - }, - block: { - color: "inherit", - padding: "0.9375rem", - fontWeight: "500", - fontSize: "12px", - textTransform: "uppercase", - borderRadius: "3px", - textDecoration: "none", - position: "relative", - display: "block", - }, - inlineBlock: { - display: "inline-block", - padding: "0px", - width: "auto", - }, - list: { - marginBottom: "0", - padding: "0", - marginTop: "0", - }, - left: { - float: "left!important", - display: "block", - }, - right: { - padding: "15px 0", - margin: "0", - float: "right", - }, - icon: { - width: "18px", - height: "18px", - top: "3px", - position: "relative", - }, - imgContainer: { - width: "120px", - maxHeight: "160px", - overflow: "hidden", - display: "block", - "& img": { - width: "100%", - }, - }, - description: { - maxWidth: "150px", - }, - tdName: { - minWidth: "200px", - fontWeight: "400", - fontSize: "1.5em", - }, - tdNameAnchor: { - color: grayColor[1], - }, - tdNameSmall: { - color: grayColor[0], - fontSize: "0.75em", - fontWeight: "300", - }, - tdNumber: { - textAlign: "right", - minWidth: "150px", - fontWeight: "300", - fontSize: "1.125em !important", - }, - tdNumberSmall: { - marginRight: "3px", - }, - tdNumberAndButtonGroup: { - lineHeight: "1 !important", - "& svg,& .fab,& .fas,& .far,& .fal,& .material-icons": { - marginRight: "0", - }, - }, - customFont: { - fontSize: "16px !important", - }, - actionButton: { - margin: "0px", - padding: "5px", - }, - textCenter: { - textAlign: "center", - }, - textRight: { - textAlign: "right", - }, -}; - -export default styles; diff --git a/styles/jss/nextjs-material-kit-pro/pages/signupPageStyle.js b/styles/jss/nextjs-material-kit-pro/pages/signupPageStyle.js deleted file mode 100644 index 39f0b1e..0000000 --- a/styles/jss/nextjs-material-kit-pro/pages/signupPageStyle.js +++ /dev/null @@ -1,143 +0,0 @@ -import { - primaryColor, - grayColor, - container, - cardTitle, - whiteColor, - blackColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -import customCheckboxRadioSwitchStyle from "styles/jss/nextjs-material-kit-pro/customCheckboxRadioSwitchStyle.js"; - -const signupPageStyle = { - container: { - ...container, - zIndex: "2", - position: "relative", - paddingTop: "20vh", - color: whiteColor, - }, - pageHeader: { - minHeight: "100vh", - height: "auto", - display: "inherit", - position: "relative", - margin: "0", - padding: "0", - border: "0", - alignItems: "center", - "&:before": { - background: "rgba(" + hexToRgb(blackColor) + ", 0.5)", - }, - "&:after": { - background: - "linear-gradient(60deg,rgba(" + - hexToRgb(primaryColor[4]) + - ",.56),rgba(" + - hexToRgb(primaryColor[5]) + - ",.95))", - }, - "&:before,&:after": { - position: "absolute", - zIndex: "1", - width: "100%", - height: "100%", - display: "block", - left: "0", - top: "0", - content: '""', - }, - }, - cardSignup: { - borderRadius: "6px", - boxShadow: - "0 16px 24px 2px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 6px 30px 5px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(blackColor) + - ", 0.2);", - marginBottom: "100px", - padding: "40px 0px", - }, - cardTitle: { - ...cardTitle, - textDecoration: "none", - textAlign: "center !important", - marginBottom: "0.75rem", - }, - ...customCheckboxRadioSwitchStyle, - socials: { - marginTop: "0", - position: "absolute", - width: "100%", - transform: "none", - left: "0", - top: "0", - height: "100%", - lineHeight: "41px", - fontSize: "20px", - }, - textCenter: { - textAlign: "center", - }, - inputAdornment: { - marginRight: "18px", - position: "relative", - }, - inputAdornmentIcon: { - color: grayColor[13], - }, - form: { - margin: "0", - }, - infoArea: { - padding: "0px 0px 20px !important", - }, - block: { - color: "inherit", - padding: "0.9375rem", - fontWeight: "500", - fontSize: "12px", - textTransform: "uppercase", - borderRadius: "3px", - textDecoration: "none", - position: "relative", - display: "block", - }, - inlineBlock: { - display: "inline-block", - padding: "0px", - width: "auto", - }, - list: { - marginBottom: "0", - padding: "0", - marginTop: "0", - }, - left: { - float: "left!important", - display: "block", - "&,& *,& *:hover,& *:focus": { - color: whiteColor + " !important", - }, - }, - right: { - padding: "15px 0", - margin: "0", - float: "right", - "&,& *,& *:hover,& *:focus": { - color: whiteColor + " !important", - }, - }, - icon: { - width: "18px", - height: "18px", - top: "3px", - position: "relative", - }, -}; - -export default signupPageStyle; diff --git a/styles/jss/nextjs-material-kit-pro/popoverStyles.js b/styles/jss/nextjs-material-kit-pro/popoverStyles.js deleted file mode 100644 index 6be1393..0000000 --- a/styles/jss/nextjs-material-kit-pro/popoverStyles.js +++ /dev/null @@ -1,59 +0,0 @@ -import { - whiteColor, - blackColor, - grayColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const popoverStyles = { - popover: { - padding: "0", - boxShadow: - "0 16px 24px 2px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 6px 30px 5px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 8px 10px -5px rgba(" + - hexToRgb(blackColor) + - ", 0.2)", - lineHeight: "1.5em", - background: "rgba(" + hexToRgb(grayColor[15]) + ",0.9)", - border: "none", - borderRadius: "3px", - display: "block", - maxWidth: "276px", - fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif', - fontStyle: "normal", - fontWeight: "400", - textAlign: "start", - textDecoration: "none", - textShadow: "none", - textTransform: "none", - letterSpacing: "normal", - wordBreak: "normal", - wordSpacing: "normal", - whiteSpace: "normal", - lineBreak: "auto", - fontSize: "0.875rem", - wordWrap: "break-word", - }, - popoverBottom: { - marginTop: "5px", - }, - popoverHeader: { - border: "none", - padding: "15px 15px 5px", - fontSize: "1.125rem", - margin: "0", - color: whiteColor, - borderTopLeftRadius: "calc(0.3rem - 1px)", - borderTopRightRadius: "calc(0.3rem - 1px)", - }, - popoverBody: { - padding: "10px 15px 15px", - lineHeight: "1.4", - color: whiteColor, - }, -}; - -export default popoverStyles; diff --git a/styles/jss/nextjs-material-kit-pro/rotatingCards.js b/styles/jss/nextjs-material-kit-pro/rotatingCards.js deleted file mode 100644 index fcfae46..0000000 --- a/styles/jss/nextjs-material-kit-pro/rotatingCards.js +++ /dev/null @@ -1,132 +0,0 @@ -import { - whiteColor, - blackColor, - primaryColor, - roseColor, - infoColor, - warningColor, - dangerColor, - successColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const style = { - rotatingCardContainer: { - perspective: "800px", - "& $cardRotate $back": { - transform: "rotateY(180deg)", - zIndex: "5", - textAlign: "center", - width: "100%", - height: "100%", - }, - "&:not($manualRotate):hover $cardRotate": { - transform: "rotateY(180deg)", - }, - "&$manualRotate$activateRotate $cardRotate": { - transform: "rotateY(180deg)", - }, - "& $cardRotate $front": { - zIndex: "2", - position: "relative", - }, - "& $cardRotate $front, & $cardRotate $back": { - backfaceVisibility: "hidden", - boxShadow: - "0 2px 2px 0 rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 3px 1px -2px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 1px 5px 0 rgba(" + - hexToRgb(blackColor) + - ", 0.2)", - position: "absolute", - backgroundColor: whiteColor, - borderRadius: "6px", - top: "0", - left: "0", - WebkitBoxPack: "center", - MsFlexPack: "center", - justifyContent: "center", - MsFlexLinePack: "center", - alignContent: "center", - display: "flex", - WebkitBoxOrient: "vertical", - WebkitBoxDirection: "normal", - flexDirection: "column", - }, - }, - activateRotate: {}, - manualRotate: {}, - cardRotate: { - transition: "all 0.8s cubic-bezier(0.34, 1.45, 0.7, 1)", - transformStyle: "preserve-3d", - position: "relative", - background: "transparent", - }, - front: {}, - back: {}, - wrapperBackground: { - backgroundPosition: "50%", - backgroundSize: "cover", - textAlign: "center", - "&:after": { - position: "absolute", - zIndex: "1", - width: "100%", - height: "100%", - display: "block", - left: "0", - top: "0", - content: "''", - backgroundColor: "rgba(" + hexToRgb(blackColor) + ", 0.56)", - borderRadius: "6px", - }, - }, - cardBodyRotate: { - WebkitBoxPack: "center", - MsFlexPack: "center", - justifyContent: "center", - MsFlexLinePack: "center", - alignContent: "center", - display: "flex", - WebkitBoxOrient: "vertical", - WebkitBoxDirection: "normal", - flexDirection: "column", - }, - wrapperPrimary: { - background: - "linear-gradient(60deg," + primaryColor[1] + "," + primaryColor[2] + ")", - "& h1 small": { - color: "rgba(" + hexToRgb(whiteColor) + ", 0.8)", - }, - color: whiteColor, - }, - wrapperInfo: { - background: - "linear-gradient(60deg," + infoColor[1] + "," + infoColor[2] + ")", - color: whiteColor, - }, - wrapperSuccess: { - background: - "linear-gradient(60deg," + successColor[1] + "," + successColor[2] + ")", - color: whiteColor, - }, - wrapperWarning: { - background: - "linear-gradient(60deg," + warningColor[1] + "," + warningColor[2] + ")", - color: whiteColor, - }, - wrapperDanger: { - background: - "linear-gradient(60deg," + dangerColor[1] + "," + dangerColor[2] + ")", - color: whiteColor, - }, - wrapperRose: { - background: - "linear-gradient(60deg," + roseColor[1] + "," + roseColor[2] + ")", - color: whiteColor, - }, -}; - -export default style; diff --git a/styles/jss/nextjs-material-kit-pro/tooltipsStyle.js b/styles/jss/nextjs-material-kit-pro/tooltipsStyle.js deleted file mode 100644 index 777186d..0000000 --- a/styles/jss/nextjs-material-kit-pro/tooltipsStyle.js +++ /dev/null @@ -1,42 +0,0 @@ -import { - whiteColor, - blackColor, - grayColor, - hexToRgb, -} from "styles/jss/nextjs-material-kit-pro.js"; - -const tooltipsStyle = { - tooltip: { - padding: "10px 15px", - minWidth: "130px", - color: whiteColor, - lineHeight: "1.7em", - background: "rgba(" + hexToRgb(grayColor[15]) + ",0.9)", - border: "none", - borderRadius: "3px", - boxShadow: - "0 8px 10px 1px rgba(" + - hexToRgb(blackColor) + - ", 0.14), 0 3px 14px 2px rgba(" + - hexToRgb(blackColor) + - ", 0.12), 0 5px 5px -3px rgba(" + - hexToRgb(blackColor) + - ", 0.2)", - maxWidth: "200px", - textAlign: "center", - fontFamily: '"Helvetica Neue",Helvetica,Arial,sans-serif', - fontSize: "0.875em", - fontStyle: "normal", - fontWeight: "400", - textShadow: "none", - textTransform: "none", - letterSpacing: "normal", - wordBreak: "normal", - wordSpacing: "normal", - wordWrap: "normal", - whiteSpace: "normal", - lineBreak: "auto", - }, -}; - -export default tooltipsStyle; diff --git a/styles/scss/core/_fileupload.scss b/styles/scss/core/_fileupload.scss deleted file mode 100644 index 7a7e365..0000000 --- a/styles/scss/core/_fileupload.scss +++ /dev/null @@ -1,123 +0,0 @@ -.btn-file { - position: relative; - overflow: hidden; - vertical-align: middle; -} -.btn-file > input { - position: absolute; - top: 0; - right: 0; - width: 100%; - height: 100%; - margin: 0; - font-size: 23px; - cursor: pointer; - filter: alpha(opacity=0); - opacity: 0; - - direction: ltr; -} -.fileinput { - text-align: center; - display: inline-block; - margin-bottom: 9px; - - input[type="file"] { - display: none; - } -} -.fileinput .form-control { - display: inline-block; - padding-top: 7px; - padding-bottom: 5px; - margin-bottom: 0; - vertical-align: middle; - cursor: text; -} -.fileinput .thumbnail { - display: inline-block; - margin-bottom: 10px; - overflow: hidden; - text-align: center; - vertical-align: middle; - max-width: 360px; - box-shadow: 0 5px 15px -8px rgba(0, 0, 0, 0.24), - 0 8px 10px -5px rgba(0, 0, 0, 0.2); - - &.img-circle { - border-radius: 50%; - max-width: 100px; - } -} -.fileinput .thumbnail > img { - max-height: 100%; - width: 100%; -} -.fileinput .btn { - vertical-align: middle; -} -.fileinput-exists .fileinput-new, -.fileinput-new .fileinput-exists { - display: none; -} -.fileinput-inline .fileinput-controls { - display: inline; -} -.fileinput-filename { - display: inline-block; - overflow: hidden; - vertical-align: middle; -} -.form-control .fileinput-filename { - vertical-align: bottom; -} -.fileinput.input-group { - display: table; -} -.fileinput.input-group > * { - position: relative; - z-index: 2; -} -.fileinput.input-group > .btn-file { - z-index: 1; -} -.fileinput-new.input-group .btn-file, -.fileinput-new .input-group .btn-file { - border-radius: 0 4px 4px 0; -} -.fileinput-new.input-group .btn-file.btn-xs, -.fileinput-new .input-group .btn-file.btn-xs, -.fileinput-new.input-group .btn-file.btn-sm, -.fileinput-new .input-group .btn-file.btn-sm { - border-radius: 0 3px 3px 0; -} -.fileinput-new.input-group .btn-file.btn-lg, -.fileinput-new .input-group .btn-file.btn-lg { - border-radius: 0 6px 6px 0; -} -.form-group.has-warning .fileinput .fileinput-preview { - color: $brand-warning; -} -.form-group.has-warning .fileinput .thumbnail { - border-color: $brand-warning; -} -.form-group.has-error .fileinput .fileinput-preview { - color: $brand-danger; -} -.form-group.has-error .fileinput .thumbnail { - border-color: $brand-danger; -} -.form-group.has-success .fileinput .fileinput-preview { - color: $brand-success; -} -.form-group.has-success .fileinput .thumbnail { - border-color: $brand-success; -} -.input-group-addon:not(:first-child) { - border-left: 0; -} -.thumbnail { - border: 0 none; - border-radius: 0; - padding: 0; -} diff --git a/styles/scss/core/_misc.scss b/styles/scss/core/_misc.scss deleted file mode 100644 index ddf617c..0000000 --- a/styles/scss/core/_misc.scss +++ /dev/null @@ -1,252 +0,0 @@ -html * { - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -* { - letter-spacing: normal !important; -} -body { - font-size: 1rem; - overflow-x: hidden; -} - -body, -h1, -h2, -h3, -h4, -h5, -h6 { - font-family: "Roboto", "Helvetica", "Arial", sans-serif; - font-weight: 300; - line-height: 1.5em; -} -h1, -h2, -h3, -h4, -h5, -h6 { - color: inherit; -} -h1, -h2, -h3 { - margin-top: 20px; - margin-bottom: 10px; -} -h4, -h5, -h6 { - margin-top: 10px; - margin-bottom: 10px; -} -h1 { - font-size: 3.3125rem; - line-height: 1.15em; -} -h2 { - font-size: 2.25rem; - line-height: 1.5em; -} -h3 { - font-size: 1.5625rem; - line-height: 1.4em; -} -h4 { - font-size: 1.125rem; - line-height: 1.5em; -} -h5 { - font-size: 1.0625rem; - line-height: 1.55em; -} -h6 { - font-size: 0.75rem; - text-transform: uppercase; - font-weight: 500; -} -p { - font-size: 14px; - margin: 0 0 10px; -} -b, -strong { - font-weight: 700; -} -html { - font-family: sans-serif; - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; - -ms-overflow-style: scrollbar; - -webkit-tap-highlight-color: transparent; -} -body { - background-color: #eee; - color: $black-color; - margin: 0; - font-size: 1rem; - text-align: left; -} - -legend { - border-bottom: 0; -} - -// Prevent highlight on mobile -* { - -webkit-tap-highlight-color: rgba(255, 255, 255, 0); - -webkit-tap-highlight-color: transparent; - box-sizing: border-box; - &:focus { - outline: 0; - } -} - -a { - color: $link-color; - text-decoration: none; - background-color: transparent; - &:hover, - &:focus { - color: darken($link-color, 5%); - text-decoration: none; - } -} - -label { - font-size: 14px; - line-height: 1.42857; - color: $checkboxes-text-color; - font-weight: 400; -} -small { - font-size: 75%; - color: #777; - font-weight: 400; -} -img { - vertical-align: middle; - border-style: none; -} -form { - margin-bottom: 1.125rem; -} - -hr { - margin-top: 1rem; - margin-bottom: 1rem; - border: 0; - border-top: 1px solid rgba(0, 0, 0, 0.1); -} -hr { - box-sizing: content-box; - height: 0; - overflow: visible; -} - -ol, -ul, -dl { - margin-top: 0; - margin-bottom: 1rem; -} - -#images h4 { - margin-bottom: 30px; -} - -#root { - overflow: hidden; -} - -#cd-vertical-nav { - position: fixed; - right: -78px; - top: 50%; - bottom: auto; - -webkit-transform: translateY(-50%); - -moz-transform: translateY(-50%); - -ms-transform: translateY(-50%); - -o-transform: translateY(-50%); - transform: translateY(-50%); - z-index: 4; -} -#cd-vertical-nav ul { - list-style: none; - padding: 0; -} -#cd-vertical-nav li { - text-align: right; -} -#cd-vertical-nav a { - display: inline-block; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - width: 100%; -} -#cd-vertical-nav a:hover span, -#cd-vertical-nav a.is-selected .cd-dot { - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - -o-transform: scale(1); - transform: scale(1); -} -#cd-vertical-nav .cd-dot { - position: relative; - top: 8px; - right: calc(100% - 15px); - height: 10px; - width: 10px; - border-radius: 50%; - background-color: #995581; - -webkit-transition: -webkit-transform 0.2s, background-color 0.5s; - -moz-transition: -moz-transform 0.2s, background-color 0.5s; - transition: transform 0.2s, background-color 0.5s; - -webkit-transform-origin: 50% 50%; - -moz-transform-origin: 50% 50%; - -ms-transform-origin: 50% 50%; - -o-transform-origin: 50% 50%; - transform-origin: 50% 50%; -} -#cd-vertical-nav a span { - float: right; - display: inline-block; - -webkit-transform: scale(0.6); - -moz-transform: scale(0.6); - -ms-transform: scale(0.6); - -o-transform: scale(0.6); - transform: scale(0.6); -} -#cd-vertical-nav .cd-label { - position: relative; - margin-right: 10px; - padding: 4px 14px; - color: white; - background: rgba(0, 0, 0, 0.53); - font-size: 10px; - border-radius: 20px; - text-transform: uppercase; - font-weight: 600; - opacity: 0; - -webkit-transform-origin: 100% 50%; - -moz-transform-origin: 100% 50%; - -ms-transform-origin: 100% 50%; - -o-transform-origin: 100% 50%; - transform-origin: 100% 50%; -} -#cd-vertical-nav a:after { - content: ""; - display: table; - clear: both; -} - -#cd-vertical-nav a:hover .cd-label { - opacity: 1; - left: -100%; - -webkit-transition: -webkit-transform 0.2s, opacity 0.2s; - -moz-transition: -moz-transform 0.2s, opacity 0.2s; - transition: transform 0.2s, opacity 0.2s; -} diff --git a/styles/scss/core/_mixins.scss b/styles/scss/core/_mixins.scss deleted file mode 100644 index ca37550..0000000 --- a/styles/scss/core/_mixins.scss +++ /dev/null @@ -1 +0,0 @@ -@import "mixins/colored-shadows"; diff --git a/styles/scss/core/_page-transition.scss b/styles/scss/core/_page-transition.scss deleted file mode 100644 index c4f2f50..0000000 --- a/styles/scss/core/_page-transition.scss +++ /dev/null @@ -1,37 +0,0 @@ -.body-page-transition{ - overflow: hidden; - #page-transition { - position: fixed; - z-index: 9999; - width: 100%; - display: flex; - height: 100%; - justify-content: center; - align-items: center; - } - - #page-transition > div{ - &:after{ - content: ""; - background-image: url("/img/bg7.jpg"); - background-size: cover; - position: fixed; - z-index: 9998; - width: 100%; - height: 100%; - top: 0; - left: 0; - } - &:before { - top: 0; - left: 0; - width: 100%; - height: 100%; - content: ''; - display: block; - z-index: 9999; - position: absolute; - background: rgba(0, 0, 0, 0.5); - } - } -} diff --git a/styles/scss/core/_variables.scss b/styles/scss/core/_variables.scss deleted file mode 100644 index bd44bee..0000000 --- a/styles/scss/core/_variables.scss +++ /dev/null @@ -1,17 +0,0 @@ -@import "variables/colors"; -@import "variables/shadow"; - -@import "variables/bootstrap-material-design-base"; - -// Customized BS variables -@import "variables/brand"; - -// import their vars after customization for use below -$enable-flex: true; // fully adopt flexbox layouts -$enable-shadows: true; // enable shadows, set to false to turn off shadows - -// // Core Bootstrap Variables -@import "variables/functions"; -@import "variables/variables"; - -@import "variables/bootstrap-material-design"; diff --git a/styles/scss/core/mixins/_colored-shadows.scss b/styles/scss/core/mixins/_colored-shadows.scss deleted file mode 100644 index 2717da4..0000000 --- a/styles/scss/core/mixins/_colored-shadows.scss +++ /dev/null @@ -1,128 +0,0 @@ -@mixin shadow-big() { - box-shadow: 0 16px 38px -12px rgba(0, 0, 0, $bmd-shadow-penumbra-opacity * 4), - 0 4px 25px 0px rgba(0, 0, 0, $bmd-shadow-ambient-opacity), - 0 8px 10px -5px rgba(0, 0, 0, $bmd-shadow-umbra-opacity); -} - -@mixin shadow-big-image() { - // new box shadow optimized for Tables and Phones - box-shadow: 0 5px 15px -8px rgba(0, 0, 0, $bmd-shadow-ambient-opacity * 2), - 0 8px 10px -5px rgba(0, 0, 0, $bmd-shadow-umbra-opacity); -} - -@mixin shadow-big-navbar() { - box-shadow: 0 10px 20px -12px rgba(0, 0, 0, $bmd-shadow-penumbra-opacity * 3), - 0 3px 20px 0px rgba(0, 0, 0, $bmd-shadow-ambient-opacity), - 0 8px 10px -5px rgba(0, 0, 0, $bmd-shadow-umbra-opacity); -} - -@mixin shadow-big-color($color) { - // new box shadow optimized for Tables and Phones - box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.2), - 0 13px 24px -11px rgba($color, 0.6); -} - -@mixin shadow-small-color($color) { - // new box shadow optimized for Tablets and Phones - box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), - 0 7px 10px -5px rgba($color, 0.4); -} - -@mixin shadow-navbar-color($color) { - // new box shadow optimized for Tablets and Phones - - @if ($color == $white-color) { - box-shadow: 0 4px 18px 0px rgba(0, 0, 0, 0.12), - 0 7px 10px -5px rgba(0, 0, 0, 0.15); - } @else { - box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), - 0 7px 12px -5px rgba($color, 0.46); - } -} - -@mixin shadow-2dp() { - box-shadow: 0 2px 2px 0 rgba(0, 0, 0, $bmd-shadow-penumbra-opacity), - 0 3px 1px -2px rgba(0, 0, 0, $bmd-shadow-ambient-opacity), - 0 1px 5px 0 rgba(0, 0, 0, $bmd-shadow-umbra-opacity); -} - -@mixin shadow-4dp() { - box-shadow: 0 4px 5px 0 rgba(0, 0, 0, $bmd-shadow-penumbra-opacity), - 0 1px 10px 0 rgba(0, 0, 0, $bmd-shadow-ambient-opacity), - 0 2px 4px -1px rgba(0, 0, 0, $bmd-shadow-umbra-opacity); -} - -@mixin shadow-6dp() { - box-shadow: 0 6px 10px 0 rgba(0, 0, 0, $bmd-shadow-penumbra-opacity), - 0 1px 18px 0 rgba(0, 0, 0, $bmd-shadow-ambient-opacity), - 0 3px 5px -1px rgba(0, 0, 0, $bmd-shadow-umbra-opacity); -} - -@mixin shadow-8dp() { - box-shadow: 0 8px 10px 1px rgba(0, 0, 0, $bmd-shadow-penumbra-opacity), - 0 3px 14px 2px rgba(0, 0, 0, $bmd-shadow-ambient-opacity), - 0 5px 5px -3px rgba(0, 0, 0, $bmd-shadow-umbra-opacity); -} - -@mixin shadow-16dp() { - box-shadow: 0 16px 24px 2px rgba(0, 0, 0, $bmd-shadow-penumbra-opacity), - 0 6px 30px 5px rgba(0, 0, 0, $bmd-shadow-ambient-opacity), - 0 8px 10px -5px rgba(0, 0, 0, $bmd-shadow-umbra-opacity); -} - -@mixin shadow-2dp-color($color) { - box-shadow: 0 2px 2px 0 rgba($color, $bmd-shadow-penumbra-opacity), - 0 3px 1px -2px rgba($color, $bmd-shadow-umbra-opacity), - 0 1px 5px 0 rgba($color, $bmd-shadow-ambient-opacity); -} - -@mixin shadow-4dp-color($color) { - box-shadow: 0 4px 5px 0 rgba($color, $bmd-shadow-penumbra-opacity), - 0 1px 10px 0 rgba($color, $bmd-shadow-ambient-opacity), - 0 2px 4px -1px rgba($color, $bmd-shadow-umbra-opacity); -} - -@mixin shadow-8dp-color($color) { - box-shadow: 0 8px 10px 1px rgba($color, $bmd-shadow-penumbra-opacity), - 0 3px 14px 2px rgba(0, 0, 0, $bmd-shadow-ambient-opacity), - 0 5px 5px -3px rgba($color, $bmd-shadow-umbra-opacity); -} - -@mixin shadow-16dp-color($color) { - box-shadow: 0 16px 24px 2px rgba($color, $bmd-shadow-penumbra-opacity), - 0 6px 30px 5px rgba(0, 0, 0, $bmd-shadow-ambient-opacity), - 0 8px 10px -5px rgba($color, $bmd-shadow-umbra-opacity); -} - -@mixin button-shadow-color($color) { - box-shadow: 0 14px 26px -12px rgba($color, $bmd-shadow-penumbra-opacity * 3), - 0 4px 23px 0px rgba(0, 0, 0, $bmd-shadow-ambient-opacity), - 0 8px 10px -5px rgba($color, $bmd-shadow-umbra-opacity); -} - -@mixin shadow-z-1() { - box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.12); -} - -@mixin shadow-z-1-hover() { - box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); -} - -@mixin shadow-z-2() { - box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); -} - -@mixin shadow-z-3() { - box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), - 0 17px 50px 0 rgba(0, 0, 0, 0.19); -} - -@mixin shadow-z-4() { - box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), - 0 25px 55px 0 rgba(0, 0, 0, 0.21); -} - -@mixin shadow-z-5() { - box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), - 0 40px 77px 0 rgba(0, 0, 0, 0.22); -} diff --git a/styles/scss/core/variables/_bootstrap-material-design-base.scss b/styles/scss/core/variables/_bootstrap-material-design-base.scss deleted file mode 100644 index d6aebbe..0000000 --- a/styles/scss/core/variables/_bootstrap-material-design-base.scss +++ /dev/null @@ -1,36 +0,0 @@ -$gray-lighter: rgba($black, 0.12) !default; -$gray-light: #999 !default; -$gray-alpha: 0.54 !default; -$gray: #555 !default; // spec color -$gray-dark: rgba( - $black, - 0.87 -) !default; // used for text color - others use grey-600 which is considerably lighter - -$bmd-font-weight-base: 400; - -// wondering if any of these could still be refactored out, but are definitely in use. -$bmd-inverse: rgba($white, 1) !default; -$bmd-inverse-light: rgba($white, 0.84) !default; -$bmd-inverse-lighter: rgba($white, 0.54) !default; - -$bmd-label-color: $gray-color !default; -$bmd-label-color-inner-focus: $gray !default; // e.g. radio label or text-muted not a control-label which is primary - -$border-radius-base: 3px !default; -$border-radius-small: 2px !default; -$border-radius-large: 6px !default; -$border-radius-huge: 10px !default; -$border-radius-label: 12px !default; -$border-radius-extreme: 30px !default; - -// Typography elements -$mdb-font-family: "Roboto", "Helvetica", "Arial", sans-serif !default; -$mdb-text-color-light: $white !default; -$mdb-text-color-light-hex: $white !default; // for contrast function in inverse -$mdb-text-color-primary: unquote("rgba(#{$rgb-black}, 0.87)") !default; -$mdb-text-color-primary-hex: $black !default; // for contrast function in inverse -$icon-color: rgba(0, 0, 0, 0.5) !default; - -$mdb-label-color: unquote("rgba(#{$rgb-black}, 0.26)") !default; -$mdb-label-color-toggle-focus: unquote("rgba(#{$rgb-black}, .54)") !default; diff --git a/styles/scss/core/variables/_bootstrap-material-design.scss b/styles/scss/core/variables/_bootstrap-material-design.scss deleted file mode 100644 index bd10b41..0000000 --- a/styles/scss/core/variables/_bootstrap-material-design.scss +++ /dev/null @@ -1,232 +0,0 @@ -$bmd-label-color-focus: $brand-primary !default; -$bmd-invalid-underline: $brand-danger !default; -$bmd-readonly-underline: $input-border-color !default; - -//--- -// verified in use with refactoring to v4 - -//--- -//-- unverified below here -$bmd-brand-inverse: $indigo !default; -// Typography elements FIXME: review to see if we actually need these -$icon-color: rgba($black, 0.5) !default; - -// -------------------- -// inputs -$mdb-input-placeholder-color: #aaaaaa !default; -$mdb-input-underline-color: #d2d2d2 !default; - -$mdb-input-font-size-base: 14px !default; -$mdb-input-font-size-large: ceil(($font-size-base * 1.25)) !default; // ~20px -$mdb-input-font-size-small: ceil(($font-size-base * 0.75)) !default; // ~12px - -$bmd-bmd-label-static-size-ratio: 75 / 100 !default; -$bmd-help-size-ratio: 75 / 100 !default; - -$bmd-form-control-bg-repeat-y: no-repeat !default; -$bmd-form-control-bg-position: center bottom, center calc(100% - 1px) !default; -$bmd-form-control-bg-size: 0 100%, 100% 100% !default; -$bmd-form-control-bg-size-active: 100% 100%, 100% 100% !default; - -// expandable -$input-text-button-size: 32px !default; - -// sizing -$bmd-form-line-height: 1 !default; // set as 1x font-size so that padding is easier calculated to match the spec. -$bmd-label-top-margin-base: 1rem !default; - -$bmd-form-line-height-lg: 1 !default; // set as 1x font-size so that padding is easier calculated to match the spec. -$bmd-label-top-margin-lg: 1rem !default; // 16px - -$bmd-form-line-height-sm: 1 !default; // set as 1x font-size so that padding is easier calculated to match the spec. -$bmd-label-top-margin-sm: 0.75rem !default; // 12px - -$text-disabled: #a8a8a8 !default; -$background-disabled: #eaeaea !default; - -$margin-base: 1.071rem !default; - -// Checkboxes -$bmd-checkbox-size: 1.25rem !default; -$bmd-checkbox-animation-ripple: 500ms !default; -$bmd-checkbox-animation-check: 0.3s !default; -$bmd-checkbox-checked-color: $white !default; -$bmd-checkbox-label-padding: 0.3125rem !default; // 5px -$checkboxes-text-color: $mdb-input-placeholder-color !default; - -$bmd-checkbox-border-size: 0.0625rem !default; -$bmd-checkbox-border-color: $bmd-label-color-inner-focus !default; -$bmd-checkbox-border-color-disabled: $gray-lighter !default; //#bdbdbd !default; - -// Toggle -$mdb-toggle-label-color: $mdb-label-color !default; - -// Variables for datetimepicker // -$padding-default-vertical: 10px !default; -$medium-pale-bg: #f1eae0 !default; -$pale-bg: #f9f7f3 !default; - -$font-color: #66615b !default; - -$brand-default: #cecece !default; -$brand-primary: $purple !default; -$brand-success: $green !default; -$brand-danger: $red !default; -$brand-warning: $orange !default; -$brand-info: $cyan !default; -$brand-rose: $pink !default; - -$black-color: #3c4858 !default; - -// Dropdowns - -$dropdown-item-padding-y: 0.625rem; -$dropdown-item-padding-x: 1.25rem; -$dropdown-header-padding-y: 0.1875rem; -$bmd-dropdown-margin-y: 0.3125rem !default; -$bmd-dropdown-header-color: #777 !default; -$bmd-dropdown-link-color: #333 !default; - -// Switches -$bmd-switch-label-padding: 0.3125rem !default; // 5px -$bmd-switch-width: 2.125rem !default; // 34px -$bmd-switch-height: 0.875rem !default; // 14px -$bmd-switch-handle-size: 1.25rem !default; // 20px (was 18px) - -$bmd-switch-handle-checked-bg: $brand-primary !default; -$bmd-switch-handle-unchecked-bg: #f1f1f1 !default; -$bmd-switch-handle-disabled-bg: #bdbdbd !default; -$bmd-switch-unchecked-bg: $gray-lighter !default; -$bmd-switch-checked-bg: desaturate( - lighten($bmd-switch-handle-checked-bg, 28%), - 32% -); // kind of magic recipe -$bmd-switch-disabled-bg: $gray-lighter !default; - -// Popovers and Popups -$bmd-popover-background: rgba(101, 101, 101, 0.9) !default; -$bmd-popover-color: #ececec !default; - -// Radio: -$bmd-radio-border: 0.0625rem !default; // 1px -$bmd-radio-size: 1rem !default; -$bmd-radio-ripple-offset: 1em !default; -$bmd-radio-label-padding: 0.3125rem !default; // 5px - -$bmd-radio-color-off: $bmd-label-color-inner-focus !default; -$bmd-radio-color-on: $brand-primary !default; -$bmd-radio-color-disabled: $gray-lighter; // -$bmd-radio-color-disabled-inverse: rgba( - $white, - 0.3 -); // dark theme spec: Disabled: #FFFFFF, Opacity 30% - -$white-color: #fff !default; -$navbar-color: #555 !default; -$pills-color: $navbar-color !default; -$black-color: #3c4858 !default; -$link-color: $brand-primary; -$white-transparent: rgba($white-color, 0.8); -$transparent: transparent; - -//Popovers -$popover-color: $navbar-color !default; - -//Tooltips -$tooltip-font-size: 0.75rem !default; - -// Background colors -$bg-primary: $brand-primary; -$bg-danger: $brand-danger; -$bg-warning: $brand-warning; -$bg-info: $brand-info; -$bg-rose: $brand-rose; -$bg-success: $brand-success; -$bg-dark: $grey-900; - -//Paddings -$padding-general-y: 0.625rem !default; -$padding-general-x: 0.9375rem !default; -$padding-card-body-y: 0.9375rem !default; -$padding-card-body-x: 1.875rem !default; - -// Buttons: -$mdb-btn-font-size-base: 12px !default; -$mdb-btn-font-size-lg: 14px !default; -$mdb-btn-font-size-sm: 11px !default; -$mdb-btn-font-size-xs: 10px !default; - -$mdb-btn-fab-size: 41px !default; -$mdb-btn-fab-size-lg: 56px !default; -$mdb-btn-fab-size-mini: 29px !default; -$mdb-btn-fab-font-size: 24px !default; -$mdb-btn-just-icon-font-size: 20px !default; - -$mdb-btn-icon-size: 32px !default; -$mdb-btn-icon-size-mini: 17px !default; - -$bmd-line-height: 1.42857143 !default; -$btn-lg-line-height: 1.3333333 !default; - -//Font-weight -$font-weight-light: 300 !default; -$font-weight-default: 400 !default; -$font-weight-bold: 500 !default; -$font-weight-extra-bold: 700 !default; -$font-weight-ultra-bold: 900 !default; - -//Border-radius -$border-radius-base: 3px !default; -$border-radius-small: 2px !default; -$border-radius-large: 6px !default; -$border-radius-huge: 10px !default; -$border-radius-label: 12px !default; -$border-radius-extreme: 30px !default; - -// Animations -$bmd-animation-curve-fast-out-slow-in: cubic-bezier(0.4, 0, 0.2, 1) !default; -$bmd-animation-curve-linear-out-slow-in: cubic-bezier(0, 0, 0.2, 1) !default; -$bmd-animation-curve-fast-out-linear-in: cubic-bezier(0.4, 0, 1, 1) !default; -$bmd-animation-curve-default: $bmd-animation-curve-fast-out-slow-in !default; -$bmd-animation-dropdown-caret: 150ms !default; -$general-transition-time: 300ms !default; - -$slow-transition-time: 370ms !default; -$fast-transition-time: 150ms !default; - -$transition-linear: linear !default; -$transition-bezier: cubic-bezier(0.34, 1.61, 0.7, 1) !default; -$transition-bezier-rotating-card: cubic-bezier(0.34, 1.45, 0.7, 1) !default; -$transition-ease: ease 0s; - -//variables for social -$social-facebook: #3b5998; -$social-twitter: #55acee; -$social-pinterest: #cc2127; -$social-google: #dd4b39; -$social-linkedin: #0976b4; -$social-dribbble: #ea4c89; -$social-github: #333333; -$social-youtube: #e52d27; -$social-instagram: #125688; -$social-reddit: #ff4500; -$social-tumblr: #35465c; -$social-behance: #1769ff; - -// Variables for checkboxes - -$mdb-label-color: unquote("rgba(#{$rgb-black}, 0.26)") !default; -$mdb-label-color-toggle-focus: unquote("rgba(#{$rgb-black}, .54)") !default; - -$mdb-checkbox-size: 20px !default; -$mdb-checkbox-animation-ripple: 500ms !default; -$mdb-checkbox-animation-check: 0.3s !default; -$mdb-checkbox-checked-color: $brand-primary !default; - -$mdb-checkbox-label-color: $mdb-label-color !default; -$mdb-checkbox-border-color: $mdb-label-color-toggle-focus !default; - -// Radio: -$mdb-radio-label-color: $mdb-label-color !default; -$mdb-radio-color-off: $mdb-label-color-toggle-focus !default; -$mdb-radio-color-on: $brand-primary !default; diff --git a/styles/scss/core/variables/_brand.scss b/styles/scss/core/variables/_brand.scss deleted file mode 100644 index a311ac8..0000000 --- a/styles/scss/core/variables/_brand.scss +++ /dev/null @@ -1,7 +0,0 @@ -// Bootstrap brand color customization -$brand-primary: $purple !default; -$brand-success: $green !default; -$brand-danger: $red !default; -$brand-warning: $orange !default; -$brand-info: $cyan !default; -$brand-rose: $pink !default; diff --git a/styles/scss/core/variables/_colors-map.scss b/styles/scss/core/variables/_colors-map.scss deleted file mode 100644 index b20e34a..0000000 --- a/styles/scss/core/variables/_colors-map.scss +++ /dev/null @@ -1,311 +0,0 @@ -// these might be useful in a switch to sass...at some point. - -//$bmd-colors: ( -// "red": $red, -// "pink": $pink, -// "purple": $purple, -// "deep-purple": $deep-purple, -// "indigo": $indigo, -// "blue": $blue, -// "light-blue": $light-blue, -// "cyan": $cyan, -// "teal": $teal, -// "green": $green, -// "light-green": $light-green, -// "lime": $lime, -// "yellow": $yellow, -// "amber": $amber, -// "orange": $orange, -// "deep-orange": $deep-orange, -// "brown": $brown, -// "grey": $grey, -// "blue-grey": $blue-grey -//); -// -//$bmd-colors-map: ( -// "red-50": (name: "red", color: $red-50, number: "-50"), -// "red-100": (name: "red", color: $red-100, number: "-100"), -// "red-200": (name: "red", color: $red-200, number: "-200"), -// "red-300": (name: "red", color: $red-300, number: "-300"), -// "red-400": (name: "red", color: $red-400, number: "-400"), -// "red-500": (name: "red", color: $red-500, number: "-500"), -// "red-600": (name: "red", color: $red-600, number: "-600"), -// "red-700": (name: "red", color: $red-700, number: "-700"), -// "red-800": (name: "red", color: $red-800, number: "-800"), -// "red-900": (name: "red", color: $red-900, number: "-900"), -// "red-a100": (name: "red", color: $red-a100, number: "-a100"), -// "red-a200": (name: "red", color: $red-a200, number: "-a200"), -// "red-a400": (name: "red", color: $red-a400, number: "-a400"), -// "red-a700": (name: "red", color: $red-a700, number: "-a700"), -// "red": (name: "red", color: $red, number: ""), -// "pink-50": (name: "pink", color: $pink-50, number: "-50"), -// "pink-100": (name: "pink", color: $pink-100, number: "-100"), -// "pink-200": (name: "pink", color: $pink-200, number: "-200"), -// "pink-300": (name: "pink", color: $pink-300, number: "-300"), -// "pink-400": (name: "pink", color: $pink-400, number: "-400"), -// "pink-500": (name: "pink", color: $pink-500, number: "-500"), -// "pink-600": (name: "pink", color: $pink-600, number: "-600"), -// "pink-700": (name: "pink", color: $pink-700, number: "-700"), -// "pink-800": (name: "pink", color: $pink-800, number: "-800"), -// "pink-900": (name: "pink", color: $pink-900, number: "-900"), -// "pink-a100": (name: "pink", color: $pink-a100, number: "-a100"), -// "pink-a200": (name: "pink", color: $pink-a200, number: "-a200"), -// "pink-a400": (name: "pink", color: $pink-a400, number: "-a400"), -// "pink-a700": (name: "pink", color: $pink-a700, number: "-a700"), -// "pink": (name: "pink", color: $pink, number: ""), -// "purple-50": (name: "purple", color: $purple-50, number: "-50"), -// "purple-100": (name: "purple", color: $purple-100, number: "-100"), -// "purple-200": (name: "purple", color: $purple-200, number: "-200"), -// "purple-300": (name: "purple", color: $purple-300, number: "-300"), -// "purple-400": (name: "purple", color: $purple-400, number: "-400"), -// "purple-500": (name: "purple", color: $purple-500, number: "-500"), -// "purple-600": (name: "purple", color: $purple-600, number: "-600"), -// "purple-700": (name: "purple", color: $purple-700, number: "-700"), -// "purple-800": (name: "purple", color: $purple-800, number: "-800"), -// "purple-900": (name: "purple", color: $purple-900, number: "-900"), -// "purple-a100": (name: "purple", color: $purple-a100, number: "-a100"), -// "purple-a200": (name: "purple", color: $purple-a200, number: "-a200"), -// "purple-a400": (name: "purple", color: $purple-a400, number: "-a400"), -// "purple-a700": (name: "purple", color: $purple-a700, number: "-a700"), -// "purple": (name: "purple", color: $purple, number: ""), -// "deep-purple-50": (name: "deep-purple", color: $deep-purple-50, number: "-50"), -// "deep-purple-100": (name: "deep-purple", color: $deep-purple-100, number: "-100"), -// "deep-purple-200": (name: "deep-purple", color: $deep-purple-200, number: "-200"), -// "deep-purple-300": (name: "deep-purple", color: $deep-purple-300, number: "-300"), -// "deep-purple-400": (name: "deep-purple", color: $deep-purple-400, number: "-400"), -// "deep-purple-500": (name: "deep-purple", color: $deep-purple-500, number: "-500"), -// "deep-purple-600": (name: "deep-purple", color: $deep-purple-600, number: "-600"), -// "deep-purple-700": (name: "deep-purple", color: $deep-purple-700, number: "-700"), -// "deep-purple-800": (name: "deep-purple", color: $deep-purple-800, number: "-800"), -// "deep-purple-900": (name: "deep-purple", color: $deep-purple-900, number: "-900"), -// "deep-purple-a100": (name: "deep-purple", color: $deep-purple-a100, number: "-a100"), -// "deep-purple-a200": (name: "deep-purple", color: $deep-purple-a200, number: "-a200"), -// "deep-purple-a400": (name: "deep-purple", color: $deep-purple-a400, number: "-a400"), -// "deep-purple-a700": (name: "deep-purple", color: $deep-purple-a700, number: "-a700"), -// "deep-purple": (name: "deep-purple", color: $deep-purple, number: ""), -// "indigo-50": (name: "indigo", color: $indigo-50, number: "-50"), -// "indigo-100": (name: "indigo", color: $indigo-100, number: "-100"), -// "indigo-200": (name: "indigo", color: $indigo-200, number: "-200"), -// "indigo-300": (name: "indigo", color: $indigo-300, number: "-300"), -// "indigo-400": (name: "indigo", color: $indigo-400, number: "-400"), -// "indigo-500": (name: "indigo", color: $indigo-500, number: "-500"), -// "indigo-600": (name: "indigo", color: $indigo-600, number: "-600"), -// "indigo-700": (name: "indigo", color: $indigo-700, number: "-700"), -// "indigo-800": (name: "indigo", color: $indigo-800, number: "-800"), -// "indigo-900": (name: "indigo", color: $indigo-900, number: "-900"), -// "indigo-a100": (name: "indigo", color: $indigo-a100, number: "-a100"), -// "indigo-a200": (name: "indigo", color: $indigo-a200, number: "-a200"), -// "indigo-a400": (name: "indigo", color: $indigo-a400, number: "-a400"), -// "indigo-a700": (name: "indigo", color: $indigo-a700, number: "-a700"), -// "indigo": (name: "indigo", color: $indigo, number: ""), -// "blue-50": (name: "blue", color: $blue-50, number: "-50"), -// "blue-100": (name: "blue", color: $blue-100, number: "-100"), -// "blue-200": (name: "blue", color: $blue-200, number: "-200"), -// "blue-300": (name: "blue", color: $blue-300, number: "-300"), -// "blue-400": (name: "blue", color: $blue-400, number: "-400"), -// "blue-500": (name: "blue", color: $blue-500, number: "-500"), -// "blue-600": (name: "blue", color: $blue-600, number: "-600"), -// "blue-700": (name: "blue", color: $blue-700, number: "-700"), -// "blue-800": (name: "blue", color: $blue-800, number: "-800"), -// "blue-900": (name: "blue", color: $blue-900, number: "-900"), -// "blue-a100": (name: "blue", color: $blue-a100, number: "-a100"), -// "blue-a200": (name: "blue", color: $blue-a200, number: "-a200"), -// "blue-a400": (name: "blue", color: $blue-a400, number: "-a400"), -// "blue-a700": (name: "blue", color: $blue-a700, number: "-a700"), -// "blue": (name: "blue", color: $blue, number: ""), -// "light-blue-50": (name: "light-blue", color: $light-blue-50, number: "-50"), -// "light-blue-100": (name: "light-blue", color: $light-blue-100, number: "-100"), -// "light-blue-200": (name: "light-blue", color: $light-blue-200, number: "-200"), -// "light-blue-300": (name: "light-blue", color: $light-blue-300, number: "-300"), -// "light-blue-400": (name: "light-blue", color: $light-blue-400, number: "-400"), -// "light-blue-500": (name: "light-blue", color: $light-blue-500, number: "-500"), -// "light-blue-600": (name: "light-blue", color: $light-blue-600, number: "-600"), -// "light-blue-700": (name: "light-blue", color: $light-blue-700, number: "-700"), -// "light-blue-800": (name: "light-blue", color: $light-blue-800, number: "-800"), -// "light-blue-900": (name: "light-blue", color: $light-blue-900, number: "-900"), -// "light-blue-a100": (name: "light-blue", color: $light-blue-a100, number: "-a100"), -// "light-blue-a200": (name: "light-blue", color: $light-blue-a200, number: "-a200"), -// "light-blue-a400": (name: "light-blue", color: $light-blue-a400, number: "-a400"), -// "light-blue-a700": (name: "light-blue", color: $light-blue-a700, number: "-a700"), -// "light-blue": (name: "light-blue", color: $light-blue, number: ""), -// "cyan-50": (name: "cyan", color: $cyan-50, number: "-50"), -// "cyan-100": (name: "cyan", color: $cyan-100, number: "-100"), -// "cyan-200": (name: "cyan", color: $cyan-200, number: "-200"), -// "cyan-300": (name: "cyan", color: $cyan-300, number: "-300"), -// "cyan-400": (name: "cyan", color: $cyan-400, number: "-400"), -// "cyan-500": (name: "cyan", color: $cyan-500, number: "-500"), -// "cyan-600": (name: "cyan", color: $cyan-600, number: "-600"), -// "cyan-700": (name: "cyan", color: $cyan-700, number: "-700"), -// "cyan-800": (name: "cyan", color: $cyan-800, number: "-800"), -// "cyan-900": (name: "cyan", color: $cyan-900, number: "-900"), -// "cyan-a100": (name: "cyan", color: $cyan-a100, number: "-a100"), -// "cyan-a200": (name: "cyan", color: $cyan-a200, number: "-a200"), -// "cyan-a400": (name: "cyan", color: $cyan-a400, number: "-a400"), -// "cyan-a700": (name: "cyan", color: $cyan-a700, number: "-a700"), -// "cyan": (name: "cyan", color: $cyan, number: ""), -// "teal-50": (name: "teal", color: $teal-50, number: "-50"), -// "teal-100": (name: "teal", color: $teal-100, number: "-100"), -// "teal-200": (name: "teal", color: $teal-200, number: "-200"), -// "teal-300": (name: "teal", color: $teal-300, number: "-300"), -// "teal-400": (name: "teal", color: $teal-400, number: "-400"), -// "teal-500": (name: "teal", color: $teal-500, number: "-500"), -// "teal-600": (name: "teal", color: $teal-600, number: "-600"), -// "teal-700": (name: "teal", color: $teal-700, number: "-700"), -// "teal-800": (name: "teal", color: $teal-800, number: "-800"), -// "teal-900": (name: "teal", color: $teal-900, number: "-900"), -// "teal-a100": (name: "teal", color: $teal-a100, number: "-a100"), -// "teal-a200": (name: "teal", color: $teal-a200, number: "-a200"), -// "teal-a400": (name: "teal", color: $teal-a400, number: "-a400"), -// "teal-a700": (name: "teal", color: $teal-a700, number: "-a700"), -// "teal": (name: "teal", color: $teal, number: ""), -// "green-50": (name: "green", color: $green-50, number: "-50"), -// "green-100": (name: "green", color: $green-100, number: "-100"), -// "green-200": (name: "green", color: $green-200, number: "-200"), -// "green-300": (name: "green", color: $green-300, number: "-300"), -// "green-400": (name: "green", color: $green-400, number: "-400"), -// "green-500": (name: "green", color: $green-500, number: "-500"), -// "green-600": (name: "green", color: $green-600, number: "-600"), -// "green-700": (name: "green", color: $green-700, number: "-700"), -// "green-800": (name: "green", color: $green-800, number: "-800"), -// "green-900": (name: "green", color: $green-900, number: "-900"), -// "green-a100": (name: "green", color: $green-a100, number: "-a100"), -// "green-a200": (name: "green", color: $green-a200, number: "-a200"), -// "green-a400": (name: "green", color: $green-a400, number: "-a400"), -// "green-a700": (name: "green", color: $green-a700, number: "-a700"), -// "green": (name: "green", color: $green, number: ""), -// "light-green-50": (name: "light-green", color: $light-green-50, number: "-50"), -// "light-green-100": (name: "light-green", color: $light-green-100, number: "-100"), -// "light-green-200": (name: "light-green", color: $light-green-200, number: "-200"), -// "light-green-300": (name: "light-green", color: $light-green-300, number: "-300"), -// "light-green-400": (name: "light-green", color: $light-green-400, number: "-400"), -// "light-green-500": (name: "light-green", color: $light-green-500, number: "-500"), -// "light-green-600": (name: "light-green", color: $light-green-600, number: "-600"), -// "light-green-700": (name: "light-green", color: $light-green-700, number: "-700"), -// "light-green-800": (name: "light-green", color: $light-green-800, number: "-800"), -// "light-green-900": (name: "light-green", color: $light-green-900, number: "-900"), -// "light-green-a100": (name: "light-green", color: $light-green-a100, number: "-a100"), -// "light-green-a200": (name: "light-green", color: $light-green-a200, number: "-a200"), -// "light-green-a400": (name: "light-green", color: $light-green-a400, number: "-a400"), -// "light-green-a700": (name: "light-green", color: $light-green-a700, number: "-a700"), -// "light-green": (name: "light-green", color: $light-green, number: ""), -// "lime-50": (name: "lime", color: $lime-50, number: "-50"), -// "lime-100": (name: "lime", color: $lime-100, number: "-100"), -// "lime-200": (name: "lime", color: $lime-200, number: "-200"), -// "lime-300": (name: "lime", color: $lime-300, number: "-300"), -// "lime-400": (name: "lime", color: $lime-400, number: "-400"), -// "lime-500": (name: "lime", color: $lime-500, number: "-500"), -// "lime-600": (name: "lime", color: $lime-600, number: "-600"), -// "lime-700": (name: "lime", color: $lime-700, number: "-700"), -// "lime-800": (name: "lime", color: $lime-800, number: "-800"), -// "lime-900": (name: "lime", color: $lime-900, number: "-900"), -// "lime-a100": (name: "lime", color: $lime-a100, number: "-a100"), -// "lime-a200": (name: "lime", color: $lime-a200, number: "-a200"), -// "lime-a400": (name: "lime", color: $lime-a400, number: "-a400"), -// "lime-a700": (name: "lime", color: $lime-a700, number: "-a700"), -// "lime": (name: "lime", color: $lime, number: ""), -// "yellow-50": (name: "yellow", color: $yellow-50, number: "-50"), -// "yellow-100": (name: "yellow", color: $yellow-100, number: "-100"), -// "yellow-200": (name: "yellow", color: $yellow-200, number: "-200"), -// "yellow-300": (name: "yellow", color: $yellow-300, number: "-300"), -// "yellow-400": (name: "yellow", color: $yellow-400, number: "-400"), -// "yellow-500": (name: "yellow", color: $yellow-500, number: "-500"), -// "yellow-600": (name: "yellow", color: $yellow-600, number: "-600"), -// "yellow-700": (name: "yellow", color: $yellow-700, number: "-700"), -// "yellow-800": (name: "yellow", color: $yellow-800, number: "-800"), -// "yellow-900": (name: "yellow", color: $yellow-900, number: "-900"), -// "yellow-a100": (name: "yellow", color: $yellow-a100, number: "-a100"), -// "yellow-a200": (name: "yellow", color: $yellow-a200, number: "-a200"), -// "yellow-a400": (name: "yellow", color: $yellow-a400, number: "-a400"), -// "yellow-a700": (name: "yellow", color: $yellow-a700, number: "-a700"), -// "yellow": (name: "yellow", color: $yellow, number: ""), -// "amber-50": (name: "amber", color: $amber-50, number: "-50"), -// "amber-100": (name: "amber", color: $amber-100, number: "-100"), -// "amber-200": (name: "amber", color: $amber-200, number: "-200"), -// "amber-300": (name: "amber", color: $amber-300, number: "-300"), -// "amber-400": (name: "amber", color: $amber-400, number: "-400"), -// "amber-500": (name: "amber", color: $amber-500, number: "-500"), -// "amber-600": (name: "amber", color: $amber-600, number: "-600"), -// "amber-700": (name: "amber", color: $amber-700, number: "-700"), -// "amber-800": (name: "amber", color: $amber-800, number: "-800"), -// "amber-900": (name: "amber", color: $amber-900, number: "-900"), -// "amber-a100": (name: "amber", color: $amber-a100, number: "-a100"), -// "amber-a200": (name: "amber", color: $amber-a200, number: "-a200"), -// "amber-a400": (name: "amber", color: $amber-a400, number: "-a400"), -// "amber-a700": (name: "amber", color: $amber-a700, number: "-a700"), -// "amber": (name: "amber", color: $amber, number: ""), -// "orange-50": (name: "orange", color: $orange-50, number: "-50"), -// "orange-100": (name: "orange", color: $orange-100, number: "-100"), -// "orange-200": (name: "orange", color: $orange-200, number: "-200"), -// "orange-300": (name: "orange", color: $orange-300, number: "-300"), -// "orange-400": (name: "orange", color: $orange-400, number: "-400"), -// "orange-500": (name: "orange", color: $orange-500, number: "-500"), -// "orange-600": (name: "orange", color: $orange-600, number: "-600"), -// "orange-700": (name: "orange", color: $orange-700, number: "-700"), -// "orange-800": (name: "orange", color: $orange-800, number: "-800"), -// "orange-900": (name: "orange", color: $orange-900, number: "-900"), -// "orange-a100": (name: "orange", color: $orange-a100, number: "-a100"), -// "orange-a200": (name: "orange", color: $orange-a200, number: "-a200"), -// "orange-a400": (name: "orange", color: $orange-a400, number: "-a400"), -// "orange-a700": (name: "orange", color: $orange-a700, number: "-a700"), -// "orange": (name: "orange", color: $orange, number: ""), -// "deep-orange-50": (name: "deep-orange", color: $deep-orange-50, number: "-50"), -// "deep-orange-100": (name: "deep-orange", color: $deep-orange-100, number: "-100"), -// "deep-orange-200": (name: "deep-orange", color: $deep-orange-200, number: "-200"), -// "deep-orange-300": (name: "deep-orange", color: $deep-orange-300, number: "-300"), -// "deep-orange-400": (name: "deep-orange", color: $deep-orange-400, number: "-400"), -// "deep-orange-500": (name: "deep-orange", color: $deep-orange-500, number: "-500"), -// "deep-orange-600": (name: "deep-orange", color: $deep-orange-600, number: "-600"), -// "deep-orange-700": (name: "deep-orange", color: $deep-orange-700, number: "-700"), -// "deep-orange-800": (name: "deep-orange", color: $deep-orange-800, number: "-800"), -// "deep-orange-900": (name: "deep-orange", color: $deep-orange-900, number: "-900"), -// "deep-orange-a100": (name: "deep-orange", color: $deep-orange-a100, number: "-a100"), -// "deep-orange-a200": (name: "deep-orange", color: $deep-orange-a200, number: "-a200"), -// "deep-orange-a400": (name: "deep-orange", color: $deep-orange-a400, number: "-a400"), -// "deep-orange-a700": (name: "deep-orange", color: $deep-orange-a700, number: "-a700"), -// "deep-orange": (name: "deep-orange", color: $deep-orange, number: ""), -// "brown-50": (name: "brown", color: $brown-50, number: "-50"), -// "brown-100": (name: "brown", color: $brown-100, number: "-100"), -// "brown-200": (name: "brown", color: $brown-200, number: "-200"), -// "brown-300": (name: "brown", color: $brown-300, number: "-300"), -// "brown-400": (name: "brown", color: $brown-400, number: "-400"), -// "brown-500": (name: "brown", color: $brown-500, number: "-500"), -// "brown-600": (name: "brown", color: $brown-600, number: "-600"), -// "brown-700": (name: "brown", color: $brown-700, number: "-700"), -// "brown-800": (name: "brown", color: $brown-800, number: "-800"), -// "brown-900": (name: "brown", color: $brown-900, number: "-900"), -// "brown-a100": (name: "brown", color: $brown-a100, number: "-a100"), -// "brown-a200": (name: "brown", color: $brown-a200, number: "-a200"), -// "brown-a400": (name: "brown", color: $brown-a400, number: "-a400"), -// "brown-a700": (name: "brown", color: $brown-a700, number: "-a700"), -// "brown": (name: "brown", color: $brown, number: ""), -// "grey-50": (name: "grey", color: $grey-50, number: "-50"), -// "grey-100": (name: "grey", color: $grey-100, number: "-100"), -// "grey-200": (name: "grey", color: $grey-200, number: "-200"), -// "grey-300": (name: "grey", color: $grey-300, number: "-300"), -// "grey-400": (name: "grey", color: $grey-400, number: "-400"), -// "grey-500": (name: "grey", color: $grey-500, number: "-500"), -// "grey-600": (name: "grey", color: $grey-600, number: "-600"), -// "grey-700": (name: "grey", color: $grey-700, number: "-700"), -// "grey-800": (name: "grey", color: $grey-800, number: "-800"), -// "grey-900": (name: "grey", color: $grey-900, number: "-900"), -// "grey-a100": (name: "grey", color: $grey-a100, number: "-a100"), -// "grey-a200": (name: "grey", color: $grey-a200, number: "-a200"), -// "grey-a400": (name: "grey", color: $grey-a400, number: "-a400"), -// "grey-a700": (name: "grey", color: $grey-a700, number: "-a700"), -// "grey": (name: "grey", color: $grey, number: ""), -// "blue-grey-50": (name: "blue-grey", color: $blue-grey-50, number: "-50"), -// "blue-grey-100": (name: "blue-grey", color: $blue-grey-100, number: "-100"), -// "blue-grey-200": (name: "blue-grey", color: $blue-grey-200, number: "-200"), -// "blue-grey-300": (name: "blue-grey", color: $blue-grey-300, number: "-300"), -// "blue-grey-400": (name: "blue-grey", color: $blue-grey-400, number: "-400"), -// "blue-grey-500": (name: "blue-grey", color: $blue-grey-500, number: "-500"), -// "blue-grey-600": (name: "blue-grey", color: $blue-grey-600, number: "-600"), -// "blue-grey-700": (name: "blue-grey", color: $blue-grey-700, number: "-700"), -// "blue-grey-800": (name: "blue-grey", color: $blue-grey-800, number: "-800"), -// "blue-grey-900": (name: "blue-grey", color: $blue-grey-900, number: "-900"), -// "blue-grey-a100": (name: "blue-grey", color: $blue-grey-a100, number: "-a100"), -// "blue-grey-a200": (name: "blue-grey", color: $blue-grey-a200, number: "-a200"), -// "blue-grey-a400": (name: "blue-grey", color: $blue-grey-a400, number: "-a400"), -// "blue-grey-a700": (name: "blue-grey", color: $blue-grey-a700, number: "-a700"), -// "blue-grey": (name: "blue-grey", color: $blue-grey, number: "") -//); diff --git a/styles/scss/core/variables/_colors.scss b/styles/scss/core/variables/_colors.scss deleted file mode 100644 index 864306d..0000000 --- a/styles/scss/core/variables/_colors.scss +++ /dev/null @@ -1,315 +0,0 @@ -$red-50: #ffebee !default; -$red-100: #ffcdd2 !default; -$red-200: #ef9a9a !default; -$red-300: #e57373 !default; -$red-400: #ef5350 !default; -$red-500: #f44336 !default; -$red-600: #e53935 !default; -$red-700: #d32f2f !default; -$red-800: #c62828 !default; -$red-900: #b71c1c !default; -$red-a100: #ff8a80 !default; -$red-a200: #ff5252 !default; -$red-a400: #ff1744 !default; -$red-a700: #d50000 !default; -$red: $red-500 !default; - -$pink-50: #fce4ec !default; -$pink-100: #f8bbd0 !default; -$pink-200: #f48fb1 !default; -$pink-300: #f06292 !default; -$pink-400: #ec407a !default; -$pink-500: #e91e63 !default; -$pink-600: #d81b60 !default; -$pink-700: #c2185b !default; -$pink-800: #ad1457 !default; -$pink-900: #880e4f !default; -$pink-a100: #ff80ab !default; -$pink-a200: #ff4081 !default; -$pink-a400: #f50057 !default; -$pink-a700: #c51162 !default; -$pink: $pink-500 !default; - -$purple-50: #f3e5f5 !default; -$purple-100: #e1bee7 !default; -$purple-200: #ce93d8 !default; -$purple-300: #ba68c8 !default; -$purple-400: #ab47bc !default; -$purple-500: #9c27b0 !default; -$purple-600: #8e24aa !default; -$purple-700: #7b1fa2 !default; -$purple-800: #6a1b9a !default; -$purple-900: #4a148c !default; -$purple-a100: #ea80fc !default; -$purple-a200: #e040fb !default; -$purple-a400: #d500f9 !default; -$purple-a700: #a0f !default; -$purple: $purple-500 !default; - -$deep-purple-50: #ede7f6 !default; -$deep-purple-100: #d1c4e9 !default; -$deep-purple-200: #b39ddb !default; -$deep-purple-300: #9575cd !default; -$deep-purple-400: #7e57c2 !default; -$deep-purple-500: #673ab7 !default; -$deep-purple-600: #5e35b1 !default; -$deep-purple-700: #512da8 !default; -$deep-purple-800: #4527a0 !default; -$deep-purple-900: #311b92 !default; -$deep-purple-a100: #b388ff !default; -$deep-purple-a200: #7c4dff !default; -$deep-purple-a400: #651fff !default; -$deep-purple-a700: #6200ea !default; -$deep-purple: $deep-purple-500 !default; - -$indigo-50: #e8eaf6 !default; -$indigo-100: #c5cae9 !default; -$indigo-200: #9fa8da !default; -$indigo-300: #7986cb !default; -$indigo-400: #5c6bc0 !default; -$indigo-500: #3f51b5 !default; -$indigo-600: #3949ab !default; -$indigo-700: #303f9f !default; -$indigo-800: #283593 !default; -$indigo-900: #1a237e !default; -$indigo-a100: #8c9eff !default; -$indigo-a200: #536dfe !default; -$indigo-a400: #3d5afe !default; -$indigo-a700: #304ffe !default; -$indigo: $indigo-500 !default; - -$blue-50: #e3f2fd !default; -$blue-100: #bbdefb !default; -$blue-200: #90caf9 !default; -$blue-300: #64b5f6 !default; -$blue-400: #42a5f5 !default; -$blue-500: #2196f3 !default; -$blue-600: #1e88e5 !default; -$blue-700: #1976d2 !default; -$blue-800: #1565c0 !default; -$blue-900: #0d47a1 !default; -$blue-a100: #82b1ff !default; -$blue-a200: #448aff !default; -$blue-a400: #2979ff !default; -$blue-a700: #2962ff !default; -$blue: $blue-500 !default; - -$light-blue-50: #e1f5fe !default; -$light-blue-100: #b3e5fc !default; -$light-blue-200: #81d4fa !default; -$light-blue-300: #4fc3f7 !default; -$light-blue-400: #29b6f6 !default; -$light-blue-500: #03a9f4 !default; -$light-blue-600: #039be5 !default; -$light-blue-700: #0288d1 !default; -$light-blue-800: #0277bd !default; -$light-blue-900: #01579b !default; -$light-blue-a100: #80d8ff !default; -$light-blue-a200: #40c4ff !default; -$light-blue-a400: #00b0ff !default; -$light-blue-a700: #0091ea !default; -$light-blue: $light-blue-500 !default; - -$cyan-50: #e0f7fa !default; -$cyan-100: #b2ebf2 !default; -$cyan-200: #80deea !default; -$cyan-300: #4dd0e1 !default; -$cyan-400: #26c6da !default; -$cyan-500: #00bcd4 !default; -$cyan-600: #00acc1 !default; -$cyan-700: #0097a7 !default; -$cyan-800: #00838f !default; -$cyan-900: #006064 !default; -$cyan-a100: #84ffff !default; -$cyan-a200: #18ffff !default; -$cyan-a400: #00e5ff !default; -$cyan-a700: #00b8d4 !default; -$cyan: $cyan-500 !default; - -$teal-50: #e0f2f1 !default; -$teal-100: #b2dfdb !default; -$teal-200: #80cbc4 !default; -$teal-300: #4db6ac !default; -$teal-400: #26a69a !default; -$teal-500: #009688 !default; -$teal-600: #00897b !default; -$teal-700: #00796b !default; -$teal-800: #00695c !default; -$teal-900: #004d40 !default; -$teal-a100: #a7ffeb !default; -$teal-a200: #64ffda !default; -$teal-a400: #1de9b6 !default; -$teal-a700: #00bfa5 !default; -$teal: $teal-500 !default; - -$green-50: #e8f5e9 !default; -$green-100: #c8e6c9 !default; -$green-200: #a5d6a7 !default; -$green-300: #81c784 !default; -$green-400: #66bb6a !default; -$green-500: #4caf50 !default; -$green-600: #43a047 !default; -$green-700: #388e3c !default; -$green-800: #2e7d32 !default; -$green-900: #1b5e20 !default; -$green-a100: #b9f6ca !default; -$green-a200: #69f0ae !default; -$green-a400: #00e676 !default; -$green-a700: #00c853 !default; -$green: $green-500 !default; - -$light-green-50: #f1f8e9 !default; -$light-green-100: #dcedc8 !default; -$light-green-200: #c5e1a5 !default; -$light-green-300: #aed581 !default; -$light-green-400: #9ccc65 !default; -$light-green-500: #8bc34a !default; -$light-green-600: #7cb342 !default; -$light-green-700: #689f38 !default; -$light-green-800: #558b2f !default; -$light-green-900: #33691e !default; -$light-green-a100: #ccff90 !default; -$light-green-a200: #b2ff59 !default; -$light-green-a400: #76ff03 !default; -$light-green-a700: #64dd17 !default; -$light-green: $light-green-500 !default; - -$lime-50: #f9fbe7 !default; -$lime-100: #f0f4c3 !default; -$lime-200: #e6ee9c !default; -$lime-300: #dce775 !default; -$lime-400: #d4e157 !default; -$lime-500: #cddc39 !default; -$lime-600: #c0ca33 !default; -$lime-700: #afb42b !default; -$lime-800: #9e9d24 !default; -$lime-900: #827717 !default; -$lime-a100: #f4ff81 !default; -$lime-a200: #eeff41 !default; -$lime-a400: #c6ff00 !default; -$lime-a700: #aeea00 !default; -$lime: $lime-500 !default; - -$yellow-50: #fffde7 !default; -$yellow-100: #fff9c4 !default; -$yellow-200: #fff59d !default; -$yellow-300: #fff176 !default; -$yellow-400: #ffee58 !default; -$yellow-500: #ffeb3b !default; -$yellow-600: #fdd835 !default; -$yellow-700: #fbc02d !default; -$yellow-800: #f9a825 !default; -$yellow-900: #f57f17 !default; -$yellow-a100: #ffff8d !default; -$yellow-a200: #ff0 !default; -$yellow-a400: #ffea00 !default; -$yellow-a700: #ffd600 !default; -$yellow: $yellow-500 !default; - -$amber-50: #fff8e1 !default; -$amber-100: #ffecb3 !default; -$amber-200: #ffe082 !default; -$amber-300: #ffd54f !default; -$amber-400: #ffca28 !default; -$amber-500: #ffc107 !default; -$amber-600: #ffb300 !default; -$amber-700: #ffa000 !default; -$amber-800: #ff8f00 !default; -$amber-900: #ff6f00 !default; -$amber-a100: #ffe57f !default; -$amber-a200: #ffd740 !default; -$amber-a400: #ffc400 !default; -$amber-a700: #ffab00 !default; -$amber: $amber-500 !default; - -$orange-50: #fff3e0 !default; -$orange-100: #ffe0b2 !default; -$orange-200: #ffcc80 !default; -$orange-300: #ffb74d !default; -$orange-400: #ffa726 !default; -$orange-500: #ff9800 !default; -$orange-600: #fb8c00 !default; -$orange-700: #f57c00 !default; -$orange-800: #ef6c00 !default; -$orange-900: #e65100 !default; -$orange-a100: #ffd180 !default; -$orange-a200: #ffab40 !default; -$orange-a400: #ff9100 !default; -$orange-a700: #ff6d00 !default; -$orange: $orange-500 !default; - -$deep-orange-50: #fbe9e7 !default; -$deep-orange-100: #ffccbc !default; -$deep-orange-200: #ffab91 !default; -$deep-orange-300: #ff8a65 !default; -$deep-orange-400: #ff7043 !default; -$deep-orange-500: #ff5722 !default; -$deep-orange-600: #f4511e !default; -$deep-orange-700: #e64a19 !default; -$deep-orange-800: #d84315 !default; -$deep-orange-900: #bf360c !default; -$deep-orange-a100: #ff9e80 !default; -$deep-orange-a200: #ff6e40 !default; -$deep-orange-a400: #ff3d00 !default; -$deep-orange-a700: #dd2c00 !default; -$deep-orange: $deep-orange-500 !default; - -$brown-50: #efebe9 !default; -$brown-100: #d7ccc8 !default; -$brown-200: #bcaaa4 !default; -$brown-300: #a1887f !default; -$brown-400: #8d6e63 !default; -$brown-500: #795548 !default; -$brown-600: #6d4c41 !default; -$brown-700: #5d4037 !default; -$brown-800: #4e342e !default; -$brown-900: #3e2723 !default; -$brown-a100: #d7ccc8 !default; -$brown-a200: #bcaaa4 !default; -$brown-a400: #8d6e63 !default; -$brown-a700: #5d4037 !default; -$brown: $brown-500 !default; - -$grey-50: #fafafa !default; -$grey-100: #f5f5f5 !default; -$grey-200: #eee !default; -$grey-300: #e0e0e0 !default; -$grey-400: #bdbdbd !default; -$grey-500: #9e9e9e; -$grey-600: #757575 !default; -$grey-700: #616161 !default; -$grey-800: #424242 !default; -$grey-900: #212121 !default; -$grey-a100: #f5f5f5 !default; -$grey-a200: #eee !default; -$grey-a400: #bdbdbd !default; -$grey-a700: #616161 !default; -$grey: $grey-500 !default; - -$blue-grey-50: #eceff1 !default; -$blue-grey-100: #cfd8dc !default; -$blue-grey-200: #b0bec5 !default; -$blue-grey-300: #90a4ae !default; -$blue-grey-400: #78909c !default; -$blue-grey-500: #607d8b !default; -$blue-grey-600: #546e7a !default; -$blue-grey-700: #455a64 !default; -$blue-grey-800: #37474f !default; -$blue-grey-900: #263238 !default; -$blue-grey-a100: #cfd8dc !default; -$blue-grey-a200: #b0bec5 !default; -$blue-grey-a400: #78909c !default; -$blue-grey-a700: #455a64 !default; -$blue-grey: $blue-grey-500 !default; - -$black: #000; -$white: #fff; - -// New colors -$gray-color: #999999 !default; -$black-color: #3c4858 !default; - -$black: #000000; -$rgb-black: "0,0,0" !default; -$white: #ffffff; -$rgb-white: "255,255,255" !default; diff --git a/styles/scss/core/variables/_functions.scss b/styles/scss/core/variables/_functions.scss deleted file mode 100644 index 13b723f..0000000 --- a/styles/scss/core/variables/_functions.scss +++ /dev/null @@ -1,91 +0,0 @@ -// Bootstrap functions -// -// Utility mixins and functions for evalutating source code across our variables, maps, and mixins. - -// Ascending -// Used to evaluate Sass maps like our grid breakpoints. -@mixin _assert-ascending($map, $map-name) { - $prev-key: null; - $prev-num: null; - @each $key, $num in $map { - @if $prev-num == null { - // Do nothing - } @else if not comparable($prev-num, $num) { - @warn "Potentially invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} whose unit makes it incomparable to #{$prev-num}, the value of the previous key '#{$prev-key}' !"; - } @else if $prev-num >= $num { - @warn "Invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} which isn't greater than #{$prev-num}, the value of the previous key '#{$prev-key}' !"; - } - $prev-key: $key; - $prev-num: $num; - } -} - -// Starts at zero -// Another grid mixin that ensures the min-width of the lowest breakpoint starts at 0. -@mixin _assert-starts-at-zero($map) { - $values: map-values($map); - $first-value: nth($values, 1); - @if $first-value != 0 { - @warn "First breakpoint in `$grid-breakpoints` must start at 0, but starts at #{$first-value}."; - } -} - -// Replace `$search` with `$replace` in `$string` -// Used on our SVG icon backgrounds for custom forms. -// -// @author Hugo Giraudel -// @param {String} $string - Initial string -// @param {String} $search - Substring to replace -// @param {String} $replace ('') - New value -// @return {String} - Updated string -@function str-replace($string, $search, $replace: "") { - $index: str-index($string, $search); - - @if $index { - @return str-slice($string, 1, $index - 1) + $replace + - str-replace( - str-slice($string, $index + str-length($search)), - $search, - $replace - ); - } - - @return $string; -} - -// Color contrast -@function color-yiq($color) { - $r: red($color); - $g: green($color); - $b: blue($color); - - $yiq: (($r * 299) + ($g * 587) + ($b * 114)) / 1000; - - @if ($yiq >= $yiq-contrasted-threshold) { - @return $yiq-text-dark; - } @else { - @return $yiq-text-light; - } -} - -// Retrieve color Sass maps -@function color($key: "blue") { - @return map-get($colors, $key); -} - -@function theme-color($key: "primary") { - @return map-get($theme-colors, $key); -} - -@function gray($key: "100") { - @return map-get($grays, $key); -} - -// Request a theme color level -@function theme-color-level($color-name: "primary", $level: 0) { - $color: theme-color($color-name); - $color-base: if($level > 0, #000, #fff); - $level: abs($level); - - @return mix($color-base, $color, $level * $theme-color-interval); -} diff --git a/styles/scss/core/variables/_shadow.scss b/styles/scss/core/variables/_shadow.scss deleted file mode 100644 index ce5e436..0000000 --- a/styles/scss/core/variables/_shadow.scss +++ /dev/null @@ -1,35 +0,0 @@ -// Shadows (originally from mdl http://www.getmdl.io/) -$bmd-shadow-umbra-opacity: 0.2 !default; -$bmd-shadow-penumbra-opacity: 0.14 !default; -$bmd-shadow-ambient-opacity: 0.12 !default; - -// Declare the following for reuse with both mixins and the bootstrap variables -$bmd-shadow-focus: 0 0 8px rgba($black, 0.18), 0 8px 16px rgba($black, 0.36); - -$bmd-shadow-2dp: 0 2px 2px 0 rgba($black, $bmd-shadow-penumbra-opacity), - 0 3px 1px -2px rgba($black, $bmd-shadow-umbra-opacity), - 0 1px 5px 0 rgba($black, $bmd-shadow-ambient-opacity); - -$bmd-shadow-3dp: 0 3px 4px 0 rgba($black, $bmd-shadow-penumbra-opacity), - 0 3px 3px -2px rgba($black, $bmd-shadow-umbra-opacity), - 0 1px 8px 0 rgba($black, $bmd-shadow-ambient-opacity); - -$bmd-shadow-4dp: 0 4px 5px 0 rgba($black, $bmd-shadow-penumbra-opacity), - 0 1px 10px 0 rgba($black, $bmd-shadow-ambient-opacity), - 0 2px 4px -1px rgba($black, $bmd-shadow-umbra-opacity); - -$bmd-shadow-6dp: 0 6px 10px 0 rgba($black, $bmd-shadow-penumbra-opacity), - 0 1px 18px 0 rgba($black, $bmd-shadow-ambient-opacity), - 0 3px 5px -1px rgba($black, $bmd-shadow-umbra-opacity); - -$bmd-shadow-8dp: 0 8px 10px 1px rgba($black, $bmd-shadow-penumbra-opacity), - 0 3px 14px 2px rgba($black, $bmd-shadow-ambient-opacity), - 0 5px 5px -3px rgba($black, $bmd-shadow-umbra-opacity); - -$bmd-shadow-16dp: 0 16px 24px 2px rgba($black, $bmd-shadow-penumbra-opacity), - 0 6px 30px 5px rgba($black, $bmd-shadow-ambient-opacity), - 0 8px 10px -5px rgba($black, $bmd-shadow-umbra-opacity); - -$bmd-shadow-24dp: 0 9px 46px 8px rgba($black, $bmd-shadow-penumbra-opacity), - 0 11px 15px -7px rgba($black, $bmd-shadow-ambient-opacity), - 0 24px 38px 3px rgba($black, $bmd-shadow-umbra-opacity); diff --git a/styles/scss/core/variables/_variables.scss b/styles/scss/core/variables/_variables.scss deleted file mode 100644 index 768fd6b..0000000 --- a/styles/scss/core/variables/_variables.scss +++ /dev/null @@ -1,945 +0,0 @@ -// Variables -// -// Variables should follow the `$component-state-property-size` formula for -// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs. - -// -// Color system -// - -// stylelint-disable -$white: #fff !default; -$gray-100: #f8f9fa !default; -$gray-200: #e9ecef !default; -$gray-300: #dee2e6 !default; -$gray-400: #ced4da !default; -$gray-500: #adb5bd !default; -$gray-600: #6c757d !default; -$gray-700: #495057 !default; -$gray-800: #343a40 !default; -$gray-900: #212529 !default; -$black: #000 !default; - -$grays: () !default; -$grays: map-merge( - ( - "100": $gray-100, - "200": $gray-200, - "300": $gray-300, - "400": $gray-400, - "500": $gray-500, - "600": $gray-600, - "700": $gray-700, - "800": $gray-800, - "900": $gray-900 - ), - $grays -); - -$blue: #007bff !default; -$indigo: #6610f2 !default; -$purple: #6f42c1 !default; -$pink: #e83e8c !default; -$red: #dc3545 !default; -$orange: #fd7e14 !default; -$yellow: #ffc107 !default; -$green: #28a745 !default; -$teal: #20c997 !default; -$cyan: #17a2b8 !default; - -$colors: () !default; -$colors: map-merge( - ( - "blue": $blue, - "indigo": $indigo, - "purple": $purple, - "pink": $pink, - "red": $red, - "orange": $orange, - "yellow": $yellow, - "green": $green, - "teal": $teal, - "cyan": $cyan, - "white": $white, - "gray": $gray-600, - "gray-dark": $gray-800 - ), - $colors -); - -$primary: $blue !default; -$secondary: $gray-600 !default; -$success: $green !default; -$info: $cyan !default; -$warning: $yellow !default; -$danger: $red !default; -$light: $gray-100 !default; -$dark: $gray-800 !default; - -$theme-colors: () !default; -$theme-colors: map-merge( - ( - "primary": $primary, - "secondary": $secondary, - "success": $success, - "info": $info, - "warning": $warning, - "danger": $danger, - "light": $light, - "dark": $dark - ), - $theme-colors -); -// stylelint-enable - -// Set a specific jump point for requesting color jumps -$theme-color-interval: 8% !default; - -// The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255. -$yiq-contrasted-threshold: 150 !default; - -// Customize the light and dark text colors for use in our YIQ color contrast function. -$yiq-text-dark: $gray-900 !default; -$yiq-text-light: $white !default; - -// Options -// -// Quickly modify global styling by enabling or disabling optional features. - -$enable-caret: true !default; -$enable-rounded: true !default; -$enable-shadows: false !default; -$enable-gradients: false !default; -$enable-transitions: true !default; -$enable-hover-media-query: false !default; // Deprecated, no longer affects any compiled CSS -$enable-grid-classes: true !default; -$enable-print-styles: true !default; - -// Spacing -// -// Control the default styling of most Bootstrap elements by modifying these -// variables. Mostly focused on spacing. -// You can add more entries to the $spacers map, should you need more variation. - -// stylelint-disable -$spacer: 1rem !default; -$spacers: () !default; -$spacers: map-merge( - ( - 0: 0, - 1: ( - $spacer * 0.25 - ), - 2: ( - $spacer * 0.5 - ), - 3: $spacer, - 4: ( - $spacer * 1.5 - ), - 5: ( - $spacer * 3 - ) - ), - $spacers -); - -// This variable affects the `.h-*` and `.w-*` classes. -$sizes: () !default; -$sizes: map-merge( - ( - 25: 25%, - 50: 50%, - 75: 75%, - 100: 100% - ), - $sizes -); -// stylelint-enable - -// Body -// -// Settings for the `` element. - -$body-bg: $white !default; -$body-color: $gray-900 !default; - -// Links -// -// Style anchor elements. - -$link-color: theme-color("primary") !default; -$link-decoration: none !default; -$link-hover-color: darken($link-color, 15%) !default; -$link-hover-decoration: underline !default; - -// Paragraphs -// -// Style p element. - -$paragraph-margin-bottom: 1rem !default; - -// Grid breakpoints -// -// Define the minimum dimensions at which your layout will change, -// adapting to different screen sizes, for use in media queries. - -$grid-breakpoints: ( - xs: 0, - sm: 576px, - md: 768px, - lg: 992px, - xl: 1200px -) !default; - -@include _assert-ascending($grid-breakpoints, "$grid-breakpoints"); -@include _assert-starts-at-zero($grid-breakpoints); - -// Grid containers -// -// Define the maximum width of `.container` for different screen sizes. - -$container-max-widths: ( - sm: 540px, - md: 720px, - lg: 960px, - xl: 1140px -) !default; - -@include _assert-ascending($container-max-widths, "$container-max-widths"); - -// Grid columns -// -// Set the number of columns and specify the width of the gutters. - -$grid-columns: 12 !default; -$grid-gutter-width: 30px !default; - -// Components -// -// Define common padding and border radius sizes and more. - -$line-height-lg: 1.5 !default; -$line-height-sm: 1.5 !default; - -$border-width: 1px !default; -$border-color: $gray-300 !default; - -$border-radius: 0.25rem !default; -$border-radius-lg: 0.3rem !default; -$border-radius-sm: 0.2rem !default; - -$component-active-color: $white !default; -$component-active-bg: theme-color("primary") !default; - -$caret-width: 0.3em !default; - -$transition-base: all 0.2s ease-in-out !default; -$transition-fade: opacity 0.15s linear !default; -$transition-collapse: height 0.35s ease !default; - -// Fonts -// -// Font, line-height, and color for body text, headings, and more. - -// stylelint-disable value-keyword-case -$font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, - "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", - "Segoe UI Symbol" !default; -$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, - "Liberation Mono", "Courier New", monospace !default; -$font-family-base: $font-family-sans-serif !default; -// stylelint-enable value-keyword-case - -$font-size-base: 1rem !default; // Assumes the browser default, typically `16px` -$font-size-lg: ($font-size-base * 1.25) !default; -$font-size-sm: ($font-size-base * 0.875) !default; - -$font-weight-light: 300 !default; -$font-weight-normal: 400 !default; -$font-weight-bold: 700 !default; - -$font-weight-base: $font-weight-normal !default; -$line-height-base: 1.5 !default; - -$h1-font-size: $font-size-base * 2.5 !default; -$h2-font-size: $font-size-base * 2 !default; -$h3-font-size: $font-size-base * 1.75 !default; -$h4-font-size: $font-size-base * 1.5 !default; -$h5-font-size: $font-size-base * 1.25 !default; -$h6-font-size: $font-size-base !default; - -$headings-margin-bottom: ($spacer / 2) !default; -$headings-font-family: inherit !default; -$headings-font-weight: 500 !default; -$headings-line-height: 1.2 !default; -$headings-color: inherit !default; - -$display1-size: 6rem !default; -$display2-size: 5.5rem !default; -$display3-size: 4.5rem !default; -$display4-size: 3.5rem !default; - -$display1-weight: 300 !default; -$display2-weight: 300 !default; -$display3-weight: 300 !default; -$display4-weight: 300 !default; -$display-line-height: $headings-line-height !default; - -$lead-font-size: ($font-size-base * 1.25) !default; -$lead-font-weight: 300 !default; - -$small-font-size: 80% !default; - -$text-muted: $gray-600 !default; - -$blockquote-small-color: $gray-600 !default; -$blockquote-font-size: ($font-size-base * 1.25) !default; - -$hr-border-color: rgba($black, 0.1) !default; -$hr-border-width: $border-width !default; - -$mark-padding: 0.2em !default; - -$dt-font-weight: $font-weight-bold !default; - -$kbd-box-shadow: inset 0 -0.1rem 0 rgba($black, 0.25) !default; -$nested-kbd-font-weight: $font-weight-bold !default; - -$list-inline-padding: 0.5rem !default; - -$mark-bg: #fcf8e3 !default; - -$hr-margin-y: $spacer !default; - -// Tables -// -// Customizes the `.table` component with basic values, each used across all table variations. - -$table-cell-padding: 0.75rem !default; -$table-cell-padding-sm: 0.3rem !default; - -$table-bg: transparent !default; -$table-accent-bg: rgba($black, 0.05) !default; -$table-hover-bg: rgba($black, 0.075) !default; -$table-active-bg: $table-hover-bg !default; - -$table-border-width: $border-width !default; -$table-border-color: $gray-300 !default; - -$table-head-bg: $gray-200 !default; -$table-head-color: $gray-700 !default; - -$table-dark-bg: $gray-900 !default; -$table-dark-accent-bg: rgba($white, 0.05) !default; -$table-dark-hover-bg: rgba($white, 0.075) !default; -$table-dark-border-color: lighten($gray-900, 7.5%) !default; -$table-dark-color: $body-bg !default; - -// Buttons + Forms -// -// Shared variables that are reassigned to `$input-` and `$btn-` specific variables. - -$input-btn-padding-y: 0.375rem !default; -$input-btn-padding-x: 0.75rem !default; -$input-btn-line-height: $line-height-base !default; - -$input-btn-focus-width: 0.2rem !default; -$input-btn-focus-color: rgba($component-active-bg, 0.25) !default; -$input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default; - -$input-btn-padding-y-sm: 0.25rem !default; -$input-btn-padding-x-sm: 0.5rem !default; -$input-btn-line-height-sm: $line-height-sm !default; - -$input-btn-padding-y-lg: 0.5rem !default; -$input-btn-padding-x-lg: 1rem !default; -$input-btn-line-height-lg: $line-height-lg !default; - -$input-btn-border-width: $border-width !default; - -// Buttons -// -// For each of Bootstrap's buttons, define text, background, and border color. - -$btn-padding-y: $input-btn-padding-y !default; -$btn-padding-x: $input-btn-padding-x !default; -$btn-line-height: $input-btn-line-height !default; - -$btn-padding-y-sm: $input-btn-padding-y-sm !default; -$btn-padding-x-sm: $input-btn-padding-x-sm !default; -$btn-line-height-sm: $input-btn-line-height-sm !default; - -$btn-padding-y-lg: $input-btn-padding-y-lg !default; -$btn-padding-x-lg: $input-btn-padding-x-lg !default; -$btn-line-height-lg: $input-btn-line-height-lg !default; - -$btn-border-width: $input-btn-border-width !default; - -$btn-font-weight: $font-weight-normal !default; -$btn-box-shadow: inset 0 1px 0 rgba($white, 0.15), 0 1px 1px rgba($black, 0.075) !default; -$btn-focus-width: $input-btn-focus-width !default; -$btn-focus-box-shadow: $input-btn-focus-box-shadow !default; -$btn-disabled-opacity: 0.65 !default; -$btn-active-box-shadow: inset 0 3px 5px rgba($black, 0.125) !default; - -$btn-link-disabled-color: $gray-600 !default; - -$btn-block-spacing-y: 0.5rem !default; - -// Allows for customizing button radius independently from global border radius -$btn-border-radius: $border-radius !default; -$btn-border-radius-lg: $border-radius-lg !default; -$btn-border-radius-sm: $border-radius-sm !default; - -$btn-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, - border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !default; - -// Forms - -$input-padding-y: $input-btn-padding-y !default; -$input-padding-x: $input-btn-padding-x !default; -$input-line-height: $input-btn-line-height !default; - -$input-padding-y-sm: $input-btn-padding-y-sm !default; -$input-padding-x-sm: $input-btn-padding-x-sm !default; -$input-line-height-sm: $input-btn-line-height-sm !default; - -$input-padding-y-lg: $input-btn-padding-y-lg !default; -$input-padding-x-lg: $input-btn-padding-x-lg !default; -$input-line-height-lg: $input-btn-line-height-lg !default; - -$input-bg: $white !default; -$input-disabled-bg: $gray-200 !default; - -$input-color: $gray-700 !default; -$input-border-color: $gray-400 !default; -$input-border-width: $input-btn-border-width !default; -$input-box-shadow: inset 0 1px 1px rgba($black, 0.075) !default; - -$input-border-radius: $border-radius !default; -$input-border-radius-lg: $border-radius-lg !default; -$input-border-radius-sm: $border-radius-sm !default; - -$input-focus-bg: $input-bg !default; -$input-focus-border-color: lighten($component-active-bg, 25%) !default; -$input-focus-color: $input-color !default; -$input-focus-width: $input-btn-focus-width !default; -$input-focus-box-shadow: $input-btn-focus-box-shadow !default; - -$input-placeholder-color: $gray-600 !default; - -$input-height-border: $input-border-width * 2 !default; - -$input-height-inner: ($font-size-base * $input-btn-line-height) + - ($input-btn-padding-y * 2) !default; -$input-height: calc(#{$input-height-inner} + #{$input-height-border}) !default; - -$input-height-inner-sm: ($font-size-sm * $input-btn-line-height-sm) + - ($input-btn-padding-y-sm * 2) !default; -$input-height-sm: calc( - #{$input-height-inner-sm} + #{$input-height-border} -) !default; - -$input-height-inner-lg: ($font-size-lg * $input-btn-line-height-lg) + - ($input-btn-padding-y-lg * 2) !default; -$input-height-lg: calc( - #{$input-height-inner-lg} + #{$input-height-border} -) !default; - -$input-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !default; - -$form-text-margin-top: 0.25rem !default; - -$form-check-input-gutter: 1.25rem !default; -$form-check-input-margin-y: 0.3rem !default; -$form-check-input-margin-x: 0.25rem !default; - -$form-check-inline-margin-x: 0.75rem !default; -$form-check-inline-input-margin-x: 0.3125rem !default; - -$form-group-margin-bottom: 1rem !default; - -$input-group-addon-color: $input-color !default; -$input-group-addon-bg: $gray-200 !default; -$input-group-addon-border-color: $input-border-color !default; - -$custom-control-gutter: 1.5rem !default; -$custom-control-spacer-x: 1rem !default; - -$custom-control-indicator-size: 1rem !default; -$custom-control-indicator-bg: $gray-300 !default; -$custom-control-indicator-bg-size: 50% 50% !default; -$custom-control-indicator-box-shadow: inset 0 0.25rem 0.25rem rgba($black, 0.1) !default; - -$custom-control-indicator-disabled-bg: $gray-200 !default; -$custom-control-label-disabled-color: $gray-600 !default; - -$custom-control-indicator-checked-color: $component-active-color !default; -$custom-control-indicator-checked-bg: $component-active-bg !default; -$custom-control-indicator-checked-disabled-bg: rgba( - theme-color("primary"), - 0.5 -) !default; -$custom-control-indicator-checked-box-shadow: none !default; - -$custom-control-indicator-focus-box-shadow: 0 0 0 1px $body-bg, - $input-btn-focus-box-shadow !default; - -$custom-control-indicator-active-color: $component-active-color !default; -$custom-control-indicator-active-bg: lighten( - $component-active-bg, - 35% -) !default; -$custom-control-indicator-active-box-shadow: none !default; - -$custom-checkbox-indicator-border-radius: $border-radius !default; -$custom-checkbox-indicator-icon-checked: str-replace( - url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#{$custom-control-indicator-checked-color}' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"), - "#", - "%23" -) !default; - -$custom-checkbox-indicator-indeterminate-bg: $component-active-bg !default; -$custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default; -$custom-checkbox-indicator-icon-indeterminate: str-replace( - url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/%3E%3C/svg%3E"), - "#", - "%23" -) !default; -$custom-checkbox-indicator-indeterminate-box-shadow: none !default; - -$custom-radio-indicator-border-radius: 50% !default; -$custom-radio-indicator-icon-checked: str-replace( - url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='#{$custom-control-indicator-checked-color}'/%3E%3C/svg%3E"), - "#", - "%23" -) !default; - -$custom-select-padding-y: 0.375rem !default; -$custom-select-padding-x: 0.75rem !default; -$custom-select-height: $input-height !default; -$custom-select-indicator-padding: 1rem !default; // Extra padding to account for the presence of the background-image based indicator -$custom-select-line-height: $input-btn-line-height !default; -$custom-select-color: $input-color !default; -$custom-select-disabled-color: $gray-600 !default; -$custom-select-bg: $white !default; -$custom-select-disabled-bg: $gray-200 !default; -$custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions -$custom-select-indicator-color: $gray-800 !default; -$custom-select-indicator: str-replace( - url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E"), - "#", - "%23" -) !default; -$custom-select-border-width: $input-btn-border-width !default; -$custom-select-border-color: $input-border-color !default; -$custom-select-border-radius: $border-radius !default; - -$custom-select-focus-border-color: $input-focus-border-color !default; -$custom-select-focus-box-shadow: inset 0 1px 2px rgba($black, 0.075), - 0 0 5px rgba($custom-select-focus-border-color, 0.5) !default; - -$custom-select-font-size-sm: 75% !default; -$custom-select-height-sm: $input-height-sm !default; - -$custom-select-font-size-lg: 125% !default; -$custom-select-height-lg: $input-height-lg !default; - -$custom-file-height: $input-height !default; -$custom-file-focus-border-color: $input-focus-border-color !default; -$custom-file-focus-box-shadow: $input-btn-focus-box-shadow !default; - -$custom-file-padding-y: $input-btn-padding-y !default; -$custom-file-padding-x: $input-btn-padding-x !default; -$custom-file-line-height: $input-btn-line-height !default; -$custom-file-color: $input-color !default; -$custom-file-bg: $input-bg !default; -$custom-file-border-width: $input-btn-border-width !default; -$custom-file-border-color: $input-border-color !default; -$custom-file-border-radius: $input-border-radius !default; -$custom-file-box-shadow: $input-box-shadow !default; -$custom-file-button-color: $custom-file-color !default; -$custom-file-button-bg: $input-group-addon-bg !default; -$custom-file-text: ( - en: "Browse" -) !default; - -// Form validation -$form-feedback-margin-top: $form-text-margin-top !default; -$form-feedback-font-size: $small-font-size !default; -$form-feedback-valid-color: theme-color("success") !default; -$form-feedback-invalid-color: theme-color("danger") !default; - -// Dropdowns -// -// Dropdown menu container and contents. - -$dropdown-min-width: 10rem !default; -$dropdown-padding-y: 0.5rem !default; -$dropdown-spacer: 0.125rem !default; -$dropdown-bg: $white !default; -$dropdown-border-color: rgba($black, 0.15) !default; -$dropdown-border-radius: $border-radius !default; -$dropdown-border-width: $border-width !default; -$dropdown-divider-bg: $gray-200 !default; -$dropdown-box-shadow: 0 0.5rem 1rem rgba($black, 0.175) !default; - -$dropdown-link-color: $gray-900 !default; -$dropdown-link-hover-color: darken($gray-900, 5%) !default; -$dropdown-link-hover-bg: $gray-100 !default; - -$dropdown-link-active-color: $component-active-color !default; -$dropdown-link-active-bg: $component-active-bg !default; - -$dropdown-link-disabled-color: $gray-600 !default; - -$dropdown-item-padding-y: 0.25rem !default; -$dropdown-item-padding-x: 1.5rem !default; - -$dropdown-header-color: $gray-600 !default; - -// Z-index master list -// -// Warning: Avoid customizing these values. They're used for a bird's eye view -// of components dependent on the z-axis and are designed to all work together. - -$zindex-dropdown: 1000 !default; -$zindex-sticky: 1020 !default; -$zindex-fixed: 1030 !default; -$zindex-modal-backdrop: 1040 !default; -$zindex-modal: 1050 !default; -$zindex-popover: 1060 !default; -$zindex-tooltip: 1070 !default; - -// Navs - -$nav-link-padding-y: 0.5rem !default; -$nav-link-padding-x: 1rem !default; -$nav-link-disabled-color: $gray-600 !default; - -$nav-tabs-border-color: $gray-300 !default; -$nav-tabs-border-width: $border-width !default; -$nav-tabs-border-radius: $border-radius !default; -$nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default; -$nav-tabs-link-active-color: $gray-700 !default; -$nav-tabs-link-active-bg: $body-bg !default; -$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default; - -$nav-pills-border-radius: $border-radius !default; -$nav-pills-link-active-color: $component-active-color !default; -$nav-pills-link-active-bg: $component-active-bg !default; - -// Navbar - -$navbar-padding-y: ($spacer / 2) !default; -$navbar-padding-x: $spacer !default; - -$navbar-nav-link-padding-x: 0.5rem !default; - -$navbar-brand-font-size: $font-size-lg !default; -// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link -$nav-link-height: ( - $font-size-base * $line-height-base + $nav-link-padding-y * 2 -) !default; -$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default; -$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) / 2 !default; - -$navbar-toggler-padding-y: 0.25rem !default; -$navbar-toggler-padding-x: 0.75rem !default; -$navbar-toggler-font-size: $font-size-lg !default; -$navbar-toggler-border-radius: $btn-border-radius !default; - -$navbar-dark-color: rgba($white, 0.5) !default; -$navbar-dark-hover-color: rgba($white, 0.75) !default; -$navbar-dark-active-color: $white !default; -$navbar-dark-disabled-color: rgba($white, 0.25) !default; -$navbar-dark-toggler-icon-bg: str-replace( - url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-dark-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"), - "#", - "%23" -) !default; -$navbar-dark-toggler-border-color: rgba($white, 0.1) !default; - -$navbar-light-color: rgba($black, 0.5) !default; -$navbar-light-hover-color: rgba($black, 0.7) !default; -$navbar-light-active-color: rgba($black, 0.9) !default; -$navbar-light-disabled-color: rgba($black, 0.3) !default; -$navbar-light-toggler-icon-bg: str-replace( - url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"), - "#", - "%23" -) !default; -$navbar-light-toggler-border-color: rgba($black, 0.1) !default; - -// Pagination - -$pagination-padding-y: 0.5rem !default; -$pagination-padding-x: 0.75rem !default; -$pagination-padding-y-sm: 0.25rem !default; -$pagination-padding-x-sm: 0.5rem !default; -$pagination-padding-y-lg: 0.75rem !default; -$pagination-padding-x-lg: 1.5rem !default; -$pagination-line-height: 1.25 !default; - -$pagination-color: $link-color !default; -$pagination-bg: $white !default; -$pagination-border-width: $border-width !default; -$pagination-border-color: $gray-300 !default; - -$pagination-focus-box-shadow: $input-btn-focus-box-shadow !default; - -$pagination-hover-color: $link-hover-color !default; -$pagination-hover-bg: $gray-200 !default; -$pagination-hover-border-color: $gray-300 !default; - -$pagination-active-color: $component-active-color !default; -$pagination-active-bg: $component-active-bg !default; -$pagination-active-border-color: $pagination-active-bg !default; - -$pagination-disabled-color: $gray-600 !default; -$pagination-disabled-bg: $white !default; -$pagination-disabled-border-color: $gray-300 !default; - -// Jumbotron - -$jumbotron-padding: 2rem !default; -$jumbotron-bg: $gray-200 !default; - -// Cards - -$card-spacer-y: 0.75rem !default; -$card-spacer-x: 1.25rem !default; -$card-border-width: $border-width !default; -$card-border-radius: $border-radius !default; -$card-border-color: rgba($black, 0.125) !default; -$card-inner-border-radius: calc( - #{$card-border-radius} - #{$card-border-width} -) !default; -$card-cap-bg: rgba($black, 0.03) !default; -$card-bg: $white !default; - -$card-img-overlay-padding: 1.25rem !default; - -$card-group-margin: ($grid-gutter-width / 2) !default; -$card-deck-margin: $card-group-margin !default; - -$card-columns-count: 3 !default; -$card-columns-gap: 1.25rem !default; -$card-columns-margin: $card-spacer-y !default; - -// Tooltips - -$tooltip-font-size: $font-size-sm !default; -$tooltip-max-width: 200px !default; -$tooltip-color: $white !default; -$tooltip-bg: $black !default; -$tooltip-border-radius: $border-radius !default; -$tooltip-opacity: 0.9 !default; -$tooltip-padding-y: 0.25rem !default; -$tooltip-padding-x: 0.5rem !default; -$tooltip-margin: 0 !default; - -$tooltip-arrow-width: 0.8rem !default; -$tooltip-arrow-height: 0.4rem !default; -$tooltip-arrow-color: $tooltip-bg !default; - -// Popovers - -$popover-font-size: $font-size-sm !default; -$popover-bg: $white !default; -$popover-max-width: 276px !default; -$popover-border-width: $border-width !default; -$popover-border-color: rgba($black, 0.2) !default; -$popover-border-radius: $border-radius-lg !default; -$popover-box-shadow: 0 0.25rem 0.5rem rgba($black, 0.2) !default; - -$popover-header-bg: darken($popover-bg, 3%) !default; -$popover-header-color: $headings-color !default; -$popover-header-padding-y: 0.5rem !default; -$popover-header-padding-x: 0.75rem !default; - -$popover-body-color: $body-color !default; -$popover-body-padding-y: $popover-header-padding-y !default; -$popover-body-padding-x: $popover-header-padding-x !default; - -$popover-arrow-width: 1rem !default; -$popover-arrow-height: 0.5rem !default; -$popover-arrow-color: $popover-bg !default; - -$popover-arrow-outer-color: fade-in($popover-border-color, 0.05) !default; - -// Badges - -$badge-font-size: 75% !default; -$badge-font-weight: $font-weight-bold !default; -$badge-padding-y: 0.25em !default; -$badge-padding-x: 0.4em !default; -$badge-border-radius: $border-radius !default; - -$badge-pill-padding-x: 0.6em !default; -// Use a higher than normal value to ensure completely rounded edges when -// customizing padding or font-size on labels. -$badge-pill-border-radius: 10rem !default; - -// Modals - -// Padding applied to the modal body -$modal-inner-padding: 1rem !default; - -$modal-dialog-margin: 0.5rem !default; -$modal-dialog-margin-y-sm-up: 1.75rem !default; - -$modal-title-line-height: $line-height-base !default; - -$modal-content-bg: $white !default; -$modal-content-border-color: rgba($black, 0.2) !default; -$modal-content-border-width: $border-width !default; -$modal-content-box-shadow-xs: 0 0.25rem 0.5rem rgba($black, 0.5) !default; -$modal-content-box-shadow-sm-up: 0 0.5rem 1rem rgba($black, 0.5) !default; - -$modal-backdrop-bg: $black !default; -$modal-backdrop-opacity: 0.5 !default; -$modal-header-border-color: $gray-200 !default; -$modal-footer-border-color: $modal-header-border-color !default; -$modal-header-border-width: $modal-content-border-width !default; -$modal-footer-border-width: $modal-header-border-width !default; -$modal-header-padding: 1rem !default; - -$modal-lg: 800px !default; -$modal-md: 500px !default; -$modal-sm: 300px !default; - -$modal-transition: transform 0.3s ease-out !default; - -// Alerts -// -// Define alert colors, border radius, and padding. - -$alert-padding-y: 0.75rem !default; -$alert-padding-x: 1.25rem !default; -$alert-margin-bottom: 1rem !default; -$alert-border-radius: $border-radius !default; -$alert-link-font-weight: $font-weight-bold !default; -$alert-border-width: $border-width !default; - -$alert-bg-level: -10 !default; -$alert-border-level: -9 !default; -$alert-color-level: 6 !default; - -// Progress bars - -$progress-height: 1rem !default; -$progress-font-size: ($font-size-base * 0.75) !default; -$progress-bg: $gray-200 !default; -$progress-border-radius: $border-radius !default; -$progress-box-shadow: inset 0 0.1rem 0.1rem rgba($black, 0.1) !default; -$progress-bar-color: $white !default; -$progress-bar-bg: theme-color("primary") !default; -$progress-bar-animation-timing: 1s linear infinite !default; -$progress-bar-transition: width 0.6s ease !default; - -// List group - -$list-group-bg: $white !default; -$list-group-border-color: rgba($black, 0.125) !default; -$list-group-border-width: $border-width !default; -$list-group-border-radius: $border-radius !default; - -$list-group-item-padding-y: 0.75rem !default; -$list-group-item-padding-x: 1.25rem !default; - -$list-group-hover-bg: $gray-100 !default; -$list-group-active-color: $component-active-color !default; -$list-group-active-bg: $component-active-bg !default; -$list-group-active-border-color: $list-group-active-bg !default; - -$list-group-disabled-color: $gray-600 !default; -$list-group-disabled-bg: $list-group-bg !default; - -$list-group-action-color: $gray-700 !default; -$list-group-action-hover-color: $list-group-action-color !default; - -$list-group-action-active-color: $body-color !default; -$list-group-action-active-bg: $gray-200 !default; - -// Image thumbnails - -$thumbnail-padding: 0.25rem !default; -$thumbnail-bg: $body-bg !default; -$thumbnail-border-width: $border-width !default; -$thumbnail-border-color: $gray-300 !default; -$thumbnail-border-radius: $border-radius !default; -$thumbnail-box-shadow: 0 1px 2px rgba($black, 0.075) !default; - -// Figures - -$figure-caption-font-size: 90% !default; -$figure-caption-color: $gray-600 !default; - -// Breadcrumbs - -$breadcrumb-padding-y: 0.75rem !default; -$breadcrumb-padding-x: 1rem !default; -$breadcrumb-item-padding: 0.5rem !default; - -$breadcrumb-margin-bottom: 1rem !default; - -$breadcrumb-bg: $gray-200 !default; -$breadcrumb-divider-color: $gray-600 !default; -$breadcrumb-active-color: $gray-600 !default; -$breadcrumb-divider: "/" !default; - -// Carousel - -$carousel-control-color: $white !default; -$carousel-control-width: 15% !default; -$carousel-control-opacity: 0.5 !default; - -$carousel-indicator-width: 30px !default; -$carousel-indicator-height: 3px !default; -$carousel-indicator-spacer: 3px !default; -$carousel-indicator-active-bg: $white !default; - -$carousel-caption-width: 70% !default; -$carousel-caption-color: $white !default; - -$carousel-control-icon-width: 20px !default; - -$carousel-control-prev-icon-bg: str-replace( - url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"), - "#", - "%23" -) !default; -$carousel-control-next-icon-bg: str-replace( - url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"), - "#", - "%23" -) !default; - -$carousel-transition: transform 0.6s ease !default; - -// Close - -$close-font-size: $font-size-base * 1.5 !default; -$close-font-weight: $font-weight-bold !default; -$close-color: $black !default; -$close-text-shadow: 0 1px 0 $white !default; - -// Code - -$code-font-size: 87.5% !default; -$code-color: $pink !default; - -$kbd-padding-y: 0.2rem !default; -$kbd-padding-x: 0.4rem !default; -$kbd-font-size: $code-font-size !default; -$kbd-color: $white !default; -$kbd-bg: $gray-900 !default; - -$pre-color: $gray-900 !default; -$pre-scrollable-max-height: 340px !default; - -// Printing -$print-page-size: a3 !default; -$print-body-min-width: map-get($grid-breakpoints, "lg") !default; diff --git a/styles/scss/nextjs-material-kit-pro.scss b/styles/scss/nextjs-material-kit-pro.scss deleted file mode 100644 index e99c158..0000000 --- a/styles/scss/nextjs-material-kit-pro.scss +++ /dev/null @@ -1,15 +0,0 @@ -// Core Components -@import "core/variables"; -@import "core/mixins"; -@import "core/fileupload"; - -// Core Plugins -@import "core/misc"; -@import "core/page-transition"; - -// @import "plugins/plugin-datetime-picker"; -@import "plugins/plugin-nouislider"; -@import "plugins/plugin-react-datetime"; -@import "plugins/plugin-react-image-gallery"; -@import "plugins/plugin-react-slick"; -@import "plugins/plugin-react-tagsinput"; diff --git a/styles/scss/plugins/_plugin-nouislider.scss b/styles/scss/plugins/_plugin-nouislider.scss deleted file mode 100644 index 3e1155d..0000000 --- a/styles/scss/plugins/_plugin-nouislider.scss +++ /dev/null @@ -1,345 +0,0 @@ -.noUi-target, -.noUi-target * { - -webkit-touch-callout: none; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); - -webkit-user-select: none; - -ms-touch-action: none; - touch-action: none; - -ms-user-select: none; - -moz-user-select: none; - user-select: none; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -.noUi-target { - position: relative; - direction: ltr; -} -.noUi-base, -.noUi-connects { - width: 100%; - height: 100%; - position: relative; - z-index: 1; -} -/* Wrapper for all connect elements. - */ -.noUi-connects { - overflow: hidden; - z-index: 0; -} -.noUi-connect, -.noUi-origin { - will-change: transform; - position: absolute; - z-index: 1; - top: 0; - left: 0; - -ms-transform-origin: 0 0; - -webkit-transform-origin: 0 0; - -webkit-transform-style: preserve-3d; - transform-origin: 0 0; - transform-style: flat; -} -.noUi-connect { - height: 100%; - width: 100%; -} -.noUi-origin { - height: 10%; - width: 10%; -} -/* Offset direction - */ -html:not([dir="rtl"]) .noUi-horizontal .noUi-origin { - left: auto; - right: 0; -} -/* Give origins 0 height/width so they don't interfere with clicking the - * connect elements. - */ -.noUi-vertical .noUi-origin { - width: 0; -} -.noUi-horizontal .noUi-origin { - height: 0; -} -.noUi-handle { - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - position: absolute; -} -.noUi-touch-area { - height: 100%; - width: 100%; -} -.noUi-state-tap .noUi-connect, -.noUi-state-tap .noUi-origin { - -webkit-transition: transform 0.3s; - transition: transform 0.3s; -} -.noUi-state-drag * { - cursor: inherit !important; -} -/* Slider size and handle placement; - */ -.noUi-horizontal { - height: 2px; - margin: 15px 0; -} -.noUi-horizontal .noUi-handle { - box-sizing: border-box; - width: 14px; - height: 14px; - left: -10px; - top: -6px; - cursor: pointer; - border-radius: 100%; - -webkit-transition: all .2s ease-out; - transition: all .2s ease-out; - border: 1px solid #9c27b0; - background: #fff; - box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.12), 0 1px 5px 0 rgba(0,0,0,.2); -} -.noUi-vertical { - width: 18px; -} -.noUi-vertical .noUi-handle { - width: 15px; - height: 15px; - left: 0px; - top: -7px; -} -html:not([dir="rtl"]) .noUi-horizontal .noUi-handle { - right: -4px; - left: auto; -} -/* Styling; - * Giving the connect element a border radius causes issues with using transform: scale - */ -.noUi-target { - background-color: #c8c8c8; - border-radius: 3px; -} -.noUi-connects { - border-radius: 3px; -} -.noUi-connect { - // background: #3FB8AF; -} -/* Handles and cursors; - */ -.noUi-draggable { - cursor: ew-resize; -} -.noUi-vertical .noUi-draggable { - cursor: ns-resize; -} -.noUi-handle { - border-radius: 3px; - background: #FFF; - cursor: default; - box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB; -} -.noUi-active { - box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB; -} -.noUi-handle.noUi-active{ - transform: scale3d(1.5,1.5,1); -} -/* Disabled state; - */ -[disabled] .noUi-connect { - background: #B8B8B8; -} -[disabled].noUi-target, -[disabled].noUi-handle, -[disabled] .noUi-handle { - cursor: not-allowed; -} -/* Base; - * - */ -.noUi-pips, -.noUi-pips * { - -moz-box-sizing: border-box; - box-sizing: border-box; -} -.noUi-pips { - position: absolute; - color: #999; -} -/* Values; - * - */ -.noUi-value { - position: absolute; - white-space: nowrap; - text-align: center; -} -.noUi-value-sub { - color: #ccc; - font-size: 10px; -} -/* Markings; - * - */ -.noUi-marker { - position: absolute; - background: #CCC; -} -.noUi-marker-sub { - background: #AAA; -} -.noUi-marker-large { - background: #AAA; -} -/* Horizontal layout; - * - */ -.noUi-pips-horizontal { - padding: 10px 0; - height: 80px; - top: 100%; - left: 0; - width: 100%; -} -.noUi-value-horizontal { - -webkit-transform: translate(-50%, 50%); - transform: translate(-50%, 50%); -} -.noUi-rtl .noUi-value-horizontal { - -webkit-transform: translate(50%, 50%); - transform: translate(50%, 50%); -} -.noUi-marker-horizontal.noUi-marker { - margin-left: -1px; - width: 2px; - height: 5px; -} -.noUi-marker-horizontal.noUi-marker-sub { - height: 10px; -} -.noUi-marker-horizontal.noUi-marker-large { - height: 15px; -} -/* Vertical layout; - * - */ -.noUi-pips-vertical { - padding: 0 10px; - height: 100%; - top: 0; - left: 100%; -} -.noUi-value-vertical { - -webkit-transform: translate(0, -50%); - transform: translate(0, -50%); - padding-left: 25px; -} -.noUi-rtl .noUi-value-vertical { - -webkit-transform: translate(0, 50%); - transform: translate(0, 50%); -} -.noUi-marker-vertical.noUi-marker { - width: 5px; - height: 2px; - margin-top: -1px; -} -.noUi-marker-vertical.noUi-marker-sub { - width: 10px; -} -.noUi-marker-vertical.noUi-marker-large { - width: 15px; -} -.noUi-tooltip { - display: block; - position: absolute; - border: 1px solid #D9D9D9; - border-radius: 3px; - background: #fff; - color: #000; - padding: 5px; - text-align: center; - white-space: nowrap; -} -.noUi-horizontal .noUi-tooltip { - -webkit-transform: translate(-50%, 0); - transform: translate(-50%, 0); - left: 50%; - bottom: 120%; -} -.noUi-vertical .noUi-tooltip { - -webkit-transform: translate(0, -50%); - transform: translate(0, -50%); - top: 50%; - right: 120%; -} - -.noUi-target { - & .noUi-handle { - border: 1px solid #333; - } - - &.slider-primary { - & .noUi-connect, - &.noUi-connect { - background-color: $brand-primary; - } - - & .noUi-handle { - border-color: $brand-primary; - } - } - - &.slider-info { - & .noUi-connect, - &.noUi-connect { - background-color: $brand-info; - } - - & .noUi-handle { - border-color: $brand-info; - } - } - &.slider-success { - & .noUi-connect, - &.noUi-connect { - background-color: $brand-success; - } - - & .noUi-handle { - border-color: $brand-success; - } - } - &.slider-warning { - & .noUi-connect, - &.noUi-connect { - background-color: $brand-warning; - } - - & .noUi-handle { - border-color: $brand-warning; - } - } - &.slider-danger { - & .noUi-connect, - &.noUi-connect { - background-color: $brand-danger; - } - - & .noUi-handle { - border-color: $brand-danger; - } - } - &.slider-rose { - & .noUi-connect, - &.noUi-connect { - background-color: $brand-rose; - } - - & .noUi-handle { - border-color: $brand-rose; - } - } -} diff --git a/styles/scss/plugins/_plugin-react-datetime.scss b/styles/scss/plugins/_plugin-react-datetime.scss deleted file mode 100644 index f4fc821..0000000 --- a/styles/scss/plugins/_plugin-react-datetime.scss +++ /dev/null @@ -1,382 +0,0 @@ -/*! -* https://github.com/YouCanBookMe/react-datetime -*/ -.rdt { - position: relative; - .rdtPicker { - -webkit-transition: all 150ms linear; - -moz-transition: all 150ms linear; - -o-transition: all 150ms linear; - -ms-transition: all 150ms linear; - transition: all 150ms linear; - margin-top: -20px; - visibility: hidden; - display: block; - opacity: 0; - } - &.rdtOpen { - .rdtPicker { - opacity: 1; - visibility: visible; - margin-top: 0; - } - } - input.form-control { - border: 0; - background-image: linear-gradient(#9c27b0, #9c27b0), - linear-gradient(#d2d2d2, #d2d2d2); - background-size: 0 2px, 100% 1px; - background-repeat: no-repeat; - background-position: center bottom, center calc(100% - 1px); - background-color: rgba(0, 0, 0, 0); - transition: background 0s ease-out; - float: none; - box-shadow: none; - border-radius: 0; - font-weight: 400; - width: 100%; - height: 36px; - padding: 7px 0; - font-size: 14px; - font-family: "Roboto", "Helvetica", "Arial", sans-serif; - font-weight: 400; - line-height: 1.42857; - display: block; - width: 100%; - color: #555; - } - input.form-control:focus { - outline: none; - background-image: linear-gradient(#9c27b0, #9c27b0), - linear-gradient(#d2d2d2, #d2d2d2); - background-size: 100% 2px, 100% 1px; - box-shadow: none; - transition-duration: 0.3s; - } -} -.rdtPicker { - display: none; - position: absolute; - width: 260px; - padding: 4px; - margin-top: 1px; - z-index: 99999 !important; - background: #fff; - border-radius: 0.125rem; - box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.2); - -webkit-background-clip: padding-box; - background-clip: padding-box; - min-width: 160px; - - &:before { - display: inline-block; - position: absolute; - width: 0; - height: 0; - vertical-align: middle; - content: ""; - top: -5px; - left: 10px; - right: auto; - color: #ffffff; - border-bottom: 0.4em solid; - border-right: 0.4em solid transparent; - border-left: 0.4em solid transparent; - } - &:after { - border-bottom: 0.4em solid #ffffff; - border-right: 0.4em solid transparent; - border-left: 0.4em solid transparent; - content: ""; - display: inline-block; - position: absolute; - top: -5px; - left: 10px; - } -} - -.rdtPicker { - display: block; - top: 40px; -} -.rdtStatic .rdtPicker { - box-shadow: none; - position: static; -} - -.rdtPicker .rdtTimeToggle { - text-align: center; - padding: 5px; - border-radius: 4px; -} - -.rdtPicker table { - width: 100%; - margin: 0; - border-color: $white-color !important; - border-collapse: collapse; -} -.rdtPicker td, -.rdtPicker th { - text-align: center; - padding: 1px; -} -.rdtPicker td { - cursor: pointer; -} -.rdtDay { - height: 30px; - line-height: 33px; - width: 30px; - text-align: center; - padding: 0px; - border-radius: 50%; - &.rdtToday.rdtActive, - &.rdtActive, - &.rdtActive:hover { - background-color: $brand-primary !important; - color: $white-color; - @include shadow-big-color($brand-primary); - } -} -.rdtDays { - tr { - .dow { - border-bottom: 1px solid #e3e3e3; - text-align: center; - font-size: 12px; - text-transform: uppercase; - font-weight: 400; - padding-bottom: 5px; - padding-top: 10px; - } - .rdtOld, - .rdtNew { - color: $grey-a400; - } - } -} - -.rdtPicker td.rdtDay:hover, -.rdtPicker td.rdtHour:hover, -.rdtPicker td.rdtMinute:hover, -.rdtPicker td.rdtSecond:hover, -.rdtPicker .rdtTimeToggle:hover { - background: #eeeeee; - cursor: pointer; -} -.rdtPicker td.rdtToday { - position: relative; -} -.rdtPicker td.rdtActive.rdtToday:before { - border-bottom-color: #fff; -} -.rdtPicker td.rdtDisabled, -.rdtPicker td.rdtDisabled:hover { - background: none; - color: #999999; - cursor: not-allowed; -} - -.rdtPicker td span.rdtOld { - color: #999999; -} -.rdtPicker td span.rdtDisabled, -.rdtPicker td span.rdtDisabled:hover { - background: none; - color: #999999; - cursor: not-allowed; -} -.rdtPicker .dow { - width: 14.2857%; - border-bottom: none; -} -.rdtPicker th.rdtSwitch { - width: 50px; - padding: 5px; - border-radius: 4px; -} -.rdtPicker th.rdtNext, -.rdtPicker th.rdtPrev { - font-size: 21px; - vertical-align: top; - border-radius: 50%; - line-height: 33px; -} - -.rdtPicker { - .dow, - th.rdtSwitch, - th.rdtNext, - th.rdtPrev, - .rdtTimeToggle { - color: $gray-700; - } -} - -.rdtPicker { - .rdtTimeToggle { - color: $brand-primary; - } -} - -.rdtPicker { - .rdtTime { - th.rdtSwitch { - color: $brand-primary; - } - } -} - -.rdtPrev span, -.rdtNext span { - display: block; - -webkit-touch-callout: none; /* iOS Safari */ - -webkit-user-select: none; /* Chrome/Safari/Opera */ - -khtml-user-select: none; /* Konqueror */ - -moz-user-select: none; /* Firefox */ - -ms-user-select: none; /* Internet Explorer/Edge */ - user-select: none; -} - -.rdtPicker th.rdtDisabled, -.rdtPicker th.rdtDisabled:hover { - background: none; - color: #999999; - cursor: not-allowed; -} -.rdtPicker thead tr:first-child th { - cursor: pointer; -} -.rdtPicker thead tr:first-child th:hover { - background: #eeeeee; -} - -.rdtPicker button { - border: none; - background: none; - cursor: pointer; -} -.rdtPicker button:hover { - background-color: #eee; -} - -.rdtPicker thead button { - width: 100%; - height: 100%; -} - -td.rdtMonth, -td.rdtYear { - height: 50px; - width: 25%; - cursor: pointer; -} -td.rdtMonth:hover, -td.rdtYear:hover { - background: #eee; -} - -.rdtCounters { - display: inline-block; -} - -.rdtCounters { - > div { - float: left; - width: 40px; - font-weight: inherit; - margin: 3px; - border-radius: 50%; - } - .rdtCounterSeparator { - width: 0; - border: 1px solid transparent; - } -} - -.rdtCounter { - height: 100px; -} - -.rdtCounter { - width: 40px; - .rdtCount { - padding: 7px; - height: 40px; - border: 1px solid transparent; - } -} -.rdtCounters { - .rdtCounter:last-child { - .rdtCount { - color: $brand-primary; - border-radius: 50%; - border: 1px solid $brand-primary; - } - } -} - -.rdtCounterSeparator { - padding: 7px; - line-height: 100px; -} -.rdtCounter .rdtBtn { - line-height: 40px; - cursor: pointer; - display: block; - border-radius: 50%; - color: $brand-primary; - -webkit-transition: all 60ms ease-in; - -moz-transition: all 60ms ease-in; - -o-transition: all 60ms ease-in; - -ms-transition: all 60ms ease-in; - transition: all 60ms ease-in; - - -webkit-touch-callout: none; /* iOS Safari */ - -webkit-user-select: none; /* Chrome/Safari/Opera */ - -khtml-user-select: none; /* Konqueror */ - -moz-user-select: none; /* Firefox */ - -ms-user-select: none; /* Internet Explorer/Edge */ - user-select: none; -} -.rdtCounter .rdtBtn:hover { - background: #eee; - // color: #797979; -} -.rdtCounter .rdtCount { - font-size: inherit; - line-height: 25px; -} - -.rdtMilli { - vertical-align: middle; - padding-left: 8px; - width: 48px; -} - -.rdtMilli input { - width: 100%; - font-size: inherit; - margin-top: 37px; -} -.rdtMonths, -.rdtYears { - padding-bottom: 10px; - .rdtMonth, - .rdtYear { - display: inline-block; - width: 56px; - height: 56px; - line-height: 56px; - margin: 3px 3px; - cursor: pointer; - border-radius: 50%; - text-align: center; - - &.rdtActive { - background-color: $brand-primary !important; - color: $white-color; - } - } -} diff --git a/styles/scss/plugins/_plugin-react-image-gallery.scss b/styles/scss/plugins/_plugin-react-image-gallery.scss deleted file mode 100644 index 9587854..0000000 --- a/styles/scss/plugins/_plugin-react-image-gallery.scss +++ /dev/null @@ -1,85 +0,0 @@ -@import "node_modules/react-image-gallery/styles/scss/image-gallery.scss"; - -.image-gallery-left-nav, -.image-gallery-right-nav { - position: absolute; - cursor: pointer; - z-index: 100; - opacity: 0.5; - bottom: -40%; - top: auto; - padding: 0 !important; - color: #fff; - font-size: 5em; - outline: none; - background-color: transparent; - border: 0; - transform: translateY(-50%); - &:before, - &:hover:before { - color: #3c4858; - text-shadow: none; - } - &:before { - font-family: "Material Icons"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-feature-settings: "liga"; - -webkit-font-smoothing: antialiased; - } -} -.image-gallery-left-nav { - left: -20px; - &::before { - content: "chevron_left"; - } -} -.image-gallery-right-nav { - right: -20px; - &::before { - content: "chevron_right"; - } -} -.image-gallery-thumbnail { - margin: 0px; - padding: 0px; - cursor: pointer; - position: relative; - line-height: 0px; - width: 125px; - border: none !important; - & + .image-gallery-thumbnail { - margin: 0 !important; - } - img { - max-width: 100%; - cursor: pointer; - position: relative; - margin-top: 10px; - margin-bottom: 10px; - } -} -.image-gallery-thumbnail-label { - display: none !important; -} -.image-gallery-thumbnails { - padding: 0 !important; - overflow: hidden; - width: 100%; -} -.image-gallery-thumbnails-container { - position: relative; - // width: 99999px; - margin: 0px; - padding: 0px; - list-style-type: none; - text-align: center; -} diff --git a/styles/scss/plugins/_plugin-react-slick.scss b/styles/scss/plugins/_plugin-react-slick.scss deleted file mode 100644 index 0643a07..0000000 --- a/styles/scss/plugins/_plugin-react-slick.scss +++ /dev/null @@ -1,254 +0,0 @@ -/* Slider */ -.slick-slider { - position: relative; - - display: block; - box-sizing: border-box; - - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - - -webkit-touch-callout: none; - -khtml-user-select: none; - -ms-touch-action: pan-y; - touch-action: pan-y; - -webkit-tap-highlight-color: transparent; - - @media (min-width: 768px) { - .slick-caption { - display: block !important; - } - } - - .slick-caption { - padding-bottom: 45px; - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - color: #ffffff; - text-align: center; - z-index: 3; - display: none; - } - .slick-slide { - > div:first-child { - position: relative; - } - } - .slick-icons { - position: relative; - top: 5px; - } - .slick-image { - width: 100% !important; - display: inline-flex !important; - } -} - -.slick-list { - position: relative; - - display: block; - overflow: hidden; - - margin: 0; - padding: 0; -} -.slick-list:focus { - outline: none; -} -.slick-list.dragging { - cursor: pointer; - cursor: hand; -} - -.slick-slider .slick-track, -.slick-slider .slick-list { - -webkit-transform: translate3d(0, 0, 0); - -moz-transform: translate3d(0, 0, 0); - -ms-transform: translate3d(0, 0, 0); - -o-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} - -.slick-track { - position: relative; - top: 0; - left: 0; - - display: block; - margin-left: auto; - margin-right: auto; -} -.slick-track:before, -.slick-track:after { - display: table; - - content: ""; -} -.slick-track:after { - clear: both; -} -.slick-loading .slick-track { - visibility: hidden; -} - -.slick-slide { - display: none; - float: left; - - height: 100%; - min-height: 1px; -} -[dir="rtl"] .slick-slide { - float: right; -} -.slick-slide img { - display: block; -} -.slick-slide.slick-loading img { - display: none; -} -.slick-slide.dragging img { - pointer-events: none; -} -.slick-initialized .slick-slide { - display: block; -} -.slick-loading .slick-slide { - visibility: hidden; -} -.slick-vertical .slick-slide { - display: block; - - height: auto; - - border: 1px solid transparent; -} -.slick-arrow.slick-hidden { - display: none; -} -button.slick-arrow.slick-prev, -button.slick-arrow.slick-next { - font-size: 0; - line-height: 0; - position: absolute; - top: 50%; - display: block; - // width: 20px; - height: 100%; - padding: 0; - -ms-transform: translateY(-50%); - transform: translateY(-50%); - cursor: pointer; - border: none; - color: transparent; - outline: none; - background: transparent; - width: 15%; - z-index: 2; - opacity: 0.5; -} -.slick-prev { - left: 0; - &::before { - content: "\f053"; - font-weight: 600; - font-family: Font Awesome\ 5 Free; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: inline-block; - font-style: normal; - font-variant: normal; - text-rendering: auto; - line-height: 1; - color: white; - font-size: 30px; - width: 100%; - } -} -.slick-next { - right: 0; - &::before { - content: "\f054"; - font-weight: 600; - font-family: Font Awesome\ 5 Free; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: inline-block; - font-style: normal; - font-variant: normal; - text-rendering: auto; - line-height: 1; - color: #fff; - font-size: 30px; - width: 100%; - } -} -.slick-list { - z-index: 1; -} -.slick-dots { - margin-top: 0; - margin-bottom: 1rem; - position: absolute; - bottom: 5px; - // margin-right: 15%; - // margin-left: 15%; - width: 100%; - padding: 0; - list-style: none; - text-align: center; - z-index: 3; -} -.slick-dots li, -.slick-dots li button { - width: 20px; - height: 20px; - cursor: pointer; -} -.slick-dots li { - position: relative; - display: inline-block; - margin: 0 5px; - padding: 0; -} -.slick-dots li button { - font-size: 0; - line-height: 0; - display: block; - padding: 5px; - color: transparent; - border: 0; - outline: none; - background: transparent; - &::before { - position: absolute; - top: 0; - left: 0; - width: 10px; - height: 10px; - content: "\2022"; - text-align: center; - opacity: 1; - background-color: #fff; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), - 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2); - border-radius: 2px; - transition: all 300ms linear; - } -} -.slick-dots li.slick-active button:before { - width: 15px; - height: 15px; - box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), - 0 2px 4px -1px rgba(0, 0, 0, 0.2); - top: -3px; -} diff --git a/styles/scss/plugins/_plugin-react-tagsinput.scss b/styles/scss/plugins/_plugin-react-tagsinput.scss deleted file mode 100644 index 04e67e4..0000000 --- a/styles/scss/plugins/_plugin-react-tagsinput.scss +++ /dev/null @@ -1,123 +0,0 @@ -// Based on the original react-tagsinput styles - -.react-tagsinput { - display: inline-block; - padding: 4px 6px; - max-width: 100%; - line-height: 22px; -} - -.react-tagsinput-tag { - cursor: pointer; - margin: 5px 3px 5px 0; - position: relative; - padding: 3px 8px; - border-radius: 12px; - color: #ffffff; - font-weight: 500; - font-size: 0.75em; - text-transform: uppercase; - display: inline-block; - line-height: 1.5em; - padding-left: 0.8em; -} - -.react-tagsinput-remove { - cursor: pointer; - font-weight: bold; -} - -.react-tagsinput-tag a::before { - font-family: Font Awesome\ 5 Free; - content: "\f00d"; - padding: 0px 2px; - font-weight: 900; -} -.react-tagsinput-tag a { - cursor: pointer; - position: absolute; - top: 3px; - right: 0px; - opacity: 0; - background-color: transparent; - color: #ffffff; -} - -.react-tagsinput-input { - background: transparent; - border: 0; - color: #777; - font-family: sans-serif; - font-size: 13px; - font-weight: 400; - margin-bottom: 6px; - margin-top: 1px; - outline: none; - padding: 5px; - width: 80px; -} - -.react-tagsinput { - .react-tagsinput-tag { - -webkit-transition: all 300ms ease 0s; - -moz-transition: all 300ms ease 0s; - -o-transition: all 300ms ease 0s; - -ms-transition: all 300ms ease 0s; - transition: all 300ms ease 0s; - - &:hover { - padding-right: 22px; - - a { - opacity: 1; - padding-right: 4px; - background-color: transparent; - color: #ffffff; - } - } - - // @include badges-color($gray-light); - // - // &.primary{ - // @include badges-color($brand-primary); - // } - // &.info{ - // @include badges-color($brand-info); - // } - // &.success{ - // @include badges-color($brand-success); - // } - // &.warning{ - // @include badges-color($brand-warning); - // } - // &.danger{ - // @include badges-color($brand-danger); - // } - // .rose{ - // @include badges-color($brand-rose); - // } - - &.primary { - background-color: $brand-primary; - } - &.info { - background-color: $brand-info; - } - &.success { - background-color: $brand-success; - } - &.warning { - background-color: $brand-warning; - } - &.danger { - background-color: $brand-danger; - } - &.rose { - background-color: $brand-rose; - } - &.default { - background-color: $gray-light; - } - background-color: $gray-light; - } -} diff --git a/tests/lib/formatCurrency.test.ts b/tests/lib/formatCurrency.test.ts deleted file mode 100644 index 627a8a5..0000000 --- a/tests/lib/formatCurrency.test.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { formatCurrency } from "./formatCurrency"; - -it("adds a dollar sign at the start", () => { - expect(formatCurrency(6)).toContain("$6"); - expect(formatCurrency(14)).toContain("$14"); -}); - -it("supports decimals", () => { - expect(formatCurrency(5.99)).toContain("5.99"); -}); diff --git a/tests/lib/formatCurrency.ts b/tests/lib/formatCurrency.ts deleted file mode 100644 index 27c0484..0000000 --- a/tests/lib/formatCurrency.ts +++ /dev/null @@ -1 +0,0 @@ -export const formatCurrency = (value: number): string => `$${value}`; diff --git a/tests/lib/math.test.ts b/tests/lib/math.test.ts deleted file mode 100644 index 471f746..0000000 --- a/tests/lib/math.test.ts +++ /dev/null @@ -1,57 +0,0 @@ -import { add } from "./math"; - -it("should summarize all number values in an array", () => { - // Arrange - const numbers = [1, 2]; - - // Act - const result = add(numbers); - - // Assert - const expectedResult = numbers.reduce((prev, cur) => prev + cur, 0); - expect(result).toBe(expectedResult); -}); - -it("should yield NaN if at least one invalid number is provided", () => { - const inputs = ["invalid", 1]; - - const result = add(inputs); - - expect(result).toBeNaN(); -}); - -it("should yield a correct sum if an array of numeric string values is provided", () => { - const numbers = ["1", "2"]; - - const result = add(numbers); - - const expectedResult = numbers.reduce((prev, cur) => +prev + +cur, 0); - expect(result).toBe(expectedResult); -}); - -it("should yield 0 if an empty array is provided", () => { - const numbers = []; - - const result = add(numbers); - - expect(result).toBe(0); -}); - -it("should throw an error if no value is passed into the function", () => { - const resultFn = () => { - add(); - }; - - expect(resultFn).toThrow(); -}); - -it("should throw an error if provided with multiple arguments instead of an array", () => { - const num1 = 1; - const num2 = 2; - - const resultFn = () => { - add(num1, num2); - }; - - expect(resultFn).toThrow(); -}); diff --git a/tests/lib/math.ts b/tests/lib/math.ts deleted file mode 100644 index bf2839f..0000000 --- a/tests/lib/math.ts +++ /dev/null @@ -1,8 +0,0 @@ -export function add(numbers) { - let sum = 0; - - for (const number of numbers) { - sum += +number; - } - return sum; -} diff --git a/tests/lib/numbers.test.ts b/tests/lib/numbers.test.ts deleted file mode 100644 index 98cb788..0000000 --- a/tests/lib/numbers.test.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { transformToNumber } from "./numbers"; - -it("should transform a string number to a number of type number", () => { - const input = "1"; - - const result = transformToNumber(input); - - expect(typeof result).toBe("number"); -}); - -it("should yield NaN for non-transformable values", () => { - const input = "invalid"; - - const result = transformToNumber(input); - - expect(result).toBeNaN(); -}); diff --git a/tests/lib/numbers.ts b/tests/lib/numbers.ts deleted file mode 100644 index c52bc46..0000000 --- a/tests/lib/numbers.ts +++ /dev/null @@ -1,3 +0,0 @@ -export function transformToNumber(value: string) { - return +value; -} diff --git a/tests/lib/validation.test.ts b/tests/lib/validation.test.ts deleted file mode 100644 index c9bca9a..0000000 --- a/tests/lib/validation.test.ts +++ /dev/null @@ -1,67 +0,0 @@ -import { validateNumber, validateStringNotEmpty } from "./validation"; - -describe("validateStringNotEmpty()", () => { - it("should throw an error, if an empty string is provided", () => { - const input = ""; - const validationFn = () => validateStringNotEmpty(input); - expect(validationFn).toThrow(); - }); - - it("should throw an error with a message that contains a reason (must not be empty)", () => { - const input = ""; - const validationFn = () => validateStringNotEmpty(input); - expect(validationFn).toThrow(/must not be empty/); - }); - - it("should throw an error if a long string of blanks is provided", () => { - const input = ""; - const validationFn = () => validateStringNotEmpty(input); - expect(validationFn).toThrow(); - }); - - it("should throw an error if any other value than a string is provided", () => { - const inputNum = 1; - const inputBool = true; - const inputObj = {}; - - const validationFnNum = () => validateStringNotEmpty(inputNum); - const validationFnBool = () => validateStringNotEmpty(inputBool); - const validationFnObj = () => validateStringNotEmpty(inputObj); - - expect(validationFnNum).toThrow(); - expect(validationFnBool).toThrow(); - expect(validationFnObj).toThrow(); - }); - - it("should not throw an error, if a non-empty string is provided", () => { - const input = "valid"; - const validationFn = () => validateStringNotEmpty(input); - expect(validationFn).not.toThrow(); - }); -}); - -describe("validateNumber()", () => { - it("should throw an error if NaN is provided", () => { - const input = NaN; - const validationFn = () => validateNumber(input); - expect(validationFn).toThrow(); - }); - - it("should throw an error with a message that contains a reason (invalid number)", () => { - const input = NaN; - const validationFn = () => validateNumber(input); - expect(validationFn).toThrow(/Invalid number/); - }); - - it("should throw an error if a non-numeric value is provided", () => { - const input = "1"; - const validationFn = () => validateNumber(input); - expect(validationFn).toThrow(); - }); - - it("should not throw an error, if a number is provided", () => { - const input = 1; - const validationFn = () => validateNumber(input); - expect(validationFn).not.toThrow(); - }); -}); diff --git a/tests/lib/validation.ts b/tests/lib/validation.ts deleted file mode 100644 index 6cd7750..0000000 --- a/tests/lib/validation.ts +++ /dev/null @@ -1,11 +0,0 @@ -export function validateStringNotEmpty(value) { - if (value.trim().length === 0) { - throw new Error("Invalid input - must not be empty."); - } -} - -export function validateNumber(number) { - if (isNaN(number) || typeof number !== "number") { - throw new Error("Invalid number input."); - } -} diff --git a/tests/pages/index.spec.tsx b/tests/pages/index.spec.tsx deleted file mode 100644 index e85ed88..0000000 --- a/tests/pages/index.spec.tsx +++ /dev/null @@ -1,86 +0,0 @@ -import React from "react"; -import { render } from "@testing-library/react"; -import Home, { getServerSideProps } from "../../pages/index"; - -import { getFlights } from "../../api/flights"; -import { FlightData } from "@/types"; - -describe("The home page", () => { - it("getServerSideProps returns the correct list of todos from the api", async () => { - const TEST_TODOS: FlightData[] = [ - { - aircraft: { - iataCode: "DA42", - icao24: "440A8E", - icaoCode: "DA42", - regNumber: "OE-FEB", - }, - airline: { - iataCode: "", - icaoCode: "", - }, - arrival: { - iataCode: "", - icaoCode: "", - }, - departure: { - iataCode: "", - icaoCode: "", - }, - flight: { - iataNumber: "XXD", - icaoNumber: "OEFEB", - number: "XXF", - }, - geography: { - altitude: 1912.62, - direction: 104.39, - latitude: 47.44, - longitude: 12.28, - }, - speed: { - horizontal: 290.628, - isGround: 0, - vspeed: -11.7, - }, - status: "en-route", - system: { - squawk: null, - updated: 1655454240, - }, - }, - ]; - - jest.spyOn({ getFlights }, "getFlights").mockImplementation(async () => ({ - todos: TEST_TODOS, - })); - - const response = await getServerSideProps({} as any); - - expect(getFlights).toHaveBeenCalled(); - expect(response).toEqual({ - props: { - props: { - dehydratedState: TEST_TODOS, - }, - }, - }); - }); - // it('Home page renders initial todos correctly', () => { - // const TEST_TODOS: TodosQuery['todos'] = [{ - // id: '1', - // title: 'Learn vue' - // }, { - // id: '2', - // title: 'Master react' - // }] - - // const { getByTestId, debug } = render() - - // TEST_TODOS.forEach(todo => { - // const todoItem = getByTestId(`todo-${todo?.id}`) - - // expect(todoItem.textContent).toContain(todo?.title) - // }) - // }) -}); diff --git a/tests/setupTests.ts b/tests/setupTests.ts deleted file mode 100644 index 6a69409..0000000 --- a/tests/setupTests.ts +++ /dev/null @@ -1 +0,0 @@ -import "@testing-library/jest-dom/extend-expect"; diff --git a/tsconfig.base.json b/tsconfig.base.json new file mode 100644 index 0000000..4bbbb88 --- /dev/null +++ b/tsconfig.base.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "ESNext", + "moduleResolution": "bundler", + "lib": ["ES2022", "DOM", "DOM.Iterable"], + "jsx": "react-jsx", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "isolatedModules": true, + "declaration": true, + "declarationMap": true, + "sourceMap": true + } +} diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index 2779da7..0000000 --- a/tsconfig.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compilerOptions": { - "target": "es5", - "lib": ["dom", "dom.iterable", "esnext"], - "baseUrl": ".", - "paths": { - "@/*": ["components/*"] - }, - "moduleResolution": "node", - "allowJs": true, - "skipLibCheck": true, - "strict": false, - "forceConsistentCasingInFileNames": true, - "noEmit": true, - "incremental": true, - "esModuleInterop": true, - "module": "esnext", - "resolveJsonModule": true, - "isolatedModules": true, - "jsx": "preserve" - }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], - "exclude": ["node_modules"] -} diff --git a/turbo.json b/turbo.json new file mode 100644 index 0000000..7b74b1b --- /dev/null +++ b/turbo.json @@ -0,0 +1,22 @@ +{ + "$schema": "https://turbo.build/schema.json", + "tasks": { + "dev": { + "cache": false, + "persistent": true + }, + "build": { + "dependsOn": ["^build"], + "outputs": ["dist/**", ".next/**", "out/**"] + }, + "lint": { + "dependsOn": ["^build"] + }, + "test": { + "dependsOn": ["^build"] + }, + "clean": { + "cache": false + } + } +} diff --git a/yarn.lock b/yarn.lock deleted file mode 100644 index a4c505b..0000000 --- a/yarn.lock +++ /dev/null @@ -1,6193 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@ampproject/remapping@^2.1.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" - integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== - dependencies: - "@jridgewell/gen-mapping" "^0.1.0" - "@jridgewell/trace-mapping" "^0.3.9" - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789" - integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg== - dependencies: - "@babel/highlight" "^7.16.7" - -"@babel/compat-data@^7.17.10": - version "7.18.5" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.18.5.tgz#acac0c839e317038c73137fbb6ef71a1d6238471" - integrity sha512-BxhE40PVCBxVEJsSBhB6UWyAuqJRxGsAw8BdHMJ3AKGydcwuWW4kOO3HmqBQAdcq/OP+/DlTVxLvsCzRTnZuGg== - -"@babel/core@^7.11.6", "@babel/core@^7.12.3": - version "7.18.5" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.5.tgz#c597fa680e58d571c28dda9827669c78cdd7f000" - integrity sha512-MGY8vg3DxMnctw0LdvSEojOsumc70g0t18gNyUdAZqB1Rpd1Bqo/svHGvt+UJ6JcGX+DIekGFDxxIWofBxLCnQ== - dependencies: - "@ampproject/remapping" "^2.1.0" - "@babel/code-frame" "^7.16.7" - "@babel/generator" "^7.18.2" - "@babel/helper-compilation-targets" "^7.18.2" - "@babel/helper-module-transforms" "^7.18.0" - "@babel/helpers" "^7.18.2" - "@babel/parser" "^7.18.5" - "@babel/template" "^7.16.7" - "@babel/traverse" "^7.18.5" - "@babel/types" "^7.18.4" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.2.1" - semver "^6.3.0" - -"@babel/generator@^7.18.2", "@babel/generator@^7.7.2": - version "7.18.2" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.2.tgz#33873d6f89b21efe2da63fe554460f3df1c5880d" - integrity sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw== - dependencies: - "@babel/types" "^7.18.2" - "@jridgewell/gen-mapping" "^0.3.0" - jsesc "^2.5.1" - -"@babel/helper-compilation-targets@^7.18.2": - version "7.18.2" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.2.tgz#67a85a10cbd5fc7f1457fec2e7f45441dc6c754b" - integrity sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ== - dependencies: - "@babel/compat-data" "^7.17.10" - "@babel/helper-validator-option" "^7.16.7" - browserslist "^4.20.2" - semver "^6.3.0" - -"@babel/helper-environment-visitor@^7.16.7", "@babel/helper-environment-visitor@^7.18.2": - version "7.18.2" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz#8a6d2dedb53f6bf248e31b4baf38739ee4a637bd" - integrity sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ== - -"@babel/helper-function-name@^7.17.9": - version "7.17.9" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz#136fcd54bc1da82fcb47565cf16fd8e444b1ff12" - integrity sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg== - dependencies: - "@babel/template" "^7.16.7" - "@babel/types" "^7.17.0" - -"@babel/helper-hoist-variables@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246" - integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-module-imports@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437" - integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-module-transforms@^7.18.0": - version "7.18.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.0.tgz#baf05dec7a5875fb9235bd34ca18bad4e21221cd" - integrity sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA== - dependencies: - "@babel/helper-environment-visitor" "^7.16.7" - "@babel/helper-module-imports" "^7.16.7" - "@babel/helper-simple-access" "^7.17.7" - "@babel/helper-split-export-declaration" "^7.16.7" - "@babel/helper-validator-identifier" "^7.16.7" - "@babel/template" "^7.16.7" - "@babel/traverse" "^7.18.0" - "@babel/types" "^7.18.0" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.17.12", "@babel/helper-plugin-utils@^7.8.0": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.17.12.tgz#86c2347da5acbf5583ba0a10aed4c9bf9da9cf96" - integrity sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA== - -"@babel/helper-simple-access@^7.17.7": - version "7.18.2" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.2.tgz#4dc473c2169ac3a1c9f4a51cfcd091d1c36fcff9" - integrity sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ== - dependencies: - "@babel/types" "^7.18.2" - -"@babel/helper-split-export-declaration@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b" - integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw== - dependencies: - "@babel/types" "^7.16.7" - -"@babel/helper-validator-identifier@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" - integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== - -"@babel/helper-validator-option@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23" - integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ== - -"@babel/helpers@^7.18.2": - version "7.18.2" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.18.2.tgz#970d74f0deadc3f5a938bfa250738eb4ac889384" - integrity sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg== - dependencies: - "@babel/template" "^7.16.7" - "@babel/traverse" "^7.18.2" - "@babel/types" "^7.18.2" - -"@babel/highlight@^7.16.7": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.17.12.tgz#257de56ee5afbd20451ac0a75686b6b404257351" - integrity sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg== - dependencies: - "@babel/helper-validator-identifier" "^7.16.7" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.18.5": - version "7.18.5" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.5.tgz#337062363436a893a2d22faa60be5bb37091c83c" - integrity sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw== - -"@babel/plugin-syntax-async-generators@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" - integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-bigint@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" - integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-class-properties@^7.8.3": - version "7.12.13" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" - integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== - dependencies: - "@babel/helper-plugin-utils" "^7.12.13" - -"@babel/plugin-syntax-import-meta@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" - integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-json-strings@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" - integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-logical-assignment-operators@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" - integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" - integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-numeric-separator@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" - integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-object-rest-spread@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" - integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-catch-binding@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" - integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-chaining@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" - integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-top-level-await@^7.8.3": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" - integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-typescript@^7.7.2": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.17.12.tgz#b54fc3be6de734a56b87508f99d6428b5b605a7b" - integrity sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw== - dependencies: - "@babel/helper-plugin-utils" "^7.17.12" - -"@babel/runtime-corejs3@^7.10.2": - version "7.18.3" - resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.18.3.tgz#52f0241a31e0ec61a6187530af6227c2846bd60c" - integrity sha512-l4ddFwrc9rnR+EJsHsh+TJ4A35YqQz/UqcjtlX2ov53hlJYG5CxtQmNZxyajwDVmCxwy++rtvGU5HazCK4W41Q== - dependencies: - core-js-pure "^3.20.2" - regenerator-runtime "^0.13.4" - -"@babel/runtime@^7.10.2", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.5", "@babel/runtime@^7.16.3", "@babel/runtime@^7.3.1", "@babel/runtime@^7.4.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.3", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": - version "7.18.3" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.3.tgz#c7b654b57f6f63cf7f8b418ac9ca04408c4579f4" - integrity sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug== - dependencies: - regenerator-runtime "^0.13.4" - -"@babel/template@^7.16.7", "@babel/template@^7.3.3": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.7.tgz#8d126c8701fde4d66b264b3eba3d96f07666d155" - integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w== - dependencies: - "@babel/code-frame" "^7.16.7" - "@babel/parser" "^7.16.7" - "@babel/types" "^7.16.7" - -"@babel/traverse@^7.18.0", "@babel/traverse@^7.18.2", "@babel/traverse@^7.18.5", "@babel/traverse@^7.7.2": - version "7.18.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.5.tgz#94a8195ad9642801837988ab77f36e992d9a20cd" - integrity sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA== - dependencies: - "@babel/code-frame" "^7.16.7" - "@babel/generator" "^7.18.2" - "@babel/helper-environment-visitor" "^7.18.2" - "@babel/helper-function-name" "^7.17.9" - "@babel/helper-hoist-variables" "^7.16.7" - "@babel/helper-split-export-declaration" "^7.16.7" - "@babel/parser" "^7.18.5" - "@babel/types" "^7.18.4" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/types@^7.0.0", "@babel/types@^7.16.7", "@babel/types@^7.17.0", "@babel/types@^7.18.0", "@babel/types@^7.18.2", "@babel/types@^7.18.4", "@babel/types@^7.3.0", "@babel/types@^7.3.3": - version "7.18.4" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.18.4.tgz#27eae9b9fd18e9dccc3f9d6ad051336f307be354" - integrity sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw== - dependencies: - "@babel/helper-validator-identifier" "^7.16.7" - to-fast-properties "^2.0.0" - -"@bcoe/v8-coverage@^0.2.3": - version "0.2.3" - resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" - integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== - -"@emotion/hash@^0.8.0": - version "0.8.0" - resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413" - integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow== - -"@eslint/eslintrc@^1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.0.tgz#29f92c30bb3e771e4a2048c95fa6855392dfac4f" - integrity sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw== - dependencies: - ajv "^6.12.4" - debug "^4.3.2" - espree "^9.3.2" - globals "^13.15.0" - ignore "^5.2.0" - import-fresh "^3.2.1" - js-yaml "^4.1.0" - minimatch "^3.1.2" - strip-json-comments "^3.1.1" - -"@gar/promisify@^1.0.1": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6" - integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== - -"@humanwhocodes/config-array@^0.9.2": - version "0.9.5" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz#2cbaf9a89460da24b5ca6531b8bbfc23e1df50c7" - integrity sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw== - dependencies: - "@humanwhocodes/object-schema" "^1.2.1" - debug "^4.1.1" - minimatch "^3.0.4" - -"@humanwhocodes/object-schema@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" - integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== - -"@istanbuljs/load-nyc-config@^1.0.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" - integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== - dependencies: - camelcase "^5.3.1" - find-up "^4.1.0" - get-package-type "^0.1.0" - js-yaml "^3.13.1" - resolve-from "^5.0.0" - -"@istanbuljs/schema@^0.1.2": - version "0.1.3" - resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" - integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== - -"@jest/console@^28.1.1": - version "28.1.1" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-28.1.1.tgz#305f8ca50b6e70413839f54c0e002b60a0f2fd7d" - integrity sha512-0RiUocPVFEm3WRMOStIHbRWllG6iW6E3/gUPnf4lkrVFyXIIDeCe+vlKeYyFOMhB2EPE6FLFCNADSOOQMaqvyA== - dependencies: - "@jest/types" "^28.1.1" - "@types/node" "*" - chalk "^4.0.0" - jest-message-util "^28.1.1" - jest-util "^28.1.1" - slash "^3.0.0" - -"@jest/core@^28.1.1": - version "28.1.1" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-28.1.1.tgz#086830bec6267accf9af5ca76f794858e9f9f092" - integrity sha512-3pYsBoZZ42tXMdlcFeCc/0j9kOlK7MYuXs2B1QbvDgMoW1K9NJ4G/VYvIbMb26iqlkTfPHo7SC2JgjDOk/mxXw== - dependencies: - "@jest/console" "^28.1.1" - "@jest/reporters" "^28.1.1" - "@jest/test-result" "^28.1.1" - "@jest/transform" "^28.1.1" - "@jest/types" "^28.1.1" - "@types/node" "*" - ansi-escapes "^4.2.1" - chalk "^4.0.0" - ci-info "^3.2.0" - exit "^0.1.2" - graceful-fs "^4.2.9" - jest-changed-files "^28.0.2" - jest-config "^28.1.1" - jest-haste-map "^28.1.1" - jest-message-util "^28.1.1" - jest-regex-util "^28.0.2" - jest-resolve "^28.1.1" - jest-resolve-dependencies "^28.1.1" - jest-runner "^28.1.1" - jest-runtime "^28.1.1" - jest-snapshot "^28.1.1" - jest-util "^28.1.1" - jest-validate "^28.1.1" - jest-watcher "^28.1.1" - micromatch "^4.0.4" - pretty-format "^28.1.1" - rimraf "^3.0.0" - slash "^3.0.0" - strip-ansi "^6.0.0" - -"@jest/environment@^28.1.1": - version "28.1.1" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-28.1.1.tgz#c4cbf85283278d768f816ebd1a258ea6f9e39d4f" - integrity sha512-9auVQ2GzQ7nrU+lAr8KyY838YahElTX9HVjbQPPS2XjlxQ+na18G113OoBhyBGBtD6ZnO/SrUy5WR8EzOj1/Uw== - dependencies: - "@jest/fake-timers" "^28.1.1" - "@jest/types" "^28.1.1" - "@types/node" "*" - jest-mock "^28.1.1" - -"@jest/expect-utils@^28.1.1": - version "28.1.1" - resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-28.1.1.tgz#d84c346025b9f6f3886d02c48a6177e2b0360587" - integrity sha512-n/ghlvdhCdMI/hTcnn4qV57kQuV9OTsZzH1TTCVARANKhl6hXJqLKUkwX69ftMGpsbpt96SsDD8n8LD2d9+FRw== - dependencies: - jest-get-type "^28.0.2" - -"@jest/expect@^28.1.1": - version "28.1.1" - resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-28.1.1.tgz#ea4fcc8504b45835029221c0dc357c622a761326" - integrity sha512-/+tQprrFoT6lfkMj4mW/mUIfAmmk/+iQPmg7mLDIFOf2lyf7EBHaS+x3RbeR0VZVMe55IvX7QRoT/2aK3AuUXg== - dependencies: - expect "^28.1.1" - jest-snapshot "^28.1.1" - -"@jest/fake-timers@^28.1.1": - version "28.1.1" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-28.1.1.tgz#47ce33296ab9d680c76076d51ddbe65ceb3337f1" - integrity sha512-BY/3+TyLs5+q87rGWrGUY5f8e8uC3LsVHS9Diz8+FV3ARXL4sNnkLlIB8dvDvRrp+LUCGM+DLqlsYubizGUjIA== - dependencies: - "@jest/types" "^28.1.1" - "@sinonjs/fake-timers" "^9.1.1" - "@types/node" "*" - jest-message-util "^28.1.1" - jest-mock "^28.1.1" - jest-util "^28.1.1" - -"@jest/globals@^28.1.1": - version "28.1.1" - resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-28.1.1.tgz#c0a7977f85e26279cc090d9adcdf82b8a34c4061" - integrity sha512-dEgl/6v7ToB4vXItdvcltJBgny0xBE6xy6IYQrPJAJggdEinGxCDMivNv7sFzPcTITGquXD6UJwYxfJ/5ZwDSg== - dependencies: - "@jest/environment" "^28.1.1" - "@jest/expect" "^28.1.1" - "@jest/types" "^28.1.1" - -"@jest/reporters@^28.1.1": - version "28.1.1" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-28.1.1.tgz#9389f4bb3cce4d9b586f6195f83c79cd2a1c8662" - integrity sha512-597Zj4D4d88sZrzM4atEGLuO7SdA/YrOv9SRXHXRNC+/FwPCWxZhBAEzhXoiJzfRwn8zes/EjS8Lo6DouGN5Gg== - dependencies: - "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^28.1.1" - "@jest/test-result" "^28.1.1" - "@jest/transform" "^28.1.1" - "@jest/types" "^28.1.1" - "@jridgewell/trace-mapping" "^0.3.7" - "@types/node" "*" - chalk "^4.0.0" - collect-v8-coverage "^1.0.0" - exit "^0.1.2" - glob "^7.1.3" - graceful-fs "^4.2.9" - istanbul-lib-coverage "^3.0.0" - istanbul-lib-instrument "^5.1.0" - istanbul-lib-report "^3.0.0" - istanbul-lib-source-maps "^4.0.0" - istanbul-reports "^3.1.3" - jest-message-util "^28.1.1" - jest-util "^28.1.1" - jest-worker "^28.1.1" - slash "^3.0.0" - string-length "^4.0.1" - strip-ansi "^6.0.0" - terminal-link "^2.0.0" - v8-to-istanbul "^9.0.0" - -"@jest/schemas@^28.0.2": - version "28.0.2" - resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-28.0.2.tgz#08c30df6a8d07eafea0aef9fb222c5e26d72e613" - integrity sha512-YVDJZjd4izeTDkij00vHHAymNXQ6WWsdChFRK86qck6Jpr3DCL5W3Is3vslviRlP+bLuMYRLbdp98amMvqudhA== - dependencies: - "@sinclair/typebox" "^0.23.3" - -"@jest/source-map@^28.0.2": - version "28.0.2" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-28.0.2.tgz#914546f4410b67b1d42c262a1da7e0406b52dc90" - integrity sha512-Y9dxC8ZpN3kImkk0LkK5XCEneYMAXlZ8m5bflmSL5vrwyeUpJfentacCUg6fOb8NOpOO7hz2+l37MV77T6BFPw== - dependencies: - "@jridgewell/trace-mapping" "^0.3.7" - callsites "^3.0.0" - graceful-fs "^4.2.9" - -"@jest/test-result@^28.1.1": - version "28.1.1" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-28.1.1.tgz#c6f18d1bbb01aa88925dd687872a75f8414b317a" - integrity sha512-hPmkugBktqL6rRzwWAtp1JtYT4VHwv8OQ+9lE5Gymj6dHzubI/oJHMUpPOt8NrdVWSrz9S7bHjJUmv2ggFoUNQ== - dependencies: - "@jest/console" "^28.1.1" - "@jest/types" "^28.1.1" - "@types/istanbul-lib-coverage" "^2.0.0" - collect-v8-coverage "^1.0.0" - -"@jest/test-sequencer@^28.1.1": - version "28.1.1" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-28.1.1.tgz#f594ee2331df75000afe0d1ae3237630ecec732e" - integrity sha512-nuL+dNSVMcWB7OOtgb0EGH5AjO4UBCt68SLP08rwmC+iRhyuJWS9MtZ/MpipxFwKAlHFftbMsydXqWre8B0+XA== - dependencies: - "@jest/test-result" "^28.1.1" - graceful-fs "^4.2.9" - jest-haste-map "^28.1.1" - slash "^3.0.0" - -"@jest/transform@^28.1.1": - version "28.1.1" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-28.1.1.tgz#83541f2a3f612077c8501f49cc4e205d4e4a6b27" - integrity sha512-PkfaTUuvjUarl1EDr5ZQcCA++oXkFCP9QFUkG0yVKVmNObjhrqDy0kbMpMebfHWm3CCDHjYNem9eUSH8suVNHQ== - dependencies: - "@babel/core" "^7.11.6" - "@jest/types" "^28.1.1" - "@jridgewell/trace-mapping" "^0.3.7" - babel-plugin-istanbul "^6.1.1" - chalk "^4.0.0" - convert-source-map "^1.4.0" - fast-json-stable-stringify "^2.0.0" - graceful-fs "^4.2.9" - jest-haste-map "^28.1.1" - jest-regex-util "^28.0.2" - jest-util "^28.1.1" - micromatch "^4.0.4" - pirates "^4.0.4" - slash "^3.0.0" - write-file-atomic "^4.0.1" - -"@jest/types@^28.1.1": - version "28.1.1" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-28.1.1.tgz#d059bbc80e6da6eda9f081f293299348bd78ee0b" - integrity sha512-vRXVqSg1VhDnB8bWcmvLzmg0Bt9CRKVgHPXqYwvWMX3TvAjeO+nRuK6+VdTKCtWOvYlmkF/HqNAL/z+N3B53Kw== - dependencies: - "@jest/schemas" "^28.0.2" - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^3.0.0" - "@types/node" "*" - "@types/yargs" "^17.0.8" - chalk "^4.0.0" - -"@jridgewell/gen-mapping@^0.1.0": - version "0.1.1" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" - integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== - dependencies: - "@jridgewell/set-array" "^1.0.0" - "@jridgewell/sourcemap-codec" "^1.4.10" - -"@jridgewell/gen-mapping@^0.3.0": - version "0.3.1" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz#cf92a983c83466b8c0ce9124fadeaf09f7c66ea9" - integrity sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg== - dependencies: - "@jridgewell/set-array" "^1.0.0" - "@jridgewell/sourcemap-codec" "^1.4.10" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/resolve-uri@^3.0.3": - version "3.0.7" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz#30cd49820a962aff48c8fffc5cd760151fca61fe" - integrity sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA== - -"@jridgewell/set-array@^1.0.0": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.1.tgz#36a6acc93987adcf0ba50c66908bd0b70de8afea" - integrity sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ== - -"@jridgewell/sourcemap-codec@^1.4.10": - version "1.4.13" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz#b6461fb0c2964356c469e115f504c95ad97ab88c" - integrity sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w== - -"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.7", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.13" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz#dcfe3e95f224c8fe97a87a5235defec999aa92ea" - integrity sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w== - dependencies: - "@jridgewell/resolve-uri" "^3.0.3" - "@jridgewell/sourcemap-codec" "^1.4.10" - -"@material-ui/core@^4.12.4": - version "4.12.4" - resolved "https://registry.yarnpkg.com/@material-ui/core/-/core-4.12.4.tgz#4ac17488e8fcaf55eb6a7f5efb2a131e10138a73" - integrity sha512-tr7xekNlM9LjA6pagJmL8QCgZXaubWUwkJnoYcMKd4gw/t4XiyvnTkjdGrUVicyB2BsdaAv1tvow45bPM4sSwQ== - dependencies: - "@babel/runtime" "^7.4.4" - "@material-ui/styles" "^4.11.5" - "@material-ui/system" "^4.12.2" - "@material-ui/types" "5.1.0" - "@material-ui/utils" "^4.11.3" - "@types/react-transition-group" "^4.2.0" - clsx "^1.0.4" - hoist-non-react-statics "^3.3.2" - popper.js "1.16.1-lts" - prop-types "^15.7.2" - react-is "^16.8.0 || ^17.0.0" - react-transition-group "^4.4.0" - -"@material-ui/icons@^4.11.3": - version "4.11.3" - resolved "https://registry.yarnpkg.com/@material-ui/icons/-/icons-4.11.3.tgz#b0693709f9b161ce9ccde276a770d968484ecff1" - integrity sha512-IKHlyx6LDh8n19vzwH5RtHIOHl9Tu90aAAxcbWME6kp4dmvODM3UvOHJeMIDzUbd4muuJKHmlNoBN+mDY4XkBA== - dependencies: - "@babel/runtime" "^7.4.4" - -"@material-ui/styles@^4.11.5": - version "4.11.5" - resolved "https://registry.yarnpkg.com/@material-ui/styles/-/styles-4.11.5.tgz#19f84457df3aafd956ac863dbe156b1d88e2bbfb" - integrity sha512-o/41ot5JJiUsIETME9wVLAJrmIWL3j0R0Bj2kCOLbSfqEkKf0fmaPt+5vtblUh5eXr2S+J/8J3DaCb10+CzPGA== - dependencies: - "@babel/runtime" "^7.4.4" - "@emotion/hash" "^0.8.0" - "@material-ui/types" "5.1.0" - "@material-ui/utils" "^4.11.3" - clsx "^1.0.4" - csstype "^2.5.2" - hoist-non-react-statics "^3.3.2" - jss "^10.5.1" - jss-plugin-camel-case "^10.5.1" - jss-plugin-default-unit "^10.5.1" - jss-plugin-global "^10.5.1" - jss-plugin-nested "^10.5.1" - jss-plugin-props-sort "^10.5.1" - jss-plugin-rule-value-function "^10.5.1" - jss-plugin-vendor-prefixer "^10.5.1" - prop-types "^15.7.2" - -"@material-ui/system@^4.12.2": - version "4.12.2" - resolved "https://registry.yarnpkg.com/@material-ui/system/-/system-4.12.2.tgz#f5c389adf3fce4146edd489bf4082d461d86aa8b" - integrity sha512-6CSKu2MtmiJgcCGf6nBQpM8fLkuB9F55EKfbdTC80NND5wpTmKzwdhLYLH3zL4cLlK0gVaaltW7/wMuyTnN0Lw== - dependencies: - "@babel/runtime" "^7.4.4" - "@material-ui/utils" "^4.11.3" - csstype "^2.5.2" - prop-types "^15.7.2" - -"@material-ui/types@5.1.0": - version "5.1.0" - resolved "https://registry.yarnpkg.com/@material-ui/types/-/types-5.1.0.tgz#efa1c7a0b0eaa4c7c87ac0390445f0f88b0d88f2" - integrity sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A== - -"@material-ui/utils@^4.11.3": - version "4.11.3" - resolved "https://registry.yarnpkg.com/@material-ui/utils/-/utils-4.11.3.tgz#232bd86c4ea81dab714f21edad70b7fdf0253942" - integrity sha512-ZuQPV4rBK/V1j2dIkSSEcH5uT6AaHuKWFfotADHsC0wVL1NLd2WkFCm4ZZbX33iO4ydl6V0GPngKm8HZQ2oujg== - dependencies: - "@babel/runtime" "^7.4.4" - prop-types "^15.7.2" - react-is "^16.8.0 || ^17.0.0" - -"@next/env@12.2.0": - version "12.2.0" - resolved "https://registry.yarnpkg.com/@next/env/-/env-12.2.0.tgz#17ce2d9f5532b677829840037e06f208b7eed66b" - integrity sha512-/FCkDpL/8SodJEXvx/DYNlOD5ijTtkozf4PPulYPtkPOJaMPpBSOkzmsta4fnrnbdH6eZjbwbiXFdr6gSQCV4w== - -"@next/eslint-plugin-next@12.1.6": - version "12.1.6" - resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.1.6.tgz#dde3f98831f15923b25244588d924c716956292e" - integrity sha512-yNUtJ90NEiYFT6TJnNyofKMPYqirKDwpahcbxBgSIuABwYOdkGwzos1ZkYD51Qf0diYwpQZBeVqElTk7Q2WNqw== - dependencies: - glob "7.1.7" - -"@next/swc-android-arm-eabi@12.2.0": - version "12.2.0" - resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.2.0.tgz#f116756e668b267de84b76f068d267a12f18eb22" - integrity sha512-hbneH8DNRB2x0Nf5fPCYoL8a0osvdTCe4pvOc9Rv5CpDsoOlf8BWBs2OWpeP0U2BktGvIsuUhmISmdYYGyrvTw== - -"@next/swc-android-arm64@12.2.0": - version "12.2.0" - resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.2.0.tgz#cbd9e329cef386271d4e746c08416b5d69342c24" - integrity sha512-1eEk91JHjczcJomxJ8X0XaUeNcp5Lx1U2Ic7j15ouJ83oRX+3GIslOuabW2oPkSgXbHkThMClhirKpvG98kwZg== - -"@next/swc-darwin-arm64@12.2.0": - version "12.2.0" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.2.0.tgz#3473889157ba70b30ccdd4f59c46232d841744e2" - integrity sha512-x5U5gJd7ZvrEtTFnBld9O2bUlX8opu7mIQUqRzj7KeWzBwPhrIzTTsQXAiNqsaMuaRPvyHBVW/5d/6g6+89Y8g== - -"@next/swc-darwin-x64@12.2.0": - version "12.2.0" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.2.0.tgz#b25198c3ef4c906000af49e4787a757965f760bb" - integrity sha512-iwMNFsrAPjfedjKDv9AXPAV16PWIomP3qw/FfPaxkDVRbUls7BNdofBLzkQmqxqWh93WrawLwaqyXpJuAaiwJA== - -"@next/swc-freebsd-x64@12.2.0": - version "12.2.0" - resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-12.2.0.tgz#78e2213f8b703be0fef23a49507779b4a9842929" - integrity sha512-gRiAw8g3Akf6niTDLEm1Emfa7jXDjvaAj/crDO8hKASKA4Y1fS4kbi/tyWw5VtoFI4mUzRmCPmZ8eL0tBSG58A== - -"@next/swc-linux-arm-gnueabihf@12.2.0": - version "12.2.0" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.2.0.tgz#80a4baf0ba699357e7420e2dea998908dcef5055" - integrity sha512-/TJZkxaIpeEwnXh6A40trgwd40C5+LJroLUOEQwMOJdavLl62PjCA6dGl1pgooWLCIb5YdBQ0EG4ylzvLwS2+Q== - -"@next/swc-linux-arm64-gnu@12.2.0": - version "12.2.0" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.2.0.tgz#134a42ddea804d6bf04761607f774432c3126de6" - integrity sha512-++WAB4ElXCSOKG9H8r4ENF8EaV+w0QkrpjehmryFkQXmt5juVXz+nKDVlCRMwJU7A1O0Mie82XyEoOrf6Np1pA== - -"@next/swc-linux-arm64-musl@12.2.0": - version "12.2.0" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.2.0.tgz#c781ac642ad35e0578d8a8d19c638b0f31c1a334" - integrity sha512-XrqkHi/VglEn5zs2CYK6ofJGQySrd+Lr4YdmfJ7IhsCnMKkQY1ma9Hv5THwhZVof3e+6oFHrQ9bWrw9K4WTjFA== - -"@next/swc-linux-x64-gnu@12.2.0": - version "12.2.0" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.2.0.tgz#0e2235a59429eadd40ac8880aec18acdbc172a31" - integrity sha512-MyhHbAKVjpn065WzRbqpLu2krj4kHLi6RITQdD1ee+uxq9r2yg5Qe02l24NxKW+1/lkmpusl4Y5Lks7rBiJn4w== - -"@next/swc-linux-x64-musl@12.2.0": - version "12.2.0" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.2.0.tgz#b0a10db0d9e16f079429588a58f71fa3c3d46178" - integrity sha512-Tz1tJZ5egE0S/UqCd5V6ZPJsdSzv/8aa7FkwFmIJ9neLS8/00za+OY5pq470iZQbPrkTwpKzmfTTIPRVD5iqDg== - -"@next/swc-win32-arm64-msvc@12.2.0": - version "12.2.0" - resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.2.0.tgz#3063f850c9db7b774c69e9be74ad59986cf6fc34" - integrity sha512-0iRO/CPMCdCYUzuH6wXLnsfJX1ykBX4emOOvH0qIgtiZM0nVYbF8lkEyY2ph4XcsurpinS+ziWuYCXVqrOSqiw== - -"@next/swc-win32-ia32-msvc@12.2.0": - version "12.2.0" - resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.2.0.tgz#001bbadf3d2cf006c4991f728d1d23e4d5c0e7cc" - integrity sha512-8A26RJVcJHwIKm8xo/qk2ePRquJ6WCI2keV2qOW/Qm+ZXrPXHMIWPYABae/nKN243YFBNyPiHytjX37VrcpUhg== - -"@next/swc-win32-x64-msvc@12.2.0": - version "12.2.0" - resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.2.0.tgz#9f66664f9122ca555b96a5f2fc6e2af677bf801b" - integrity sha512-OI14ozFLThEV3ey6jE47zrzSTV/6eIMsvbwozo+XfdWqOPwQ7X00YkRx4GVMKMC0rM44oGS2gmwMKYpe4EblnA== - -"@nodelib/fs.scandir@2.1.5": - version "2.1.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" - integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== - dependencies: - "@nodelib/fs.stat" "2.0.5" - run-parallel "^1.1.9" - -"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" - integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== - -"@nodelib/fs.walk@^1.2.3": - version "1.2.8" - resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" - integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== - dependencies: - "@nodelib/fs.scandir" "2.1.5" - fastq "^1.6.0" - -"@npmcli/fs@^1.0.0": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-1.1.1.tgz#72f719fe935e687c56a4faecf3c03d06ba593257" - integrity sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ== - dependencies: - "@gar/promisify" "^1.0.1" - semver "^7.3.5" - -"@npmcli/move-file@^1.0.1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674" - integrity sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg== - dependencies: - mkdirp "^1.0.4" - rimraf "^3.0.2" - -"@react-leaflet/core@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@react-leaflet/core/-/core-2.0.0.tgz#212f4d87dc7681f40ca0e47d99672676c20c8ef6" - integrity sha512-SQQ5DCQIaLzvslN6wCXs5OWqtlvk1Ubv2n5d7zTM8SDl9hM5Rr2wVy7/nOCIY958D75/ovhq6ZoSvT7GLCX6sg== - -"@rushstack/eslint-patch@^1.1.3": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.1.3.tgz#6801033be7ff87a6b7cadaf5b337c9f366a3c4b0" - integrity sha512-WiBSI6JBIhC6LRIsB2Kwh8DsGTlbBU+mLRxJmAe3LjHTdkDpwIbEOZgoXBbZilk/vlfjK8i6nKRAvIRn1XaIMw== - -"@sinclair/typebox@^0.23.3": - version "0.23.5" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.23.5.tgz#93f7b9f4e3285a7a9ade7557d9a8d36809cbc47d" - integrity sha512-AFBVi/iT4g20DHoujvMH1aEDn8fGJh4xsRGCP6d8RpLPMqsNPvW01Jcn0QysXTsg++/xj25NmJsGyH9xug/wKg== - -"@sinonjs/commons@^1.7.0": - version "1.8.3" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" - integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== - dependencies: - type-detect "4.0.8" - -"@sinonjs/fake-timers@^9.1.1": - version "9.1.2" - resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz#4eaab737fab77332ab132d396a3c0d364bd0ea8c" - integrity sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw== - dependencies: - "@sinonjs/commons" "^1.7.0" - -"@swc/helpers@0.4.2": - version "0.4.2" - resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.4.2.tgz#ed1f6997ffbc22396665d9ba74e2a5c0a2d782f8" - integrity sha512-556Az0VX7WR6UdoTn4htt/l3zPQ7bsQWK+HqdG4swV7beUCxo/BqmvbOpUkTIm/9ih86LIf1qsUnywNL3obGHw== - dependencies: - tslib "^2.4.0" - -"@testing-library/dom@^8.5.0": - version "8.14.0" - resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-8.14.0.tgz#c9830a21006d87b9ef6e1aae306cf49b0283e28e" - integrity sha512-m8FOdUo77iMTwVRCyzWcqxlEIk+GnopbrRI15a0EaLbpZSCinIVI4kSQzWhkShK83GogvEFJSsHF3Ws0z1vrqA== - dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/runtime" "^7.12.5" - "@types/aria-query" "^4.2.0" - aria-query "^5.0.0" - chalk "^4.1.0" - dom-accessibility-api "^0.5.9" - lz-string "^1.4.4" - pretty-format "^27.0.2" - -"@testing-library/jest-dom@^5.16.4": - version "5.16.4" - resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-5.16.4.tgz#938302d7b8b483963a3ae821f1c0808f872245cd" - integrity sha512-Gy+IoFutbMQcky0k+bqqumXZ1cTGswLsFqmNLzNdSKkU9KGV2u9oXhukCbbJ9/LRPKiqwxEE8VpV/+YZlfkPUA== - dependencies: - "@babel/runtime" "^7.9.2" - "@types/testing-library__jest-dom" "^5.9.1" - aria-query "^5.0.0" - chalk "^3.0.0" - css "^3.0.0" - css.escape "^1.5.1" - dom-accessibility-api "^0.5.6" - lodash "^4.17.15" - redent "^3.0.0" - -"@testing-library/react@^13.3.0": - version "13.3.0" - resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-13.3.0.tgz#bf298bfbc5589326bbcc8052b211f3bb097a97c5" - integrity sha512-DB79aA426+deFgGSjnf5grczDPiL4taK3hFaa+M5q7q20Kcve9eQottOG5kZ74KEr55v0tU2CQormSSDK87zYQ== - dependencies: - "@babel/runtime" "^7.12.5" - "@testing-library/dom" "^8.5.0" - "@types/react-dom" "^18.0.0" - -"@testing-library/user-event@^14.2.1": - version "14.2.1" - resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-14.2.1.tgz#8c5ff2d004544bb2220e1d864f7267fe7eb6c556" - integrity sha512-HOr1QiODrq+0j9lKU5i10y9TbhxMBMRMGimNx10asdmau9cb8Xb1Vyg0GvTwyIL2ziQyh2kAloOtAQFBQVuecA== - -"@tootallnate/once@1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" - integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== - -"@tootallnate/once@2": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" - integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== - -"@types/aria-query@^4.2.0": - version "4.2.2" - resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-4.2.2.tgz#ed4e0ad92306a704f9fb132a0cfcf77486dbe2bc" - integrity sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig== - -"@types/babel__core@^7.1.14": - version "7.1.19" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.19.tgz#7b497495b7d1b4812bdb9d02804d0576f43ee460" - integrity sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - "@types/babel__generator" "*" - "@types/babel__template" "*" - "@types/babel__traverse" "*" - -"@types/babel__generator@*": - version "7.6.4" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" - integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== - dependencies: - "@babel/types" "^7.0.0" - -"@types/babel__template@*": - version "7.4.1" - resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" - integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - -"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.17.1" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.17.1.tgz#1a0e73e8c28c7e832656db372b779bfd2ef37314" - integrity sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA== - dependencies: - "@babel/types" "^7.3.0" - -"@types/geojson@*": - version "7946.0.8" - resolved "https://registry.yarnpkg.com/@types/geojson/-/geojson-7946.0.8.tgz#30744afdb385e2945e22f3b033f897f76b1f12ca" - integrity sha512-1rkryxURpr6aWP7R786/UQOkJ3PcpQiWkAXBmdWc7ryFWqN6a4xfK7BtjXvFBKO9LjQ+MWQSWxYeZX1OApnArA== - -"@types/graceful-fs@^4.1.3": - version "4.1.5" - resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" - integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== - dependencies: - "@types/node" "*" - -"@types/hoist-non-react-statics@^3.3.0", "@types/hoist-non-react-statics@^3.3.1": - version "3.3.1" - resolved "https://registry.yarnpkg.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz#1124aafe5118cb591977aeb1ceaaed1070eb039f" - integrity sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA== - dependencies: - "@types/react" "*" - hoist-non-react-statics "^3.3.0" - -"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" - integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== - -"@types/istanbul-lib-report@*": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" - integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== - dependencies: - "@types/istanbul-lib-coverage" "*" - -"@types/istanbul-reports@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" - integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== - dependencies: - "@types/istanbul-lib-report" "*" - -"@types/jest@*", "@types/jest@^28.1.3": - version "28.1.3" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-28.1.3.tgz#52f3f3e50ce59191ff5fbb1084896cc0cf30c9ce" - integrity sha512-Tsbjk8Y2hkBaY/gJsataeb4q9Mubw9EOz7+4RjPkzD5KjTvHHs7cpws22InaoXxAVAhF5HfFbzJjo6oKWqSZLw== - dependencies: - jest-matcher-utils "^28.0.0" - pretty-format "^28.0.0" - -"@types/jsdom@^16.2.4": - version "16.2.14" - resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-16.2.14.tgz#26fe9da6a8870715b154bb84cd3b2e53433d8720" - integrity sha512-6BAy1xXEmMuHeAJ4Fv4yXKwBDTGTOseExKE3OaHiNycdHdZw59KfYzrt0DkDluvwmik1HRt6QS7bImxUmpSy+w== - dependencies: - "@types/node" "*" - "@types/parse5" "*" - "@types/tough-cookie" "*" - -"@types/json-schema@^7.0.8": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" - integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== - -"@types/json5@^0.0.29": - version "0.0.29" - resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" - integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== - -"@types/leaflet@^1.7.11": - version "1.7.11" - resolved "https://registry.yarnpkg.com/@types/leaflet/-/leaflet-1.7.11.tgz#48b33b7a15b015bbb1e8950399298a112c3220c8" - integrity sha512-VwAYom2pfIAf/pLj1VR5aLltd4tOtHyvfaJlNYCoejzP2nu52PrMi1ehsLRMUS+bgafmIIKBV1cMfKeS+uJ0Vg== - dependencies: - "@types/geojson" "*" - -"@types/minimist@^1.2.0": - version "1.2.2" - resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" - integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== - -"@types/node@*", "@types/node@18.0.0": - version "18.0.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.0.0.tgz#67c7b724e1bcdd7a8821ce0d5ee184d3b4dd525a" - integrity sha512-cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA== - -"@types/normalize-package-data@^2.4.0": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" - integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== - -"@types/parse5@*": - version "6.0.3" - resolved "https://registry.yarnpkg.com/@types/parse5/-/parse5-6.0.3.tgz#705bb349e789efa06f43f128cef51240753424cb" - integrity sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g== - -"@types/prettier@^2.1.5": - version "2.6.3" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.6.3.tgz#68ada76827b0010d0db071f739314fa429943d0a" - integrity sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg== - -"@types/prop-types@*": - version "15.7.5" - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" - integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== - -"@types/react-dom@18.0.5", "@types/react-dom@^18.0.0": - version "18.0.5" - resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.0.5.tgz#330b2d472c22f796e5531446939eacef8378444a" - integrity sha512-OWPWTUrY/NIrjsAPkAk1wW9LZeIjSvkXRhclsFO8CZcZGCOg2G0YZy4ft+rOyYxy8B7ui5iZzi9OkDebZ7/QSA== - dependencies: - "@types/react" "*" - -"@types/react-redux@^7.1.24": - version "7.1.24" - resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.24.tgz#6caaff1603aba17b27d20f8ad073e4c077e975c0" - integrity sha512-7FkurKcS1k0FHZEtdbbgN8Oc6b+stGSfZYjQGicofJ0j4U0qIn/jaSvnP2pLwZKiai3/17xqqxkkrxTgN8UNbQ== - dependencies: - "@types/hoist-non-react-statics" "^3.3.0" - "@types/react" "*" - hoist-non-react-statics "^3.3.0" - redux "^4.0.0" - -"@types/react-transition-group@^4.2.0": - version "4.4.4" - resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.4.tgz#acd4cceaa2be6b757db61ed7b432e103242d163e" - integrity sha512-7gAPz7anVK5xzbeQW9wFBDg7G++aPLAFY0QaSMOou9rJZpbuI58WAuJrgu+qR92l61grlnCUe7AFX8KGahAgug== - dependencies: - "@types/react" "*" - -"@types/react@*", "@types/react@18.0.14": - version "18.0.14" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.14.tgz#e016616ffff51dba01b04945610fe3671fdbe06d" - integrity sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q== - dependencies: - "@types/prop-types" "*" - "@types/scheduler" "*" - csstype "^3.0.2" - -"@types/scheduler@*": - version "0.16.2" - resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" - integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== - -"@types/stack-utils@^2.0.0": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" - integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== - -"@types/testing-library__jest-dom@^5.9.1": - version "5.14.5" - resolved "https://registry.yarnpkg.com/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.5.tgz#d113709c90b3c75fdb127ec338dad7d5f86c974f" - integrity sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ== - dependencies: - "@types/jest" "*" - -"@types/tough-cookie@*": - version "4.0.2" - resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.2.tgz#6286b4c7228d58ab7866d19716f3696e03a09397" - integrity sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw== - -"@types/use-sync-external-store@^0.0.3": - version "0.0.3" - resolved "https://registry.yarnpkg.com/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz#b6725d5f4af24ace33b36fafd295136e75509f43" - integrity sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA== - -"@types/yargs-parser@*": - version "21.0.0" - resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" - integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== - -"@types/yargs@^17.0.8": - version "17.0.10" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.10.tgz#591522fce85d8739bca7b8bb90d048e4478d186a" - integrity sha512-gmEaFwpj/7f/ROdtIlci1R1VYU1J4j95m8T+Tj3iBgiBFKg1foE/PSl93bBd5T9LDXNPo8UlNN6W0qwD8O5OaA== - dependencies: - "@types/yargs-parser" "*" - -"@typescript-eslint/parser@^5.21.0": - version "5.29.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.29.0.tgz#41314b195b34d44ff38220caa55f3f93cfca43cf" - integrity sha512-ruKWTv+x0OOxbzIw9nW5oWlUopvP/IQDjB5ZqmTglLIoDTctLlAJpAQFpNPJP/ZI7hTT9sARBosEfaKbcFuECw== - dependencies: - "@typescript-eslint/scope-manager" "5.29.0" - "@typescript-eslint/types" "5.29.0" - "@typescript-eslint/typescript-estree" "5.29.0" - debug "^4.3.4" - -"@typescript-eslint/scope-manager@5.29.0": - version "5.29.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.29.0.tgz#2a6a32e3416cb133e9af8dcf54bf077a916aeed3" - integrity sha512-etbXUT0FygFi2ihcxDZjz21LtC+Eps9V2xVx09zFoN44RRHPrkMflidGMI+2dUs821zR1tDS6Oc9IXxIjOUZwA== - dependencies: - "@typescript-eslint/types" "5.29.0" - "@typescript-eslint/visitor-keys" "5.29.0" - -"@typescript-eslint/types@5.29.0": - version "5.29.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.29.0.tgz#7861d3d288c031703b2d97bc113696b4d8c19aab" - integrity sha512-X99VbqvAXOMdVyfFmksMy3u8p8yoRGITgU1joBJPzeYa0rhdf5ok9S56/itRoUSh99fiDoMtarSIJXo7H/SnOg== - -"@typescript-eslint/typescript-estree@5.29.0": - version "5.29.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.29.0.tgz#e83d19aa7fd2e74616aab2f25dfbe4de4f0b5577" - integrity sha512-mQvSUJ/JjGBdvo+1LwC+GY2XmSYjK1nAaVw2emp/E61wEVYEyibRHCqm1I1vEKbXCpUKuW4G7u9ZCaZhJbLoNQ== - dependencies: - "@typescript-eslint/types" "5.29.0" - "@typescript-eslint/visitor-keys" "5.29.0" - debug "^4.3.4" - globby "^11.1.0" - is-glob "^4.0.3" - semver "^7.3.7" - tsutils "^3.21.0" - -"@typescript-eslint/visitor-keys@5.29.0": - version "5.29.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.29.0.tgz#7a4749fa7ef5160c44a451bf060ac1dc6dfb77ee" - integrity sha512-Hpb/mCWsjILvikMQoZIE3voc9wtQcS0A9FUw3h8bhr9UxBdtI/tw1ZDZUOXHXLOVMedKCH5NxyzATwnU78bWCQ== - dependencies: - "@typescript-eslint/types" "5.29.0" - eslint-visitor-keys "^3.3.0" - -abab@^2.0.5, abab@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" - integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== - -abbrev@1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" - integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== - -accepts@~1.3.8: - version "1.3.8" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" - integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== - dependencies: - mime-types "~2.1.34" - negotiator "0.6.3" - -acorn-globals@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" - integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== - dependencies: - acorn "^7.1.1" - acorn-walk "^7.1.1" - -acorn-jsx@^5.3.2: - version "5.3.2" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" - integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== - -acorn-walk@^7.1.1: - version "7.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" - integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== - -acorn@^7.1.1: - version "7.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" - integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== - -acorn@^8.5.0, acorn@^8.7.1: - version "8.7.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz#0197122c843d1bf6d0a5e83220a788f278f63c30" - integrity sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A== - -agent-base@6, agent-base@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" - integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== - dependencies: - debug "4" - -agentkeepalive@^4.1.3: - version "4.2.1" - resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.2.1.tgz#a7975cbb9f83b367f06c90cc51ff28fe7d499717" - integrity sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA== - dependencies: - debug "^4.1.0" - depd "^1.1.2" - humanize-ms "^1.2.1" - -aggregate-error@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" - integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== - dependencies: - clean-stack "^2.0.0" - indent-string "^4.0.0" - -ajv-keywords@^3.5.2: - version "3.5.2" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" - integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== - -ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5: - version "6.12.6" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== - dependencies: - fast-deep-equal "^3.1.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ansi-escapes@^4.2.1: - version "4.3.2" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" - integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== - dependencies: - type-fest "^0.21.3" - -ansi-regex@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" - integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== - -ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -ansi-styles@^4.0.0, ansi-styles@^4.1.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== - dependencies: - color-convert "^2.0.1" - -ansi-styles@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" - integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== - -anymatch@^3.0.3: - version "3.1.2" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" - integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - -"aproba@^1.0.3 || ^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" - integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== - -are-we-there-yet@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz#372e0e7bd279d8e94c653aaa1f67200884bf3e1c" - integrity sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw== - dependencies: - delegates "^1.0.0" - readable-stream "^3.6.0" - -are-we-there-yet@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-3.0.0.tgz#ba20bd6b553e31d62fc8c31bd23d22b95734390d" - integrity sha512-0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw== - dependencies: - delegates "^1.0.0" - readable-stream "^3.6.0" - -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - dependencies: - sprintf-js "~1.0.2" - -argparse@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" - integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== - -aria-query@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b" - integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA== - dependencies: - "@babel/runtime" "^7.10.2" - "@babel/runtime-corejs3" "^7.10.2" - -aria-query@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.0.0.tgz#210c21aaf469613ee8c9a62c7f86525e058db52c" - integrity sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg== - -array-flatten@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" - integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== - -array-includes@^3.1.4, array-includes@^3.1.5: - version "3.1.5" - resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.5.tgz#2c320010db8d31031fd2a5f6b3bbd4b1aad31bdb" - integrity sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.19.5" - get-intrinsic "^1.1.1" - is-string "^1.0.7" - -array-union@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" - integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== - -array.prototype.flat@^1.2.5: - version "1.3.0" - resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz#0b0c1567bf57b38b56b4c97b8aa72ab45e4adc7b" - integrity sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.2" - es-shim-unscopables "^1.0.0" - -array.prototype.flatmap@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz#a7e8ed4225f4788a70cd910abcf0791e76a5534f" - integrity sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.2" - es-shim-unscopables "^1.0.0" - -arrify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" - integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== - -asn1@~0.2.3: - version "0.2.6" - resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d" - integrity sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ== - dependencies: - safer-buffer "~2.1.0" - -assert-plus@1.0.0, assert-plus@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" - integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== - -ast-types-flow@^0.0.7: - version "0.0.7" - resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" - integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== - -async-foreach@^0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" - integrity sha512-VUeSMD8nEGBWaZK4lizI1sf3yEC7pnAQ/mrI7pC2fBz2s/tq5jWWEngTwaf0Gruu/OoXRGLGg1XFqpYBiGTYJA== - -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== - -atob@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" - integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== - -aws-sign2@~0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" - integrity sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA== - -aws4@^1.8.0: - version "1.11.0" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59" - integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== - -axe-core@^4.3.5: - version "4.4.2" - resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.4.2.tgz#dcf7fb6dea866166c3eab33d68208afe4d5f670c" - integrity sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA== - -axios@^0.27.2: - version "0.27.2" - resolved "https://registry.yarnpkg.com/axios/-/axios-0.27.2.tgz#207658cc8621606e586c85db4b41a750e756d972" - integrity sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ== - dependencies: - follow-redirects "^1.14.9" - form-data "^4.0.0" - -axobject-query@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" - integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA== - -babel-jest@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-28.1.1.tgz#2a3a4ae50964695b2d694ccffe4bec537c5a3586" - integrity sha512-MEt0263viUdAkTq5D7upHPNxvt4n9uLUGa6pPz3WviNBMtOmStb1lIXS3QobnoqM+qnH+vr4EKlvhe8QcmxIYw== - dependencies: - "@jest/transform" "^28.1.1" - "@types/babel__core" "^7.1.14" - babel-plugin-istanbul "^6.1.1" - babel-preset-jest "^28.1.1" - chalk "^4.0.0" - graceful-fs "^4.2.9" - slash "^3.0.0" - -babel-plugin-istanbul@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" - integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@istanbuljs/load-nyc-config" "^1.0.0" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-instrument "^5.0.4" - test-exclude "^6.0.0" - -babel-plugin-jest-hoist@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-28.1.1.tgz#5e055cdcc47894f28341f87f5e35aad2df680b11" - integrity sha512-NovGCy5Hn25uMJSAU8FaHqzs13cFoOI4lhIujiepssjCKRsAo3TA734RDWSGxuFTsUJXerYOqQQodlxgmtqbzw== - dependencies: - "@babel/template" "^7.3.3" - "@babel/types" "^7.3.3" - "@types/babel__core" "^7.1.14" - "@types/babel__traverse" "^7.0.6" - -babel-preset-current-node-syntax@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" - integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== - dependencies: - "@babel/plugin-syntax-async-generators" "^7.8.4" - "@babel/plugin-syntax-bigint" "^7.8.3" - "@babel/plugin-syntax-class-properties" "^7.8.3" - "@babel/plugin-syntax-import-meta" "^7.8.3" - "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.8.3" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-syntax-top-level-await" "^7.8.3" - -babel-preset-jest@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-28.1.1.tgz#5b6e5e69f963eb2d70f739c607b8f723c0ee75e4" - integrity sha512-FCq9Oud0ReTeWtcneYf/48981aTfXYuB9gbU4rBNNJVBSQ6ssv7E6v/qvbBxtOWwZFXjLZwpg+W3q7J6vhH25g== - dependencies: - babel-plugin-jest-hoist "^28.1.1" - babel-preset-current-node-syntax "^1.0.0" - -balanced-match@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== - -base64-js@^1.3.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - -bcrypt-pbkdf@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" - integrity sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w== - dependencies: - tweetnacl "^0.14.3" - -big-integer@^1.6.16: - version "1.6.51" - resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.51.tgz#0df92a5d9880560d3ff2d5fd20245c889d130686" - integrity sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg== - -big.js@^5.2.2: - version "5.2.2" - resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" - integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== - -bl@^4.0.3: - version "4.1.0" - resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" - integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== - dependencies: - buffer "^5.5.0" - inherits "^2.0.4" - readable-stream "^3.4.0" - -body-parser@1.20.0: - version "1.20.0" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.0.tgz#3de69bd89011c11573d7bfee6a64f11b6bd27cc5" - integrity sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg== - dependencies: - bytes "3.1.2" - content-type "~1.0.4" - debug "2.6.9" - depd "2.0.0" - destroy "1.2.0" - http-errors "2.0.0" - iconv-lite "0.4.24" - on-finished "2.4.1" - qs "6.10.3" - raw-body "2.5.1" - type-is "~1.6.18" - unpipe "1.0.0" - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -braces@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - -broadcast-channel@^3.4.1: - version "3.7.0" - resolved "https://registry.yarnpkg.com/broadcast-channel/-/broadcast-channel-3.7.0.tgz#2dfa5c7b4289547ac3f6705f9c00af8723889937" - integrity sha512-cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg== - dependencies: - "@babel/runtime" "^7.7.2" - detect-node "^2.1.0" - js-sha3 "0.8.0" - microseconds "0.2.0" - nano-time "1.0.0" - oblivious-set "1.0.0" - rimraf "3.0.2" - unload "2.2.0" - -browser-process-hrtime@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" - integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== - -browserslist@^4.20.2: - version "4.21.0" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.0.tgz#7ab19572361a140ecd1e023e2c1ed95edda0cefe" - integrity sha512-UQxE0DIhRB5z/zDz9iA03BOfxaN2+GQdBYH/2WrSIWEUrnpzTPJbhqt+umq6r3acaPRTW1FNTkrcp0PXgtFkvA== - dependencies: - caniuse-lite "^1.0.30001358" - electron-to-chromium "^1.4.164" - node-releases "^2.0.5" - update-browserslist-db "^1.0.0" - -bs-logger@0.x: - version "0.2.6" - resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" - integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== - dependencies: - fast-json-stable-stringify "2.x" - -bser@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" - integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== - dependencies: - node-int64 "^0.4.0" - -buffer-from@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" - integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== - -buffer@^5.5.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" - integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.1.13" - -bytes@3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" - integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== - -cacache@^15.2.0: - version "15.3.0" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.3.0.tgz#dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb" - integrity sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ== - dependencies: - "@npmcli/fs" "^1.0.0" - "@npmcli/move-file" "^1.0.1" - chownr "^2.0.0" - fs-minipass "^2.0.0" - glob "^7.1.4" - infer-owner "^1.0.4" - lru-cache "^6.0.0" - minipass "^3.1.1" - minipass-collect "^1.0.2" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.2" - mkdirp "^1.0.3" - p-map "^4.0.0" - promise-inflight "^1.0.1" - rimraf "^3.0.2" - ssri "^8.0.1" - tar "^6.0.2" - unique-filename "^1.1.1" - -call-bind@^1.0.0, call-bind@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== - dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" - -callsites@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== - -camelcase-keys@^6.2.2: - version "6.2.2" - resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" - integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== - dependencies: - camelcase "^5.3.1" - map-obj "^4.0.0" - quick-lru "^4.0.1" - -camelcase@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - -camelcase@^6.2.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" - integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== - -caniuse-lite@^1.0.30001332, caniuse-lite@^1.0.30001358: - version "1.0.30001358" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001358.tgz#473d35dabf5e448b463095cab7924e96ccfb8c00" - integrity sha512-hvp8PSRymk85R20bsDra7ZTCpSVGN/PAz9pSAjPSjKC+rNmnUk5vCRgJwiTT/O4feQ/yu/drvZYpKxxhbFuChw== - -caseless@~0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" - integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== - -chalk@^2.0.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" - integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -char-regex@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" - integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== - -chownr@^1.1.1: - version "1.1.4" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" - integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== - -chownr@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" - integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== - -ci-info@^3.2.0: - version "3.3.2" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.3.2.tgz#6d2967ffa407466481c6c90b6e16b3098f080128" - integrity sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg== - -cjs-module-lexer@^1.0.0: - version "1.2.2" - resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" - integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== - -classnames@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.1.tgz#dfcfa3891e306ec1dad105d0e88f4417b8535e8e" - integrity sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA== - -clean-stack@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== - -cliui@^7.0.2: - version "7.0.4" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" - integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.0" - wrap-ansi "^7.0.0" - -clsx@^1.0.4: - version "1.1.1" - resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188" - integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA== - -co@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" - integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== - -collect-v8-coverage@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" - integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== - -color-convert@^1.9.0: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== - dependencies: - color-name "~1.1.4" - -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== - -color-name@^1.0.0, color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -color-string@^1.9.0: - version "1.9.1" - resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4" - integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg== - dependencies: - color-name "^1.0.0" - simple-swizzle "^0.2.2" - -color-support@^1.1.2, color-support@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" - integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== - -color@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/color/-/color-4.2.3.tgz#d781ecb5e57224ee43ea9627560107c0e0c6463a" - integrity sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A== - dependencies: - color-convert "^2.0.1" - color-string "^1.9.0" - -combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6: - version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - dependencies: - delayed-stream "~1.0.0" - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== - -console-control-strings@^1.0.0, console-control-strings@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" - integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== - -content-disposition@0.5.4: - version "0.5.4" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" - integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== - dependencies: - safe-buffer "5.2.1" - -content-type@~1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" - integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== - -convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" - integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== - dependencies: - safe-buffer "~5.1.1" - -cookie-signature@1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" - integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== - -cookie@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" - integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== - -core-js-pure@^3.20.2: - version "3.23.2" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.23.2.tgz#efe5e486469c5ed2d088d76e973eb12e74a930e7" - integrity sha512-t6u7H4Ff/yZNk+zqTr74UjCcZ3k8ApBryeLLV4rYQd9aF3gqmjjGjjR44ENfeBMH8VVvSynIjAJ0mUuFhzQtrA== - -core-util-is@1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== - -core-util-is@~1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" - integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== - -cross-spawn@^7.0.2, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -css-vendor@^2.0.8: - version "2.0.8" - resolved "https://registry.yarnpkg.com/css-vendor/-/css-vendor-2.0.8.tgz#e47f91d3bd3117d49180a3c935e62e3d9f7f449d" - integrity sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ== - dependencies: - "@babel/runtime" "^7.8.3" - is-in-browser "^1.0.2" - -css.escape@^1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb" - integrity sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg== - -css@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/css/-/css-3.0.0.tgz#4447a4d58fdd03367c516ca9f64ae365cee4aa5d" - integrity sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ== - dependencies: - inherits "^2.0.4" - source-map "^0.6.1" - source-map-resolve "^0.6.0" - -cssom@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.5.0.tgz#d254fa92cd8b6fbd83811b9fbaed34663cc17c36" - integrity sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw== - -cssom@~0.3.6: - version "0.3.8" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" - integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== - -cssstyle@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" - integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== - dependencies: - cssom "~0.3.6" - -csstype@^2.5.2: - version "2.6.20" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.20.tgz#9229c65ea0b260cf4d3d997cb06288e36a8d6dda" - integrity sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA== - -csstype@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.0.tgz#4ddcac3718d787cf9df0d1b7d15033925c8f29f2" - integrity sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA== - -damerau-levenshtein@^1.0.7: - version "1.0.8" - resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" - integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== - -dashdash@^1.12.0: - version "1.14.1" - resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" - integrity sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g== - dependencies: - assert-plus "^1.0.0" - -data-urls@^3.0.1: - version "3.0.2" - resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-3.0.2.tgz#9cf24a477ae22bcef5cd5f6f0bfbc1d2d3be9143" - integrity sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ== - dependencies: - abab "^2.0.6" - whatwg-mimetype "^3.0.0" - whatwg-url "^11.0.0" - -debug@2.6.9, debug@^2.6.9: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - dependencies: - ms "2.0.0" - -debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" - -debug@^3.2.7: - version "3.2.7" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" - integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== - dependencies: - ms "^2.1.1" - -decamelize-keys@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" - integrity sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg== - dependencies: - decamelize "^1.1.0" - map-obj "^1.0.0" - -decamelize@^1.1.0, decamelize@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== - -decimal.js@^10.3.1: - version "10.3.1" - resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783" - integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ== - -decode-uri-component@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" - integrity sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og== - -decompress-response@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" - integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== - dependencies: - mimic-response "^3.1.0" - -dedent@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" - integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== - -deep-extend@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" - integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== - -deep-is@^0.1.3, deep-is@~0.1.3: - version "0.1.4" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" - integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== - -deepmerge@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" - integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== - -define-properties@^1.1.3, define-properties@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" - integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== - dependencies: - has-property-descriptors "^1.0.0" - object-keys "^1.1.1" - -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== - -delegates@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" - integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== - -depd@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" - integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== - -depd@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" - integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== - -destroy@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" - integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== - -detect-libc@^2.0.0, detect-libc@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.1.tgz#e1897aa88fa6ad197862937fbc0441ef352ee0cd" - integrity sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w== - -detect-newline@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" - integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== - -detect-node@^2.0.4, detect-node@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" - integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== - -diff-sequences@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-28.1.1.tgz#9989dc731266dc2903457a70e996f3a041913ac6" - integrity sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw== - -dir-glob@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" - integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== - dependencies: - path-type "^4.0.0" - -doctrine@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" - integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== - dependencies: - esutils "^2.0.2" - -doctrine@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" - integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== - dependencies: - esutils "^2.0.2" - -dom-accessibility-api@^0.5.6, dom-accessibility-api@^0.5.9: - version "0.5.14" - resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.14.tgz#56082f71b1dc7aac69d83c4285eef39c15d93f56" - integrity sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg== - -dom-helpers@^5.0.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902" - integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA== - dependencies: - "@babel/runtime" "^7.8.7" - csstype "^3.0.2" - -domexception@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/domexception/-/domexception-4.0.0.tgz#4ad1be56ccadc86fc76d033353999a8037d03673" - integrity sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw== - dependencies: - webidl-conversions "^7.0.0" - -ecc-jsbn@~0.1.1: - version "0.1.2" - resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" - integrity sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw== - dependencies: - jsbn "~0.1.0" - safer-buffer "^2.1.0" - -ee-first@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" - integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== - -electron-to-chromium@^1.4.164: - version "1.4.165" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.165.tgz#a1ae079a4412b0c2d3bf6908e8db54511fb0bbac" - integrity sha512-DKQW1lqUSAYQvn9dnpK7mWaDpWbNOXQLXhfCi7Iwx0BKxdZOxkKcCyKw1l3ihWWW5iWSxKKbhEUoNRoHvl/hbA== - -emittery@^0.10.2: - version "0.10.2" - resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.10.2.tgz#902eec8aedb8c41938c46e9385e9db7e03182933" - integrity sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw== - -emoji-regex@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== - -emoji-regex@^9.2.2: - version "9.2.2" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" - integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== - -emojis-list@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" - integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== - -encodeurl@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" - integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== - -encoding@^0.1.12: - version "0.1.13" - resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" - integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== - dependencies: - iconv-lite "^0.6.2" - -end-of-stream@^1.1.0, end-of-stream@^1.4.1: - version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== - dependencies: - once "^1.4.0" - -env-paths@^2.2.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" - integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== - -err-code@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" - integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== - -error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - dependencies: - is-arrayish "^0.2.1" - -es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.5: - version "1.20.1" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.1.tgz#027292cd6ef44bd12b1913b828116f54787d1814" - integrity sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA== - dependencies: - call-bind "^1.0.2" - es-to-primitive "^1.2.1" - function-bind "^1.1.1" - function.prototype.name "^1.1.5" - get-intrinsic "^1.1.1" - get-symbol-description "^1.0.0" - has "^1.0.3" - has-property-descriptors "^1.0.0" - has-symbols "^1.0.3" - internal-slot "^1.0.3" - is-callable "^1.2.4" - is-negative-zero "^2.0.2" - is-regex "^1.1.4" - is-shared-array-buffer "^1.0.2" - is-string "^1.0.7" - is-weakref "^1.0.2" - object-inspect "^1.12.0" - object-keys "^1.1.1" - object.assign "^4.1.2" - regexp.prototype.flags "^1.4.3" - string.prototype.trimend "^1.0.5" - string.prototype.trimstart "^1.0.5" - unbox-primitive "^1.0.2" - -es-shim-unscopables@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" - integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== - dependencies: - has "^1.0.3" - -es-to-primitive@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== - dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" - -escalade@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== - -escape-html@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== - -escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== - -escape-string-regexp@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" - integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== - -escape-string-regexp@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" - integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== - -escodegen@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" - integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== - dependencies: - esprima "^4.0.1" - estraverse "^5.2.0" - esutils "^2.0.2" - optionator "^0.8.1" - optionalDependencies: - source-map "~0.6.1" - -eslint-config-next@12.1.6: - version "12.1.6" - resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-12.1.6.tgz#55097028982dce49159d8753000be3916ac55254" - integrity sha512-qoiS3g/EPzfCTkGkaPBSX9W0NGE/B1wNO3oWrd76QszVGrdpLggNqcO8+LR6MB0CNqtp9Q8NoeVrxNVbzM9hqA== - dependencies: - "@next/eslint-plugin-next" "12.1.6" - "@rushstack/eslint-patch" "^1.1.3" - "@typescript-eslint/parser" "^5.21.0" - eslint-import-resolver-node "^0.3.6" - eslint-import-resolver-typescript "^2.7.1" - eslint-plugin-import "^2.26.0" - eslint-plugin-jsx-a11y "^6.5.1" - eslint-plugin-react "^7.29.4" - eslint-plugin-react-hooks "^4.5.0" - -eslint-import-resolver-node@^0.3.6: - version "0.3.6" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd" - integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== - dependencies: - debug "^3.2.7" - resolve "^1.20.0" - -eslint-import-resolver-typescript@^2.7.1: - version "2.7.1" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz#a90a4a1c80da8d632df25994c4c5fdcdd02b8751" - integrity sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ== - dependencies: - debug "^4.3.4" - glob "^7.2.0" - is-glob "^4.0.3" - resolve "^1.22.0" - tsconfig-paths "^3.14.1" - -eslint-module-utils@^2.7.3: - version "2.7.3" - resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz#ad7e3a10552fdd0642e1e55292781bd6e34876ee" - integrity sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ== - dependencies: - debug "^3.2.7" - find-up "^2.1.0" - -eslint-plugin-import@^2.26.0: - version "2.26.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz#f812dc47be4f2b72b478a021605a59fc6fe8b88b" - integrity sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA== - dependencies: - array-includes "^3.1.4" - array.prototype.flat "^1.2.5" - debug "^2.6.9" - doctrine "^2.1.0" - eslint-import-resolver-node "^0.3.6" - eslint-module-utils "^2.7.3" - has "^1.0.3" - is-core-module "^2.8.1" - is-glob "^4.0.3" - minimatch "^3.1.2" - object.values "^1.1.5" - resolve "^1.22.0" - tsconfig-paths "^3.14.1" - -eslint-plugin-jsx-a11y@^6.5.1: - version "6.5.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz#cdbf2df901040ca140b6ec14715c988889c2a6d8" - integrity sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g== - dependencies: - "@babel/runtime" "^7.16.3" - aria-query "^4.2.2" - array-includes "^3.1.4" - ast-types-flow "^0.0.7" - axe-core "^4.3.5" - axobject-query "^2.2.0" - damerau-levenshtein "^1.0.7" - emoji-regex "^9.2.2" - has "^1.0.3" - jsx-ast-utils "^3.2.1" - language-tags "^1.0.5" - minimatch "^3.0.4" - -eslint-plugin-react-hooks@^4.5.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" - integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== - -eslint-plugin-react@^7.29.4: - version "7.30.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.30.0.tgz#8e7b1b2934b8426ac067a0febade1b13bd7064e3" - integrity sha512-RgwH7hjW48BleKsYyHK5vUAvxtE9SMPDKmcPRQgtRCYaZA0XQPt5FSkrU3nhz5ifzMZcA8opwmRJ2cmOO8tr5A== - dependencies: - array-includes "^3.1.5" - array.prototype.flatmap "^1.3.0" - doctrine "^2.1.0" - estraverse "^5.3.0" - jsx-ast-utils "^2.4.1 || ^3.0.0" - minimatch "^3.1.2" - object.entries "^1.1.5" - object.fromentries "^2.0.5" - object.hasown "^1.1.1" - object.values "^1.1.5" - prop-types "^15.8.1" - resolve "^2.0.0-next.3" - semver "^6.3.0" - string.prototype.matchall "^4.0.7" - -eslint-scope@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" - integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== - dependencies: - esrecurse "^4.3.0" - estraverse "^5.2.0" - -eslint-utils@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" - integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== - dependencies: - eslint-visitor-keys "^2.0.0" - -eslint-visitor-keys@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" - integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== - -eslint-visitor-keys@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" - integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== - -eslint@8.17.0: - version "8.17.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.17.0.tgz#1cfc4b6b6912f77d24b874ca1506b0fe09328c21" - integrity sha512-gq0m0BTJfci60Fz4nczYxNAlED+sMcihltndR8t9t1evnU/azx53x3t2UHXC/uRjcbvRw/XctpaNygSTcQD+Iw== - dependencies: - "@eslint/eslintrc" "^1.3.0" - "@humanwhocodes/config-array" "^0.9.2" - ajv "^6.10.0" - chalk "^4.0.0" - cross-spawn "^7.0.2" - debug "^4.3.2" - doctrine "^3.0.0" - escape-string-regexp "^4.0.0" - eslint-scope "^7.1.1" - eslint-utils "^3.0.0" - eslint-visitor-keys "^3.3.0" - espree "^9.3.2" - esquery "^1.4.0" - esutils "^2.0.2" - fast-deep-equal "^3.1.3" - file-entry-cache "^6.0.1" - functional-red-black-tree "^1.0.1" - glob-parent "^6.0.1" - globals "^13.15.0" - ignore "^5.2.0" - import-fresh "^3.0.0" - imurmurhash "^0.1.4" - is-glob "^4.0.0" - js-yaml "^4.1.0" - json-stable-stringify-without-jsonify "^1.0.1" - levn "^0.4.1" - lodash.merge "^4.6.2" - minimatch "^3.1.2" - natural-compare "^1.4.0" - optionator "^0.9.1" - regexpp "^3.2.0" - strip-ansi "^6.0.1" - strip-json-comments "^3.1.0" - text-table "^0.2.0" - v8-compile-cache "^2.0.3" - -espree@^9.3.2: - version "9.3.2" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.2.tgz#f58f77bd334731182801ced3380a8cc859091596" - integrity sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA== - dependencies: - acorn "^8.7.1" - acorn-jsx "^5.3.2" - eslint-visitor-keys "^3.3.0" - -esprima@^4.0.0, esprima@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - -esquery@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" - integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== - dependencies: - estraverse "^5.1.0" - -esrecurse@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" - integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== - dependencies: - estraverse "^5.2.0" - -estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" - integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== - -esutils@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - -etag@~1.8.1: - version "1.8.1" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" - integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== - -execa@^5.0.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" - integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== - dependencies: - cross-spawn "^7.0.3" - get-stream "^6.0.0" - human-signals "^2.1.0" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.1" - onetime "^5.1.2" - signal-exit "^3.0.3" - strip-final-newline "^2.0.0" - -exit@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" - integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== - -expand-template@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" - integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== - -expect@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/expect/-/expect-28.1.1.tgz#ca6fff65f6517cf7220c2e805a49c19aea30b420" - integrity sha512-/AANEwGL0tWBwzLNOvO0yUdy2D52jVdNXppOqswC49sxMN2cPWsGCQdzuIf9tj6hHoBQzNvx75JUYuQAckPo3w== - dependencies: - "@jest/expect-utils" "^28.1.1" - jest-get-type "^28.0.2" - jest-matcher-utils "^28.1.1" - jest-message-util "^28.1.1" - jest-util "^28.1.1" - -express@^4.13.4: - version "4.18.1" - resolved "https://registry.yarnpkg.com/express/-/express-4.18.1.tgz#7797de8b9c72c857b9cd0e14a5eea80666267caf" - integrity sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q== - dependencies: - accepts "~1.3.8" - array-flatten "1.1.1" - body-parser "1.20.0" - content-disposition "0.5.4" - content-type "~1.0.4" - cookie "0.5.0" - cookie-signature "1.0.6" - debug "2.6.9" - depd "2.0.0" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - finalhandler "1.2.0" - fresh "0.5.2" - http-errors "2.0.0" - merge-descriptors "1.0.1" - methods "~1.1.2" - on-finished "2.4.1" - parseurl "~1.3.3" - path-to-regexp "0.1.7" - proxy-addr "~2.0.7" - qs "6.10.3" - range-parser "~1.2.1" - safe-buffer "5.2.1" - send "0.18.0" - serve-static "1.15.0" - setprototypeof "1.2.0" - statuses "2.0.1" - type-is "~1.6.18" - utils-merge "1.0.1" - vary "~1.1.2" - -extend@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" - integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== - -extsprintf@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" - integrity sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g== - -extsprintf@^1.2.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz#8d172c064867f235c0c84a596806d279bf4bcc07" - integrity sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA== - -fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" - integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== - -fast-glob@^3.2.9: - version "3.2.11" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9" - integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.4" - -fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== - -fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== - -fastq@^1.6.0: - version "1.13.0" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" - integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== - dependencies: - reusify "^1.0.4" - -fb-watchman@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" - integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== - dependencies: - bser "2.1.1" - -file-entry-cache@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" - integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== - dependencies: - flat-cache "^3.0.4" - -file-loader@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d" - integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw== - dependencies: - loader-utils "^2.0.0" - schema-utils "^3.0.0" - -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - -finalhandler@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" - integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== - dependencies: - debug "2.6.9" - encodeurl "~1.0.2" - escape-html "~1.0.3" - on-finished "2.4.1" - parseurl "~1.3.3" - statuses "2.0.1" - unpipe "~1.0.0" - -find-up@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" - integrity sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ== - dependencies: - locate-path "^2.0.0" - -find-up@^4.0.0, find-up@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -flat-cache@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" - integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== - dependencies: - flatted "^3.1.0" - rimraf "^3.0.2" - -flatted@^3.1.0: - version "3.2.5" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3" - integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg== - -follow-redirects@^1.14.9: - version "1.15.1" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.1.tgz#0ca6a452306c9b276e4d3127483e29575e207ad5" - integrity sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA== - -forever-agent@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" - integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw== - -form-data@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" - integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.8" - mime-types "^2.1.12" - -form-data@~2.3.2: - version "2.3.3" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" - integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.6" - mime-types "^2.1.12" - -forwarded@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" - integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== - -fresh@0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" - integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== - -fs-constants@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" - integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== - -fs-minipass@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" - integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== - dependencies: - minipass "^3.0.0" - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== - -fsevents@^2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -function.prototype.name@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" - integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.0" - functions-have-names "^1.2.2" - -functional-red-black-tree@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" - integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== - -functions-have-names@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" - integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== - -gauge@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-3.0.2.tgz#03bf4441c044383908bcfa0656ad91803259b395" - integrity sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q== - dependencies: - aproba "^1.0.3 || ^2.0.0" - color-support "^1.1.2" - console-control-strings "^1.0.0" - has-unicode "^2.0.1" - object-assign "^4.1.1" - signal-exit "^3.0.0" - string-width "^4.2.3" - strip-ansi "^6.0.1" - wide-align "^1.1.2" - -gauge@^4.0.3: - version "4.0.4" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-4.0.4.tgz#52ff0652f2bbf607a989793d53b751bef2328dce" - integrity sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg== - dependencies: - aproba "^1.0.3 || ^2.0.0" - color-support "^1.1.3" - console-control-strings "^1.1.0" - has-unicode "^2.0.1" - signal-exit "^3.0.7" - string-width "^4.2.3" - strip-ansi "^6.0.1" - wide-align "^1.1.5" - -gaze@^1.0.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a" - integrity sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g== - dependencies: - globule "^1.0.0" - -gensync@^1.0.0-beta.2: - version "1.0.0-beta.2" - resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" - integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== - -get-caller-file@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - -get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.2.tgz#336975123e05ad0b7ba41f152ee4aadbea6cf598" - integrity sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA== - dependencies: - function-bind "^1.1.1" - has "^1.0.3" - has-symbols "^1.0.3" - -get-package-type@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" - integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== - -get-stdin@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" - integrity sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw== - -get-stream@^6.0.0: - version "6.0.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" - integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== - -get-symbol-description@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" - integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.1" - -getpass@^0.1.1: - version "0.1.7" - resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" - integrity sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng== - dependencies: - assert-plus "^1.0.0" - -github-from-package@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" - integrity sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw== - -glob-parent@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== - dependencies: - is-glob "^4.0.1" - -glob-parent@^6.0.1: - version "6.0.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" - integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== - dependencies: - is-glob "^4.0.3" - -glob@7.1.7, glob@~7.1.1: - version "7.1.7" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" - integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -glob@^7.0.0, glob@^7.0.3, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.2.0: - version "7.2.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" - integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.1.1" - once "^1.3.0" - path-is-absolute "^1.0.0" - -globals@^11.1.0: - version "11.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - -globals@^13.15.0: - version "13.15.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.15.0.tgz#38113218c907d2f7e98658af246cef8b77e90bac" - integrity sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog== - dependencies: - type-fest "^0.20.2" - -globby@^11.1.0: - version "11.1.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" - integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== - dependencies: - array-union "^2.1.0" - dir-glob "^3.0.1" - fast-glob "^3.2.9" - ignore "^5.2.0" - merge2 "^1.4.1" - slash "^3.0.0" - -globule@^1.0.0: - version "1.3.4" - resolved "https://registry.yarnpkg.com/globule/-/globule-1.3.4.tgz#7c11c43056055a75a6e68294453c17f2796170fb" - integrity sha512-OPTIfhMBh7JbBYDpa5b+Q5ptmMWKwcNcFSR/0c6t8V4f3ZAVBEsKNY37QdVqmLRYSMhOUGYrY0QhSoEpzGr/Eg== - dependencies: - glob "~7.1.1" - lodash "^4.17.21" - minimatch "~3.0.2" - -graceful-fs@^4.2.6, graceful-fs@^4.2.9: - version "4.2.10" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" - integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== - -har-schema@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" - integrity sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q== - -har-validator@~5.1.3: - version "5.1.5" - resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" - integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== - dependencies: - ajv "^6.12.3" - har-schema "^2.0.0" - -hard-rejection@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" - integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== - -has-bigints@^1.0.1, has-bigints@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" - integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== - -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - -has-property-descriptors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" - integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== - dependencies: - get-intrinsic "^1.1.1" - -has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== - -has-tostringtag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" - integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== - dependencies: - has-symbols "^1.0.2" - -has-unicode@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" - integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== - -has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" - integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== - dependencies: - react-is "^16.7.0" - -hosted-git-info@^2.1.4: - version "2.8.9" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" - integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== - -hosted-git-info@^4.0.1: - version "4.1.0" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" - integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== - dependencies: - lru-cache "^6.0.0" - -html-encoding-sniffer@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz#2cb1a8cf0db52414776e5b2a7a04d5dd98158de9" - integrity sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA== - dependencies: - whatwg-encoding "^2.0.0" - -html-escaper@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" - integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== - -http-cache-semantics@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" - integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== - -http-errors@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" - integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== - dependencies: - depd "2.0.0" - inherits "2.0.4" - setprototypeof "1.2.0" - statuses "2.0.1" - toidentifier "1.0.1" - -http-proxy-agent@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" - integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== - dependencies: - "@tootallnate/once" "1" - agent-base "6" - debug "4" - -http-proxy-agent@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" - integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== - dependencies: - "@tootallnate/once" "2" - agent-base "6" - debug "4" - -http-signature@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" - integrity sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ== - dependencies: - assert-plus "^1.0.0" - jsprim "^1.2.2" - sshpk "^1.7.0" - -https-proxy-agent@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" - integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== - dependencies: - agent-base "6" - debug "4" - -human-signals@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" - integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== - -humanize-ms@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" - integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== - dependencies: - ms "^2.0.0" - -hyphenate-style-name@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz#691879af8e220aea5750e8827db4ef62a54e361d" - integrity sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ== - -iconv-lite@0.4.24: - version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - -iconv-lite@0.6.3, iconv-lite@^0.6.2: - version "0.6.3" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" - integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== - dependencies: - safer-buffer ">= 2.1.2 < 3.0.0" - -ieee754@^1.1.13: - version "1.2.1" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" - integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== - -ignore@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" - integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== - -import-fresh@^3.0.0, import-fresh@^3.2.1: - version "3.3.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" - integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== - dependencies: - parent-module "^1.0.0" - resolve-from "^4.0.0" - -import-local@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" - integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== - dependencies: - pkg-dir "^4.2.0" - resolve-cwd "^3.0.0" - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== - -indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== - -infer-owner@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" - integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@2.0.4, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -ini@~1.3.0: - version "1.3.8" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" - integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== - -internal-slot@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" - integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== - dependencies: - get-intrinsic "^1.1.0" - has "^1.0.3" - side-channel "^1.0.4" - -ip@^1.1.5: - version "1.1.8" - resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.8.tgz#ae05948f6b075435ed3307acce04629da8cdbf48" - integrity sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg== - -ipaddr.js@1.9.1: - version "1.9.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" - integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== - -is-arrayish@^0.3.1: - version "0.3.2" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" - integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== - -is-bigint@^1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" - integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== - dependencies: - has-bigints "^1.0.1" - -is-boolean-object@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" - integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-callable@^1.1.4, is-callable@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945" - integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== - -is-core-module@^2.5.0, is-core-module@^2.8.1, is-core-module@^2.9.0: - version "2.9.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz#e1c34429cd51c6dd9e09e0799e396e27b19a9c69" - integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A== - dependencies: - has "^1.0.3" - -is-date-object@^1.0.1: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" - integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== - dependencies: - has-tostringtag "^1.0.0" - -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== - -is-fullwidth-code-point@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" - integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== - -is-generator-fn@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" - integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== - -is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== - dependencies: - is-extglob "^2.1.1" - -is-in-browser@^1.0.2, is-in-browser@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/is-in-browser/-/is-in-browser-1.1.3.tgz#56ff4db683a078c6082eb95dad7dc62e1d04f835" - integrity sha512-FeXIBgG/CPGd/WUxuEyvgGTEfwiG9Z4EKGxjNMRqviiIIfsmgrpnHLffEDdwUHqNva1VEW91o3xBT/m8Elgl9g== - -is-lambda@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" - integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== - -is-negative-zero@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" - integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== - -is-number-object@^1.0.4: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" - integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== - dependencies: - has-tostringtag "^1.0.0" - -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - -is-plain-obj@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" - integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== - -is-potential-custom-element-name@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" - integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== - -is-regex@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" - integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-shared-array-buffer@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" - integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== - dependencies: - call-bind "^1.0.2" - -is-stream@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" - integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== - -is-string@^1.0.5, is-string@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" - integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== - dependencies: - has-tostringtag "^1.0.0" - -is-symbol@^1.0.2, is-symbol@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" - integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== - dependencies: - has-symbols "^1.0.2" - -is-typedarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" - integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== - -is-weakref@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" - integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== - dependencies: - call-bind "^1.0.2" - -isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== - -isstream@~0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" - integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== - -istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" - integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== - -istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz#31d18bdd127f825dd02ea7bfdfd906f8ab840e9f" - integrity sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A== - dependencies: - "@babel/core" "^7.12.3" - "@babel/parser" "^7.14.7" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-coverage "^3.2.0" - semver "^6.3.0" - -istanbul-lib-report@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" - integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== - dependencies: - istanbul-lib-coverage "^3.0.0" - make-dir "^3.0.0" - supports-color "^7.1.0" - -istanbul-lib-source-maps@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" - integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== - dependencies: - debug "^4.1.1" - istanbul-lib-coverage "^3.0.0" - source-map "^0.6.1" - -istanbul-reports@^3.1.3: - version "3.1.4" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.4.tgz#1b6f068ecbc6c331040aab5741991273e609e40c" - integrity sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw== - dependencies: - html-escaper "^2.0.0" - istanbul-lib-report "^3.0.0" - -jest-changed-files@^28.0.2: - version "28.0.2" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-28.0.2.tgz#7d7810660a5bd043af9e9cfbe4d58adb05e91531" - integrity sha512-QX9u+5I2s54ZnGoMEjiM2WeBvJR2J7w/8ZUmH2um/WLAuGAYFQcsVXY9+1YL6k0H/AGUdH8pXUAv6erDqEsvIA== - dependencies: - execa "^5.0.0" - throat "^6.0.1" - -jest-circus@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-28.1.1.tgz#3d27da6a974d85a466dc0cdc6ddeb58daaa57bb4" - integrity sha512-75+BBVTsL4+p2w198DQpCeyh1RdaS2lhEG87HkaFX/UG0gJExVq2skG2pT7XZEGBubNj2CytcWSPan4QEPNosw== - dependencies: - "@jest/environment" "^28.1.1" - "@jest/expect" "^28.1.1" - "@jest/test-result" "^28.1.1" - "@jest/types" "^28.1.1" - "@types/node" "*" - chalk "^4.0.0" - co "^4.6.0" - dedent "^0.7.0" - is-generator-fn "^2.0.0" - jest-each "^28.1.1" - jest-matcher-utils "^28.1.1" - jest-message-util "^28.1.1" - jest-runtime "^28.1.1" - jest-snapshot "^28.1.1" - jest-util "^28.1.1" - pretty-format "^28.1.1" - slash "^3.0.0" - stack-utils "^2.0.3" - throat "^6.0.1" - -jest-cli@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-28.1.1.tgz#23ddfde8940e1818585ae4a568877b33b0e51cfe" - integrity sha512-+sUfVbJqb1OjBZ0OdBbI6OWfYM1i7bSfzYy6gze1F1w3OKWq8ZTEKkZ8a7ZQPq6G/G1qMh/uKqpdWhgl11NFQQ== - dependencies: - "@jest/core" "^28.1.1" - "@jest/test-result" "^28.1.1" - "@jest/types" "^28.1.1" - chalk "^4.0.0" - exit "^0.1.2" - graceful-fs "^4.2.9" - import-local "^3.0.2" - jest-config "^28.1.1" - jest-util "^28.1.1" - jest-validate "^28.1.1" - prompts "^2.0.1" - yargs "^17.3.1" - -jest-config@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-28.1.1.tgz#e90b97b984f14a6c24a221859e81b258990fce2f" - integrity sha512-tASynMhS+jVV85zKvjfbJ8nUyJS/jUSYZ5KQxLUN2ZCvcQc/OmhQl2j6VEL3ezQkNofxn5pQ3SPYWPHb0unTZA== - dependencies: - "@babel/core" "^7.11.6" - "@jest/test-sequencer" "^28.1.1" - "@jest/types" "^28.1.1" - babel-jest "^28.1.1" - chalk "^4.0.0" - ci-info "^3.2.0" - deepmerge "^4.2.2" - glob "^7.1.3" - graceful-fs "^4.2.9" - jest-circus "^28.1.1" - jest-environment-node "^28.1.1" - jest-get-type "^28.0.2" - jest-regex-util "^28.0.2" - jest-resolve "^28.1.1" - jest-runner "^28.1.1" - jest-util "^28.1.1" - jest-validate "^28.1.1" - micromatch "^4.0.4" - parse-json "^5.2.0" - pretty-format "^28.1.1" - slash "^3.0.0" - strip-json-comments "^3.1.1" - -jest-diff@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-28.1.1.tgz#1a3eedfd81ae79810931c63a1d0f201b9120106c" - integrity sha512-/MUUxeR2fHbqHoMMiffe/Afm+U8U4olFRJ0hiVG2lZatPJcnGxx292ustVu7bULhjV65IYMxRdploAKLbcrsyg== - dependencies: - chalk "^4.0.0" - diff-sequences "^28.1.1" - jest-get-type "^28.0.2" - pretty-format "^28.1.1" - -jest-docblock@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-28.1.1.tgz#6f515c3bf841516d82ecd57a62eed9204c2f42a8" - integrity sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA== - dependencies: - detect-newline "^3.0.0" - -jest-each@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-28.1.1.tgz#ba5238dacf4f31d9fe23ddc2c44c01e7c23885c4" - integrity sha512-A042rqh17ZvEhRceDMi784ppoXR7MWGDEKTXEZXb4svt0eShMZvijGxzKsx+yIjeE8QYmHPrnHiTSQVhN4nqaw== - dependencies: - "@jest/types" "^28.1.1" - chalk "^4.0.0" - jest-get-type "^28.0.2" - jest-util "^28.1.1" - pretty-format "^28.1.1" - -jest-environment-jsdom@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-28.1.1.tgz#8bd721915b32f9b196723292c4461a0ad548b55b" - integrity sha512-41ZvgSoPNcKG5q3LuuOcAczdBxRq9DbZkPe24okN6ZCmiZdAfFtPg3z+lOtsT1fM6OAERApKT+3m0MRDQH2zIA== - dependencies: - "@jest/environment" "^28.1.1" - "@jest/fake-timers" "^28.1.1" - "@jest/types" "^28.1.1" - "@types/jsdom" "^16.2.4" - "@types/node" "*" - jest-mock "^28.1.1" - jest-util "^28.1.1" - jsdom "^19.0.0" - -jest-environment-node@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-28.1.1.tgz#1c86c59003a7d319fa06ea3b1bbda6c193715c67" - integrity sha512-2aV/eeY/WNgUUJrrkDJ3cFEigjC5fqT1+fCclrY6paqJ5zVPoM//sHmfgUUp7WLYxIdbPwMiVIzejpN56MxnNA== - dependencies: - "@jest/environment" "^28.1.1" - "@jest/fake-timers" "^28.1.1" - "@jest/types" "^28.1.1" - "@types/node" "*" - jest-mock "^28.1.1" - jest-util "^28.1.1" - -jest-get-type@^28.0.2: - version "28.0.2" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-28.0.2.tgz#34622e628e4fdcd793d46db8a242227901fcf203" - integrity sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA== - -jest-haste-map@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-28.1.1.tgz#471685f1acd365a9394745bb97c8fc16289adca3" - integrity sha512-ZrRSE2o3Ezh7sb1KmeLEZRZ4mgufbrMwolcFHNRSjKZhpLa8TdooXOOFlSwoUzlbVs1t0l7upVRW2K7RWGHzbQ== - dependencies: - "@jest/types" "^28.1.1" - "@types/graceful-fs" "^4.1.3" - "@types/node" "*" - anymatch "^3.0.3" - fb-watchman "^2.0.0" - graceful-fs "^4.2.9" - jest-regex-util "^28.0.2" - jest-util "^28.1.1" - jest-worker "^28.1.1" - micromatch "^4.0.4" - walker "^1.0.8" - optionalDependencies: - fsevents "^2.3.2" - -jest-leak-detector@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-28.1.1.tgz#537f37afd610a4b3f4cab15e06baf60484548efb" - integrity sha512-4jvs8V8kLbAaotE+wFR7vfUGf603cwYtFf1/PYEsyX2BAjSzj8hQSVTP6OWzseTl0xL6dyHuKs2JAks7Pfubmw== - dependencies: - jest-get-type "^28.0.2" - pretty-format "^28.1.1" - -jest-matcher-utils@^28.0.0, jest-matcher-utils@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-28.1.1.tgz#a7c4653c2b782ec96796eb3088060720f1e29304" - integrity sha512-NPJPRWrbmR2nAJ+1nmnfcKKzSwgfaciCCrYZzVnNoxVoyusYWIjkBMNvu0RHJe7dNj4hH3uZOPZsQA+xAYWqsw== - dependencies: - chalk "^4.0.0" - jest-diff "^28.1.1" - jest-get-type "^28.0.2" - pretty-format "^28.1.1" - -jest-message-util@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-28.1.1.tgz#60aa0b475cfc08c8a9363ed2fb9108514dd9ab89" - integrity sha512-xoDOOT66fLfmTRiqkoLIU7v42mal/SqwDKvfmfiWAdJMSJiU+ozgluO7KbvoAgiwIrrGZsV7viETjc8GNrA/IQ== - dependencies: - "@babel/code-frame" "^7.12.13" - "@jest/types" "^28.1.1" - "@types/stack-utils" "^2.0.0" - chalk "^4.0.0" - graceful-fs "^4.2.9" - micromatch "^4.0.4" - pretty-format "^28.1.1" - slash "^3.0.0" - stack-utils "^2.0.3" - -jest-mock@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-28.1.1.tgz#37903d269427fa1ef5b2447be874e1c62a39a371" - integrity sha512-bDCb0FjfsmKweAvE09dZT59IMkzgN0fYBH6t5S45NoJfd2DHkS3ySG2K+hucortryhO3fVuXdlxWcbtIuV/Skw== - dependencies: - "@jest/types" "^28.1.1" - "@types/node" "*" - -jest-pnp-resolver@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" - integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== - -jest-regex-util@^28.0.2: - version "28.0.2" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-28.0.2.tgz#afdc377a3b25fb6e80825adcf76c854e5bf47ead" - integrity sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw== - -jest-resolve-dependencies@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.1.tgz#3dffaaa56f4b41bc6b61053899d1756401763a27" - integrity sha512-p8Y150xYJth4EXhOuB8FzmS9r8IGLEioiaetgdNGb9VHka4fl0zqWlVe4v7mSkYOuEUg2uB61iE+zySDgrOmgQ== - dependencies: - jest-regex-util "^28.0.2" - jest-snapshot "^28.1.1" - -jest-resolve@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-28.1.1.tgz#bc2eaf384abdcc1aaf3ba7c50d1adf01e59095e5" - integrity sha512-/d1UbyUkf9nvsgdBildLe6LAD4DalgkgZcKd0nZ8XUGPyA/7fsnaQIlKVnDiuUXv/IeZhPEDrRJubVSulxrShA== - dependencies: - chalk "^4.0.0" - graceful-fs "^4.2.9" - jest-haste-map "^28.1.1" - jest-pnp-resolver "^1.2.2" - jest-util "^28.1.1" - jest-validate "^28.1.1" - resolve "^1.20.0" - resolve.exports "^1.1.0" - slash "^3.0.0" - -jest-runner@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-28.1.1.tgz#9ecdb3f27a00059986797aa6b012ba8306aa436c" - integrity sha512-W5oFUiDBgTsCloTAj6q95wEvYDB0pxIhY6bc5F26OucnwBN+K58xGTGbliSMI4ChQal5eANDF+xvELaYkJxTmA== - dependencies: - "@jest/console" "^28.1.1" - "@jest/environment" "^28.1.1" - "@jest/test-result" "^28.1.1" - "@jest/transform" "^28.1.1" - "@jest/types" "^28.1.1" - "@types/node" "*" - chalk "^4.0.0" - emittery "^0.10.2" - graceful-fs "^4.2.9" - jest-docblock "^28.1.1" - jest-environment-node "^28.1.1" - jest-haste-map "^28.1.1" - jest-leak-detector "^28.1.1" - jest-message-util "^28.1.1" - jest-resolve "^28.1.1" - jest-runtime "^28.1.1" - jest-util "^28.1.1" - jest-watcher "^28.1.1" - jest-worker "^28.1.1" - source-map-support "0.5.13" - throat "^6.0.1" - -jest-runtime@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-28.1.1.tgz#569e1dc3c36c6c4c0b29516c1c49b6ad580abdaf" - integrity sha512-J89qEJWW0leOsqyi0D9zHpFEYHwwafFdS9xgvhFHtIdRghbadodI0eA+DrthK/1PebBv3Px8mFSMGKrtaVnleg== - dependencies: - "@jest/environment" "^28.1.1" - "@jest/fake-timers" "^28.1.1" - "@jest/globals" "^28.1.1" - "@jest/source-map" "^28.0.2" - "@jest/test-result" "^28.1.1" - "@jest/transform" "^28.1.1" - "@jest/types" "^28.1.1" - chalk "^4.0.0" - cjs-module-lexer "^1.0.0" - collect-v8-coverage "^1.0.0" - execa "^5.0.0" - glob "^7.1.3" - graceful-fs "^4.2.9" - jest-haste-map "^28.1.1" - jest-message-util "^28.1.1" - jest-mock "^28.1.1" - jest-regex-util "^28.0.2" - jest-resolve "^28.1.1" - jest-snapshot "^28.1.1" - jest-util "^28.1.1" - slash "^3.0.0" - strip-bom "^4.0.0" - -jest-snapshot@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-28.1.1.tgz#ab825c16c8d8b5e883bd57eee6ca8748c42ab848" - integrity sha512-1KjqHJ98adRcbIdMizjF5DipwZFbvxym/kFO4g4fVZCZRxH/dqV8TiBFCa6rqic3p0karsy8RWS1y4E07b7P0A== - dependencies: - "@babel/core" "^7.11.6" - "@babel/generator" "^7.7.2" - "@babel/plugin-syntax-typescript" "^7.7.2" - "@babel/traverse" "^7.7.2" - "@babel/types" "^7.3.3" - "@jest/expect-utils" "^28.1.1" - "@jest/transform" "^28.1.1" - "@jest/types" "^28.1.1" - "@types/babel__traverse" "^7.0.6" - "@types/prettier" "^2.1.5" - babel-preset-current-node-syntax "^1.0.0" - chalk "^4.0.0" - expect "^28.1.1" - graceful-fs "^4.2.9" - jest-diff "^28.1.1" - jest-get-type "^28.0.2" - jest-haste-map "^28.1.1" - jest-matcher-utils "^28.1.1" - jest-message-util "^28.1.1" - jest-util "^28.1.1" - natural-compare "^1.4.0" - pretty-format "^28.1.1" - semver "^7.3.5" - -jest-util@^28.0.0, jest-util@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-28.1.1.tgz#ff39e436a1aca397c0ab998db5a51ae2b7080d05" - integrity sha512-FktOu7ca1DZSyhPAxgxB6hfh2+9zMoJ7aEQA759Z6p45NuO8mWcqujH+UdHlCm/V6JTWwDztM2ITCzU1ijJAfw== - dependencies: - "@jest/types" "^28.1.1" - "@types/node" "*" - chalk "^4.0.0" - ci-info "^3.2.0" - graceful-fs "^4.2.9" - picomatch "^2.2.3" - -jest-validate@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-28.1.1.tgz#59b7b339b3c85b5144bd0c06ad3600f503a4acc8" - integrity sha512-Kpf6gcClqFCIZ4ti5++XemYJWUPCFUW+N2gknn+KgnDf549iLul3cBuKVe1YcWRlaF8tZV8eJCap0eECOEE3Ug== - dependencies: - "@jest/types" "^28.1.1" - camelcase "^6.2.0" - chalk "^4.0.0" - jest-get-type "^28.0.2" - leven "^3.1.0" - pretty-format "^28.1.1" - -jest-watcher@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-28.1.1.tgz#533597fb3bfefd52b5cd115cd916cffd237fb60c" - integrity sha512-RQIpeZ8EIJMxbQrXpJQYIIlubBnB9imEHsxxE41f54ZwcqWLysL/A0ZcdMirf+XsMn3xfphVQVV4EW0/p7i7Ug== - dependencies: - "@jest/test-result" "^28.1.1" - "@jest/types" "^28.1.1" - "@types/node" "*" - ansi-escapes "^4.2.1" - chalk "^4.0.0" - emittery "^0.10.2" - jest-util "^28.1.1" - string-length "^4.0.1" - -jest-worker@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-28.1.1.tgz#3480c73247171dfd01eda77200f0063ab6a3bf28" - integrity sha512-Au7slXB08C6h+xbJPp7VIb6U0XX5Kc9uel/WFc6/rcTzGiaVCBRngBExSYuXSLFPULPSYU3cJ3ybS988lNFQhQ== - dependencies: - "@types/node" "*" - merge-stream "^2.0.0" - supports-color "^8.0.0" - -jest@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest/-/jest-28.1.1.tgz#3c39a3a09791e16e9ef283597d24ab19a0df701e" - integrity sha512-qw9YHBnjt6TCbIDMPMpJZqf9E12rh6869iZaN08/vpOGgHJSAaLLUn6H8W3IAEuy34Ls3rct064mZLETkxJ2XA== - dependencies: - "@jest/core" "^28.1.1" - "@jest/types" "^28.1.1" - import-local "^3.0.2" - jest-cli "^28.1.1" - -js-base64@^2.4.3: - version "2.6.4" - resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.6.4.tgz#f4e686c5de1ea1f867dbcad3d46d969428df98c4" - integrity sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ== - -js-sha3@0.8.0: - version "0.8.0" - resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" - integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== - -"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-yaml@^3.13.1: - version "3.14.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" - integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - -js-yaml@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" - integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== - dependencies: - argparse "^2.0.1" - -jsbn@~0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" - integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg== - -jsdom@^19.0.0: - version "19.0.0" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-19.0.0.tgz#93e67c149fe26816d38a849ea30ac93677e16b6a" - integrity sha512-RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A== - dependencies: - abab "^2.0.5" - acorn "^8.5.0" - acorn-globals "^6.0.0" - cssom "^0.5.0" - cssstyle "^2.3.0" - data-urls "^3.0.1" - decimal.js "^10.3.1" - domexception "^4.0.0" - escodegen "^2.0.0" - form-data "^4.0.0" - html-encoding-sniffer "^3.0.0" - http-proxy-agent "^5.0.0" - https-proxy-agent "^5.0.0" - is-potential-custom-element-name "^1.0.1" - nwsapi "^2.2.0" - parse5 "6.0.1" - saxes "^5.0.1" - symbol-tree "^3.2.4" - tough-cookie "^4.0.0" - w3c-hr-time "^1.0.2" - w3c-xmlserializer "^3.0.0" - webidl-conversions "^7.0.0" - whatwg-encoding "^2.0.0" - whatwg-mimetype "^3.0.0" - whatwg-url "^10.0.0" - ws "^8.2.3" - xml-name-validator "^4.0.0" - -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - -json-parse-even-better-errors@^2.3.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" - integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== - -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - -json-schema@0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5" - integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== - -json-stable-stringify-without-jsonify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" - integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== - -json-stringify-safe@~5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" - integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== - -json5@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" - integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== - dependencies: - minimist "^1.2.0" - -json5@^2.1.2, json5@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" - integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== - -jsprim@^1.2.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.2.tgz#712c65533a15c878ba59e9ed5f0e26d5b77c5feb" - integrity sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw== - dependencies: - assert-plus "1.0.0" - extsprintf "1.3.0" - json-schema "0.4.0" - verror "1.10.0" - -jss-plugin-camel-case@^10.5.1: - version "10.9.0" - resolved "https://registry.yarnpkg.com/jss-plugin-camel-case/-/jss-plugin-camel-case-10.9.0.tgz#4921b568b38d893f39736ee8c4c5f1c64670aaf7" - integrity sha512-UH6uPpnDk413/r/2Olmw4+y54yEF2lRIV8XIZyuYpgPYTITLlPOsq6XB9qeqv+75SQSg3KLocq5jUBXW8qWWww== - dependencies: - "@babel/runtime" "^7.3.1" - hyphenate-style-name "^1.0.3" - jss "10.9.0" - -jss-plugin-default-unit@^10.5.1: - version "10.9.0" - resolved "https://registry.yarnpkg.com/jss-plugin-default-unit/-/jss-plugin-default-unit-10.9.0.tgz#bb23a48f075bc0ce852b4b4d3f7582bc002df991" - integrity sha512-7Ju4Q9wJ/MZPsxfu4T84mzdn7pLHWeqoGd/D8O3eDNNJ93Xc8PxnLmV8s8ZPNRYkLdxZqKtm1nPQ0BM4JRlq2w== - dependencies: - "@babel/runtime" "^7.3.1" - jss "10.9.0" - -jss-plugin-global@^10.5.1: - version "10.9.0" - resolved "https://registry.yarnpkg.com/jss-plugin-global/-/jss-plugin-global-10.9.0.tgz#fc07a0086ac97aca174e37edb480b69277f3931f" - integrity sha512-4G8PHNJ0x6nwAFsEzcuVDiBlyMsj2y3VjmFAx/uHk/R/gzJV+yRHICjT4MKGGu1cJq2hfowFWCyrr/Gg37FbgQ== - dependencies: - "@babel/runtime" "^7.3.1" - jss "10.9.0" - -jss-plugin-nested@^10.5.1: - version "10.9.0" - resolved "https://registry.yarnpkg.com/jss-plugin-nested/-/jss-plugin-nested-10.9.0.tgz#cc1c7d63ad542c3ccc6e2c66c8328c6b6b00f4b3" - integrity sha512-2UJnDrfCZpMYcpPYR16oZB7VAC6b/1QLsRiAutOt7wJaaqwCBvNsosLEu/fUyKNQNGdvg2PPJFDO5AX7dwxtoA== - dependencies: - "@babel/runtime" "^7.3.1" - jss "10.9.0" - tiny-warning "^1.0.2" - -jss-plugin-props-sort@^10.5.1: - version "10.9.0" - resolved "https://registry.yarnpkg.com/jss-plugin-props-sort/-/jss-plugin-props-sort-10.9.0.tgz#30e9567ef9479043feb6e5e59db09b4de687c47d" - integrity sha512-7A76HI8bzwqrsMOJTWKx/uD5v+U8piLnp5bvru7g/3ZEQOu1+PjHvv7bFdNO3DwNPC9oM0a//KwIJsIcDCjDzw== - dependencies: - "@babel/runtime" "^7.3.1" - jss "10.9.0" - -jss-plugin-rule-value-function@^10.5.1: - version "10.9.0" - resolved "https://registry.yarnpkg.com/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.9.0.tgz#379fd2732c0746fe45168011fe25544c1a295d67" - integrity sha512-IHJv6YrEf8pRzkY207cPmdbBstBaE+z8pazhPShfz0tZSDtRdQua5jjg6NMz3IbTasVx9FdnmptxPqSWL5tyJg== - dependencies: - "@babel/runtime" "^7.3.1" - jss "10.9.0" - tiny-warning "^1.0.2" - -jss-plugin-vendor-prefixer@^10.5.1: - version "10.9.0" - resolved "https://registry.yarnpkg.com/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.9.0.tgz#aa9df98abfb3f75f7ed59a3ec50a5452461a206a" - integrity sha512-MbvsaXP7iiVdYVSEoi+blrW+AYnTDvHTW6I6zqi7JcwXdc6I9Kbm234nEblayhF38EftoenbM+5218pidmC5gA== - dependencies: - "@babel/runtime" "^7.3.1" - css-vendor "^2.0.8" - jss "10.9.0" - -jss@10.9.0, jss@^10.5.1: - version "10.9.0" - resolved "https://registry.yarnpkg.com/jss/-/jss-10.9.0.tgz#7583ee2cdc904a83c872ba695d1baab4b59c141b" - integrity sha512-YpzpreB6kUunQBbrlArlsMpXYyndt9JATbt95tajx0t4MTJJcCJdd4hdNpHmOIDiUJrF/oX5wtVFrS3uofWfGw== - dependencies: - "@babel/runtime" "^7.3.1" - csstype "^3.0.2" - is-in-browser "^1.1.3" - tiny-warning "^1.0.2" - -"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.2.1: - version "3.3.0" - resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.0.tgz#e624f259143b9062c92b6413ff92a164c80d3ccb" - integrity sha512-XzO9luP6L0xkxwhIJMTJQpZo/eeN60K08jHdexfD569AGxeNug6UketeHXEhROoM8aR7EcUoOQmIhcJQjcuq8Q== - dependencies: - array-includes "^3.1.4" - object.assign "^4.1.2" - -kind-of@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" - integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== - -kleur@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" - integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== - -language-subtag-registry@~0.3.2: - version "0.3.21" - resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a" - integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg== - -language-tags@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" - integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== - dependencies: - language-subtag-registry "~0.3.2" - -leaflet-defaulticon-compatibility@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/leaflet-defaulticon-compatibility/-/leaflet-defaulticon-compatibility-0.1.1.tgz#ab72257b3da66fb48dab69a10c3824012a15a20a" - integrity sha512-vDBFdlUAwjSEGep9ih8kfJilf6yN8V9zTbF5NC/1ZwLeGko3RUQepspPnGCRMFV51dY3Lb3hziboicrFz+rxQA== - -leaflet-easybutton@^2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/leaflet-easybutton/-/leaflet-easybutton-2.4.0.tgz#3ad8ad31c9cf6d5ca7a6a1988f82eed13ff2c1af" - integrity sha512-O+qsQq4zTF6ds8VClnytobTH/MKalctlPpiA8L+bNKHP14J3lgJpvEd/jSpq9mHTI6qOzRAvbQX6wS6qNwThvg== - dependencies: - leaflet "^1.0.1" - -leaflet-fullscreen@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/leaflet-fullscreen/-/leaflet-fullscreen-1.0.2.tgz#09c61c4bac45f63b2ee126afd87e5cd97650fc1b" - integrity sha512-1Yxm8RZg6KlKX25+hbP2H/wnOAphH7hFcvuADJFb4QZTN7uOSN9Hsci5EZpow8vtNej9OGzu59Jxmn+0qKOO9Q== - -leaflet-geosearch@^3.6.1: - version "3.6.1" - resolved "https://registry.yarnpkg.com/leaflet-geosearch/-/leaflet-geosearch-3.6.1.tgz#f2059eb8b4d46b674d05b6b332928f167213d0e8" - integrity sha512-Axf8e8kXulC9BCQ9yql6nHyKE7xm/oJDuZsWGDjrprto0rAlCv39tbPs5mn3LrpGOpKcrmJtAt1UkUmkVW47FA== - optionalDependencies: - leaflet "^1.6.0" - -leaflet-markers-canvas@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/leaflet-markers-canvas/-/leaflet-markers-canvas-0.2.2.tgz#fde165d4531c326d9120494aea52b0e753cc48fd" - integrity sha512-UU/98qrmljhU6Xl3lrsUAUke4Qb/p8BCfmhiw7L1hHtkVMxdRYgwk7RwUW9QNoPbhnmuyxsc90whKjWVVP5cNw== - -leaflet-minimap@^3.6.1: - version "3.6.1" - resolved "https://registry.yarnpkg.com/leaflet-minimap/-/leaflet-minimap-3.6.1.tgz#2a43ff3b3d947a45a0acf4bdefc96505b673a6c6" - integrity sha512-6px8f6cfv1rKB6ACpL6bbUFGxipZOq4KsntJgBj9nOcW1RYa5+xFp8emOZwks9X+VtVVsQEwWwfgT1kTTL/LzA== - -leaflet-sidebar-v2@^3.2.3: - version "3.2.3" - resolved "https://registry.yarnpkg.com/leaflet-sidebar-v2/-/leaflet-sidebar-v2-3.2.3.tgz#73bb949d7d4f51f22cbda875806b9aa804d31717" - integrity sha512-narzdn81Y/8YpgHR3jhs93LhrLq0AGSRo7CXHEICHfMeK6IHSbtFOF9CTSfueaumRK0TgvHkiiYJb9dTKta6ZQ== - -leaflet-tracksymbol@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/leaflet-tracksymbol/-/leaflet-tracksymbol-1.0.8.tgz#ae90451c4d4b1730467db7484b35216d3208b837" - integrity sha512-0ey8yYazut+6DOdRnUeALWDF7Cnw9PFwXRgz/1xTQ4ilsVGNoe/grU8UNGPSIo7BgJxbxX40K1Ul0Qq8VOWKwQ== - dependencies: - express "^4.13.4" - -leaflet.mousecoordinatesystems@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/leaflet.mousecoordinatesystems/-/leaflet.mousecoordinatesystems-1.0.2.tgz#33bda711b945701f1ef9c8139298909f6dfe9c70" - integrity sha512-TNDfypKr3UawQFPTg5zcECzCc7Uw/ekK4TAEm0+1UOHb7IXueMVHdUfqocSC7c3MgHi411TzHrdz255oYdRtyw== - -leaflet@^1.0.1, leaflet@^1.6.0, leaflet@^1.8.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/leaflet/-/leaflet-1.8.0.tgz#4615db4a22a304e8e692cae9270b983b38a2055e" - integrity sha512-gwhMjFCQiYs3x/Sf+d49f10ERXaEFCPr+nVTryhAW8DWbMGqJqt9G4XuIaHmFW08zYvhgdzqXGr8AlW8v8dQkA== - -leven@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" - integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== - -levn@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" - integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== - dependencies: - prelude-ls "^1.2.1" - type-check "~0.4.0" - -levn@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" - integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== - dependencies: - prelude-ls "~1.1.2" - type-check "~0.3.2" - -lines-and-columns@^1.1.6: - version "1.2.4" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" - integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== - -loader-utils@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.2.tgz#d6e3b4fb81870721ae4e0868ab11dd638368c129" - integrity sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A== - dependencies: - big.js "^5.2.2" - emojis-list "^3.0.0" - json5 "^2.1.2" - -locate-path@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" - integrity sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA== - dependencies: - p-locate "^2.0.0" - path-exists "^3.0.0" - -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - dependencies: - p-locate "^4.1.0" - -lodash.memoize@4.x: - version "4.1.2" - resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" - integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== - -lodash.merge@^4.6.2: - version "4.6.2" - resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" - integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== - -lodash@^4.17.11, lodash@^4.17.15, lodash@^4.17.21: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== - -loose-envify@^1.1.0, loose-envify@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" - integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== - dependencies: - js-tokens "^3.0.0 || ^4.0.0" - -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - -lz-string@^1.4.4: - version "1.4.4" - resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.4.4.tgz#c0d8eaf36059f705796e1e344811cf4c498d3a26" - integrity sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ== - -make-dir@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== - dependencies: - semver "^6.0.0" - -make-error@1.x: - version "1.3.6" - resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" - integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== - -make-fetch-happen@^9.1.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz#53085a09e7971433e6765f7971bf63f4e05cb968" - integrity sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg== - dependencies: - agentkeepalive "^4.1.3" - cacache "^15.2.0" - http-cache-semantics "^4.1.0" - http-proxy-agent "^4.0.1" - https-proxy-agent "^5.0.0" - is-lambda "^1.0.1" - lru-cache "^6.0.0" - minipass "^3.1.3" - minipass-collect "^1.0.2" - minipass-fetch "^1.3.2" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.4" - negotiator "^0.6.2" - promise-retry "^2.0.1" - socks-proxy-agent "^6.0.0" - ssri "^8.0.0" - -makeerror@1.0.12: - version "1.0.12" - resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" - integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== - dependencies: - tmpl "1.0.5" - -map-obj@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" - integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== - -map-obj@^4.0.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" - integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== - -match-sorter@^6.0.2: - version "6.3.1" - resolved "https://registry.yarnpkg.com/match-sorter/-/match-sorter-6.3.1.tgz#98cc37fda756093424ddf3cbc62bfe9c75b92bda" - integrity sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw== - dependencies: - "@babel/runtime" "^7.12.5" - remove-accents "0.4.2" - -media-typer@0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" - integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== - -meow@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/meow/-/meow-9.0.0.tgz#cd9510bc5cac9dee7d03c73ee1f9ad959f4ea364" - integrity sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ== - dependencies: - "@types/minimist" "^1.2.0" - camelcase-keys "^6.2.2" - decamelize "^1.2.0" - decamelize-keys "^1.1.0" - hard-rejection "^2.1.0" - minimist-options "4.1.0" - normalize-package-data "^3.0.0" - read-pkg-up "^7.0.1" - redent "^3.0.0" - trim-newlines "^3.0.0" - type-fest "^0.18.0" - yargs-parser "^20.2.3" - -merge-descriptors@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" - integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== - -merge-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" - integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== - -merge2@^1.3.0, merge2@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" - integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== - -methods@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" - integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== - -micromatch@^4.0.4: - version "4.0.5" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" - integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== - dependencies: - braces "^3.0.2" - picomatch "^2.3.1" - -microseconds@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/microseconds/-/microseconds-0.2.0.tgz#233b25f50c62a65d861f978a4a4f8ec18797dc39" - integrity sha512-n7DHHMjR1avBbSpsTBj6fmMGh2AGrifVV4e+WYc3Q9lO+xnSZ3NyhcBND3vzzatt05LFhoKFRxrIyklmLlUtyA== - -mime-db@1.52.0: - version "1.52.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" - integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== - -mime-types@^2.1.12, mime-types@^2.1.27, mime-types@~2.1.19, mime-types@~2.1.24, mime-types@~2.1.34: - version "2.1.35" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" - integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== - dependencies: - mime-db "1.52.0" - -mime@1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== - -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -mimic-response@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" - integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== - -min-indent@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" - integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== - -minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== - dependencies: - brace-expansion "^1.1.7" - -minimatch@~3.0.2: - version "3.0.8" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.8.tgz#5e6a59bd11e2ab0de1cfb843eb2d82e546c321c1" - integrity sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q== - dependencies: - brace-expansion "^1.1.7" - -minimist-options@4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" - integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== - dependencies: - arrify "^1.0.1" - is-plain-obj "^1.1.0" - kind-of "^6.0.3" - -minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.6: - version "1.2.6" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" - integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== - -minipass-collect@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" - integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== - dependencies: - minipass "^3.0.0" - -minipass-fetch@^1.3.2: - version "1.4.1" - resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-1.4.1.tgz#d75e0091daac1b0ffd7e9d41629faff7d0c1f1b6" - integrity sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw== - dependencies: - minipass "^3.1.0" - minipass-sized "^1.0.3" - minizlib "^2.0.0" - optionalDependencies: - encoding "^0.1.12" - -minipass-flush@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" - integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== - dependencies: - minipass "^3.0.0" - -minipass-pipeline@^1.2.2, minipass-pipeline@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" - integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== - dependencies: - minipass "^3.0.0" - -minipass-sized@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70" - integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g== - dependencies: - minipass "^3.0.0" - -minipass@^3.0.0, minipass@^3.1.0, minipass@^3.1.1, minipass@^3.1.3: - version "3.3.3" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.3.tgz#fd1f0e6c06449c10dadda72618b59c00f3d6378d" - integrity sha512-N0BOsdFAlNRfmwMhjAsLVWOk7Ljmeb39iqFlsV1At+jqRhSUP9yeof8FyJu4imaJiSUp8vQebWD/guZwGQC8iA== - dependencies: - yallist "^4.0.0" - -minizlib@^2.0.0, minizlib@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" - integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== - dependencies: - minipass "^3.0.0" - yallist "^4.0.0" - -mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: - version "0.5.3" - resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" - integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== - -mkdirp@^1.0.3, mkdirp@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" - integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== - -ms@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -ms@2.1.3, ms@^2.0.0, ms@^2.1.1: - version "2.1.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - -nan@^2.13.2: - version "2.16.0" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.16.0.tgz#664f43e45460fb98faf00edca0bb0d7b8dce7916" - integrity sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA== - -nano-time@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/nano-time/-/nano-time-1.0.0.tgz#b0554f69ad89e22d0907f7a12b0993a5d96137ef" - integrity sha512-flnngywOoQ0lLQOTRNexn2gGSNuM9bKj9RZAWSzhQ+UJYaAFG9bac4DW9VHjUAzrOaIcajHybCTHe/bkvozQqA== - dependencies: - big-integer "^1.6.16" - -nanoid@^3.1.30: - version "3.3.4" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" - integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== - -napi-build-utils@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" - integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== - -natural-compare@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== - -negotiator@0.6.3, negotiator@^0.6.2: - version "0.6.3" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" - integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== - -next-compose-plugins@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/next-compose-plugins/-/next-compose-plugins-2.2.1.tgz#020fc53f275a7e719d62521bef4300fbb6fde5ab" - integrity sha512-OjJ+fV15FXO2uQXQagLD4C0abYErBjyjE0I0FHpOEIB8upw0hg1ldFP6cqHTJBH1cZqy96OeR3u1dJ+Ez2D4Bg== - -next-images@^1.8.4: - version "1.8.4" - resolved "https://registry.yarnpkg.com/next-images/-/next-images-1.8.4.tgz#3b3d4840dae50893fc2a15906266532ec5fa58f0" - integrity sha512-E6JV+aMxeUCh8A+cwn1xgmlh/zINSW4JC/XLNbM+PWQd5LBdfB+m1IDCAfNnGOKMo96kzw+4LsKxnX/Kldw78Q== - dependencies: - file-loader "^6.2.0" - url-loader "^4.1.0" - -next@^12.2.0: - version "12.2.0" - resolved "https://registry.yarnpkg.com/next/-/next-12.2.0.tgz#aef47cd96b602bc1307d1dcf9a1ee3e753845544" - integrity sha512-B4j7D3SHYopLYx6/Ark0fenwIar9tEaZZFAaxmKjgcMMexhVJzB3jt7X+6wcdXPPMeUD6r09weUtnDpjox/vIA== - dependencies: - "@next/env" "12.2.0" - "@swc/helpers" "0.4.2" - caniuse-lite "^1.0.30001332" - postcss "8.4.5" - styled-jsx "5.0.2" - use-sync-external-store "1.1.0" - optionalDependencies: - "@next/swc-android-arm-eabi" "12.2.0" - "@next/swc-android-arm64" "12.2.0" - "@next/swc-darwin-arm64" "12.2.0" - "@next/swc-darwin-x64" "12.2.0" - "@next/swc-freebsd-x64" "12.2.0" - "@next/swc-linux-arm-gnueabihf" "12.2.0" - "@next/swc-linux-arm64-gnu" "12.2.0" - "@next/swc-linux-arm64-musl" "12.2.0" - "@next/swc-linux-x64-gnu" "12.2.0" - "@next/swc-linux-x64-musl" "12.2.0" - "@next/swc-win32-arm64-msvc" "12.2.0" - "@next/swc-win32-ia32-msvc" "12.2.0" - "@next/swc-win32-x64-msvc" "12.2.0" - -node-abi@^3.3.0: - version "3.22.0" - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.22.0.tgz#00b8250e86a0816576258227edbce7bbe0039362" - integrity sha512-u4uAs/4Zzmp/jjsD9cyFYDXeISfUWaAVWshPmDZOFOv4Xl4SbzTXm53I04C2uRueYJ+0t5PEtLH/owbn2Npf/w== - dependencies: - semver "^7.3.5" - -node-addon-api@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-5.0.0.tgz#7d7e6f9ef89043befdb20c1989c905ebde18c501" - integrity sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA== - -node-gyp@^8.4.1: - version "8.4.1" - resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-8.4.1.tgz#3d49308fc31f768180957d6b5746845fbd429937" - integrity sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w== - dependencies: - env-paths "^2.2.0" - glob "^7.1.4" - graceful-fs "^4.2.6" - make-fetch-happen "^9.1.0" - nopt "^5.0.0" - npmlog "^6.0.0" - rimraf "^3.0.2" - semver "^7.3.5" - tar "^6.1.2" - which "^2.0.2" - -node-int64@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" - integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== - -node-releases@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.5.tgz#280ed5bc3eba0d96ce44897d8aee478bfb3d9666" - integrity sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q== - -node-sass@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-7.0.1.tgz#ad4f6bc663de8acc0a9360db39165a1e2620aa72" - integrity sha512-uMy+Xt29NlqKCFdFRZyXKOTqGt+QaKHexv9STj2WeLottnlqZEEWx6Bj0MXNthmFRRdM/YwyNo/8Tr46TOM0jQ== - dependencies: - async-foreach "^0.1.3" - chalk "^4.1.2" - cross-spawn "^7.0.3" - gaze "^1.0.0" - get-stdin "^4.0.1" - glob "^7.0.3" - lodash "^4.17.15" - meow "^9.0.0" - nan "^2.13.2" - node-gyp "^8.4.1" - npmlog "^5.0.0" - request "^2.88.0" - sass-graph "4.0.0" - stdout-stream "^1.4.0" - "true-case-path" "^1.0.2" - -nopt@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88" - integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== - dependencies: - abbrev "1" - -normalize-package-data@^2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" - integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== - dependencies: - hosted-git-info "^2.1.4" - resolve "^1.10.0" - semver "2 || 3 || 4 || 5" - validate-npm-package-license "^3.0.1" - -normalize-package-data@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" - integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== - dependencies: - hosted-git-info "^4.0.1" - is-core-module "^2.5.0" - semver "^7.3.4" - validate-npm-package-license "^3.0.1" - -normalize-path@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -npm-run-path@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" - integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== - dependencies: - path-key "^3.0.0" - -npmlog@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-5.0.1.tgz#f06678e80e29419ad67ab964e0fa69959c1eb8b0" - integrity sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw== - dependencies: - are-we-there-yet "^2.0.0" - console-control-strings "^1.1.0" - gauge "^3.0.0" - set-blocking "^2.0.0" - -npmlog@^6.0.0: - version "6.0.2" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-6.0.2.tgz#c8166017a42f2dea92d6453168dd865186a70830" - integrity sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg== - dependencies: - are-we-there-yet "^3.0.0" - console-control-strings "^1.1.0" - gauge "^4.0.3" - set-blocking "^2.0.0" - -nwsapi@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" - integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== - -oauth-sign@~0.9.0: - version "0.9.0" - resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" - integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== - -object-assign@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== - -object-inspect@^1.12.0, object-inspect@^1.9.0: - version "1.12.2" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" - integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== - -object-keys@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - -object.assign@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" - integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== - dependencies: - call-bind "^1.0.0" - define-properties "^1.1.3" - has-symbols "^1.0.1" - object-keys "^1.1.1" - -object.entries@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" - integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" - -object.fromentries@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251" - integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" - -object.hasown@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.1.tgz#ad1eecc60d03f49460600430d97f23882cf592a3" - integrity sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A== - dependencies: - define-properties "^1.1.4" - es-abstract "^1.19.5" - -object.values@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" - integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" - -oblivious-set@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/oblivious-set/-/oblivious-set-1.0.0.tgz#c8316f2c2fb6ff7b11b6158db3234c49f733c566" - integrity sha512-z+pI07qxo4c2CulUHCDf9lcqDlMSo72N/4rLUpRXf6fu+q8vjt8y0xS+Tlf8NTJDdTXHbdeO1n3MlbctwEoXZw== - -on-finished@2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" - integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== - dependencies: - ee-first "1.1.1" - -once@^1.3.0, once@^1.3.1, once@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== - dependencies: - wrappy "1" - -onetime@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== - dependencies: - mimic-fn "^2.1.0" - -optionator@^0.8.1: - version "0.8.3" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" - integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.6" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - word-wrap "~1.2.3" - -optionator@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" - integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== - dependencies: - deep-is "^0.1.3" - fast-levenshtein "^2.0.6" - levn "^0.4.1" - prelude-ls "^1.2.1" - type-check "^0.4.0" - word-wrap "^1.2.3" - -p-limit@^1.1.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" - integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== - dependencies: - p-try "^1.0.0" - -p-limit@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - dependencies: - p-try "^2.0.0" - -p-locate@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" - integrity sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg== - dependencies: - p-limit "^1.1.0" - -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-map@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" - integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== - dependencies: - aggregate-error "^3.0.0" - -p-try@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" - integrity sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww== - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -parent-module@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" - integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== - dependencies: - callsites "^3.0.0" - -parse-json@^5.0.0, parse-json@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" - integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== - dependencies: - "@babel/code-frame" "^7.0.0" - error-ex "^1.3.1" - json-parse-even-better-errors "^2.3.0" - lines-and-columns "^1.1.6" - -parse5@6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" - integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== - -parseurl@~1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" - integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== - -path-exists@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" - integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== - -path-key@^3.0.0, path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-parse@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - -path-to-regexp@0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" - integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== - -path-type@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" - integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - -performance-now@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" - integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== - -picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== - -picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== - -pirates@^4.0.4: - version "4.0.5" - resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" - integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== - -pkg-dir@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== - dependencies: - find-up "^4.0.0" - -popper.js@1.16.1-lts: - version "1.16.1-lts" - resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1-lts.tgz#cf6847b807da3799d80ee3d6d2f90df8a3f50b05" - integrity sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA== - -postcss@8.4.5: - version "8.4.5" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.5.tgz#bae665764dfd4c6fcc24dc0fdf7e7aa00cc77f95" - integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg== - dependencies: - nanoid "^3.1.30" - picocolors "^1.0.0" - source-map-js "^1.0.1" - -prebuild-install@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.1.tgz#de97d5b34a70a0c81334fd24641f2a1702352e45" - integrity sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw== - dependencies: - detect-libc "^2.0.0" - expand-template "^2.0.3" - github-from-package "0.0.0" - minimist "^1.2.3" - mkdirp-classic "^0.5.3" - napi-build-utils "^1.0.1" - node-abi "^3.3.0" - pump "^3.0.0" - rc "^1.2.7" - simple-get "^4.0.0" - tar-fs "^2.0.0" - tunnel-agent "^0.6.0" - -prelude-ls@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" - integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== - -prelude-ls@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" - integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== - -prettier@^2.7.1: - version "2.7.1" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64" - integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g== - -pretty-format@^27.0.2: - version "27.5.1" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e" - integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== - dependencies: - ansi-regex "^5.0.1" - ansi-styles "^5.0.0" - react-is "^17.0.1" - -pretty-format@^28.0.0, pretty-format@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-28.1.1.tgz#f731530394e0f7fcd95aba6b43c50e02d86b95cb" - integrity sha512-wwJbVTGFHeucr5Jw2bQ9P+VYHyLdAqedFLEkdQUVaBF/eiidDwH5OpilINq4mEfhbCjLnirt6HTTDhv1HaTIQw== - dependencies: - "@jest/schemas" "^28.0.2" - ansi-regex "^5.0.1" - ansi-styles "^5.0.0" - react-is "^18.0.0" - -process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - -promise-inflight@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" - integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== - -promise-retry@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" - integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== - dependencies: - err-code "^2.0.2" - retry "^0.12.0" - -prompts@^2.0.1: - version "2.4.2" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" - integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== - dependencies: - kleur "^3.0.3" - sisteransi "^1.0.5" - -prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1: - version "15.8.1" - resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" - integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== - dependencies: - loose-envify "^1.4.0" - object-assign "^4.1.1" - react-is "^16.13.1" - -proxy-addr@~2.0.7: - version "2.0.7" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" - integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== - dependencies: - forwarded "0.2.0" - ipaddr.js "1.9.1" - -psl@^1.1.28, psl@^1.1.33: - version "1.8.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" - integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== - -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -punycode@^2.1.0, punycode@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== - -qs@6.10.3: - version "6.10.3" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.3.tgz#d6cde1b2ffca87b5aa57889816c5f81535e22e8e" - integrity sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ== - dependencies: - side-channel "^1.0.4" - -qs@~6.5.2: - version "6.5.3" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.3.tgz#3aeeffc91967ef6e35c0e488ef46fb296ab76aad" - integrity sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA== - -queue-microtask@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" - integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== - -quick-lru@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" - integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== - -quickselect@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/quickselect/-/quickselect-2.0.0.tgz#f19680a486a5eefb581303e023e98faaf25dd018" - integrity sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw== - -range-parser@~1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" - integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== - -raw-body@2.5.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" - integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== - dependencies: - bytes "3.1.2" - http-errors "2.0.0" - iconv-lite "0.4.24" - unpipe "1.0.0" - -rbush@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/rbush/-/rbush-3.0.1.tgz#5fafa8a79b3b9afdfe5008403a720cc1de882ecf" - integrity sha512-XRaVO0YecOpEuIvbhbpTrZgoiI6xBlz6hnlr6EHhd+0x9ase6EmeN+hdwwUaJvLcsFFQ8iWVF1GAK1yB0BWi0w== - dependencies: - quickselect "^2.0.0" - -rc@^1.2.7: - version "1.2.8" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" - integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== - dependencies: - deep-extend "^0.6.0" - ini "~1.3.0" - minimist "^1.2.0" - strip-json-comments "~2.0.1" - -react-dom@18.2.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" - integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== - dependencies: - loose-envify "^1.1.0" - scheduler "^0.23.0" - -react-is@^16.13.1, react-is@^16.7.0: - version "16.13.1" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" - integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== - -"react-is@^16.8.0 || ^17.0.0", react-is@^17.0.1: - version "17.0.2" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" - integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== - -react-is@^18.0.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" - integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== - -react-leaflet@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/react-leaflet/-/react-leaflet-4.0.0.tgz#9c2b8de82c6f5930387f5b1b37cb0ec4d8f98d61" - integrity sha512-qJJvoCNe12XHSWVUwhXYmMObPoSYy8h/hn0aDNvcBuq3O8zmVI5S2RdabhaDg/iWMCJ2jbCWZWtIU5VtztO9sg== - dependencies: - "@react-leaflet/core" "^2.0.0" - -react-query@^3.39.1: - version "3.39.1" - resolved "https://registry.yarnpkg.com/react-query/-/react-query-3.39.1.tgz#3876c0fdac7a3b5a84e195534e5fa8fbdd628847" - integrity sha512-qYKT1bavdDiQZbngWZyPotlBVzcBjDYEJg5RQLBa++5Ix5jjfbEYJmHSZRZD+USVHUSvl/ey9Hu+QfF1QAK80A== - dependencies: - "@babel/runtime" "^7.5.5" - broadcast-channel "^3.4.1" - match-sorter "^6.0.2" - -react-redux@^8.0.2: - version "8.0.2" - resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-8.0.2.tgz#bc2a304bb21e79c6808e3e47c50fe1caf62f7aad" - integrity sha512-nBwiscMw3NoP59NFCXFf02f8xdo+vSHT/uZ1ldDwF7XaTpzm+Phk97VT4urYBl5TYAPNVaFm12UHAEyzkpNzRA== - dependencies: - "@babel/runtime" "^7.12.1" - "@types/hoist-non-react-statics" "^3.3.1" - "@types/use-sync-external-store" "^0.0.3" - hoist-non-react-statics "^3.3.2" - react-is "^18.0.0" - use-sync-external-store "^1.0.0" - -react-transition-group@^4.4.0: - version "4.4.2" - resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.2.tgz#8b59a56f09ced7b55cbd53c36768b922890d5470" - integrity sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg== - dependencies: - "@babel/runtime" "^7.5.5" - dom-helpers "^5.0.1" - loose-envify "^1.4.0" - prop-types "^15.6.2" - -react@18.2.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" - integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== - dependencies: - loose-envify "^1.1.0" - -read-pkg-up@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" - integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== - dependencies: - find-up "^4.1.0" - read-pkg "^5.2.0" - type-fest "^0.8.1" - -read-pkg@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" - integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== - dependencies: - "@types/normalize-package-data" "^2.4.0" - normalize-package-data "^2.5.0" - parse-json "^5.0.0" - type-fest "^0.6.0" - -readable-stream@^2.0.1: - version "2.3.7" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" - integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - -readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" - integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -redent@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" - integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== - dependencies: - indent-string "^4.0.0" - strip-indent "^3.0.0" - -redux-devtools-extension@^2.13.9: - version "2.13.9" - resolved "https://registry.yarnpkg.com/redux-devtools-extension/-/redux-devtools-extension-2.13.9.tgz#6b764e8028b507adcb75a1cae790f71e6be08ae7" - integrity sha512-cNJ8Q/EtjhQaZ71c8I9+BPySIBVEKssbPpskBfsXqb8HJ002A3KRVHfeRzwRo6mGPqsm7XuHTqNSNeS1Khig0A== - -redux-thunk@^2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.4.1.tgz#0dd8042cf47868f4b29699941de03c9301a75714" - integrity sha512-OOYGNY5Jy2TWvTL1KgAlVy6dcx3siPJ1wTq741EPyUKfn6W6nChdICjZwCd0p8AZBs5kWpZlbkXW2nE/zjUa+Q== - -redux@^4.0.0, redux@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/redux/-/redux-4.2.0.tgz#46f10d6e29b6666df758780437651eeb2b969f13" - integrity sha512-oSBmcKKIuIR4ME29/AeNUnl5L+hvBq7OaJWzaptTQJAntaPvxIJqfnjbaEiCzzaIz+XmVILfqAM3Ob0aXLPfjA== - dependencies: - "@babel/runtime" "^7.9.2" - -regenerator-runtime@^0.13.4: - version "0.13.9" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" - integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== - -regexp.prototype.flags@^1.4.1, regexp.prototype.flags@^1.4.3: - version "1.4.3" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" - integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - functions-have-names "^1.2.2" - -regexpp@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" - integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== - -remove-accents@0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/remove-accents/-/remove-accents-0.4.2.tgz#0a43d3aaae1e80db919e07ae254b285d9e1c7bb5" - integrity sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA== - -request@^2.88.0: - version "2.88.2" - resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" - integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== - dependencies: - aws-sign2 "~0.7.0" - aws4 "^1.8.0" - caseless "~0.12.0" - combined-stream "~1.0.6" - extend "~3.0.2" - forever-agent "~0.6.1" - form-data "~2.3.2" - har-validator "~5.1.3" - http-signature "~1.2.0" - is-typedarray "~1.0.0" - isstream "~0.1.2" - json-stringify-safe "~5.0.1" - mime-types "~2.1.19" - oauth-sign "~0.9.0" - performance-now "^2.1.0" - qs "~6.5.2" - safe-buffer "^5.1.2" - tough-cookie "~2.5.0" - tunnel-agent "^0.6.0" - uuid "^3.3.2" - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== - -resolve-cwd@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" - integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== - dependencies: - resolve-from "^5.0.0" - -resolve-from@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== - -resolve-from@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" - integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - -resolve.exports@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.0.tgz#5ce842b94b05146c0e03076985d1d0e7e48c90c9" - integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ== - -resolve@^1.10.0, resolve@^1.20.0, resolve@^1.22.0: - version "1.22.1" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" - integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== - dependencies: - is-core-module "^2.9.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - -resolve@^2.0.0-next.3: - version "2.0.0-next.4" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" - integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== - dependencies: - is-core-module "^2.9.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - -retry@^0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" - integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== - -reusify@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" - integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== - -rimraf@3.0.2, rimraf@^3.0.0, rimraf@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - dependencies: - glob "^7.1.3" - -run-parallel@^1.1.9: - version "1.2.0" - resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" - integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== - dependencies: - queue-microtask "^1.2.2" - -safe-buffer@5.2.1, safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: - version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - -sass-graph@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-4.0.0.tgz#fff8359efc77b31213056dfd251d05dadc74c613" - integrity sha512-WSO/MfXqKH7/TS8RdkCX3lVkPFQzCgbqdGsmSKq6tlPU+GpGEsa/5aW18JqItnqh+lPtcjifqdZ/VmiILkKckQ== - dependencies: - glob "^7.0.0" - lodash "^4.17.11" - scss-tokenizer "^0.3.0" - yargs "^17.2.1" - -saxes@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" - integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== - dependencies: - xmlchars "^2.2.0" - -scheduler@^0.23.0: - version "0.23.0" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" - integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== - dependencies: - loose-envify "^1.1.0" - -schema-utils@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281" - integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw== - dependencies: - "@types/json-schema" "^7.0.8" - ajv "^6.12.5" - ajv-keywords "^3.5.2" - -scss-tokenizer@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.3.0.tgz#ef7edc3bc438b25cd6ffacf1aa5b9ad5813bf260" - integrity sha512-14Zl9GcbBvOT9057ZKjpz5yPOyUWG2ojd9D5io28wHRYsOrs7U95Q+KNL87+32p8rc+LvDpbu/i9ZYjM9Q+FsQ== - dependencies: - js-base64 "^2.4.3" - source-map "^0.7.1" - -"semver@2 || 3 || 4 || 5": - version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - -semver@7.x, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7: - version "7.3.7" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" - integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== - dependencies: - lru-cache "^6.0.0" - -semver@^6.0.0, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -send@0.18.0: - version "0.18.0" - resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" - integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== - dependencies: - debug "2.6.9" - depd "2.0.0" - destroy "1.2.0" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - fresh "0.5.2" - http-errors "2.0.0" - mime "1.6.0" - ms "2.1.3" - on-finished "2.4.1" - range-parser "~1.2.1" - statuses "2.0.1" - -serve-static@1.15.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" - integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== - dependencies: - encodeurl "~1.0.2" - escape-html "~1.0.3" - parseurl "~1.3.3" - send "0.18.0" - -set-blocking@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== - -setprototypeof@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" - integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== - -sharp@^0.30.7: - version "0.30.7" - resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.30.7.tgz#7862bda98804fdd1f0d5659c85e3324b90d94c7c" - integrity sha512-G+MY2YW33jgflKPTXXptVO28HvNOo9G3j0MybYAHeEmby+QuD2U98dT6ueht9cv/XDqZspSpIhoSW+BAKJ7Hig== - dependencies: - color "^4.2.3" - detect-libc "^2.0.1" - node-addon-api "^5.0.0" - prebuild-install "^7.1.1" - semver "^7.3.7" - simple-get "^4.0.1" - tar-fs "^2.1.1" - tunnel-agent "^0.6.0" - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -side-channel@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" - integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== - dependencies: - call-bind "^1.0.0" - get-intrinsic "^1.0.2" - object-inspect "^1.9.0" - -signal-exit@^3.0.0, signal-exit@^3.0.3, signal-exit@^3.0.7: - version "3.0.7" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== - -simple-concat@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" - integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== - -simple-get@^4.0.0, simple-get@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz#4a39db549287c979d352112fa03fd99fd6bc3543" - integrity sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA== - dependencies: - decompress-response "^6.0.0" - once "^1.3.1" - simple-concat "^1.0.0" - -simple-swizzle@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" - integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg== - dependencies: - is-arrayish "^0.3.1" - -sisteransi@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" - integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== - -slash@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - -smart-buffer@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" - integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== - -socks-proxy-agent@^6.0.0: - version "6.2.1" - resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz#2687a31f9d7185e38d530bef1944fe1f1496d6ce" - integrity sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ== - dependencies: - agent-base "^6.0.2" - debug "^4.3.3" - socks "^2.6.2" - -socks@^2.6.2: - version "2.6.2" - resolved "https://registry.yarnpkg.com/socks/-/socks-2.6.2.tgz#ec042d7960073d40d94268ff3bb727dc685f111a" - integrity sha512-zDZhHhZRY9PxRruRMR7kMhnf3I8hDs4S3f9RecfnGxvcBHQcKcIH/oUcEWffsfl1XxdYlA7nnlGbbTvPz9D8gA== - dependencies: - ip "^1.1.5" - smart-buffer "^4.2.0" - -source-map-js@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" - integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== - -source-map-resolve@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.6.0.tgz#3d9df87e236b53f16d01e58150fc7711138e5ed2" - integrity sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w== - dependencies: - atob "^2.1.2" - decode-uri-component "^0.2.0" - -source-map-support@0.5.13: - version "0.5.13" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" - integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -source-map@^0.7.1: - version "0.7.4" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" - integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== - -spdx-correct@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" - integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== - dependencies: - spdx-expression-parse "^3.0.0" - spdx-license-ids "^3.0.0" - -spdx-exceptions@^2.1.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" - integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== - -spdx-expression-parse@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" - integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== - dependencies: - spdx-exceptions "^2.1.0" - spdx-license-ids "^3.0.0" - -spdx-license-ids@^3.0.0: - version "3.0.11" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz#50c0d8c40a14ec1bf449bae69a0ea4685a9d9f95" - integrity sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g== - -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== - -sshpk@^1.7.0: - version "1.17.0" - resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.17.0.tgz#578082d92d4fe612b13007496e543fa0fbcbe4c5" - integrity sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ== - dependencies: - asn1 "~0.2.3" - assert-plus "^1.0.0" - bcrypt-pbkdf "^1.0.0" - dashdash "^1.12.0" - ecc-jsbn "~0.1.1" - getpass "^0.1.1" - jsbn "~0.1.0" - safer-buffer "^2.0.2" - tweetnacl "~0.14.0" - -ssri@^8.0.0, ssri@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af" - integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ== - dependencies: - minipass "^3.1.1" - -stack-utils@^2.0.3: - version "2.0.5" - resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.5.tgz#d25265fca995154659dbbfba3b49254778d2fdd5" - integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA== - dependencies: - escape-string-regexp "^2.0.0" - -statuses@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" - integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== - -stdout-stream@^1.4.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.1.tgz#5ac174cdd5cd726104aa0c0b2bd83815d8d535de" - integrity sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA== - dependencies: - readable-stream "^2.0.1" - -string-length@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" - integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== - dependencies: - char-regex "^1.0.2" - strip-ansi "^6.0.0" - -"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string.prototype.matchall@^4.0.7: - version "4.0.7" - resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz#8e6ecb0d8a1fb1fda470d81acecb2dba057a481d" - integrity sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" - get-intrinsic "^1.1.1" - has-symbols "^1.0.3" - internal-slot "^1.0.3" - regexp.prototype.flags "^1.4.1" - side-channel "^1.0.4" - -string.prototype.trimend@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" - integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.19.5" - -string.prototype.trimstart@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" - integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.19.5" - -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - -strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-bom@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" - integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== - -strip-bom@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" - integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== - -strip-final-newline@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" - integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== - -strip-indent@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" - integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== - dependencies: - min-indent "^1.0.0" - -strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" - integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== - -strip-json-comments@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" - integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== - -styled-jsx@5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.2.tgz#ff230fd593b737e9e68b630a694d460425478729" - integrity sha512-LqPQrbBh3egD57NBcHET4qcgshPks+yblyhPlH2GY8oaDgKs8SK4C3dBh3oSJjgzJ3G5t1SYEZGHkP+QEpX9EQ== - -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - -supports-color@^7.0.0, supports-color@^7.1.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" - integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== - dependencies: - has-flag "^4.0.0" - -supports-color@^8.0.0: - version "8.1.1" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" - integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== - dependencies: - has-flag "^4.0.0" - -supports-hyperlinks@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" - integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== - dependencies: - has-flag "^4.0.0" - supports-color "^7.0.0" - -supports-preserve-symlinks-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" - integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== - -symbol-tree@^3.2.4: - version "3.2.4" - resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" - integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== - -tar-fs@^2.0.0, tar-fs@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" - integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== - dependencies: - chownr "^1.1.1" - mkdirp-classic "^0.5.2" - pump "^3.0.0" - tar-stream "^2.1.4" - -tar-stream@^2.1.4: - version "2.2.0" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" - integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== - dependencies: - bl "^4.0.3" - end-of-stream "^1.4.1" - fs-constants "^1.0.0" - inherits "^2.0.3" - readable-stream "^3.1.1" - -tar@^6.0.2, tar@^6.1.2: - version "6.1.11" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621" - integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA== - dependencies: - chownr "^2.0.0" - fs-minipass "^2.0.0" - minipass "^3.0.0" - minizlib "^2.1.1" - mkdirp "^1.0.3" - yallist "^4.0.0" - -terminal-link@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" - integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== - dependencies: - ansi-escapes "^4.2.1" - supports-hyperlinks "^2.0.0" - -test-exclude@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" - integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== - dependencies: - "@istanbuljs/schema" "^0.1.2" - glob "^7.1.4" - minimatch "^3.0.4" - -text-table@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" - integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== - -throat@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375" - integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w== - -tiny-warning@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" - integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== - -tmpl@1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" - integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== - -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - -toidentifier@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" - integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== - -tough-cookie@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4" - integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg== - dependencies: - psl "^1.1.33" - punycode "^2.1.1" - universalify "^0.1.2" - -tough-cookie@~2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" - integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== - dependencies: - psl "^1.1.28" - punycode "^2.1.1" - -tr46@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-3.0.0.tgz#555c4e297a950617e8eeddef633c87d4d9d6cbf9" - integrity sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA== - dependencies: - punycode "^2.1.1" - -trim-newlines@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" - integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== - -"true-case-path@^1.0.2": - version "1.0.3" - resolved "https://registry.yarnpkg.com/true-case-path/-/true-case-path-1.0.3.tgz#f813b5a8c86b40da59606722b144e3225799f47d" - integrity sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew== - dependencies: - glob "^7.1.2" - -ts-jest@^28.0.5: - version "28.0.5" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-28.0.5.tgz#31776f768fba6dfc8c061d488840ed0c8eeac8b9" - integrity sha512-Sx9FyP9pCY7pUzQpy4FgRZf2bhHY3za576HMKJFs+OnQ9jS96Du5vNsDKkyedQkik+sEabbKAnCliv9BEsHZgQ== - dependencies: - bs-logger "0.x" - fast-json-stable-stringify "2.x" - jest-util "^28.0.0" - json5 "^2.2.1" - lodash.memoize "4.x" - make-error "1.x" - semver "7.x" - yargs-parser "^21.0.1" - -tsconfig-paths@^3.14.1: - version "3.14.1" - resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" - integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== - dependencies: - "@types/json5" "^0.0.29" - json5 "^1.0.1" - minimist "^1.2.6" - strip-bom "^3.0.0" - -tslib@^1.8.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - -tslib@^2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" - integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== - -tsutils@^3.21.0: - version "3.21.0" - resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" - integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== - dependencies: - tslib "^1.8.1" - -tunnel-agent@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== - dependencies: - safe-buffer "^5.0.1" - -tweetnacl@^0.14.3, tweetnacl@~0.14.0: - version "0.14.5" - resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" - integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== - -type-check@^0.4.0, type-check@~0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" - integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== - dependencies: - prelude-ls "^1.2.1" - -type-check@~0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" - integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== - dependencies: - prelude-ls "~1.1.2" - -type-detect@4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" - integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== - -type-fest@^0.18.0: - version "0.18.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" - integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== - -type-fest@^0.20.2: - version "0.20.2" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" - integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== - -type-fest@^0.21.3: - version "0.21.3" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" - integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== - -type-fest@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" - integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== - -type-fest@^0.8.1: - version "0.8.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" - integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== - -type-is@~1.6.18: - version "1.6.18" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" - integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== - dependencies: - media-typer "0.3.0" - mime-types "~2.1.24" - -typescript@4.7.3: - version "4.7.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.7.3.tgz#8364b502d5257b540f9de4c40be84c98e23a129d" - integrity sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA== - -unbox-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" - integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== - dependencies: - call-bind "^1.0.2" - has-bigints "^1.0.2" - has-symbols "^1.0.3" - which-boxed-primitive "^1.0.2" - -unique-filename@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" - integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== - dependencies: - unique-slug "^2.0.0" - -unique-slug@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" - integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== - dependencies: - imurmurhash "^0.1.4" - -universalify@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" - integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== - -unload@2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/unload/-/unload-2.2.0.tgz#ccc88fdcad345faa06a92039ec0f80b488880ef7" - integrity sha512-B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA== - dependencies: - "@babel/runtime" "^7.6.2" - detect-node "^2.0.4" - -unpipe@1.0.0, unpipe@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" - integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== - -update-browserslist-db@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.3.tgz#6c47cb996f34afb363e924748e2f6e4d983c6fc1" - integrity sha512-ufSazemeh9Gty0qiWtoRpJ9F5Q5W3xdIPm1UZQqYQv/q0Nyb9EMHUB2lu+O9x1re9WsorpMAUu4Y6Lxcs5n+XQ== - dependencies: - escalade "^3.1.1" - picocolors "^1.0.0" - -uri-js@^4.2.2: - version "4.4.1" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" - integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== - dependencies: - punycode "^2.1.0" - -url-loader@^4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.1.tgz#28505e905cae158cf07c92ca622d7f237e70a4e2" - integrity sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA== - dependencies: - loader-utils "^2.0.0" - mime-types "^2.1.27" - schema-utils "^3.0.0" - -use-sync-external-store@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.1.0.tgz#3343c3fe7f7e404db70f8c687adf5c1652d34e82" - integrity sha512-SEnieB2FPKEVne66NpXPd1Np4R1lTNKfjuy3XdIoPQKYBAFdzbzSZlSn1KJZUiihQLQC5Znot4SBz1EOTBwQAQ== - -use-sync-external-store@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz#7dbefd6ef3fe4e767a0cf5d7287aacfb5846928a" - integrity sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA== - -util-deprecate@^1.0.1, util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== - -utils-merge@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" - integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== - -uuid@^3.3.2: - version "3.4.0" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" - integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== - -v8-compile-cache@^2.0.3: - version "2.3.0" - resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" - integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== - -v8-to-istanbul@^9.0.0: - version "9.0.1" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.0.1.tgz#b6f994b0b5d4ef255e17a0d17dc444a9f5132fa4" - integrity sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w== - dependencies: - "@jridgewell/trace-mapping" "^0.3.12" - "@types/istanbul-lib-coverage" "^2.0.1" - convert-source-map "^1.6.0" - -validate-npm-package-license@^3.0.1: - version "3.0.4" - resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" - integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== - dependencies: - spdx-correct "^3.0.0" - spdx-expression-parse "^3.0.0" - -vary@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" - integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== - -verror@1.10.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" - integrity sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw== - dependencies: - assert-plus "^1.0.0" - core-util-is "1.0.2" - extsprintf "^1.2.0" - -w3c-hr-time@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" - integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== - dependencies: - browser-process-hrtime "^1.0.0" - -w3c-xmlserializer@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-3.0.0.tgz#06cdc3eefb7e4d0b20a560a5a3aeb0d2d9a65923" - integrity sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg== - dependencies: - xml-name-validator "^4.0.0" - -walker@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" - integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== - dependencies: - makeerror "1.0.12" - -webidl-conversions@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-7.0.0.tgz#256b4e1882be7debbf01d05f0aa2039778ea080a" - integrity sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g== - -whatwg-encoding@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz#e7635f597fd87020858626805a2729fa7698ac53" - integrity sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg== - dependencies: - iconv-lite "0.6.3" - -whatwg-mimetype@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz#5fa1a7623867ff1af6ca3dc72ad6b8a4208beba7" - integrity sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q== - -whatwg-url@^10.0.0: - version "10.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-10.0.0.tgz#37264f720b575b4a311bd4094ed8c760caaa05da" - integrity sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w== - dependencies: - tr46 "^3.0.0" - webidl-conversions "^7.0.0" - -whatwg-url@^11.0.0: - version "11.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-11.0.0.tgz#0a849eebb5faf2119b901bb76fd795c2848d4018" - integrity sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ== - dependencies: - tr46 "^3.0.0" - webidl-conversions "^7.0.0" - -which-boxed-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" - integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== - dependencies: - is-bigint "^1.0.1" - is-boolean-object "^1.1.0" - is-number-object "^1.0.4" - is-string "^1.0.5" - is-symbol "^1.0.3" - -which@^2.0.1, which@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - dependencies: - isexe "^2.0.0" - -wide-align@^1.1.2, wide-align@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" - integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== - dependencies: - string-width "^1.0.2 || 2 || 3 || 4" - -word-wrap@^1.2.3, word-wrap@~1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== - -write-file-atomic@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.1.tgz#9faa33a964c1c85ff6f849b80b42a88c2c537c8f" - integrity sha512-nSKUxgAbyioruk6hU87QzVbY279oYT6uiwgDoujth2ju4mJ+TZau7SQBhtbTmUyuNYTuXnSyRn66FV0+eCgcrQ== - dependencies: - imurmurhash "^0.1.4" - signal-exit "^3.0.7" - -ws@^8.2.3: - version "8.8.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.8.0.tgz#8e71c75e2f6348dbf8d78005107297056cb77769" - integrity sha512-JDAgSYQ1ksuwqfChJusw1LSJ8BizJ2e/vVu5Lxjq3YvNJNlROv1ui4i+c/kUUrPheBvQl4c5UbERhTwKa6QBJQ== - -xml-name-validator@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" - integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== - -xmlchars@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" - integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== - -y18n@^5.0.5: - version "5.0.8" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" - integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== - -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== - -yargs-parser@^20.2.3: - version "20.2.9" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" - integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== - -yargs-parser@^21.0.0, yargs-parser@^21.0.1: - version "21.0.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.1.tgz#0267f286c877a4f0f728fceb6f8a3e4cb95c6e35" - integrity sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg== - -yargs@^17.2.1, yargs@^17.3.1: - version "17.5.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.5.1.tgz#e109900cab6fcb7fd44b1d8249166feb0b36e58e" - integrity sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA== - dependencies: - cliui "^7.0.2" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.3" - y18n "^5.0.5" - yargs-parser "^21.0.0" From 275d17cebea0dd97fc7779066bf0c2d7e8006839 Mon Sep 17 00:00:00 2001 From: nhatvu148 Date: Sat, 21 Feb 2026 18:14:16 +0700 Subject: [PATCH 03/14] feat: add OpenSky live flights + static data API --- apps/api/data/airlines.json | 210082 ++++++++++++++++ apps/api/data/airports.json | 154262 ++++++++++++ apps/api/data/cities.json | 103072 ++++++++ apps/api/data/countries.json | 3530 + apps/api/data/planeTypes.json | 1567 + apps/api/data/routes.json | 5417 + apps/api/src/index.ts | 2 + apps/api/src/routes/airlines.routes.ts | 26 + apps/api/src/routes/airports.routes.ts | 45 +- apps/api/src/services/static-data.service.ts | 55 + 10 files changed, 478039 insertions(+), 19 deletions(-) create mode 100644 apps/api/data/airlines.json create mode 100644 apps/api/data/airports.json create mode 100644 apps/api/data/cities.json create mode 100644 apps/api/data/countries.json create mode 100644 apps/api/data/planeTypes.json create mode 100644 apps/api/data/routes.json create mode 100644 apps/api/src/routes/airlines.routes.ts create mode 100644 apps/api/src/services/static-data.service.ts diff --git a/apps/api/data/airlines.json b/apps/api/data/airlines.json new file mode 100644 index 0000000..94650a2 --- /dev/null +++ b/apps/api/data/airlines.json @@ -0,0 +1,210082 @@ +[ + { + "ageFleet": 10.9, + "airlineId": 1, + "callsign": "AMERICAN", + "codeHub": "DFW", + "codeIataAirline": "AA", + "codeIcaoAirline": "AAL", + "codeIso2Country": "US", + "founding": 1934, + "iataPrefixAccounting": "1", + "nameAirline": "American Airlines", + "nameCountry": "United States", + "sizeAirline": 963, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 17.0, + "airlineId": 2, + "callsign": "DELTA", + "codeHub": "ATL", + "codeIataAirline": "DL", + "codeIcaoAirline": "DAL", + "codeIso2Country": "US", + "founding": 1928, + "iataPrefixAccounting": "6", + "nameAirline": "Delta Air Lines", + "nameCountry": "United States", + "sizeAirline": 823, + "statusAirline": "active", + "type": "scheduled,division" + }, + { + "ageFleet": 13.8, + "airlineId": 3, + "callsign": "UNITED", + "codeHub": "ORD", + "codeIataAirline": "UA", + "codeIcaoAirline": "UAL", + "codeIso2Country": "US", + "founding": 1931, + "iataPrefixAccounting": "16", + "nameAirline": "United Airlines", + "nameCountry": "United States", + "sizeAirline": 715, + "statusAirline": "active", + "type": "scheduled,division" + }, + { + "ageFleet": 12.3, + "airlineId": 4, + "callsign": "SOUTHWEST", + "codeHub": "DAL", + "codeIataAirline": "WN", + "codeIcaoAirline": "SWA", + "codeIso2Country": "UM", + "founding": 1967, + "iataPrefixAccounting": "526", + "nameAirline": "Southwest Airlines Co.", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 712, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.9, + "airlineId": 5, + "callsign": "CHINA SOUTHERN", + "codeHub": "CAN", + "codeIataAirline": "CZ", + "codeIcaoAirline": "CSN", + "codeIso2Country": "CN", + "founding": 2004, + "iataPrefixAccounting": "784", + "nameAirline": "China Southern Airlines", + "nameCountry": "China", + "sizeAirline": 498, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.4, + "airlineId": 6, + "callsign": "CHINA EASTERN", + "codeHub": "PVG", + "codeIataAirline": "MU", + "codeIcaoAirline": "CES", + "codeIso2Country": "CN", + "founding": 1988, + "iataPrefixAccounting": "781", + "nameAirline": "China Eastern", + "nameCountry": "China", + "sizeAirline": 407, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.1, + "airlineId": 7, + "callsign": "SKYWEST", + "codeHub": "SLC", + "codeIataAirline": "OO", + "codeIcaoAirline": "SKW", + "codeIso2Country": "UM", + "founding": 1972, + "iataPrefixAccounting": "302", + "nameAirline": "SkyWest Airlines", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 382, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.2, + "airlineId": 8, + "callsign": "AIR CHINA", + "codeHub": "PEK", + "codeIataAirline": "CA", + "codeIcaoAirline": "CCA", + "codeIso2Country": "CN", + "founding": 1988, + "iataPrefixAccounting": "999", + "nameAirline": "Air China Limited", + "nameCountry": "China", + "sizeAirline": 369, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.9, + "airlineId": 9, + "callsign": "FEDEX", + "codeHub": "MEM", + "codeIataAirline": "FX", + "codeIcaoAirline": "FDX", + "codeIso2Country": "US", + "founding": 1971, + "iataPrefixAccounting": "23", + "nameAirline": "Federal Express", + "nameCountry": "United States", + "sizeAirline": 367, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 6.4, + "airlineId": 10, + "callsign": "RYANAIR", + "codeHub": "STN", + "codeIataAirline": "FR", + "codeIcaoAirline": "RYR", + "codeIso2Country": "IE", + "founding": 1985, + "iataPrefixAccounting": "224", + "nameAirline": "Ryanair Ltd.", + "nameCountry": "Ireland", + "sizeAirline": 353, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.2, + "airlineId": 11, + "callsign": "JET LINK", + "codeHub": "", + "codeIataAirline": "XE", + "codeIcaoAirline": "BTA", + "codeIso2Country": "UM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Expressjet", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 319, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 6.3, + "airlineId": 12, + "callsign": "TURKISH", + "codeHub": "IST", + "codeIataAirline": "TK", + "codeIcaoAirline": "THY", + "codeIso2Country": "TR", + "founding": 1933, + "iataPrefixAccounting": "235", + "nameAirline": "THY - Turkish Airlines", + "nameCountry": "Turkey", + "sizeAirline": 285, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.9, + "airlineId": 13, + "callsign": "LUFTHANSA", + "codeHub": "FRA", + "codeIataAirline": "LH", + "codeIcaoAirline": "GEC", + "codeIso2Country": "DE", + "founding": 1994, + "iataPrefixAccounting": "20", + "nameAirline": "Lufthansa Cargo", + "nameCountry": "Germany", + "sizeAirline": 276, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 12.7, + "airlineId": 14, + "callsign": "SPEEDBIRD", + "codeHub": "LHR", + "codeIataAirline": "BA", + "codeIcaoAirline": "BAW", + "codeIso2Country": "GB", + "founding": 1974, + "iataPrefixAccounting": "125", + "nameAirline": "British Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 265, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.1, + "airlineId": 15, + "callsign": "EMIRATES", + "codeHub": "DXB", + "codeIataAirline": "EK", + "codeIcaoAirline": "UAE", + "codeIso2Country": "AE", + "founding": 1985, + "iataPrefixAccounting": "176", + "nameAirline": "Emirates", + "nameCountry": "United Arab Emirates", + "sizeAirline": 249, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 17.5, + "airlineId": 16, + "callsign": "UPS", + "codeHub": "SDF", + "codeIataAirline": "5X", + "codeIcaoAirline": "UPS", + "codeIso2Country": "US", + "founding": 1907, + "iataPrefixAccounting": "406", + "nameAirline": "UPS Airlines", + "nameCountry": "United States", + "sizeAirline": 237, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 6.6, + "airlineId": 17, + "callsign": "EASY", + "codeHub": "LGW", + "codeIataAirline": "U2", + "codeIcaoAirline": "EZY", + "codeIso2Country": "GB", + "founding": 1995, + "iataPrefixAccounting": "", + "nameAirline": "Easyjet Airline Company Limited", + "nameCountry": "United Kingdom", + "sizeAirline": 228, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.7, + "airlineId": 18, + "callsign": "AIRFRANS", + "codeHub": "CDG", + "codeIataAirline": "AF", + "codeIcaoAirline": "AFR", + "codeIso2Country": "FR", + "founding": 1933, + "iataPrefixAccounting": "57", + "nameAirline": "Air France", + "nameCountry": "France", + "sizeAirline": 226, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.7, + "airlineId": 19, + "callsign": "JETBLUE", + "codeHub": "JFK", + "codeIataAirline": "B6", + "codeIcaoAirline": "JBU", + "codeIso2Country": "US", + "founding": 2000, + "iataPrefixAccounting": "279", + "nameAirline": "JetBlue", + "nameCountry": "United States", + "sizeAirline": 218, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.5, + "airlineId": 20, + "callsign": "ALL NIPPON", + "codeHub": "HND", + "codeIataAirline": "NH", + "codeIcaoAirline": "ANA", + "codeIso2Country": "JP", + "founding": 1952, + "iataPrefixAccounting": "205", + "nameAirline": "All Nippon Airways", + "nameCountry": "Japan", + "sizeAirline": 206, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.7, + "airlineId": 21, + "callsign": "QATARI", + "codeHub": "DOH", + "codeIataAirline": "QR", + "codeIcaoAirline": "QTR", + "codeIso2Country": "QA", + "founding": 1994, + "iataPrefixAccounting": "157", + "nameAirline": "Qatar Airways", + "nameCountry": "Qatar", + "sizeAirline": 176, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.6, + "airlineId": 22, + "callsign": "ENVOY", + "codeHub": "DFW", + "codeIataAirline": "MQ", + "codeIcaoAirline": "ENY", + "codeIso2Country": "UM", + "founding": 2014, + "iataPrefixAccounting": "93", + "nameAirline": "Envoy Air Inc.", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 171, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.3, + "airlineId": 23, + "callsign": "AEROFLOT", + "codeHub": "SVO", + "codeIataAirline": "SU", + "codeIcaoAirline": "AFL", + "codeIso2Country": "RU", + "founding": 1923, + "iataPrefixAccounting": "555", + "nameAirline": "Aeroflot", + "nameCountry": "Russia", + "sizeAirline": 168, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.8, + "airlineId": 24, + "callsign": "SHENZHEN AIR", + "codeHub": "SZX", + "codeIataAirline": "ZH", + "codeIcaoAirline": "CSZ", + "codeIso2Country": "CN", + "founding": 1992, + "iataPrefixAccounting": "479", + "nameAirline": "Shenzhen Airlines", + "nameCountry": "China", + "sizeAirline": 165, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.0, + "airlineId": 25, + "callsign": "AIR CANADA", + "codeHub": "YYZ", + "codeIataAirline": "AC", + "codeIcaoAirline": "ACA", + "codeIso2Country": "CA", + "founding": 2001, + "iataPrefixAccounting": "14", + "nameAirline": "Air Canada", + "nameCountry": "Canada", + "sizeAirline": 164, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.4, + "airlineId": 26, + "callsign": "TAM", + "codeHub": "CGH", + "codeIataAirline": "JJ", + "codeIcaoAirline": "TAM", + "codeIso2Country": "BR", + "founding": 1976, + "iataPrefixAccounting": "957", + "nameAirline": "TAM Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 163, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.0, + "airlineId": 27, + "callsign": "JAPANAIR", + "codeHub": "HND", + "codeIataAirline": "JL", + "codeIcaoAirline": "JAL", + "codeIso2Country": "JP", + "founding": 1951, + "iataPrefixAccounting": "131", + "nameAirline": "Japan Airlines", + "nameCountry": "Japan", + "sizeAirline": 163, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.5, + "airlineId": 28, + "callsign": "KOREANAIR", + "codeHub": "ICN", + "codeIataAirline": "KE", + "codeIcaoAirline": "KAL", + "codeIso2Country": "KR", + "founding": 1962, + "iataPrefixAccounting": "180", + "nameAirline": "Korean Air", + "nameCountry": "South Korea", + "sizeAirline": 159, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.5, + "airlineId": 29, + "callsign": "ALASKA", + "codeHub": "SEA", + "codeIataAirline": "AS", + "codeIcaoAirline": "ASA", + "codeIso2Country": "US", + "founding": 1932, + "iataPrefixAccounting": "27", + "nameAirline": "Alaska Airlines", + "nameCountry": "United States", + "sizeAirline": 156, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.9, + "airlineId": 30, + "callsign": "HAINAN", + "codeHub": "HAK", + "codeIataAirline": "HU", + "codeIcaoAirline": "CHH", + "codeIso2Country": "CN", + "founding": 1989, + "iataPrefixAccounting": "880", + "nameAirline": "Hainan Airlines", + "nameCountry": "China", + "sizeAirline": 155, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.1, + "airlineId": 31, + "callsign": "SCANDINAVIAN", + "codeHub": "CPH", + "codeIataAirline": "SK", + "codeIcaoAirline": "SAS", + "codeIso2Country": "SE", + "founding": 1946, + "iataPrefixAccounting": "117", + "nameAirline": "SAS", + "nameCountry": "Sweden", + "sizeAirline": 155, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.0, + "airlineId": 32, + "callsign": "INDONESIA", + "codeHub": "CGK", + "codeIataAirline": "GA", + "codeIcaoAirline": "GIA", + "codeIso2Country": "ID", + "founding": 1949, + "iataPrefixAccounting": "126", + "nameAirline": "Garuda", + "nameCountry": "Indonesia", + "sizeAirline": 148, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.3, + "airlineId": 33, + "callsign": "CATHAY", + "codeHub": "HKG", + "codeIataAirline": "CX", + "codeIcaoAirline": "CPA", + "codeIso2Country": "HK", + "founding": 1946, + "iataPrefixAccounting": "160", + "nameAirline": "Cathay Pacific", + "nameCountry": "Hong Kong", + "sizeAirline": 143, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.9, + "airlineId": 34, + "callsign": "BRICKYARD", + "codeHub": "IND", + "codeIataAirline": "RW", + "codeIcaoAirline": "RPA", + "codeIso2Country": "US", + "founding": 2003, + "iataPrefixAccounting": "52", + "nameAirline": "Republic Airlines", + "nameCountry": "United States", + "sizeAirline": 139, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.8, + "airlineId": 35, + "callsign": "SAUDIA", + "codeHub": "JED", + "codeIataAirline": "SV", + "codeIcaoAirline": "SVA", + "codeIso2Country": "SA", + "founding": 1945, + "iataPrefixAccounting": "65", + "nameAirline": "Saudi Arabian Airlines", + "nameCountry": "Saudi Arabia", + "sizeAirline": 138, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.3, + "airlineId": 36, + "callsign": "AZUL", + "codeHub": "VCP", + "codeIataAirline": "AD", + "codeIcaoAirline": "AZU", + "codeIso2Country": "BR", + "founding": 2008, + "iataPrefixAccounting": "577", + "nameAirline": "Azul Brazilian Airlines", + "nameCountry": "Brazil", + "sizeAirline": 132, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.2, + "airlineId": 37, + "callsign": "XIAMEN AIR", + "codeHub": "XMN", + "codeIataAirline": "MF", + "codeIcaoAirline": "CXA", + "codeIso2Country": "CN", + "founding": 1984, + "iataPrefixAccounting": "731", + "nameAirline": "Xiamen Airlines", + "nameCountry": "China", + "sizeAirline": 132, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.8, + "airlineId": 38, + "callsign": "GOL", + "codeHub": "CGH", + "codeIataAirline": "G3", + "codeIcaoAirline": "GLO", + "codeIso2Country": "BR", + "founding": 2000, + "iataPrefixAccounting": "127", + "nameAirline": "Gol Linhas Aéreas Inteligentes\nGol Linhas Aéreas Inteligentes\n", + "nameCountry": "Brazil", + "sizeAirline": 127, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.8, + "airlineId": 39, + "callsign": "JAZZ", + "codeHub": "YHZ", + "codeIataAirline": "QK", + "codeIcaoAirline": "JZA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "983", + "nameAirline": "Jazz Aviation LP", + "nameCountry": "Canada", + "sizeAirline": 127, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.8, + "airlineId": 40, + "callsign": "ETIHAD", + "codeHub": "AUH", + "codeIataAirline": "EY", + "codeIcaoAirline": "ETD", + "codeIso2Country": "AE", + "founding": 2003, + "iataPrefixAccounting": "607", + "nameAirline": "Etihad Airways", + "nameCountry": "United Arab Emirates", + "sizeAirline": 126, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.1, + "airlineId": 41, + "callsign": "LAN", + "codeHub": "SCL", + "codeIataAirline": "LA", + "codeIcaoAirline": "LAN", + "codeIso2Country": "CL", + "founding": 2004, + "iataPrefixAccounting": "45", + "nameAirline": "Lan Airlines", + "nameCountry": "Chile", + "sizeAirline": 126, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.5, + "airlineId": 42, + "callsign": "FLAGSHIP", + "codeHub": "MSP", + "codeIataAirline": "9E", + "codeIcaoAirline": "FLG", + "codeIso2Country": "UM", + "founding": 2013, + "iataPrefixAccounting": "430", + "nameAirline": "Endeavor Air", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 122, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.4, + "airlineId": 43, + "callsign": "AIR SHUTTLE", + "codeHub": "PHX", + "codeIataAirline": "YV", + "codeIcaoAirline": "ASH", + "codeIso2Country": "UM", + "founding": 1980, + "iataPrefixAccounting": "533", + "nameAirline": "Mesa Airlines, Inc.", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 122, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.2, + "airlineId": 44, + "callsign": "Q LINK", + "codeHub": "TMW", + "codeIataAirline": "QF", + "codeIcaoAirline": "QFA", + "codeIso2Country": "AU", + "founding": 1920, + "iataPrefixAccounting": "81", + "nameAirline": "Qantas", + "nameCountry": "Australia", + "sizeAirline": 118, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.7, + "airlineId": 45, + "callsign": "LION INTER", + "codeHub": "CGK", + "codeIataAirline": "JT", + "codeIcaoAirline": "LNI", + "codeIso2Country": "ID", + "founding": 1999, + "iataPrefixAccounting": "990", + "nameAirline": "Lion Airlines", + "nameCountry": "Indonesia", + "sizeAirline": 117, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.4, + "airlineId": 46, + "callsign": "WESTJET", + "codeHub": "YYC", + "codeIataAirline": "WS", + "codeIcaoAirline": "WJA", + "codeIso2Country": "CA", + "founding": 1995, + "iataPrefixAccounting": "838", + "nameAirline": "WestJet", + "nameCountry": "Canada", + "sizeAirline": 117, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.1, + "airlineId": 47, + "callsign": "KLM", + "codeHub": "AMS", + "codeIataAirline": "KL", + "codeIcaoAirline": "KLM", + "codeIso2Country": "NL", + "founding": 1919, + "iataPrefixAccounting": "74", + "nameAirline": "KLM", + "nameCountry": "Netherlands", + "sizeAirline": 116, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.1, + "airlineId": 48, + "callsign": "SINGAPORE", + "codeHub": "SIN", + "codeIataAirline": "SQ", + "codeIcaoAirline": "SIA", + "codeIso2Country": "SG", + "founding": 1972, + "iataPrefixAccounting": "618", + "nameAirline": "SIA Cargo", + "nameCountry": "Singapore", + "sizeAirline": 111, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.1, + "airlineId": 49, + "callsign": "BLUE STREAK", + "codeHub": "DAY", + "codeIataAirline": "OH", + "codeIcaoAirline": "JIA", + "codeIso2Country": "US", + "founding": 1979, + "iataPrefixAccounting": "320", + "nameAirline": "PSA Airlines", + "nameCountry": "United States", + "sizeAirline": 109, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.4, + "airlineId": 50, + "callsign": "AIR INDIA", + "codeHub": "DEL", + "codeIataAirline": "AI", + "codeIcaoAirline": "AIC", + "codeIso2Country": "IN", + "founding": 1948, + "iataPrefixAccounting": "98", + "nameAirline": "Air India", + "nameCountry": "India", + "sizeAirline": 108, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.8, + "airlineId": 51, + "callsign": "SICHUAN", + "codeHub": "CTU", + "codeIataAirline": "3U", + "codeIcaoAirline": "CSC", + "codeIso2Country": "CN", + "founding": 1986, + "iataPrefixAccounting": "876", + "nameAirline": "Sichuan Airlines", + "nameCountry": "China", + "sizeAirline": 107, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.7, + "airlineId": 52, + "callsign": "IFLY", + "codeHub": "DEL", + "codeIataAirline": "6E", + "codeIcaoAirline": "IGO", + "codeIso2Country": "IN", + "founding": 2006, + "iataPrefixAccounting": "312", + "nameAirline": "Interglobe Aviation Ltd. dba Indigo", + "nameCountry": "India", + "sizeAirline": 107, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.7, + "airlineId": 53, + "callsign": "VUELING", + "codeHub": "BCN", + "codeIataAirline": "VY", + "codeIcaoAirline": "VLG", + "codeIso2Country": "ES", + "founding": 2004, + "iataPrefixAccounting": "30", + "nameAirline": "Vueling", + "nameCountry": "Spain", + "sizeAirline": 105, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.5, + "airlineId": 54, + "callsign": "ALITALIA", + "codeHub": "FCO", + "codeIataAirline": "AZ", + "codeIcaoAirline": "AZA", + "codeIso2Country": "IT", + "founding": 1957, + "iataPrefixAccounting": "55", + "nameAirline": "Alitalia", + "nameCountry": "Italy", + "sizeAirline": 102, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.5, + "airlineId": 55, + "callsign": "AVIANCA", + "codeHub": "BOG", + "codeIataAirline": "AV", + "codeIcaoAirline": "AVA", + "codeIso2Country": "CO", + "founding": 1933, + "iataPrefixAccounting": "134", + "nameAirline": "AVIANCA", + "nameCountry": "Colombia", + "sizeAirline": 99, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.3, + "airlineId": 56, + "callsign": "VIRGIN", + "codeHub": "BNE", + "codeIataAirline": "VA", + "codeIcaoAirline": "VAU", + "codeIso2Country": "AU", + "founding": 2011, + "iataPrefixAccounting": "795", + "nameAirline": "Virgin Australia", + "nameCountry": "Australia", + "sizeAirline": 98, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.5, + "airlineId": 57, + "callsign": "MERCURY", + "codeHub": "FWA", + "codeIataAirline": "S5", + "codeIcaoAirline": "TCF", + "codeIso2Country": "UM", + "founding": 0, + "iataPrefixAccounting": "919", + "nameAirline": "Shuttle America", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 95, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.6, + "airlineId": 58, + "callsign": "SHANDONG", + "codeHub": "TNA", + "codeIataAirline": "SC", + "codeIcaoAirline": "CDG", + "codeIso2Country": "CN", + "founding": 1994, + "iataPrefixAccounting": "324", + "nameAirline": "Shandong Airlines", + "nameCountry": "China", + "sizeAirline": 93, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.7, + "airlineId": 59, + "callsign": "JET AIRWAYS", + "codeHub": "BOM", + "codeIataAirline": "9W", + "codeIcaoAirline": "JAI", + "codeIso2Country": "IN", + "founding": 1992, + "iataPrefixAccounting": "589", + "nameAirline": "Jet Airways", + "nameCountry": "India", + "sizeAirline": 92, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.2, + "airlineId": 60, + "callsign": "CHINA DRAGON", + "codeHub": "TSN", + "codeIataAirline": "GS", + "codeIcaoAirline": "GCR", + "codeIso2Country": "CN", + "founding": 2009, + "iataPrefixAccounting": "826", + "nameAirline": "Tianjin Airlines", + "nameCountry": "China", + "sizeAirline": 91, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.4, + "airlineId": 61, + "callsign": "VIETNAM AIRLINES", + "codeHub": "SGN", + "codeIataAirline": "VN", + "codeIcaoAirline": "HVN", + "codeIso2Country": "VN", + "founding": 1951, + "iataPrefixAccounting": "738", + "nameAirline": "Vietnam Airlines", + "nameCountry": "Vietnam", + "sizeAirline": 89, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.1, + "airlineId": 62, + "callsign": "COPA", + "codeHub": "PTY", + "codeIataAirline": "CM", + "codeIcaoAirline": "CMP", + "codeIso2Country": "PA", + "founding": 1947, + "iataPrefixAccounting": "230", + "nameAirline": "COPA Airlines", + "nameCountry": "Panama", + "sizeAirline": 88, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.7, + "airlineId": 63, + "callsign": "SHANGHAI AIR", + "codeHub": "SHA", + "codeIataAirline": "FM", + "codeIcaoAirline": "CSH", + "codeIso2Country": "CN", + "founding": 1985, + "iataPrefixAccounting": "774", + "nameAirline": "Shanghai Airlines", + "nameCountry": "China", + "sizeAirline": 86, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.1, + "airlineId": 64, + "callsign": "AIR BERLIN", + "codeHub": "TXL", + "codeIataAirline": "AB", + "codeIcaoAirline": "BER", + "codeIso2Country": "DE", + "founding": 1978, + "iataPrefixAccounting": "745", + "nameAirline": "Air Berlin", + "nameCountry": "Germany", + "sizeAirline": 85, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.8, + "airlineId": 65, + "callsign": "AUSTRIAN", + "codeHub": "VIE", + "codeIataAirline": "OS", + "codeIcaoAirline": "AUA", + "codeIso2Country": "AT", + "founding": 1957, + "iataPrefixAccounting": "257", + "nameAirline": "Austrian", + "nameCountry": "Austria", + "sizeAirline": 85, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.2, + "airlineId": 66, + "callsign": "SPIRIT WINGS", + "codeHub": "FLL", + "codeIataAirline": "NK", + "codeIcaoAirline": "NKS", + "codeIso2Country": "UM", + "founding": 1980, + "iataPrefixAccounting": "487", + "nameAirline": "Spirit Airlines", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 84, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.3, + "airlineId": 67, + "callsign": "ASIANA", + "codeHub": "ICN", + "codeIataAirline": "OZ", + "codeIcaoAirline": "AAR", + "codeIso2Country": "KR", + "founding": 1988, + "iataPrefixAccounting": "988", + "nameAirline": "Asiana", + "nameCountry": "South Korea", + "sizeAirline": 84, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.6, + "airlineId": 68, + "callsign": "DYNASTY", + "codeHub": "TPE", + "codeIataAirline": "CI", + "codeIcaoAirline": "CAL", + "codeIso2Country": "TW", + "founding": 1959, + "iataPrefixAccounting": "297", + "nameAirline": "China Airlines", + "nameCountry": "Chinese Taipei", + "sizeAirline": 83, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.6, + "airlineId": 69, + "callsign": "ALLEGIANT", + "codeHub": "LAS", + "codeIataAirline": "G4", + "codeIcaoAirline": "AAY", + "codeIso2Country": "UM", + "founding": 1997, + "iataPrefixAccounting": "268", + "nameAirline": "Allegiant Air LLC", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 83, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.3, + "airlineId": 70, + "callsign": "MALAYSIAN", + "codeHub": "KUL", + "codeIataAirline": "MH", + "codeIcaoAirline": "MAS", + "codeIso2Country": "MY", + "founding": 1971, + "iataPrefixAccounting": "232", + "nameAirline": "Malaysia Airlines", + "nameCountry": "Malaysia", + "sizeAirline": 83, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.6, + "airlineId": 71, + "callsign": "ASIAN EXPRESS", + "codeHub": "KUL", + "codeIataAirline": "AK", + "codeIcaoAirline": "AXM", + "codeIso2Country": "MY", + "founding": 1993, + "iataPrefixAccounting": "807", + "nameAirline": "AirAsia Berhad dba AirAsia", + "nameCountry": "Malaysia", + "sizeAirline": 82, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.5, + "airlineId": 72, + "callsign": "THAI", + "codeHub": "BKK", + "codeIataAirline": "TG", + "codeIcaoAirline": "THA", + "codeIso2Country": "TH", + "founding": 1959, + "iataPrefixAccounting": "217", + "nameAirline": "Thai Airways International", + "nameCountry": "Thailand", + "sizeAirline": 81, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.9, + "airlineId": 73, + "callsign": "IBERIA", + "codeHub": "MAD", + "codeIataAirline": "IB", + "codeIcaoAirline": "IBE", + "codeIso2Country": "ES", + "founding": 1927, + "iataPrefixAccounting": "75", + "nameAirline": "IBERIA", + "nameCountry": "Spain", + "sizeAirline": 78, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.7, + "airlineId": 74, + "callsign": "JERSEY", + "codeHub": "EXT", + "codeIataAirline": "BE", + "codeIcaoAirline": "BEE", + "codeIso2Country": "GB", + "founding": 2002, + "iataPrefixAccounting": "267", + "nameAirline": "flybe", + "nameCountry": "United Kingdom", + "sizeAirline": 63, + "statusAirline": "historical/administration", + "type": "scheduled" + }, + { + "ageFleet": 5.9, + "airlineId": 75, + "callsign": "ETHIOPIAN", + "codeHub": "ADD", + "codeIataAirline": "ET", + "codeIcaoAirline": "ETH", + "codeIso2Country": "ET", + "founding": 1945, + "iataPrefixAccounting": "71", + "nameAirline": "Ethiopian Airlines", + "nameCountry": "Ethiopia", + "sizeAirline": 69, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.2, + "airlineId": 76, + "callsign": "JETSTAR", + "codeHub": "MEL", + "codeIataAirline": "JQ", + "codeIcaoAirline": "JST", + "codeIso2Country": "AU", + "founding": 2004, + "iataPrefixAccounting": "41", + "nameAirline": "Jetstar Airways Pty Limited", + "nameCountry": "Australia", + "sizeAirline": 69, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.2, + "airlineId": 77, + "callsign": "WIZZ AIR", + "codeHub": "BUD", + "codeIataAirline": "W6", + "codeIcaoAirline": "WZZ", + "codeIso2Country": "HU", + "founding": 2004, + "iataPrefixAccounting": "", + "nameAirline": "Wizz Air Hungary Ltd.", + "nameCountry": "Hungary", + "sizeAirline": 68, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.8, + "airlineId": 78, + "callsign": "AIR WISCONSIN", + "codeHub": "ATW", + "codeIataAirline": "ZW", + "codeIcaoAirline": "AWI", + "codeIso2Country": "UM", + "founding": 1965, + "iataPrefixAccounting": "303", + "nameAirline": "Air Wisconsin Airlines Corporation (AWAC)", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 68, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.9, + "airlineId": 79, + "callsign": "SWISS", + "codeHub": "ZRH", + "codeIataAirline": "LX", + "codeIcaoAirline": "SWR", + "codeIso2Country": "CH", + "founding": 2002, + "iataPrefixAccounting": "724", + "nameAirline": "SWISS", + "nameCountry": "Switzerland", + "sizeAirline": 67, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.4, + "airlineId": 80, + "callsign": "WATERSKI", + "codeHub": "STL", + "codeIataAirline": "AX", + "codeIcaoAirline": "LOF", + "codeIso2Country": "US", + "founding": 1982, + "iataPrefixAccounting": "414", + "nameAirline": "Trans States Airlines, LLC", + "nameCountry": "United States", + "sizeAirline": 65, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.8, + "airlineId": 81, + "callsign": "EVA", + "codeHub": "TPE", + "codeIataAirline": "BR", + "codeIcaoAirline": "EVA", + "codeIso2Country": "TW", + "founding": 1989, + "iataPrefixAccounting": "695", + "nameAirline": "EVA Air", + "nameCountry": "Chinese Taipei", + "sizeAirline": 65, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.3, + "airlineId": 82, + "callsign": "SIBERIAN AIRLINES", + "codeHub": "DME", + "codeIataAirline": "S7", + "codeIcaoAirline": "SBI", + "codeIso2Country": "RU", + "founding": 1992, + "iataPrefixAccounting": "421", + "nameAirline": "S7 Airlines", + "nameCountry": "Russia", + "sizeAirline": 65, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.2, + "airlineId": 83, + "callsign": "AEROMEXICO", + "codeHub": "MEX", + "codeIataAirline": "AM", + "codeIcaoAirline": "AMX", + "codeIso2Country": "MX", + "founding": 1972, + "iataPrefixAccounting": "139", + "nameAirline": "Aeromexico", + "nameCountry": "Mexico", + "sizeAirline": 64, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.4, + "airlineId": 84, + "callsign": "INTERJET", + "codeHub": "TLC", + "codeIataAirline": "4O", + "codeIcaoAirline": "AIJ", + "codeIso2Country": "MX", + "founding": 2005, + "iataPrefixAccounting": "837", + "nameAirline": "Interjet", + "nameCountry": "Mexico", + "sizeAirline": 63, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.9, + "airlineId": 85, + "callsign": "COSTERA", + "codeHub": "MTY", + "codeIataAirline": "5D", + "codeIcaoAirline": "SLI", + "codeIso2Country": "MX", + "founding": 2007, + "iataPrefixAccounting": "642", + "nameAirline": "Aerolitoral S.A. de C.V.", + "nameCountry": "Mexico", + "sizeAirline": 63, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.1, + "airlineId": 86, + "callsign": "CAPITAL JET", + "codeHub": "HAK", + "codeIataAirline": "JD", + "codeIcaoAirline": "CBJ", + "codeIso2Country": "CN", + "founding": 1995, + "iataPrefixAccounting": "898", + "nameAirline": "Capital Airlines", + "nameCountry": "China", + "sizeAirline": 63, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.2, + "airlineId": 87, + "callsign": "SUNTURK", + "codeHub": "SAW", + "codeIataAirline": "PC", + "codeIcaoAirline": "PGT", + "codeIso2Country": "TR", + "founding": 1990, + "iataPrefixAccounting": "624", + "nameAirline": "Pegasus Airlines", + "nameCountry": "Turkey", + "sizeAirline": 63, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.2, + "airlineId": 88, + "callsign": "TJUMAVI", + "codeHub": "SGC", + "codeIataAirline": "UT", + "codeIcaoAirline": "UTA", + "codeIso2Country": "RU", + "founding": 1991, + "iataPrefixAccounting": "298", + "nameAirline": "UTair", + "nameCountry": "Russia", + "sizeAirline": 63, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.6, + "airlineId": 89, + "callsign": "TOMJET", + "codeHub": "LTN", + "codeIataAirline": "BY", + "codeIcaoAirline": "TOM", + "codeIso2Country": "GB", + "founding": 1962, + "iataPrefixAccounting": "754", + "nameAirline": "TUI Airways Limited", + "nameCountry": "United Kingdom", + "sizeAirline": 58, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 5.8, + "airlineId": 90, + "callsign": "COMPASS", + "codeHub": "MSP", + "codeIataAirline": "CP", + "codeIcaoAirline": "CPZ", + "codeIso2Country": "UM", + "founding": 2007, + "iataPrefixAccounting": "3", + "nameAirline": "Compass Airlines LLC", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 62, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.9, + "airlineId": 91, + "callsign": "AIR PORTUGAL", + "codeHub": "LIS", + "codeIataAirline": "TP", + "codeIcaoAirline": "TAP", + "codeIso2Country": "PT", + "founding": 1945, + "iataPrefixAccounting": "47", + "nameAirline": "TAP Portugal", + "nameCountry": "Portugal", + "sizeAirline": 62, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.3, + "airlineId": 92, + "callsign": "REDWOOD", + "codeHub": "SFO", + "codeIataAirline": "VX", + "codeIcaoAirline": "VRD", + "codeIso2Country": "US", + "founding": 2006, + "iataPrefixAccounting": "984", + "nameAirline": "Virgin America", + "nameCountry": "United States", + "sizeAirline": 62, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.5, + "airlineId": 93, + "callsign": "VOLARIS", + "codeHub": "TLC", + "codeIataAirline": "Y4", + "codeIcaoAirline": "VOI", + "codeIso2Country": "MX", + "founding": 2006, + "iataPrefixAccounting": "36", + "nameAirline": "Volaris", + "nameCountry": "Mexico", + "sizeAirline": 62, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.6, + "airlineId": 94, + "callsign": "GERMAN WINGS", + "codeHub": "CGN", + "codeIataAirline": "4U", + "codeIcaoAirline": "GWI", + "codeIso2Country": "DE", + "founding": 2002, + "iataPrefixAccounting": "51", + "nameAirline": "Germanwings GmbH", + "nameCountry": "Germany", + "sizeAirline": 61, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.9, + "airlineId": 95, + "callsign": "CHANNEX", + "codeHub": "LBA", + "codeIataAirline": "LS", + "codeIcaoAirline": "EXS", + "codeIso2Country": "GB", + "founding": 2002, + "iataPrefixAccounting": "949", + "nameAirline": "Jet2.com Limited", + "nameCountry": "United Kingdom", + "sizeAirline": 61, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 4.7, + "airlineId": 96, + "callsign": "PHILIPPINE", + "codeHub": "MNL", + "codeIataAirline": "PR", + "codeIcaoAirline": "PAL", + "codeIso2Country": "PH", + "founding": 1941, + "iataPrefixAccounting": "79", + "nameAirline": "Philippine Airlines", + "nameCountry": "Philippines", + "sizeAirline": 59, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 3.5, + "airlineId": 97, + "callsign": "AIR SPRING", + "codeHub": "SHA", + "codeIataAirline": "9C", + "codeIcaoAirline": "CQH", + "codeIso2Country": "CN", + "founding": 2005, + "iataPrefixAccounting": "89", + "nameAirline": "Spring Airlines Limited Corporation", + "nameCountry": "China", + "sizeAirline": 58, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.7, + "airlineId": 98, + "callsign": "FRONTIER FLIGHT", + "codeHub": "DEN", + "codeIataAirline": "F9", + "codeIcaoAirline": "FFT", + "codeIso2Country": "UM", + "founding": 1994, + "iataPrefixAccounting": "422", + "nameAirline": "Frontier Airlines, Inc.", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 58, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.0, + "airlineId": 99, + "callsign": "CEBU AIR", + "codeHub": "MNL", + "codeIataAirline": "5J", + "codeIcaoAirline": "CEB", + "codeIso2Country": "PH", + "founding": 1996, + "iataPrefixAccounting": "203", + "nameAirline": "Cebu Pacific Air", + "nameCountry": "Philippines", + "sizeAirline": 57, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 3.7, + "airlineId": 100, + "callsign": "NOR SHUTTLE", + "codeHub": "OSL", + "codeIataAirline": "DY", + "codeIcaoAirline": "NAX", + "codeIso2Country": "NO", + "founding": 1993, + "iataPrefixAccounting": "328", + "nameAirline": "Norwegian Air Shuttle A.S.", + "nameCountry": "Norway", + "sizeAirline": 57, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.2, + "airlineId": 101, + "callsign": "EGYPTAIR", + "codeHub": "CAI", + "codeIataAirline": "MS", + "codeIcaoAirline": "MSR", + "codeIso2Country": "EG", + "founding": 1932, + "iataPrefixAccounting": "77", + "nameAirline": "Egyptair", + "nameCountry": "Egypt", + "sizeAirline": 56, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.6, + "airlineId": 102, + "callsign": "NEW ZEALAND", + "codeHub": "AKL", + "codeIataAirline": "NZ", + "codeIcaoAirline": "ANZ", + "codeIso2Country": "NZ", + "founding": 1940, + "iataPrefixAccounting": "86", + "nameAirline": "Air New Zealand", + "nameCountry": "New Zealand", + "sizeAirline": 55, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.9, + "airlineId": 103, + "callsign": "ARGENTINA", + "codeHub": "AEP", + "codeIataAirline": "AR", + "codeIcaoAirline": "ARG", + "codeIso2Country": "AR", + "founding": 1949, + "iataPrefixAccounting": "44", + "nameAirline": "Aerolineas Argentinas", + "nameCountry": "Argentina", + "sizeAirline": 53, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.4, + "airlineId": 104, + "callsign": "LINDBERGH", + "codeHub": "STL", + "codeIataAirline": "G7", + "codeIcaoAirline": "GJS", + "codeIso2Country": "UM", + "founding": 2005, + "iataPrefixAccounting": "573", + "nameAirline": "GoJet Airlines LLC", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 53, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.0, + "airlineId": 105, + "callsign": "EUROPA", + "codeHub": "MAD", + "codeIataAirline": "UX", + "codeIcaoAirline": "AEA", + "codeIso2Country": "ES", + "founding": 1986, + "iataPrefixAccounting": "996", + "nameAirline": "Air Europa", + "nameCountry": "Spain", + "sizeAirline": 53, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.3, + "airlineId": 106, + "callsign": "HORIZON AIR", + "codeHub": "SEA", + "codeIataAirline": "QX", + "codeIcaoAirline": "QXE", + "codeIso2Country": "UM", + "founding": 0, + "iataPrefixAccounting": "481", + "nameAirline": "Horizon Air Industries, Inc.", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 52, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.0, + "airlineId": 107, + "callsign": "SPRINGBOK", + "codeHub": "JNB", + "codeIataAirline": "SA", + "codeIcaoAirline": "SAA", + "codeIso2Country": "ZA", + "founding": 1934, + "iataPrefixAccounting": "83", + "nameAirline": "SAA", + "nameCountry": "South Africa", + "sizeAirline": 52, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.3, + "airlineId": 108, + "callsign": "REX", + "codeHub": "SYD", + "codeIataAirline": "ZL", + "codeIcaoAirline": "REX", + "codeIso2Country": "AU", + "founding": 2002, + "iataPrefixAccounting": "899", + "nameAirline": "REX Regional Express", + "nameCountry": "Australia", + "sizeAirline": 52, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.5, + "airlineId": 109, + "callsign": "AIR ALGERIE", + "codeHub": "ALG", + "codeIataAirline": "AH", + "codeIcaoAirline": "DAH", + "codeIso2Country": "DZ", + "founding": 1962, + "iataPrefixAccounting": "124", + "nameAirline": "Air Algerie", + "nameCountry": "Algeria", + "sizeAirline": 51, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.8, + "airlineId": 110, + "callsign": "FINNAIR", + "codeHub": "HEL", + "codeIataAirline": "AY", + "codeIcaoAirline": "FIN", + "codeIso2Country": "AX", + "founding": 1923, + "iataPrefixAccounting": "105", + "nameAirline": "Finnair", + "nameCountry": "Aland Islands", + "sizeAirline": 51, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.7, + "airlineId": 111, + "callsign": "HANSALINE", + "codeHub": "CGN", + "codeIataAirline": "CL", + "codeIcaoAirline": "CLH", + "codeIso2Country": "DE", + "founding": 1958, + "iataPrefixAccounting": "683", + "nameAirline": "Lufthansa CityLine", + "nameCountry": "Germany", + "sizeAirline": 51, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.2, + "airlineId": 112, + "callsign": "RUSSIA", + "codeHub": "LED", + "codeIataAirline": "FV", + "codeIcaoAirline": "SDM", + "codeIso2Country": "RU", + "founding": 1995, + "iataPrefixAccounting": "195", + "nameAirline": "Rossiya Airlines", + "nameCountry": "Russia", + "sizeAirline": 50, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 3.6, + "airlineId": 113, + "callsign": "SKYDUBAI", + "codeHub": "DXB", + "codeIataAirline": "FZ", + "codeIcaoAirline": "FDB", + "codeIso2Country": "AE", + "founding": 2008, + "iataPrefixAccounting": "141", + "nameAirline": "flydubai", + "nameCountry": "United Arab Emirates", + "sizeAirline": 50, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.1, + "airlineId": 114, + "callsign": "JUNEYAO AIRLINES", + "codeHub": "SHA", + "codeIataAirline": "HO", + "codeIcaoAirline": "DKH", + "codeIso2Country": "CN", + "founding": 2005, + "iataPrefixAccounting": "18", + "nameAirline": "Juneyao Airlines", + "nameCountry": "China", + "sizeAirline": 50, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 3.1, + "airlineId": 115, + "callsign": "WINGS ABADI", + "codeHub": "SUB", + "codeIataAirline": "IW", + "codeIcaoAirline": "WON", + "codeIso2Country": "ID", + "founding": 2003, + "iataPrefixAccounting": "513", + "nameAirline": "PT. Wings Abadi Airlines", + "nameCountry": "Indonesia", + "sizeAirline": 50, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.4, + "airlineId": 116, + "callsign": "B-LINE", + "codeHub": "BRU", + "codeIataAirline": "SN", + "codeIcaoAirline": "BEL", + "codeIso2Country": "BE", + "founding": 2007, + "iataPrefixAccounting": "82", + "nameAirline": "Brussels Airlines", + "nameCountry": "Belgium", + "sizeAirline": 50, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.8, + "airlineId": 117, + "callsign": "MAHAN AIR", + "codeHub": "THR", + "codeIataAirline": "W5", + "codeIcaoAirline": "IRM", + "codeIso2Country": "IR", + "founding": 1991, + "iataPrefixAccounting": "537", + "nameAirline": "Mahan Air", + "nameCountry": "Iran", + "sizeAirline": 50, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.0, + "airlineId": 118, + "callsign": "ROYALAIR MAROC", + "codeHub": "CMN", + "codeIataAirline": "AT", + "codeIcaoAirline": "RAM", + "codeIso2Country": "MA", + "founding": 1953, + "iataPrefixAccounting": "147", + "nameAirline": "Royal Air Maroc", + "nameCountry": "Morocco", + "sizeAirline": 49, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.7, + "airlineId": 119, + "callsign": "SHAMROCK", + "codeHub": "DUB", + "codeIataAirline": "EI", + "codeIcaoAirline": "EIN", + "codeIso2Country": "IE", + "founding": 1936, + "iataPrefixAccounting": "53", + "nameAirline": "Aer Lingus", + "nameCountry": "Ireland", + "sizeAirline": 48, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.6, + "airlineId": 120, + "callsign": "THAI ASIA", + "codeHub": "BKK", + "codeIataAirline": "FD", + "codeIcaoAirline": "AIQ", + "codeIso2Country": "TH", + "founding": 2003, + "iataPrefixAccounting": "900", + "nameAirline": "Thai AirAsia", + "nameCountry": "Thailand", + "sizeAirline": 48, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.9, + "airlineId": 121, + "callsign": "HAWAIIAN", + "codeHub": "HNL", + "codeIataAirline": "HA", + "codeIcaoAirline": "HAL", + "codeIso2Country": "US", + "founding": 1929, + "iataPrefixAccounting": "173", + "nameAirline": "Hawaiian Airlines", + "nameCountry": "United States", + "sizeAirline": 48, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.5, + "airlineId": 122, + "callsign": "AEGEAN", + "codeHub": "ATH", + "codeIataAirline": "A3", + "codeIcaoAirline": "AEE", + "codeIso2Country": "GR", + "founding": 2001, + "iataPrefixAccounting": "390", + "nameAirline": "Aegean Airlines", + "nameCountry": "Greece", + "sizeAirline": 47, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 27.0, + "airlineId": 123, + "callsign": "IRANAIR", + "codeHub": "THR", + "codeIataAirline": "IR", + "codeIcaoAirline": "IRA", + "codeIso2Country": "IR", + "founding": 1962, + "iataPrefixAccounting": "96", + "nameAirline": "Iran Air", + "nameCountry": "Iran", + "sizeAirline": 46, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.8, + "airlineId": 124, + "callsign": "CITY", + "codeHub": "AMS", + "codeIataAirline": "WA", + "codeIcaoAirline": "KLC", + "codeIso2Country": "NL", + "founding": 1991, + "iataPrefixAccounting": "", + "nameAirline": "KLM Cityhopper", + "nameCountry": "Netherlands", + "sizeAirline": 46, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.7, + "airlineId": 125, + "callsign": "CONDOR", + "codeHub": "FRA", + "codeIataAirline": "DE", + "codeIcaoAirline": "CFG", + "codeIso2Country": "DE", + "founding": 1955, + "iataPrefixAccounting": "881", + "nameAirline": "Condor", + "nameCountry": "Germany", + "sizeAirline": 44, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 3.8, + "airlineId": 126, + "callsign": "OCEANAIR", + "codeHub": "SDU", + "codeIataAirline": "O6", + "codeIcaoAirline": "ONE", + "codeIso2Country": "BR", + "founding": 2010, + "iataPrefixAccounting": "247", + "nameAirline": "Avianca Brasil", + "nameCountry": "Brazil", + "sizeAirline": 43, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.8, + "airlineId": 127, + "callsign": "ROUGE", + "codeHub": "YYZ", + "codeIataAirline": "RV", + "codeIcaoAirline": "ROU", + "codeIso2Country": "CA", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "Air Canada rouge", + "nameCountry": "Canada", + "sizeAirline": 43, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.5, + "airlineId": 128, + "callsign": "REGIONAL EUROPE", + "codeHub": "CFE", + "codeIataAirline": "YS", + "codeIcaoAirline": "RAE", + "codeIso2Country": "FR", + "founding": 1992, + "iataPrefixAccounting": "977", + "nameAirline": "Regional Compagnie Aerienne Europee t/a HOP!-REGIONAL", + "nameCountry": "France", + "sizeAirline": 43, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.9, + "airlineId": 129, + "callsign": "DRAGON", + "codeHub": "HKG", + "codeIataAirline": "KA", + "codeIcaoAirline": "HDA", + "codeIso2Country": "HK", + "founding": 1985, + "iataPrefixAccounting": "43", + "nameAirline": "Dragonair", + "nameCountry": "Hong Kong", + "sizeAirline": 42, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.0, + "airlineId": 130, + "callsign": "LOT", + "codeHub": "WAW", + "codeIataAirline": "LO", + "codeIcaoAirline": "LOT", + "codeIso2Country": "PL", + "founding": 1929, + "iataPrefixAccounting": "80", + "nameAirline": "LOT Polish Airlines", + "nameCountry": "Poland", + "sizeAirline": 42, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.7, + "airlineId": 131, + "callsign": "SUPERGREEN", + "codeHub": "SUB", + "codeIataAirline": "QG", + "codeIcaoAirline": "CTV", + "codeIso2Country": "ID", + "founding": 2004, + "iataPrefixAccounting": "", + "nameAirline": "PT. Citilink Indonesia", + "nameCountry": "Indonesia", + "sizeAirline": 42, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.9, + "airlineId": 132, + "callsign": "SPICEJET", + "codeHub": "DEL", + "codeIataAirline": "SG", + "codeIcaoAirline": "SEJ", + "codeIso2Country": "IN", + "founding": 2005, + "iataPrefixAccounting": "775", + "nameAirline": "SpiceJet Ltd.", + "nameCountry": "India", + "sizeAirline": 42, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.7, + "airlineId": 133, + "callsign": "OMAN", + "codeHub": "MCT", + "codeIataAirline": "WY", + "codeIcaoAirline": "OAS", + "codeIso2Country": "OM", + "founding": 1981, + "iataPrefixAccounting": "910", + "nameAirline": "Oman Air", + "nameCountry": "Oman", + "sizeAirline": 42, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.8, + "airlineId": 134, + "callsign": "ALPHA WING", + "codeHub": "HND", + "codeIataAirline": "EH", + "codeIcaoAirline": "AKX", + "codeIso2Country": "JP", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "ANA Wings Co., Ltd.", + "nameCountry": "Japan", + "sizeAirline": 41, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.4, + "airlineId": 135, + "callsign": "TRANSAVIA", + "codeHub": "AMS", + "codeIataAirline": "HV", + "codeIcaoAirline": "TRA", + "codeIso2Country": "NL", + "founding": 1965, + "iataPrefixAccounting": "979", + "nameAirline": "Transavia Airlines", + "nameCountry": "Netherlands", + "sizeAirline": 40, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 17.9, + "airlineId": 136, + "callsign": "WIDEROE", + "codeHub": "BGO", + "codeIataAirline": "WF", + "codeIcaoAirline": "WIF", + "codeIso2Country": "NO", + "founding": 1934, + "iataPrefixAccounting": "701", + "nameAirline": "Wideroe", + "nameCountry": "Norway", + "sizeAirline": 40, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.8, + "airlineId": 137, + "callsign": "HAPAG LLOYD", + "codeHub": "HAJ", + "codeIataAirline": "X3", + "codeIcaoAirline": "TUI", + "codeIso2Country": "DE", + "founding": 2007, + "iataPrefixAccounting": "617", + "nameAirline": "TUIfly", + "nameCountry": "Germany", + "sizeAirline": 40, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 3.8, + "airlineId": 138, + "callsign": "NORDTRANS", + "codeHub": "DUB", + "codeIataAirline": "D8", + "codeIcaoAirline": "IBK", + "codeIso2Country": "IE", + "founding": 2015, + "iataPrefixAccounting": "329", + "nameAirline": "Norwegian Air International LTD.", + "nameCountry": "Ireland", + "sizeAirline": 39, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.2, + "airlineId": 139, + "callsign": "EL AL", + "codeHub": "TLV", + "codeIataAirline": "LY", + "codeIcaoAirline": "ELY", + "codeIso2Country": "IL", + "founding": 1948, + "iataPrefixAccounting": "114", + "nameAirline": "EL AL", + "nameCountry": "Israel", + "sizeAirline": 39, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.4, + "airlineId": 140, + "callsign": "VIRGIN", + "codeHub": "LHR", + "codeIataAirline": "VS", + "codeIcaoAirline": "VIR", + "codeIso2Country": "GB", + "founding": 1984, + "iataPrefixAccounting": "932", + "nameAirline": "Virgin Atlantic", + "nameCountry": "United Kingdom", + "sizeAirline": 39, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.4, + "airlineId": 141, + "callsign": "KESTREL", + "codeHub": "LGW", + "codeIataAirline": "MT", + "codeIcaoAirline": "TCX", + "codeIso2Country": "GB", + "founding": 2003, + "iataPrefixAccounting": "727", + "nameAirline": "Thomas Cook Airlines Limited of Manchester", + "nameCountry": "United Kingdom", + "sizeAirline": 38, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 11.7, + "airlineId": 142, + "callsign": "PAKISTAN", + "codeHub": "KHI", + "codeIataAirline": "PK", + "codeIcaoAirline": "PIA", + "codeIso2Country": "PK", + "founding": 1954, + "iataPrefixAccounting": "214", + "nameAirline": "PIA", + "nameCountry": "Pakistan", + "sizeAirline": 38, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.1, + "airlineId": 143, + "callsign": "SUNWING", + "codeHub": "YYZ", + "codeIataAirline": "WG", + "codeIcaoAirline": "SWG", + "codeIso2Country": "CA", + "founding": 2004, + "iataPrefixAccounting": "292", + "nameAirline": "Sunwing Airlines Inc.", + "nameCountry": "Canada", + "sizeAirline": 38, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 1.4, + "airlineId": 144, + "callsign": "BATIK", + "codeHub": "MDC", + "codeIataAirline": "ID", + "codeIcaoAirline": "BTK", + "codeIso2Country": "ID", + "founding": 2013, + "iataPrefixAccounting": "938", + "nameAirline": "PT. Batik Air Indonesia", + "nameCountry": "Indonesia", + "sizeAirline": 37, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.4, + "airlineId": 145, + "callsign": "SRIWIJAYA", + "codeHub": "CGK", + "codeIataAirline": "SJ", + "codeIcaoAirline": "SJY", + "codeIso2Country": "ID", + "founding": 2003, + "iataPrefixAccounting": "977", + "nameAirline": "PT. Sriwijaya Air", + "nameCountry": "Indonesia", + "sizeAirline": 37, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.9, + "airlineId": 146, + "callsign": "SVERDLOVSK AIR", + "codeHub": "SVX", + "codeIataAirline": "U6", + "codeIcaoAirline": "SVR", + "codeIso2Country": "RU", + "founding": 1996, + "iataPrefixAccounting": "262", + "nameAirline": "Ural Airlines", + "nameCountry": "Russia", + "sizeAirline": 37, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.7, + "airlineId": 147, + "callsign": "SWIFT", + "codeHub": "MAD", + "codeIataAirline": "WT", + "codeIcaoAirline": "SWT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "227", + "nameAirline": "Swiftair, S.A.", + "nameCountry": "Spain", + "sizeAirline": 37, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 20.2, + "airlineId": 148, + "callsign": "GIANT", + "codeHub": "MIA", + "codeIataAirline": "5Y", + "codeIcaoAirline": "GTI", + "codeIso2Country": "US", + "founding": 1992, + "iataPrefixAccounting": "369", + "nameAirline": "Atlas Air", + "nameCountry": "United States", + "sizeAirline": 36, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 2.9, + "airlineId": 149, + "callsign": "ARABIA", + "codeHub": "SHJ", + "codeIataAirline": "G9", + "codeIcaoAirline": "ABY", + "codeIso2Country": "AE", + "founding": 2003, + "iataPrefixAccounting": "514", + "nameAirline": "Air Arabia", + "nameCountry": "United Arab Emirates", + "sizeAirline": 36, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.6, + "airlineId": 150, + "callsign": "TACA", + "codeHub": "SAL", + "codeIataAirline": "TA", + "codeIcaoAirline": "TAI", + "codeIso2Country": "SV", + "founding": 2014, + "iataPrefixAccounting": "202", + "nameAirline": "TACA", + "nameCountry": "El Salvador", + "sizeAirline": 36, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.6, + "airlineId": 151, + "callsign": "FIREFLY", + "codeHub": "KUL", + "codeIataAirline": "FY", + "codeIcaoAirline": "FFM", + "codeIso2Country": "MY", + "founding": 2007, + "iataPrefixAccounting": "918", + "nameAirline": "FlyFirefly Sdn. Bhd", + "nameCountry": "Malaysia", + "sizeAirline": 35, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.5, + "airlineId": 152, + "callsign": "UKRAINE INTERNATIONAL", + "codeHub": "KBP", + "codeIataAirline": "PS", + "codeIcaoAirline": "AUI", + "codeIso2Country": "UA", + "founding": 1992, + "iataPrefixAccounting": "566", + "nameAirline": "Ukraine International Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 35, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.0, + "airlineId": 153, + "callsign": "NOSTRU AIR", + "codeHub": "BCN", + "codeIataAirline": "YW", + "codeIcaoAirline": "ANE", + "codeIso2Country": "ES", + "founding": 1994, + "iataPrefixAccounting": "694", + "nameAirline": "Air Nostrum", + "nameCountry": "Spain", + "sizeAirline": 35, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.4, + "airlineId": 154, + "callsign": "MONARCH", + "codeHub": "LTN", + "codeIataAirline": "ZB", + "codeIcaoAirline": "MON", + "codeIso2Country": "GB", + "founding": 1967, + "iataPrefixAccounting": "974", + "nameAirline": "Monarch Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 35, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 15.3, + "airlineId": 155, + "callsign": "LINK", + "codeHub": "JNB", + "codeIataAirline": "4Z", + "codeIcaoAirline": "LNK", + "codeIso2Country": "ZA", + "founding": 2006, + "iataPrefixAccounting": "749", + "nameAirline": "Airlink", + "nameCountry": "South Africa", + "sizeAirline": 34, + "statusAirline": "active", + "type": "scheduled,virtual" + }, + { + "ageFleet": 4.7, + "airlineId": 156, + "callsign": "KENYA", + "codeHub": "NBO", + "codeIataAirline": "KQ", + "codeIcaoAirline": "KQA", + "codeIso2Country": "KE", + "founding": 1977, + "iataPrefixAccounting": "706", + "nameAirline": "Kenya Airways", + "nameCountry": "Kenya", + "sizeAirline": 34, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.0, + "airlineId": 157, + "callsign": "LIANHANG", + "codeHub": "NAY", + "codeIataAirline": "KN", + "codeIcaoAirline": "CUA", + "codeIso2Country": "CN", + "founding": 1986, + "iataPrefixAccounting": "822", + "nameAirline": "China United Airlines", + "nameCountry": "China", + "sizeAirline": 33, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.8, + "airlineId": 158, + "callsign": "BELARUS AVIA", + "codeHub": "MSQ", + "codeIataAirline": "B2", + "codeIcaoAirline": "BRU", + "codeIso2Country": "BY", + "founding": 1996, + "iataPrefixAccounting": "628", + "nameAirline": "Belavia - Belarusian Airlines", + "nameCountry": "Belarus", + "sizeAirline": 32, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.8, + "airlineId": 159, + "callsign": "BANGKOK AIR", + "codeHub": "BKK", + "codeIataAirline": "PG", + "codeIcaoAirline": "BKP", + "codeIso2Country": "TH", + "founding": 1968, + "iataPrefixAccounting": "829", + "nameAirline": "Bangkok Air", + "nameCountry": "Thailand", + "sizeAirline": 32, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.9, + "airlineId": 160, + "callsign": "BRAVO CHARLIE", + "codeHub": "BRU", + "codeIataAirline": "QY", + "codeIcaoAirline": "BCS", + "codeIso2Country": "DE", + "founding": 2010, + "iataPrefixAccounting": "615", + "nameAirline": "European Air Transport", + "nameCountry": "Germany", + "sizeAirline": 32, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 17.3, + "airlineId": 161, + "callsign": "AIR TRANSAT", + "codeHub": "YYZ", + "codeIataAirline": "TS", + "codeIcaoAirline": "TSC", + "codeIso2Country": "CA", + "founding": 1986, + "iataPrefixAccounting": "649", + "nameAirline": "Air Transat", + "nameCountry": "Canada", + "sizeAirline": 32, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.0, + "airlineId": 162, + "callsign": "VIETJETAIR", + "codeHub": "HAN", + "codeIataAirline": "VJ", + "codeIcaoAirline": "VJC", + "codeIso2Country": "VN", + "founding": 2007, + "iataPrefixAccounting": "978", + "nameAirline": "Vietjet Aviation Joint Stock Company", + "nameCountry": "Vietnam", + "sizeAirline": 32, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.6, + "airlineId": 163, + "callsign": "BRITAIR", + "codeHub": "MXN", + "codeIataAirline": "DB", + "codeIcaoAirline": "BZH", + "codeIso2Country": "FR", + "founding": 1973, + "iataPrefixAccounting": "750", + "nameAirline": "HOP!-BRIT AIR", + "nameCountry": "France", + "sizeAirline": 31, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.8, + "airlineId": 164, + "callsign": "EUROWINGS", + "codeHub": "DUS", + "codeIataAirline": "EW", + "codeIcaoAirline": "EWG", + "codeIso2Country": "DE", + "founding": 1993, + "iataPrefixAccounting": "104", + "nameAirline": "Eurowings", + "nameCountry": "Germany", + "sizeAirline": 31, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 3.8, + "airlineId": 165, + "callsign": "BAUHINIA", + "codeHub": "HKG", + "codeIataAirline": "HX", + "codeIcaoAirline": "CRK", + "codeIso2Country": "HK", + "founding": 2006, + "iataPrefixAccounting": "851", + "nameAirline": "Hong Kong Airlines", + "nameCountry": "Hong Kong", + "sizeAirline": 31, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.5, + "airlineId": 166, + "callsign": "IRAQI", + "codeHub": "BGW", + "codeIataAirline": "IA", + "codeIcaoAirline": "IAW", + "codeIso2Country": "IQ", + "founding": 1945, + "iataPrefixAccounting": "73", + "nameAirline": "Iraqi Airways", + "nameCountry": "Iraq", + "sizeAirline": 31, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.9, + "airlineId": 167, + "callsign": "BRAATHENS", + "codeHub": "THN", + "codeIataAirline": "DC", + "codeIcaoAirline": "BRX", + "codeIso2Country": "SE", + "founding": 2013, + "iataPrefixAccounting": "215", + "nameAirline": "Braathens Regional", + "nameCountry": "Sweden", + "sizeAirline": 30, + "statusAirline": "active", + "type": "scheduled,virtual" + }, + { + "ageFleet": 22.7, + "airlineId": 168, + "callsign": "ASEMAN", + "codeHub": "THR", + "codeIataAirline": "EP", + "codeIcaoAirline": "IRC", + "codeIso2Country": "IR", + "founding": 1980, + "iataPrefixAccounting": "815", + "nameAirline": "Iran Aseman Airlines", + "nameCountry": "Iran", + "sizeAirline": 30, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 20.6, + "airlineId": 169, + "callsign": "ICEAIR", + "codeHub": "KEF", + "codeIataAirline": "FI", + "codeIcaoAirline": "ICE", + "codeIso2Country": "IS", + "founding": 1937, + "iataPrefixAccounting": "108", + "nameAirline": "Icelandair", + "nameCountry": "Iceland", + "sizeAirline": 30, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.0, + "airlineId": 170, + "callsign": "ASTANALINE", + "codeHub": "ALA", + "codeIataAirline": "KC", + "codeIcaoAirline": "KZR", + "codeIso2Country": "KZ", + "founding": 2001, + "iataPrefixAccounting": "465", + "nameAirline": "Air Astana", + "nameCountry": "Kazakhstan", + "sizeAirline": 30, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.0, + "airlineId": 171, + "callsign": "SILKAIR", + "codeHub": "SIN", + "codeIataAirline": "MI", + "codeIcaoAirline": "SLK", + "codeIso2Country": "SG", + "founding": 1975, + "iataPrefixAccounting": "629", + "nameAirline": "Silkair", + "nameCountry": "Singapore", + "sizeAirline": 30, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.4, + "airlineId": 172, + "callsign": "TUNNAIR", + "codeHub": "TUN", + "codeIataAirline": "TU", + "codeIcaoAirline": "TAR", + "codeIso2Country": "TN", + "founding": 1948, + "iataPrefixAccounting": "199", + "nameAirline": "Tunisair", + "nameCountry": "Tunisia", + "sizeAirline": 30, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.2, + "airlineId": 173, + "callsign": "OZWEST", + "codeHub": "PER", + "codeIataAirline": "XR", + "codeIcaoAirline": "OZW", + "codeIso2Country": "AU", + "founding": 2013, + "iataPrefixAccounting": "608", + "nameAirline": "Virgin Australia Regional", + "nameCountry": "Australia", + "sizeAirline": 30, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.1, + "airlineId": 174, + "callsign": "LAKES AIR", + "codeHub": "CYS", + "codeIataAirline": "ZK", + "codeIcaoAirline": "GLA", + "codeIso2Country": "UM", + "founding": 0, + "iataPrefixAccounting": "846", + "nameAirline": "Great Lakes Aviation Ltd.", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 30, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 26.2, + "airlineId": 175, + "callsign": "WORLD EXPRESS", + "codeHub": "EMA", + "codeIataAirline": "D0", + "codeIcaoAirline": "DHK", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "936", + "nameAirline": "DHL Air", + "nameCountry": "United Kingdom", + "sizeAirline": 29, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 6.6, + "airlineId": 176, + "callsign": "NOK AIR", + "codeHub": "DMK", + "codeIataAirline": "DD", + "codeIcaoAirline": "NOK", + "codeIso2Country": "TH", + "founding": 2004, + "iataPrefixAccounting": "", + "nameAirline": "Nok Airlines Public Company Limited dba Nok Air", + "nameCountry": "Thailand", + "sizeAirline": 29, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.6, + "airlineId": 177, + "callsign": "GULF AIR", + "codeHub": "BAH", + "codeIataAirline": "GF", + "codeIcaoAirline": "GFA", + "codeIso2Country": "BH", + "founding": 1949, + "iataPrefixAccounting": "72", + "nameAirline": "Gulf Air", + "nameCountry": "Bahrain", + "sizeAirline": 28, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.8, + "airlineId": 178, + "callsign": "UZBEK", + "codeHub": "TAS", + "codeIataAirline": "HY", + "codeIcaoAirline": "UZB", + "codeIso2Country": "UZ", + "founding": 1992, + "iataPrefixAccounting": "250", + "nameAirline": "Uzbekistan Airways", + "nameCountry": "Uzbekistan", + "sizeAirline": 28, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.8, + "airlineId": 179, + "callsign": "AZAL", + "codeHub": "GYD", + "codeIataAirline": "J2", + "codeIcaoAirline": "AHY", + "codeIso2Country": "AZ", + "founding": 1991, + "iataPrefixAccounting": "771", + "nameAirline": "Azerbaijan Airlines", + "nameCountry": "Azerbaijan", + "sizeAirline": 28, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.5, + "airlineId": 180, + "callsign": "SHUN FENG", + "codeHub": "SZX", + "codeIataAirline": "O3", + "codeIcaoAirline": "CSS", + "codeIso2Country": "CN", + "founding": 2009, + "iataPrefixAccounting": "921", + "nameAirline": "SF Airlines Company Limited", + "nameCountry": "China", + "sizeAirline": 28, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 20.3, + "airlineId": 181, + "callsign": "SOLENTA", + "codeHub": "HLA", + "codeIataAirline": "SL", + "codeIcaoAirline": "SET", + "codeIso2Country": "ZA", + "founding": 2002, + "iataPrefixAccounting": "", + "nameAirline": "Solenta Aviation", + "nameCountry": "South Africa", + "sizeAirline": 28, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 1.6, + "airlineId": 182, + "callsign": "ENCORE", + "codeHub": "YYC", + "codeIataAirline": "WR", + "codeIcaoAirline": "WEN", + "codeIso2Country": "CA", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "WestJet Encore", + "nameCountry": "Canada", + "sizeAirline": 28, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.5, + "airlineId": 183, + "callsign": "NAS EXPRESS", + "codeHub": "RUH", + "codeIataAirline": "XY", + "codeIcaoAirline": "KNE", + "codeIso2Country": "SA", + "founding": 2013, + "iataPrefixAccounting": "593", + "nameAirline": "NATIONAL AIR SERVICES dba FLYNAS", + "nameCountry": "Saudia Arabia", + "sizeAirline": 28, + "statusAirline": "active", + "type": "scheduled,private" + }, + { + "ageFleet": 7.5, + "airlineId": 184, + "callsign": "LUCKY AIR", + "codeHub": "KMG", + "codeIataAirline": "8L", + "codeIcaoAirline": "LKE", + "codeIso2Country": "CN", + "founding": 2006, + "iataPrefixAccounting": "859", + "nameAirline": "Lucky Air", + "nameCountry": "China", + "sizeAirline": 27, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 30.6, + "airlineId": 185, + "callsign": "ABEX", + "codeHub": "ILN", + "codeIataAirline": "GB", + "codeIcaoAirline": "ABX", + "codeIso2Country": "US", + "founding": 2003, + "iataPrefixAccounting": "832", + "nameAirline": "ABX Air, Inc.", + "nameCountry": "United States", + "sizeAirline": 27, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 1.9, + "airlineId": 186, + "callsign": "MALINDO EXPRESS", + "codeHub": "KUL", + "codeIataAirline": "OD", + "codeIcaoAirline": "MXD", + "codeIso2Country": "MY", + "founding": 2013, + "iataPrefixAccounting": "816", + "nameAirline": "Malindo Airways Sdn Bhd ( Malindo A", + "nameCountry": "Malaysia", + "sizeAirline": 27, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 23.8, + "airlineId": 187, + "callsign": "ALLI", + "codeHub": "BNE", + "codeIataAirline": "QQ", + "codeIcaoAirline": "UTY", + "codeIso2Country": "AU", + "founding": 1987, + "iataPrefixAccounting": "", + "nameAirline": "Alliance Airlines", + "nameCountry": "Australia", + "sizeAirline": 27, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.8, + "airlineId": 188, + "callsign": "BEAUTY", + "codeHub": "BRU", + "codeIataAirline": "TB", + "codeIcaoAirline": "JAF", + "codeIso2Country": "BE", + "founding": 2005, + "iataPrefixAccounting": "612", + "nameAirline": "TUI Airlines Belgium t/a Jetairfly", + "nameCountry": "Belgium", + "sizeAirline": 27, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.9, + "airlineId": 189, + "callsign": "PORTER", + "codeHub": "YTZ", + "codeIataAirline": "PD", + "codeIcaoAirline": "POE", + "codeIso2Country": "CA", + "founding": 2002, + "iataPrefixAccounting": "451", + "nameAirline": "Porter Airlines Inc.", + "nameCountry": "Canada", + "sizeAirline": 26, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 20.1, + "airlineId": 190, + "callsign": "YANGTZE RIVER", + "codeHub": "PVG", + "codeIataAirline": "Y8", + "codeIcaoAirline": "YZR", + "codeIso2Country": "CN", + "founding": 2001, + "iataPrefixAccounting": "871", + "nameAirline": "Yangtze River Express Airlines Co. LTD", + "nameCountry": "China", + "sizeAirline": 26, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.0, + "airlineId": 191, + "callsign": "YAMAL", + "codeHub": "TJM", + "codeIataAirline": "YC", + "codeIcaoAirline": "LLM", + "codeIso2Country": "RU", + "founding": 1997, + "iataPrefixAccounting": "664", + "nameAirline": "Joint-Stock Company \"Yamal Airlines\"", + "nameCountry": "Russia", + "sizeAirline": 26, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 17.6, + "airlineId": 192, + "callsign": "QUALITY", + "codeHub": "LGG", + "codeIataAirline": "3V", + "codeIcaoAirline": "TAY", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "756", + "nameAirline": "TNT Airways S.A.", + "nameCountry": "Belgium", + "sizeAirline": 25, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 17.1, + "airlineId": 193, + "callsign": "ONUR AIR", + "codeHub": "IST", + "codeIataAirline": "8Q", + "codeIcaoAirline": "OHY", + "codeIso2Country": "TR", + "founding": 1992, + "iataPrefixAccounting": "66", + "nameAirline": "Onur Air", + "nameCountry": "Turkey", + "sizeAirline": 25, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 2.7, + "airlineId": 194, + "callsign": "CHINA EXPRESS", + "codeHub": "CKG", + "codeIataAirline": "G5", + "codeIcaoAirline": "HXA", + "codeIso2Country": "CN", + "founding": 2004, + "iataPrefixAccounting": "987", + "nameAirline": "China Express Airlines", + "nameCountry": "China", + "sizeAirline": 25, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.4, + "airlineId": 195, + "callsign": "JORDANIAN", + "codeHub": "AMM", + "codeIataAirline": "RJ", + "codeIcaoAirline": "RJA", + "codeIso2Country": "JO", + "founding": 1963, + "iataPrefixAccounting": "512", + "nameAirline": "Royal Jordanian", + "nameCountry": "Jordan", + "sizeAirline": 25, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.4, + "airlineId": 196, + "callsign": "MAPLE", + "codeHub": "YTZ", + "codeIataAirline": "RS", + "codeIcaoAirline": "SKV", + "codeIso2Country": "CA", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "Sky Regional", + "nameCountry": "Canada", + "sizeAirline": 25, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.1, + "airlineId": 197, + "callsign": "FRANCE SOLEIL", + "codeHub": "ORY", + "codeIataAirline": "TO", + "codeIcaoAirline": "TVF", + "codeIso2Country": "FR", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "Transavia France", + "nameCountry": "France", + "sizeAirline": 25, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.5, + "airlineId": 198, + "callsign": "CONVIASA", + "codeHub": "CCS", + "codeIataAirline": "V0", + "codeIcaoAirline": "VCV", + "codeIso2Country": "VE", + "founding": 2004, + "iataPrefixAccounting": "308", + "nameAirline": "CONVIASA", + "nameCountry": "Venezuela", + "sizeAirline": 25, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.3, + "airlineId": 199, + "callsign": "SUNEXPRESS", + "codeHub": "AYT", + "codeIataAirline": "XQ", + "codeIcaoAirline": "SXS", + "codeIso2Country": "TR", + "founding": 1990, + "iataPrefixAccounting": "564", + "nameAirline": "SunExpress", + "nameCountry": "Turkey", + "sizeAirline": 25, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 17.4, + "airlineId": 200, + "callsign": "GEORGIAN", + "codeHub": "YYZ", + "codeIataAirline": "ZX", + "codeIcaoAirline": "GGN", + "codeIso2Country": "CA", + "founding": 1985, + "iataPrefixAccounting": "", + "nameAirline": "Air Georgian Ltd. dba Air Alliance", + "nameCountry": "Canada", + "sizeAirline": 25, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.6, + "airlineId": 201, + "callsign": "JEJU AIR", + "codeHub": "CJU", + "codeIataAirline": "7C", + "codeIcaoAirline": "JJA", + "codeIso2Country": "KR", + "founding": 2005, + "iataPrefixAccounting": "806", + "nameAirline": "Jeju Air Co. Ltd.", + "nameCountry": "South Korea", + "sizeAirline": 24, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.1, + "airlineId": 202, + "callsign": "AUSTRAL", + "codeHub": "AEP", + "codeIataAirline": "AU", + "codeIcaoAirline": "AUT", + "codeIso2Country": "AR", + "founding": 1971, + "iataPrefixAccounting": "143", + "nameAirline": "Austral", + "nameCountry": "Argentina", + "sizeAirline": 24, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.2, + "airlineId": 203, + "callsign": "SKYMARK", + "codeHub": "HND", + "codeIataAirline": "BC", + "codeIcaoAirline": "SKY", + "codeIso2Country": "JP", + "founding": 1997, + "iataPrefixAccounting": "", + "nameAirline": "Skymark Airlines Inc.", + "nameCountry": "Japan", + "sizeAirline": 24, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.9, + "airlineId": 204, + "callsign": "AIRBALTIC", + "codeHub": "RIX", + "codeIataAirline": "BT", + "codeIcaoAirline": "BTI", + "codeIso2Country": "LV", + "founding": 1995, + "iataPrefixAccounting": "657", + "nameAirline": "Air Baltic", + "nameCountry": "Latvia", + "sizeAirline": 24, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 17.3, + "airlineId": 205, + "callsign": "COMMUTAIR", + "codeHub": "PLB", + "codeIataAirline": "C5", + "codeIcaoAirline": "UCA", + "codeIso2Country": "UM", + "founding": 1989, + "iataPrefixAccounting": "841", + "nameAirline": "Champlain Enterprises Inc. dba Commutair", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 24, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.8, + "airlineId": 206, + "callsign": "MOUNT COOK", + "codeHub": "CHC", + "codeIataAirline": "NM", + "codeIcaoAirline": "NZM", + "codeIso2Country": "NZ", + "founding": 1921, + "iataPrefixAccounting": "445", + "nameAirline": "Mount Cook Airlines", + "nameCountry": "New Zealand", + "sizeAirline": 24, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.0, + "airlineId": 207, + "callsign": "GO CAT", + "codeHub": "SIN", + "codeIataAirline": "TR", + "codeIcaoAirline": "TGW", + "codeIso2Country": "SG", + "founding": 2004, + "iataPrefixAccounting": "388", + "nameAirline": "Tiger Airways", + "nameCountry": "Singapore", + "sizeAirline": 24, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.3, + "airlineId": 208, + "callsign": "RUSLINE AIR", + "codeHub": "DME", + "codeIataAirline": "7R", + "codeIcaoAirline": "RLU", + "codeIso2Country": "RU", + "founding": 2003, + "iataPrefixAccounting": "362", + "nameAirline": "Joint Stock Aviation Company \"RusLine\"", + "nameCountry": "Russia", + "sizeAirline": 23, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.8, + "airlineId": 209, + "callsign": "AIR HOP", + "codeHub": "ORY", + "codeIataAirline": "A5", + "codeIcaoAirline": "HOP", + "codeIso2Country": "FR", + "founding": 2013, + "iataPrefixAccounting": "163", + "nameAirline": "HOP!", + "nameCountry": "France", + "sizeAirline": 23, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.3, + "airlineId": 210, + "callsign": "XANADU", + "codeHub": "KUL", + "codeIataAirline": "D7", + "codeIcaoAirline": "XAX", + "codeIso2Country": "MY", + "founding": 2007, + "iataPrefixAccounting": "843", + "nameAirline": "Airasia X Berhad dba Airasia X", + "nameCountry": "Malaysia", + "sizeAirline": 23, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.1, + "airlineId": 211, + "callsign": "TOPSWISS", + "codeHub": "GVA", + "codeIataAirline": "DS", + "codeIcaoAirline": "EZS", + "codeIso2Country": "CH", + "founding": 1988, + "iataPrefixAccounting": "", + "nameAirline": "Easyjet Switzerland S.A", + "nameCountry": "Switzerland", + "sizeAirline": 23, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.9, + "airlineId": 212, + "callsign": "JETTIME", + "codeHub": "CPH", + "codeIataAirline": "J4*", + "codeIcaoAirline": "JTG", + "codeIso2Country": "DK", + "founding": 2006, + "iataPrefixAccounting": "", + "nameAirline": "Jet Time", + "nameCountry": "Denmark", + "sizeAirline": 23, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.4, + "airlineId": 213, + "callsign": "KUWAITI", + "codeHub": "KWI", + "codeIataAirline": "KU", + "codeIcaoAirline": "KAC", + "codeIso2Country": "KW", + "founding": 1954, + "iataPrefixAccounting": "229", + "nameAirline": "Kuwait Airways", + "nameCountry": "Kuwait", + "sizeAirline": 23, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 3.3, + "airlineId": 214, + "callsign": "WEST CHINA", + "codeHub": "CKG", + "codeIataAirline": "PN", + "codeIcaoAirline": "CHB", + "codeIso2Country": "CN", + "founding": 2007, + "iataPrefixAccounting": "847", + "nameAirline": "China West Air Co. Ltd.", + "nameCountry": "China", + "sizeAirline": 23, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.9, + "airlineId": 215, + "callsign": "TAROM", + "codeHub": "OTP", + "codeIataAirline": "RO", + "codeIcaoAirline": "ROT", + "codeIso2Country": "RO", + "founding": 1946, + "iataPrefixAccounting": "281", + "nameAirline": "TAROM", + "nameCountry": "Romania", + "sizeAirline": 23, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.6, + "airlineId": 216, + "callsign": "VOLOTEA", + "codeHub": "VCE", + "codeIataAirline": "V7", + "codeIcaoAirline": "VOE", + "codeIso2Country": "ES", + "founding": 2011, + "iataPrefixAccounting": "712", + "nameAirline": "Volotea, S.L.", + "nameCountry": "Spain", + "sizeAirline": 23, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.9, + "airlineId": 217, + "callsign": "ARIK AIR", + "codeHub": "LOS", + "codeIataAirline": "W3", + "codeIcaoAirline": "ARA", + "codeIso2Country": "NG", + "founding": 2006, + "iataPrefixAccounting": "725", + "nameAirline": "Arik Air", + "nameCountry": "Nigeria", + "sizeAirline": 23, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.3, + "airlineId": 218, + "callsign": "SILVER WINGS", + "codeHub": "FLL", + "codeIataAirline": "3M", + "codeIcaoAirline": "SIL", + "codeIso2Country": "UM", + "founding": 2011, + "iataPrefixAccounting": "449", + "nameAirline": "Silver Airways Corp", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 22, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.4, + "airlineId": 219, + "callsign": "CHINA POSTA", + "codeHub": "TSN", + "codeIataAirline": "CF", + "codeIcaoAirline": "CYZ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "804", + "nameAirline": "China Postal Airlines", + "nameCountry": "China", + "sizeAirline": 22, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 5.3, + "airlineId": 220, + "callsign": "UNITED EAGLE", + "codeHub": "CTU", + "codeIataAirline": "EU", + "codeIcaoAirline": "UEA", + "codeIso2Country": "CN", + "founding": 2010, + "iataPrefixAccounting": "811", + "nameAirline": "Chengdu Airlines", + "nameCountry": "China", + "sizeAirline": 22, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.2, + "airlineId": 221, + "callsign": "TRANSASIA", + "codeHub": "TSA", + "codeIataAirline": "GE", + "codeIcaoAirline": "TNA", + "codeIso2Country": "TW", + "founding": 1951, + "iataPrefixAccounting": "170", + "nameAirline": "TransAsia Airways", + "nameCountry": "Taiwan", + "sizeAirline": 22, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.7, + "airlineId": 222, + "callsign": "NIUGINI", + "codeHub": "POM", + "codeIataAirline": "PX", + "codeIcaoAirline": "ANG", + "codeIso2Country": "PG", + "founding": 1973, + "iataPrefixAccounting": "656", + "nameAirline": "Air Niugini", + "nameCountry": "Papua New Guinea", + "sizeAirline": 22, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.7, + "airlineId": 223, + "callsign": "WAGON AIR", + "codeHub": "CGK", + "codeIataAirline": "QZ", + "codeIcaoAirline": "AWQ", + "codeIso2Country": "ID", + "founding": 2005, + "iataPrefixAccounting": "975", + "nameAirline": "PT. Indonesia AirAsia", + "nameCountry": "Indonesia", + "sizeAirline": 22, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.7, + "airlineId": 224, + "callsign": "GERMANIA", + "codeHub": "DUS", + "codeIataAirline": "ST", + "codeIcaoAirline": "GMI", + "codeIso2Country": "DE", + "founding": 1978, + "iataPrefixAccounting": "246", + "nameAirline": "Germania", + "nameCountry": "Germany", + "sizeAirline": 22, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.1, + "airlineId": 225, + "callsign": "TURKMENISTAN", + "codeHub": "ASB", + "codeIataAirline": "T5", + "codeIcaoAirline": "TUA", + "codeIso2Country": "TM", + "founding": 1992, + "iataPrefixAccounting": "542", + "nameAirline": "Turkmenistan Airlines", + "nameCountry": "Turkmenistan", + "sizeAirline": 22, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.6, + "airlineId": 226, + "callsign": "EXPRESSWAYS", + "codeHub": "JNB", + "codeIataAirline": "XZ", + "codeIcaoAirline": "EXY", + "codeIso2Country": "ZA", + "founding": 1994, + "iataPrefixAccounting": "83", + "nameAirline": "South African Express Airways", + "nameCountry": "South Africa", + "sizeAirline": 22, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.4, + "airlineId": 227, + "callsign": "IBER EXPRESS", + "codeHub": "MAD", + "codeIataAirline": "I2", + "codeIcaoAirline": "IBS", + "codeIso2Country": "ES", + "founding": 2012, + "iataPrefixAccounting": "60", + "nameAirline": "Compania Operadora de Corto y Medio Radio Iberia Express, S.A.U", + "nameCountry": "Spain", + "sizeAirline": 21, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.4, + "airlineId": 228, + "callsign": "SRILANKAN", + "codeHub": "CMB", + "codeIataAirline": "UL", + "codeIcaoAirline": "ALK", + "codeIso2Country": "LK", + "founding": 1979, + "iataPrefixAccounting": "603", + "nameAirline": "SriLankan", + "nameCountry": "Sri Lanka", + "sizeAirline": 21, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.2, + "airlineId": 229, + "callsign": "CEMAIR", + "codeHub": "JNB", + "codeIataAirline": "5Z", + "codeIcaoAirline": "KEM", + "codeIso2Country": "ZA", + "founding": 2002, + "iataPrefixAccounting": "225", + "nameAirline": "Cemair (Pty) Ltd. t/a Cemair", + "nameCountry": "South Africa", + "sizeAirline": 20, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.1, + "airlineId": 230, + "callsign": "CITYLINER", + "codeHub": "FCO", + "codeIataAirline": "CT", + "codeIcaoAirline": "CYL", + "codeIso2Country": "IT", + "founding": 2011, + "iataPrefixAccounting": "", + "nameAirline": "Alitalia CityLiner S.p.A.", + "nameCountry": "Italy", + "sizeAirline": 20, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.5, + "airlineId": 231, + "callsign": "CARGOLUX", + "codeHub": "LUX", + "codeIataAirline": "CV", + "codeIcaoAirline": "CLX", + "codeIso2Country": "LU", + "founding": 1970, + "iataPrefixAccounting": "172", + "nameAirline": "Cargolux S.A.", + "nameCountry": "Luxembourg", + "sizeAirline": 20, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 3.2, + "airlineId": 232, + "callsign": "ORANGE LINER", + "codeHub": "NRT", + "codeIataAirline": "GK", + "codeIcaoAirline": "JJP", + "codeIso2Country": "JP", + "founding": 2012, + "iataPrefixAccounting": "798", + "nameAirline": "Jetstar Japan Co., Ltd.", + "nameCountry": "Japan", + "sizeAirline": 20, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.4, + "airlineId": 233, + "callsign": "AURORA", + "codeHub": "UUS", + "codeIataAirline": "HZ", + "codeIcaoAirline": "SHU", + "codeIso2Country": "RU", + "founding": 2013, + "iataPrefixAccounting": "598", + "nameAirline": "Joint- Stock Company \"Aurora Airlines\"", + "nameCountry": "Russia", + "sizeAirline": 20, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 20.3, + "airlineId": 234, + "callsign": "MERIDIANA", + "codeHub": "MXP", + "codeIataAirline": "IG", + "codeIcaoAirline": "ISS", + "codeIso2Country": "IT", + "founding": 1991, + "iataPrefixAccounting": "191", + "nameAirline": "Meridiana fly", + "nameCountry": "Italy", + "sizeAirline": 20, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.1, + "airlineId": 235, + "callsign": "EXPRESS INDIA", + "codeHub": "CCJ", + "codeIataAirline": "IX", + "codeIcaoAirline": "AXB", + "codeIso2Country": "IN", + "founding": 2005, + "iataPrefixAccounting": "", + "nameAirline": "Air India Charters Limited", + "nameCountry": "India", + "sizeAirline": 20, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.6, + "airlineId": 236, + "callsign": "ATLASGLOBAL", + "codeHub": "IST", + "codeIataAirline": "KK", + "codeIcaoAirline": "KKK", + "codeIso2Country": "TR", + "founding": 2015, + "iataPrefixAccounting": "610", + "nameAirline": "Atlasjet Airlines", + "nameCountry": "Turkey", + "sizeAirline": 20, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 22.6, + "airlineId": 237, + "callsign": "PENINSULAR", + "codeHub": "ANC", + "codeIataAirline": "KS", + "codeIcaoAirline": "PEN", + "codeIso2Country": "UM", + "founding": 0, + "iataPrefixAccounting": "339", + "nameAirline": "Penair", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 20, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.8, + "airlineId": 238, + "callsign": "LOGAN", + "codeHub": "GLA", + "codeIataAirline": "LM", + "codeIcaoAirline": "LOG", + "codeIso2Country": "GB", + "founding": 1962, + "iataPrefixAccounting": "682", + "nameAirline": "Loganair Limited", + "nameCountry": "United Kingdom", + "sizeAirline": 20, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.7, + "airlineId": 239, + "callsign": "CEDAR JET", + "codeHub": "BEY", + "codeIataAirline": "ME", + "codeIcaoAirline": "MEA", + "codeIso2Country": "LB", + "founding": 1945, + "iataPrefixAccounting": "76", + "nameAirline": "MEA", + "nameCountry": "Lebanon", + "sizeAirline": 20, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.0, + "airlineId": 240, + "callsign": "QESHM AIR", + "codeHub": "GSM", + "codeIataAirline": "QB", + "codeIcaoAirline": "IRQ", + "codeIso2Country": "IR", + "founding": 1997, + "iataPrefixAccounting": "237", + "nameAirline": "Qeshm Air", + "nameCountry": "Iran", + "sizeAirline": 20, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 1.3, + "airlineId": 241, + "callsign": "MENTARI", + "codeHub": "DMK", + "codeIataAirline": "SL", + "codeIcaoAirline": "LTM", + "codeIso2Country": "TH", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "Thai Lion Air", + "nameCountry": "Thailand", + "sizeAirline": 20, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.4, + "airlineId": 242, + "callsign": "SUN COUNTRY", + "codeHub": "MSP", + "codeIataAirline": "SY", + "codeIcaoAirline": "SCX", + "codeIso2Country": "UM", + "founding": 1982, + "iataPrefixAccounting": "337", + "nameAirline": "MN Airlines LLC", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 20, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.6, + "airlineId": 243, + "callsign": "COMMUTER", + "codeHub": "KOJ", + "codeIataAirline": "3X", + "codeIcaoAirline": "", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Japan Air Commuter", + "nameCountry": "Japan", + "sizeAirline": 19, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.9, + "airlineId": 244, + "callsign": "FIRST AIR", + "codeHub": "YZF", + "codeIataAirline": "7F", + "codeIcaoAirline": "FAB", + "codeIso2Country": "CA", + "founding": 1946, + "iataPrefixAccounting": "245", + "nameAirline": "Bradley Air Services Limited t/a First Air", + "nameCountry": "Canada", + "sizeAirline": 19, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.6, + "airlineId": 245, + "callsign": "OKAYJET", + "codeHub": "TSN", + "codeIataAirline": "BK", + "codeIcaoAirline": "OKA", + "codeIso2Country": "CN", + "founding": 2004, + "iataPrefixAccounting": "866", + "nameAirline": "Okay Airways", + "nameCountry": "China", + "sizeAirline": 19, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.4, + "airlineId": 246, + "callsign": "FLYER", + "codeHub": "LCY", + "codeIataAirline": "CJ", + "codeIcaoAirline": "CFE", + "codeIso2Country": "GB", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "BA Cityflyer Limited", + "nameCountry": "United Kingdom", + "sizeAirline": 19, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.0, + "airlineId": 247, + "callsign": "GOAIR", + "codeHub": "DEL", + "codeIataAirline": "G8", + "codeIcaoAirline": "GOW", + "codeIso2Country": "IN", + "founding": 2005, + "iataPrefixAccounting": "", + "nameAirline": "Go Airlines (India) Ltd.", + "nameCountry": "India", + "sizeAirline": 19, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.9, + "airlineId": 248, + "callsign": "JIN AIR", + "codeHub": "CJU", + "codeIataAirline": "LJ", + "codeIcaoAirline": "JNA", + "codeIso2Country": "KR", + "founding": 2007, + "iataPrefixAccounting": "718", + "nameAirline": "Jin Air Co. Ltd", + "nameCountry": "South Korea", + "sizeAirline": 19, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.4, + "airlineId": 249, + "callsign": "SHAHEEN", + "codeHub": "KHI", + "codeIataAirline": "NL", + "codeIcaoAirline": "SAI", + "codeIso2Country": "PK", + "founding": 1993, + "iataPrefixAccounting": "740", + "nameAirline": "Shaheen Air International", + "nameCountry": "Pakistan", + "sizeAirline": 19, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.2, + "airlineId": 250, + "callsign": "SKYTRAVEL", + "codeHub": "PRG", + "codeIataAirline": "QS", + "codeIcaoAirline": "TVS", + "codeIso2Country": "CZ", + "founding": 1997, + "iataPrefixAccounting": "797", + "nameAirline": "Travel Service, A.S.", + "nameCountry": "Czech Republic", + "sizeAirline": 19, + "statusAirline": "active", + "type": "scheduled,charter,division" + }, + { + "ageFleet": 6.5, + "airlineId": 251, + "callsign": "AEROENLACES", + "codeHub": "MTY", + "codeIataAirline": "VB", + "codeIcaoAirline": "VIV", + "codeIso2Country": "MX", + "founding": 2006, + "iataPrefixAccounting": "", + "nameAirline": "Aeroenlaces Nacionales S.A. De C.V.", + "nameCountry": "Mexico", + "sizeAirline": 19, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.0, + "airlineId": 252, + "callsign": "JETSTAR ASIA", + "codeHub": "SIN", + "codeIataAirline": "3K", + "codeIcaoAirline": "JSA", + "codeIso2Country": "SG", + "founding": 2004, + "iataPrefixAccounting": "375", + "nameAirline": "Jetstar Asia Airways Pte Ltd", + "nameCountry": "Singapore", + "sizeAirline": 18, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 253, + "callsign": "", + "codeHub": "SIN", + "codeIataAirline": "3K", + "codeIcaoAirline": "", + "codeIso2Country": "SG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetstar Asia Airways - Singapore", + "nameCountry": "Singapore", + "sizeAirline": 18, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 23.4, + "airlineId": 254, + "callsign": "EMPRESS", + "codeHub": "YZF", + "codeIataAirline": "5T", + "codeIcaoAirline": "MPE", + "codeIso2Country": "CA", + "founding": 1989, + "iataPrefixAccounting": "518", + "nameAirline": "Canadian North Inc.", + "nameCountry": "Canada", + "sizeAirline": 18, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.9, + "airlineId": 255, + "callsign": "FLYNIKI", + "codeHub": "VIE", + "codeIataAirline": "HG", + "codeIcaoAirline": "AYP", + "codeIso2Country": "AT", + "founding": 2003, + "iataPrefixAccounting": "", + "nameAirline": "NIKI", + "nameCountry": "Austria", + "sizeAirline": 18, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.1, + "airlineId": 256, + "callsign": "HEBEI AIR", + "codeHub": "SJW", + "codeIataAirline": "NS", + "codeIcaoAirline": "HBH", + "codeIso2Country": "CN", + "founding": 2010, + "iataPrefixAccounting": "836", + "nameAirline": "Hebei Airlines Co., Ltd.", + "nameCountry": "China", + "sizeAirline": 18, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.6, + "airlineId": 257, + "callsign": "BOLIVIANO", + "codeHub": "CBB", + "codeIataAirline": "OB", + "codeIcaoAirline": "BOV", + "codeIso2Country": "BO", + "founding": 2008, + "iataPrefixAccounting": "930", + "nameAirline": "Boliviana de Aviacion - BoA", + "nameCountry": "Bolivia", + "sizeAirline": 18, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.1, + "airlineId": 258, + "callsign": "ORIENT THAI", + "codeHub": "BKK", + "codeIataAirline": "OX", + "codeIcaoAirline": "OEA", + "codeIso2Country": "TH", + "founding": 1992, + "iataPrefixAccounting": "578", + "nameAirline": "Orient Thai Airlines Company Ltd.", + "nameCountry": "Thailand", + "sizeAirline": 18, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 8.4, + "airlineId": 259, + "callsign": "AIRBRIDGE CARGO", + "codeHub": "SVO", + "codeIataAirline": "RU", + "codeIcaoAirline": "ABW", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "580", + "nameAirline": "AirBridgeCargo Airlines", + "nameCountry": "Russia", + "sizeAirline": 18, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 17.3, + "airlineId": 260, + "callsign": "CITY-IRELAND", + "codeHub": "LCY", + "codeIataAirline": "WX", + "codeIcaoAirline": "BCY", + "codeIso2Country": "IE", + "founding": 1993, + "iataPrefixAccounting": "689", + "nameAirline": "CityJet", + "nameCountry": "Ireland", + "sizeAirline": 18, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.1, + "airlineId": 261, + "callsign": "AIRINDIA", + "codeHub": "BOM", + "codeIataAirline": "9I", + "codeIcaoAirline": "LLR", + "codeIso2Country": "IN", + "founding": 2007, + "iataPrefixAccounting": "296", + "nameAirline": "Airline Allied Services Limited dba Alliance Air", + "nameCountry": "India", + "sizeAirline": 17, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.3, + "airlineId": 262, + "callsign": "GLORY", + "codeHub": "TSA", + "codeIataAirline": "B7", + "codeIcaoAirline": "UIA", + "codeIso2Country": "TW", + "founding": 1998, + "iataPrefixAccounting": "525", + "nameAirline": "UNI Airways Corporation", + "nameCountry": "Taiwan", + "sizeAirline": 17, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.7, + "airlineId": 263, + "callsign": "MIDLAND", + "codeHub": "ABZ", + "codeIataAirline": "BM", + "codeIcaoAirline": "BMR", + "codeIso2Country": "GB", + "founding": 2001, + "iataPrefixAccounting": "480", + "nameAirline": "bmi Regional", + "nameCountry": "United Kingdom", + "sizeAirline": 17, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.9, + "airlineId": 264, + "callsign": "WALTER", + "codeHub": "DTM", + "codeIataAirline": "HE", + "codeIcaoAirline": "LGW", + "codeIso2Country": "DE", + "founding": 1980, + "iataPrefixAccounting": "", + "nameAirline": "LGW-Luftfahrtgesellschaft Walter GmbH", + "nameCountry": "Germany", + "sizeAirline": 17, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.7, + "airlineId": 265, + "callsign": "JAT", + "codeHub": "BEG", + "codeIataAirline": "JU", + "codeIcaoAirline": "ASL", + "codeIso2Country": "RS", + "founding": 2013, + "iataPrefixAccounting": "115", + "nameAirline": "Air SERBIA a.d. Beograd", + "nameCountry": "Serbia", + "sizeAirline": 17, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.3, + "airlineId": 266, + "callsign": "LUXAIR", + "codeHub": "LUX", + "codeIataAirline": "LG", + "codeIcaoAirline": "LGL", + "codeIso2Country": "LU", + "founding": 1961, + "iataPrefixAccounting": "149", + "nameAirline": "Luxair", + "nameCountry": "Luxembourg", + "sizeAirline": 17, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 2.8, + "airlineId": 267, + "callsign": "AIR PEACH", + "codeHub": "KIX", + "codeIataAirline": "MM", + "codeIcaoAirline": "APJ", + "codeIso2Country": "JP", + "founding": 2011, + "iataPrefixAccounting": "", + "nameAirline": "Peach Aviation Limited", + "nameCountry": "Japan", + "sizeAirline": 17, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.8, + "airlineId": 268, + "callsign": "PORTUGALIA", + "codeHub": "LIS", + "codeIataAirline": "NI", + "codeIcaoAirline": "PGA", + "codeIso2Country": "PT", + "founding": 1989, + "iataPrefixAccounting": "685", + "nameAirline": "PGA-Portugalia Airlines", + "nameCountry": "Portugal", + "sizeAirline": 17, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.0, + "airlineId": 269, + "callsign": "AIR MACAU", + "codeHub": "MFM", + "codeIataAirline": "NX", + "codeIcaoAirline": "AMU", + "codeIso2Country": "MO", + "founding": 1994, + "iataPrefixAccounting": "675", + "nameAirline": "Air Macau", + "nameCountry": "Macao", + "sizeAirline": 17, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.8, + "airlineId": 270, + "callsign": "AER ARANN", + "codeHub": "DUB", + "codeIataAirline": "RE", + "codeIcaoAirline": "REA", + "codeIso2Country": "IE", + "founding": 2014, + "iataPrefixAccounting": "809", + "nameAirline": "Stobart Air", + "nameCountry": "Ireland", + "sizeAirline": 17, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.5, + "airlineId": 271, + "callsign": "TIGGOZ", + "codeHub": "MEL", + "codeIataAirline": "TT", + "codeIcaoAirline": "TGG", + "codeIso2Country": "AU", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "Tigerair Australia", + "nameCountry": "Australia", + "sizeAirline": 17, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.4, + "airlineId": 272, + "callsign": "CREE", + "codeHub": "YKQ", + "codeIataAirline": "YN", + "codeIcaoAirline": "CRQ", + "codeIso2Country": "CA", + "founding": 1982, + "iataPrefixAccounting": "219", + "nameAirline": "Air Creebec (1994) Inc.", + "nameCountry": "Canada", + "sizeAirline": 17, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.6, + "airlineId": 273, + "callsign": "AIRPHIL", + "codeHub": "MNL", + "codeIataAirline": "2P", + "codeIcaoAirline": "GAP", + "codeIso2Country": "PH", + "founding": 2013, + "iataPrefixAccounting": "211", + "nameAirline": "Air Philippines Corporation dba PAL Express and Airphil Express", + "nameCountry": "Philippines", + "sizeAirline": 16, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.0, + "airlineId": 274, + "callsign": "DONGHAI AIR", + "codeHub": "SZX", + "codeIataAirline": "DZ", + "codeIcaoAirline": "EPA", + "codeIso2Country": "CN", + "founding": 2006, + "iataPrefixAccounting": "893", + "nameAirline": "Donghai Airlines Co., Ltd", + "nameCountry": "China", + "sizeAirline": 16, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.6, + "airlineId": 275, + "callsign": "TAME", + "codeHub": "UIO", + "codeIataAirline": "EQ", + "codeIcaoAirline": "TAE", + "codeIso2Country": "EC", + "founding": 1962, + "iataPrefixAccounting": "269", + "nameAirline": "TAME - Linea Aerea del Ecuador", + "nameCountry": "Ecuador", + "sizeAirline": 16, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.7, + "airlineId": 276, + "callsign": "HUALONG", + "codeHub": "HGH", + "codeIataAirline": "GJ", + "codeIcaoAirline": "CDC", + "codeIso2Country": "CN", + "founding": 2013, + "iataPrefixAccounting": "891", + "nameAirline": "Zhejiang Loong Airlines Co., Ltd", + "nameCountry": "China", + "sizeAirline": 16, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 27.0, + "airlineId": 277, + "callsign": "TRIGANA", + "codeHub": "HLP", + "codeIataAirline": "IL", + "codeIcaoAirline": "TGN", + "codeIso2Country": "ID", + "founding": 1991, + "iataPrefixAccounting": "", + "nameAirline": "PT.Trigana Air Service", + "nameCountry": "Indonesia", + "sizeAirline": 16, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.1, + "airlineId": 278, + "callsign": "COMMERCIAL", + "codeHub": "CPT", + "codeIataAirline": "MN", + "codeIcaoAirline": "CAW", + "codeIso2Country": "ZA", + "founding": 2001, + "iataPrefixAccounting": "161", + "nameAirline": "Comair", + "nameCountry": "South Africa", + "sizeAirline": 16, + "statusAirline": "active", + "type": "scheduled,division" + }, + { + "ageFleet": 18.5, + "airlineId": 279, + "callsign": "TRANS-AEROMAR", + "codeHub": "MEX", + "codeIataAirline": "VW", + "codeIcaoAirline": "TAO", + "codeIso2Country": "MX", + "founding": 1987, + "iataPrefixAccounting": "942", + "nameAirline": "Transportes Aeromar, S.A. de C.V.", + "nameCountry": "Mexico", + "sizeAirline": 16, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 2.1, + "airlineId": 280, + "callsign": "THAI SMILE", + "codeHub": "BKK", + "codeIataAirline": "WE", + "codeIcaoAirline": "THD", + "codeIso2Country": "TH", + "founding": 2011, + "iataPrefixAccounting": "", + "nameAirline": "Thai Smile", + "nameCountry": "Thailand", + "sizeAirline": 16, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 23.6, + "airlineId": 281, + "callsign": "BLUE MESSENGER", + "codeHub": "OTP", + "codeIataAirline": "0B", + "codeIcaoAirline": "BMS", + "codeIso2Country": "RO", + "founding": 2004, + "iataPrefixAccounting": "475", + "nameAirline": "Blue Air", + "nameCountry": "Romania", + "sizeAirline": 15, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 28.6, + "airlineId": 282, + "callsign": "AVIOR", + "codeHub": "BLA", + "codeIataAirline": "9V", + "codeIcaoAirline": "ROI", + "codeIso2Country": "VE", + "founding": 1994, + "iataPrefixAccounting": "742", + "nameAirline": "Avior Airlines, C.A.", + "nameCountry": "Venezuela", + "sizeAirline": 15, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.8, + "airlineId": 283, + "callsign": "ANGOLA", + "codeHub": "LAD", + "codeIataAirline": "DT", + "codeIcaoAirline": "DTA", + "codeIso2Country": "AO", + "founding": 1938, + "iataPrefixAccounting": "118", + "nameAirline": "TAAG - Angola Airlines", + "nameCountry": "Angola", + "sizeAirline": 15, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 23.7, + "airlineId": 284, + "callsign": "DANISH", + "codeHub": "EBJ", + "codeIataAirline": "DX", + "codeIcaoAirline": "DTR", + "codeIso2Country": "DK", + "founding": 1989, + "iataPrefixAccounting": "243", + "nameAirline": "Danish Air Transport", + "nameCountry": "Denmark", + "sizeAirline": 15, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.7, + "airlineId": 285, + "callsign": "AEROSKY", + "codeHub": "SCL", + "codeIataAirline": "H2", + "codeIcaoAirline": "SKU", + "codeIso2Country": "CL", + "founding": 2001, + "iataPrefixAccounting": "605", + "nameAirline": "SKY Airline", + "nameCountry": "Chile", + "sizeAirline": 15, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 286, + "callsign": "BEARSKIN", + "codeHub": "YXL", + "codeIataAirline": "JV", + "codeIcaoAirline": "BLS", + "codeIso2Country": "CA", + "founding": 1963, + "iataPrefixAccounting": "632", + "nameAirline": "Bearskin Lake air services LP", + "nameCountry": "Canada", + "sizeAirline": 15, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 20.8, + "airlineId": 287, + "callsign": "AEROLINE", + "codeHub": "LOS", + "codeIataAirline": "NG", + "codeIcaoAirline": "NIG", + "codeIso2Country": "NG", + "founding": 1960, + "iataPrefixAccounting": "708", + "nameAirline": "Aero Contractors", + "nameCountry": "Nigeria", + "sizeAirline": 15, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.7, + "airlineId": 288, + "callsign": "CSA-LINES", + "codeHub": "PRG", + "codeIataAirline": "OK", + "codeIcaoAirline": "CSA", + "codeIso2Country": "CZ", + "founding": 1923, + "iataPrefixAccounting": "64", + "nameAirline": "Czech Airlines j.s.c", + "nameCountry": "Czech Republic", + "sizeAirline": 15, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.5, + "airlineId": 289, + "callsign": "POLAR", + "codeHub": "ANC", + "codeIataAirline": "PO", + "codeIcaoAirline": "PAC", + "codeIso2Country": "UM", + "founding": 1993, + "iataPrefixAccounting": "403", + "nameAirline": "Polar Air Cargo Worldwide, Inc.", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 15, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 8.9, + "airlineId": 290, + "callsign": "TASSILI AIR", + "codeHub": "ALG", + "codeIataAirline": "SF", + "codeIcaoAirline": "DTH", + "codeIso2Country": "DZ", + "founding": 1998, + "iataPrefixAccounting": "515", + "nameAirline": "Tassili Airlines", + "nameCountry": "Algeria", + "sizeAirline": 15, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 17.6, + "airlineId": 291, + "callsign": "EASTFLIGHT", + "codeHub": "ABZ", + "codeIataAirline": "T3", + "codeIcaoAirline": "EZE", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "467", + "nameAirline": "Air Kilroe Limited t/a Eastern Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 15, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 2.6, + "airlineId": 292, + "callsign": "TIBET AIR", + "codeHub": "LXA", + "codeIataAirline": "TV", + "codeIcaoAirline": "TBA", + "codeIso2Country": "CN", + "founding": 2010, + "iataPrefixAccounting": "88", + "nameAirline": "Tibet Airlines Corporation Limited", + "nameCountry": "China", + "sizeAirline": 15, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.4, + "airlineId": 293, + "callsign": "TWAI AIR", + "codeHub": "CJJ", + "codeIataAirline": "TW", + "codeIcaoAirline": "TWB", + "codeIso2Country": "KR", + "founding": 2010, + "iataPrefixAccounting": "722", + "nameAirline": "T'way Air", + "nameCountry": "South Korea", + "sizeAirline": 15, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.0, + "airlineId": 294, + "callsign": "UNIONAIR", + "codeHub": "RGN", + "codeIataAirline": "UB", + "codeIcaoAirline": "UBA", + "codeIso2Country": "MM", + "founding": 1948, + "iataPrefixAccounting": "665", + "nameAirline": "Myanmar National Airlines", + "nameCountry": "Myanmar", + "sizeAirline": 15, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.1, + "airlineId": 295, + "callsign": "CARGOJET", + "codeHub": "YHM", + "codeIataAirline": "W8", + "codeIcaoAirline": "CJT", + "codeIso2Country": "CA", + "founding": 2002, + "iataPrefixAccounting": "489", + "nameAirline": "Cargojet Airways", + "nameCountry": "Canada", + "sizeAirline": 15, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 11.7, + "airlineId": 296, + "callsign": "TAIMYR", + "codeHub": "NSK", + "codeIataAirline": "Y7", + "codeIcaoAirline": "TYA", + "codeIso2Country": "RU", + "founding": 2009, + "iataPrefixAccounting": "476", + "nameAirline": "Joint Stock Company Airline Taimyr", + "nameCountry": "Russia", + "sizeAirline": 15, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.0, + "airlineId": 297, + "callsign": "EASTAR JET", + "codeHub": "CJU", + "codeIataAirline": "ZE", + "codeIcaoAirline": "ESR", + "codeIso2Country": "KR", + "founding": 2007, + "iataPrefixAccounting": "839", + "nameAirline": "EASTAR JET Co. Ltd.", + "nameCountry": "South Korea", + "sizeAirline": 15, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 23.8, + "airlineId": 298, + "callsign": "ZAGROS", + "codeHub": "IKA", + "codeIataAirline": "ZO", + "codeIcaoAirline": "IZG", + "codeIso2Country": "IR", + "founding": 2005, + "iataPrefixAccounting": "", + "nameAirline": "Zagros Airlines", + "nameCountry": "Iran", + "sizeAirline": 15, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.4, + "airlineId": 299, + "callsign": "PASSAREDO", + "codeHub": "RAO", + "codeIataAirline": "2Z", + "codeIcaoAirline": "PTB", + "codeIso2Country": "BR", + "founding": 1995, + "iataPrefixAccounting": "678", + "nameAirline": "Passaredo Transportes Aereos S.A.", + "nameCountry": "Brazil", + "sizeAirline": 14, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.4, + "airlineId": 300, + "callsign": "LANAR", + "codeHub": "AEP", + "codeIataAirline": "4M", + "codeIcaoAirline": "DSM", + "codeIso2Country": "AR", + "founding": 2005, + "iataPrefixAccounting": "469", + "nameAirline": "Lan Argentina", + "nameCountry": "Argentina", + "sizeAirline": 14, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.1, + "airlineId": 301, + "callsign": "BANGLADESH", + "codeHub": "DAC", + "codeIataAirline": "BG", + "codeIcaoAirline": "BBC", + "codeIso2Country": "BD", + "founding": 1972, + "iataPrefixAccounting": "997", + "nameAirline": "Biman", + "nameCountry": "Bangladesh", + "sizeAirline": 14, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.0, + "airlineId": 302, + "callsign": "CARIBBEAN AIRLINES", + "codeHub": "POS", + "codeIataAirline": "BW", + "codeIcaoAirline": "BWA", + "codeIso2Country": "TT", + "founding": 2006, + "iataPrefixAccounting": "106", + "nameAirline": "Caribbean Airlines", + "nameCountry": "Trinidad and Tobago", + "sizeAirline": 14, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.1, + "airlineId": 303, + "callsign": "AIR BUSAN", + "codeHub": "PUS", + "codeIataAirline": "BX", + "codeIcaoAirline": "ABL", + "codeIso2Country": "KR", + "founding": 2008, + "iataPrefixAccounting": "982", + "nameAirline": "Air Busan", + "nameCountry": "South Korea", + "sizeAirline": 14, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.3, + "airlineId": 304, + "callsign": "ATLANTA", + "codeHub": "KEF", + "codeIataAirline": "CC", + "codeIcaoAirline": "ABD", + "codeIso2Country": "IS", + "founding": 1986, + "iataPrefixAccounting": "318", + "nameAirline": "Air Atlanta Icelandic", + "nameCountry": "Iceland", + "sizeAirline": 14, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 6.5, + "airlineId": 305, + "callsign": "KUNMING AIR", + "codeHub": "KMG", + "codeIataAirline": "KY", + "codeIcaoAirline": "KNA", + "codeIso2Country": "CN", + "founding": 2009, + "iataPrefixAccounting": "833", + "nameAirline": "Kunming Airlines", + "nameCountry": "China", + "sizeAirline": 14, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.4, + "airlineId": 306, + "callsign": "OLYMPIC", + "codeHub": "ATH", + "codeIataAirline": "OA", + "codeIcaoAirline": "OAL", + "codeIso2Country": "GR", + "founding": 2009, + "iataPrefixAccounting": "50", + "nameAirline": "Olympic Air", + "nameCountry": "Greece", + "sizeAirline": 14, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.5, + "airlineId": 307, + "callsign": "CHONG QING", + "codeHub": "CKG", + "codeIataAirline": "OQ", + "codeIcaoAirline": "CQN", + "codeIso2Country": "CN", + "founding": 2007, + "iataPrefixAccounting": "878", + "nameAirline": "Chongqing Airlines Co. Ltd", + "nameCountry": "China", + "sizeAirline": 14, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.4, + "airlineId": 308, + "callsign": "AMIRI", + "codeHub": "DOH", + "codeIataAirline": "Q4*", + "codeIcaoAirline": "QAF", + "codeIso2Country": "QA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Qatar Amiri Flight", + "nameCountry": "Qatar", + "sizeAirline": 14, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 12.0, + "airlineId": 309, + "callsign": "RAFAIR", + "codeHub": "BZZ", + "codeIataAirline": "RR", + "codeIcaoAirline": "RFR", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Air Force", + "nameCountry": "United Kingdom", + "sizeAirline": 14, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 8.9, + "airlineId": 310, + "callsign": "LITE JET", + "codeHub": "DEL", + "codeIataAirline": "S2", + "codeIcaoAirline": "JLL", + "codeIso2Country": "IN", + "founding": 2012, + "iataPrefixAccounting": "705", + "nameAirline": "Jet Lite (India) Limited", + "nameCountry": "India", + "sizeAirline": 14, + "statusAirline": "active", + "type": "scheduled,division" + }, + { + "ageFleet": 5.0, + "airlineId": 311, + "callsign": "HONGKONG SHUTTLE", + "codeHub": "HKG", + "codeIataAirline": "UO", + "codeIcaoAirline": "HKE", + "codeIso2Country": "HK", + "founding": 1996, + "iataPrefixAccounting": "128", + "nameAirline": "Hong Kong Express Airways", + "nameCountry": "Hong Kong", + "sizeAirline": 14, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.4, + "airlineId": 312, + "callsign": "SUNRISE", + "codeHub": "FRA", + "codeIataAirline": "XG", + "codeIcaoAirline": "SXD", + "codeIso2Country": "DE", + "founding": 2011, + "iataPrefixAccounting": "", + "nameAirline": "SunExpress Deutschland GmbH", + "nameCountry": "Germany", + "sizeAirline": 14, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.3, + "airlineId": 313, + "callsign": "AZUR AIR", + "codeHub": "KJA", + "codeIataAirline": "ZF", + "codeIcaoAirline": "KTK", + "codeIso2Country": "RU", + "founding": 2014, + "iataPrefixAccounting": "", + "nameAirline": "AZUR air Limited Liability Company", + "nameCountry": "Russia", + "sizeAirline": 14, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.2, + "airlineId": 314, + "callsign": "HELVETIC", + "codeHub": "ZRH", + "codeIataAirline": "2L", + "codeIcaoAirline": "OAW", + "codeIso2Country": "CH", + "founding": 2001, + "iataPrefixAccounting": "102", + "nameAirline": "Helvetic Airways AG", + "nameCountry": "Switzerland", + "sizeAirline": 13, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.6, + "airlineId": 315, + "callsign": "GAZPROM", + "codeHub": "VKO", + "codeIataAirline": "4G", + "codeIcaoAirline": "GZP", + "codeIso2Country": "RU", + "founding": 1993, + "iataPrefixAccounting": "579", + "nameAirline": "Gazpromavia Aviation Company Ltd.", + "nameCountry": "Russia", + "sizeAirline": 13, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.1, + "airlineId": 316, + "callsign": "THUNDERBIRD", + "codeHub": "YXS", + "codeIataAirline": "4R", + "codeIcaoAirline": "NTA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northern Thunderbird Air", + "nameCountry": "Canada", + "sizeAirline": 13, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.2, + "airlineId": 317, + "callsign": "FRENCH POST", + "codeHub": "CDG", + "codeIataAirline": "5O", + "codeIcaoAirline": "FPO", + "codeIso2Country": "FR", + "founding": 2015, + "iataPrefixAccounting": "558", + "nameAirline": "ASL Airlines France", + "nameCountry": "France", + "sizeAirline": 13, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.9, + "airlineId": 318, + "callsign": "BALUS", + "codeHub": "POM", + "codeIataAirline": "CG", + "codeIcaoAirline": "TOK", + "codeIso2Country": "PG", + "founding": 2015, + "iataPrefixAccounting": "626", + "nameAirline": "Airlines of Papua New Guinea Limited", + "nameCountry": "Papua New Guinea", + "sizeAirline": 13, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.7, + "airlineId": 319, + "callsign": "VIKING", + "codeHub": "CPH", + "codeIataAirline": "DK", + "codeIcaoAirline": "VKG", + "codeIso2Country": "DK", + "founding": 2008, + "iataPrefixAccounting": "630", + "nameAirline": "Thomas Cook Airlines Scandinavia A/", + "nameCountry": "Denmark", + "sizeAirline": 13, + "statusAirline": "historical", + "type": "scheduled,charter" + }, + { + "ageFleet": 12.5, + "airlineId": 320, + "callsign": "AIR DO", + "codeHub": "CTS", + "codeIataAirline": "HD", + "codeIcaoAirline": "ADO", + "codeIso2Country": "JP", + "founding": 1997, + "iataPrefixAccounting": "", + "nameAirline": "Airdo Co., Ltd", + "nameCountry": "Japan", + "sizeAirline": 13, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 26.5, + "airlineId": 321, + "callsign": "CHASQUI", + "codeHub": "MIA", + "codeIataAirline": "II", + "codeIcaoAirline": "CSQ", + "codeIso2Country": "UM", + "founding": 1991, + "iataPrefixAccounting": "175", + "nameAirline": "IBC Airways, Inc.", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 13, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.9, + "airlineId": 322, + "callsign": "ADRIA", + "codeHub": "LJU", + "codeIataAirline": "JP", + "codeIcaoAirline": "ADR", + "codeIso2Country": "SI", + "founding": 1961, + "iataPrefixAccounting": "165", + "nameAirline": "Adria Airways", + "nameCountry": "Slovenia", + "sizeAirline": 13, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 5.5, + "airlineId": 323, + "callsign": "NIPPON CARGO", + "codeHub": "NRT", + "codeIataAirline": "KZ", + "codeIcaoAirline": "NCA", + "codeIso2Country": "JP", + "founding": 1978, + "iataPrefixAccounting": "933", + "nameAirline": "Nippon Cargo Airlines (NCA)", + "nameCountry": "Japan", + "sizeAirline": 13, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 16.1, + "airlineId": 324, + "callsign": "AIR HONG KONG", + "codeHub": "HKG", + "codeIataAirline": "LD", + "codeIcaoAirline": "AHK", + "codeIso2Country": "HK", + "founding": 1986, + "iataPrefixAccounting": "288", + "nameAirline": "AHK Air Hong Kong Limited", + "nameCountry": "Hong Kong", + "sizeAirline": 13, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 25.0, + "airlineId": 325, + "callsign": "CANADIAN PARTNER", + "codeHub": "YTH", + "codeIataAirline": "MO", + "codeIcaoAirline": "CAV", + "codeIso2Country": "CA", + "founding": 1962, + "iataPrefixAccounting": "622", + "nameAirline": "Calm Air International Ltd.", + "nameCountry": "Canada", + "sizeAirline": 13, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 326, + "callsign": "MYLAND", + "codeHub": "TZA", + "codeIataAirline": "MY", + "codeIcaoAirline": "MYD", + "codeIso2Country": "BZ", + "founding": 0, + "iataPrefixAccounting": "391", + "nameAirline": "Maya Island Air", + "nameCountry": "Belize", + "sizeAirline": 13, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.9, + "airlineId": 327, + "callsign": "CROATIA", + "codeHub": "ZAG", + "codeIataAirline": "OU", + "codeIcaoAirline": "CTN", + "codeIso2Country": "HR", + "founding": 1989, + "iataPrefixAccounting": "831", + "nameAirline": "Croatia Airlines", + "nameCountry": "Croatia", + "sizeAirline": 13, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 20.5, + "airlineId": 328, + "callsign": "VOYAGEUR", + "codeHub": "YYB", + "codeIataAirline": "4V", + "codeIcaoAirline": "VAL", + "codeIso2Country": "CA", + "founding": 1968, + "iataPrefixAccounting": "908", + "nameAirline": "Voyageur Airways", + "nameCountry": "Canada", + "sizeAirline": 12, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 3.1, + "airlineId": 329, + "callsign": "NEWSKY", + "codeHub": "KMI", + "codeIataAirline": "6J", + "codeIcaoAirline": "SNJ", + "codeIso2Country": "JP", + "founding": 2011, + "iataPrefixAccounting": "", + "nameAirline": "Solaseed Air Inc.", + "nameCountry": "Japan", + "sizeAirline": 12, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.1, + "airlineId": 330, + "callsign": "SATENA", + "codeHub": "BOG", + "codeIataAirline": "9R", + "codeIcaoAirline": "NSE", + "codeIso2Country": "CO", + "founding": 1962, + "iataPrefixAccounting": "19", + "nameAirline": "Servicio Aereo a Territorios Nacion \"SATENA\"", + "nameCountry": "Colombia", + "sizeAirline": 12, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.0, + "airlineId": 331, + "callsign": "PACIFIC EXPRESS", + "codeHub": "SGN", + "codeIataAirline": "BL", + "codeIcaoAirline": "PIC", + "codeIso2Country": "VN", + "founding": 2008, + "iataPrefixAccounting": "550", + "nameAirline": "Jetstar Pacific Airlines", + "nameCountry": "Vietnam", + "sizeAirline": 12, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 1.6, + "airlineId": 332, + "callsign": "POBEDA", + "codeHub": "VKO", + "codeIataAirline": "DP", + "codeIcaoAirline": "PBD", + "codeIso2Country": "RU", + "founding": 2014, + "iataPrefixAccounting": "425", + "nameAirline": "Pobeda", + "nameCountry": "Russia", + "sizeAirline": 12, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.9, + "airlineId": 333, + "callsign": "VLASTA", + "codeHub": "CIT", + "codeIataAirline": "DV", + "codeIcaoAirline": "VSV", + "codeIso2Country": "KZ", + "founding": 1997, + "iataPrefixAccounting": "655", + "nameAirline": "JSC \"Aircompany SCAT\"", + "nameCountry": "Kazakhstan", + "sizeAirline": 12, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.4, + "airlineId": 334, + "callsign": "FLYING BULGARIA", + "codeHub": "SOF", + "codeIataAirline": "FB", + "codeIcaoAirline": "LZB", + "codeIso2Country": "BG", + "founding": 2003, + "iataPrefixAccounting": "623", + "nameAirline": "Bulgaria air", + "nameCountry": "Bulgaria", + "sizeAirline": 12, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.9, + "airlineId": 335, + "callsign": "BULGARIAN CHARTER", + "codeHub": "SOF", + "codeIataAirline": "H6", + "codeIcaoAirline": "BUC", + "codeIso2Country": "BG", + "founding": 2000, + "iataPrefixAccounting": "994", + "nameAirline": "Bulgarian Air Charter Ltd", + "nameCountry": "Bulgaria", + "sizeAirline": 12, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 14.2, + "airlineId": 336, + "callsign": "KALSTAR", + "codeHub": "BEJ", + "codeIataAirline": "KD", + "codeIcaoAirline": "KLS", + "codeIso2Country": "ID", + "founding": 2000, + "iataPrefixAccounting": "", + "nameAirline": "Kal Star Aviation", + "nameCountry": "Indonesia", + "sizeAirline": 12, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.2, + "airlineId": 337, + "callsign": "AIR MAURITIUS", + "codeHub": "MRU", + "codeIataAirline": "MK", + "codeIcaoAirline": "MAU", + "codeIso2Country": "MU", + "founding": 1967, + "iataPrefixAccounting": "239", + "nameAirline": "Air Mauritius", + "nameCountry": "Mauritius", + "sizeAirline": 12, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.4, + "airlineId": 338, + "callsign": "AEROREPUBLICA", + "codeHub": "BOG", + "codeIataAirline": "P5", + "codeIcaoAirline": "RBP", + "codeIso2Country": "CO", + "founding": 2010, + "iataPrefixAccounting": "845", + "nameAirline": "Aero Republica", + "nameCountry": "Colombia", + "sizeAirline": 12, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.7, + "airlineId": 339, + "callsign": "SYRIANAIR", + "codeHub": "DAM", + "codeIataAirline": "RB", + "codeIcaoAirline": "SYR", + "codeIso2Country": "SY", + "founding": 1961, + "iataPrefixAccounting": "70", + "nameAirline": "Syrianair", + "nameCountry": "Syria", + "sizeAirline": 12, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.5, + "airlineId": 340, + "callsign": "KISHAIR", + "codeHub": "THR", + "codeIataAirline": "Y9", + "codeIcaoAirline": "IRK", + "codeIso2Country": "IR", + "founding": 1991, + "iataPrefixAccounting": "780", + "nameAirline": "Kish Air", + "nameCountry": "Iran", + "sizeAirline": 12, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.2, + "airlineId": 341, + "callsign": "ZEST", + "codeHub": "MNL", + "codeIataAirline": "Z2", + "codeIcaoAirline": "EZD", + "codeIso2Country": "PH", + "founding": 2013, + "iataPrefixAccounting": "457", + "nameAirline": "Zest Airways Inc.", + "nameCountry": "Philippines", + "sizeAirline": 12, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 26.7, + "airlineId": 342, + "callsign": "NEXTJET", + "codeHub": "ARN", + "codeIataAirline": "2N", + "codeIcaoAirline": "NTJ", + "codeIso2Country": "SE", + "founding": 2002, + "iataPrefixAccounting": "121", + "nameAirline": "Nextjet", + "nameCountry": "Sweden", + "sizeAirline": 11, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 34.4, + "airlineId": 343, + "callsign": "RUTACA", + "codeHub": "CBL", + "codeIataAirline": "5R", + "codeIcaoAirline": "RUC", + "codeIso2Country": "VE", + "founding": 1974, + "iataPrefixAccounting": "", + "nameAirline": "Rutaca Airlines", + "nameCountry": "Venezuela", + "sizeAirline": 11, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 27.9, + "airlineId": 344, + "callsign": "AIR TRANSPORT", + "codeHub": "ILN", + "codeIataAirline": "8C", + "codeIcaoAirline": "ATN", + "codeIso2Country": "UM", + "founding": 1988, + "iataPrefixAccounting": "649", + "nameAirline": "Air Transport International Inc.", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 11, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 10.8, + "airlineId": 345, + "callsign": "NOUVELAIR", + "codeHub": "MIR", + "codeIataAirline": "BJ", + "codeIcaoAirline": "LBT", + "codeIso2Country": "TN", + "founding": 1990, + "iataPrefixAccounting": "796", + "nameAirline": "Nouvelair", + "nameCountry": "Tunisia", + "sizeAirline": 11, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.4, + "airlineId": 346, + "callsign": "ATALAR AIR", + "codeHub": "TBZ", + "codeIataAirline": "I3", + "codeIcaoAirline": "TBZ", + "codeIso2Country": "IR", + "founding": 2009, + "iataPrefixAccounting": "", + "nameAirline": "ATA Airlines", + "nameCountry": "Iran", + "sizeAirline": 11, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.1, + "airlineId": 347, + "callsign": "LIAT", + "codeHub": "ANU", + "codeIataAirline": "LI", + "codeIcaoAirline": "LIA", + "codeIso2Country": "AG", + "founding": 1956, + "iataPrefixAccounting": "140", + "nameAirline": "LIAT Airlines", + "nameCountry": "Antigua and Barbuda", + "sizeAirline": 11, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.2, + "airlineId": 348, + "callsign": "MOV AIR", + "codeHub": "DME", + "codeIataAirline": "NN", + "codeIcaoAirline": "MOV", + "codeIso2Country": "RU", + "founding": 2004, + "iataPrefixAccounting": "823", + "nameAirline": "VIM Airlines", + "nameCountry": "Russia", + "sizeAirline": 11, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.8, + "airlineId": 349, + "callsign": "ARKE", + "codeHub": "AMS", + "codeIataAirline": "OR", + "codeIcaoAirline": "TFL", + "codeIso2Country": "NL", + "founding": 2015, + "iataPrefixAccounting": "178", + "nameAirline": "TUI Airlines Nederland B.V.", + "nameCountry": "Netherlands", + "sizeAirline": 11, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.5, + "airlineId": 350, + "callsign": "LAO", + "codeHub": "VTE", + "codeIataAirline": "QV", + "codeIcaoAirline": "LAO", + "codeIso2Country": "LA", + "founding": 2003, + "iataPrefixAccounting": "627", + "nameAirline": "Lao Airlines", + "nameCountry": "Laos", + "sizeAirline": 11, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 27.8, + "airlineId": 351, + "callsign": "WHITESTAR", + "codeHub": "CGN", + "codeIataAirline": "S6*", + "codeIcaoAirline": "SRR", + "codeIso2Country": "DK", + "founding": 1986, + "iataPrefixAccounting": "", + "nameAirline": "Star Air", + "nameCountry": "Denmark", + "sizeAirline": 11, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 10.5, + "airlineId": 352, + "callsign": "NAMIBIA", + "codeHub": "WDH", + "codeIataAirline": "SW", + "codeIcaoAirline": "NMB", + "codeIso2Country": "NA", + "founding": 1991, + "iataPrefixAccounting": "186", + "nameAirline": "Air Namibia", + "nameCountry": "Namibia", + "sizeAirline": 11, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 17.3, + "airlineId": 353, + "callsign": "BAHAMAS", + "codeHub": "NAS", + "codeIataAirline": "UP", + "codeIcaoAirline": "BHS", + "codeIso2Country": "BS", + "founding": 1973, + "iataPrefixAccounting": "111", + "nameAirline": "Bahamasair", + "nameCountry": "Bahamas", + "sizeAirline": 11, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.5, + "airlineId": 354, + "callsign": "AIR TAHITI", + "codeHub": "PPT", + "codeIataAirline": "VT", + "codeIcaoAirline": "VTA", + "codeIso2Country": "PF", + "founding": 1987, + "iataPrefixAccounting": "135", + "nameAirline": "Air Tahiti", + "nameCountry": "French Polynesia", + "sizeAirline": 11, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.9, + "airlineId": 355, + "callsign": "CORENDON", + "codeHub": "AYT", + "codeIataAirline": "XC", + "codeIcaoAirline": "CAI", + "codeIso2Country": "TR", + "founding": 2005, + "iataPrefixAccounting": "395", + "nameAirline": "Corendon Airlines", + "nameCountry": "Turkey", + "sizeAirline": 11, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 26.7, + "airlineId": 356, + "callsign": "STAR UP", + "codeHub": "LIM", + "codeIataAirline": "2I", + "codeIcaoAirline": "SRU", + "codeIso2Country": "PE", + "founding": 2004, + "iataPrefixAccounting": "156", + "nameAirline": "Star Up S.A. dba Star Peru", + "nameCountry": "Peru", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.2, + "airlineId": 357, + "callsign": "ERAH", + "codeHub": "ANC", + "codeIataAirline": "7H", + "codeIcaoAirline": "RVF", + "codeIso2Country": "UM", + "founding": 2014, + "iataPrefixAccounting": "808", + "nameAirline": "Corvus Airlines, Inc. dba Ravn Alaska", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.3, + "airlineId": 358, + "callsign": "TURISMO REGIONAL", + "codeHub": "PAC", + "codeIataAirline": "7P", + "codeIcaoAirline": "PST", + "codeIso2Country": "PA", + "founding": 2005, + "iataPrefixAccounting": "600", + "nameAirline": "Air Panama dba Parsa, S.A.", + "nameCountry": "Panama", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.4, + "airlineId": 359, + "callsign": "MAINER", + "codeHub": "MLB", + "codeIataAirline": "7Q", + "codeIcaoAirline": "MNU", + "codeIso2Country": "UM", + "founding": 0, + "iataPrefixAccounting": "87", + "nameAirline": "Elite Airways LLC", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.1, + "airlineId": 360, + "callsign": "SOUTHERN AIR", + "codeHub": "CVG", + "codeIataAirline": "9S", + "codeIcaoAirline": "SOO", + "codeIso2Country": "UM", + "founding": 1999, + "iataPrefixAccounting": "99", + "nameAirline": "Southern Air Inc.", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 10, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 32.9, + "airlineId": 361, + "callsign": "VENEZOLANA", + "codeHub": "MAR", + "codeIataAirline": "AW", + "codeIcaoAirline": "VNE", + "codeIso2Country": "VE", + "founding": 2006, + "iataPrefixAccounting": "", + "nameAirline": "Venezolana", + "nameCountry": "Venezuela", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.8, + "airlineId": 362, + "callsign": "BRUNEI", + "codeHub": "BWN", + "codeIataAirline": "BI", + "codeIcaoAirline": "RBA", + "codeIso2Country": "BN", + "founding": 1974, + "iataPrefixAccounting": "672", + "nameAirline": "Royal Brunei", + "nameCountry": "Brunei", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.7, + "airlineId": 363, + "callsign": "CEIBA LINE", + "codeHub": "SSG", + "codeIataAirline": "C2", + "codeIcaoAirline": "CEL", + "codeIso2Country": "GQ", + "founding": 2006, + "iataPrefixAccounting": "304", + "nameAirline": "Ceiba Intercontinental", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.3, + "airlineId": 364, + "callsign": "CUBANA", + "codeHub": "HAV", + "codeIataAirline": "CU", + "codeIcaoAirline": "CUB", + "codeIso2Country": "CU", + "founding": 0, + "iataPrefixAccounting": "136", + "nameAirline": "Cubana", + "nameCountry": "Cuba", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 1.8, + "airlineId": 365, + "callsign": "NORSTAR", + "codeHub": "OSL", + "codeIataAirline": "DU", + "codeIcaoAirline": "NLH", + "codeIso2Country": "NO", + "founding": 2012, + "iataPrefixAccounting": "", + "nameAirline": "Norwegian Long Haul", + "nameCountry": "Norway", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.3, + "airlineId": 366, + "callsign": "DOLOMITI", + "codeHub": "VRN", + "codeIataAirline": "EN", + "codeIcaoAirline": "DLA", + "codeIso2Country": "IT", + "founding": 1989, + "iataPrefixAccounting": "101", + "nameAirline": "AIR DOLOMITI S.p.A. LINEE AEREE REGIONALI EUROPEE", + "nameCountry": "Italy", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.1, + "airlineId": 367, + "callsign": "DARWIN", + "codeHub": "LUG", + "codeIataAirline": "F7", + "codeIcaoAirline": "DWT", + "codeIso2Country": "CH", + "founding": 2003, + "iataPrefixAccounting": "33", + "nameAirline": "Darwin Airline SA", + "nameCountry": "Switzerland", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 20.8, + "airlineId": 368, + "callsign": "CARGO", + "codeHub": "JNB", + "codeIataAirline": "FA", + "codeIcaoAirline": "SFR", + "codeIso2Country": "ZA", + "founding": 1970, + "iataPrefixAccounting": "640", + "nameAirline": "Safair", + "nameCountry": "South Africa", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled,charter,division" + }, + { + "ageFleet": 18.7, + "airlineId": 369, + "callsign": "GREENLAND", + "codeHub": "SFJ", + "codeIataAirline": "GL", + "codeIcaoAirline": "GRL", + "codeIso2Country": "DK", + "founding": 2002, + "iataPrefixAccounting": "631", + "nameAirline": "Air Greenland A/S", + "nameCountry": "Denmark", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.2, + "airlineId": 370, + "callsign": "SEYCHELLES", + "codeHub": "SEZ", + "codeIataAirline": "HM", + "codeIcaoAirline": "SEY", + "codeIso2Country": "SC", + "founding": 1979, + "iataPrefixAccounting": "61", + "nameAirline": "Air Seychelles", + "nameCountry": "Seychelles", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.7, + "airlineId": 371, + "callsign": "TULCA", + "codeHub": "CPT", + "codeIataAirline": "JE", + "codeIcaoAirline": "MNO", + "codeIso2Country": "ZA", + "founding": 2006, + "iataPrefixAccounting": "472", + "nameAirline": "Mango Airlines (SOC) Ltd trading as MANGO", + "nameCountry": "South Africa", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.7, + "airlineId": 372, + "callsign": "FUJI DREAM", + "codeHub": "FUK", + "codeIataAirline": "JH", + "codeIcaoAirline": "FDA", + "codeIso2Country": "JP", + "founding": 2009, + "iataPrefixAccounting": "", + "nameAirline": "Fuji Dream Airlines Co. Ltd", + "nameCountry": "Japan", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.3, + "airlineId": 373, + "callsign": "JADE AIR", + "codeHub": "RGN", + "codeIataAirline": "K7", + "codeIcaoAirline": "KBZ", + "codeIso2Country": "MM", + "founding": 2010, + "iataPrefixAccounting": "314", + "nameAirline": "Air KBZ Ltd.", + "nameCountry": "Myanmar", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.4, + "airlineId": 374, + "callsign": "AIR MADAGASCAR", + "codeHub": "TNR", + "codeIataAirline": "MD", + "codeIcaoAirline": "MDG", + "codeIso2Country": "MG", + "founding": 1962, + "iataPrefixAccounting": "258", + "nameAirline": "Air Madagascar", + "nameCountry": "Madagascar", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.6, + "airlineId": 375, + "callsign": "NORDLAND", + "codeHub": "SVO", + "codeIataAirline": "N4", + "codeIcaoAirline": "NWS", + "codeIso2Country": "RU", + "founding": 2008, + "iataPrefixAccounting": "216", + "nameAirline": "LLC \"NORD WIND\"", + "nameCountry": "Russia", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.1, + "airlineId": 376, + "callsign": "SKYPOOL", + "codeHub": "WAW", + "codeIataAirline": "P7", + "codeIcaoAirline": "LLP", + "codeIso2Country": "PL", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "Small Planet Airlines Polska", + "nameCountry": "Poland", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 27.7, + "airlineId": 377, + "callsign": "PERUVIAN", + "codeHub": "LIM", + "codeIataAirline": "P9", + "codeIcaoAirline": "PVN", + "codeIso2Country": "PE", + "founding": 2009, + "iataPrefixAccounting": "602", + "nameAirline": "Peruvian Airlines", + "nameCountry": "Peru", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.3, + "airlineId": 378, + "callsign": "PAKBLUE", + "codeHub": "KHI", + "codeIataAirline": "PA", + "codeIcaoAirline": "ABQ", + "codeIso2Country": "PK", + "founding": 2004, + "iataPrefixAccounting": "84", + "nameAirline": "Airblue", + "nameCountry": "Pakistan", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.6, + "airlineId": 379, + "callsign": "PRECISION AIR", + "codeHub": "DAR", + "codeIataAirline": "PW", + "codeIcaoAirline": "PRF", + "codeIso2Country": "TZ", + "founding": 1991, + "iataPrefixAccounting": "31", + "nameAirline": "Precision Air", + "nameCountry": "Tanzania", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.4, + "airlineId": 380, + "callsign": "ISLAND AVIATION", + "codeHub": "MLE", + "codeIataAirline": "Q2", + "codeIcaoAirline": "DQA", + "codeIso2Country": "MV", + "founding": 2008, + "iataPrefixAccounting": "986", + "nameAirline": "Island Aviation Services Ltd.", + "nameCountry": "Maldives", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 26.0, + "airlineId": 381, + "callsign": "LASER", + "codeHub": "CCS", + "codeIataAirline": "QL", + "codeIcaoAirline": "LER", + "codeIso2Country": "VE", + "founding": 1993, + "iataPrefixAccounting": "722", + "nameAirline": "LASER Airlines", + "nameCountry": "Venezuela", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 1.2, + "airlineId": 382, + "callsign": "SKY LEGEND", + "codeHub": "TAO", + "codeIataAirline": "QW", + "codeIcaoAirline": "QDA", + "codeIso2Country": "CN", + "founding": 2014, + "iataPrefixAccounting": "912", + "nameAirline": "Qingdao Airlines Co., Ltd", + "nameCountry": "China", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.5, + "airlineId": 383, + "callsign": "AIR YAKUTIA", + "codeHub": "YKS", + "codeIataAirline": "R3", + "codeIcaoAirline": "SYL", + "codeIso2Country": "RU", + "founding": 2003, + "iataPrefixAccounting": "849", + "nameAirline": "Joint Stock Company Aircompany \"Yakutia\"", + "nameCountry": "Russia", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.1, + "airlineId": 384, + "callsign": "TWINJET", + "codeHub": "MRS", + "codeIataAirline": "T7", + "codeIcaoAirline": "TJT", + "codeIso2Country": "FR", + "founding": 2001, + "iataPrefixAccounting": "294", + "nameAirline": "Twin Jet", + "nameCountry": "France", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.8, + "airlineId": 385, + "callsign": "SCOOTER", + "codeHub": "SIN", + "codeIataAirline": "TR", + "codeIcaoAirline": "TGW", + "codeIso2Country": "SG", + "founding": 2012, + "iataPrefixAccounting": "668", + "nameAirline": "Scoot Private Limited", + "nameCountry": "Singapore", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 1.1, + "airlineId": 386, + "callsign": "VISTARA", + "codeHub": "DEL", + "codeIataAirline": "UK", + "codeIcaoAirline": "VTI", + "codeIso2Country": "IN", + "founding": 2014, + "iataPrefixAccounting": "228", + "nameAirline": "TATA SIA AIRLINES LTD dba VISTARA", + "nameCountry": "India", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 23.7, + "airlineId": 387, + "callsign": "UNI-TOP", + "codeHub": "WUH", + "codeIataAirline": "UW", + "codeIcaoAirline": "UTP", + "codeIso2Country": "CN", + "founding": 2009, + "iataPrefixAccounting": "", + "nameAirline": "Uni-Top Airlines", + "nameCountry": "China", + "sizeAirline": 10, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 21.1, + "airlineId": 388, + "callsign": "BUSRE", + "codeHub": "LIM", + "codeIataAirline": "W4", + "codeIcaoAirline": "LCB", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "107", + "nameAirline": "LC Busre SAC", + "nameCountry": "Peru", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.6, + "airlineId": 389, + "callsign": "CORSICA", + "codeHub": "AJA", + "codeIataAirline": "XK", + "codeIcaoAirline": "CCM", + "codeIso2Country": "FR", + "founding": 2010, + "iataPrefixAccounting": "146", + "nameAirline": "Air Corsica", + "nameCountry": "France", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.5, + "airlineId": 390, + "callsign": "BORA JET", + "codeHub": "IST", + "codeIataAirline": "YB", + "codeIcaoAirline": "BRJ", + "codeIso2Country": "TR", + "founding": 2009, + "iataPrefixAccounting": "350", + "nameAirline": "BoraJet Havacilik Tasimacilik Ucak Bakim Onarim Ve Ticaret A.S.", + "nameCountry": "Turkey", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.7, + "airlineId": 391, + "callsign": "AIGLE AZUR", + "codeHub": "ORY", + "codeIataAirline": "ZI", + "codeIcaoAirline": "AAF", + "codeIso2Country": "FR", + "founding": 1993, + "iataPrefixAccounting": "439", + "nameAirline": "Aigle Azur", + "nameCountry": "France", + "sizeAirline": 10, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.6, + "airlineId": 392, + "callsign": "AEROGAL", + "codeHub": "UIO", + "codeIataAirline": "2K", + "codeIcaoAirline": "GLG", + "codeIso2Country": "EC", + "founding": 2014, + "iataPrefixAccounting": "547", + "nameAirline": "Aerolineas Galapagos S.A. Aerogal", + "nameCountry": "Ecuador", + "sizeAirline": 9, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.4, + "airlineId": 393, + "callsign": "ARCHANGELSK AIR", + "codeHub": "ARH", + "codeIataAirline": "5N", + "codeIcaoAirline": "AUL", + "codeIso2Country": "RU", + "founding": 2009, + "iataPrefixAccounting": "316", + "nameAirline": "JSC Nordavia-RA", + "nameCountry": "Russia", + "sizeAirline": 9, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 3.5, + "airlineId": 394, + "callsign": "STARFLYER", + "codeHub": "HND", + "codeIataAirline": "7G", + "codeIcaoAirline": "SFJ", + "codeIso2Country": "JP", + "founding": 2005, + "iataPrefixAccounting": "", + "nameAirline": "Star Flyer Inc.", + "nameCountry": "Japan", + "sizeAirline": 9, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.5, + "airlineId": 395, + "callsign": "INSELAIR", + "codeHub": "CUR", + "codeIataAirline": "7I", + "codeIcaoAirline": "INC", + "codeIso2Country": "CW", + "founding": 2006, + "iataPrefixAccounting": "958", + "nameAirline": "InselAir", + "nameCountry": "Curacao", + "sizeAirline": 9, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.0, + "airlineId": 396, + "callsign": "CARGO KING", + "codeHub": "SHA", + "codeIataAirline": "CK", + "codeIcaoAirline": "CKK", + "codeIso2Country": "CN", + "founding": 1998, + "iataPrefixAccounting": "112", + "nameAirline": "China Cargo Airlines", + "nameCountry": "China", + "sizeAirline": 9, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 8.4, + "airlineId": 397, + "callsign": "FIJI", + "codeHub": "NAN", + "codeIataAirline": "FJ", + "codeIcaoAirline": "FJI", + "codeIso2Country": "FJ", + "founding": 2013, + "iataPrefixAccounting": "260", + "nameAirline": "Fiji Airways", + "nameCountry": "Fiji", + "sizeAirline": 9, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.1, + "airlineId": 398, + "callsign": "IBEX", + "codeHub": "SDJ", + "codeIataAirline": "FW", + "codeIcaoAirline": "IBX", + "codeIso2Country": "JP", + "founding": 1999, + "iataPrefixAccounting": "", + "nameAirline": "IBEX Airlines Co., Ltd.", + "nameCountry": "Japan", + "sizeAirline": 9, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.9, + "airlineId": 399, + "callsign": "TABAN AIR", + "codeHub": "MHD", + "codeIataAirline": "HH", + "codeIcaoAirline": "TBN", + "codeIso2Country": "IR", + "founding": 2005, + "iataPrefixAccounting": "283", + "nameAirline": "Taban Airlines", + "nameCountry": "Iran", + "sizeAirline": 9, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 1.7, + "airlineId": 400, + "callsign": "VANILLA", + "codeHub": "NRT", + "codeIataAirline": "JW", + "codeIcaoAirline": "VNL", + "codeIso2Country": "JP", + "founding": 2013, + "iataPrefixAccounting": "842", + "nameAirline": "Vanilla Air Inc.", + "nameCountry": "Japan", + "sizeAirline": 9, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.5, + "airlineId": 401, + "callsign": "BINTER", + "codeHub": "LPA", + "codeIataAirline": "NT", + "codeIcaoAirline": "IBB", + "codeIso2Country": "ES", + "founding": 1988, + "iataPrefixAccounting": "474", + "nameAirline": "Binter Canarias", + "nameCountry": "Spain", + "sizeAirline": 9, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 23.2, + "airlineId": 402, + "callsign": "NAFT", + "codeHub": "AWZ", + "codeIataAirline": "NV", + "codeIcaoAirline": "IRG", + "codeIso2Country": "IR", + "founding": 1992, + "iataPrefixAccounting": "346", + "nameAirline": "Iranian Naft Airlines", + "nameCountry": "Iran", + "sizeAirline": 9, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.7, + "airlineId": 403, + "callsign": "BUDDHA AIR", + "codeHub": "KTM", + "codeIataAirline": "U4", + "codeIcaoAirline": "BHA", + "codeIso2Country": "NP", + "founding": 1997, + "iataPrefixAccounting": "", + "nameAirline": "Buddha Air Ltd.", + "nameCountry": "Nepal", + "sizeAirline": 9, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.0, + "airlineId": 404, + "callsign": "REUNION", + "codeHub": "RUN", + "codeIataAirline": "UU", + "codeIcaoAirline": "REU", + "codeIso2Country": "RE", + "founding": 1987, + "iataPrefixAccounting": "760", + "nameAirline": "Air Austral", + "nameCountry": "Reunion", + "sizeAirline": 9, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.1, + "airlineId": 405, + "callsign": "RWANDAIR", + "codeHub": "KGL", + "codeIataAirline": "WB", + "codeIcaoAirline": "RWD", + "codeIso2Country": "RW", + "founding": 2002, + "iataPrefixAccounting": "459", + "nameAirline": "RwandAir", + "nameCountry": "Rwanda", + "sizeAirline": 9, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.6, + "airlineId": 406, + "callsign": "EDELWEISS", + "codeHub": "ZRH", + "codeIataAirline": "WK", + "codeIcaoAirline": "EDW", + "codeIso2Country": "CH", + "founding": 1995, + "iataPrefixAccounting": "945", + "nameAirline": "Edelweiss Air", + "nameCountry": "Switzerland", + "sizeAirline": 9, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 17.3, + "airlineId": 407, + "callsign": "AMAZONAS", + "codeHub": "TDD", + "codeIataAirline": "Z8", + "codeIcaoAirline": "AZN", + "codeIso2Country": "BO", + "founding": 1998, + "iataPrefixAccounting": "464", + "nameAirline": "Compania de Servicios de Transporte Aereo Amaszonas - Amaszonas S.A", + "nameCountry": "Bolivia", + "sizeAirline": 9, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.7, + "airlineId": 408, + "callsign": "AIR URGA", + "codeHub": "KWG", + "codeIataAirline": "3N", + "codeIcaoAirline": "URG", + "codeIso2Country": "UA", + "founding": 1993, + "iataPrefixAccounting": "746", + "nameAirline": "Air Urga", + "nameCountry": "Ukraine", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 23.0, + "airlineId": 409, + "callsign": "UNITED BANGLADESH", + "codeHub": "DAC", + "codeIataAirline": "4H", + "codeIcaoAirline": "UBD", + "codeIso2Country": "BD", + "founding": 2005, + "iataPrefixAccounting": "584", + "nameAirline": "United Airways Bangladesh Ltd", + "nameCountry": "Bangladesh", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.3, + "airlineId": 410, + "callsign": "BELAIR", + "codeHub": "ZRH", + "codeIataAirline": "4T", + "codeIcaoAirline": "BHP", + "codeIso2Country": "CH", + "founding": 2001, + "iataPrefixAccounting": "", + "nameAirline": "Belair Airlines Ltd.", + "nameCountry": "Switzerland", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.5, + "airlineId": 411, + "callsign": "BLUE PANORAMA AIRLINES", + "codeHub": "FCO", + "codeIataAirline": "BV", + "codeIcaoAirline": "BPA", + "codeIso2Country": "IT", + "founding": 1998, + "iataPrefixAccounting": "4", + "nameAirline": "Blue Panorama", + "nameCountry": "Italy", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.6, + "airlineId": 412, + "callsign": "FAR EASTERN", + "codeHub": "TSA", + "codeIataAirline": "FE", + "codeIcaoAirline": "FEA", + "codeIso2Country": "TW", + "founding": 1957, + "iataPrefixAccounting": "436", + "nameAirline": "FAR EASTERN AIR TRANSPORT CORP.", + "nameCountry": "Taiwan", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 3.9, + "airlineId": 413, + "callsign": "STRAIT AIR", + "codeHub": "FOC", + "codeIataAirline": "FU", + "codeIcaoAirline": "FZA", + "codeIso2Country": "CN", + "founding": 2012, + "iataPrefixAccounting": "666", + "nameAirline": "Fuzhou Airlines", + "nameCountry": "China", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.4, + "airlineId": 414, + "callsign": "SPRAY", + "codeHub": "NNG", + "codeIataAirline": "GX", + "codeIcaoAirline": "CBG", + "codeIso2Country": "CN", + "founding": 2015, + "iataPrefixAccounting": "872", + "nameAirline": "Guangxi Beibu Gulf Airlines Co., Ltd.", + "nameCountry": "China", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.0, + "airlineId": 415, + "callsign": "COTE D'IVOIRE", + "codeHub": "ABJ", + "codeIataAirline": "HF", + "codeIcaoAirline": "VRE", + "codeIso2Country": "CI", + "founding": 2012, + "iataPrefixAccounting": "483", + "nameAirline": "Air Cote D'Ivoire", + "nameCountry": "Ivory Coast", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.2, + "airlineId": 416, + "callsign": "KRASJET", + "codeHub": "KJA", + "codeIataAirline": "IK", + "codeIcaoAirline": "KAR", + "codeIso2Country": "RU", + "founding": 1993, + "iataPrefixAccounting": "770", + "nameAirline": "LLC \"IKAR\"", + "nameCountry": "Russia", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 1.9, + "airlineId": 417, + "callsign": "SMART CAT", + "codeHub": "TPE", + "codeIataAirline": "IT", + "codeIcaoAirline": "TTW", + "codeIso2Country": "TW", + "founding": 2014, + "iataPrefixAccounting": "608", + "nameAirline": "Tigerair Taiwan Co. Ltd", + "nameCountry": "Taiwan", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.3, + "airlineId": 418, + "callsign": "ARKIA", + "codeHub": "TLV", + "codeIataAirline": "IZ", + "codeIcaoAirline": "AIZ", + "codeIso2Country": "IL", + "founding": 1950, + "iataPrefixAccounting": "238", + "nameAirline": "Arkia Israeli Airlines", + "nameCountry": "Israel", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.7, + "airlineId": 419, + "callsign": "AIR MALTA", + "codeHub": "MLA", + "codeIataAirline": "KM", + "codeIcaoAirline": "AMC", + "codeIso2Country": "MT", + "founding": 1973, + "iataPrefixAccounting": "643", + "nameAirline": "Air Malta", + "nameCountry": "Malta", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.0, + "airlineId": 420, + "callsign": "AIRMERCI", + "codeHub": "FCO", + "codeIataAirline": "M4", + "codeIcaoAirline": "MSA", + "codeIso2Country": "IT", + "founding": 1980, + "iataPrefixAccounting": "", + "nameAirline": "Mistral Air", + "nameCountry": "Italy", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.4, + "airlineId": 421, + "callsign": "JAI OCEAN", + "codeHub": "OKA", + "codeIataAirline": "NU", + "codeIcaoAirline": "JTA", + "codeIso2Country": "JP", + "founding": 1967, + "iataPrefixAccounting": "353", + "nameAirline": "Japan Transocean Air Co. Ltd.", + "nameCountry": "Japan", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 23.0, + "airlineId": 422, + "callsign": "SPEEDAIR", + "codeHub": "YYT", + "codeIataAirline": "PB", + "codeIcaoAirline": "SPR", + "codeIso2Country": "CA", + "founding": 1972, + "iataPrefixAccounting": "967", + "nameAirline": "Provincial Airlines", + "nameCountry": "Canada", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.2, + "airlineId": 423, + "callsign": "ROYAL FLIGHT", + "codeHub": "VKO", + "codeIataAirline": "RL", + "codeIcaoAirline": "ABG", + "codeIso2Country": "RU", + "founding": 2014, + "iataPrefixAccounting": "", + "nameAirline": "JSC Royal Flight Airlines", + "nameCountry": "Russia", + "sizeAirline": 8, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 26.2, + "airlineId": 424, + "callsign": "SANTA BARBARA", + "codeHub": "MAR", + "codeIataAirline": "S3", + "codeIcaoAirline": "BBR", + "codeIso2Country": "VE", + "founding": 1995, + "iataPrefixAccounting": "249", + "nameAirline": "Santa Barbara", + "nameCountry": "Venezuela", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.3, + "airlineId": 425, + "callsign": "TOPEND", + "codeHub": "DRW", + "codeIataAirline": "TL", + "codeIcaoAirline": "ANO", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "935", + "nameAirline": "Capiteq Limited dba AIRNORTH", + "nameCountry": "Australia", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.4, + "airlineId": 426, + "callsign": "FRENCH WEST", + "codeHub": "PTP", + "codeIataAirline": "TX", + "codeIcaoAirline": "FWI", + "codeIso2Country": "FR", + "founding": 2003, + "iataPrefixAccounting": "427", + "nameAirline": "Air Caraibes", + "nameCountry": "France", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 26.6, + "airlineId": 427, + "callsign": "RUBENS", + "codeHub": "ANR", + "codeIataAirline": "VG", + "codeIcaoAirline": "VLM", + "codeIso2Country": "BE", + "founding": 1993, + "iataPrefixAccounting": "693", + "nameAirline": "VLM Airlines", + "nameCountry": "Belgium", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 20.8, + "airlineId": 428, + "callsign": "RUBY MOUNTAIN", + "codeHub": "BOI", + "codeIataAirline": "XP", + "codeIcaoAirline": "CXP", + "codeIso2Country": "UM", + "founding": 2005, + "iataPrefixAccounting": "", + "nameAirline": "Xtra Airways", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 8, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 20.4, + "airlineId": 429, + "callsign": "ZARCO", + "codeHub": "LIS", + "codeIataAirline": "YU", + "codeIcaoAirline": "MMZ", + "codeIso2Country": "PT", + "founding": 2000, + "iataPrefixAccounting": "551", + "nameAirline": "Euroatlantic Airways", + "nameCountry": "Portugal", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.2, + "airlineId": 430, + "callsign": "DNIEPRO", + "codeHub": "KBP", + "codeIataAirline": "Z6", + "codeIcaoAirline": "UDN", + "codeIso2Country": "UA", + "founding": 1992, + "iataPrefixAccounting": "181", + "nameAirline": "Dniproavia", + "nameCountry": "Ukraine", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.6, + "airlineId": 431, + "callsign": "NAYSA", + "codeHub": "LPA", + "codeIataAirline": "ZN", + "codeIcaoAirline": "NAY", + "codeIso2Country": "ES", + "founding": 1969, + "iataPrefixAccounting": "595", + "nameAirline": "Naysa", + "nameCountry": "Spain", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.2, + "airlineId": 432, + "callsign": "AIR NORTH", + "codeHub": "YXY", + "codeIataAirline": "4N", + "codeIcaoAirline": "ANT", + "codeIso2Country": "CA", + "founding": 1977, + "iataPrefixAccounting": "287", + "nameAirline": "Air North Charter and Training Ltd.", + "nameCountry": "Canada", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.4, + "airlineId": 433, + "callsign": "SKY FLYER", + "codeHub": "LIS", + "codeIataAirline": "5K", + "codeIcaoAirline": "HFY", + "codeIso2Country": "PT", + "founding": 2005, + "iataPrefixAccounting": "102", + "nameAirline": "Hi Fly", + "nameCountry": "Portugal", + "sizeAirline": 7, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 8.2, + "airlineId": 434, + "callsign": "BLUESCAN", + "codeHub": "ARN", + "codeIataAirline": "6B", + "codeIcaoAirline": "BLX", + "codeIso2Country": "SE", + "founding": 2006, + "iataPrefixAccounting": "951", + "nameAirline": "TUIfly Nordic AB", + "nameCountry": "Sweden", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 19.3, + "airlineId": 435, + "callsign": "TRANSNUSA", + "codeHub": "DPS", + "codeIataAirline": "8B", + "codeIcaoAirline": "TNU", + "codeIso2Country": "ID", + "founding": 2005, + "iataPrefixAccounting": "", + "nameAirline": "PT. Transnusa Aviation Mandiri", + "nameCountry": "Indonesia", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.8, + "airlineId": 436, + "callsign": "INSEL ARUBA", + "codeHub": "AUA", + "codeIataAirline": "8I", + "codeIcaoAirline": "NLU", + "codeIso2Country": "AW", + "founding": 2012, + "iataPrefixAccounting": "778", + "nameAirline": "InselAir Aruba N.V. dba InselAir Aruba", + "nameCountry": "Aruba", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 27.3, + "airlineId": 437, + "callsign": "PASCO", + "codeHub": "YVR", + "codeIataAirline": "8P", + "codeIcaoAirline": "PCO", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "905", + "nameAirline": "Pacific Coastal Airlines Limited", + "nameCountry": "Canada", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.6, + "airlineId": 438, + "callsign": "DANACO", + "codeHub": "ABV", + "codeIataAirline": "9J", + "codeIcaoAirline": "DAN", + "codeIso2Country": "NG", + "founding": 2007, + "iataPrefixAccounting": "234", + "nameAirline": "Dana Airlines Limited", + "nameCountry": "Nigeria", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.5, + "airlineId": 439, + "callsign": "CARGO TURK", + "codeHub": "IST", + "codeIataAirline": "9T*", + "codeIcaoAirline": "RUN", + "codeIso2Country": "TR", + "founding": 2011, + "iataPrefixAccounting": "556", + "nameAirline": "myCARGO Airlines", + "nameCountry": "Turkey", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 14.6, + "airlineId": 440, + "callsign": "AIR MOLDOVA", + "codeHub": "KIV", + "codeIataAirline": "9U", + "codeIcaoAirline": "MLD", + "codeIso2Country": "MD", + "founding": 1992, + "iataPrefixAccounting": "572", + "nameAirline": "Air Moldova", + "nameCountry": "Moldova", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.2, + "airlineId": 441, + "callsign": "MANDARIN AIR", + "codeHub": "RMQ", + "codeIataAirline": "AE", + "codeIcaoAirline": "MDA", + "codeIso2Country": "TW", + "founding": 1991, + "iataPrefixAccounting": "803", + "nameAirline": "Mandarin Airlines", + "nameCountry": "Chinese Taipei", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 2.4, + "airlineId": 442, + "callsign": "TRANS JADE", + "codeHub": "CAN", + "codeIataAirline": "AQ", + "codeIcaoAirline": "JYH", + "codeIso2Country": "CN", + "founding": 2014, + "iataPrefixAccounting": "902", + "nameAirline": "Nine Air", + "nameCountry": "China", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.2, + "airlineId": 443, + "callsign": "BLUEDART", + "codeHub": "MAA", + "codeIataAirline": "BZ", + "codeIcaoAirline": "BDA", + "codeIso2Country": "IN", + "founding": 1994, + "iataPrefixAccounting": "620", + "nameAirline": "Blue Dart Aviation Ltd.", + "nameCountry": "India", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 4.4, + "airlineId": 444, + "callsign": "SENDI", + "codeHub": "KMG", + "codeIataAirline": "DR", + "codeIcaoAirline": "RLH", + "codeIso2Country": "CN", + "founding": 2013, + "iataPrefixAccounting": "299", + "nameAirline": "Ruili Airlines", + "nameCountry": "China", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.6, + "airlineId": 445, + "callsign": "FREEBIRD", + "codeHub": "IST", + "codeIataAirline": "FH", + "codeIcaoAirline": "FHY", + "codeIso2Country": "TR", + "founding": 2000, + "iataPrefixAccounting": "", + "nameAirline": "Freebird Airlines", + "nameCountry": "Turkey", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 18.2, + "airlineId": 446, + "callsign": "YEMENI", + "codeHub": "SAH", + "codeIataAirline": "IY", + "codeIcaoAirline": "IYE", + "codeIso2Country": "YE", + "founding": 1961, + "iataPrefixAccounting": "635", + "nameAirline": "Yemenia", + "nameCountry": "Yemen", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.6, + "airlineId": 447, + "callsign": "JAZEERA", + "codeHub": "KWI", + "codeIataAirline": "J9", + "codeIcaoAirline": "JZR", + "codeIso2Country": "KW", + "founding": 2004, + "iataPrefixAccounting": "486", + "nameAirline": "Jazeera Airways", + "nameCountry": "Kuwait", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.5, + "airlineId": 448, + "callsign": "ASKY", + "codeHub": "LFW", + "codeIataAirline": "KP", + "codeIcaoAirline": "SKK", + "codeIso2Country": "TG", + "founding": 2008, + "iataPrefixAccounting": "32", + "nameAirline": "Compagnie Aerienne ASKY dba ASKY", + "nameCountry": "Togo", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.5, + "airlineId": 449, + "callsign": "BISCAYNE", + "codeHub": "MIA", + "codeIataAirline": "LL", + "codeIcaoAirline": "BSK", + "codeIso2Country": "US", + "founding": 1990, + "iataPrefixAccounting": "", + "nameAirline": "Miami Air International", + "nameCountry": "United States", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 4.6, + "airlineId": 450, + "callsign": "LIBAIR", + "codeHub": "TIP", + "codeIataAirline": "LN", + "codeIcaoAirline": "LAA", + "codeIso2Country": "LY", + "founding": 1964, + "iataPrefixAccounting": "148", + "nameAirline": "Libyan Airlines", + "nameCountry": "Libya", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 20.4, + "airlineId": 451, + "callsign": "BLACK SEA", + "codeHub": "IST", + "codeIataAirline": "MB", + "codeIcaoAirline": "MNB", + "codeIso2Country": "TR", + "founding": 1997, + "iataPrefixAccounting": "716", + "nameAirline": "MNG Airlines Cargo", + "nameCountry": "Turkey", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 21.8, + "airlineId": 452, + "callsign": "FAXI", + "codeHub": "RKV", + "codeIataAirline": "NY", + "codeIcaoAirline": "FXI", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "882", + "nameAirline": "Air Iceland", + "nameCountry": "Iceland", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 26.6, + "airlineId": 453, + "callsign": "AEROANDES", + "codeHub": "SLA", + "codeIataAirline": "OY", + "codeIcaoAirline": "ANS", + "codeIso2Country": "AR", + "founding": 2006, + "iataPrefixAccounting": "650", + "nameAirline": "Andes Lineas Aereas", + "nameCountry": "Argentina", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 27.1, + "airlineId": 454, + "callsign": "TRANS-CONGO", + "codeHub": "PNR", + "codeIataAirline": "Q8", + "codeIcaoAirline": "TSG", + "codeIso2Country": "CG", + "founding": 1994, + "iataPrefixAccounting": "223", + "nameAirline": "Trans Air Congo (TAC)", + "nameCountry": "Congo", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 26.0, + "airlineId": 455, + "callsign": "JORDAN AVIATION", + "codeHub": "AMM", + "codeIataAirline": "R5", + "codeIcaoAirline": "JAV", + "codeIso2Country": "JO", + "founding": 2000, + "iataPrefixAccounting": "151", + "nameAirline": "Jordan Aviation", + "nameCountry": "Jordan", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.8, + "airlineId": 456, + "callsign": "ASERCA", + "codeHub": "CCS", + "codeIataAirline": "R7", + "codeIcaoAirline": "OCA", + "codeIso2Country": "VE", + "founding": 1980, + "iataPrefixAccounting": "717", + "nameAirline": "Aserca Airlines, C.A.", + "nameCountry": "Venezuela", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.7, + "airlineId": 457, + "callsign": "AIR AZORES", + "codeHub": "PDL", + "codeIataAirline": "S4", + "codeIcaoAirline": "RZO", + "codeIso2Country": "PT", + "founding": 1990, + "iataPrefixAccounting": "331", + "nameAirline": "SATA Internacional", + "nameCountry": "Portugal", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.2, + "airlineId": 458, + "callsign": "AIR CAIRO", + "codeHub": "CAI", + "codeIataAirline": "SM", + "codeIcaoAirline": "MSC", + "codeIso2Country": "EG", + "founding": 2003, + "iataPrefixAccounting": "381", + "nameAirline": "Air Cairo", + "nameCountry": "Egypt", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.8, + "airlineId": 459, + "callsign": "CORSAIR", + "codeHub": "ORY", + "codeIataAirline": "SS", + "codeIcaoAirline": "CRL", + "codeIso2Country": "FR", + "founding": 1991, + "iataPrefixAccounting": "923", + "nameAirline": "Corsair International", + "nameCountry": "France", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 20.1, + "airlineId": 460, + "callsign": "TAILWIND", + "codeHub": "SAW", + "codeIataAirline": "TI", + "codeIcaoAirline": "TWI", + "codeIso2Country": "TR", + "founding": 2008, + "iataPrefixAccounting": "768", + "nameAirline": "Tailwind Hava Yollari A.S.", + "nameCountry": "Turkey", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 19.5, + "airlineId": 461, + "callsign": "MOZAMBIQUE", + "codeHub": "MPM", + "codeIataAirline": "TM", + "codeIcaoAirline": "LAM", + "codeIso2Country": "MZ", + "founding": 1933, + "iataPrefixAccounting": "68", + "nameAirline": "LAM", + "nameCountry": "Mozambique", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.6, + "airlineId": 462, + "callsign": "CHALLENGE CARGO", + "codeHub": "MIA", + "codeIataAirline": "WE", + "codeIcaoAirline": "CWC", + "codeIso2Country": "UM", + "founding": 1985, + "iataPrefixAccounting": "307", + "nameAirline": "Centurion Cargo", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 5.9, + "airlineId": 463, + "callsign": "YOUNG SKY", + "codeHub": "LIS", + "codeIataAirline": "WI", + "codeIcaoAirline": "WHT", + "codeIso2Country": "PT", + "founding": 2005, + "iataPrefixAccounting": "97", + "nameAirline": "White coloured by you", + "nameCountry": "Portugal", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 3.6, + "airlineId": 464, + "callsign": "WOW AIR", + "codeHub": "", + "codeIataAirline": "WW", + "codeIcaoAirline": "X9", + "codeIso2Country": "IS", + "founding": 2012, + "iataPrefixAccounting": "", + "nameAirline": "WOW air", + "nameCountry": "Iceland", + "sizeAirline": 7, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 28.0, + "airlineId": 465, + "callsign": "XPRESS", + "codeHub": "UPG", + "codeIataAirline": "XN", + "codeIcaoAirline": "XAR", + "codeIso2Country": "ID", + "founding": 2003, + "iataPrefixAccounting": "", + "nameAirline": "PT. Travel Express Aviation Service dba Xpress Air", + "nameCountry": "Indonesia", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.6, + "airlineId": 466, + "callsign": "YANAIR", + "codeHub": "IEV", + "codeIataAirline": "YE", + "codeIcaoAirline": "ANR", + "codeIso2Country": "UA", + "founding": 2013, + "iataPrefixAccounting": "206", + "nameAirline": "Yan Air Ltd", + "nameCountry": "Ukraine", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.0, + "airlineId": 467, + "callsign": "BEKAIR", + "codeHub": "URA", + "codeIataAirline": "Z9", + "codeIcaoAirline": "BEK", + "codeIso2Country": "KZ", + "founding": 1999, + "iataPrefixAccounting": "183", + "nameAirline": "JSC \"Bek Air\"", + "nameCountry": "Kazakhstan", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.2, + "airlineId": 468, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2B", + "codeIcaoAirline": "UWB", + "codeIso2Country": "RU", + "founding": 2015, + "iataPrefixAccounting": "", + "nameAirline": "UVT Aero", + "nameCountry": "Russia", + "sizeAirline": 6, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 27.4, + "airlineId": 469, + "callsign": "DYNAMIC AIR", + "codeHub": "GSO", + "codeIataAirline": "2D", + "codeIcaoAirline": "DYA", + "codeIso2Country": "US", + "founding": 2009, + "iataPrefixAccounting": "54", + "nameAirline": "Dynamic Airways, LLC", + "nameCountry": "United States", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 20.4, + "airlineId": 470, + "callsign": "SWIFT TANGO", + "codeHub": "NBO", + "codeIataAirline": "5H", + "codeIcaoAirline": "FFV", + "codeIso2Country": "KE", + "founding": 2006, + "iataPrefixAccounting": "", + "nameAirline": "Fly540", + "nameCountry": "Kenya", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.7, + "airlineId": 471, + "callsign": "JETBIRD", + "codeHub": "RIX", + "codeIataAirline": "6F", + "codeIcaoAirline": "PRW", + "codeIso2Country": "LV", + "founding": 2014, + "iataPrefixAccounting": "", + "nameAirline": "Primera Air Nordic", + "nameCountry": "Latvia", + "sizeAirline": 6, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 32.8, + "airlineId": 472, + "callsign": "AEROUNION", + "codeHub": "MEX", + "codeIataAirline": "6R", + "codeIcaoAirline": "TNO", + "codeIso2Country": "MX", + "founding": 2001, + "iataPrefixAccounting": "873", + "nameAirline": "AeroUnion", + "nameCountry": "Mexico", + "sizeAirline": 6, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 7.9, + "airlineId": 473, + "callsign": "SILK WEST", + "codeHub": "GYD", + "codeIataAirline": "7L", + "codeIcaoAirline": "AZG", + "codeIso2Country": "AZ", + "founding": 0, + "iataPrefixAccounting": "501", + "nameAirline": "Silk Way West Airlines", + "nameCountry": "Azerbaijan", + "sizeAirline": 6, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 27.4, + "airlineId": 474, + "callsign": "PAWA", + "codeHub": "SDQ", + "codeIataAirline": "7N", + "codeIcaoAirline": "PWD", + "codeIso2Country": "DO", + "founding": 2002, + "iataPrefixAccounting": "185", + "nameAirline": "Pan Am World Airways Dominicana S.A", + "nameCountry": "Dominican Republic", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.9, + "airlineId": 475, + "callsign": "AFRIQIYAH", + "codeHub": "TIP", + "codeIataAirline": "8U", + "codeIcaoAirline": "AAW", + "codeIso2Country": "LY", + "founding": 2001, + "iataPrefixAccounting": "546", + "nameAirline": "Afriqiyah Airways", + "nameCountry": "Libya", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 23.8, + "airlineId": 476, + "callsign": "SEABORNE", + "codeHub": "SPB", + "codeIataAirline": "BB", + "codeIcaoAirline": "SBS", + "codeIso2Country": "UM", + "founding": 1992, + "iataPrefixAccounting": "376", + "nameAirline": "Seaborne Airlines", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.6, + "airlineId": 477, + "callsign": "BLUE CARGO", + "codeHub": "KEF", + "codeIataAirline": "BF", + "codeIcaoAirline": "BBD", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "290", + "nameAirline": "Bluebird Cargo", + "nameCountry": "Iceland", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 18.8, + "airlineId": 478, + "callsign": "BOTSWANA", + "codeHub": "GBE", + "codeIataAirline": "BP", + "codeIcaoAirline": "BOT", + "codeIso2Country": "BW", + "founding": 1972, + "iataPrefixAccounting": "636", + "nameAirline": "Air Botswana", + "nameCountry": "Botswana", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.1, + "airlineId": 479, + "callsign": "CHALLAIR", + "codeHub": "CFR", + "codeIataAirline": "CE", + "codeIcaoAirline": "CLG", + "codeIso2Country": "FR", + "founding": 1986, + "iataPrefixAccounting": "980", + "nameAirline": "Chalair Aviation", + "nameCountry": "France", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.1, + "airlineId": 480, + "callsign": "SEVERSTAL", + "codeHub": "CEE", + "codeIataAirline": "D2", + "codeIcaoAirline": "SSF", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "103", + "nameAirline": "Severstal Aircompany Ltd", + "nameCountry": "Russia", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 17.4, + "airlineId": 481, + "callsign": "EMPIRE AIR", + "codeHub": "GEG", + "codeIataAirline": "EM", + "codeIcaoAirline": "CFS", + "codeIso2Country": "UM", + "founding": 1977, + "iataPrefixAccounting": "464", + "nameAirline": "Empire Airlines", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.7, + "airlineId": 482, + "callsign": "AYLINE", + "codeHub": "GCI", + "codeIataAirline": "GR", + "codeIcaoAirline": "AUR", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "924", + "nameAirline": "Aurigny Air Services Limited", + "nameCountry": "United Kingdom", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.6, + "airlineId": 483, + "callsign": "ARIYA", + "codeHub": "MAA", + "codeIataAirline": "I5", + "codeIcaoAirline": "IAD", + "codeIso2Country": "IN", + "founding": 2014, + "iataPrefixAccounting": "", + "nameAirline": "Air Asia (India) Private Limited", + "nameCountry": "India", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.4, + "airlineId": 484, + "callsign": "", + "codeHub": "BZV", + "codeIataAirline": "LC", + "codeIcaoAirline": "", + "codeIso2Country": "GQ", + "founding": 2011, + "iataPrefixAccounting": "753", + "nameAirline": "Equatorial Congo Airlines (ECAIR)", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 27.7, + "airlineId": 485, + "callsign": "KAMGAR", + "codeHub": "KBL", + "codeIataAirline": "RQ", + "codeIcaoAirline": "KMF", + "codeIso2Country": "AF", + "founding": 2003, + "iataPrefixAccounting": "384", + "nameAirline": "Kam Air", + "nameCountry": "Afghanistan", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.4, + "airlineId": 486, + "callsign": "SUDANAIR", + "codeHub": "KRT", + "codeIataAirline": "SD", + "codeIcaoAirline": "SUD", + "codeIso2Country": "SD", + "founding": 1946, + "iataPrefixAccounting": "200", + "nameAirline": "Sudan Airways Co. Ltd.", + "nameCountry": "Sudan", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.1, + "airlineId": 487, + "callsign": "BLUE ISLANDS", + "codeHub": "JER", + "codeIataAirline": "SI", + "codeIcaoAirline": "BCI", + "codeIso2Country": "GB", + "founding": 1999, + "iataPrefixAccounting": "821", + "nameAirline": "Blue Islands Limited", + "nameCountry": "United Kingdom", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.5, + "airlineId": 488, + "callsign": "SATA", + "codeHub": "PDL", + "codeIataAirline": "SP", + "codeIcaoAirline": "SAT", + "codeIso2Country": "PT", + "founding": 1941, + "iataPrefixAccounting": "737", + "nameAirline": "SATA Air Acores", + "nameCountry": "Portugal", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.6, + "airlineId": 489, + "callsign": "SOMON AIR", + "codeHub": "DYU", + "codeIataAirline": "SZ", + "codeIcaoAirline": "SMR", + "codeIso2Country": "TJ", + "founding": 2006, + "iataPrefixAccounting": "413", + "nameAirline": "Aircompany Somon Air LLC", + "nameCountry": "Tajikistan", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 26.5, + "airlineId": 490, + "callsign": "AIR ZIMBABWE", + "codeHub": "HRE", + "codeIataAirline": "UM", + "codeIcaoAirline": "AZW", + "codeIso2Country": "ZW", + "founding": 1961, + "iataPrefixAccounting": "168", + "nameAirline": "Air Zimbabwe (Pvt) Ltd.", + "nameCountry": "Zimbabwe", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.7, + "airlineId": 491, + "callsign": "LOULAN", + "codeHub": "URC", + "codeIataAirline": "UQ", + "codeIcaoAirline": "CUH", + "codeIso2Country": "CN", + "founding": 2014, + "iataPrefixAccounting": "886", + "nameAirline": "Urumqi Airlines Co. Ltd.", + "nameCountry": "China", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 27.6, + "airlineId": 492, + "callsign": "DAP", + "codeHub": "PUQ", + "codeIataAirline": "V5", + "codeIcaoAirline": "DAP", + "codeIso2Country": "CL", + "founding": 1980, + "iataPrefixAccounting": "", + "nameAirline": "Aerovias DAP S.A.", + "nameCountry": "Chile", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.7, + "airlineId": 493, + "callsign": "STINGRAY", + "codeHub": "MCO", + "codeIataAirline": "VC", + "codeIcaoAirline": "SRY", + "codeIso2Country": "UM", + "founding": 1997, + "iataPrefixAccounting": "359", + "nameAirline": "Via Airlines, Inc.", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.3, + "airlineId": 494, + "callsign": "AEROPOSTAL", + "codeHub": "CCS", + "codeIataAirline": "VH", + "codeIcaoAirline": "ALV", + "codeIso2Country": "VE", + "founding": 1930, + "iataPrefixAccounting": "152", + "nameAirline": "Aeropostal Alas de Venezuela C.A.", + "nameCountry": "Venezuela", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.4, + "airlineId": 495, + "callsign": "NOVOAIR", + "codeHub": "DAC", + "codeIataAirline": "VQ", + "codeIcaoAirline": "NVQ", + "codeIso2Country": "BD", + "founding": 2012, + "iataPrefixAccounting": "855", + "nameAirline": "Novoair Limited", + "nameCountry": "Bangladesh", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.2, + "airlineId": 496, + "callsign": "EXPRESS WING", + "codeHub": "DMK", + "codeIataAirline": "XJ", + "codeIcaoAirline": "TAX", + "codeIso2Country": "TH", + "founding": 2013, + "iataPrefixAccounting": "940", + "nameAirline": "Thai Airasia X Company Limited", + "nameCountry": "Thailand", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.4, + "airlineId": 497, + "callsign": "AEROLANE", + "codeHub": "UIO", + "codeIataAirline": "XL", + "codeIcaoAirline": "LNE", + "codeIso2Country": "EC", + "founding": 2003, + "iataPrefixAccounting": "462", + "nameAirline": "LanEcuador", + "nameCountry": "Ecuador", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.2, + "airlineId": 498, + "callsign": "MONTAIR", + "codeHub": "TGD", + "codeIataAirline": "YM", + "codeIcaoAirline": "MGX", + "codeIso2Country": "ME", + "founding": 1994, + "iataPrefixAccounting": "409", + "nameAirline": "Montenegro Airlines", + "nameCountry": "Montenegro", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.2, + "airlineId": 499, + "callsign": "ZAP", + "codeHub": "STN", + "codeIataAirline": "ZT", + "codeIcaoAirline": "AWC", + "codeIso2Country": "GB", + "founding": 1988, + "iataPrefixAccounting": "858", + "nameAirline": "Titan Airways Limited", + "nameCountry": "United Kingdom", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 3.8, + "airlineId": 500, + "callsign": "NAWRAS", + "codeHub": "CMN", + "codeIataAirline": "3O", + "codeIcaoAirline": "MAC", + "codeIso2Country": "MA", + "founding": 2008, + "iataPrefixAccounting": "452", + "nameAirline": "Air Arabia Maroc", + "nameCountry": "Morocco", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.1, + "airlineId": 501, + "callsign": "PELITA", + "codeHub": "HLP", + "codeIataAirline": "6D", + "codeIcaoAirline": "PAS", + "codeIso2Country": "ID", + "founding": 1970, + "iataPrefixAccounting": "19", + "nameAirline": "Pelita Air Service", + "nameCountry": "Indonesia", + "sizeAirline": 5, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 4.4, + "airlineId": 502, + "callsign": "ISRAIR", + "codeHub": "ETH", + "codeIataAirline": "6H", + "codeIcaoAirline": "ISR", + "codeIso2Country": "IL", + "founding": 1989, + "iataPrefixAccounting": "818", + "nameAirline": "Israir", + "nameCountry": "Israel", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.8, + "airlineId": 503, + "callsign": "BALKAN HOLIDAYS", + "codeHub": "SOF", + "codeIataAirline": "8H", + "codeIcaoAirline": "BGH", + "codeIso2Country": "BG", + "founding": 2003, + "iataPrefixAccounting": "366", + "nameAirline": "BH AIR", + "nameCountry": "Bulgaria", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.3, + "airlineId": 504, + "callsign": "GREEK STAR", + "codeHub": "SKG", + "codeIataAirline": "A2", + "codeIcaoAirline": "AZI", + "codeIso2Country": "GR", + "founding": 2008, + "iataPrefixAccounting": "273", + "nameAirline": "Astra Airlines", + "nameCountry": "Greece", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.2, + "airlineId": 505, + "callsign": "VIRGO", + "codeHub": "DMK", + "codeIataAirline": "E3", + "codeIcaoAirline": "VGO", + "codeIso2Country": "TH", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "NewGen Airways", + "nameCountry": "Thailand", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.1, + "airlineId": 506, + "callsign": "EASTERN", + "codeHub": "JFK", + "codeIataAirline": "EA", + "codeIcaoAirline": "EAL", + "codeIso2Country": "US", + "founding": 2014, + "iataPrefixAccounting": "7", + "nameAirline": "Eastern Air Lines Group Inc.", + "nameCountry": "United States", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 17.3, + "airlineId": 507, + "callsign": "ELLINAIR HELLAS", + "codeHub": "SKG", + "codeIataAirline": "EL", + "codeIcaoAirline": "ELB", + "codeIso2Country": "GR", + "founding": 2013, + "iataPrefixAccounting": "241", + "nameAirline": "Ellinair S.A", + "nameCountry": "Greece", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 30.7, + "airlineId": 508, + "callsign": "DILMUN", + "codeHub": "BAH", + "codeIataAirline": "ES", + "codeIcaoAirline": "DHX", + "codeIso2Country": "BH", + "founding": 2010, + "iataPrefixAccounting": "155", + "nameAirline": "DHL Aviation EEMEA B.S.C.(c)", + "nameCountry": "Bahrain", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 21.8, + "airlineId": 509, + "callsign": "FLAIR", + "codeHub": "YLW", + "codeIataAirline": "F8", + "codeIcaoAirline": "FLE", + "codeIso2Country": "CA", + "founding": 2005, + "iataPrefixAccounting": "", + "nameAirline": "Flair Airlines Ltd.", + "nameCountry": "Canada", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 24.7, + "airlineId": 510, + "callsign": "ARIANA", + "codeHub": "KBL", + "codeIataAirline": "FG", + "codeIcaoAirline": "AFG", + "codeIso2Country": "AF", + "founding": 1955, + "iataPrefixAccounting": "255", + "nameAirline": "Ariana Afghan Airlines", + "nameCountry": "Afghanistan", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 29.1, + "airlineId": 511, + "callsign": "UNIVERSAL CARGO", + "codeHub": "IST", + "codeIataAirline": "GO", + "codeIcaoAirline": "KZU", + "codeIso2Country": "TR", + "founding": 2004, + "iataPrefixAccounting": "444", + "nameAirline": "ULS Airlines Cargo", + "nameCountry": "Turkey", + "sizeAirline": 5, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 21.1, + "airlineId": 512, + "callsign": "NAM", + "codeHub": "CGK", + "codeIataAirline": "IN", + "codeIcaoAirline": "NIH", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "274", + "nameAirline": "Nam Air", + "nameCountry": "Indonesia", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 28.4, + "airlineId": 513, + "callsign": "JET ASIA", + "codeHub": "BKK", + "codeIataAirline": "JF", + "codeIcaoAirline": "JAA", + "codeIso2Country": "TH", + "founding": 2010, + "iataPrefixAccounting": "885", + "nameAirline": "Jet Asia Airways", + "nameCountry": "Thailand", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.8, + "airlineId": 514, + "callsign": "AIR ANGKOR", + "codeHub": "PNH", + "codeIataAirline": "K6", + "codeIcaoAirline": "KHV", + "codeIso2Country": "KH", + "founding": 2009, + "iataPrefixAccounting": "188", + "nameAirline": "Cambodia Angkor Air t/a Cambodia Angkor Air Co., Ltd.", + "nameCountry": "Cambodia", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.3, + "airlineId": 515, + "callsign": "CAYMAN", + "codeHub": "GCM", + "codeIataAirline": "KX", + "codeIcaoAirline": "CAY", + "codeIso2Country": "KY", + "founding": 1968, + "iataPrefixAccounting": "378", + "nameAirline": "Cayman Airways Limited", + "nameCountry": "Cayman Islands", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.7, + "airlineId": 516, + "callsign": "SANDBAR", + "codeHub": "MLE", + "codeIataAirline": "LV", + "codeIcaoAirline": "MEG", + "codeIso2Country": "MV", + "founding": 2010, + "iataPrefixAccounting": "400", + "nameAirline": "MEGA Maldives Airlines", + "nameCountry": "Maldives", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 31.2, + "airlineId": 517, + "callsign": "AMERIJET", + "codeHub": "FLL", + "codeIataAirline": "M6", + "codeIcaoAirline": "AJT", + "codeIso2Country": "UM", + "founding": 1974, + "iataPrefixAccounting": "810", + "nameAirline": "Amerijet International Inc.", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 35.4, + "airlineId": 518, + "callsign": "NOLINOR", + "codeHub": "YUL", + "codeIataAirline": "N5", + "codeIcaoAirline": "NRL", + "codeIso2Country": "CA", + "founding": 1997, + "iataPrefixAccounting": "", + "nameAirline": "Les Investissements Nolinor Inc.", + "nameCountry": "Canada", + "sizeAirline": 5, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 31.2, + "airlineId": 519, + "callsign": "NORTHERN AIR CARGO", + "codeHub": "ANC", + "codeIataAirline": "NC", + "codeIcaoAirline": "NAC", + "codeIso2Country": "UM", + "founding": 0, + "iataPrefixAccounting": "345", + "nameAirline": "Northern Air Cargo, Inc.", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 5, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 9.1, + "airlineId": 520, + "callsign": "NILE BIRD", + "codeHub": "CAI", + "codeIataAirline": "NP", + "codeIcaoAirline": "NIA", + "codeIso2Country": "EG", + "founding": 2009, + "iataPrefixAccounting": "325", + "nameAirline": "Nile Air", + "nameCountry": "Egypt", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.6, + "airlineId": 521, + "callsign": "NOVANILE", + "codeHub": "KRT", + "codeIataAirline": "O9", + "codeIcaoAirline": "NOV", + "codeIso2Country": "SD", + "founding": 2006, + "iataPrefixAccounting": "948", + "nameAirline": "NOVA Airlines", + "nameCountry": "Sudan", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.8, + "airlineId": 522, + "callsign": "AIR NAURU", + "codeHub": "INU", + "codeIataAirline": "ON", + "codeIcaoAirline": "RON", + "codeIso2Country": "NR", + "founding": 2014, + "iataPrefixAccounting": "123", + "nameAirline": "Nauru Air Corporation t/a Our Airline", + "nameCountry": "Nauru", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 20.5, + "airlineId": 523, + "callsign": "CANARY FLY", + "codeHub": "LPA", + "codeIataAirline": "PM", + "codeIcaoAirline": "CNF", + "codeIso2Country": "ES", + "founding": 2010, + "iataPrefixAccounting": "496", + "nameAirline": "Canary Fly, S.A.", + "nameCountry": "Spain", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 2.9, + "airlineId": 524, + "callsign": "TAMPA", + "codeHub": "MDE", + "codeIataAirline": "QT", + "codeIcaoAirline": "TPA", + "codeIso2Country": "CO", + "founding": 2013, + "iataPrefixAccounting": "729", + "nameAirline": "Avianca Cargo", + "nameCountry": "Colombia", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 13.9, + "airlineId": 525, + "callsign": "REGENT", + "codeHub": "DAC", + "codeIataAirline": "RX", + "codeIcaoAirline": "RGE", + "codeIso2Country": "BD", + "founding": 2010, + "iataPrefixAccounting": "652", + "nameAirline": "HG Aviation Limited dba Regent Airways", + "nameCountry": "Bangladesh", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.8, + "airlineId": 526, + "callsign": "STARWAY", + "codeHub": "CDG", + "codeIataAirline": "SE", + "codeIcaoAirline": "XLF", + "codeIso2Country": "FR", + "founding": 2006, + "iataPrefixAccounting": "473", + "nameAirline": "XL Airways France", + "nameCountry": "France", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 31.5, + "airlineId": 527, + "callsign": "TIACA", + "codeHub": "CCS", + "codeIataAirline": "T7*", + "codeIcaoAirline": "TIW", + "codeIso2Country": "VE", + "founding": 2007, + "iataPrefixAccounting": "382", + "nameAirline": "Transcarga International Airways", + "nameCountry": "Venezuela", + "sizeAirline": 5, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 14.0, + "airlineId": 528, + "callsign": "AIR TAHITI NUI", + "codeHub": "PPT", + "codeIataAirline": "TN", + "codeIcaoAirline": "THT", + "codeIso2Country": "PF", + "founding": 1998, + "iataPrefixAccounting": "244", + "nameAirline": "Air Tahiti Nui", + "nameCountry": "French Polynesia", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.9, + "airlineId": 529, + "callsign": "LAN CARGO", + "codeHub": "SCL", + "codeIataAirline": "UC", + "codeIcaoAirline": "LCO", + "codeIso2Country": "CL", + "founding": 1929, + "iataPrefixAccounting": "145", + "nameAirline": "Lan Cargo", + "nameCountry": "Chile", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 14.8, + "airlineId": 530, + "callsign": "TUNEXPRESS", + "codeHub": "TUN", + "codeIataAirline": "UG", + "codeIcaoAirline": "TUX", + "codeIso2Country": "TN", + "founding": 2011, + "iataPrefixAccounting": "150", + "nameAirline": "Tunisair Express", + "nameCountry": "Tunisia", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.2, + "airlineId": 531, + "callsign": "CABOVERDE", + "codeHub": "RAI", + "codeIataAirline": "VR", + "codeIcaoAirline": "TCV", + "codeIso2Country": "CV", + "founding": 1955, + "iataPrefixAccounting": "696", + "nameAirline": "TACV Cabo Verde Airlines", + "nameCountry": "Cape Verde", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.4, + "airlineId": 532, + "callsign": "MOKU", + "codeHub": "HNL", + "codeIataAirline": "WP", + "codeIcaoAirline": "MKU", + "codeIso2Country": "US", + "founding": 2004, + "iataPrefixAccounting": "347", + "nameAirline": "Hawaii Island Air, Inc. dba Island Air", + "nameCountry": "United States", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.4, + "airlineId": 533, + "callsign": "RED WINGS", + "codeHub": "VKO", + "codeIataAirline": "WZ", + "codeIcaoAirline": "RWZ", + "codeIso2Country": "RU", + "founding": 2007, + "iataPrefixAccounting": "309", + "nameAirline": "Red Wings", + "nameCountry": "Russia", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 24.9, + "airlineId": 534, + "callsign": "ATOMIC", + "codeHub": "FRU", + "codeIataAirline": "YK", + "codeIcaoAirline": "AVJ", + "codeIso2Country": "KG", + "founding": 2006, + "iataPrefixAccounting": "511", + "nameAirline": "Avia Traffic Company", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.5, + "airlineId": 535, + "callsign": "GREEN BIRD", + "codeHub": "PTP", + "codeIataAirline": "3S", + "codeIcaoAirline": "GUY", + "codeIso2Country": "FR", + "founding": 2002, + "iataPrefixAccounting": "875", + "nameAirline": "CAIRE dba Air Antilles Express", + "nameCountry": "France", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.5, + "airlineId": 536, + "callsign": "AIRTARCO", + "codeHub": "KRT", + "codeIataAirline": "3T", + "codeIcaoAirline": "TRQ", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "524", + "nameAirline": "Tarco Air", + "nameCountry": "Sudan", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.5, + "airlineId": 537, + "callsign": "IZMIR", + "codeHub": "ADB", + "codeIataAirline": "4I", + "codeIcaoAirline": "IZM", + "codeIso2Country": "TR", + "founding": 2006, + "iataPrefixAccounting": "597", + "nameAirline": "IHY Izmir Havayollari A.S.", + "nameCountry": "Turkey", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 20.6, + "airlineId": 538, + "callsign": "SAFI AIRWAYS", + "codeHub": "KBL", + "codeIataAirline": "4Q", + "codeIcaoAirline": "SFW", + "codeIso2Country": "AF", + "founding": 2007, + "iataPrefixAccounting": "741", + "nameAirline": "Safi Airways", + "nameCountry": "Afghanistan", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 23.3, + "airlineId": 539, + "callsign": "BAMBI", + "codeHub": "LOS", + "codeIataAirline": "4W", + "codeIcaoAirline": "AJK", + "codeIso2Country": "NG", + "founding": 1998, + "iataPrefixAccounting": "574", + "nameAirline": "Allied Air", + "nameCountry": "Nigeria", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 22.3, + "airlineId": 540, + "callsign": "TAJIKAIR", + "codeHub": "DYU", + "codeIataAirline": "7J", + "codeIcaoAirline": "TJK", + "codeIso2Country": "TJ", + "founding": 1924, + "iataPrefixAccounting": "502", + "nameAirline": "OJSC \"Tajik Air\"", + "nameCountry": "Tajikistan", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.9, + "airlineId": 541, + "callsign": "MYANMAR", + "codeHub": "RGN", + "codeIataAirline": "8M", + "codeIcaoAirline": "MMA", + "codeIso2Country": "MM", + "founding": 1993, + "iataPrefixAccounting": "599", + "nameAirline": "Myanmar Airways International", + "nameCountry": "Myanmar", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.7, + "airlineId": 542, + "callsign": "ATHABASKA", + "codeHub": "YPA", + "codeIataAirline": "9T", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "909", + "nameAirline": "Transwest Air", + "nameCountry": "Canada", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.7, + "airlineId": 543, + "callsign": "AMFLIGHT", + "codeHub": "BUR", + "codeIataAirline": "A8", + "codeIcaoAirline": "AMF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ameriflight, LLC", + "nameCountry": "United States", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 16.5, + "airlineId": 544, + "callsign": "TAMAZI", + "codeHub": "TBS", + "codeIataAirline": "A9", + "codeIcaoAirline": "TGZ", + "codeIso2Country": "GE", + "founding": 2004, + "iataPrefixAccounting": "606", + "nameAirline": "Georgian Airways", + "nameCountry": "Georgia", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.3, + "airlineId": 545, + "callsign": "AIR LEISURE", + "codeHub": "CAI", + "codeIataAirline": "AL", + "codeIcaoAirline": "ALD", + "codeIso2Country": "EG", + "founding": 2014, + "iataPrefixAccounting": "751", + "nameAirline": "Air Leisure", + "nameCountry": "Egypt", + "sizeAirline": 4, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 26.1, + "airlineId": 546, + "callsign": "ALBASTAR", + "codeHub": "PMI", + "codeIataAirline": "AP", + "codeIcaoAirline": "LAV", + "codeIso2Country": "ES", + "founding": 2010, + "iataPrefixAccounting": "374", + "nameAirline": "Alba Star,S.A. dba Alba Star.es", + "nameCountry": "Spain", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 23.9, + "airlineId": 547, + "callsign": "", + "codeHub": "THR", + "codeIataAirline": "B9", + "codeIcaoAirline": "IRB", + "codeIso2Country": "IR", + "founding": 2002, + "iataPrefixAccounting": "491", + "nameAirline": "Iran Air Tours", + "nameCountry": "Iran", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 26.7, + "airlineId": 548, + "callsign": "", + "codeHub": "", + "codeIataAirline": "BH", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hawkair AS", + "nameCountry": "Canada", + "sizeAirline": 4, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 13.8, + "airlineId": 549, + "callsign": "CARGO MED", + "codeHub": "MXP", + "codeIataAirline": "C8", + "codeIcaoAirline": "ICV", + "codeIso2Country": "IT", + "founding": 2009, + "iataPrefixAccounting": "356", + "nameAirline": "Cargolux Italia S.p.A.", + "nameCountry": "Italy", + "sizeAirline": 4, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 15.9, + "airlineId": 550, + "callsign": "GRAND CHINA", + "codeHub": "PEK", + "codeIataAirline": "CN", + "codeIcaoAirline": "GDC", + "codeIso2Country": "CN", + "founding": 2005, + "iataPrefixAccounting": "895", + "nameAirline": "Grand China Air Co. , Ltd.", + "nameCountry": "China", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 29.8, + "airlineId": 551, + "callsign": "ESTELAR", + "codeHub": "CCS", + "codeIataAirline": "E4", + "codeIcaoAirline": "ETR", + "codeIso2Country": "VE", + "founding": 2009, + "iataPrefixAccounting": "52", + "nameAirline": "Estelar Latinoamerica C.A.", + "nameCountry": "Venezuela", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.0, + "airlineId": 552, + "callsign": "PULLMANTUR", + "codeHub": "MAD", + "codeIataAirline": "EB", + "codeIcaoAirline": "PLM", + "codeIso2Country": "ES", + "founding": 2014, + "iataPrefixAccounting": "460", + "nameAirline": "Wamos Air", + "nameCountry": "Spain", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.4, + "airlineId": 553, + "callsign": "GREY BIRD", + "codeHub": "DAR", + "codeIataAirline": "FN", + "codeIcaoAirline": "FTZ", + "codeIso2Country": "TZ", + "founding": 2012, + "iataPrefixAccounting": "", + "nameAirline": "Fastjet Airlines Limited", + "nameCountry": "Tanzania", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.1, + "airlineId": 554, + "callsign": "", + "codeHub": "", + "codeIataAirline": "GAL", + "codeIcaoAirline": "G2", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Albatros Airlines", + "nameCountry": "Venezuela", + "sizeAirline": 4, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 1.7, + "airlineId": 555, + "callsign": "AVIATECA", + "codeHub": "GUA", + "codeIataAirline": "GU", + "codeIcaoAirline": "GUG", + "codeIso2Country": "GT", + "founding": 1945, + "iataPrefixAccounting": "240", + "nameAirline": "AVIATECA, S.A.", + "nameCountry": "Guatemala", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.3, + "airlineId": 556, + "callsign": "THOMAS COOK", + "codeHub": "BRU", + "codeIataAirline": "HQ", + "codeIcaoAirline": "TCW", + "codeIso2Country": "BE", + "founding": 2001, + "iataPrefixAccounting": "583", + "nameAirline": "Thomas Cook Airline", + "nameCountry": "Belgium", + "sizeAirline": 4, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 10.4, + "airlineId": 557, + "callsign": "ROYAL BUTHAN", + "codeHub": "PBH", + "codeIataAirline": "KB", + "codeIcaoAirline": "DRK", + "codeIso2Country": "BT", + "founding": 1981, + "iataPrefixAccounting": "787", + "nameAirline": "Druk Air Corporation Ltd.", + "nameCountry": "Bhutan", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.6, + "airlineId": 558, + "callsign": "KOMI AVIA", + "codeHub": "SCW", + "codeIataAirline": "KO", + "codeIcaoAirline": "KMA", + "codeIso2Country": "RU", + "founding": 1998, + "iataPrefixAccounting": "", + "nameAirline": "OJSC \"Komiaviatrans\"", + "nameCountry": "Russia", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.3, + "airlineId": 559, + "callsign": "", + "codeHub": "NKC", + "codeIataAirline": "L6", + "codeIcaoAirline": "MAI", + "codeIso2Country": "MR", + "founding": 2010, + "iataPrefixAccounting": "495", + "nameAirline": "MAURITANIAN AIRLINES INTERNATIONAL", + "nameCountry": "Mauritania", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.3, + "airlineId": 560, + "callsign": "AERO MONGOLIA", + "codeHub": "ULN", + "codeIataAirline": "M0", + "codeIcaoAirline": "MNG", + "codeIso2Country": "MN", + "founding": 2002, + "iataPrefixAccounting": "", + "nameAirline": "Aero Mongolia", + "nameCountry": "Mongolia", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.5, + "airlineId": 561, + "callsign": "MIHIN LANKA", + "codeHub": "CMB", + "codeIataAirline": "MJ", + "codeIcaoAirline": "MLR", + "codeIso2Country": "LK", + "founding": 2006, + "iataPrefixAccounting": "817", + "nameAirline": "Mihin Lanka (Pvt) Ltd.", + "nameCountry": "Sri Lanka", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.1, + "airlineId": 562, + "callsign": "NATIONAL CARGO", + "codeHub": "SFB", + "codeIataAirline": "N8", + "codeIcaoAirline": "NCR", + "codeIso2Country": "US", + "founding": 2006, + "iataPrefixAccounting": "416", + "nameAirline": "National Airlines", + "nameCountry": "United States", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 9.8, + "airlineId": 563, + "callsign": "NESMA", + "codeHub": "CAI", + "codeIataAirline": "NE", + "codeIcaoAirline": "NMA", + "codeIso2Country": "EG", + "founding": 2010, + "iataPrefixAccounting": "477", + "nameAirline": "Nesma Airlines", + "nameCountry": "Egypt", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.5, + "airlineId": 564, + "callsign": "GOLDEN FIN", + "codeHub": "DMK", + "codeIataAirline": "O8", + "codeIcaoAirline": "SQM", + "codeIso2Country": "TH", + "founding": 2015, + "iataPrefixAccounting": "874", + "nameAirline": "Siam Air Transport Co. Ltd", + "nameCountry": "Thailand", + "sizeAirline": 4, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 9.8, + "airlineId": 565, + "callsign": "MONGOL AIR", + "codeHub": "ULN", + "codeIataAirline": "OM", + "codeIcaoAirline": "MGL", + "codeIso2Country": "MN", + "founding": 1954, + "iataPrefixAccounting": "289", + "nameAirline": "MIAT", + "nameCountry": "Mongolia", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.6, + "airlineId": 566, + "callsign": "PRIVILEGE", + "codeHub": "MAD", + "codeIataAirline": "P6", + "codeIcaoAirline": "PVG", + "codeIso2Country": "ES", + "founding": 2007, + "iataPrefixAccounting": "433", + "nameAirline": "Privilege Style S.A.", + "nameCountry": "Spain", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 19.5, + "airlineId": 567, + "callsign": "SURINAM", + "codeHub": "PBM", + "codeIataAirline": "PY", + "codeIcaoAirline": "SLM", + "codeIso2Country": "SR", + "founding": 1954, + "iataPrefixAccounting": "192", + "nameAirline": "Surinam Airways", + "nameCountry": "Suriname", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.8, + "airlineId": 568, + "callsign": "ROYAL NEPAL", + "codeHub": "KTM", + "codeIataAirline": "RA", + "codeIcaoAirline": "RNA", + "codeIso2Country": "NP", + "founding": 2006, + "iataPrefixAccounting": "285", + "nameAirline": "Nepal Airlines Corporation", + "nameCountry": "Nepal", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.2, + "airlineId": 569, + "callsign": "ROTANA", + "codeHub": "AUH", + "codeIataAirline": "RG", + "codeIcaoAirline": "RJD", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "482", + "nameAirline": "Rotana Jet Aviation dba Rotana Jet", + "nameCountry": "United Arab Emirates", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.9, + "airlineId": 570, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RS", + "codeIcaoAirline": "MJN", + "codeIso2Country": "OM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oman Gvmt", + "nameCountry": "Oman", + "sizeAirline": 4, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 17.9, + "airlineId": 571, + "callsign": "STARBOW", + "codeHub": "ACC", + "codeIataAirline": "S9", + "codeIcaoAirline": "IKM", + "codeIso2Country": "GH", + "founding": 2011, + "iataPrefixAccounting": "759", + "nameAirline": "Aero Surveys Ltd t/a Starbow", + "nameCountry": "Ghana", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.8, + "airlineId": 572, + "callsign": "AIRCALIN", + "codeHub": "NOU", + "codeIataAirline": "SB", + "codeIcaoAirline": "ACI", + "codeIso2Country": "NC", + "founding": 1983, + "iataPrefixAccounting": "63", + "nameAirline": "Aircalin", + "nameCountry": "New Caledonia", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.2, + "airlineId": 573, + "callsign": "AIRCAL", + "codeHub": "GEA", + "codeIataAirline": "TY", + "codeIcaoAirline": "TPC", + "codeIso2Country": "NC", + "founding": 0, + "iataPrefixAccounting": "190", + "nameAirline": "Air Caledonie", + "nameCountry": "New Caledonia", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.5, + "airlineId": 574, + "callsign": "MAXAIR NIGERIA", + "codeHub": "DKA", + "codeIataAirline": "VM", + "codeIcaoAirline": "NGL", + "codeIso2Country": "NG", + "founding": 2008, + "iataPrefixAccounting": "", + "nameAirline": "Max Air Limited", + "nameCountry": "Nigeria", + "sizeAirline": 4, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 28.8, + "airlineId": 575, + "callsign": "EXPRESS JET", + "codeHub": "NBO", + "codeIataAirline": "XU", + "codeIcaoAirline": "AXK", + "codeIso2Country": "KE", + "founding": 1999, + "iataPrefixAccounting": "", + "nameAirline": "African Express Airways (K) Limited", + "nameCountry": "Kenya", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 17.2, + "airlineId": 576, + "callsign": "ASIAN STAR", + "codeHub": "RGN", + "codeIataAirline": "YJ", + "codeIcaoAirline": "AWM", + "codeIso2Country": "MM", + "founding": 2010, + "iataPrefixAccounting": "601", + "nameAirline": "Asian Wings Airways Limited", + "nameCountry": "Myanmar", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.0, + "airlineId": 577, + "callsign": "VANTAGE", + "codeHub": "TPE", + "codeIataAirline": "ZV", + "codeIcaoAirline": "VAX", + "codeIso2Country": "TW", + "founding": 2014, + "iataPrefixAccounting": "189", + "nameAirline": "V Air Corporation", + "nameCountry": "Taiwan", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.1, + "airlineId": 578, + "callsign": "HYDRO", + "codeHub": "YUL", + "codeIataAirline": "0Q*", + "codeIcaoAirline": "HYD", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hydro-Quebec", + "nameCountry": "Canada", + "sizeAirline": 3, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 16.8, + "airlineId": 579, + "callsign": "BURKINA", + "codeHub": "OUA", + "codeIataAirline": "2J", + "codeIcaoAirline": "VBW", + "codeIso2Country": "BF", + "founding": 1967, + "iataPrefixAccounting": "226", + "nameAirline": "Air Burkina", + "nameCountry": "Burkina Faso", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.3, + "airlineId": 580, + "callsign": "TRUJET", + "codeHub": "HYD", + "codeIataAirline": "2T", + "codeIcaoAirline": "TRJ", + "codeIso2Country": "IN", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "TruJet", + "nameCountry": "India", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.8, + "airlineId": 581, + "callsign": "CAL", + "codeHub": "TLV", + "codeIataAirline": "5C", + "codeIcaoAirline": "ICL", + "codeIso2Country": "IL", + "founding": 2001, + "iataPrefixAccounting": "700", + "nameAirline": "C.A.L. Cargo Airlines", + "nameCountry": "Israel", + "sizeAirline": 3, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 27.7, + "airlineId": 582, + "callsign": "CHAPIN", + "codeHub": "GUA", + "codeIataAirline": "5U", + "codeIcaoAirline": "TGU", + "codeIso2Country": "GT", + "founding": 1969, + "iataPrefixAccounting": "911", + "nameAirline": "Transportes Aereos Guatemaltecos S.", + "nameCountry": "Guatemala", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.7, + "airlineId": 583, + "callsign": "RELAXAIR", + "codeHub": "BTS", + "codeIataAirline": "6G", + "codeIcaoAirline": "RLX", + "codeIso2Country": "SK", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "Go2Sky", + "nameCountry": "Slovakia", + "sizeAirline": 3, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 19.9, + "airlineId": 584, + "callsign": "ECOJET", + "codeHub": "CBB", + "codeIataAirline": "8J", + "codeIcaoAirline": "ECO", + "codeIso2Country": "BO", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "Linea Aerea Eco Jet S.A.", + "nameCountry": "Bolivia", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.7, + "airlineId": 585, + "callsign": "EAGLEXPRESS AIR", + "codeHub": "KUL", + "codeIataAirline": "9A", + "codeIcaoAirline": "EZX", + "codeIso2Country": "MY", + "founding": 2011, + "iataPrefixAccounting": "", + "nameAirline": "EagleXPRESS Air", + "nameCountry": "Malaysia", + "sizeAirline": 3, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 10.7, + "airlineId": 586, + "callsign": "CHANG AN", + "codeHub": "XIY", + "codeIataAirline": "9H", + "codeIcaoAirline": "CGN", + "codeIso2Country": "CN", + "founding": 1992, + "iataPrefixAccounting": "856", + "nameAirline": "Chang an Airlines", + "nameCountry": "China", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.6, + "airlineId": 587, + "callsign": "ARUBA", + "codeHub": "AUA", + "codeIataAirline": "AG", + "codeIcaoAirline": "ARU", + "codeIso2Country": "AW", + "founding": 2012, + "iataPrefixAccounting": "209", + "nameAirline": "Arubaanse Luchtvaart Maatschappij NV dba Aruba Airlines", + "nameCountry": "Aruba", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.8, + "airlineId": 588, + "callsign": "BUKOVYNA", + "codeHub": "CWC", + "codeIataAirline": "BQ", + "codeIcaoAirline": "BKV", + "codeIso2Country": "UA", + "founding": 1999, + "iataPrefixAccounting": "", + "nameAirline": "Bukovyna Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 3, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 9.3, + "airlineId": 589, + "callsign": "DUTCH CORENDON", + "codeHub": "AMS", + "codeIataAirline": "CD", + "codeIcaoAirline": "CND", + "codeIso2Country": "NL", + "founding": 2011, + "iataPrefixAccounting": "", + "nameAirline": "Corendon Dutch Airlines B.V.", + "nameCountry": "Netherlands", + "sizeAirline": 3, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 19.6, + "airlineId": 590, + "callsign": "DARTLIMITED", + "codeHub": "IEV", + "codeIataAirline": "D4", + "codeIcaoAirline": "DAT", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "443", + "nameAirline": "DART Limited trust distribution", + "nameCountry": "Ukraine", + "sizeAirline": 3, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 16.7, + "airlineId": 591, + "callsign": "DHL", + "codeHub": "PTY", + "codeIataAirline": "D5", + "codeIcaoAirline": "DAE", + "codeIso2Country": "PA", + "founding": 1996, + "iataPrefixAccounting": "992", + "nameAirline": "DHL Aero Expreso S.A.", + "nameCountry": "Panama", + "sizeAirline": 3, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 36.6, + "airlineId": 592, + "callsign": "INLINE", + "codeHub": "JNB", + "codeIataAirline": "D6", + "codeIcaoAirline": "ILN", + "codeIso2Country": "ZA", + "founding": 1993, + "iataPrefixAccounting": "625", + "nameAirline": "Inter-Aviation Services dba Interair South Africa", + "nameCountry": "South Africa", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 4.2, + "airlineId": 593, + "callsign": "EVELOP", + "codeHub": "PMI", + "codeIataAirline": "E9", + "codeIcaoAirline": "EVE", + "codeIso2Country": "ES", + "founding": 2013, + "iataPrefixAccounting": "783", + "nameAirline": "Evelop Airlines S.L.", + "nameCountry": "Spain", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 23.9, + "airlineId": 594, + "callsign": "MISTRAL", + "codeHub": "ORY", + "codeIataAirline": "EC", + "codeIcaoAirline": "BOS", + "codeIso2Country": "FR", + "founding": 2009, + "iataPrefixAccounting": "284", + "nameAirline": "Openskies", + "nameCountry": "France", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.0, + "airlineId": 595, + "callsign": "DAHL", + "codeHub": "CVG", + "codeIataAirline": "ER", + "codeIcaoAirline": "DHL", + "codeIso2Country": "UM", + "founding": 2003, + "iataPrefixAccounting": "423", + "nameAirline": "Astar Air Cargo", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 3, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 13.9, + "airlineId": 596, + "callsign": "FELIX", + "codeHub": "SAH", + "codeIataAirline": "FO", + "codeIcaoAirline": "FXX", + "codeIso2Country": "YE", + "founding": 2008, + "iataPrefixAccounting": "569", + "nameAirline": "Felix Airways", + "nameCountry": "Yemen", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 40.8, + "airlineId": 597, + "callsign": "AEROSUCRE", + "codeHub": "BAQ", + "codeIataAirline": "G0", + "codeIcaoAirline": "KRE", + "codeIso2Country": "CO", + "founding": 1969, + "iataPrefixAccounting": "", + "nameAirline": "Aerosucre", + "nameCountry": "Colombia", + "sizeAirline": 3, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 24.5, + "airlineId": 598, + "callsign": "AIR CRETE", + "codeHub": "HER", + "codeIataAirline": "GQ", + "codeIcaoAirline": "SEH", + "codeIso2Country": "GR", + "founding": 2004, + "iataPrefixAccounting": "", + "nameAirline": "Sky Express S.A.", + "nameCountry": "Greece", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.4, + "airlineId": 599, + "callsign": "COLORFUL", + "codeHub": "KWE", + "codeIataAirline": "GY", + "codeIcaoAirline": "CGZ", + "codeIso2Country": "CN", + "founding": 2015, + "iataPrefixAccounting": "661", + "nameAirline": "Colorful GuiZhou Airlines Co., Ltd", + "nameCountry": "China", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 17.8, + "airlineId": 600, + "callsign": "NORTH AIR", + "codeHub": "HKD", + "codeIataAirline": "HC", + "codeIcaoAirline": "NTH", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hokkaido Air System", + "nameCountry": "Japan", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.8, + "airlineId": 601, + "callsign": "SOLOMON", + "codeHub": "HIR", + "codeIataAirline": "IE", + "codeIcaoAirline": "SOL", + "codeIso2Country": "SB", + "founding": 1968, + "iataPrefixAccounting": "193", + "nameAirline": "Solomon Airlines Limited", + "nameCountry": "Solomon Islands", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 2.6, + "airlineId": 602, + "callsign": "JEY SPRING", + "codeHub": "NRT", + "codeIataAirline": "IJ", + "codeIcaoAirline": "SJO", + "codeIso2Country": "JP", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "Spring Airlines Japan Co. Ltd.", + "nameCountry": "Japan", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 20.3, + "airlineId": 603, + "callsign": "BADR AIR", + "codeHub": "KRT", + "codeIataAirline": "J4", + "codeIcaoAirline": "BDR", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "367", + "nameAirline": "BADR AIRLINES", + "nameCountry": "Sudan", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.2, + "airlineId": 604, + "callsign": "MERAJ AIRLINES", + "codeHub": "THR", + "codeIataAirline": "JI", + "codeIcaoAirline": "MRJ", + "codeIso2Country": "IR", + "founding": 2010, + "iataPrefixAccounting": "648", + "nameAirline": "Meraj Airlines", + "nameCountry": "Iran", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.1, + "airlineId": 605, + "callsign": "JAMAICA", + "codeHub": "KIN", + "codeIataAirline": "JM", + "codeIcaoAirline": "AJM", + "codeIso2Country": "JM", + "founding": 1969, + "iataPrefixAccounting": "201", + "nameAirline": "Air Jamaica", + "nameCountry": "Jamaica", + "sizeAirline": 3, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 12.0, + "airlineId": 606, + "callsign": "ABSA CARGO", + "codeHub": "VCP", + "codeIataAirline": "M3", + "codeIcaoAirline": "TUS", + "codeIso2Country": "BR", + "founding": 1995, + "iataPrefixAccounting": "549", + "nameAirline": "ABSA Cargo Airline", + "nameCountry": "Brazil", + "sizeAirline": 3, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 22.3, + "airlineId": 607, + "callsign": "MARTINAIR", + "codeHub": "AMS", + "codeIataAirline": "MP", + "codeIcaoAirline": "MPH", + "codeIso2Country": "NL", + "founding": 1968, + "iataPrefixAccounting": "129", + "nameAirline": "Martinair Cargo", + "nameCountry": "Netherlands", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 26.1, + "airlineId": 608, + "callsign": "TRANS MONGOLIA", + "codeHub": "ULN", + "codeIataAirline": "MR", + "codeIcaoAirline": "MML", + "codeIso2Country": "MN", + "founding": 2013, + "iataPrefixAccounting": "861", + "nameAirline": "Hunnu Air LLC", + "nameCountry": "Mongolia", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.0, + "airlineId": 609, + "callsign": "AIR VAN", + "codeHub": "VLI", + "codeIataAirline": "NF", + "codeIcaoAirline": "AVN", + "codeIso2Country": "VU", + "founding": 1987, + "iataPrefixAccounting": "218", + "nameAirline": "Air Vanuatu (Operations) Limited", + "nameCountry": "Vanuatu", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.4, + "airlineId": 610, + "callsign": "PEGASUS", + "codeHub": "BLR", + "codeIataAirline": "OP", + "codeIcaoAirline": "PPL", + "codeIso2Country": "IN", + "founding": 2015, + "iataPrefixAccounting": "", + "nameAirline": "Air Pegasus Pvt. Ltd.", + "nameCountry": "India", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.1, + "airlineId": 611, + "callsign": "CAMAIR", + "codeHub": "DLA", + "codeIataAirline": "QC", + "codeIcaoAirline": "CRC", + "codeIso2Country": "CM", + "founding": 2009, + "iataPrefixAccounting": "40", + "nameAirline": "Camair-Co", + "nameCountry": "Cameroon", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.1, + "airlineId": 612, + "callsign": "UT-UKRAINE", + "codeHub": "IEV", + "codeIataAirline": "QU", + "codeIcaoAirline": "UTN", + "codeIso2Country": "UA", + "founding": 2009, + "iataPrefixAccounting": "761", + "nameAirline": "Airline Utair - Ukraine", + "nameCountry": "Ukraine", + "sizeAirline": 3, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 29.9, + "airlineId": 613, + "callsign": "DANU", + "codeHub": "KUN", + "codeIataAirline": "R6", + "codeIcaoAirline": "DNU", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Joint Stock Company Airlines DOT LT", + "nameCountry": "Lithuania", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 7.8, + "airlineId": 614, + "callsign": "FAROELINE", + "codeHub": "FAE", + "codeIataAirline": "RC", + "codeIcaoAirline": "FLI", + "codeIso2Country": "DK", + "founding": 1987, + "iataPrefixAccounting": "767", + "nameAirline": "Atlantic Airways, Faroe Islands, P/F", + "nameCountry": "Denmark", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 5.8, + "airlineId": 615, + "callsign": "AIR CRANE", + "codeHub": "KHN", + "codeIataAirline": "RY", + "codeIcaoAirline": "CJX", + "codeIso2Country": "CN", + "founding": 2015, + "iataPrefixAccounting": "989", + "nameAirline": "Jiangxi Air Company Limited dba Jiangxi Air", + "nameCountry": "China", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.2, + "airlineId": 616, + "callsign": "AVIANCA PERU", + "codeHub": "LIM", + "codeIataAirline": "T0", + "codeIcaoAirline": "TPU", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "530", + "nameAirline": "TACA Peru", + "nameCountry": "Peru", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.1, + "airlineId": 617, + "callsign": "TRANS VOYAGER", + "codeHub": "ENI", + "codeIataAirline": "T6", + "codeIcaoAirline": "ITI", + "codeIso2Country": "PH", + "founding": 2015, + "iataPrefixAccounting": "", + "nameAirline": "ISLAND TRANSVOYAGER INC.", + "nameCountry": "Philippines", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 23.7, + "airlineId": 618, + "callsign": "TANZANIA", + "codeHub": "DAR", + "codeIataAirline": "TC", + "codeIcaoAirline": "ATC", + "codeIso2Country": "TZ", + "founding": 1977, + "iataPrefixAccounting": "197", + "nameAirline": "Air Tanzania Company Ltd.", + "nameCountry": "Tanzania", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 27.7, + "airlineId": 619, + "callsign": "IGUANA", + "codeHub": "WRO", + "codeIataAirline": "TE", + "codeIcaoAirline": "IGA", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Taxi sp. z.o.o", + "nameCountry": "Poland", + "sizeAirline": 3, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 16.4, + "airlineId": 620, + "callsign": "ATLAS UKRAINE", + "codeHub": "LWO", + "codeIataAirline": "UH", + "codeIcaoAirline": "UJX", + "codeIso2Country": "UA", + "founding": 2015, + "iataPrefixAccounting": "500", + "nameAirline": "Aircompany Atlasjet Ukraine LLC", + "nameCountry": "Ukraine", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.9, + "airlineId": 621, + "callsign": "ALMASRIA", + "codeHub": "CAI", + "codeIataAirline": "UJ", + "codeIcaoAirline": "LMU", + "codeIso2Country": "EG", + "founding": 2008, + "iataPrefixAccounting": "110", + "nameAirline": "AlMasria Universal Airlines", + "nameCountry": "Egypt", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.6, + "airlineId": 622, + "callsign": "BURAQAIR", + "codeHub": "MJI", + "codeIataAirline": "UZ", + "codeIcaoAirline": "BRQ", + "codeIso2Country": "LY", + "founding": 2000, + "iataPrefixAccounting": "928", + "nameAirline": "Buraq Air", + "nameCountry": "Libya", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.5, + "airlineId": 623, + "callsign": "CARPATAIR", + "codeHub": "TSR", + "codeIataAirline": "V3", + "codeIcaoAirline": "KRP", + "codeIso2Country": "RO", + "founding": 2000, + "iataPrefixAccounting": "21", + "nameAirline": "Carpatair", + "nameCountry": "Romania", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 21.4, + "airlineId": 624, + "callsign": "VECAR", + "codeHub": "CCS", + "codeIataAirline": "V4", + "codeIcaoAirline": "VEC", + "codeIso2Country": "VE", + "founding": 1996, + "iataPrefixAccounting": "946", + "nameAirline": "Vensecar International", + "nameCountry": "Venezuela", + "sizeAirline": 3, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 15.1, + "airlineId": 625, + "callsign": "PETE AIR", + "codeHub": "DMK", + "codeIataAirline": "XW", + "codeIcaoAirline": "NCT", + "codeIso2Country": "TH", + "founding": 2014, + "iataPrefixAccounting": "478", + "nameAirline": "NokScoot Airlines Company Limited", + "nameCountry": "Thailand", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.4, + "airlineId": 626, + "callsign": "GOLDEN MYANMAR", + "codeHub": "MDL", + "codeIataAirline": "Y5", + "codeIcaoAirline": "GMR", + "codeIso2Country": "MM", + "founding": 2012, + "iataPrefixAccounting": "509", + "nameAirline": "Golden Myanmar Airlines Public Co.,", + "nameCountry": "Myanmar", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.2, + "airlineId": 627, + "callsign": "VASCO AIR", + "codeHub": "HAN", + "codeIataAirline": "0V", + "codeIcaoAirline": "VFC", + "codeIso2Country": "VN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VASCO", + "nameCountry": "Vietnam", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 29.6, + "airlineId": 628, + "callsign": "MY INDO", + "codeHub": "HLP", + "codeIataAirline": "2Y", + "codeIcaoAirline": "MYU", + "codeIso2Country": "ID", + "founding": 2014, + "iataPrefixAccounting": "", + "nameAirline": "PT. My Indo Airlines", + "nameCountry": "Indonesia", + "sizeAirline": 2, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 27.8, + "airlineId": 629, + "callsign": "JUBBA", + "codeHub": "NBO", + "codeIataAirline": "3J", + "codeIcaoAirline": "JBW", + "codeIso2Country": "KE", + "founding": 1998, + "iataPrefixAccounting": "535", + "nameAirline": "Jubba Airways Limited dba Jubba Airways Limited", + "nameCountry": "Kenya", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.4, + "airlineId": 630, + "callsign": "MALAWIAN", + "codeHub": "LLW", + "codeIataAirline": "3W*", + "codeIcaoAirline": "MWI", + "codeIso2Country": "MW", + "founding": 2013, + "iataPrefixAccounting": "529", + "nameAirline": "Malawian Airlines", + "nameCountry": "Malawi", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.4, + "airlineId": 631, + "callsign": "AIRES", + "codeHub": "BOG", + "codeIataAirline": "4C", + "codeIcaoAirline": "ARE", + "codeIso2Country": "CO", + "founding": 2011, + "iataPrefixAccounting": "35", + "nameAirline": "Lan Colombia Airlines", + "nameCountry": "Colombia", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.5, + "airlineId": 632, + "callsign": "BASSAKA", + "codeHub": "PNH", + "codeIataAirline": "5B", + "codeIcaoAirline": "BSX", + "codeIso2Country": "KH", + "founding": 2014, + "iataPrefixAccounting": "590", + "nameAirline": "Bassaka Air Limited", + "nameCountry": "Cambodia", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.3, + "airlineId": 633, + "callsign": "FIA AIRLINES", + "codeHub": "KIV", + "codeIataAirline": "5F", + "codeIcaoAirline": "FIA", + "codeIso2Country": "MD", + "founding": 2015, + "iataPrefixAccounting": "130", + "nameAirline": "Fly One S.R.L.", + "nameCountry": "Moldova", + "sizeAirline": 2, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 27.4, + "airlineId": 634, + "callsign": "EVERTS", + "codeHub": "FAI", + "codeIataAirline": "5V", + "codeIcaoAirline": "VTS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "840", + "nameAirline": "Tatonduk Outfitters Limited dba Everts Air Alaska dba Everts Air Cargo", + "nameCountry": "United States", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 7.8, + "airlineId": 635, + "callsign": "MERMAID", + "codeHub": "SGD", + "codeIataAirline": "6I", + "codeIcaoAirline": "MMD", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "248", + "nameAirline": "Air Alsie A/S", + "nameCountry": "Denmark", + "sizeAirline": 2, + "statusAirline": "active", + "type": "charter,virtual" + }, + { + "ageFleet": 8.4, + "airlineId": 636, + "callsign": "ORBEST", + "codeHub": "LIS", + "codeIataAirline": "6O", + "codeIcaoAirline": "OBS", + "codeIso2Country": "PT", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "Orbest S.A.", + "nameCountry": "Portugal", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.6, + "airlineId": 637, + "callsign": "SHAMWING", + "codeHub": "DAM", + "codeIataAirline": "6Q", + "codeIcaoAirline": "SAW", + "codeIso2Country": "SY", + "founding": 2009, + "iataPrefixAccounting": "386", + "nameAirline": "Cham Wings Airlines", + "nameCountry": "Syria", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.2, + "airlineId": 638, + "callsign": "MIRNY", + "codeHub": "MJZ", + "codeIataAirline": "6R", + "codeIcaoAirline": "DRU", + "codeIso2Country": "RU", + "founding": 1995, + "iataPrefixAccounting": "", + "nameAirline": "ALROSA Mirny Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 17.8, + "airlineId": 639, + "callsign": "AIR MANDALAY", + "codeHub": "RGN", + "codeIataAirline": "6T", + "codeIcaoAirline": "AMY", + "codeIso2Country": "MM", + "founding": 1994, + "iataPrefixAccounting": "", + "nameAirline": "Air Mandalay", + "nameCountry": "Myanmar", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.1, + "airlineId": 640, + "callsign": "BLUE CRANE", + "codeHub": "JNB", + "codeIataAirline": "7B", + "codeIcaoAirline": "FBC", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "562", + "nameAirline": "Fly Blue Crane (PTY) LTD", + "nameCountry": "South Africa", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.1, + "airlineId": 641, + "callsign": "WIND ROSE", + "codeHub": "KBP", + "codeIataAirline": "7W", + "codeIcaoAirline": "WRC", + "codeIso2Country": "UA", + "founding": 2007, + "iataPrefixAccounting": "461", + "nameAirline": "Wind Rose Aviation Company", + "nameCountry": "Ukraine", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 2.4, + "airlineId": 642, + "callsign": "MANN ROYAL", + "codeHub": "RGN", + "codeIataAirline": "7Y", + "codeIcaoAirline": "MYP", + "codeIso2Country": "MM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mann Yadanarpon Airlines", + "nameCountry": "Myanmar", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.2, + "airlineId": 643, + "callsign": "BERING AIR", + "codeHub": "OTZ", + "codeIataAirline": "8E", + "codeIcaoAirline": "BRG", + "codeIso2Country": "UM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bering Air Inc.", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.7, + "airlineId": 644, + "callsign": "", + "codeHub": "BKK", + "codeIataAirline": "8K", + "codeIcaoAirline": "KMI", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "K-Mile Air Co. Ltd", + "nameCountry": "Thailand", + "sizeAirline": 2, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 20.9, + "airlineId": 645, + "callsign": "GLACIER", + "codeHub": "YVR", + "codeIataAirline": "9M", + "codeIcaoAirline": "GLR", + "codeIso2Country": "CA", + "founding": 1987, + "iataPrefixAccounting": "634", + "nameAirline": "Central Mountain Air Ltd.", + "nameCountry": "Canada", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.7, + "airlineId": 646, + "callsign": "BLACKSTAR", + "codeHub": "ACC", + "codeIataAirline": "AW", + "codeIcaoAirline": "AFW", + "codeIso2Country": "GH", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "Africa World Airlines", + "nameCountry": "Ghana", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.2, + "airlineId": 647, + "callsign": "DREAMJET", + "codeHub": "CDG", + "codeIataAirline": "B0", + "codeIcaoAirline": "DJT", + "codeIso2Country": "FR", + "founding": 2014, + "iataPrefixAccounting": "2", + "nameAirline": "DreamJet SAS t/a La Compagnie", + "nameCountry": "France", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.8, + "airlineId": 648, + "callsign": "BHUTAN AIR", + "codeHub": "PBH", + "codeIataAirline": "B3", + "codeIcaoAirline": "BTN", + "codeIso2Country": "BT", + "founding": 2013, + "iataPrefixAccounting": "786", + "nameAirline": "Bhutan Airlines", + "nameCountry": "Bhutan", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 17.9, + "airlineId": 649, + "callsign": "GLOBAL CARGO", + "codeHub": "BTS", + "codeIataAirline": "CW", + "codeIcaoAirline": "CCC", + "codeIso2Country": "SK", + "founding": 2013, + "iataPrefixAccounting": "159", + "nameAirline": "Air Cargo Global s.r.o.", + "nameCountry": "Slovakia", + "sizeAirline": 2, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 25.0, + "airlineId": 650, + "callsign": "DALO AIRLINES", + "codeHub": "JIB", + "codeIataAirline": "D3", + "codeIcaoAirline": "DAO", + "codeIso2Country": "DJ", + "founding": 0, + "iataPrefixAccounting": "991", + "nameAirline": "Daallo Airlines", + "nameCountry": "Djibouti", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 27.8, + "airlineId": 651, + "callsign": "SEAIR", + "codeHub": "MNL", + "codeIataAirline": "DG", + "codeIcaoAirline": "SRQ", + "codeIso2Country": "PH", + "founding": 1994, + "iataPrefixAccounting": "931", + "nameAirline": "South East Asian Airlines", + "nameCountry": "Philippines", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.6, + "airlineId": 652, + "callsign": "WING ASIA", + "codeHub": "NGO", + "codeIataAirline": "DJ", + "codeIcaoAirline": "WAJ", + "codeIso2Country": "JP", + "founding": 2014, + "iataPrefixAccounting": "", + "nameAirline": "AirAsia Japan Co. Ltd.", + "nameCountry": "Japan", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.9, + "airlineId": 653, + "callsign": "MOLDCARGO", + "codeHub": "KIV", + "codeIataAirline": "F5", + "codeIcaoAirline": "ATG", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotranscargo", + "nameCountry": "Moldova", + "sizeAirline": 2, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 11.2, + "airlineId": 654, + "callsign": "", + "codeHub": "CAI", + "codeIataAirline": "FT", + "codeIcaoAirline": "FEG", + "codeIso2Country": "EG", + "founding": 2015, + "iataPrefixAccounting": "", + "nameAirline": "FlyEgypt", + "nameCountry": "Egypt", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.4, + "airlineId": 655, + "callsign": "DENIM", + "codeHub": "AMS", + "codeIataAirline": "G6", + "codeIcaoAirline": "DNM", + "codeIso2Country": "NL", + "founding": 1996, + "iataPrefixAccounting": "", + "nameAirline": "Denim Air", + "nameCountry": "Netherlands", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 24.1, + "airlineId": 656, + "callsign": "SKY CUBE", + "codeHub": "MIA", + "codeIataAirline": "GG", + "codeIcaoAirline": "KYE", + "codeIso2Country": "UM", + "founding": 2009, + "iataPrefixAccounting": "576", + "nameAirline": "Sky Lease Cargo", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 2, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 17.8, + "airlineId": 657, + "callsign": "RUSSIAN SKY", + "codeHub": "VKO", + "codeIataAirline": "I4*", + "codeIcaoAirline": "RSY", + "codeIso2Country": "RU", + "founding": 2009, + "iataPrefixAccounting": "", + "nameAirline": "I Fly", + "nameCountry": "Russia", + "sizeAirline": 2, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 14.3, + "airlineId": 658, + "callsign": "IRAERO", + "codeHub": "IKT", + "codeIataAirline": "IO", + "codeIcaoAirline": "IAE", + "codeIso2Country": "RU", + "founding": 2011, + "iataPrefixAccounting": "154", + "nameAirline": "Closed Joint Stock Company \" IrAero\"", + "nameCountry": "Russia", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.9, + "airlineId": 659, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "IQ", + "codeIcaoAirline": "", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Qazaq Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.1, + "airlineId": 660, + "callsign": "JETGO", + "codeHub": "BNE", + "codeIataAirline": "JG", + "codeIcaoAirline": "JGO", + "codeIso2Country": "AU", + "founding": 2011, + "iataPrefixAccounting": "", + "nameAirline": "JetGo", + "nameCountry": "Australia", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.6, + "airlineId": 661, + "callsign": "KALITTA", + "codeHub": "YIP", + "codeIataAirline": "K9", + "codeIcaoAirline": "KFS", + "codeIso2Country": "US", + "founding": 2001, + "iataPrefixAccounting": "571", + "nameAirline": "Kalitta Charters, L.L.C.", + "nameCountry": "United States", + "sizeAirline": 2, + "statusAirline": "active", + "type": "cargo,charter" + }, + { + "ageFleet": 10.7, + "airlineId": 662, + "callsign": "PATAGONIA", + "codeHub": "LIM", + "codeIataAirline": "LP", + "codeIcaoAirline": "LPE", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "544", + "nameAirline": "Lan Peru", + "nameCountry": "Peru", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.5, + "airlineId": 663, + "callsign": "AVIASTAR", + "codeHub": "HLP", + "codeIataAirline": "MV", + "codeIcaoAirline": "VIT", + "codeIso2Country": "ID", + "founding": 2003, + "iataPrefixAccounting": "", + "nameAirline": "Aviastar", + "nameCountry": "Indonesia", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 23.6, + "airlineId": 664, + "callsign": "AL-NASER", + "codeHub": "BGW", + "codeIataAirline": "NR", + "codeIcaoAirline": "MHK", + "codeIso2Country": "IQ", + "founding": 2009, + "iataPrefixAccounting": "503", + "nameAirline": "Al-Naser Airlines", + "nameCountry": "Iraq", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 16.9, + "airlineId": 665, + "callsign": "ANTRAK", + "codeHub": "ACC", + "codeIataAirline": "O4", + "codeIcaoAirline": "ABV", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Antrak Air", + "nameCountry": "Ghana", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.8, + "airlineId": 666, + "callsign": "ORIENTAL BRIDGE", + "codeHub": "NGS", + "codeIataAirline": "OC", + "codeIcaoAirline": "ORC", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oriental Air Bridge Co., Ltd.", + "nameCountry": "Japan", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 20.5, + "airlineId": 667, + "callsign": "GREENHEART", + "codeHub": "KIN", + "codeIataAirline": "OJ", + "codeIcaoAirline": "FJM", + "codeIso2Country": "JM", + "founding": 2012, + "iataPrefixAccounting": "266", + "nameAirline": "Fly Jamaica Airways", + "nameCountry": "Jamaica", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 23.4, + "airlineId": 668, + "callsign": "SOSA", + "codeHub": "LCE", + "codeIataAirline": "P4", + "codeIcaoAirline": "NSO", + "codeIso2Country": "HN", + "founding": 2004, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Sosa", + "nameCountry": "Honduras", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 11.4, + "airlineId": 669, + "callsign": "PRIVATAIR", + "codeHub": "GVA", + "codeIataAirline": "PV", + "codeIcaoAirline": "PTI", + "codeIso2Country": "CH", + "founding": 1977, + "iataPrefixAccounting": "", + "nameAirline": "PrivatAir", + "nameCountry": "Switzerland", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 29.8, + "airlineId": 670, + "callsign": "SKYTRANS", + "codeHub": "CNS", + "codeIataAirline": "Q6", + "codeIcaoAirline": "SKP", + "codeIso2Country": "AU", + "founding": 1990, + "iataPrefixAccounting": "", + "nameAirline": "Skytrans", + "nameCountry": "Australia", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.0, + "airlineId": 671, + "callsign": "GREEN SKY", + "codeHub": "DMK", + "codeIataAirline": "RK", + "codeIcaoAirline": "RCT", + "codeIso2Country": "TH", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "R Airlines", + "nameCountry": "Thailand", + "sizeAirline": 2, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 20.0, + "airlineId": 672, + "callsign": "SILK CARGO", + "codeHub": "TAS", + "codeIataAirline": "S9*", + "codeIcaoAirline": "URS", + "codeIso2Country": "UZ", + "founding": 0, + "iataPrefixAccounting": "939", + "nameAirline": "Silk Road Cargo Business", + "nameCountry": "Uzbekistan", + "sizeAirline": 2, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 8.2, + "airlineId": 673, + "callsign": "SARATOV AIR", + "codeHub": "", + "codeIataAirline": "SOV", + "codeIcaoAirline": "6W", + "codeIso2Country": "RU", + "founding": 1993, + "iataPrefixAccounting": "", + "nameAirline": "Saratov Airlines", + "nameCountry": "Russia", + "sizeAirline": 2, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 29.1, + "airlineId": 674, + "callsign": "RAYA EXPRESS", + "codeHub": "SZB", + "codeIataAirline": "TH", + "codeIcaoAirline": "RMY", + "codeIso2Country": "MY", + "founding": 2014, + "iataPrefixAccounting": "539", + "nameAirline": "Raya Airways Sdn. Bhd. dba Raya Airways", + "nameCountry": "Malaysia", + "sizeAirline": 2, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 26.4, + "airlineId": 675, + "callsign": "UKRAINE", + "codeHub": "KBP", + "codeIataAirline": "UF", + "codeIcaoAirline": "UKM", + "codeIso2Country": "UA", + "founding": 1998, + "iataPrefixAccounting": "828", + "nameAirline": "UM Air", + "nameCountry": "Ukraine", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.4, + "airlineId": 676, + "callsign": "", + "codeHub": "", + "codeIataAirline": "VPI", + "codeIcaoAirline": "", + "codeIso2Country": "MV", + "founding": 2011, + "iataPrefixAccounting": "", + "nameAirline": "FlyMe Villa Air", + "nameCountry": "Maldives", + "sizeAirline": 2, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 10.7, + "airlineId": 677, + "callsign": "", + "codeHub": "SAL", + "codeIataAirline": "VU", + "codeIcaoAirline": "VAR", + "codeIso2Country": "SV", + "founding": 2013, + "iataPrefixAccounting": "100", + "nameAirline": "Vuelos Economicos Centroamericanos", + "nameCountry": "El Salvador", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.6, + "airlineId": 678, + "callsign": "WINGS LEBANON", + "codeHub": "BEY", + "codeIataAirline": "W7", + "codeIcaoAirline": "WLB", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wings of Lebanon S.a.l", + "nameCountry": "Lebanon", + "sizeAirline": 2, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 1.7, + "airlineId": 679, + "callsign": "", + "codeHub": "LCE", + "codeIataAirline": "WC", + "codeIcaoAirline": "ISV", + "codeIso2Country": "HN", + "founding": 1981, + "iataPrefixAccounting": "506", + "nameAirline": "Islena de Inversiones S.A. de C.V. dba Islena Airlines", + "nameCountry": "Honduras", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.2, + "airlineId": 680, + "callsign": "ZIMEX", + "codeHub": "ZRH", + "codeIataAirline": "XM", + "codeIcaoAirline": "IMX", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zimex Aviation Ltd", + "nameCountry": "Switzerland", + "sizeAirline": 2, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 10.9, + "airlineId": 681, + "callsign": "RED PHOENIX", + "codeHub": "DPS", + "codeIataAirline": "XT", + "codeIcaoAirline": "IDX", + "codeIso2Country": "ID", + "founding": 2014, + "iataPrefixAccounting": "", + "nameAirline": "Indonesia AirAsia X", + "nameCountry": "Indonesia", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.7, + "airlineId": 682, + "callsign": "", + "codeHub": "EBL", + "codeIataAirline": "Z4", + "codeIcaoAirline": "GZQ", + "codeIso2Country": "IQ", + "founding": 2013, + "iataPrefixAccounting": "541", + "nameAirline": "Zagros Jet", + "nameCountry": "Iraq", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 20.2, + "airlineId": 683, + "callsign": "SKY ANGKOR", + "codeHub": "REP", + "codeIataAirline": "ZA", + "codeIcaoAirline": "SWM", + "codeIso2Country": "KH", + "founding": 2010, + "iataPrefixAccounting": "969", + "nameAirline": "Sky Angkor Airlines", + "nameCountry": "Cambodia", + "sizeAirline": 2, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 13.3, + "airlineId": 684, + "callsign": "AIR MANAS", + "codeHub": "FRU", + "codeIataAirline": "ZM", + "codeIcaoAirline": "MBB", + "codeIso2Country": "KG", + "founding": 2012, + "iataPrefixAccounting": "887", + "nameAirline": "Air Manas dba Air Manas ltd. Air Company", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 2, + "statusAirline": "active", + "type": "charter,division" + }, + { + "ageFleet": 19.0, + "airlineId": 685, + "callsign": "AZMAN AIR", + "codeHub": "KAN", + "codeIataAirline": "ZQ", + "codeIcaoAirline": "AZM", + "codeIso2Country": "NG", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "Azman Air", + "nameCountry": "Nigeria", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 35.8, + "airlineId": 686, + "callsign": "SOLARCARGO", + "codeHub": "VLN", + "codeIataAirline": "4S*", + "codeIcaoAirline": "OLC", + "codeIso2Country": "VE", + "founding": 2001, + "iataPrefixAccounting": "644", + "nameAirline": "Solar Cargo", + "nameCountry": "Venezuela", + "sizeAirline": 1, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 12.3, + "airlineId": 687, + "callsign": "SLOVAKTRAVE", + "codeHub": "BTS", + "codeIataAirline": "6D", + "codeIcaoAirline": "TVQ", + "codeIso2Country": "SK", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "Travel Service Slovakia", + "nameCountry": "Slovakia", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 32.8, + "airlineId": 688, + "callsign": "ROVOS", + "codeHub": "", + "codeIataAirline": "6P", + "codeIcaoAirline": "VOS", + "codeIso2Country": "KW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gryphon Air", + "nameCountry": "Kuwait", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 8.1, + "airlineId": 689, + "callsign": "KOGALYM", + "codeHub": "KGP", + "codeIataAirline": "7K", + "codeIcaoAirline": "KGL", + "codeIso2Country": "RU", + "founding": 2012, + "iataPrefixAccounting": "", + "nameAirline": "Kolavia", + "nameCountry": "Russia", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 25.7, + "airlineId": 690, + "callsign": "MAYAIR", + "codeHub": "CUN", + "codeIataAirline": "7M", + "codeIcaoAirline": "MYI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "10", + "nameAirline": "Mayair S.A. de C.V.", + "nameCountry": "Mexico", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.1, + "airlineId": 691, + "callsign": "TRAVELLER", + "codeHub": "BUD", + "codeIataAirline": "7O", + "codeIcaoAirline": "TVL", + "codeIso2Country": "HU", + "founding": 2001, + "iataPrefixAccounting": "", + "nameAirline": "Travel Service Hungary", + "nameCountry": "Hungary", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 28.3, + "airlineId": 692, + "callsign": "AERO TRANSAM", + "codeHub": "GYE", + "codeIataAirline": "7T", + "codeIcaoAirline": "RTM", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "144", + "nameAirline": "Trans AM", + "nameCountry": "Ecuador", + "sizeAirline": 1, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 24.8, + "airlineId": 693, + "callsign": "ASTROAIR", + "codeHub": "SFS", + "codeIataAirline": "8Y", + "codeIcaoAirline": "AAV", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Astro Air International Inc.", + "nameCountry": "Philippines", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 25.8, + "airlineId": 694, + "callsign": "KAIR", + "codeHub": "BOS", + "codeIataAirline": "9K", + "codeIcaoAirline": "KAP", + "codeIso2Country": "UM", + "founding": 1989, + "iataPrefixAccounting": "306", + "nameAirline": "Hyannis Air Service, Inc. d/b/a Cap", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.4, + "airlineId": 695, + "callsign": "DUMA", + "codeHub": "NBO", + "codeIataAirline": "B5", + "codeIcaoAirline": "EXZ", + "codeIso2Country": "KE", + "founding": 2015, + "iataPrefixAccounting": "305", + "nameAirline": "East African Safari Air Express Ltd", + "nameCountry": "Kenya", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 30.5, + "airlineId": 696, + "callsign": "ERITREAN", + "codeHub": "ASM", + "codeIataAirline": "B8", + "codeIcaoAirline": "ERT", + "codeIso2Country": "ER", + "founding": 2002, + "iataPrefixAccounting": "637", + "nameAirline": "Eritrean Airlines s.c.", + "nameCountry": "Eritrea", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 30.7, + "airlineId": 697, + "callsign": "", + "codeHub": "DMK", + "codeIataAirline": "DM", + "codeIcaoAirline": "DEX", + "codeIso2Country": "TH", + "founding": 2014, + "iataPrefixAccounting": "", + "nameAirline": "Asian Air Company Limited", + "nameCountry": "Thailand", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 9.0, + "airlineId": 698, + "callsign": "AIR ARABIA", + "codeHub": "HBE", + "codeIataAirline": "E5", + "codeIcaoAirline": "RBG", + "codeIso2Country": "EG", + "founding": 2010, + "iataPrefixAccounting": "844", + "nameAirline": "Air Arabia Egypt", + "nameCountry": "Egypt", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.8, + "airlineId": 699, + "callsign": "GALILEO", + "codeHub": "BTS", + "codeIataAirline": "ED", + "codeIcaoAirline": "AXE", + "codeIso2Country": "SK", + "founding": 2010, + "iataPrefixAccounting": "913", + "nameAirline": "AirExplore, s.r.o.", + "nameCountry": "Slovakia", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 24.1, + "airlineId": 700, + "callsign": "EGYPTIAN BIRD", + "codeHub": "CAI", + "codeIataAirline": "EO", + "codeIcaoAirline": "AGY", + "codeIso2Country": "EG", + "founding": 2013, + "iataPrefixAccounting": "484", + "nameAirline": "Air Go Egypt", + "nameCountry": "Egypt", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 32.8, + "airlineId": 701, + "callsign": "ALLCONGO", + "codeHub": "FIH", + "codeIataAirline": "EO*", + "codeIcaoAirline": "ALX", + "codeIso2Country": "CD", + "founding": 2012, + "iataPrefixAccounting": "663", + "nameAirline": "FlyCongo", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.5, + "airlineId": 702, + "callsign": "FLIGHTCRAFT", + "codeHub": "YLW", + "codeIataAirline": "FK", + "codeIcaoAirline": "KFA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "758", + "nameAirline": "Kelowna Flightcraft Air Charter", + "nameCountry": "Canada", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 30.3, + "airlineId": 703, + "callsign": "AIROR", + "codeHub": "RAR", + "codeIataAirline": "GZ", + "codeIcaoAirline": "RAR", + "codeIso2Country": "CK", + "founding": 1978, + "iataPrefixAccounting": "755", + "nameAirline": "Air Rarotonga", + "nameCountry": "Cook Islands", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 1.0, + "airlineId": 704, + "callsign": "HIMALAYA", + "codeHub": "KTM", + "codeIataAirline": "H9", + "codeIcaoAirline": "HIM", + "codeIso2Country": "NP", + "founding": 2016, + "iataPrefixAccounting": "769", + "nameAirline": "Himalaya Airlines Pvt. Ltd.", + "nameCountry": "Nepal", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.1, + "airlineId": 705, + "callsign": "TASMAN CARGO", + "codeHub": "SYD", + "codeIataAirline": "HJ", + "codeIcaoAirline": "TMN", + "codeIso2Country": "AU", + "founding": 2008, + "iataPrefixAccounting": "", + "nameAirline": "Tasman Cargo Airlines PTY LTD", + "nameCountry": "Australia", + "sizeAirline": 1, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 21.8, + "airlineId": 706, + "callsign": "NORTHWRIGHT", + "codeHub": "YVQ", + "codeIataAirline": "HW", + "codeIcaoAirline": "NWL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North-Wright Airways Ltd.", + "nameCountry": "Canada", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.3, + "airlineId": 707, + "callsign": "SILVERBIRD", + "codeHub": "ABV", + "codeIataAirline": "IS", + "codeIcaoAirline": "LVB", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IRS Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.3, + "airlineId": 708, + "callsign": "KAN AIR", + "codeHub": "CNX", + "codeIataAirline": "K8", + "codeIcaoAirline": "KND", + "codeIso2Country": "TH", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "Kannithi Aviation Company Limited d Kan Air", + "nameCountry": "Thailand", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.1, + "airlineId": 709, + "callsign": "KEY LIME", + "codeHub": "APA", + "codeIataAirline": "KG", + "codeIcaoAirline": "LYM", + "codeIso2Country": "US", + "founding": 1997, + "iataPrefixAccounting": "", + "nameAirline": "Key Lime Air Corporation", + "nameCountry": "United States", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 28.9, + "airlineId": 710, + "callsign": "SALAZAR", + "codeHub": "GUA", + "codeIataAirline": "L3", + "codeIcaoAirline": "JOS", + "codeIso2Country": "GT", + "founding": 1991, + "iataPrefixAccounting": "947", + "nameAirline": "DHL de Guatemala S.A.", + "nameCountry": "Guatemala", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 9.5, + "airlineId": 711, + "callsign": "TRIPLE-A", + "codeHub": "NTE", + "codeIataAirline": "L5", + "codeIcaoAirline": "TLB", + "codeIso2Country": "FR", + "founding": 2015, + "iataPrefixAccounting": "402", + "nameAirline": "Atlantique Air Assistance", + "nameCountry": "France", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 20.8, + "airlineId": 712, + "callsign": "", + "codeHub": "POG", + "codeIataAirline": "L8", + "codeIcaoAirline": "EKG", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "348", + "nameAirline": "Afric Aviation", + "nameCountry": "Gabon", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.6, + "airlineId": 713, + "callsign": "MASAIR", + "codeHub": "MEX", + "codeIataAirline": "M7", + "codeIcaoAirline": "MAA", + "codeIso2Country": "MX", + "founding": 1991, + "iataPrefixAccounting": "865", + "nameAirline": "MAS AIR", + "nameCountry": "Mexico", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 23.0, + "airlineId": 714, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ND", + "codeIcaoAirline": "", + "codeIso2Country": "PG", + "founding": 0, + "iataPrefixAccounting": "159", + "nameAirline": "Airlink", + "nameCountry": "Papua New Guinea", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 22.9, + "airlineId": 715, + "callsign": "", + "codeHub": "MJI", + "codeIataAirline": "OG", + "codeIcaoAirline": "GHT", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ghadames Air Transport", + "nameCountry": "Libya", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.3, + "airlineId": 716, + "callsign": "PROFLIGHT-ZAMBIA", + "codeHub": "LUN", + "codeIataAirline": "P0", + "codeIcaoAirline": "PFZ", + "codeIso2Country": "ZM", + "founding": 1991, + "iataPrefixAccounting": "659", + "nameAirline": "Proflight Commuter Services LTD", + "nameCountry": "Zambia", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 26.2, + "airlineId": 717, + "callsign": "SUNEXPRES", + "codeHub": "MYD", + "codeIataAirline": "P2", + "codeIcaoAirline": "XAK", + "codeIso2Country": "KE", + "founding": 1987, + "iataPrefixAccounting": "853", + "nameAirline": "AirKenya Express Limited", + "nameCountry": "Kenya", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.5, + "airlineId": 718, + "callsign": "PEOPLES", + "codeHub": "ACH", + "codeIataAirline": "PE", + "codeIcaoAirline": "PEV", + "codeIso2Country": "AT", + "founding": 2010, + "iataPrefixAccounting": "335", + "nameAirline": "Altenrhein Luftfahrt GmbH", + "nameCountry": "Austria", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 15.4, + "airlineId": 719, + "callsign": "PRIMERA", + "codeHub": "CPH", + "codeIataAirline": "PF", + "codeIcaoAirline": "PRI", + "codeIso2Country": "DK", + "founding": 2003, + "iataPrefixAccounting": "", + "nameAirline": "Primera Air Scandinavia A/S", + "nameCountry": "Denmark", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 7.3, + "airlineId": 720, + "callsign": "SAINT PIERRE", + "codeHub": "FSP", + "codeIataAirline": "PJ", + "codeIcaoAirline": "SPM", + "codeIso2Country": "PM", + "founding": 0, + "iataPrefixAccounting": "638", + "nameAirline": "Air Saint Pierre", + "nameCountry": "Saint Pierre and Miquelon", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.2, + "airlineId": 721, + "callsign": "SPANISH", + "codeHub": "MAD", + "codeIataAirline": "PU", + "codeIcaoAirline": "PUE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "663", + "nameAirline": "Plus Ultra Lineas Aereas, S. A.", + "nameCountry": "Spain", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 6.6, + "airlineId": 722, + "callsign": "CIMBER", + "codeHub": "CPH", + "codeIataAirline": "QA", + "codeIcaoAirline": "CIM", + "codeIso2Country": "DK", + "founding": 2012, + "iataPrefixAccounting": "647", + "nameAirline": "Cimber A/S", + "nameCountry": "Denmark", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.4, + "airlineId": 723, + "callsign": "ALTYN AVIA", + "codeHub": "FRU", + "codeIataAirline": "QH", + "codeIcaoAirline": "LYN", + "codeIso2Country": "KG", + "founding": 1992, + "iataPrefixAccounting": "138", + "nameAirline": "OJSC Air Kyrgyzstan", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.3, + "airlineId": 724, + "callsign": "AIR ARMENIA", + "codeHub": "EVN", + "codeIataAirline": "QN", + "codeIcaoAirline": "ARR", + "codeIso2Country": "AM", + "founding": 2003, + "iataPrefixAccounting": "907", + "nameAirline": "Air Armenia", + "nameCountry": "Armenia", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.5, + "airlineId": 725, + "callsign": "QUIK LIFT", + "codeHub": "BLR", + "codeIataAirline": "QO", + "codeIcaoAirline": "FQA", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "723", + "nameAirline": "Quikjet Cargo Airlines Pvt. Ltd", + "nameCountry": "India", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 22.2, + "airlineId": 726, + "callsign": "RIO LINHAS AEREAS", + "codeHub": "CWB", + "codeIataAirline": "R3*", + "codeIcaoAirline": "RIO", + "codeIso2Country": "BR", + "founding": 2010, + "iataPrefixAccounting": "970", + "nameAirline": "RIO Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 1, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 27.6, + "airlineId": 727, + "callsign": "", + "codeHub": "PAP", + "codeIataAirline": "S6", + "codeIcaoAirline": "KSZ", + "codeIso2Country": "HT", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "Sunrise Airways S.A.", + "nameCountry": "Haiti", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 26.7, + "airlineId": 728, + "callsign": "TUS AIR", + "codeHub": "LCA", + "codeIataAirline": "U8", + "codeIcaoAirline": "CYF", + "codeIso2Country": "CY", + "founding": 2015, + "iataPrefixAccounting": "", + "nameAirline": "TUS Airways Ltd.", + "nameCountry": "Cyprus", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.8, + "airlineId": 729, + "callsign": "HEX AIRLINE", + "codeHub": "LPY", + "codeIataAirline": "UD", + "codeIcaoAirline": "HER", + "codeIso2Country": "FR", + "founding": 1991, + "iataPrefixAccounting": "848", + "nameAirline": "Hex'Air", + "nameCountry": "France", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.7, + "airlineId": 730, + "callsign": "ATRAN", + "codeHub": "DME", + "codeIataAirline": "V8", + "codeIcaoAirline": "VAS", + "codeIso2Country": "RU", + "founding": 1942, + "iataPrefixAccounting": "868", + "nameAirline": "OOO \"Atran \"", + "nameCountry": "Russia", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 27.8, + "airlineId": 731, + "callsign": "AIR VALLEE", + "codeHub": "RMI", + "codeIataAirline": "VK", + "codeIcaoAirline": "RVL", + "codeIso2Country": "IT", + "founding": 1987, + "iataPrefixAccounting": "965", + "nameAirline": "Air Vallee S.p.A.", + "nameCountry": "Italy", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled,virtual" + }, + { + "ageFleet": 16.8, + "airlineId": 732, + "callsign": "AIR BAGAN", + "codeHub": "RGN", + "codeIataAirline": "W9", + "codeIcaoAirline": "JAB", + "codeIso2Country": "MM", + "founding": 2004, + "iataPrefixAccounting": "17", + "nameAirline": "Air Bagan Ltd.", + "nameCountry": "Myanmar", + "sizeAirline": 1, + "statusAirline": "active", + "type": "virtual" + }, + { + "ageFleet": 17.2, + "airlineId": 733, + "callsign": "LAB AIR", + "codeHub": "YYR", + "codeIataAirline": "WJ", + "codeIcaoAirline": "LAL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "927", + "nameAirline": "Labrador Airways Limited", + "nameCountry": "Canada", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 34.3, + "airlineId": 734, + "callsign": "JETRAN", + "codeHub": "BBU", + "codeIataAirline": "WZ", + "codeIcaoAirline": "RRM", + "codeIso2Country": "RO", + "founding": 2006, + "iataPrefixAccounting": "", + "nameAirline": "JetranAir", + "nameCountry": "Romania", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 36.2, + "airlineId": 735, + "callsign": "ICARO", + "codeHub": "SEQU", + "codeIataAirline": "X8", + "codeIcaoAirline": "ICD", + "codeIso2Country": "EC", + "founding": 1971, + "iataPrefixAccounting": "545", + "nameAirline": "Icaro Express", + "nameCountry": "Ecuador", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 17.8, + "airlineId": 736, + "callsign": "KOREA EXPRESS", + "codeHub": "YNY", + "codeIataAirline": "XE", + "codeIcaoAirline": "KEA", + "codeIso2Country": "KE", + "founding": 2015, + "iataPrefixAccounting": "", + "nameAirline": "Korea Express Air", + "nameCountry": "Kenya", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 737, + "callsign": "PENTA", + "codeHub": "", + "codeIataAirline": "02", + "codeIcaoAirline": "CPB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Express", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 738, + "callsign": "GINTA", + "codeHub": "VNO", + "codeIataAirline": "0A", + "codeIcaoAirline": "GNT", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amber Air", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 739, + "callsign": "", + "codeHub": "", + "codeIataAirline": "0C*", + "codeIcaoAirline": "", + "codeIso2Country": "MU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IBL Aviation Ltd", + "nameCountry": "Mauritius", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 740, + "callsign": "PRIMEJET", + "codeHub": "ZRH", + "codeIataAirline": "0J", + "codeIcaoAirline": "PJZ", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "254", + "nameAirline": "Premium Jet", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 741, + "callsign": "JETCLUB", + "codeHub": "ZRH", + "codeIataAirline": "0J*", + "codeIcaoAirline": "JCS", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetclub", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 742, + "callsign": "KOKTA", + "codeHub": "KOV", + "codeIataAirline": "0K", + "codeIcaoAirline": "KRT", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircompany Kokshetau", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 743, + "callsign": "", + "codeHub": "ROR", + "codeIataAirline": "0P", + "codeIcaoAirline": "PPC", + "codeIso2Country": "PW", + "founding": 0, + "iataPrefixAccounting": "840", + "nameAirline": "Palau Asia Pacific Air", + "nameCountry": "Palau", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 744, + "callsign": "", + "codeHub": "", + "codeIataAirline": "0Q", + "codeIcaoAirline": "HYD", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hydro - Quebec", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 745, + "callsign": "WEST CARIBBEAN", + "codeHub": "SJO", + "codeIataAirline": "0W", + "codeIcaoAirline": "WCR", + "codeIso2Country": "CR", + "founding": 0, + "iataPrefixAccounting": "791", + "nameAirline": "West Caribbean Costa Rica", + "nameCountry": "Costa Rica", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 746, + "callsign": "", + "codeHub": "KTM", + "codeIataAirline": "0Y", + "codeIcaoAirline": "", + "codeIso2Country": "NP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yeti Airlines International", + "nameCountry": "Nepal", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 747, + "callsign": "AMADEUS", + "codeHub": "", + "codeIataAirline": "1A", + "codeIcaoAirline": "AGT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "790", + "nameAirline": "Amadeus IT Group SA", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 748, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1B", + "codeIcaoAirline": "", + "codeIso2Country": "SG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Abacus International", + "nameCountry": "Singapore", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 749, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1B", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Airways Cargo", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 750, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1B", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "776", + "nameAirline": "Sabre Asia Pacific Pte. Ltd.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 751, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1C", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Galileo Canada Distribution Systems", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 752, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1C", + "codeIcaoAirline": "", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EDS Information Business", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 753, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1C", + "codeIcaoAirline": "", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hewlett-Packard (Schweiz) GmbH", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 754, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1D", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Radixx Solutions International, Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 755, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1E", + "codeIcaoAirline": "", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Management Information System - Civil Aviation Administration of China", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 756, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1E", + "codeIcaoAirline": "", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "252", + "nameAirline": "Travelsky Technology Limited", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 757, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1F", + "codeIcaoAirline": "", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "788", + "nameAirline": "INFINI Travel Information, Inc.", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 758, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1G", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Travelport Global Distribution System B.V.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 759, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1G", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "773", + "nameAirline": "Travelport International Operations", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 760, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1G", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eva Airways Cargo", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 761, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1H", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asiana Airways Cargo", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 762, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1H", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "446", + "nameAirline": "JSC \"Sirena-Travel\"", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 763, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1H", + "codeIcaoAirline": "", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Siren-Travel", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 764, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1H", + "codeIcaoAirline": "", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comtech-N", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 765, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1H", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Advantis", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 766, + "callsign": "BELGOCHALLENGE", + "codeHub": "BRU", + "codeIataAirline": "1I", + "codeIcaoAirline": "CHG", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ChallengAir", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 767, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1I", + "codeIcaoAirline": "VRE", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Volare Airtransport", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 768, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1I", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sierra Nevada Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 769, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1J", + "codeIcaoAirline": "", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "835", + "nameAirline": "Axess International Network Inc.", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 770, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1K", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sutra Inc.", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 771, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1K", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Cross Distribution Systems", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 772, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1L", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dragonair Cargo", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 773, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1L", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Open Skies", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 774, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1L", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Navitaire Open Skies", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 775, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1M", + "codeIcaoAirline": "", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "538", + "nameAirline": "JSC Transport Automated Information Systems - TAIS", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 776, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1N", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "892", + "nameAirline": "Navitaire", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 777, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1N", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Via World Network", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 778, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1P", + "codeIcaoAirline": "WSP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "523", + "nameAirline": "Travelport / dba Worldspan", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 779, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1Q", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Indigo Treks", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 780, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1Q", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "InteliSys Aviation Systems (2013) I", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 781, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1Q", + "codeIcaoAirline": "", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Technological Corp. Sirena", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 782, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1R", + "codeIcaoAirline": "", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bird Information Systems", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 783, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1R", + "codeIcaoAirline": "", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hainan Phoenix Information Systems", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 784, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1S", + "codeIcaoAirline": "SBG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "153", + "nameAirline": "Sabre Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 785, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1S", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amadeus", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 786, + "callsign": "", + "codeHub": "DME", + "codeIataAirline": "1T", + "codeIcaoAirline": "ESL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Russian Sky", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 787, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1T", + "codeIcaoAirline": "", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PT Aerosystems Indonesia", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 788, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1T", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "T.I.A.S.", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 789, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1U", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "968", + "nameAirline": "ITA Software Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 790, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1U", + "codeIcaoAirline": "", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polyot Sirena", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 791, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1V", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "588", + "nameAirline": "Travelport / dba Galileo International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 792, + "callsign": "", + "codeHub": "BJL", + "codeIataAirline": "1W", + "codeIcaoAirline": "WAZ", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West African Link", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 793, + "callsign": "", + "codeHub": "KRR", + "codeIataAirline": "1W", + "codeIcaoAirline": "", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kubanturist", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 794, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1W", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sabre", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 795, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1W*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "World Air Leasing - Gambia", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 796, + "callsign": "GREECE AIRWAYS", + "codeHub": "", + "codeIataAirline": "1X", + "codeIcaoAirline": "GRE", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Greece Airways", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 797, + "callsign": "", + "codeHub": "BKG", + "codeIataAirline": "1X", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Branson Air Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 798, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1X", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GETS Markting Company", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 799, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1Y", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Electronic Data Systems Corporation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 800, + "callsign": "", + "codeHub": "", + "codeIataAirline": "1Z", + "codeIcaoAirline": "APD", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sabre Pacific", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 801, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2A", + "codeIcaoAirline": "DBB", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Deutsche Bahn AG", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 802, + "callsign": "AECA", + "codeHub": "GYE", + "codeIataAirline": "2A", + "codeIcaoAirline": "EAE", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AECA - Aeroservicios Ecuatorianos", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 803, + "callsign": "AEROCONDOR", + "codeHub": "LPCS", + "codeIataAirline": "2B", + "codeIcaoAirline": "ATA", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "88", + "nameAirline": "Aerocondor Transportes Aereos Lda.", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 804, + "callsign": "BUGAVIA", + "codeHub": "UUA", + "codeIataAirline": "2B", + "codeIcaoAirline": "BGM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ak Bars Aero", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 805, + "callsign": "", + "codeHub": "EIS", + "codeIataAirline": "2B", + "codeIcaoAirline": "", + "codeIso2Country": "VG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Caribbean Airways", + "nameCountry": "British Virgin Islands", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 806, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2B", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Albawings", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 807, + "callsign": "", + "codeHub": "YIP", + "codeIataAirline": "2C", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Cargo Xpress", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 808, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2C", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SNCF", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 809, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2C*", + "codeIcaoAirline": "TGV", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SNCF", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 810, + "callsign": "WHITE SWAN", + "codeHub": "OGZ", + "codeIataAirline": "2D", + "codeIcaoAirline": "ALH", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alania", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 811, + "callsign": "SEAGULL", + "codeHub": "DBV", + "codeIataAirline": "2D", + "codeIcaoAirline": "DBK", + "codeIso2Country": "HR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dubrovnik Airline", + "nameCountry": "Croatia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 812, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2D", + "codeIcaoAirline": "DNM", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Demin Air", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 813, + "callsign": "AIR EXPORTS", + "codeHub": "", + "codeIataAirline": "2E", + "codeIcaoAirline": "EIX", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ireland Airways", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 814, + "callsign": "PHOENIX SHARJAH", + "codeHub": "SHJ", + "codeIataAirline": "2E", + "codeIcaoAirline": "PHW", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ave.com", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 815, + "callsign": "SKY CABS", + "codeHub": "", + "codeIataAirline": "2E", + "codeIcaoAirline": "SCB", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Cabs", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 816, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2E", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Smokey Bay Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 817, + "callsign": "", + "codeHub": "HOM", + "codeIataAirline": "2E*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 1989, + "iataPrefixAccounting": "", + "nameAirline": "Smokey Bay Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 818, + "callsign": "AFRINAT", + "codeHub": "BJL", + "codeIataAirline": "2F", + "codeIcaoAirline": "AFU", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Afrinat International", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 819, + "callsign": "FRONTIER-AIR", + "codeHub": "FAI", + "codeIataAirline": "2F", + "codeIcaoAirline": "FTA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "517", + "nameAirline": "Frontier Flying Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 820, + "callsign": "", + "codeHub": "OIIP", + "codeIataAirline": "2F", + "codeIcaoAirline": "IRP", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "10", + "nameAirline": "Payam Aviation Services", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 821, + "callsign": "SARMA", + "codeHub": "IKT", + "codeIataAirline": "2G", + "codeIcaoAirline": "AGU", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "735", + "nameAirline": "Open Joint Stock Company \"Angara Airlines\"", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 822, + "callsign": "DEBONAIR", + "codeHub": "LTN", + "codeIataAirline": "2G", + "codeIcaoAirline": "DEB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Debonair Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 823, + "callsign": "MARINER", + "codeHub": "RNT", + "codeIataAirline": "2G*", + "codeIcaoAirline": "MRR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "San Juan Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 824, + "callsign": "", + "codeHub": "KAN", + "codeIataAirline": "2H", + "codeIcaoAirline": "HML", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hamsal Air Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 825, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2H", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "56", + "nameAirline": "Thalys International", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 826, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2H*", + "codeIcaoAirline": "", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thalys International", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 827, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2J*", + "codeIcaoAirline": "CHY", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "China Cargo Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 828, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2K", + "codeIcaoAirline": "KHA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "135 Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 829, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2K*", + "codeIcaoAirline": "", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "KLM (DCS)", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 830, + "callsign": "", + "codeHub": "PRA", + "codeIataAirline": "2L", + "codeIcaoAirline": "", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LAER - Lineas Aereas Entre Rios", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 831, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2L", + "codeIcaoAirline": "", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas Entre Rios Sociedad Del Estado", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 832, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2L", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Karlog Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 833, + "callsign": "BOL", + "codeHub": "LPB", + "codeIataAirline": "2L*", + "codeIcaoAirline": "BOL", + "codeIso2Country": "BO", + "founding": 0, + "iataPrefixAccounting": "901", + "nameAirline": "Transportes Aereos Bolivianos (TAB)", + "nameCountry": "Bolivia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 834, + "callsign": "MOLDAVIAN", + "codeHub": "KIV", + "codeIataAirline": "2M", + "codeIcaoAirline": "MDV", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "860", + "nameAirline": "Moldavian Airlines", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 835, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2N", + "codeIcaoAirline": "", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "D'Ayiti", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 836, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2N*", + "codeIcaoAirline": "", + "codeIso2Country": "MW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Starwelt Trans Lloyd Cargo", + "nameCountry": "Malawi", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 837, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2N*", + "codeIcaoAirline": "", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Starwelt Airways", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 838, + "callsign": "", + "codeHub": "FNA", + "codeIataAirline": "2O", + "codeIcaoAirline": "RNE", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Salone", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 839, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2O", + "codeIcaoAirline": "RNE", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Redemption Inc.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 840, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2O*", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Redemption Inc.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 841, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2P*", + "codeIcaoAirline": "", + "codeIso2Country": "PR", + "founding": 0, + "iataPrefixAccounting": "902", + "nameAirline": "Puerto Rico Air Management Service Inc", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 842, + "callsign": "NIGHT CARGO", + "codeHub": "MKE", + "codeIataAirline": "2Q", + "codeIcaoAirline": "SNC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "883", + "nameAirline": "Air Cargo Carriers, LLC.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 843, + "callsign": "", + "codeHub": "BMA", + "codeIataAirline": "2Q", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Stockholmsplanet", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 844, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2Q", + "codeIcaoAirline": "", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Millair", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 845, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2Q", + "codeIcaoAirline": "", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pinair", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 846, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2Q", + "codeIcaoAirline": "", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Aviatransport Corporation Rusavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 847, + "callsign": "", + "codeHub": "BMA", + "codeIataAirline": "2Q*", + "codeIcaoAirline": "ETS", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avitrans Nordic AB", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 848, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2Q*", + "codeIcaoAirline": "", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nuovo Trasporto Viaggiatori", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 849, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2R", + "codeIcaoAirline": "VRR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VIA Rail Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 850, + "callsign": "KINDA", + "codeHub": "DAM", + "codeIataAirline": "2S", + "codeIcaoAirline": "KJA", + "codeIso2Country": "SY", + "founding": 0, + "iataPrefixAccounting": "338", + "nameAirline": "Kinda Airlines", + "nameCountry": "Syria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 851, + "callsign": "SANDY ISLE", + "codeHub": "", + "codeIataAirline": "2S", + "codeIcaoAirline": "SDY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "579", + "nameAirline": "Island Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 852, + "callsign": "SUNNY", + "codeHub": "BKK", + "codeIataAirline": "2S", + "codeIcaoAirline": "SUW", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunny Airways", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 853, + "callsign": "SATGURAIR", + "codeHub": "ROB", + "codeIataAirline": "2S", + "codeIcaoAirline": "TGR", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Satgur Air Transport", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 854, + "callsign": "", + "codeHub": "SSG", + "codeIataAirline": "2S", + "codeIcaoAirline": "", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Equatorial Airlines", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 855, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2S", + "codeIcaoAirline": "", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "315", + "nameAirline": "Star Equatorial Airlines", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 856, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2S*", + "codeIcaoAirline": "", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Satgur Air Transport", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 857, + "callsign": "", + "codeHub": "TIP", + "codeIataAirline": "2T", + "codeIcaoAirline": "ANH", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alajnihah Airways", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 858, + "callsign": "ELITE", + "codeHub": "YYZ", + "codeIataAirline": "2T", + "codeIcaoAirline": "CMM", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canada 3000 Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 859, + "callsign": "TULPA", + "codeHub": "", + "codeIataAirline": "2T", + "codeIcaoAirline": "TUX", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tulpar Air Service", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 860, + "callsign": "", + "codeHub": "PTY", + "codeIataAirline": "2T", + "codeIcaoAirline": "", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Panama", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 861, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2T*", + "codeIcaoAirline": "HAM", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Haiti Ambassador Airlines", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 862, + "callsign": "ECHO ROMEO", + "codeHub": "TLV", + "codeIataAirline": "2U", + "codeIcaoAirline": "ERO", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun d'Or International Airlines", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 863, + "callsign": "FUTURE EXPRESS", + "codeHub": "CKY", + "codeIataAirline": "2U", + "codeIcaoAirline": "GIP", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "454", + "nameAirline": "Air Guinee Express", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 864, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2U", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunair Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 865, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2V", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "554", + "nameAirline": "Amtrak", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 866, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2V*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amtrak", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 867, + "callsign": "WELCOMEAIR", + "codeHub": "INN", + "codeIataAirline": "2W", + "codeIcaoAirline": "WLC", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Welcome Air", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 868, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2W", + "codeIcaoAirline": "", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Midland Airlines", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 869, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2W", + "codeIcaoAirline": "", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wairarapa Airlines", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 870, + "callsign": "AIR ANDAMAN", + "codeHub": "DMK", + "codeIataAirline": "2Y", + "codeIcaoAirline": "ADW", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Andaman", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 871, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2Y", + "codeIcaoAirline": "", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Kazakstan", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 872, + "callsign": "INDO", + "codeHub": "", + "codeIataAirline": "2Y*", + "codeIcaoAirline": "MY", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "585", + "nameAirline": "My Indo Airlines", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 873, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2Y*", + "codeIcaoAirline": "", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ULD Rental", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 874, + "callsign": "", + "codeHub": "SVO", + "codeIataAirline": "2Z", + "codeIcaoAirline": "VSO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VASO Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 875, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2Z*", + "codeIcaoAirline": "", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Voronszh Aircraft", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 876, + "callsign": "", + "codeHub": "", + "codeIataAirline": "2Z*", + "codeIcaoAirline": "", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Express Rail Link", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 877, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3A", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Commuter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 878, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3A", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kenosha Aero, Inc. dba Alliance Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 879, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3A", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chu Kong Passenger Transport", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 880, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3A", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "317", + "nameAirline": "Alliance Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 881, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3A*", + "codeIcaoAirline": "", + "codeIso2Country": "HK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chu Kong Passanger Transport", + "nameCountry": "Hong Kong", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 882, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3A*", + "codeIcaoAirline": "", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mafira Air Charter Services", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 883, + "callsign": "BURKLINES", + "codeHub": "OUA", + "codeIataAirline": "3B", + "codeIcaoAirline": "BFR", + "codeIso2Country": "BF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Burkina Airlines", + "nameCountry": "Burkina Faso", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 884, + "callsign": "JOBAIR", + "codeHub": "OSR", + "codeIataAirline": "3B", + "codeIcaoAirline": "JBR", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Connect Airlines", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 885, + "callsign": "", + "codeHub": "PSR", + "codeIataAirline": "3B", + "codeIcaoAirline": "", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Italica", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 886, + "callsign": "CALIMA", + "codeHub": "LPA", + "codeIataAirline": "3C", + "codeIcaoAirline": "CMV", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Calima Aviacion", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 887, + "callsign": "DECCAN CARGO", + "codeHub": "BLR", + "codeIataAirline": "3C", + "codeIcaoAirline": "DEC", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "360", + "nameAirline": "Deccan Cargo & Express Logistics", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 888, + "callsign": "", + "codeHub": "BNA", + "codeIataAirline": "3C", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regionsair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 889, + "callsign": "", + "codeHub": "BNA", + "codeIataAirline": "3C", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 890, + "callsign": "CORP-X", + "codeHub": "", + "codeIataAirline": "3C*", + "codeIcaoAirline": "CEA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "310", + "nameAirline": "Corporate Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 891, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3D", + "codeIcaoAirline": "DNM", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euro-Hopper", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 892, + "callsign": "", + "codeHub": "SKP", + "codeIataAirline": "3D", + "codeIcaoAirline": "PMK", + "codeIso2Country": "MK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Palair Macedonia", + "nameCountry": "Macedonia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 893, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3D", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dokasch GmBH", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 894, + "callsign": "AIR PEOPLE", + "codeHub": "BKK", + "codeIataAirline": "3D*", + "codeIcaoAirline": "APG", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air People International", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 895, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3D*", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dokasch GmBH", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 896, + "callsign": "BRETAGNE", + "codeHub": "", + "codeIataAirline": "3E", + "codeIcaoAirline": "BRE", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bretagne", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 897, + "callsign": "WEBER", + "codeHub": "STL", + "codeIataAirline": "3E", + "codeIcaoAirline": "WBR", + "codeIso2Country": "US", + "founding": 1979, + "iataPrefixAccounting": "122", + "nameAirline": "Air Choice One", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,private" + }, + { + "ageFleet": 0.0, + "airlineId": 898, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3E", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northwesrtern Air Lease", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 899, + "callsign": "", + "codeHub": "XZM", + "codeIataAirline": "3E*", + "codeIcaoAirline": "EMU", + "codeIso2Country": "MO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East Asia Airlines", + "nameCountry": "Macao", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 900, + "callsign": "", + "codeHub": "KTN", + "codeIataAirline": "3F", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 2000, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 901, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3F*", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canadian North", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 902, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3F*", + "codeIcaoAirline": "", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gulf Pearl Airlines", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 903, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3F*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "First American Railways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 904, + "callsign": "GAMBIA BIRD", + "codeHub": "BJL", + "codeIataAirline": "3G", + "codeIcaoAirline": "GBQ", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "213", + "nameAirline": "Gambia Bird", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 905, + "callsign": "GADING SARI", + "codeHub": "KUL", + "codeIataAirline": "3G", + "codeIcaoAirline": "GSB", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "380", + "nameAirline": "Gading Sari Aviation Services", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 906, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3G", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gading Sari Aviation Sdn Bhd. dba G Sari", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 907, + "callsign": "ASIA CARGO", + "codeHub": "KUL", + "codeIataAirline": "3G*", + "codeIcaoAirline": "CXM", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "380", + "nameAirline": "Asiacargo Express", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 908, + "callsign": "AIR INUIT", + "codeHub": "YVP", + "codeIataAirline": "3H", + "codeIcaoAirline": "AIE", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "466", + "nameAirline": "Air Inuit Ltd/Ltee", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 909, + "callsign": "BLUECOMET", + "codeHub": "SCL", + "codeIataAirline": "3I", + "codeIcaoAirline": "DLU", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AirComet Chile", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 910, + "callsign": "AKWAABA AIR", + "codeHub": "ACC", + "codeIataAirline": "3I", + "codeIcaoAirline": "KWA", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pison Airways", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 911, + "callsign": "LIFT AIR", + "codeHub": "SKP", + "codeIataAirline": "3I", + "codeIcaoAirline": "LFM", + "codeIso2Country": "MK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlift Service", + "nameCountry": "Macedonia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 912, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3I*", + "codeIcaoAirline": "", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "393", + "nameAirline": "Aerolineas Austral Chile", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 913, + "callsign": "LIAISON", + "codeHub": "", + "codeIataAirline": "3J", + "codeIcaoAirline": "AAQ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Alliance", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 914, + "callsign": "ZIPPER", + "codeHub": "YYC", + "codeIataAirline": "3J", + "codeIcaoAirline": "WZP", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zip", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 915, + "callsign": "THIRD CARGO", + "codeHub": "PTY", + "codeIataAirline": "3J*", + "codeIcaoAirline": "CTW", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "333", + "nameAirline": "Pan Air Cargo", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 916, + "callsign": "CARGO EXPRESS", + "codeHub": "", + "codeIataAirline": "3K", + "codeIcaoAirline": "FXG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cargo Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 917, + "callsign": "INTERSKY", + "codeHub": "FDH", + "codeIataAirline": "3L", + "codeIcaoAirline": "ISK", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "222", + "nameAirline": "InterSky Luftfahrt GmbH", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 918, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3L", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Scenic Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 919, + "callsign": "AIRVANTAGE", + "codeHub": "", + "codeIataAirline": "3N", + "codeIcaoAirline": "AVV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airvantage Incorporated", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 920, + "callsign": "PEAU", + "codeHub": "TBU", + "codeIataAirline": "3O", + "codeIcaoAirline": "PVU", + "codeIso2Country": "TO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Peau Vava'u", + "nameCountry": "Tonga", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 921, + "callsign": "TROPAIR", + "codeHub": "", + "codeIataAirline": "3P", + "codeIcaoAirline": "TCU", + "codeIso2Country": "SR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter Tropical Aviation", + "nameCountry": "Suriname", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 922, + "callsign": "TIARA", + "codeHub": "AUA", + "codeIataAirline": "3P", + "codeIcaoAirline": "TNM", + "codeIso2Country": "AW", + "founding": 0, + "iataPrefixAccounting": "253", + "nameAirline": "Tiara Air N.V. dba Tiara Air Aruba", + "nameCountry": "Aruba", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 923, + "callsign": "THAI PACIFIC", + "codeHub": "DMK", + "codeIataAirline": "3P", + "codeIcaoAirline": "TPV", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thai Pacific Airlines", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 924, + "callsign": "YUNNAN", + "codeHub": "ZPPP", + "codeIataAirline": "3Q", + "codeIcaoAirline": "CYH", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "592", + "nameAirline": "China Yunnan Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 925, + "callsign": "AVIOR REGIONAL", + "codeHub": "BLA", + "codeIataAirline": "3R", + "codeIcaoAirline": "RGR", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avior Regional, C.A.", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 926, + "callsign": "AVIAIR", + "codeHub": "AUA", + "codeIataAirline": "3R*", + "codeIcaoAirline": "ARB", + "codeIso2Country": "AW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia Air", + "nameCountry": "Aruba", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 927, + "callsign": "AEROLAND", + "codeHub": "ATH", + "codeIataAirline": "3S*", + "codeIcaoAirline": "AEN", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "207", + "nameAirline": "Aeroland Airways", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 928, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3T", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Conatact Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 929, + "callsign": "LONGSHIP", + "codeHub": "", + "codeIataAirline": "3V", + "codeIcaoAirline": "VAB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Viking Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 930, + "callsign": "EUROMANX", + "codeHub": "IOM", + "codeIataAirline": "3W", + "codeIcaoAirline": "EMX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euromanx", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 931, + "callsign": "", + "codeHub": "VIE", + "codeIataAirline": "3W", + "codeIcaoAirline": "", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Freedom Airways (Austria)", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 932, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3W", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Malawian Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 933, + "callsign": "WANAIR", + "codeHub": "PPT", + "codeIataAirline": "3W*", + "codeIcaoAirline": "VNR", + "codeIso2Country": "PF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wanair", + "nameCountry": "French Polynesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 934, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3X", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Premier Trans Aire", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 935, + "callsign": "", + "codeHub": "SJC", + "codeIataAirline": "3X*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Premier Trans Aire", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 936, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3Y", + "codeIcaoAirline": "XBO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baseops International, Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 937, + "callsign": "KARTIKA", + "codeHub": "CGK", + "codeIataAirline": "3Y*", + "codeIcaoAirline": "KAE", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kartika Airlines", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 938, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3Y*", + "codeIcaoAirline": "", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Uniways", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 939, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3Y*", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Rail International", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 940, + "callsign": "NECON AIR", + "codeHub": "KTM", + "codeIataAirline": "3Z", + "codeIcaoAirline": "NEC", + "codeIso2Country": "NP", + "founding": 0, + "iataPrefixAccounting": "741", + "nameAirline": "Necon Air", + "nameCountry": "Nepal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 941, + "callsign": "JET TRAVEL", + "codeHub": "WAW", + "codeIataAirline": "3Z", + "codeIcaoAirline": "TVP", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Travel Service Polska Sp. z.o.o.", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 942, + "callsign": "", + "codeHub": "DAC", + "codeIataAirline": "3Z", + "codeIcaoAirline": "ZAW", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zoom Airways", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 943, + "callsign": "", + "codeHub": "", + "codeIataAirline": "3Z*", + "codeIcaoAirline": "XAW", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zoom Airways", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 944, + "callsign": "", + "codeHub": "", + "codeIataAirline": "4A", + "codeIcaoAirline": "AJQ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerodynamics, Inc.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 945, + "callsign": "ARARAT AVIA", + "codeHub": "", + "codeIataAirline": "4A", + "codeIcaoAirline": "ARK", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ararat Airlines", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 946, + "callsign": "AIRGO CARGO", + "codeHub": "ATH", + "codeIataAirline": "4A*", + "codeIcaoAirline": "AGS", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "454", + "nameAirline": "Air Go Airlines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 947, + "callsign": "BOUTIQUE", + "codeHub": "SFO", + "codeIataAirline": "4B", + "codeIcaoAirline": "BTQ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "184", + "nameAirline": "Boutique Air, Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 948, + "callsign": "", + "codeHub": "OME", + "codeIataAirline": "4B", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Olson Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 949, + "callsign": "CLICK AIR", + "codeHub": "", + "codeIataAirline": "4C*", + "codeIcaoAirline": "CGK", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Click Airways", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 950, + "callsign": "AIR SINAI", + "codeHub": "CAI", + "codeIataAirline": "4D", + "codeIcaoAirline": "ASD", + "codeIso2Country": "EG", + "founding": 1992, + "iataPrefixAccounting": "903", + "nameAirline": "Air Sinai", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 951, + "callsign": "STABAIR", + "codeHub": "LUN", + "codeIataAirline": "4E", + "codeIcaoAirline": "SBO", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "242", + "nameAirline": "Stabo Air", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 952, + "callsign": "", + "codeHub": "LGW", + "codeIataAirline": "4E", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Airtours", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 953, + "callsign": "", + "codeHub": "", + "codeIataAirline": "4F", + "codeIcaoAirline": "", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 954, + "callsign": "", + "codeHub": "", + "codeIataAirline": "4F", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Frontier Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 955, + "callsign": "", + "codeHub": "", + "codeIataAirline": "4F*", + "codeIcaoAirline": "ECE", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air City", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 956, + "callsign": "", + "codeHub": "", + "codeIataAirline": "4G*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Advance Leasing Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 957, + "callsign": "", + "codeHub": "", + "codeIataAirline": "4G*", + "codeIcaoAirline": "", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Georgian Air", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 958, + "callsign": "AEREAFLY", + "codeHub": "GRU", + "codeIataAirline": "4H", + "codeIcaoAirline": "FLB", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly S.A. Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 959, + "callsign": "ALBANWAYS", + "codeHub": "TIA", + "codeIataAirline": "4H", + "codeIcaoAirline": "LBW", + "codeIso2Country": "AL", + "founding": 0, + "iataPrefixAccounting": "931", + "nameAirline": "Albatros Airways", + "nameCountry": "Albania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 960, + "callsign": "", + "codeHub": "", + "codeIataAirline": "4H", + "codeIcaoAirline": "", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Pacific Air", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 961, + "callsign": "KNIGHT FLIGHT", + "codeHub": "YOW", + "codeIataAirline": "4I*", + "codeIcaoAirline": "KNX", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "699", + "nameAirline": "Knighthawk Air Express", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 962, + "callsign": "DAMAVIA", + "codeHub": "DAM", + "codeIataAirline": "4J", + "codeIcaoAirline": "FDK", + "codeIso2Country": "SY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flydamas Airlines", + "nameCountry": "Syria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 963, + "callsign": "", + "codeHub": "CBG", + "codeIataAirline": "4J", + "codeIcaoAirline": "", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alpha1 Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 964, + "callsign": "ZAMNAT", + "codeHub": "LUN", + "codeIataAirline": "4J*", + "codeIcaoAirline": "NWZ", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nationwide Airlines", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 965, + "callsign": "BOREK AIR", + "codeHub": "YYC", + "codeIataAirline": "4K", + "codeIcaoAirline": "KBA", + "codeIso2Country": "CA", + "founding": 1970, + "iataPrefixAccounting": "", + "nameAirline": "Kenn Borek Air Ltd.", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 966, + "callsign": "AL-ASS", + "codeHub": "ISB", + "codeIataAirline": "4K*", + "codeIcaoAirline": "AAS", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Askari Aviation", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 967, + "callsign": "", + "codeHub": "", + "codeIataAirline": "4L", + "codeIcaoAirline": "GIL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Georgian International Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 968, + "callsign": "", + "codeHub": "TBS", + "codeIataAirline": "4L", + "codeIcaoAirline": "MJX", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Georgian International Airlines", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 969, + "callsign": "TROPIC BIRD", + "codeHub": "ROR", + "codeIataAirline": "4L", + "codeIcaoAirline": "PNA", + "codeIso2Country": "PW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Palau National Airlines", + "nameCountry": "Palau", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 970, + "callsign": "", + "codeHub": "", + "codeIataAirline": "4L", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Besit", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 971, + "callsign": "DELTACRAFT", + "codeHub": "", + "codeIataAirline": "4L*", + "codeIcaoAirline": "DEC", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Deltacraft", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 972, + "callsign": "AFRICAN STAR", + "codeHub": "JNB", + "codeIataAirline": "4M", + "codeIcaoAirline": "ASG", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "African Star Airways", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 973, + "callsign": "", + "codeHub": "SDQ", + "codeIataAirline": "4M", + "codeIcaoAirline": "LNC", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LANDominicana", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 974, + "callsign": "MINSK", + "codeHub": "", + "codeIataAirline": "4M", + "codeIcaoAirline": "MEN", + "codeIso2Country": "BY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Minskavia", + "nameCountry": "Belarus", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 975, + "callsign": "", + "codeHub": "", + "codeIataAirline": "4M", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Island Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 976, + "callsign": "", + "codeHub": "", + "codeIataAirline": "4O", + "codeIcaoAirline": "KMO", + "codeIso2Country": "KM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ocean Airlines", + "nameCountry": "Comoros", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 977, + "callsign": "", + "codeHub": "NLO", + "codeIataAirline": "4P", + "codeIcaoAirline": "ABB", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Aviation (Congo Kinshasa)", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 978, + "callsign": "AIR POLONIA", + "codeHub": "WAW", + "codeIataAirline": "4P", + "codeIcaoAirline": "APN", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Polonia", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 979, + "callsign": "", + "codeHub": "JUB", + "codeIataAirline": "4P", + "codeIcaoAirline": "", + "codeIso2Country": "SS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Star Airlines", + "nameCountry": "South Sudan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 980, + "callsign": "", + "codeHub": "MAG", + "codeIataAirline": "4P", + "codeIcaoAirline": "", + "codeIso2Country": "PG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Travel Air", + "nameCountry": "Papua New Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 981, + "callsign": "", + "codeHub": "", + "codeIataAirline": "4P", + "codeIcaoAirline": "", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transperu S.A.", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 982, + "callsign": "SWEDJET", + "codeHub": "ARN", + "codeIataAirline": "4P*", + "codeIcaoAirline": "VIK", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "78", + "nameAirline": "Viking Airlines", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 983, + "callsign": "", + "codeHub": "", + "codeIataAirline": "4P*", + "codeIcaoAirline": "", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Aviation", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 984, + "callsign": "POLISH BIRD", + "codeHub": "WAW", + "codeIataAirline": "4Q", + "codeIcaoAirline": "AEI", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Poland", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 985, + "callsign": "", + "codeHub": "", + "codeIataAirline": "4Q*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Anderson Airlink", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 986, + "callsign": "HAMBURG JET", + "codeHub": "HAM", + "codeIataAirline": "4R", + "codeIcaoAirline": "HHI", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hamburg International", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 987, + "callsign": "ORIENTEAGLE", + "codeHub": "ALA", + "codeIataAirline": "4R", + "codeIcaoAirline": "OEG", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orient Eagle Airways", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 988, + "callsign": "", + "codeHub": "", + "codeIataAirline": "4R*", + "codeIcaoAirline": "", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Renfe Viajeros", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 989, + "callsign": "", + "codeHub": "MIA", + "codeIataAirline": "4S", + "codeIcaoAirline": "CRQ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Conner Air Lines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 990, + "callsign": "", + "codeHub": "BOM", + "codeIataAirline": "4S", + "codeIcaoAirline": "EWI", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East-West Airlines (India)", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 991, + "callsign": "FINALAIR CONGO", + "codeHub": "", + "codeIataAirline": "4S", + "codeIcaoAirline": "FNC", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "122", + "nameAirline": "Finalair Congo", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 992, + "callsign": "AERO HONDURAS", + "codeHub": "TGU", + "codeIataAirline": "4S", + "codeIcaoAirline": "HON", + "codeIso2Country": "HN", + "founding": 0, + "iataPrefixAccounting": "377", + "nameAirline": "Sol Air", + "nameCountry": "Honduras", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 993, + "callsign": "", + "codeHub": "TIA", + "codeIataAirline": "4S", + "codeIcaoAirline": "STB", + "codeIso2Country": "AL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Airways", + "nameCountry": "Albania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 994, + "callsign": "", + "codeHub": "", + "codeIataAirline": "4S", + "codeIcaoAirline": "", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East West Airlines", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 995, + "callsign": "TRANS-CHARTER", + "codeHub": "", + "codeIataAirline": "4T", + "codeIcaoAirline": "TCH", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TCH of Russian Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 996, + "callsign": "", + "codeHub": "", + "codeIataAirline": "4T", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Rim Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 997, + "callsign": "SHARK", + "codeHub": "", + "codeIataAirline": "4U", + "codeIcaoAirline": "EWF", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurowings Flug", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 998, + "callsign": "AIR TATARSTAN", + "codeHub": "", + "codeIataAirline": "4U", + "codeIcaoAirline": "KAZ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tatarstan Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 999, + "callsign": "CONGOLAISE", + "codeHub": "FIH", + "codeIataAirline": "4V", + "codeIcaoAirline": "LCG", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "408", + "nameAirline": "Lignes Aeriennes Congolaises", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1000, + "callsign": "BEL-BIRD", + "codeHub": "BRU", + "codeIataAirline": "4V*", + "codeIcaoAirline": "BDY", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Birdy Airlines", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1001, + "callsign": "FAIRLINE", + "codeHub": "", + "codeIataAirline": "4X", + "codeIcaoAirline": "FLS", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "F'Airlines", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1002, + "callsign": "", + "codeHub": "BJL", + "codeIataAirline": "4X", + "codeIcaoAirline": "JLM", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Express (Gambia)", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1003, + "callsign": "MERCAIR", + "codeHub": "LAX", + "codeIataAirline": "4X", + "codeIcaoAirline": "MEC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "805", + "nameAirline": "Mercury World Cargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1004, + "callsign": "ATLANTIC EXPRESS", + "codeHub": "", + "codeIataAirline": "4X", + "codeIcaoAirline": "", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Express", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1005, + "callsign": "", + "codeHub": "", + "codeIataAirline": "4X", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mercury Air Cargo, Inc.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1006, + "callsign": "", + "codeHub": "", + "codeIataAirline": "4X", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mercury World Cargo", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1007, + "callsign": "BLUE BERRY", + "codeHub": "CDG", + "codeIataAirline": "4Y", + "codeIcaoAirline": "BLE", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Line", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1008, + "callsign": "YUTE AIR", + "codeHub": "ANC", + "codeIataAirline": "4Y", + "codeIcaoAirline": "UYA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yute Air Alaska", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1009, + "callsign": "ALPINE AIR", + "codeHub": "PVU", + "codeIataAirline": "5A", + "codeIcaoAirline": "AIP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alpine Air Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1010, + "callsign": "SNOWBIRD", + "codeHub": "MSE", + "codeIataAirline": "5A*", + "codeIcaoAirline": "EUK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Atlanta Europe", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1011, + "callsign": "", + "codeHub": "GUW", + "codeIataAirline": "5B", + "codeIcaoAirline": "KZE", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euro-Asia International", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 1012, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5C*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Tahoma", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1013, + "callsign": "", + "codeHub": "ERF", + "codeIataAirline": "5D", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastwest Airlines (Germany)", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1014, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5D", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastwest Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1015, + "callsign": "DUTCHBIRD", + "codeHub": "AMS", + "codeIataAirline": "5D*", + "codeIcaoAirline": "DBR", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dutchbird", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1016, + "callsign": "COASTRIDER", + "codeHub": "EIN", + "codeIataAirline": "5E", + "codeIcaoAirline": "BRO", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "228", + "nameAirline": "Base Airlines", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1017, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5E", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East Coast Flight Services, Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1018, + "callsign": "SIAM", + "codeHub": "BKK", + "codeIataAirline": "5E*", + "codeIcaoAirline": "SGN", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nok Mini Airlines", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1019, + "callsign": "", + "codeHub": "NBO", + "codeIataAirline": "5F", + "codeIcaoAirline": "", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Aero", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 1020, + "callsign": "BARBIE", + "codeHub": "IST", + "codeIataAirline": "5F*", + "codeIcaoAirline": "BST", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "759", + "nameAirline": "Bestair", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1021, + "callsign": "", + "codeHub": "ACC", + "codeIataAirline": "5G", + "codeIcaoAirline": "FOX", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly540 Ghana", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1022, + "callsign": "GLOBALAIR", + "codeHub": "", + "codeIataAirline": "5G*", + "codeIcaoAirline": "GGB", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "166", + "nameAirline": "Global Air", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1023, + "callsign": "", + "codeHub": "HNL", + "codeIataAirline": "5H", + "codeIcaoAirline": "MUI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "transair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1024, + "callsign": "STERA", + "codeHub": "CGK", + "codeIataAirline": "5H", + "codeIcaoAirline": "STQ", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "301", + "nameAirline": "Star Air", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1025, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5H", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "540", + "nameAirline": "Five Fourty Aviation Limited", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1026, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5I", + "codeIcaoAirline": "GRG", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "936", + "nameAirline": "Air G", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1027, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5I", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alsa Grupo SLU", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1028, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5I*", + "codeIcaoAirline": "", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ALSA Grupo", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1029, + "callsign": "ODESSA AIR", + "codeHub": "ODS", + "codeIataAirline": "5K*", + "codeIcaoAirline": "ODS", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "654", + "nameAirline": "Odessa Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1030, + "callsign": "ASUR", + "codeHub": "VVI", + "codeIataAirline": "5L", + "codeIcaoAirline": "RSU", + "codeIso2Country": "BO", + "founding": 0, + "iataPrefixAccounting": "275", + "nameAirline": "Aerosur", + "nameCountry": "Bolivia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1031, + "callsign": "", + "codeHub": "LGW", + "codeIataAirline": "5L", + "codeIcaoAirline": "", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Salone Airlines Limited", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "active", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 1032, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5L", + "codeIcaoAirline": "", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern World Airlines (SWA)", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1033, + "callsign": "MONTSERRAT", + "codeHub": "MNI", + "codeIataAirline": "5M", + "codeIcaoAirline": "MNT", + "codeIso2Country": "MS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Montserrat Airways Ltd.", + "nameCountry": "Montserrat", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1034, + "callsign": "SETE", + "codeHub": "GYN", + "codeIataAirline": "5O", + "codeIcaoAirline": "SLX", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SETE Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1035, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5P", + "codeIcaoAirline": "BVR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ACM Air Charter", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1036, + "callsign": "MATRA", + "codeHub": "BUD", + "codeIataAirline": "5P", + "codeIcaoAirline": "HSK", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Europe Airlines Hungary", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1037, + "callsign": "PRINCIPAL", + "codeHub": "SCL", + "codeIataAirline": "5P", + "codeIcaoAirline": "PCP", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PAL Airlines", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1038, + "callsign": "AERO PENA", + "codeHub": "STM", + "codeIataAirline": "5P", + "codeIcaoAirline": "PEP", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "308", + "nameAirline": "Pena Transportes Aereos", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1039, + "callsign": "PTARMIGAN", + "codeHub": "", + "codeIataAirline": "5P", + "codeIcaoAirline": "PTA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ptarmigan Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1040, + "callsign": "", + "codeHub": "PDP", + "codeIataAirline": "5Q", + "codeIcaoAirline": "BQB", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "567", + "nameAirline": "BQB Lineas Aereas", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1041, + "callsign": "ECHELON", + "codeHub": "", + "codeIataAirline": "5Q", + "codeIcaoAirline": "ECY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euroceltic Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1042, + "callsign": "KEENAIR", + "codeHub": "LPL", + "codeIataAirline": "5Q", + "codeIcaoAirline": "JFK", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Keen Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1043, + "callsign": "AALAND", + "codeHub": "", + "codeIataAirline": "5Q", + "codeIcaoAirline": "LND", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skargardsflyg", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1044, + "callsign": "", + "codeHub": "MIA", + "codeIataAirline": "5Q", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "The Lord's Airline", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1045, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5Q", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Trek Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1046, + "callsign": "BEST AIR", + "codeHub": "DAC", + "codeIataAirline": "5Q*", + "codeIcaoAirline": "BEA", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Best Aviation", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1047, + "callsign": "ELBRUS", + "codeHub": "UUBW", + "codeIataAirline": "5R", + "codeIcaoAirline": "LDF", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IRS Aero", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1048, + "callsign": "ROVERAIR", + "codeHub": "", + "codeIataAirline": "5R", + "codeIcaoAirline": "ROV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rover Airways International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1049, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5R", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "765", + "nameAirline": "Rutas Aereas, C.A.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1050, + "callsign": "KARTHAGO", + "codeHub": "DJE", + "codeIataAirline": "5R*", + "codeIcaoAirline": "KAJ", + "codeIso2Country": "TN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Karthago Airlines", + "nameCountry": "Tunisia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1051, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5R*", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Airways RTZ", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1052, + "callsign": "", + "codeHub": "MJI", + "codeIataAirline": "5S", + "codeIcaoAirline": "GAK", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "301", + "nameAirline": "Global Aviation Services Group", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1053, + "callsign": "SPEEDLINE", + "codeHub": "", + "codeIataAirline": "5S", + "codeIcaoAirline": "SPD", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airspeed Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1054, + "callsign": "PROSERVICIOS", + "codeHub": "JBQ", + "codeIataAirline": "5S*", + "codeIcaoAirline": "PSV", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Profesionales", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1055, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5T", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Total Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1056, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5T", + "codeIcaoAirline": "", + "codeIso2Country": "JM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Negril", + "nameCountry": "Jamaica", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1057, + "callsign": "CARIBOO", + "codeHub": "", + "codeIataAirline": "5V", + "codeIcaoAirline": "AVF", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviair Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1058, + "callsign": "COMMUNITY", + "codeHub": "", + "codeIataAirline": "5V", + "codeIcaoAirline": "UNI", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Community Express Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1059, + "callsign": "VISTA", + "codeHub": "", + "codeIataAirline": "5V", + "codeIcaoAirline": "VJT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vistajet", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1060, + "callsign": "FLYSTAR", + "codeHub": "LGW", + "codeIataAirline": "5W", + "codeIcaoAirline": "AEU", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "212", + "nameAirline": "Astraeus", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1061, + "callsign": "COMEX", + "codeHub": "", + "codeIataAirline": "5W", + "codeIcaoAirline": "CDE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comed Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1062, + "callsign": "INTERCONTINENTAL", + "codeHub": "BJL", + "codeIataAirline": "5W", + "codeIcaoAirline": "ICH", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intercontinental Airways (Gambia)", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1063, + "callsign": "", + "codeHub": "GIG", + "codeIataAirline": "5W", + "codeIcaoAirline": "ITM", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Itapemirim Carga Aerea", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1064, + "callsign": "SAN JUAN", + "codeHub": "", + "codeIataAirline": "5W", + "codeIcaoAirline": "SJN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air San Juan", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1065, + "callsign": "", + "codeHub": "SAN", + "codeIataAirline": "5W", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Worldwide Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1066, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5W", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "WESTbahn Management GmbH", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1067, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5W", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Express", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1068, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5W*", + "codeIcaoAirline": "", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "WESTbahn Management", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1069, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5Y", + "codeIcaoAirline": "YB", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "First European Airways", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1070, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5Y*", + "codeIcaoAirline": "", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Express Rail Link", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1071, + "callsign": "", + "codeHub": "LHR", + "codeIataAirline": "5Z", + "codeIcaoAirline": "AFX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airfreight Express", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1072, + "callsign": "", + "codeHub": "", + "codeIataAirline": "5Z*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mokulele Flight Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1073, + "callsign": "", + "codeHub": "EVN", + "codeIataAirline": "6A", + "codeIcaoAirline": "AMW", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "616", + "nameAirline": "Armenia Airways Aircompany CJSC", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1074, + "callsign": "AVIACSA", + "codeHub": "MEX", + "codeIataAirline": "6A", + "codeIcaoAirline": "CHP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "95", + "nameAirline": "AVIACSA-Consorcio Aviaxsa", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1075, + "callsign": "", + "codeHub": "ZNA", + "codeIataAirline": "6B", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baxter Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1076, + "callsign": "CAPE SMYTHE AIR", + "codeHub": "BRW", + "codeIataAirline": "6C", + "codeIcaoAirline": "CMY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cape Smythe Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1077, + "callsign": "", + "codeHub": "DIL", + "codeIataAirline": "6C", + "codeIcaoAirline": "", + "codeIso2Country": "TL", + "founding": 0, + "iataPrefixAccounting": "586", + "nameAirline": "Air Timor", + "nameCountry": "East Timor", + "sizeAirline": 0, + "statusAirline": "active", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 1078, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6C*", + "codeIcaoAirline": "", + "codeIso2Country": "CF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centrafrrique Air Express", + "nameCountry": "Central African Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1079, + "callsign": "DARLINES", + "codeHub": "EBB", + "codeIataAirline": "6D", + "codeIcaoAirline": "KDR", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Daisy Airlines", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1080, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6D", + "codeIcaoAirline": "PAS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PT. Pelita Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1081, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6D", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Travel Service Slovensko s.r.o.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1082, + "callsign": "BURRARD", + "codeHub": "", + "codeIataAirline": "6E", + "codeIcaoAirline": "BXA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Burrard Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1083, + "callsign": "CITYWAYS", + "codeHub": "FMO", + "codeIataAirline": "6E", + "codeIcaoAirline": "CIP", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAG City Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1084, + "callsign": "AFRIJET", + "codeHub": "LOS", + "codeIataAirline": "6F", + "codeIcaoAirline": "FRJ", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Afrijet Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1085, + "callsign": "LAKER", + "codeHub": "", + "codeIataAirline": "6F", + "codeIcaoAirline": "LKR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Laker Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1086, + "callsign": "CYPRUS AEROTRANS", + "codeHub": "", + "codeIataAirline": "6F", + "codeIcaoAirline": "PFO", + "codeIso2Country": "CY", + "founding": 0, + "iataPrefixAccounting": "299", + "nameAirline": "Aerotrans Airlines", + "nameCountry": "Cyprus", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1087, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6G", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Las Vegas Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1088, + "callsign": "AIR CYMRU", + "codeHub": "CWL", + "codeIataAirline": "6G*", + "codeIcaoAirline": "AWW", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Wales", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1089, + "callsign": "", + "codeHub": "FNA", + "codeIataAirline": "6I", + "codeIcaoAirline": "", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly 6ix", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1090, + "callsign": "INTERBIZ", + "codeHub": "ARN", + "codeIataAirline": "6I*", + "codeIcaoAirline": "IBZ", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IBA International Business Airlines", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1091, + "callsign": "SEEA AIR", + "codeHub": "ATH", + "codeIataAirline": "6J", + "codeIcaoAirline": "GRE", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southeast European Airlines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1092, + "callsign": "SKYTOUR", + "codeHub": "YYZ", + "codeIataAirline": "6J*", + "codeIcaoAirline": "SSV", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "884", + "nameAirline": "Skyservice Roots Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1093, + "callsign": "", + "codeHub": "AYT", + "codeIataAirline": "6K", + "codeIcaoAirline": "INX", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter Airlines", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1094, + "callsign": "DINARA", + "codeHub": "FRU", + "codeIataAirline": "6K", + "codeIcaoAirline": "KTC", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kyrgyz Trans Avia", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1095, + "callsign": "ASIAN SPIRIT", + "codeHub": "MNL", + "codeIataAirline": "6K", + "codeIcaoAirline": "RIT", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asian Spirit", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1096, + "callsign": "SONGBIRD", + "codeHub": "LAL", + "codeIataAirline": "6K", + "codeIcaoAirline": "SGB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Songbird Airways, Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1097, + "callsign": "INTER-EURO", + "codeHub": "", + "codeIataAirline": "6K*", + "codeIcaoAirline": "INX", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter Express", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1098, + "callsign": "AKLAK", + "codeHub": "YEV", + "codeIataAirline": "6L", + "codeIcaoAirline": "AKK", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "709", + "nameAirline": "Aklak Inc.", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1099, + "callsign": "LIGHT AIR", + "codeHub": "FRU", + "codeIataAirline": "6L*", + "codeIcaoAirline": "SUH", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Light", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1100, + "callsign": "AIR MINAS", + "codeHub": "PLU", + "codeIataAirline": "6M", + "codeIcaoAirline": "AMG", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Minas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1101, + "callsign": "ZIMBIRD", + "codeHub": "", + "codeIataAirline": "6M", + "codeIcaoAirline": "MJC", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "66", + "nameAirline": "Majestic Air", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1102, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6M", + "codeIcaoAirline": "", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South Asia Airways", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1103, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6M", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zacarias Moreno", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1104, + "callsign": "EUROSTAR", + "codeHub": "ATH", + "codeIataAirline": "6M*", + "codeIcaoAirline": "EUP", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euroair", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1105, + "callsign": "MUTTLEY", + "codeHub": "", + "codeIataAirline": "6M*", + "codeIcaoAirline": "LKX", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linkair Express", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1106, + "callsign": "MAV-AIR", + "codeHub": "", + "codeIataAirline": "6M*", + "codeIcaoAirline": "MVR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maverick Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1107, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6M*", + "codeIcaoAirline": "", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zacarias Moreno", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1108, + "callsign": "NIGER AIRLINES", + "codeHub": "NIM", + "codeIataAirline": "6N", + "codeIcaoAirline": "NIN", + "codeIso2Country": "NE", + "founding": 0, + "iataPrefixAccounting": "720", + "nameAirline": "Niger Airlines S.A.", + "nameCountry": "Niger", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1109, + "callsign": "NORTHRIDER", + "codeHub": "UME", + "codeIataAirline": "6N", + "codeIcaoAirline": "NRD", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nordic Airways", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1110, + "callsign": "HUNTER", + "codeHub": "RTM", + "codeIataAirline": "6N*", + "codeIcaoAirline": "TRQ", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Travel Airlines", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1111, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6P", + "codeIcaoAirline": "GRF", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gryphon Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1112, + "callsign": "ITALCARGO", + "codeHub": "VRN", + "codeIataAirline": "6P", + "codeIcaoAirline": "ISG", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Clubair Sixgo", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1113, + "callsign": "PEACE AIR", + "codeHub": "", + "codeIataAirline": "6P", + "codeIcaoAirline": "PCA", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Peace Air", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1114, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6P", + "codeIcaoAirline": "PCE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific East Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1115, + "callsign": "PROPAIR", + "codeHub": "YUY", + "codeIataAirline": "6P", + "codeIcaoAirline": "PRO", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Propair.", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1116, + "callsign": "", + "codeHub": "ROR", + "codeIataAirline": "6P", + "codeIcaoAirline": "PTP", + "codeIso2Country": "PW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Palau Transpacific Airlines", + "nameCountry": "Palau", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1117, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6P", + "codeIcaoAirline": "", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Tracia", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1118, + "callsign": "", + "codeHub": "BBU", + "codeIataAirline": "6P*", + "codeIcaoAirline": "GCP", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DAC Air", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1119, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6Q*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AAR Airlift Group", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1120, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6R", + "codeIcaoAirline": "DRU", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alrosa Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1121, + "callsign": "DEMURI", + "codeHub": "TBS", + "codeIataAirline": "6R", + "codeIcaoAirline": "GEG", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "684", + "nameAirline": "Georgian Airlines", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1122, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6R", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Open Joint Stock Company \"ALROSA\" (Mirny Air Enterprise)", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1123, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6R*", + "codeIcaoAirline": "N/A", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BritRail", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1124, + "callsign": "SOLAMERICA", + "codeHub": "CCS", + "codeIataAirline": "6S", + "codeIcaoAirline": "ESC", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "El Sol de America", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1125, + "callsign": "KATO-AIR", + "codeHub": "EVE", + "codeIataAirline": "6S", + "codeIcaoAirline": "KAT", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kato Airline", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1126, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6S*", + "codeIcaoAirline": "SHD", + "codeIso2Country": "DZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sahara Airlines", + "nameCountry": "Algeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1127, + "callsign": "STARAV", + "codeHub": "KHI", + "codeIataAirline": "6S*", + "codeIcaoAirline": "URJ", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Air", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1128, + "callsign": "TYEE AIR", + "codeHub": "", + "codeIataAirline": "6T", + "codeIcaoAirline": "TYE", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tyee Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1129, + "callsign": "", + "codeHub": "MIA", + "codeIataAirline": "6T", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turks Air Cargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1130, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6T", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turks Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1131, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "6T*", + "codeIcaoAirline": "LMT", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Almaty Aviation", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1132, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6T*", + "codeIcaoAirline": "", + "codeIso2Country": "TC", + "founding": 0, + "iataPrefixAccounting": "654", + "nameAirline": "Turks Air", + "nameCountry": "Turks and Caicos Islands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1133, + "callsign": "AIR UKRAINE", + "codeHub": "KBP", + "codeIataAirline": "6U", + "codeIcaoAirline": "UKR", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "891", + "nameAirline": "Air Ukraine", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1134, + "callsign": "UNICARGO", + "codeHub": "SHJ", + "codeIataAirline": "6U", + "codeIcaoAirline": "UQA", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Unique Air", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1135, + "callsign": "AVIAMARS", + "codeHub": "IEV", + "codeIataAirline": "6V", + "codeIcaoAirline": "MRW", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mars RK", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1136, + "callsign": "AIR VEGAS", + "codeHub": "VGT", + "codeIataAirline": "6V", + "codeIcaoAirline": "VGA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Vegas", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1137, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6V", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Auto Res S.L.U. dba Avanza Group", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1138, + "callsign": "AXIS", + "codeHub": "MRS", + "codeIataAirline": "6V*", + "codeIcaoAirline": "AXY", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Axis Airways", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1139, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6V*", + "codeIcaoAirline": "", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avanza Group", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1140, + "callsign": "SARATOV AIR", + "codeHub": "RTW", + "codeIataAirline": "6W", + "codeIcaoAirline": "SOV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "26", + "nameAirline": "Saratov Airlines Joint Stock Company", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1141, + "callsign": "SMARTLYNX", + "codeHub": "RIX", + "codeIataAirline": "6Y", + "codeIcaoAirline": "ART", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Smartlynx Airlines Ltd.", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1142, + "callsign": "", + "codeHub": "IST", + "codeIataAirline": "6Z", + "codeIcaoAirline": "BSP", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bosphorus Airways", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1143, + "callsign": "EAKAZ", + "codeHub": "GUW", + "codeIataAirline": "6Z", + "codeIcaoAirline": "EAK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JSC \"Aircompany \"Euro-Asia Air \"", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 1144, + "callsign": "", + "codeHub": "PTY", + "codeIataAirline": "6Z", + "codeIcaoAirline": "PVI", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Panavia Cargo Airlines", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1145, + "callsign": "", + "codeHub": "ESH", + "codeIataAirline": "6Z", + "codeIcaoAirline": "VAA", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brighton City Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 1146, + "callsign": "", + "codeHub": "", + "codeIataAirline": "6Z", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cargolift International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1147, + "callsign": "CARGOTRANS", + "codeHub": "OZH", + "codeIataAirline": "6Z*", + "codeIcaoAirline": "UKS", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "516", + "nameAirline": "Ukrainian Cargo Airways", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1148, + "callsign": "BLUE-DOLPHIN", + "codeHub": "FUK", + "codeIataAirline": "7A", + "codeIcaoAirline": "NXA", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Next", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1149, + "callsign": "", + "codeHub": "", + "codeIataAirline": "7A", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Haines Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1150, + "callsign": "BENIN-CHARTERS", + "codeHub": "", + "codeIataAirline": "7A*", + "codeIcaoAirline": "AFF", + "codeIso2Country": "BJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Afric'Air Charter", + "nameCountry": "Benin", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1151, + "callsign": "KRASNOJARSKY AIR", + "codeHub": "KJA", + "codeIataAirline": "7B", + "codeIcaoAirline": "KJC", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "499", + "nameAirline": "KRASAIR", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1152, + "callsign": "MOSCOW AIRLINES", + "codeHub": "VKO", + "codeIataAirline": "7B", + "codeIcaoAirline": "MOA", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Moscow Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1153, + "callsign": "", + "codeHub": "AST", + "codeIataAirline": "7C", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Columbia Pacific Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1154, + "callsign": "MALUTI SKY", + "codeHub": "MSU", + "codeIataAirline": "7D", + "codeIcaoAirline": "MSU", + "codeIso2Country": "LS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maluti Sky", + "nameCountry": "Lesotho", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1155, + "callsign": "AVIATION DONBASS", + "codeHub": "DOK", + "codeIataAirline": "7D", + "codeIcaoAirline": "UDC", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "897", + "nameAirline": "Donbass", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1156, + "callsign": "", + "codeHub": "", + "codeIataAirline": "7D", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MGC Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1157, + "callsign": "SYLT-AIR", + "codeHub": "GWT", + "codeIataAirline": "7E", + "codeIcaoAirline": "AWU", + "codeIso2Country": "DE", + "founding": 1963, + "iataPrefixAccounting": "", + "nameAirline": "Sylt Air GmbH", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1158, + "callsign": "", + "codeHub": "", + "codeIataAirline": "7E", + "codeIcaoAirline": "", + "codeIso2Country": "NP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nepal Airways", + "nameCountry": "Nepal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1159, + "callsign": "PANAGRA", + "codeHub": "FLL", + "codeIataAirline": "7E*", + "codeIcaoAirline": "PGI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Panagra Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1160, + "callsign": "", + "codeHub": "", + "codeIataAirline": "7E*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Evergreen Helicopters International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 1161, + "callsign": "AIRKURFA", + "codeHub": "", + "codeIataAirline": "7F*", + "codeIcaoAirline": "KAV", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "206", + "nameAirline": "Air Kurfa", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1162, + "callsign": "KRUGER-AIR", + "codeHub": "LGW", + "codeIataAirline": "7G", + "codeIcaoAirline": "MKA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "513", + "nameAirline": "MK Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1163, + "callsign": "", + "codeHub": "", + "codeIataAirline": "7G*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bellair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1164, + "callsign": "COASTEL TRAVEL", + "codeHub": "", + "codeIataAirline": "7I", + "codeIcaoAirline": "CSV", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coastal Travels", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1165, + "callsign": "", + "codeHub": "", + "codeIataAirline": "7K", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CSafe Global", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1166, + "callsign": "", + "codeHub": "", + "codeIataAirline": "7K*", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AmSafe Bridport", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1167, + "callsign": "AZTEC AIR", + "codeHub": "", + "codeIataAirline": "7L", + "codeIcaoAirline": "AZX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bristol", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1168, + "callsign": "AEROMONTERREY", + "codeHub": "MTY", + "codeIataAirline": "7M", + "codeIcaoAirline": "MOT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromonterrey", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1169, + "callsign": "", + "codeHub": "CVT", + "codeIataAirline": "7M", + "codeIcaoAirline": "RYM", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Express (UK)", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1170, + "callsign": "", + "codeHub": "TJM", + "codeIataAirline": "7M", + "codeIcaoAirline": "TMN", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "691", + "nameAirline": "Tyumen Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1171, + "callsign": "AIR TYUMEN", + "codeHub": "", + "codeIataAirline": "7M*", + "codeIcaoAirline": "TYM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "691", + "nameAirline": "Tyumen Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1172, + "callsign": "MANITOBA", + "codeHub": "YWG", + "codeIataAirline": "7N", + "codeIcaoAirline": "NAM", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nortland Air Manitoba", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1173, + "callsign": "", + "codeHub": "BEG", + "codeIataAirline": "7N*", + "codeIcaoAirline": "CNA", + "codeIso2Country": "RS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centavia", + "nameCountry": "Serbia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1174, + "callsign": "GALAXY", + "codeHub": "FRU", + "codeIataAirline": "7O", + "codeIcaoAirline": "GAL", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Galaxy Air", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1175, + "callsign": "", + "codeHub": "", + "codeIataAirline": "7O", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Travel Service Legiforgalmi es Szolgaltato Kft./ Ltd", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1176, + "callsign": "", + "codeHub": "FIH", + "codeIataAirline": "7P", + "codeIcaoAirline": "", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Castilla", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1177, + "callsign": "", + "codeHub": "CAI", + "codeIataAirline": "7Q", + "codeIcaoAirline": "SHK", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "273", + "nameAirline": "Shorouk Air", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1178, + "callsign": "AIR VENEZUELA", + "codeHub": "", + "codeIataAirline": "7Q*", + "codeIcaoAirline": "VZA", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Venezuela", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1179, + "callsign": "ERITREAN REDSEA", + "codeHub": "", + "codeIataAirline": "7R*", + "codeIcaoAirline": "ERS", + "codeIso2Country": "ER", + "founding": 0, + "iataPrefixAccounting": "593", + "nameAirline": "Red Sea Air", + "nameCountry": "Eritrea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1180, + "callsign": "", + "codeHub": "ANI", + "codeIataAirline": "7S", + "codeIcaoAirline": "RCT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ATS - Arctic Transportation Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1181, + "callsign": "ORCHID", + "codeHub": "SIN", + "codeIataAirline": "7S", + "codeIcaoAirline": "RGA", + "codeIso2Country": "SG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Region Air", + "nameCountry": "Singapore", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1182, + "callsign": "SYRJET", + "codeHub": "", + "codeIataAirline": "7S", + "codeIcaoAirline": "SRJ", + "codeIso2Country": "SY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "C Airjet Airlines", + "nameCountry": "Syria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1183, + "callsign": "", + "codeHub": "", + "codeIataAirline": "7S", + "codeIcaoAirline": "", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JSC SkyBus Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1184, + "callsign": "AIR GLACIERS", + "codeHub": "SIR", + "codeIataAirline": "7T", + "codeIcaoAirline": "AGV", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Glaciers", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1185, + "callsign": "", + "codeHub": "EGV", + "codeIataAirline": "7T", + "codeIcaoAirline": "TNT", + "codeIso2Country": "US", + "founding": 1980, + "iataPrefixAccounting": "", + "nameAirline": "Trans North Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1186, + "callsign": "", + "codeHub": "", + "codeIataAirline": "7T", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Cote", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1187, + "callsign": "", + "codeHub": "", + "codeIataAirline": "7T", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Express del Ecuador - Trans A", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1188, + "callsign": "TOBRUK AIR", + "codeHub": "", + "codeIataAirline": "7T*", + "codeIcaoAirline": "TQB", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tobruk Air", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1189, + "callsign": "", + "codeHub": "", + "codeIataAirline": "7T*", + "codeIcaoAirline": "", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trenitalia", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1190, + "callsign": "", + "codeHub": "", + "codeIataAirline": "7U", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alpha Air Transport dba Commercial Aviation Services", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1191, + "callsign": "FEDAIR", + "codeHub": "VIR", + "codeIataAirline": "7V", + "codeIcaoAirline": "FDR", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "739", + "nameAirline": "Federal Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1192, + "callsign": "COWBOY", + "codeHub": "", + "codeIataAirline": "7V", + "codeIcaoAirline": "TXX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Austin Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1193, + "callsign": "", + "codeHub": "", + "codeIataAirline": "7V*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Air Charters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1194, + "callsign": "AIR SASK", + "codeHub": "", + "codeIataAirline": "7W", + "codeIcaoAirline": "ASK", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Sask", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1195, + "callsign": "", + "codeHub": "LIM", + "codeIataAirline": "7W", + "codeIcaoAirline": "WAY", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wayra Peru", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1196, + "callsign": "WAYRAPERU", + "codeHub": "", + "codeIataAirline": "7W", + "codeIcaoAirline": "", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wayraperu", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1197, + "callsign": "", + "codeHub": "", + "codeIataAirline": "7W", + "codeIcaoAirline": "", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Scan Con Travel", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1198, + "callsign": "", + "codeHub": "", + "codeIataAirline": "7W*", + "codeIcaoAirline": "", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wayra Peru", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1199, + "callsign": "", + "codeHub": "LGG", + "codeIataAirline": "7X", + "codeIcaoAirline": "NTR", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TNT Worldwide", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1200, + "callsign": "INDUSTRIA", + "codeHub": "NAP", + "codeIataAirline": "7Y", + "codeIcaoAirline": "IDU", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Industria", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1201, + "callsign": "AMERISTAR", + "codeHub": "ADS", + "codeIataAirline": "7Z", + "codeIcaoAirline": "AJI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ameristar Jet Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1202, + "callsign": "CREOLE", + "codeHub": "RAI", + "codeIataAirline": "7Z", + "codeIcaoAirline": "HCV", + "codeIso2Country": "CV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Halcyonair", + "nameCountry": "Cape Verde", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1203, + "callsign": "LAKER BAHAMAS", + "codeHub": "FPO", + "codeIataAirline": "7Z", + "codeIcaoAirline": "LBH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "569", + "nameAirline": "L.B.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1204, + "callsign": "", + "codeHub": "", + "codeIataAirline": "7Z", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ameristar Air Cargo, Inc.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1205, + "callsign": "", + "codeHub": "", + "codeIataAirline": "86", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 1992, + "iataPrefixAccounting": "", + "nameAirline": "Skylanes", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1206, + "callsign": "AMERICANA", + "codeHub": "LIM", + "codeIataAirline": "8A", + "codeIcaoAirline": "ANE", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Americana de Aviacion", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1207, + "callsign": "ARROW PANAMA", + "codeHub": "PTY", + "codeIataAirline": "8A", + "codeIcaoAirline": "WAP", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arrow Panama", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1208, + "callsign": "", + "codeHub": "", + "codeIataAirline": "8A", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Panama Airways", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1209, + "callsign": "ATLAS BLUE", + "codeHub": "RAK", + "codeIataAirline": "8A*", + "codeIcaoAirline": "BMM", + "codeIso2Country": "MA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlas Blue", + "nameCountry": "Morocco", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1210, + "callsign": "CARIB STAR", + "codeHub": "ANU", + "codeIataAirline": "8B", + "codeIcaoAirline": "GFI", + "codeIso2Country": "AG", + "founding": 0, + "iataPrefixAccounting": "557", + "nameAirline": "Caribbean Star Airlines", + "nameCountry": "Antigua and Barbuda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1211, + "callsign": "BORGWARDT", + "codeHub": "SXF", + "codeIataAirline": "8B*", + "codeIcaoAirline": "BFY", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bremenfly", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1212, + "callsign": "", + "codeHub": "LFW", + "codeIataAirline": "8C", + "codeIcaoAirline": "HZT", + "codeIso2Country": "TG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Horizon Togo", + "nameCountry": "Togo", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1213, + "callsign": "INTER-FLIGHT", + "codeHub": "", + "codeIataAirline": "8C", + "codeIcaoAirline": "INT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interstate Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1214, + "callsign": "EAST STAR", + "codeHub": "WUH", + "codeIataAirline": "8C*", + "codeIcaoAirline": "DXH", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East Star Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1215, + "callsign": "", + "codeHub": "", + "codeIataAirline": "8C*", + "codeIcaoAirline": "", + "codeIso2Country": "TG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Horizon", + "nameCountry": "Togo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1216, + "callsign": "", + "codeHub": "", + "codeIataAirline": "8C*", + "codeIcaoAirline": "", + "codeIso2Country": "MO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cotai Jet", + "nameCountry": "Macao", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1217, + "callsign": "EXPOAVIA", + "codeHub": "CMB", + "codeIataAirline": "8D", + "codeIcaoAirline": "EXV", + "codeIso2Country": "LK", + "founding": 1997, + "iataPrefixAccounting": "319", + "nameAirline": "FitsAir", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1218, + "callsign": "FISCHER", + "codeHub": "PRG", + "codeIataAirline": "8F", + "codeIcaoAirline": "FFR", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fischer Air", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1219, + "callsign": "SAOTOME AIRWAYS", + "codeHub": "TMS", + "codeIataAirline": "8F", + "codeIcaoAirline": "STP", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "470", + "nameAirline": "STP Airways", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1220, + "callsign": "MID AFRICA", + "codeHub": "BJL", + "codeIataAirline": "8G", + "codeIcaoAirline": "MFG", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "357", + "nameAirline": "Mid Africa Aviation", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1221, + "callsign": "ANGEL AIR", + "codeHub": "", + "codeIataAirline": "8G", + "codeIcaoAirline": "NGE", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Angel Airlines", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1222, + "callsign": "BANJET", + "codeHub": "BCN", + "codeIataAirline": "8G*", + "codeIcaoAirline": "GJT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "395", + "nameAirline": "Girjet", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1223, + "callsign": "", + "codeHub": "", + "codeIataAirline": "8G*", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Instone Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1224, + "callsign": "", + "codeHub": "", + "codeIataAirline": "8G*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gulf & Caribbean Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1225, + "callsign": "HIWAY", + "codeHub": "INV", + "codeIataAirline": "8H", + "codeIcaoAirline": "HWY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Highland Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1226, + "callsign": "FRANKIE", + "codeHub": "BGY", + "codeIataAirline": "8I", + "codeIcaoAirline": "MYW", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MyAir.com", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1227, + "callsign": "ARGAN", + "codeHub": "CMN", + "codeIataAirline": "8J", + "codeIcaoAirline": "JFU", + "codeIso2Country": "MA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet4You", + "nameCountry": "Morocco", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1228, + "callsign": "", + "codeHub": "", + "codeIataAirline": "8J", + "codeIcaoAirline": "", + "codeIso2Country": "MA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Societe D'Investissement", + "nameCountry": "Morocco", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1229, + "callsign": "KOMIINTER", + "codeHub": "SCW", + "codeIataAirline": "8J*", + "codeIcaoAirline": "KMV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Komiinteravia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1230, + "callsign": "ANGEL WINGS", + "codeHub": "BBU", + "codeIataAirline": "8K", + "codeIcaoAirline": "KOZ", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "650", + "nameAirline": "Angel Airlines", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1231, + "callsign": "VITEK", + "codeHub": "OSR", + "codeIataAirline": "8K", + "codeIcaoAirline": "VTR", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Ostrava", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1232, + "callsign": "", + "codeHub": "", + "codeIataAirline": "8K*", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Exploits Valley Air Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1233, + "callsign": "", + "codeHub": "MNL", + "codeIataAirline": "8L", + "codeIcaoAirline": "GDI", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grand International Airways", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1234, + "callsign": "", + "codeHub": "", + "codeIataAirline": "8L", + "codeIcaoAirline": "", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "981", + "nameAirline": "Cargo Plus Aviation", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1235, + "callsign": "NEWDAN", + "codeHub": "EBJ", + "codeIataAirline": "8L*", + "codeIcaoAirline": "NAW", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Newair", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1236, + "callsign": "MAXAIR", + "codeHub": "MMX", + "codeIataAirline": "8M", + "codeIcaoAirline": "MXL", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maxair", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1237, + "callsign": "", + "codeHub": "", + "codeIataAirline": "8N", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Air Services", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1238, + "callsign": "AERODYNAMICS", + "codeHub": "", + "codeIataAirline": "8N*", + "codeIcaoAirline": "DYN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerodynamics", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1239, + "callsign": "NORDFLIGHT", + "codeHub": "", + "codeIataAirline": "8N*", + "codeIcaoAirline": "NKF", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nordkalottflyg", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1240, + "callsign": "", + "codeHub": "CXH", + "codeIataAirline": "8O", + "codeIcaoAirline": "YWZ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West Coast Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1241, + "callsign": "", + "codeHub": "", + "codeIataAirline": "8O", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West Coast Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1242, + "callsign": "PAYAMAIR", + "codeHub": "", + "codeIataAirline": "8P*", + "codeIcaoAirline": "IRP", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Payam (IPTAS)", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1243, + "callsign": "WHISPERJET", + "codeHub": "SEN", + "codeIataAirline": "8Q", + "codeIcaoAirline": "PRN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Princess Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1244, + "callsign": "FLIGHT SOL", + "codeHub": "ROS", + "codeIataAirline": "8R", + "codeIcaoAirline": "OLS", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "300", + "nameAirline": "SOL S.A. Lineas Aereas", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1245, + "callsign": "", + "codeHub": "", + "codeIataAirline": "8R", + "codeIcaoAirline": "", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TRIP Transporte Aereo Regional do Interior Paulista", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1246, + "callsign": "", + "codeHub": "", + "codeIataAirline": "8R*", + "codeIcaoAirline": "RLB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Alba", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1247, + "callsign": "", + "codeHub": "", + "codeIataAirline": "8S", + "codeIcaoAirline": "", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "802", + "nameAirline": "Shun Tak-China Travel Ship Mgmt. Ltd.", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1248, + "callsign": "", + "codeHub": "", + "codeIataAirline": "8S", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Alaska Cargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1249, + "callsign": "SCORPIO", + "codeHub": "CAI", + "codeIataAirline": "8S*", + "codeIcaoAirline": "SCP", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Scorpio Aviation", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1250, + "callsign": "", + "codeHub": "", + "codeIataAirline": "8T", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Tindi", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1251, + "callsign": "", + "codeHub": "YZF", + "codeIataAirline": "8T*", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "744", + "nameAirline": "Air Tindi", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1252, + "callsign": "SIMON", + "codeHub": "", + "codeIataAirline": "8U", + "codeIcaoAirline": "SIQ", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Simon Air", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1253, + "callsign": "WRIGHT FLYER", + "codeHub": "FAI", + "codeIataAirline": "8V", + "codeIcaoAirline": "WRT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wright Air Service Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1254, + "callsign": "", + "codeHub": "", + "codeIataAirline": "8W", + "codeIcaoAirline": "EDR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly All Ways", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1255, + "callsign": "PRIVATE WINGS", + "codeHub": "SXF", + "codeIataAirline": "8W", + "codeIcaoAirline": "PWF", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "116", + "nameAirline": "Private Wings", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1256, + "callsign": "", + "codeHub": "TOL", + "codeIataAirline": "8W", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Burlington Air Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1257, + "callsign": "", + "codeHub": "TOL", + "codeIataAirline": "8W", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BAX Global", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1258, + "callsign": "", + "codeHub": "", + "codeIataAirline": "8W", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Always N.V.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1259, + "callsign": "", + "codeHub": "", + "codeIataAirline": "8W*", + "codeIcaoAirline": "ARD", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocondor Transportes Aereos Lda.", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1260, + "callsign": "AIR TEAM", + "codeHub": "", + "codeIataAirline": "8W*", + "codeIcaoAirline": "TTX", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Team", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1261, + "callsign": "", + "codeHub": "TSN", + "codeIataAirline": "8Y", + "codeIcaoAirline": "C YZ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "China Postal Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1262, + "callsign": "", + "codeHub": "SSG", + "codeIataAirline": "8Y", + "codeIcaoAirline": "EUG", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EuroGuineana de Aviacion", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1263, + "callsign": "", + "codeHub": "SOF", + "codeIataAirline": "8Z", + "codeIcaoAirline": "WVL", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wizz Air Bulgaria", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1264, + "callsign": "DASH", + "codeHub": "YYT", + "codeIataAirline": "9A", + "codeIcaoAirline": "ATL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Atlantic", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1265, + "callsign": "AIRLINES ALADIA", + "codeHub": "MTY", + "codeIataAirline": "9A", + "codeIcaoAirline": "AYD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aladia Airlines", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1266, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9A", + "codeIcaoAirline": "", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Visa Airways", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1267, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9A*", + "codeIcaoAirline": "", + "codeIso2Country": "CU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Viazul", + "nameCountry": "Cuba", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1268, + "callsign": "", + "codeHub": "QSR", + "codeIataAirline": "9B", + "codeIcaoAirline": "", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Sal", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1269, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9B", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "450", + "nameAirline": "AccesRail and Partner Railways", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1270, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9B*", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AccesRail and Partner Railways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1271, + "callsign": "WIMBIDIRA", + "codeHub": "FIH", + "codeIataAirline": "9C*", + "codeIcaoAirline": "WDA", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "357", + "nameAirline": "Wimbi Dira Airways", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1272, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9C*", + "codeIcaoAirline": "", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Haiti Caribbean Airlines", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1273, + "callsign": "CONDOMINICANA", + "codeHub": "", + "codeIataAirline": "9D", + "codeIcaoAirline": "CND", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Continente Dominicana", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1274, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "9D", + "codeIcaoAirline": "DET", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Deta Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1275, + "callsign": "SNOWBALL", + "codeHub": "", + "codeIataAirline": "9D", + "codeIcaoAirline": "SNO", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Delta Air Charter", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1276, + "callsign": "TOUMAI AIR", + "codeHub": "AEH", + "codeIataAirline": "9D", + "codeIcaoAirline": "THE", + "codeIso2Country": "TD", + "founding": 0, + "iataPrefixAccounting": "371", + "nameAirline": "Toumai Air", + "nameCountry": "Chad", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1277, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9D", + "codeIcaoAirline": "", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Perm Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1278, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9D*", + "codeIcaoAirline": "DET", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "228", + "nameAirline": "D.E.T.A. Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1279, + "callsign": "", + "codeHub": "MEM", + "codeIataAirline": "9E", + "codeIcaoAirline": "FLG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Express Airlines I", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1280, + "callsign": "SKYCRAFT CANADA", + "codeHub": "", + "codeIataAirline": "9F", + "codeIcaoAirline": "SKG", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skycraft Air Transport", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1281, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9F", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "814", + "nameAirline": "Eurostar International Limited", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1282, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9F*", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurostar", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1283, + "callsign": "GALAXY AIR", + "codeHub": "ATH", + "codeIataAirline": "9G", + "codeIcaoAirline": "GLX", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Galaxy Airways", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1284, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9G", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "9G Rail Limited", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1285, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9G*", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airport Express Rail", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1286, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9G*", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "9G Rail", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1287, + "callsign": "", + "codeHub": "BON", + "codeIataAirline": "9H", + "codeIcaoAirline": "BXL", + "codeIso2Country": "BQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BonairExpress", + "nameCountry": "Bonaire, Saint Eustatius and Saba ", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1288, + "callsign": "", + "codeHub": "CUR", + "codeIataAirline": "9H", + "codeIcaoAirline": "BXL", + "codeIso2Country": "CW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CuracaoExpress", + "nameCountry": "Curacao", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1289, + "callsign": "", + "codeHub": "ALG", + "codeIataAirline": "9H", + "codeIcaoAirline": "DEI", + "codeIso2Country": "DZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ecoair", + "nameCountry": "Algeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1290, + "callsign": "BONAIRE EXPRESS", + "codeHub": "CUR", + "codeIataAirline": "9H", + "codeIcaoAirline": "DNL", + "codeIso2Country": "AN", + "founding": 0, + "iataPrefixAccounting": "493", + "nameAirline": "Dutch Antilles Express", + "nameCountry": "Netherlands Antilles", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1291, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9H", + "codeIcaoAirline": "", + "codeIso2Country": "AN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dutch Eagle Express", + "nameCountry": "Netherlands Antilles", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1292, + "callsign": "", + "codeHub": "DMK", + "codeIataAirline": "9I", + "codeIcaoAirline": "TKY", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thai Sky Airlines", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1293, + "callsign": "PACIFIC ISLE", + "codeHub": "SPN", + "codeIataAirline": "9J", + "codeIcaoAirline": "PSA", + "codeIso2Country": "MP", + "founding": 0, + "iataPrefixAccounting": "321", + "nameAirline": "Pacific Island Aviation", + "nameCountry": "Northern Mariana Islands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1294, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9J", + "codeIcaoAirline": "", + "codeIso2Country": "GY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ejet Inc", + "nameCountry": "Guyana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1295, + "callsign": "", + "codeHub": "HYA", + "codeIataAirline": "9K", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cape Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1296, + "callsign": "TRANSZIM", + "codeHub": "", + "codeIataAirline": "9K*", + "codeIcaoAirline": "TFZ", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "335", + "nameAirline": "Transport Africa", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1297, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9K*", + "codeIcaoAirline": "", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amiyi Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1298, + "callsign": "COLGAN", + "codeHub": "BOS", + "codeIataAirline": "9L", + "codeIcaoAirline": "CJC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "426", + "nameAirline": "Colgan Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1299, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9L", + "codeIcaoAirline": "WLN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West Link Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1300, + "callsign": "", + "codeHub": "ABV", + "codeIataAirline": "9L", + "codeIcaoAirline": "", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West Link Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "start_up", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1301, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9L", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West Link Airways", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1302, + "callsign": "MEGANTARA", + "codeHub": "CGK", + "codeIataAirline": "9M*", + "codeIcaoAirline": "MKE", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "824", + "nameAirline": "Megantara Air", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1303, + "callsign": "AYJAY CARGO", + "codeHub": "NRT", + "codeIataAirline": "9N", + "codeIcaoAirline": "AJV", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "938", + "nameAirline": "ANA & JP Express", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1304, + "callsign": "NORDWIND", + "codeHub": "MHQ", + "codeIataAirline": "9N", + "codeIcaoAirline": "NVD", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Aland", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1305, + "callsign": "TROPISER", + "codeHub": "SPR", + "codeIataAirline": "9N", + "codeIcaoAirline": "TOS", + "codeIso2Country": "BZ", + "founding": 1979, + "iataPrefixAccounting": "789", + "nameAirline": "Tropic Air Limited", + "nameCountry": "Belize", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1306, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9N", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transtate Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1307, + "callsign": "", + "codeHub": "GUA", + "codeIataAirline": "9O", + "codeIcaoAirline": "TSP", + "codeIso2Country": "GT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter - Transportes Aereos Inter", + "nameCountry": "Guatemala", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1308, + "callsign": "", + "codeHub": "NSI", + "codeIataAirline": "9O", + "codeIcaoAirline": "", + "codeIso2Country": "CM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Airways Cameroon", + "nameCountry": "Cameroon", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1309, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9O", + "codeIcaoAirline": "", + "codeIso2Country": "GT", + "founding": 0, + "iataPrefixAccounting": "304", + "nameAirline": "Transportes Aereos Inter", + "nameCountry": "Guatemala", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1310, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9O", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "The Cargo Flights Co.,LTD.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1311, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9O*", + "codeIcaoAirline": "", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "The Cargo Flights", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1312, + "callsign": "ARABIA JORDAN", + "codeHub": "AMM", + "codeIataAirline": "9P", + "codeIcaoAirline": "JAD", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "311", + "nameAirline": "Air Arabia Jordan", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1313, + "callsign": "PELANGI", + "codeHub": "SZB", + "codeIataAirline": "9P", + "codeIcaoAirline": "PEG", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pelangi Air", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1314, + "callsign": "", + "codeHub": "CIA", + "codeIataAirline": "9P", + "codeIcaoAirline": "PIT", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Panair (Italy)", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1315, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9P*", + "codeIcaoAirline": "", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Airlines", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1316, + "callsign": "CAICOS", + "codeHub": "PLS", + "codeIataAirline": "9Q", + "codeIcaoAirline": "CXE", + "codeIso2Country": "TC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caicos Express Airways", + "nameCountry": "Turks and Caicos Islands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1317, + "callsign": "PEEBEE AIR", + "codeHub": "BKK", + "codeIataAirline": "9Q*", + "codeIcaoAirline": "PBA", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "543", + "nameAirline": "PB Air", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1318, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9R", + "codeIcaoAirline": "EUD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euro Direct", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1319, + "callsign": "ROSIE", + "codeHub": "", + "codeIataAirline": "9R", + "codeIcaoAirline": "RAX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rosenbalm Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1320, + "callsign": "SLOV LINE", + "codeHub": "BTS", + "codeIataAirline": "9S", + "codeIcaoAirline": "SLL", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "921", + "nameAirline": "Slovak Airlines", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1321, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9S", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sabourin Lake Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1322, + "callsign": "", + "codeHub": "JFK", + "codeIataAirline": "9T", + "codeIcaoAirline": "", + "codeIso2Country": "GY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Travelspan GT Inc", + "nameCountry": "Guyana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 1323, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9T", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ACT Havayollari A.S.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1324, + "callsign": "ATLANTIS-LINES", + "codeHub": "", + "codeIataAirline": "9V", + "codeIcaoAirline": "ALS", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantis Airlines", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1325, + "callsign": "SCHEFF", + "codeHub": "", + "codeIataAirline": "9V", + "codeIcaoAirline": "ASF", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Schefferville", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1326, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9V", + "codeIcaoAirline": "VPA", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vipair", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1327, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9V", + "codeIcaoAirline": "VPI", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vip Air", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1328, + "callsign": "", + "codeHub": "MRS", + "codeIataAirline": "9X", + "codeIcaoAirline": "AXY", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "New Axis Airways", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1329, + "callsign": "CONGO EXPRESS", + "codeHub": "FIH", + "codeIataAirline": "9X", + "codeIcaoAirline": "CXR", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Congo Express", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1330, + "callsign": "", + "codeHub": "MEM", + "codeIataAirline": "9X", + "codeIcaoAirline": "LTD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "504", + "nameAirline": "Southern Airways Express, LLC", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1331, + "callsign": "PARTNER", + "codeHub": "YYZ", + "codeIataAirline": "9X", + "codeIcaoAirline": "OEL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ontario Express", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1332, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9X", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Diamond International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1333, + "callsign": "TASAWI", + "codeHub": "", + "codeIataAirline": "9X*", + "codeIcaoAirline": "TWI", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tasawi Air Services", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1334, + "callsign": "GEORGIAN WING", + "codeHub": "TBS", + "codeIataAirline": "9Y", + "codeIcaoAirline": "FGE", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Georgia", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1335, + "callsign": "AIR KAZAKSTAN", + "codeHub": "ALA", + "codeIataAirline": "9Y", + "codeIcaoAirline": "KZK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "452", + "nameAirline": "Air Kazakstan", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1336, + "callsign": "", + "codeHub": "DEL", + "codeIataAirline": "9Y", + "codeIcaoAirline": "MDD", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MDLR Airlines", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1337, + "callsign": "", + "codeHub": "ADD", + "codeIataAirline": "9Y", + "codeIcaoAirline": "", + "codeIso2Country": "ET", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Airways (Ethiopia)", + "nameCountry": "Ethiopia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1338, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9Y", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Airways", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1339, + "callsign": "", + "codeHub": "", + "codeIataAirline": "9Y", + "codeIcaoAirline": "", + "codeIso2Country": "CM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Axis Linternational Lines", + "nameCountry": "Cameroon", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1340, + "callsign": "", + "codeHub": "", + "codeIataAirline": "A0", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "177", + "nameAirline": "Macair Jet S.A.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1341, + "callsign": "", + "codeHub": "", + "codeIataAirline": "A0*", + "codeIcaoAirline": "THJ", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thai Jet International", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1342, + "callsign": "", + "codeHub": "", + "codeIataAirline": "A1", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "G2 Switch Works", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1343, + "callsign": "", + "codeHub": "MBA", + "codeIataAirline": "A2", + "codeIcaoAirline": "QSC", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ASA - African Safari Airways", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1344, + "callsign": "SOUTH ASIAN", + "codeHub": "DAC", + "codeIataAirline": "A2*", + "codeIcaoAirline": "BDS", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "196", + "nameAirline": "South Asian Airlines", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1345, + "callsign": "AEROCON", + "codeHub": "SRZ", + "codeIataAirline": "A4", + "codeIcaoAirline": "AEK", + "codeIso2Country": "BO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocon", + "nameCountry": "Bolivia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1346, + "callsign": "SOUTHERN WINDS", + "codeHub": "AEP", + "codeIataAirline": "A4*", + "codeIcaoAirline": "SWD", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "242", + "nameAirline": "Southern Winds", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1347, + "callsign": "", + "codeHub": "", + "codeIataAirline": "A5*", + "codeIcaoAirline": "", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avolar Airlines", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1348, + "callsign": "HONG LAND", + "codeHub": "KMG", + "codeIataAirline": "A6", + "codeIcaoAirline": "HTU", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "389", + "nameAirline": "Yunnan Hongtu Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1349, + "callsign": "AIR NIAMEY", + "codeHub": "NIM", + "codeIataAirline": "A7", + "codeIcaoAirline": "AWN", + "codeIso2Country": "NE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Niamey", + "nameCountry": "Niger", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1350, + "callsign": "RED COMET", + "codeHub": "MAD", + "codeIataAirline": "A7", + "codeIcaoAirline": "MPD", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "352", + "nameAirline": "Air Comet", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1351, + "callsign": "ATNAR", + "codeHub": "", + "codeIataAirline": "A7", + "codeIcaoAirline": "STR", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Astanair", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1352, + "callsign": "", + "codeHub": "", + "codeIataAirline": "AB", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cortez International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1353, + "callsign": "MANILA AVIATION", + "codeHub": "", + "codeIataAirline": "AB", + "codeIcaoAirline": "", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Manila Aviation Services", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1354, + "callsign": "SPEND AIR", + "codeHub": "IMT", + "codeIataAirline": "AB*", + "codeIcaoAirline": "HKA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Superior Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1355, + "callsign": "LONE STAR", + "codeHub": "", + "codeIataAirline": "AD", + "codeIcaoAirline": "LSS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lone Star Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1356, + "callsign": "RADISAIR", + "codeHub": "DPS", + "codeIataAirline": "AD", + "codeIcaoAirline": "PRZ", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "817", + "nameAirline": "Air Paradise International", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1357, + "callsign": "", + "codeHub": "DEN", + "codeIataAirline": "AD", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aspen Mountain Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1358, + "callsign": "AIRBOAT", + "codeHub": "", + "codeIataAirline": "AD", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Antilles Air Boats", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1359, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ADV", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1360, + "callsign": "AIR EUROPE", + "codeHub": "", + "codeIataAirline": "AE", + "codeIcaoAirline": "AOE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Europe", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1361, + "callsign": "", + "codeHub": "CMB", + "codeIataAirline": "AE", + "codeIcaoAirline": "", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Ceylon", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1362, + "callsign": "AIRCELYLON", + "codeHub": "", + "codeIataAirline": "AE", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Ceylon", + "nameCountry": "Ceylon", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1363, + "callsign": "", + "codeHub": "", + "codeIataAirline": "AG", + "codeIcaoAirline": "AGA", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronaves Del Centro", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1364, + "callsign": "TRANSAF", + "codeHub": "", + "codeIataAirline": "AG", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Trans Africa", + "nameCountry": "Rhodesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1365, + "callsign": "ALPHA JULIETT", + "codeHub": "MNL", + "codeIataAirline": "AJ", + "codeIcaoAirline": "AFI", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Filipinas", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1366, + "callsign": "AMERICAN JET", + "codeHub": "AEP", + "codeIataAirline": "AJ", + "codeIcaoAirline": "AJT", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "American Jet", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1367, + "callsign": "AZTEC WORLD", + "codeHub": "FXE", + "codeIataAirline": "AJ", + "codeIcaoAirline": "AZY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "179", + "nameAirline": "Aztec Worldwide Airlines Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1368, + "callsign": "", + "codeHub": "", + "codeIataAirline": "AJ", + "codeIcaoAirline": "", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovias Internacional Balboa", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1369, + "callsign": "", + "codeHub": "", + "codeIataAirline": "AJ", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air-Lift Commuter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1370, + "callsign": "AIRBRIDGE", + "codeHub": "", + "codeIataAirline": "AK", + "codeIcaoAirline": "ABR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bridge Carriers", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1371, + "callsign": "ALPHA JET", + "codeHub": "", + "codeIataAirline": "AK", + "codeIcaoAirline": "AJE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alfa Jet", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1372, + "callsign": "WELSHAIR", + "codeHub": "CWL", + "codeIataAirline": "AK", + "codeIcaoAirline": "CYM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airways International Cymru", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1373, + "callsign": "", + "codeHub": "PHL", + "codeIataAirline": "AK", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Altair Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1374, + "callsign": "AEROKONTAKT", + "codeHub": "", + "codeIataAirline": "AK", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerokontakt", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1375, + "callsign": "", + "codeHub": "PIT", + "codeIataAirline": "AL", + "codeIcaoAirline": "PCA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pennsylvania Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1376, + "callsign": "SKYWAY-EX", + "codeHub": "MKE", + "codeIataAirline": "AL", + "codeIcaoAirline": "SYX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midwest Connect", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1377, + "callsign": "", + "codeHub": "MLN", + "codeIataAirline": "AL", + "codeIcaoAirline": "", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airmel Lineas Aereas", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1378, + "callsign": "", + "codeHub": "PHL", + "codeIataAirline": "AL", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ransome Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1379, + "callsign": "", + "codeHub": "PIT", + "codeIataAirline": "AL", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Allegheny Airlines (1953)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1380, + "callsign": "AIRLINK BAHAMAS", + "codeHub": "NAS", + "codeIataAirline": "AL*", + "codeIcaoAirline": "DLB", + "codeIso2Country": "BS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Destination Airlink Bahamas", + "nameCountry": "Bahamas", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1381, + "callsign": "", + "codeHub": "", + "codeIataAirline": "AM", + "codeIcaoAirline": "", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronaves de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1382, + "callsign": "AUSTAIR", + "codeHub": "MEL", + "codeIataAirline": "AN", + "codeIcaoAirline": "AAA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "90", + "nameAirline": "Ansett Airways", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1383, + "callsign": "", + "codeHub": "", + "codeIataAirline": "AN", + "codeIcaoAirline": "RLA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "HOP!-AIRLINAIR", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1384, + "callsign": "", + "codeHub": "", + "codeIataAirline": "AN", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "HOP! Airlinair", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1385, + "callsign": "AUSTRALIAN", + "codeHub": "CNS", + "codeIataAirline": "AO", + "codeIcaoAirline": "AUZ", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Australian Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1386, + "callsign": "AVIACO", + "codeHub": "BIO", + "codeIataAirline": "AO", + "codeIcaoAirline": "AYC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviaco", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1387, + "callsign": "NOVA", + "codeHub": "SVO", + "codeIataAirline": "AO", + "codeIcaoAirline": "VNV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avianova", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1388, + "callsign": "", + "codeHub": "", + "codeIataAirline": "AO", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air One Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1389, + "callsign": "", + "codeHub": "", + "codeIataAirline": "AO", + "codeIcaoAirline": "", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "970", + "nameAirline": "Air One Aviation", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1390, + "callsign": "HERON", + "codeHub": "FCO", + "codeIataAirline": "AP", + "codeIcaoAirline": "ADH", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "867", + "nameAirline": "Aliadriatica", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1391, + "callsign": "ASPEN AIR", + "codeHub": "KDEN", + "codeIataAirline": "AP", + "codeIcaoAirline": "ASP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aspen Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1392, + "callsign": "AIR PEGASUS", + "codeHub": "", + "codeIataAirline": "AP", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flugdienst Pegasus", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1393, + "callsign": "", + "codeHub": "", + "codeIataAirline": "AP", + "codeIcaoAirline": "", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "B.I.A.S. overseas", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1394, + "callsign": "BIAS", + "codeHub": "", + "codeIataAirline": "AP", + "codeIcaoAirline": "", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Belgiun International Air Services", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1395, + "callsign": "", + "codeHub": "VIE", + "codeIataAirline": "AQ", + "codeIcaoAirline": "MPF", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MAP Jet", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 1396, + "callsign": "", + "codeHub": "HLA", + "codeIataAirline": "AQ", + "codeIcaoAirline": "SJE", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Air (South Africa)", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1397, + "callsign": "ANGLIA", + "codeHub": "NWI", + "codeIataAirline": "AQ", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Anglia", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1398, + "callsign": "SOUTHAIR", + "codeHub": "", + "codeIataAirline": "AQ", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Air Charters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1399, + "callsign": "AIR NIGER", + "codeHub": "", + "codeIataAirline": "AW", + "codeIcaoAirline": "AWN", + "codeIso2Country": "NE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Niger", + "nameCountry": "Niger", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1400, + "callsign": "SCHREINER", + "codeHub": "AMS", + "codeIataAirline": "AW", + "codeIcaoAirline": "SCH", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "405", + "nameAirline": "CHC Airways", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1401, + "callsign": "WAFEER", + "codeHub": "JED", + "codeIataAirline": "AW", + "codeIcaoAirline": "WFR", + "codeIso2Country": "SA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alwafeer Air", + "nameCountry": "Saudi Arabia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1402, + "callsign": "", + "codeHub": "GUA", + "codeIataAirline": "AW", + "codeIcaoAirline": "", + "codeIso2Country": "GT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Quetzal", + "nameCountry": "Guatemala", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1403, + "callsign": "", + "codeHub": "", + "codeIataAirline": "AW", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "364", + "nameAirline": "Rutas Aereas de Venezuela RAV S.A", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1404, + "callsign": "AEROQUETZAL", + "codeHub": "", + "codeIataAirline": "AW", + "codeIcaoAirline": "", + "codeIso2Country": "GT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroquetzal", + "nameCountry": "Guatemala", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1405, + "callsign": "DIRGANTARA", + "codeHub": "HLP", + "codeIataAirline": "AW*", + "codeIcaoAirline": "DIR", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dirgantara Air Service", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1406, + "callsign": "RUTACA", + "codeHub": "", + "codeIataAirline": "AW*", + "codeIcaoAirline": "RUC", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rutas Aereas de Venezuela", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1407, + "callsign": "EUROEXPRESS", + "codeHub": "", + "codeIataAirline": "AX", + "codeIcaoAirline": "AEE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Europe Express", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1408, + "callsign": "ALFA X-RAY", + "codeHub": "", + "codeIataAirline": "AX", + "codeIcaoAirline": "ATG", + "codeIso2Country": "TG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Togo", + "nameCountry": "Togo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1409, + "callsign": "", + "codeHub": "", + "codeIataAirline": "AX", + "codeIcaoAirline": "CAX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Connectair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1410, + "callsign": "", + "codeHub": "ACI", + "codeIataAirline": "AX", + "codeIcaoAirline": "XAX", + "codeIso2Country": "GG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rockhopper", + "nameCountry": "Guernsey", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1411, + "callsign": "", + "codeHub": "FMM", + "codeIataAirline": "AX", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "flytouropa", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 1412, + "callsign": "BINTER", + "codeHub": "", + "codeIataAirline": "AX*", + "codeIcaoAirline": "BIM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Binter Mediterraneo", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1413, + "callsign": "", + "codeHub": "", + "codeIataAirline": "B1", + "codeIcaoAirline": "", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CIONS Software Ltda", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1414, + "callsign": "", + "codeHub": "", + "codeIataAirline": "B1", + "codeIcaoAirline": "", + "codeIso2Country": "SG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bravo Passenger Solution Pte., Ltd.", + "nameCountry": "Singapore", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1415, + "callsign": "AMBASSADOR", + "codeHub": "NCL", + "codeIataAirline": "B3", + "codeIcaoAirline": "AMY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ambassador Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1416, + "callsign": "", + "codeHub": "", + "codeIataAirline": "B3", + "codeIcaoAirline": "BTN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tashi Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1417, + "callsign": "BELLVIEW AIRLINES", + "codeHub": "LOS", + "codeIataAirline": "B3*", + "codeIcaoAirline": "BLV", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "208", + "nameAirline": "Bellview Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1418, + "callsign": "ZANAIR", + "codeHub": "ZNZ", + "codeIataAirline": "B4", + "codeIcaoAirline": "TAN", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "698", + "nameAirline": "ZanAir Limited", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1419, + "callsign": "", + "codeHub": "HHN", + "codeIataAirline": "B5", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amadeus Flugdienst", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1420, + "callsign": "", + "codeHub": "IST", + "codeIataAirline": "B6", + "codeIcaoAirline": "TOP", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Top Air (Turkey)", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1421, + "callsign": "", + "codeHub": "MCO", + "codeIataAirline": "B6", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunbird Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1422, + "callsign": "", + "codeHub": "", + "codeIataAirline": "B6", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunbird", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1423, + "callsign": "", + "codeHub": "KHH", + "codeIataAirline": "B7", + "codeIcaoAirline": "MKO", + "codeIso2Country": "TW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Makung Airlines", + "nameCountry": "Taiwan", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1424, + "callsign": "ITALAIR", + "codeHub": "FCO", + "codeIataAirline": "B8", + "codeIcaoAirline": "DRG", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Italair", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1425, + "callsign": "BOTIR-AVIA", + "codeHub": "FRU", + "codeIataAirline": "B8*", + "codeIcaoAirline": "BTR", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Botir Avia", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1426, + "callsign": "AIR BANGLA", + "codeHub": "DAC", + "codeIataAirline": "B9*", + "codeIcaoAirline": "BGD", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bangladesh", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1427, + "callsign": "", + "codeHub": "LHR", + "codeIataAirline": "BA", + "codeIcaoAirline": "", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "B.O.A.C", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1428, + "callsign": "BLACKHAWK", + "codeHub": "", + "codeIataAirline": "BB", + "codeIcaoAirline": "BAK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blackhawk Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1429, + "callsign": "BALAIR", + "codeHub": "ZRH", + "codeIataAirline": "BB", + "codeIcaoAirline": "BBB", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Balair", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1430, + "callsign": "CARGO-BEE", + "codeHub": "LGG", + "codeIataAirline": "BB", + "codeIcaoAirline": "CBB", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cargo B Airlines", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1431, + "callsign": "", + "codeHub": "", + "codeIataAirline": "BB", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Great Lakes PYT", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1432, + "callsign": "SEABORNE", + "codeHub": "", + "codeIataAirline": "BB*", + "codeIcaoAirline": "SBS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Seaborne Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1433, + "callsign": "BICAL", + "codeHub": "", + "codeIataAirline": "BC", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Insulated Callender's Cable Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1434, + "callsign": "", + "codeHub": "", + "codeIataAirline": "BC*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Advance Leasing Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1435, + "callsign": "BRITISH MIDLAND", + "codeHub": "EMA", + "codeIataAirline": "BD", + "codeIcaoAirline": "BMA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "236", + "nameAirline": "British Midland Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1436, + "callsign": "BAYON AIR", + "codeHub": "PNH", + "codeIataAirline": "BD", + "codeIcaoAirline": "BYC", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "688", + "nameAirline": "Cambodia Bayon Airlines", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1437, + "callsign": "BRAVO ECHO", + "codeHub": "", + "codeIataAirline": "BE", + "codeIcaoAirline": "ABV", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero 8 Venezuela", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1438, + "callsign": "CANNON", + "codeHub": "PMI", + "codeIataAirline": "BE", + "codeIcaoAirline": "CNA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centennial Airlines", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1439, + "callsign": "METRO AIRWAYS", + "codeHub": "", + "codeIataAirline": "BE", + "codeIcaoAirline": "MEO", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bohnstedt Petersen Og Dyrberg A/S", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1440, + "callsign": "TAVRIA-MAK", + "codeHub": "", + "codeIataAirline": "BE", + "codeIcaoAirline": "TVM", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircompany Tavria-Mac", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1441, + "callsign": "BEALINE", + "codeHub": "", + "codeIataAirline": "BE", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "B.E.A.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1442, + "callsign": "", + "codeHub": "", + "codeIataAirline": "BE", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Airways Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 1443, + "callsign": "INTERALAS", + "codeHub": "", + "codeIataAirline": "BF", + "codeIcaoAirline": "AKA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alaska International Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1444, + "callsign": "MARKAIR", + "codeHub": "ANC", + "codeIataAirline": "BF", + "codeIcaoAirline": "MRK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Markair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1445, + "callsign": "CONGOSERV", + "codeHub": "BZV", + "codeIataAirline": "BF", + "codeIcaoAirline": "RSR", + "codeIso2Country": "CG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero-Service", + "nameCountry": "Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1446, + "callsign": "", + "codeHub": "DRW", + "codeIataAirline": "BF", + "codeIcaoAirline": "VIN", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vincent Aviation", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1447, + "callsign": "BUMBLE", + "codeHub": "", + "codeIataAirline": "BF", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bees Flight Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1448, + "callsign": "GUYAIR", + "codeHub": "", + "codeIataAirline": "BG", + "codeIcaoAirline": "", + "codeIso2Country": "GY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guyana Airways", + "nameCountry": "Guyana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1449, + "callsign": "HAWKAIR", + "codeHub": "YXT", + "codeIataAirline": "BH", + "codeIcaoAirline": "HAW", + "codeIso2Country": "CA", + "founding": 1994, + "iataPrefixAccounting": "993", + "nameAirline": "Hawkair Aviation Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1450, + "callsign": "", + "codeHub": "OUA", + "codeIataAirline": "BH", + "codeIcaoAirline": "", + "codeIso2Country": "BF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Volta", + "nameCountry": "Burkina Faso", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1451, + "callsign": "", + "codeHub": "", + "codeIataAirline": "BH", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hawkair Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1452, + "callsign": "", + "codeHub": "", + "codeIataAirline": "BH", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transtate Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1453, + "callsign": "TOPSWISS", + "codeHub": "BSL", + "codeIataAirline": "BH*", + "codeIcaoAirline": "TSW", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TEA Switzerland", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1454, + "callsign": "", + "codeHub": "", + "codeIataAirline": "BH*", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hawkair Aviation Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1455, + "callsign": "BHARAT", + "codeHub": "", + "codeIataAirline": "BI", + "codeIcaoAirline": "", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bharat Commerce and Industries Ltd.", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1456, + "callsign": "", + "codeHub": "", + "codeIataAirline": "BJ", + "codeIcaoAirline": "BCL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Caribbean Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1457, + "callsign": "", + "codeHub": "CIA", + "codeIataAirline": "BJ", + "codeIcaoAirline": "BJA", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Unifly Express", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1458, + "callsign": "BAKHTAR", + "codeHub": "", + "codeIataAirline": "BJ", + "codeIcaoAirline": "BYJ", + "codeIso2Country": "AF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bakhtar Afghan Airlines", + "nameCountry": "Afghanistan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1459, + "callsign": "ISRAEL AIRCRAFT", + "codeHub": "", + "codeIataAirline": "BK", + "codeIcaoAirline": "IAI", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Israel Aircraft Industries", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1460, + "callsign": "PARADISE ISLAND", + "codeHub": "FLL", + "codeIataAirline": "BK", + "codeIcaoAirline": "PDI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Paradise Island Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1461, + "callsign": "TRAPO", + "codeHub": "", + "codeIataAirline": "BK", + "codeIcaoAirline": "", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transpolar", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1462, + "callsign": "", + "codeHub": "ORY", + "codeIataAirline": "BL", + "codeIcaoAirline": "FBR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BelAir - Ile de France", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1463, + "callsign": "PELANDOK", + "codeHub": "", + "codeIataAirline": "BL", + "codeIcaoAirline": "", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pelandok Airways", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1464, + "callsign": "ATI", + "codeHub": "NAP", + "codeIataAirline": "BM", + "codeIcaoAirline": "ATI", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ATI", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1465, + "callsign": "", + "codeHub": "FCO", + "codeIataAirline": "BM", + "codeIcaoAirline": "OBE", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bee", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1466, + "callsign": "AIR SICILIA", + "codeHub": "PMO", + "codeIataAirline": "BM", + "codeIcaoAirline": "SIC", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Sicilia", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1467, + "callsign": "", + "codeHub": "", + "codeIataAirline": "BM", + "codeIcaoAirline": "", + "codeIso2Country": "BZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Belize Air International", + "nameCountry": "Belize", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1468, + "callsign": "", + "codeHub": "", + "codeIataAirline": "BM", + "codeIcaoAirline": "", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thai Flying Service", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1469, + "callsign": "AWAL", + "codeHub": "BAH", + "codeIataAirline": "BN", + "codeIcaoAirline": "BAB", + "codeIso2Country": "BH", + "founding": 0, + "iataPrefixAccounting": "937", + "nameAirline": "Bahrain Air", + "nameCountry": "Bahrain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1470, + "callsign": "BRANIFF", + "codeHub": "DFW", + "codeIataAirline": "BN", + "codeIcaoAirline": "BNF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Braniff", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1471, + "callsign": "", + "codeHub": "DAC", + "codeIataAirline": "BN", + "codeIcaoAirline": "MAB", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mid Asia Airlines", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1472, + "callsign": "", + "codeHub": "CWL", + "codeIataAirline": "BN", + "codeIcaoAirline": "", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FlyForBeans", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1473, + "callsign": "", + "codeHub": "", + "codeIataAirline": "BN", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Inter Transport Co. Ltd.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1474, + "callsign": "", + "codeHub": "", + "codeIataAirline": "BN", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "472", + "nameAirline": "Forward Air International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1475, + "callsign": "WINDSOR", + "codeHub": "SXF", + "codeIataAirline": "BN*", + "codeIcaoAirline": "DBY", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Britannia", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1476, + "callsign": "HORIZ AIR", + "codeHub": "", + "codeIataAirline": "BN*", + "codeIcaoAirline": "HZA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Horizon Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1477, + "callsign": "BEEBEE AIRWAYS", + "codeHub": "KTM", + "codeIataAirline": "BO", + "codeIcaoAirline": "BBW", + "codeIso2Country": "NP", + "founding": 0, + "iataPrefixAccounting": "505", + "nameAirline": "BB Airways", + "nameCountry": "Nepal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1478, + "callsign": "SKIMMER", + "codeHub": "WAW", + "codeIataAirline": "BO", + "codeIcaoAirline": "BGY", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bingo Airways", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1479, + "callsign": "BOURAQ", + "codeHub": "CGK", + "codeIataAirline": "BO", + "codeIcaoAirline": "BOU", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "666", + "nameAirline": "Bouraq Indonesia Airlines", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1480, + "callsign": "AIR COLUMBUS", + "codeHub": "FNC", + "codeIataAirline": "BO*", + "codeIcaoAirline": "CNB", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Columbus", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1481, + "callsign": "", + "codeHub": "PMI", + "codeIataAirline": "BQ", + "codeIcaoAirline": "BBV", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bravo Airlines", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1482, + "callsign": "BALTIA", + "codeHub": "JFK", + "codeIataAirline": "BQ", + "codeIcaoAirline": "BTL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baltia Air Lines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1483, + "callsign": "BELSTAR", + "codeHub": "BRU", + "codeIataAirline": "BQ", + "codeIcaoAirline": "EBA", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Virgin Express", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1484, + "callsign": "BRAVO QUEBEC", + "codeHub": "SDQ", + "codeIataAirline": "BQ", + "codeIcaoAirline": "ROM", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "926", + "nameAirline": "Aeromar Airlines", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1485, + "callsign": "CALEDONIAN", + "codeHub": "LGW", + "codeIataAirline": "BR", + "codeIcaoAirline": "BCA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Caledonian Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1486, + "callsign": "CALEDONIAN", + "codeHub": "", + "codeIataAirline": "BR", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caledonian - British United", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1487, + "callsign": "BRITISH UNITED", + "codeHub": "", + "codeIataAirline": "BR", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British United", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1488, + "callsign": "BUSYBEE", + "codeHub": "", + "codeIataAirline": "BS", + "codeIcaoAirline": "BEE", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Busy Bee Of Norway", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1489, + "callsign": "BANGLASTAR", + "codeHub": "DAC", + "codeIataAirline": "BS", + "codeIcaoAirline": "UBG", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "779", + "nameAirline": "US-Bangla Airlines", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1490, + "callsign": "", + "codeHub": "MLH", + "codeIataAirline": "BT", + "codeIcaoAirline": "", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SATT - Societe Antillaise de Transport Touristique", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1491, + "callsign": "", + "codeHub": "", + "codeIataAirline": "BT", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlines of Northern Australia", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1492, + "callsign": "SCANOR", + "codeHub": "OSL", + "codeIataAirline": "BU", + "codeIcaoAirline": "CNO", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "154", + "nameAirline": "SAS Braathens", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1493, + "callsign": "AFRICOMPANY", + "codeHub": "", + "codeIataAirline": "BU", + "codeIcaoAirline": "FPY", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "883", + "nameAirline": "Compagnie Africaine d'Aviation CAA", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1494, + "callsign": "", + "codeHub": "MUC", + "codeIataAirline": "BV", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LTS - Lufttransport Sud", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1495, + "callsign": "", + "codeHub": "MUC", + "codeIataAirline": "BV", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bavaria - Germanair", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1496, + "callsign": "BAVARIA", + "codeHub": "", + "codeIataAirline": "BV", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bavaria", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1497, + "callsign": "SUNSTREAM", + "codeHub": "", + "codeIataAirline": "BV*", + "codeIcaoAirline": "SSN", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1498, + "callsign": "SPANTAX", + "codeHub": "MAD", + "codeIataAirline": "BX", + "codeIcaoAirline": "BXS", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Spantax", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1499, + "callsign": "COAST AIR", + "codeHub": "HAU", + "codeIataAirline": "BX", + "codeIcaoAirline": "CST", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "970", + "nameAirline": "Coast Air", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1500, + "callsign": "", + "codeHub": "", + "codeIataAirline": "BZ", + "codeIcaoAirline": "BZH", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brittany Air International", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1501, + "callsign": "CAPITAL", + "codeHub": "", + "codeIataAirline": "BZ", + "codeIcaoAirline": "CPG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Capital Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1502, + "callsign": "", + "codeHub": "MUC", + "codeIataAirline": "BZ", + "codeIcaoAirline": "FTI", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "fly FTI", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1503, + "callsign": "BIZAIR", + "codeHub": "", + "codeIataAirline": "BZ", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Aircraft Users Association Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1504, + "callsign": "FROG-LINE", + "codeHub": "", + "codeIataAirline": "BZ*", + "codeIcaoAirline": "FTI", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FTI Fluggeselischaft", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1505, + "callsign": "CENTRALWINGS", + "codeHub": "WAW", + "codeIataAirline": "C0*", + "codeIcaoAirline": "CLW", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centralwings", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1506, + "callsign": "", + "codeHub": "", + "codeIataAirline": "C1", + "codeIcaoAirline": "", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Techtimes Sudamericana", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1507, + "callsign": "", + "codeHub": "", + "codeIataAirline": "C1", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "322", + "nameAirline": "Tectimes Sudamericana S.A.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1508, + "callsign": "LUXORJET", + "codeHub": "TMS", + "codeIataAirline": "C2", + "codeIcaoAirline": "ALU", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Luxor", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1509, + "callsign": "IBIS", + "codeHub": "POS", + "codeIataAirline": "C2", + "codeIcaoAirline": "CBB", + "codeIso2Country": "TT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Caribbean", + "nameCountry": "Trinidad and Tobago", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1510, + "callsign": "", + "codeHub": "", + "codeIataAirline": "C3", + "codeIcaoAirline": "TDR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trade Air Ltd.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1511, + "callsign": "", + "codeHub": "DAC", + "codeIataAirline": "C3", + "codeIcaoAirline": "", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Capital Airlines", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1512, + "callsign": "AIR ICAR", + "codeHub": "", + "codeIataAirline": "C3*", + "codeIcaoAirline": "IPR", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "655", + "nameAirline": "Independent Carrier (ICAR)", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1513, + "callsign": "", + "codeHub": "", + "codeIataAirline": "C3*", + "codeIcaoAirline": "", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "400", + "nameAirline": "Sky Capital Airlines", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1514, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "C4", + "codeIcaoAirline": "CGK", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Click Airways", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1515, + "callsign": "AIR CARRIACOU", + "codeHub": "", + "codeIataAirline": "C4", + "codeIcaoAirline": "COU", + "codeIso2Country": "GD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlines of Carriacou", + "nameCountry": "Grenada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1516, + "callsign": "MESO AMERICANAS", + "codeHub": "GDL", + "codeIataAirline": "C4", + "codeIcaoAirline": "MSO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "665", + "nameAirline": "Aerolineas Mesoamericanas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1517, + "callsign": "", + "codeHub": "OPF", + "codeIataAirline": "C4", + "codeIcaoAirline": "QAI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Conquest Air Cargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1518, + "callsign": "", + "codeHub": "", + "codeIataAirline": "C4", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Conquest Air, Inc.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1519, + "callsign": "CRETAN", + "codeHub": "HER", + "codeIataAirline": "C5", + "codeIcaoAirline": "KRT", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cretan Airlines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1520, + "callsign": "", + "codeHub": "", + "codeIataAirline": "C5", + "codeIcaoAirline": "", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asociados Latinamericanos de Transport", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1521, + "callsign": "", + "codeHub": "", + "codeIataAirline": "C5*", + "codeIcaoAirline": "ASG", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ukraine Airservice Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1522, + "callsign": "CAPITAL EXPRESS", + "codeHub": "IAD", + "codeIataAirline": "C6", + "codeIcaoAirline": "CEX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Capitol Air Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1523, + "callsign": "CANJET", + "codeHub": "YHZ", + "codeIataAirline": "C6", + "codeIcaoAirline": "CJA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CanJet Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1524, + "callsign": "", + "codeHub": "", + "codeIataAirline": "C6", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CHEP Aerospace Solutions Ltd.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1525, + "callsign": "", + "codeHub": "", + "codeIataAirline": "C6*", + "codeIcaoAirline": "", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JMI Aerospace", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1526, + "callsign": "CINNAMON", + "codeHub": "CMB", + "codeIataAirline": "C7", + "codeIcaoAirline": "CIN", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cinnamon Air", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1527, + "callsign": "SPECIAL CARGO", + "codeHub": "", + "codeIataAirline": "C7", + "codeIcaoAirline": "SCI", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Special Cargo Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1528, + "callsign": "SOGDIANA", + "codeHub": "TAS", + "codeIataAirline": "C7", + "codeIcaoAirline": "UZS", + "codeIso2Country": "UZ", + "founding": 0, + "iataPrefixAccounting": "732", + "nameAirline": "Samarkand Airways", + "nameCountry": "Uzbekistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1529, + "callsign": "", + "codeHub": "", + "codeIataAirline": "C7", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saffron Aviation (Pvt) Ltd dba Cinn Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1530, + "callsign": "CONTINENTE", + "codeHub": "", + "codeIataAirline": "C7*", + "codeIcaoAirline": "NTI", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocontinente Chile", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1531, + "callsign": "RICO", + "codeHub": "MAO", + "codeIataAirline": "C7*", + "codeIcaoAirline": "RLE", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rico Linhas Aereas - RLA", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1532, + "callsign": "", + "codeHub": "", + "codeIataAirline": "C7*", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Direct", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1533, + "callsign": "WINDYCITY", + "codeHub": "MDW", + "codeIataAirline": "C8", + "codeIcaoAirline": "WDY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chicago Express Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1534, + "callsign": "", + "codeHub": "", + "codeIataAirline": "C8*", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nacair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1535, + "callsign": "CIRRUS AIR", + "codeHub": "SCN", + "codeIataAirline": "C9", + "codeIcaoAirline": "RUS", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cirrus", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1536, + "callsign": "SKYWISE", + "codeHub": "JNB", + "codeIataAirline": "C9", + "codeIcaoAirline": "SWZ", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skywise", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1537, + "callsign": "LOGISTIC", + "codeHub": "", + "codeIataAirline": "C9*", + "codeIcaoAirline": "CXX", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "226", + "nameAirline": "CLA Air Transport", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1538, + "callsign": "CALEDONIAN", + "codeHub": "", + "codeIataAirline": "CA", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caledonian - British United (Charter)", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1539, + "callsign": "", + "codeHub": "HWO", + "codeIataAirline": "CB", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Caribbean Air Export Import, Inc", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1540, + "callsign": "CARIBAIR", + "codeHub": "", + "codeIataAirline": "CB", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caribbean-Atlantic Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1541, + "callsign": "", + "codeHub": "", + "codeIataAirline": "CB*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "456", + "nameAirline": "Trans Caribbean Air Export Import", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1542, + "callsign": "", + "codeHub": "ATL", + "codeIataAirline": "CC", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Atlanta (USA)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1543, + "callsign": "", + "codeHub": "", + "codeIataAirline": "CC", + "codeIcaoAirline": "", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Freight Egypt", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1544, + "callsign": "", + "codeHub": "", + "codeIataAirline": "CC", + "codeIcaoAirline": "", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocosta", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1545, + "callsign": "", + "codeHub": "TSV", + "codeIataAirline": "CC*", + "codeIcaoAirline": "MCK", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "374", + "nameAirline": "Macair Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1546, + "callsign": "", + "codeHub": "", + "codeIataAirline": "CD", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Commuter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1547, + "callsign": "AIR CITY", + "codeHub": "", + "codeIataAirline": "CE", + "codeIcaoAirline": "ACY", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air City", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1548, + "callsign": "NATIONWIDE", + "codeHub": "JNB", + "codeIataAirline": "CE", + "codeIcaoAirline": "NTW", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "567", + "nameAirline": "Nationwide Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1549, + "callsign": "", + "codeHub": "", + "codeIataAirline": "CE", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Continental Air Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1550, + "callsign": "SWEDESTAR", + "codeHub": "GOT", + "codeIataAirline": "CF", + "codeIcaoAirline": "SDR", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "419", + "nameAirline": "City Airline", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1551, + "callsign": "AIR HOLLAND", + "codeHub": "AMS", + "codeIataAirline": "CG", + "codeIcaoAirline": "HLN", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Holland", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1552, + "callsign": "", + "codeHub": "POM", + "codeIataAirline": "CG", + "codeIcaoAirline": "", + "codeIso2Country": "PG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Milne Bay Air", + "nameCountry": "Papua New Guinea", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1553, + "callsign": "BEMIDJI", + "codeHub": "BJI", + "codeIataAirline": "CH", + "codeIcaoAirline": "BMJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "872", + "nameAirline": "Bemidji Aviation Services, Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1554, + "callsign": "", + "codeHub": "MDW", + "codeIataAirline": "CH", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chicago Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1555, + "callsign": "CHICAGO AIRWAYS", + "codeHub": "", + "codeIataAirline": "CH", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chicago Helicopter Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 1556, + "callsign": "CHINA NORTHERN", + "codeHub": "SHE", + "codeIataAirline": "CJ", + "codeIcaoAirline": "CBF", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "782", + "nameAirline": "China Northern Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1557, + "callsign": "CARIBBEAN", + "codeHub": "", + "codeIataAirline": "CJ", + "codeIcaoAirline": "CLT", + "codeIso2Country": "AN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caribbean Air Transport", + "nameCountry": "Netherlands Antilles", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1558, + "callsign": "", + "codeHub": "", + "codeIataAirline": "CK", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Connair", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1559, + "callsign": "AIRCAP", + "codeHub": "", + "codeIataAirline": "CK", + "codeIcaoAirline": "", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircapitol", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1560, + "callsign": "CAPITOL", + "codeHub": "", + "codeIataAirline": "CL", + "codeIcaoAirline": "CAP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Capitol Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1561, + "callsign": "", + "codeHub": "BNA", + "codeIataAirline": "CL", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Capitol International Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1562, + "callsign": "COMPADA", + "codeHub": "", + "codeIataAirline": "CM", + "codeIcaoAirline": "", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania Panamena de Aviacion, S.A.", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1563, + "callsign": "TORAIR", + "codeHub": "IST", + "codeIataAirline": "CN", + "codeIcaoAirline": "TAU", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Torosair", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1564, + "callsign": "WESTWARD", + "codeHub": "BFF", + "codeIataAirline": "CN", + "codeIcaoAirline": "WWD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Westward Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1565, + "callsign": "CRAFT", + "codeHub": "", + "codeIataAirline": "CN", + "codeIcaoAirline": "", + "codeIso2Country": "CR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Craft Airlines", + "nameCountry": "Costa Rica", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1566, + "callsign": "", + "codeHub": "", + "codeIataAirline": "CN*", + "codeIcaoAirline": "", + "codeIso2Country": "PG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Islands Nationair", + "nameCountry": "Papua New Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1567, + "callsign": "", + "codeHub": "WAW", + "codeIataAirline": "CO", + "codeIcaoAirline": "CLW", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LOT Charters", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1568, + "callsign": "", + "codeHub": "GUM", + "codeIataAirline": "CO", + "codeIcaoAirline": "COA", + "codeIso2Country": "GU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Micronesia", + "nameCountry": "Guam", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1569, + "callsign": "", + "codeHub": "", + "codeIataAirline": "CO", + "codeIcaoAirline": "FCB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cobaltair Ltd", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1570, + "callsign": "CAPITOL", + "codeHub": "", + "codeIataAirline": "CP", + "codeIcaoAirline": "CAL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Capitol Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1571, + "callsign": "EMPRESS", + "codeHub": "YVR", + "codeIataAirline": "CP", + "codeIcaoAirline": "CPC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CP Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1572, + "callsign": "", + "codeHub": "TBU", + "codeIataAirline": "CP", + "codeIcaoAirline": "", + "codeIso2Country": "TO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chathams Pacific", + "nameCountry": "Tonga", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1573, + "callsign": "CENTRAL CHARTER", + "codeHub": "OSR", + "codeIataAirline": "CQ", + "codeIcaoAirline": "CCG", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Connect Airlines", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1574, + "callsign": "CONSTELLATION", + "codeHub": "", + "codeIataAirline": "CQ", + "codeIcaoAirline": "CIN", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Constellation International Airlines", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1575, + "callsign": "", + "codeHub": "DAR", + "codeIataAirline": "CQ", + "codeIcaoAirline": "CSV", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coastal Aviation", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1576, + "callsign": "", + "codeHub": "MCY", + "codeIataAirline": "CQ", + "codeIcaoAirline": "SNH", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunshine Express Airline", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1577, + "callsign": "", + "codeHub": "BRU", + "codeIataAirline": "CQ", + "codeIcaoAirline": "", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Constellation International", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1578, + "callsign": "", + "codeHub": "", + "codeIataAirline": "CQ", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coastal Travels Ltd.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1579, + "callsign": "", + "codeHub": "", + "codeIataAirline": "CR", + "codeIcaoAirline": "ABC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "OAG Worldwide", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1580, + "callsign": "", + "codeHub": "", + "codeIataAirline": "CR", + "codeIcaoAirline": "OAG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Official Airline Guide", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1581, + "callsign": "", + "codeHub": "", + "codeIataAirline": "CR", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UBM Aviation - OAG", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1582, + "callsign": "AEROCARIBBEAN", + "codeHub": "", + "codeIataAirline": "CR", + "codeIcaoAirline": "", + "codeIso2Country": "CU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocaribbean", + "nameCountry": "Cuba", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1583, + "callsign": "AIRCAR", + "codeHub": "", + "codeIataAirline": "CR", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rhodesian United Air Carriers", + "nameCountry": "Rhodesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1584, + "callsign": "", + "codeHub": "", + "codeIataAirline": "CR*", + "codeIcaoAirline": "XCR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Miscellaneous Auxiliary Calegory", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1585, + "callsign": "AIR MIKE", + "codeHub": "GUM", + "codeIataAirline": "CS", + "codeIcaoAirline": "CMI", + "codeIso2Country": "GU", + "founding": 0, + "iataPrefixAccounting": "596", + "nameAirline": "Continental Micronesia", + "nameCountry": "Guam", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1586, + "callsign": "CHARLIE SIERRA", + "codeHub": "", + "codeIataAirline": "CS", + "codeIcaoAirline": "CRL", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corse Air", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1587, + "callsign": "SOUNDAIR", + "codeHub": "", + "codeIataAirline": "CS", + "codeIcaoAirline": "SDR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Toronto", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1588, + "callsign": "CAMBRIAN", + "codeHub": "", + "codeIataAirline": "CS", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cambrian Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1589, + "callsign": "AIR SOFIA", + "codeHub": "SOF", + "codeIataAirline": "CT", + "codeIcaoAirline": "SFB", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "551", + "nameAirline": "Air Sofia", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1590, + "callsign": "", + "codeHub": "PTK", + "codeIataAirline": "CV", + "codeIcaoAirline": "CTY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Century Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1591, + "callsign": "", + "codeHub": "ULN", + "codeIataAirline": "CW", + "codeIcaoAirline": "CHS", + "codeIso2Country": "MN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chinggis Airways", + "nameCountry": "Mongolia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1592, + "callsign": "AIRCONTINENTAL", + "codeHub": "", + "codeIataAirline": "CW", + "codeIcaoAirline": "CWA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Continental", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1593, + "callsign": "SWAZI CARGO", + "codeHub": "", + "codeIataAirline": "CW", + "codeIcaoAirline": "ZSC", + "codeIso2Country": "SZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Swazi Cargo", + "nameCountry": "Swaziland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1594, + "callsign": "CHANNEL AIR", + "codeHub": "", + "codeIataAirline": "CW", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Channel Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1595, + "callsign": "CYPRAIR", + "codeHub": "LCA", + "codeIataAirline": "CY", + "codeIcaoAirline": "CYP", + "codeIso2Country": "CY", + "founding": 0, + "iataPrefixAccounting": "48", + "nameAirline": "Cyprus Airways", + "nameCountry": "Cyprus", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1596, + "callsign": "CHINOOKAIR", + "codeHub": "", + "codeIataAirline": "CZ", + "codeIcaoAirline": "BFA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Flights", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1597, + "callsign": "", + "codeHub": "", + "codeIataAirline": "CZ", + "codeIcaoAirline": "", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cambata Aviation", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1598, + "callsign": "", + "codeHub": "MYR", + "codeIataAirline": "D1", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Direct Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1599, + "callsign": "SKYFLYER", + "codeHub": "BOM", + "codeIataAirline": "D2", + "codeIcaoAirline": "SKV", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyline NEPC", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1600, + "callsign": "DAUAIR", + "codeHub": "LBC", + "codeIataAirline": "D5", + "codeIcaoAirline": "DAU", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dau Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1601, + "callsign": "NEPCAIR", + "codeHub": "", + "codeIataAirline": "D5", + "codeIcaoAirline": "NEP", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NEPC Airlines", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1602, + "callsign": "AERO DINAR", + "codeHub": "AEP", + "codeIataAirline": "D7", + "codeIcaoAirline": "RDN", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "429", + "nameAirline": "Dinar Lineas Aereas", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1603, + "callsign": "", + "codeHub": "BKI", + "codeIataAirline": "D7", + "codeIcaoAirline": "XFA", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Asian Xpress", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1604, + "callsign": "", + "codeHub": "KUL", + "codeIataAirline": "D7", + "codeIcaoAirline": "", + "codeIso2Country": "MY", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "AirAsia X - Malaysia", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1605, + "callsign": "DONAVIA", + "codeHub": "ROV", + "codeIataAirline": "D9", + "codeIcaoAirline": "DNV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "733", + "nameAirline": "Donavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1606, + "callsign": "", + "codeHub": "TSA", + "codeIataAirline": "DA", + "codeIcaoAirline": "DAC", + "codeIso2Country": "TW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Daily Air", + "nameCountry": "Taiwan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1607, + "callsign": "DANAIR", + "codeHub": "LGW", + "codeIataAirline": "DA", + "codeIcaoAirline": "DAN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dan-Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1608, + "callsign": "AIR GEORGIA", + "codeHub": "", + "codeIataAirline": "DA", + "codeIcaoAirline": "DAN", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Georgia", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1609, + "callsign": "", + "codeHub": "LRM", + "codeIataAirline": "DA", + "codeIcaoAirline": "SDA", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sol Dominicana Airlines", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1610, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DB", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Niagara", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1611, + "callsign": "BULAIR", + "codeHub": "", + "codeIataAirline": "DB", + "codeIcaoAirline": "", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bulair", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1612, + "callsign": "AIR NIAGARA", + "codeHub": "", + "codeIataAirline": "DB*", + "codeIcaoAirline": "DBD", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Niagara Express", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1613, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DC", + "codeIcaoAirline": "", + "codeIso2Country": "CY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cypriair Tours", + "nameCountry": "Cyprus", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1614, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DD", + "codeIcaoAirline": "ABM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amber Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1615, + "callsign": "AEROLYON", + "codeHub": "LYS", + "codeIataAirline": "DD", + "codeIcaoAirline": "AEY", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolyon", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1616, + "callsign": "BAYU", + "codeHub": "", + "codeIataAirline": "DD", + "codeIcaoAirline": "BYU", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bayu Indonesia", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1617, + "callsign": "COMMAND", + "codeHub": "BOS", + "codeIataAirline": "DD", + "codeIcaoAirline": "CMD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Command Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1618, + "callsign": "", + "codeHub": "CGN", + "codeIataAirline": "DD", + "codeIcaoAirline": "EPC", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Conti-Flug", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1619, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DD", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Contiflug", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1620, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DD", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Georgian Bay Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1621, + "callsign": "PATRIOT", + "codeHub": "BOS", + "codeIataAirline": "DD*", + "codeIcaoAirline": "PRT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "949", + "nameAirline": "Atlantic Coast Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1622, + "callsign": "AIR BALEAR", + "codeHub": "PMI", + "codeIataAirline": "DF", + "codeIcaoAirline": "ABH", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "59", + "nameAirline": "Aebal", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1623, + "callsign": "CONDOR BERLIN", + "codeHub": "SXF", + "codeIataAirline": "DF", + "codeIcaoAirline": "CIB", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Condor Berlin GmbH", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1624, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DF", + "codeIcaoAirline": "", + "codeIso2Country": "ZR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "New ACS", + "nameCountry": "Zaire", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1625, + "callsign": "AIR PROVENCE", + "codeHub": "MRS", + "codeIataAirline": "DG", + "codeIcaoAirline": "APR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Provence International", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1626, + "callsign": "", + "codeHub": "AMS", + "codeIataAirline": "DG", + "codeIcaoAirline": "", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Holland Aero Lines", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1627, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DG", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Island Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1628, + "callsign": "CATT", + "codeHub": "FLL", + "codeIataAirline": "DG*", + "codeIcaoAirline": "CTT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Custom Air Transport", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1629, + "callsign": "DISCOVERY AIRWAYS", + "codeHub": "HNL", + "codeIataAirline": "DH", + "codeIcaoAirline": "DVA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Discovery Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1630, + "callsign": "INDEPENDENCE AIR", + "codeHub": "IAD", + "codeIataAirline": "DH", + "codeIcaoAirline": "IDE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "480", + "nameAirline": "Independence Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1631, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DH", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transairco", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1632, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DH", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norwegian Air Norway AS", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1633, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DH", + "codeIcaoAirline": "", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sahand Asia Airlines", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1634, + "callsign": "NORSHIP", + "codeHub": "OSL", + "codeIataAirline": "DH*", + "codeIcaoAirline": "NAN", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norwegian Air Norway AS", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1635, + "callsign": "SPEEDWAY", + "codeHub": "MUC", + "codeIataAirline": "DI", + "codeIcaoAirline": "BAG", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "944", + "nameAirline": "Dba", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1636, + "callsign": "BODENSSE", + "codeHub": "FDH", + "codeIataAirline": "DI", + "codeIcaoAirline": "DEL", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Delta Air Regionalflugverkhr", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1637, + "callsign": "NORWORLD", + "codeHub": "LGW", + "codeIataAirline": "DI", + "codeIcaoAirline": "NRS", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "762", + "nameAirline": "Norwegian Air UK ltd", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1638, + "callsign": "DONALDSON", + "codeHub": "", + "codeIataAirline": "DI", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Donaldson International Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1639, + "callsign": "DELTA JUILET", + "codeHub": "JIB", + "codeIataAirline": "DJ", + "codeIcaoAirline": "DJI", + "codeIso2Country": "DJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Djibouti", + "nameCountry": "Djibouti", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1640, + "callsign": "", + "codeHub": "ARN", + "codeIataAirline": "DJ", + "codeIcaoAirline": "NOD", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nordic European Airlines", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1641, + "callsign": "", + "codeHub": "BNE", + "codeIataAirline": "DJ", + "codeIcaoAirline": "VOZ", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Virgin Blue Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1642, + "callsign": "AIR CORSE", + "codeHub": "", + "codeIataAirline": "DK", + "codeIcaoAirline": "ARK", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Corse", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1643, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DK*", + "codeIcaoAirline": "ELA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastland Air", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1644, + "callsign": "MAERSKAIR", + "codeHub": "CPH", + "codeIataAirline": "DM", + "codeIcaoAirline": "DMA", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "349", + "nameAirline": "Maersk Air", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1645, + "callsign": "AERODESPACHOS", + "codeHub": "", + "codeIataAirline": "DN", + "codeIcaoAirline": "DNA", + "codeIso2Country": "SV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerodespachos de El Salvador", + "nameCountry": "El Salvador", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1646, + "callsign": "ALINORD", + "codeHub": "LIN", + "codeIataAirline": "DN", + "codeIcaoAirline": "DNO", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alinord", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1647, + "callsign": "SENEGAL AIR", + "codeHub": "DKR", + "codeIataAirline": "DN", + "codeIcaoAirline": "SGG", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Senegal Airlines", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1648, + "callsign": "VASO", + "codeHub": "", + "codeIataAirline": "DN", + "codeIcaoAirline": "VSO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Voronezh Aircraft Manufacture Society", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1649, + "callsign": "DECCAN", + "codeHub": "BLR", + "codeIataAirline": "DN*", + "codeIcaoAirline": "DKN", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Deccan", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1650, + "callsign": "METRO REGIONAL", + "codeHub": "", + "codeIataAirline": "DN*", + "codeIcaoAirline": "MPS", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Metropolis", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1651, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DN*", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Pacific Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1652, + "callsign": "DISCOVERYJET", + "codeHub": "LOS", + "codeIataAirline": "DO", + "codeIcaoAirline": "DCV", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Discovery Airways", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1653, + "callsign": "DOMINICANA", + "codeHub": "SDQ", + "codeIataAirline": "DO", + "codeIcaoAirline": "DOA", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania Dominicana de Aviacion", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1654, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DO", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dornier Aviation Nigeria AIEP Limit", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1655, + "callsign": "DANA", + "codeHub": "KAD", + "codeIataAirline": "DO*", + "codeIcaoAirline": "DAV", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dornier Aviation Nigeria Aiep", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1656, + "callsign": "JETSET", + "codeHub": "MAN", + "codeIataAirline": "DP", + "codeIcaoAirline": "FCA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "91", + "nameAirline": "First Choice Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1657, + "callsign": "DUNLOP", + "codeHub": "", + "codeIataAirline": "DP", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dunlop Rubber Company Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1658, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DQ", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Direct Connect Ltd.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1659, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DQ", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Limousin", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1660, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DQ*", + "codeIcaoAirline": "", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quikjet Cargo Airlines", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1661, + "callsign": "ROTATUR", + "codeHub": "", + "codeIataAirline": "DR", + "codeIcaoAirline": "RTR", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sociedade Brasileira de Turismo (ROTASTUR)", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1662, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DR", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avdev Airlines of Australia", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1663, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DR", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Panair", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1664, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DR", + "codeIcaoAirline": "", + "codeIso2Country": "TN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mediterranean Air Service", + "nameCountry": "Tunisia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1665, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DR*", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Link", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1666, + "callsign": "SONATRA-AIR SENEGAL", + "codeHub": "", + "codeIataAirline": "DS", + "codeIcaoAirline": "DSB", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Senegal", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1667, + "callsign": "COSETA", + "codeHub": "", + "codeIataAirline": "DS", + "codeIcaoAirline": "", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compagnie Senegalaise de Transports A�riens", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1668, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DS*", + "codeIcaoAirline": "", + "codeIso2Country": "HK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Das Nordisk", + "nameCountry": "Hong Kong", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1669, + "callsign": "CHECKMATE", + "codeHub": "", + "codeIataAirline": "DU", + "codeIcaoAirline": "DUA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chess Wing", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1670, + "callsign": "HEMUS AIR", + "codeHub": "SOF", + "codeIataAirline": "DU", + "codeIcaoAirline": "HMS", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "748", + "nameAirline": "Hemus Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1671, + "callsign": "ROLAND AIR", + "codeHub": "", + "codeIataAirline": "DU", + "codeIcaoAirline": "ROA", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Roland Air Flugverkehrs und Vertriebsgesellschaft", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1672, + "callsign": "AIRCOMOR", + "codeHub": "", + "codeIataAirline": "DU", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Commerz", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1673, + "callsign": "GARFIELD", + "codeHub": "", + "codeIataAirline": "DV", + "codeIcaoAirline": "LTF", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lufttaxi Fluggesellschaft", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1674, + "callsign": "GERMAN AIR", + "codeHub": "MUC", + "codeIataAirline": "DV", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Germanair", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1675, + "callsign": "DLT", + "codeHub": "CGN", + "codeIataAirline": "DW", + "codeIcaoAirline": "DLT", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DLT", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1676, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DW", + "codeIcaoAirline": "DWI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dominican Wings. S.A.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1677, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DW", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rottnest Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1678, + "callsign": "DANISH", + "codeHub": "", + "codeIataAirline": "DX", + "codeIcaoAirline": "DEN", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Danair A/S", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1679, + "callsign": "DANISH", + "codeHub": "", + "codeIataAirline": "DX", + "codeIcaoAirline": "", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Agency Danair", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1680, + "callsign": "AIR DJIB", + "codeHub": "", + "codeIataAirline": "DY", + "codeIcaoAirline": "DJU", + "codeIso2Country": "DJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Djibouti", + "nameCountry": "Djibouti", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1681, + "callsign": "ALYEMDA", + "codeHub": "ADE", + "codeIataAirline": "DY", + "codeIcaoAirline": "DYA", + "codeIso2Country": "YE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alyemda - Democratic Yemen Airlines", + "nameCountry": "Yemen", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1682, + "callsign": "DELTA ZULU", + "codeHub": "", + "codeIataAirline": "DZ", + "codeIcaoAirline": "DND", + "codeIso2Country": "PG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Douglas Airways", + "nameCountry": "Papua New Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1683, + "callsign": "", + "codeHub": "JIB", + "codeIataAirline": "DZ", + "codeIcaoAirline": "", + "codeIso2Country": "DJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Djibouti Air", + "nameCountry": "Djibouti", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1684, + "callsign": "", + "codeHub": "", + "codeIataAirline": "DZ", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TF - Transportflug", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1685, + "callsign": "FRENCH HOPPER", + "codeHub": "", + "codeIataAirline": "DZ*", + "codeIcaoAirline": "NOE", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transcaraibes Air International", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1686, + "callsign": "NEW DAWN", + "codeHub": "JFK", + "codeIataAirline": "E0*", + "codeIcaoAirline": "ESS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "646", + "nameAirline": "Eos Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1687, + "callsign": "", + "codeHub": "AUH", + "codeIataAirline": "E1", + "codeIcaoAirline": "", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elite Aviation (United Arab Emirates)", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 1688, + "callsign": "", + "codeHub": "", + "codeIataAirline": "E1", + "codeIcaoAirline": "", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "E-Savtravel", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1689, + "callsign": "", + "codeHub": "ACC", + "codeIataAirline": "E2", + "codeIcaoAirline": "EAB", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Atlantic Airlines", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1690, + "callsign": "", + "codeHub": "KTM", + "codeIataAirline": "E2", + "codeIcaoAirline": "", + "codeIso2Country": "NP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Everest Air", + "nameCountry": "Nepal", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1691, + "callsign": "", + "codeHub": "", + "codeIataAirline": "E2", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurowings Europe GmbH", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1692, + "callsign": "DOMODEDOVO", + "codeHub": "VKO", + "codeIataAirline": "E3", + "codeIcaoAirline": "DMO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "497", + "nameAirline": "Domodedovo Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1693, + "callsign": "EAGLES", + "codeHub": "VCE", + "codeIataAirline": "E3", + "codeIcaoAirline": "EGS", + "codeIso2Country": "IT", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "PRiMA Aero Trasporti Italiani", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1694, + "callsign": "", + "codeHub": "FCO", + "codeIataAirline": "E3", + "codeIcaoAirline": "", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "WikiFly", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1695, + "callsign": "", + "codeHub": "", + "codeIataAirline": "E3", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Evasion", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1696, + "callsign": "", + "codeHub": "", + "codeIataAirline": "E3", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "386", + "nameAirline": "Sabaidee Airways Co. Ltd. dba New Gen", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1697, + "callsign": "AERO ASIA", + "codeHub": "KHI", + "codeIataAirline": "E4", + "codeIcaoAirline": "RSO", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "532", + "nameAirline": "Aero Asia International", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1698, + "callsign": "BERYOZA", + "codeHub": "KUF", + "codeIataAirline": "E5", + "codeIcaoAirline": "BRZ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "906", + "nameAirline": "Samara Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1699, + "callsign": "", + "codeHub": "", + "codeIataAirline": "E6", + "codeIcaoAirline": "AEQ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AviaExpressCruise Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1700, + "callsign": "", + "codeHub": "VKO", + "codeIataAirline": "E6", + "codeIcaoAirline": "BKS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviaexpresscruise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1701, + "callsign": "", + "codeHub": "CGH", + "codeIataAirline": "E6*", + "codeIcaoAirline": "BCT", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "417", + "nameAirline": "Bringer Air Cargo Taxi Aereo", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1702, + "callsign": "", + "codeHub": "", + "codeIataAirline": "E7", + "codeIcaoAirline": "DOW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Downeast Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1703, + "callsign": "EUROCHARTER", + "codeHub": "BOH", + "codeIataAirline": "E7", + "codeIcaoAirline": "EAF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European Aviation Air Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1704, + "callsign": "", + "codeHub": "", + "codeIataAirline": "E7", + "codeIcaoAirline": "EKA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "965", + "nameAirline": "Equaflight Service", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1705, + "callsign": "", + "codeHub": "TSN", + "codeIataAirline": "E7", + "codeIcaoAirline": "GCR", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grand China Express Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1706, + "callsign": "EUROBUZZ", + "codeHub": "", + "codeIataAirline": "E7*", + "codeIcaoAirline": "FLE", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly European Airlines", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1707, + "callsign": "CITY AIRWAYS", + "codeHub": "DMK", + "codeIataAirline": "E8", + "codeIcaoAirline": "GTA", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "City Airways", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1708, + "callsign": "ERTIS", + "codeHub": "ALA", + "codeIataAirline": "E8", + "codeIcaoAirline": "SMK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Semeyavia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1709, + "callsign": "", + "codeHub": "PSM", + "codeIataAirline": "E9", + "codeIcaoAirline": "CXS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Boston-Maine Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1710, + "callsign": "TURJET", + "codeHub": "SVO", + "codeIataAirline": "E9", + "codeIcaoAirline": "TRJ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "766", + "nameAirline": "AJT Air International", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1711, + "callsign": "", + "codeHub": "CUE", + "codeIataAirline": "E9", + "codeIcaoAirline": "", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cuenca", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1712, + "callsign": "", + "codeHub": "", + "codeIataAirline": "E9", + "codeIcaoAirline": "", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircuenca", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1713, + "callsign": "", + "codeHub": "", + "codeIataAirline": "E9", + "codeIcaoAirline": "", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compagnie Africaine d'Aviation CAA", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1714, + "callsign": "CLIPPER EXPRESS", + "codeHub": "", + "codeIataAirline": "E9*", + "codeIcaoAirline": "CXS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan Am Clipper Connection", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1715, + "callsign": "", + "codeHub": "", + "codeIataAirline": "E9*", + "codeIcaoAirline": "", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compagnie Africaine d'Aviation CAA", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1716, + "callsign": "ANDALUS", + "codeHub": "AGP", + "codeIataAirline": "EA", + "codeIcaoAirline": "ANU", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "480", + "nameAirline": "Andalus", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1717, + "callsign": "STARWING", + "codeHub": "MGL", + "codeIataAirline": "EA", + "codeIcaoAirline": "EAE", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European Air Express", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1718, + "callsign": "", + "codeHub": "", + "codeIataAirline": "EA", + "codeIcaoAirline": "EEE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European Regions Airlines", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1719, + "callsign": "GOLDEN ANGEL", + "codeHub": "PMI", + "codeIataAirline": "EA", + "codeIcaoAirline": "EUA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ERA European Regions Airlines", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1720, + "callsign": "BAFAIR", + "codeHub": "", + "codeIataAirline": "EB", + "codeIcaoAirline": "AFB", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Belgium Air Force", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 1721, + "callsign": "BIRMEX", + "codeHub": "BHX", + "codeIataAirline": "EB", + "codeIcaoAirline": "BEX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Birmingham Executive Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1722, + "callsign": "EMERY", + "codeHub": "", + "codeIataAirline": "EB", + "codeIcaoAirline": "EWW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "591", + "nameAirline": "Emery Worldwide Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1723, + "callsign": "", + "codeHub": "", + "codeIataAirline": "EB", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Europe", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1724, + "callsign": "", + "codeHub": "DME", + "codeIataAirline": "EC", + "codeIcaoAirline": "TUG", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Touch and Go Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1725, + "callsign": "", + "codeHub": "NBO", + "codeIataAirline": "EC", + "codeIcaoAirline": "", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East African Airways (1946)", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1726, + "callsign": "", + "codeHub": "", + "codeIataAirline": "EC", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Ecosse", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1727, + "callsign": "EASTAF", + "codeHub": "", + "codeIataAirline": "EC", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East African Airways", + "nameCountry": "Kenya, Uganda and Tanzania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1728, + "callsign": "HELI INTER", + "codeHub": "", + "codeIataAirline": "EC*", + "codeIcaoAirline": "HIN", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Inter Riviera", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1729, + "callsign": "CAROLINA", + "codeHub": "CLT", + "codeIataAirline": "ED", + "codeIcaoAirline": "CDL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "354", + "nameAirline": "CC AIR", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1730, + "callsign": "ANDES", + "codeHub": "GYE", + "codeIataAirline": "ED", + "codeIcaoAirline": "EDA", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Nacicnales Del Ecuador (Andes)", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1731, + "callsign": "AIR DOM", + "codeHub": "SDQ", + "codeIataAirline": "ED", + "codeIcaoAirline": "RDO", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Dominicana", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1732, + "callsign": "REVAL", + "codeHub": "TLL", + "codeIataAirline": "EE", + "codeIcaoAirline": "EAY", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "350", + "nameAirline": "Aero Airlines", + "nameCountry": "Estonia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1733, + "callsign": "EUROBER", + "codeHub": "TXL", + "codeIataAirline": "EE", + "codeIcaoAirline": "EEB", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euroberlin", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1734, + "callsign": "REVAL", + "codeHub": "TLL", + "codeIataAirline": "EE", + "codeIcaoAirline": "EST", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Jet", + "nameCountry": "Estonia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1735, + "callsign": "EUROFLY", + "codeHub": "", + "codeIataAirline": "EE", + "codeIcaoAirline": "", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurofly", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1736, + "callsign": "EXECUTAIR", + "codeHub": "", + "codeIataAirline": "EE", + "codeIcaoAirline": "", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executair (Nigeria) Ltd.", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1737, + "callsign": "CHARTER SYSTEMS", + "codeHub": "", + "codeIataAirline": "EF", + "codeIcaoAirline": "CSW", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ACS of Canada - Air Charter Sysytems", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1738, + "callsign": "FRENCH BIRD", + "codeHub": "CDG", + "codeIataAirline": "EF", + "codeIcaoAirline": "STZ", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Strategic Airlines", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1739, + "callsign": "", + "codeHub": "DLA", + "codeIataAirline": "EF", + "codeIcaoAirline": "", + "codeIso2Country": "CM", + "founding": 0, + "iataPrefixAccounting": "448", + "nameAirline": "Equa2C t/a Fly Caminter", + "nameCountry": "Cameroon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1740, + "callsign": "BLUE EAGLE", + "codeHub": "", + "codeIataAirline": "EG", + "codeIcaoAirline": "EAG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Flying Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1741, + "callsign": "", + "codeHub": "LHR", + "codeIataAirline": "EG", + "codeIcaoAirline": "EGT", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cunard Eagle Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1742, + "callsign": "EAST TAJIK", + "codeHub": "DYU", + "codeIataAirline": "EG", + "codeIcaoAirline": "ETJ", + "codeIso2Country": "TJ", + "founding": 0, + "iataPrefixAccounting": "447", + "nameAirline": "CJSC \"East Air\"", + "nameCountry": "Tajikistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1743, + "callsign": "ASIA", + "codeHub": "NRT", + "codeIataAirline": "EG", + "codeIcaoAirline": "JAA", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "688", + "nameAirline": "Japan Asia Airways", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1744, + "callsign": "SAETA", + "codeHub": "SEQU", + "codeIataAirline": "EH", + "codeIcaoAirline": "SET", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SAETA", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1745, + "callsign": "", + "codeHub": "", + "codeIataAirline": "EH", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ehrenstr�m Flyg", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1746, + "callsign": "AIR ATLANTIS", + "codeHub": "FAO", + "codeIataAirline": "EJ", + "codeIcaoAirline": "AIA", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Atlantis", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1747, + "callsign": "EXECJET", + "codeHub": "TEB", + "codeIataAirline": "EJ", + "codeIcaoAirline": "EJA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Jet Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 1748, + "callsign": "NEW ENGLAND", + "codeHub": "WST", + "codeIataAirline": "EJ", + "codeIcaoAirline": "NEA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "New England Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1749, + "callsign": "", + "codeHub": "", + "codeIataAirline": "EJ", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European Cargo Services BV", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1750, + "callsign": "", + "codeHub": "", + "codeIataAirline": "EJ*", + "codeIcaoAirline": "", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European Cargo Services", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1751, + "callsign": "", + "codeHub": "", + "codeIataAirline": "EK", + "codeIcaoAirline": "EUI", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euralair International", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1752, + "callsign": "ANK AIR", + "codeHub": "HND", + "codeIataAirline": "EL", + "codeIcaoAirline": "ANK", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "768", + "nameAirline": "Air Nippon", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1753, + "callsign": "NORTJET", + "codeHub": "PMI", + "codeIataAirline": "EL", + "codeIcaoAirline": "ENJ", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nortjet", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1754, + "callsign": "EURALAIR", + "codeHub": "", + "codeIataAirline": "EL", + "codeIcaoAirline": "ERL", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euralair", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1755, + "callsign": "EXPORT", + "codeHub": "LIM", + "codeIataAirline": "EL", + "codeIcaoAirline": "EXD", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Export Air del Peru", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1756, + "callsign": "AEROBEN", + "codeHub": "COO", + "codeIataAirline": "EM*", + "codeIcaoAirline": "AEB", + "codeIso2Country": "BJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Benin", + "nameCountry": "Benin", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1757, + "callsign": "", + "codeHub": "", + "codeIataAirline": "EM*", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Western Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1758, + "callsign": "CALJET", + "codeHub": "", + "codeIataAirline": "EN", + "codeIcaoAirline": "CAI", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cal Air International", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1759, + "callsign": "GENAIR", + "codeHub": "", + "codeIataAirline": "EN", + "codeIcaoAirline": "GEN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Genair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1760, + "callsign": "LCN", + "codeHub": "TFN", + "codeIataAirline": "EN", + "codeIcaoAirline": "LCN", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas Canarias", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1761, + "callsign": "STARJET", + "codeHub": "LGW", + "codeIataAirline": "EN", + "codeIcaoAirline": "NGK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Novair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1762, + "callsign": "SACCHI", + "codeHub": "", + "codeIataAirline": "EN", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sacchi Air Ferry Enterprises", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1763, + "callsign": "", + "codeHub": "", + "codeIataAirline": "EN", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastern Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1764, + "callsign": "AEROAMERICA", + "codeHub": "", + "codeIataAirline": "EO", + "codeIcaoAirline": "AEO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroamerica", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1765, + "callsign": "EXECUTIVE", + "codeHub": "", + "codeIataAirline": "EO", + "codeIcaoAirline": "EXT", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Extra - Executive Transport", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1766, + "callsign": "LONGHORN", + "codeHub": "SFB", + "codeIataAirline": "EO", + "codeIcaoAirline": "LHN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Express One International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1767, + "callsign": "", + "codeHub": "TXL", + "codeIataAirline": "EO", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroamerica", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1768, + "callsign": "", + "codeHub": "", + "codeIataAirline": "EO", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euroflite", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1769, + "callsign": "", + "codeHub": "", + "codeIataAirline": "EP", + "codeIcaoAirline": "PMT", + "codeIso2Country": "BZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tropic Air", + "nameCountry": "Belize", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1770, + "callsign": "APSA", + "codeHub": "", + "codeIataAirline": "EP", + "codeIcaoAirline": "", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Peruanas", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1771, + "callsign": "", + "codeHub": "GAN", + "codeIataAirline": "EQ", + "codeIcaoAirline": "EQU", + "codeIso2Country": "MV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Equator", + "nameCountry": "Maldives", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1772, + "callsign": "EXCALIBUR", + "codeHub": "LGW", + "codeIataAirline": "EQ", + "codeIcaoAirline": "EXC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Excalibur Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1773, + "callsign": "TEASTAR", + "codeHub": "BHX", + "codeIataAirline": "EQ", + "codeIcaoAirline": "TUK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TEA (UK)", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1774, + "callsign": "EVERALL", + "codeHub": "", + "codeIataAirline": "ER", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Don Everall (Aviation) Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1775, + "callsign": "ALPI EAGLES", + "codeHub": "VCE", + "codeIataAirline": "ES", + "codeIcaoAirline": "ELG", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ALPI Eagles", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1776, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ES", + "codeIcaoAirline": "", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans AM", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1777, + "callsign": "SAKSERVICE", + "codeHub": "TBS", + "codeIataAirline": "EU", + "codeIcaoAirline": "AZG", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sakaviaservice", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1778, + "callsign": "ECUATORIANA", + "codeHub": "SEQU", + "codeIataAirline": "EU", + "codeIcaoAirline": "EEA", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "341", + "nameAirline": "Ecuatoriana", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1779, + "callsign": "ACEY", + "codeHub": "ATL", + "codeIataAirline": "EV", + "codeIcaoAirline": "ASQ", + "codeIso2Country": "US", + "founding": 1986, + "iataPrefixAccounting": "862", + "nameAirline": "ExpressJet Airlines, Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1780, + "callsign": "EIVIE", + "codeHub": "", + "codeIataAirline": "EV", + "codeIcaoAirline": "", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elivie", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1781, + "callsign": "", + "codeHub": "", + "codeIataAirline": "EV*", + "codeIcaoAirline": "", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Company MDA", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1782, + "callsign": "EASTWEST", + "codeHub": "", + "codeIataAirline": "EW", + "codeIcaoAirline": "EWA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East-West Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1783, + "callsign": "EASYEX", + "codeHub": "", + "codeIataAirline": "EX", + "codeIcaoAirline": "EZX", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FlyEasy", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1784, + "callsign": "EXPRESS AIR", + "codeHub": "BKK", + "codeIataAirline": "EX", + "codeIcaoAirline": "TXZ", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "517", + "nameAirline": "Thai Express Air Co. Ltd", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1785, + "callsign": "SOUTHERN CROSS", + "codeHub": "", + "codeIataAirline": "EX", + "codeIcaoAirline": "", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Cross Airways (Malaysia)", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1786, + "callsign": "", + "codeHub": "", + "codeIataAirline": "EX", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Express", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1787, + "callsign": "", + "codeHub": "ORY", + "codeIataAirline": "EY", + "codeIcaoAirline": "EVT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EAS European Airlines", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1788, + "callsign": "EUROSERVICE", + "codeHub": "", + "codeIataAirline": "EY", + "codeIcaoAirline": "EYT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Europe Aero Service", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1789, + "callsign": "MAYAN WORLD", + "codeHub": "", + "codeIataAirline": "EY", + "codeIcaoAirline": "MYN", + "codeIso2Country": "GT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mayan World Airlines", + "nameCountry": "Guatemala", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1790, + "callsign": "FLYING EAGLE", + "codeHub": "", + "codeIataAirline": "EY*", + "codeIcaoAirline": "EFL", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Air", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1791, + "callsign": "SUNSCAN", + "codeHub": "BLL", + "codeIataAirline": "EZ", + "codeIcaoAirline": "SUS", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "947", + "nameAirline": "Sun Air of Scandinavia A.S.", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1792, + "callsign": "EUROAIR", + "codeHub": "", + "codeIataAirline": "EZ", + "codeIcaoAirline": "URO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euroair Transport", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1793, + "callsign": "EXECUTIVE", + "codeHub": "", + "codeIataAirline": "EZ", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Air Transport", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1794, + "callsign": "APPLEWOOD", + "codeHub": "DUB", + "codeIataAirline": "F0", + "codeIcaoAirline": "FGL", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Futura Gael", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1795, + "callsign": "", + "codeHub": "", + "codeIataAirline": "F1", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "941", + "nameAirline": "Farelogix Inc.", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1796, + "callsign": "SAFARILINK", + "codeHub": "WIL", + "codeIataAirline": "F2", + "codeIcaoAirline": "XLK", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Safarilink Aviation Limited", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1797, + "callsign": "", + "codeHub": "", + "codeIataAirline": "F2", + "codeIcaoAirline": "", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SafariLink Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1798, + "callsign": "", + "codeHub": "", + "codeIataAirline": "F2", + "codeIcaoAirline": "", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Independent Air Company", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1799, + "callsign": "PANTHER", + "codeHub": "MIA", + "codeIataAirline": "F2*", + "codeIcaoAirline": "FAO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "177", + "nameAirline": "Falcon Air Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1800, + "callsign": "", + "codeHub": "FLL", + "codeIataAirline": "F2*", + "codeIcaoAirline": "FKS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Focus Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1801, + "callsign": "FASO", + "codeHub": "OUA", + "codeIataAirline": "F3", + "codeIcaoAirline": "FSW", + "codeIso2Country": "BF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Faso Airways", + "nameCountry": "Burkina Faso", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1802, + "callsign": "", + "codeHub": "ARN", + "codeIataAirline": "F3", + "codeIcaoAirline": "FXL", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FlyExcellent", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1803, + "callsign": "RED ANGEL", + "codeHub": "NUE", + "codeIataAirline": "F3", + "codeIcaoAirline": "IFA", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FAI rent-a-jet Aktiengesellschaft", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 1804, + "callsign": "SONGBIRD", + "codeHub": "", + "codeIataAirline": "F3*", + "codeIcaoAirline": "SGB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly First Class", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1805, + "callsign": "", + "codeHub": "", + "codeIataAirline": "F3*", + "codeIcaoAirline": "", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aliway", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1806, + "callsign": "", + "codeHub": "", + "codeIataAirline": "F3*", + "codeIcaoAirline": "", + "codeIso2Country": "PR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caribbean Flight Training Center", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1807, + "callsign": "EURECA", + "codeHub": "", + "codeIataAirline": "F4", + "codeIcaoAirline": "IFS", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Flying Serivces", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1808, + "callsign": "", + "codeHub": "", + "codeIataAirline": "F4", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Charter, Inc. dba Air Flamenco", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1809, + "callsign": "SHANGHAI CARGO", + "codeHub": "SHA", + "codeIataAirline": "F4*", + "codeIcaoAirline": "SHQ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "825", + "nameAirline": "Shanghai Airlines Cargo International", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1810, + "callsign": "ARCHANA", + "codeHub": "", + "codeIataAirline": "F5", + "codeIcaoAirline": "ACY", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Archana Airways", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1811, + "callsign": "", + "codeHub": "LAD", + "codeIataAirline": "F5", + "codeIcaoAirline": "", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly540 Angola", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1812, + "callsign": "COSMIC AIR", + "codeHub": "KTM", + "codeIataAirline": "F5*", + "codeIcaoAirline": "COZ", + "codeIso2Country": "NP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cosmic Air", + "nameCountry": "Nepal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1813, + "callsign": "CHINA NATIONAL", + "codeHub": "", + "codeIataAirline": "F6", + "codeIcaoAirline": "CAG", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "619", + "nameAirline": "China National Aviation Corporation (CNAC)", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1814, + "callsign": "ROCKROSE", + "codeHub": "FAE", + "codeIataAirline": "F6", + "codeIcaoAirline": "RCK", + "codeIso2Country": "FO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Faroe Jet", + "nameCountry": "Faroe Islands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1815, + "callsign": "FIRST CAMBODIA", + "codeHub": "PNH", + "codeIataAirline": "F6*", + "codeIcaoAirline": "FCC", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "First Cambodia Airlines", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1816, + "callsign": "", + "codeHub": "", + "codeIataAirline": "F6*", + "codeIcaoAirline": "", + "codeIso2Country": "FO", + "founding": 0, + "iataPrefixAccounting": "684", + "nameAirline": "FaroeJet", + "nameCountry": "Faroe Islands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1817, + "callsign": "BABOO", + "codeHub": "GVA", + "codeIataAirline": "F7", + "codeIcaoAirline": "BBO", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flybaboo", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1818, + "callsign": "", + "codeHub": "KZN", + "codeIataAirline": "F7", + "codeIcaoAirline": "IDF", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Iron Dragonfly", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1819, + "callsign": "", + "codeHub": "RGA", + "codeIataAirline": "F7", + "codeIcaoAirline": "KJI", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kaiken Lineas Aereas", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1820, + "callsign": "", + "codeHub": "", + "codeIataAirline": "F7", + "codeIcaoAirline": "", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Valls Lineas Aereas Y Servicios SRL Kaiken Lineas Aereas", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1821, + "callsign": "UKRAINE VOLARE", + "codeHub": "NLV", + "codeIataAirline": "F7*", + "codeIcaoAirline": "VRE", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Volare", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1822, + "callsign": "AIR MONTREAL", + "codeHub": "", + "codeIataAirline": "F8", + "codeIcaoAirline": "AMO", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Montreal", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1823, + "callsign": "FREEDOM AIR", + "codeHub": "JFK", + "codeIataAirline": "F8", + "codeIcaoAirline": "FRL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Freedom Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1824, + "callsign": "FLYING CARPET", + "codeHub": "", + "codeIataAirline": "F8*", + "codeIcaoAirline": "FCR", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flying Carpet Air Transport & Services sal", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1825, + "callsign": "", + "codeHub": "DEN", + "codeIataAirline": "F9", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 1994, + "iataPrefixAccounting": "", + "nameAirline": "Frontier", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1826, + "callsign": "", + "codeHub": "", + "codeIataAirline": "FA", + "codeIcaoAirline": "", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airline Airways", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1827, + "callsign": "WILDGOOSE", + "codeHub": "", + "codeIataAirline": "FA", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FreshAer Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1828, + "callsign": "", + "codeHub": "", + "codeIataAirline": "FA", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air American", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1829, + "callsign": "", + "codeHub": "FKB", + "codeIataAirline": "FB", + "codeIcaoAirline": "FBR", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flugbereitschaft", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 1830, + "callsign": "AIROF", + "codeHub": "", + "codeIataAirline": "FB", + "codeIcaoAirline": "ROF", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero France International", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1831, + "callsign": "", + "codeHub": "YEI", + "codeIataAirline": "FB", + "codeIcaoAirline": "", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bursa Hava Yollari", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1832, + "callsign": "FERRANTI", + "codeHub": "", + "codeIataAirline": "FB", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ferranti Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1833, + "callsign": "FOXTROT BRAVO", + "codeHub": "", + "codeIataAirline": "FB", + "codeIcaoAirline": "", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bursa Airlines", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1834, + "callsign": "GUARD AIR", + "codeHub": "", + "codeIataAirline": "FB*", + "codeIcaoAirline": "JAP", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guardair", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 1835, + "callsign": "FAIRFLIGHT", + "codeHub": "", + "codeIataAirline": "FC", + "codeIcaoAirline": "FGT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fairflight", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1836, + "callsign": "", + "codeHub": "", + "codeIataAirline": "FC", + "codeIcaoAirline": "SYB", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tempelhof Express Airlines", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1837, + "callsign": "", + "codeHub": "CBR", + "codeIataAirline": "FC", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "441", + "nameAirline": "Vee H Aviation Pty Ltd. T/a FLY CORPORATE", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 1838, + "callsign": "ISAVIA", + "codeHub": "", + "codeIataAirline": "FC", + "codeIcaoAirline": "", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fragtflug", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1839, + "callsign": "FLYER", + "codeHub": "LGW", + "codeIataAirline": "FD", + "codeIcaoAirline": "CFE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "844", + "nameAirline": "Cityflyer Express", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1840, + "callsign": "", + "codeHub": "", + "codeIataAirline": "FD", + "codeIcaoAirline": "EWD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euroworld", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1841, + "callsign": "FORDAIR", + "codeHub": "SEN", + "codeIataAirline": "FD", + "codeIcaoAirline": "FOB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ford Motor", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 1842, + "callsign": "", + "codeHub": "SAN", + "codeIataAirline": "FD", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Standard Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1843, + "callsign": "FORDAIR", + "codeHub": "", + "codeIataAirline": "FD", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ford of Europe Incorporated", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1844, + "callsign": "KHYMER AIR", + "codeHub": "", + "codeIataAirline": "FE", + "codeIcaoAirline": "RKH", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Khymer Airlines", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1845, + "callsign": "TALON AIR", + "codeHub": "", + "codeIataAirline": "FE", + "codeIcaoAirline": "TLO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Canyon Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1846, + "callsign": "", + "codeHub": "LAS", + "codeIataAirline": "FE", + "codeIcaoAirline": "WCP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Primaris Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1847, + "callsign": "FILIPINAS", + "codeHub": "", + "codeIataAirline": "FE", + "codeIcaoAirline": "", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Filipinas Orient Airways", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1848, + "callsign": "FOXTROT FOXTROT", + "codeHub": "", + "codeIataAirline": "FF", + "codeIcaoAirline": "FFB", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Africair Service", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1849, + "callsign": "TEE AIR", + "codeHub": "JFK", + "codeIataAirline": "FF", + "codeIcaoAirline": "TOW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tower Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1850, + "callsign": "", + "codeHub": "FTW", + "codeIataAirline": "FF", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "American Flyers Airline", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1851, + "callsign": "", + "codeHub": "LGW", + "codeIataAirline": "FF", + "codeIcaoAirline": "", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IAS Cargo Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1852, + "callsign": "", + "codeHub": "", + "codeIataAirline": "FF", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airshop B.V.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1853, + "callsign": "", + "codeHub": "", + "codeIataAirline": "FF*", + "codeIcaoAirline": "", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airshop", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1854, + "callsign": "FUTURA", + "codeHub": "PMI", + "codeIataAirline": "FH", + "codeIcaoAirline": "FUA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Futura International Airways", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1855, + "callsign": "AIR FALCON", + "codeHub": "", + "codeIataAirline": "FK", + "codeIcaoAirline": "EFS", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Europe Falcon Service", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1856, + "callsign": "AIRSUL", + "codeHub": "LIS", + "codeIataAirline": "FK", + "codeIcaoAirline": "SUL", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airsul", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1857, + "callsign": "CITRUS", + "codeHub": "ATL", + "codeIataAirline": "FL", + "codeIcaoAirline": "TRS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "332", + "nameAirline": "AirTran Airways, Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1858, + "callsign": "", + "codeHub": "KDEN", + "codeIataAirline": "FL", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Frontier Airlines (1950)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1859, + "callsign": "FRONTIER", + "codeHub": "", + "codeIataAirline": "FL", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Frontier Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1860, + "callsign": "COTAM", + "codeHub": "", + "codeIataAirline": "FM", + "codeIcaoAirline": "FMT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Commandement des Transports Aeriensd Militaires Francais", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1861, + "callsign": "", + "codeHub": "", + "codeIataAirline": "FM", + "codeIcaoAirline": "", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flying Syndicate Twente", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1862, + "callsign": "TRANSAIRWAYS", + "codeHub": "LIL", + "codeIataAirline": "FN", + "codeIcaoAirline": "TFR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TEA France", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1863, + "callsign": "FANSA", + "codeHub": "", + "codeIataAirline": "FN", + "codeIcaoAirline": "", + "codeIso2Country": "NI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flota Aerea Nicaraguense", + "nameCountry": "Nicaragua", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1864, + "callsign": "AIRTAS", + "codeHub": "HBA", + "codeIataAirline": "FO", + "codeIcaoAirline": "ATM", + "codeIso2Country": "AU", + "founding": 1984, + "iataPrefixAccounting": "", + "nameAirline": "Par-Avion Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1865, + "callsign": "FREDOLSEN", + "codeHub": "", + "codeIataAirline": "FO", + "codeIcaoAirline": "FOF", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fred Olsen", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1866, + "callsign": "", + "codeHub": "", + "codeIataAirline": "FO", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Circle Air Freight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1867, + "callsign": "EXPEDITION", + "codeHub": "", + "codeIataAirline": "FO*", + "codeIcaoAirline": "XPD", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Expedition Airways", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1868, + "callsign": "SERVI ANDES", + "codeHub": "", + "codeIataAirline": "FP", + "codeIcaoAirline": "AND", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos de Los Andes", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1869, + "callsign": "TAG AVIATION", + "codeHub": "GVA", + "codeIataAirline": "FP", + "codeIcaoAirline": "FPG", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAG Aviation", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 1870, + "callsign": "FREEDOM", + "codeHub": "GUM", + "codeIataAirline": "FP", + "codeIcaoAirline": "FRE", + "codeIso2Country": "GU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Freedom Air", + "nameCountry": "Guam", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1871, + "callsign": "", + "codeHub": "", + "codeIataAirline": "FP", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S.A.C.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1872, + "callsign": "", + "codeHub": "", + "codeIataAirline": "FP*", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Par-Avion", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1873, + "callsign": "", + "codeHub": "", + "codeIataAirline": "FQ*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "752", + "nameAirline": "Fenix Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1874, + "callsign": "TANKAIR", + "codeHub": "", + "codeIataAirline": "FR", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Refuelling Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1875, + "callsign": "ITALI", + "codeHub": "PSR", + "codeIataAirline": "FS", + "codeIcaoAirline": "ACL", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Itali Airlines", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1876, + "callsign": "FIELDAIR", + "codeHub": "", + "codeIataAirline": "FS", + "codeIcaoAirline": "FAS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Field Aircraft Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1877, + "callsign": "SYPHAX", + "codeHub": "SFA", + "codeIataAirline": "FS", + "codeIcaoAirline": "SYA", + "codeIso2Country": "TN", + "founding": 0, + "iataPrefixAccounting": "393", + "nameAirline": "Syphax Airlines", + "nameCountry": "Tunisia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1878, + "callsign": "", + "codeHub": "GOV", + "codeIataAirline": "FS", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mission Aviation Fellowship", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1879, + "callsign": "", + "codeHub": "", + "codeIataAirline": "FS", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Missionary Aviation Fellowship", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1880, + "callsign": "FUEGUINO", + "codeHub": "EZE", + "codeIataAirline": "FS*", + "codeIcaoAirline": "STU", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "278", + "nameAirline": "Servicios de Transportes Aereos Fueguinos", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1881, + "callsign": "TIGER", + "codeHub": "LAX", + "codeIataAirline": "FT", + "codeIcaoAirline": "FTL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flying Tiger", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1882, + "callsign": "SIEMREAP AIR", + "codeHub": "PNH", + "codeIataAirline": "FT", + "codeIcaoAirline": "SRH", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "84", + "nameAirline": "Siem Reap Airways International", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1883, + "callsign": "AIR LITTORAL", + "codeHub": "MPL", + "codeIataAirline": "FU", + "codeIcaoAirline": "LIT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "659", + "nameAirline": "Air Littoral", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1884, + "callsign": "SECA", + "codeHub": "", + "codeIataAirline": "FV", + "codeIcaoAirline": "CEK", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "La Societe Seca", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1885, + "callsign": "BLUEBIRD", + "codeHub": "", + "codeIataAirline": "FV", + "codeIcaoAirline": "FAV", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Finnaviation", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1886, + "callsign": "S�DAVIA", + "codeHub": "MUC", + "codeIataAirline": "FV", + "codeIcaoAirline": "VXY", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S�davia Fluggesellschaft", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1887, + "callsign": "", + "codeHub": "", + "codeIataAirline": "FV", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotour", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1888, + "callsign": "FAIR", + "codeHub": "SDJ", + "codeIataAirline": "FW", + "codeIcaoAirline": "FRI", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fair", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1889, + "callsign": "FOXTROTT WHISKEY", + "codeHub": "", + "codeIataAirline": "FW", + "codeIcaoAirline": "POA", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Point Air", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1890, + "callsign": "FLETE", + "codeHub": "", + "codeIataAirline": "FW", + "codeIcaoAirline": "", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroflete", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1891, + "callsign": "ISLANDAIR", + "codeHub": "", + "codeIataAirline": "FX", + "codeIcaoAirline": "FIA", + "codeIso2Country": "AG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Four Island Air", + "nameCountry": "Antigua and Barbuda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1892, + "callsign": "SWEDAIR", + "codeHub": "", + "codeIataAirline": "FX", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Svensk Flygtj�nst", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1893, + "callsign": "FOXTROT YANKEE", + "codeHub": "FIH", + "codeIataAirline": "FY", + "codeIcaoAirline": "FUN", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Funtshi Aviation Service", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1894, + "callsign": "", + "codeHub": "DFW", + "codeIataAirline": "FY", + "codeIcaoAirline": "MTR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Metro Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1895, + "callsign": "", + "codeHub": "", + "codeIataAirline": "FY", + "codeIcaoAirline": "NWR", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northwest Regional Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1896, + "callsign": "", + "codeHub": "IAH", + "codeIataAirline": "FY", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Metroflight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1897, + "callsign": "", + "codeHub": "", + "codeIataAirline": "FY", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fairey Air Surveys Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1898, + "callsign": "ALISEA", + "codeHub": "PMO", + "codeIataAirline": "FZ", + "codeIcaoAirline": "BBG", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alisea Airlines", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1899, + "callsign": "", + "codeHub": "BEG", + "codeIataAirline": "FZ", + "codeIcaoAirline": "MSW", + "codeIso2Country": "RS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Master Airways", + "nameCountry": "Serbia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1900, + "callsign": "", + "codeHub": "DME", + "codeIataAirline": "FZ", + "codeIcaoAirline": "TCH", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-Charter Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1901, + "callsign": "", + "codeHub": "", + "codeIataAirline": "FZ", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Facilities", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1902, + "callsign": "", + "codeHub": "", + "codeIataAirline": "FZ*", + "codeIcaoAirline": "", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Postal de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1903, + "callsign": "", + "codeHub": "ACC", + "codeIataAirline": "G0", + "codeIcaoAirline": "GHB", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "678", + "nameAirline": "Ghana International Airlines", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1904, + "callsign": "", + "codeHub": "PKR", + "codeIataAirline": "G1", + "codeIcaoAirline": "IKA", + "codeIso2Country": "NP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gorkha Airlines", + "nameCountry": "Nepal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1905, + "callsign": "DOBROLET", + "codeHub": "DME", + "codeIataAirline": "G2", + "codeIcaoAirline": "DOB", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dobrolet Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1906, + "callsign": "ERRANTE", + "codeHub": "MYC", + "codeIataAirline": "G2", + "codeIcaoAirline": "GAL", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Albatros Airlines", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1907, + "callsign": "", + "codeHub": "", + "codeIataAirline": "G2", + "codeIcaoAirline": "GGG", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South-East European Airlines", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1908, + "callsign": "", + "codeHub": "SSG", + "codeIataAirline": "G2", + "codeIcaoAirline": "", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinea Lineas Aereas", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 1909, + "callsign": "", + "codeHub": "", + "codeIataAirline": "G2", + "codeIcaoAirline": "", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania Aerea Viages Guinea Airlines", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1910, + "callsign": "", + "codeHub": "", + "codeIataAirline": "G2", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Foyle Passenger Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1911, + "callsign": "", + "codeHub": "", + "codeIataAirline": "G2", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinea Lineas Aereas", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1912, + "callsign": "AVIREX-GABON", + "codeHub": "LBV", + "codeIataAirline": "G2*", + "codeIcaoAirline": "AVX", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avirex", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1913, + "callsign": "AEROCHAGO", + "codeHub": "SDQ", + "codeIataAirline": "G3", + "codeIcaoAirline": "AHG", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerochago Airlines", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1914, + "callsign": "CONNEXION", + "codeHub": "", + "codeIataAirline": "G3", + "codeIcaoAirline": "CIX", + "codeIso2Country": "BI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "City Connexion Airlines", + "nameCountry": "Burundi", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1915, + "callsign": "GEMSTONE", + "codeHub": "LPL", + "codeIataAirline": "G3", + "codeIcaoAirline": "JEM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Emerald Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1917, + "callsign": "GRIZODUBOVA AIR", + "codeHub": "", + "codeIataAirline": "G4*", + "codeIcaoAirline": "GZD", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "934", + "nameAirline": "Grizodubova Air", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1918, + "callsign": "", + "codeHub": "", + "codeIataAirline": "G5*", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "198", + "nameAirline": "Globemaster Air Cargo", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1919, + "callsign": "", + "codeHub": "", + "codeIataAirline": "G6", + "codeIcaoAirline": "BSR", + "codeIso2Country": "GW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guine Bissau Airlines", + "nameCountry": "Guinea-Bissau", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1920, + "callsign": "", + "codeHub": "VOG", + "codeIataAirline": "G6", + "codeIcaoAirline": "WLG", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Volga-Aviaexpress", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1921, + "callsign": "ANGKORWAYS", + "codeHub": "PNH", + "codeIataAirline": "G6*", + "codeIcaoAirline": "AKW", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Angkor Airways", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1922, + "callsign": "AIR ANGKOR", + "codeHub": "", + "codeIataAirline": "G6*", + "codeIcaoAirline": "VAV", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Angkor Air", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1923, + "callsign": "GOUMARK", + "codeHub": "", + "codeIataAirline": "G6*", + "codeIcaoAirline": "WLG", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Volga Aviaexpress Company", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1924, + "callsign": "GANDALF", + "codeHub": "BGY", + "codeIataAirline": "G7", + "codeIcaoAirline": "GNF", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gandalf Airlines", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1925, + "callsign": "KAZAVIA", + "codeHub": "DME", + "codeIataAirline": "G7*", + "codeIcaoAirline": "KAO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "39", + "nameAirline": "KAPO Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1926, + "callsign": "CHANGCHENG", + "codeHub": "CKG", + "codeIataAirline": "G8", + "codeIcaoAirline": "CGW", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Great Wall", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1927, + "callsign": "ENKOR", + "codeHub": "DME", + "codeIataAirline": "G8", + "codeIcaoAirline": "ENK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Enkor", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1928, + "callsign": "", + "codeHub": "LBV", + "codeIataAirline": "G8*", + "codeIcaoAirline": "AGB", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Service Gabon", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1929, + "callsign": "GUJARTAIR", + "codeHub": "", + "codeIataAirline": "G8*", + "codeIcaoAirline": "GUJ", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gujarat Airways", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1930, + "callsign": "", + "codeHub": "", + "codeIataAirline": "GB", + "codeIcaoAirline": "AFW", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Great Barrier Airlines", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1931, + "callsign": "TRANSBISSAU", + "codeHub": "", + "codeIataAirline": "GB", + "codeIcaoAirline": "", + "codeIso2Country": "GW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos da Guine-Bissau", + "nameCountry": "Guinea-Bissau", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1932, + "callsign": "", + "codeHub": "", + "codeIataAirline": "GB", + "codeIcaoAirline": "", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soci�t� de Transports A�riens du Gabon", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1933, + "callsign": "CENTRAFRICAN", + "codeHub": "", + "codeIataAirline": "GC", + "codeIcaoAirline": "CET", + "codeIso2Country": "CF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centrafrican Airlines", + "nameCountry": "Central African Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1934, + "callsign": "LINACONGO", + "codeHub": "BZV", + "codeIataAirline": "GC", + "codeIcaoAirline": "GCB", + "codeIso2Country": "CG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lignes Nationales Aeriennes - Linacongo", + "nameCountry": "Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1935, + "callsign": "", + "codeHub": "", + "codeIataAirline": "GC", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Feeder Services, LLC", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1936, + "callsign": "GAMBIA INTERNATIONAL", + "codeHub": "BJL", + "codeIataAirline": "GC*", + "codeIcaoAirline": "GNR", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "34", + "nameAirline": "Gambia International Airlines", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1937, + "callsign": "AIR ALPHA", + "codeHub": "JAV", + "codeIataAirline": "GD", + "codeIcaoAirline": "AHA", + "codeIso2Country": "GL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Alpha", + "nameCountry": "Greenland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1938, + "callsign": "SARNAIR", + "codeHub": "", + "codeIataAirline": "GD", + "codeIcaoAirline": "GJD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Channel Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1939, + "callsign": "GRANDSTAR CARGO", + "codeHub": "TSN", + "codeIataAirline": "GD", + "codeIcaoAirline": "GSC", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grandstar Cargo International Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1940, + "callsign": "TRANSEJECUTIVOS", + "codeHub": "MEX", + "codeIataAirline": "GD", + "codeIcaoAirline": "TEJ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAESA", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1941, + "callsign": "MIDCAR", + "codeHub": "", + "codeIataAirline": "GD", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midland Air Cargo", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1942, + "callsign": "GERMAN CARGO", + "codeHub": "FRA", + "codeIataAirline": "GE", + "codeIcaoAirline": "GEC", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "German Cargo Services", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1943, + "callsign": "TAGP", + "codeHub": "", + "codeIataAirline": "GE", + "codeIcaoAirline": "", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes A�reos da Guin� Portuguesa", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1944, + "callsign": "", + "codeHub": "", + "codeIataAirline": "GE", + "codeIcaoAirline": "", + "codeIso2Country": "TW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Foshing Airlines", + "nameCountry": "Taiwan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1945, + "callsign": "GILFAV", + "codeHub": "", + "codeIataAirline": "GF", + "codeIcaoAirline": "", + "codeIso2Country": "BH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gulf Aviation", + "nameCountry": "Bahrain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1946, + "callsign": "AIR LONDON", + "codeHub": "", + "codeIataAirline": "GG", + "codeIcaoAirline": "ACG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air London", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1947, + "callsign": "ORANGE", + "codeHub": "", + "codeIataAirline": "GG", + "codeIcaoAirline": "AHR", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Holland", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1948, + "callsign": "", + "codeHub": "MRY", + "codeIataAirline": "GG", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Golden Gate Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1949, + "callsign": "", + "codeHub": "", + "codeIataAirline": "GG", + "codeIcaoAirline": "", + "codeIso2Country": "KM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Comores International", + "nameCountry": "Comoros", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1950, + "callsign": "", + "codeHub": "", + "codeIataAirline": "GG", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tropical Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1951, + "callsign": "", + "codeHub": "", + "codeIataAirline": "GG", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Lease I, Inc.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1952, + "callsign": "", + "codeHub": "SEA", + "codeIataAirline": "GG*", + "codeIcaoAirline": "GGC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cargo 360", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1953, + "callsign": "", + "codeHub": "", + "codeIataAirline": "GG*", + "codeIcaoAirline": "GUY", + "codeIso2Country": "GF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Guyane", + "nameCountry": "French Guiana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1954, + "callsign": "GHANA", + "codeHub": "ACC", + "codeIataAirline": "GH", + "codeIcaoAirline": "GHA", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "237", + "nameAirline": "Ghana Airways", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1955, + "callsign": "GLOBUS", + "codeHub": "OVB", + "codeIataAirline": "GH", + "codeIcaoAirline": "GLP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "674", + "nameAirline": "Globus", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1956, + "callsign": "AIR GUINEE", + "codeHub": "CKY", + "codeIataAirline": "GI", + "codeIcaoAirline": "GIB", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Guinee", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1957, + "callsign": "CORGI", + "codeHub": "SXF", + "codeIataAirline": "GI", + "codeIcaoAirline": "GMQ", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Germania Express", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1958, + "callsign": "ITEK AIR", + "codeHub": "FRU", + "codeIataAirline": "GI", + "codeIcaoAirline": "IKA", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "420", + "nameAirline": "Itek Air", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1959, + "callsign": "SIRIOFLY", + "codeHub": "MXP", + "codeIataAirline": "GJ", + "codeIcaoAirline": "EEZ", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "736", + "nameAirline": "Eurofly", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1960, + "callsign": "", + "codeHub": "DAY", + "codeIataAirline": "GJ", + "codeIcaoAirline": "EWW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Emery Worldwide", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1961, + "callsign": "ALSA", + "codeHub": "", + "codeIataAirline": "GJ", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlines of South Australia", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1962, + "callsign": "MEXICARGO", + "codeHub": "MEX", + "codeIataAirline": "GJ*", + "codeIcaoAirline": "MXC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "624", + "nameAirline": "Mexicargo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1963, + "callsign": "GUYAM", + "codeHub": "", + "codeIataAirline": "GK", + "codeIcaoAirline": "GAM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guy America Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1964, + "callsign": "LAKER", + "codeHub": "LGW", + "codeIataAirline": "GK", + "codeIcaoAirline": "LAK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Laker Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1965, + "callsign": "", + "codeHub": "FJR", + "codeIataAirline": "GL*", + "codeIcaoAirline": "", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "914", + "nameAirline": "AirGlow Aviation Services", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1966, + "callsign": "", + "codeHub": "LAX", + "codeIataAirline": "GM", + "codeIcaoAirline": "AMR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air America", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1967, + "callsign": "TRANSWEDE", + "codeHub": "", + "codeIataAirline": "GM", + "codeIcaoAirline": "GMP", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transwede", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1968, + "callsign": "", + "codeHub": "JNB", + "codeIataAirline": "GM", + "codeIcaoAirline": "TKE", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flitestar", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1969, + "callsign": "TRILINES", + "codeHub": "HLP", + "codeIataAirline": "GM", + "codeIcaoAirline": "TMG", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PT.Tri-MG Intra Asia Airlines", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1970, + "callsign": "SLOVAKIA", + "codeHub": "BTS", + "codeIataAirline": "GM*", + "codeIcaoAirline": "SVK", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Slovakia", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1971, + "callsign": "GOLF NOVEMBER", + "codeHub": "LBV", + "codeIataAirline": "GN", + "codeIcaoAirline": "AGN", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "185", + "nameAirline": "Air Gabon", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1972, + "callsign": "AIR STORD", + "codeHub": "SRP", + "codeIataAirline": "GO", + "codeIcaoAirline": "SOR", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Stord", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1973, + "callsign": "", + "codeHub": "", + "codeIataAirline": "GO", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canada - Department of Transport", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1974, + "callsign": "", + "codeHub": "MAD", + "codeIataAirline": "GP", + "codeIcaoAirline": "ADI", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gestair Airlines", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1975, + "callsign": "TONGHANG", + "codeHub": "", + "codeIataAirline": "GP", + "codeIcaoAirline": "CTH", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "China General Aviation Corp. - CGAC", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1976, + "callsign": "GOLF PAPA", + "codeHub": "", + "codeIataAirline": "GP", + "codeIcaoAirline": "GAL", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gemini Airlines", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1977, + "callsign": "GADAIR LINES", + "codeHub": "MAD", + "codeIataAirline": "GP", + "codeIcaoAirline": "GDR", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gadair European Airlines", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1978, + "callsign": "PANTANAL", + "codeHub": "CGH", + "codeIataAirline": "GP", + "codeIcaoAirline": "PTN", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "961", + "nameAirline": "Pantanal Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1979, + "callsign": "", + "codeHub": "HAM", + "codeIataAirline": "GP", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "HADAG Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1980, + "callsign": "", + "codeHub": "NNG", + "codeIataAirline": "GP", + "codeIcaoAirline": "", + "codeIso2Country": "CN", + "founding": 2014, + "iataPrefixAccounting": "", + "nameAirline": "GX Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1981, + "callsign": "", + "codeHub": "", + "codeIataAirline": "GP", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Pegasus", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1982, + "callsign": "", + "codeHub": "", + "codeIataAirline": "GP", + "codeIcaoAirline": "", + "codeIso2Country": "PW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Palau Trans Pacific Airlines", + "nameCountry": "Palau", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1983, + "callsign": "BIG SKY", + "codeHub": "BIL", + "codeIataAirline": "GQ", + "codeIcaoAirline": "BSY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "387", + "nameAirline": "Big Sky Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1984, + "callsign": "DRUK", + "codeHub": "", + "codeIataAirline": "GQ", + "codeIcaoAirline": "", + "codeIso2Country": "BT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Druk Air", + "nameCountry": "Bhutan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1985, + "callsign": "", + "codeHub": "", + "codeIataAirline": "GQ", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "General Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1986, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "GR", + "codeIcaoAirline": "NGS", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GAS Air Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1987, + "callsign": "GEMINI", + "codeHub": "MSP", + "codeIataAirline": "GR*", + "codeIcaoAirline": "GCO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "358", + "nameAirline": "Gemini Air Cargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1988, + "callsign": "GOLF SIERRA", + "codeHub": "", + "codeIataAirline": "GS", + "codeIcaoAirline": "NGS", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "General and Aviation Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1989, + "callsign": "", + "codeHub": "", + "codeIataAirline": "GS", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Vosges", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1990, + "callsign": "WELKIN", + "codeHub": "KWL", + "codeIataAirline": "GT", + "codeIcaoAirline": "CGH", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "730", + "nameAirline": "Air Guilin Co. Ltd.", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1991, + "callsign": "GIBAIR", + "codeHub": "LGW", + "codeIataAirline": "GT", + "codeIcaoAirline": "GBL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "171", + "nameAirline": "GB Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 1992, + "callsign": "PIYO AIR", + "codeHub": "DMK", + "codeIataAirline": "GT", + "codeIcaoAirline": "PCA", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "P.C. Air", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1993, + "callsign": "", + "codeHub": "HLP", + "codeIataAirline": "GT", + "codeIcaoAirline": "", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GT Air", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1994, + "callsign": "AERO FOX", + "codeHub": "FRA", + "codeIataAirline": "GV", + "codeIcaoAirline": "ARF", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Flight", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 1995, + "callsign": "SKY GABON", + "codeHub": "LBV", + "codeIataAirline": "GV", + "codeIcaoAirline": "SKG", + "codeIso2Country": "GA", + "founding": 2006, + "iataPrefixAccounting": "", + "nameAirline": "Sky Gabon S.A.", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 1996, + "callsign": "", + "codeHub": "", + "codeIataAirline": "GV", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Territory Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1997, + "callsign": "GLUFEXPRESS", + "codeHub": "", + "codeIataAirline": "GV*", + "codeIcaoAirline": "GEX", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Gulf Express", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1998, + "callsign": "THE GAMBIA", + "codeHub": "", + "codeIataAirline": "GW", + "codeIcaoAirline": "GAW", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gambia Airways", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 1999, + "callsign": "GOLDEN WEST", + "codeHub": "LGB", + "codeIataAirline": "GW", + "codeIcaoAirline": "GWA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Golden West Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2000, + "callsign": "SKY GREECE", + "codeHub": "ATH", + "codeIataAirline": "GW", + "codeIcaoAirline": "SGR", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SkyGreece Airlines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2001, + "callsign": "", + "codeHub": "", + "codeIataAirline": "GW", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cimber Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2002, + "callsign": "AIR KUBAN", + "codeHub": "KRR", + "codeIataAirline": "GW*", + "codeIcaoAirline": "KIL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "113", + "nameAirline": "Kuban Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2003, + "callsign": "GLOBAL", + "codeHub": "MCI", + "codeIataAirline": "GX", + "codeIcaoAirline": "GAX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global International Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2004, + "callsign": "GILLAIR", + "codeHub": "", + "codeIataAirline": "GX", + "codeIcaoAirline": "GIL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gill Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2005, + "callsign": "JET MAGIC", + "codeHub": "ORK", + "codeIataAirline": "GX", + "codeIcaoAirline": "JMG", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JetMagic", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2006, + "callsign": "JETBIRD", + "codeHub": "KEF", + "codeIataAirline": "GX", + "codeIcaoAirline": "JXX", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "591", + "nameAirline": "Primera Air", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2007, + "callsign": "KAKHETI", + "codeHub": "TBS", + "codeIataAirline": "GX", + "codeIcaoAirline": "LLG", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "559", + "nameAirline": "Luftline Georgia", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2008, + "callsign": "ONTARIO", + "codeHub": "YXU", + "codeIataAirline": "GX", + "codeIcaoAirline": "ONT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Ontario", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2009, + "callsign": "", + "codeHub": "", + "codeIataAirline": "GX", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Great Lakes Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2010, + "callsign": "PACIFIC WEST", + "codeHub": "", + "codeIataAirline": "GX*", + "codeIcaoAirline": "PFR", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacificair", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2011, + "callsign": "GABON AIRLINES", + "codeHub": "LBV", + "codeIataAirline": "GY", + "codeIcaoAirline": "GBK", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "661", + "nameAirline": "Gabon Airlines", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2012, + "callsign": "GUYAIR", + "codeHub": "GEO", + "codeIataAirline": "GY", + "codeIcaoAirline": "GYA", + "codeIso2Country": "GY", + "founding": 0, + "iataPrefixAccounting": "206", + "nameAirline": "Guyana Airways", + "nameCountry": "Guyana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2013, + "callsign": "AEROGULF", + "codeHub": "", + "codeIataAirline": "GZ", + "codeIcaoAirline": "", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerogulf Services Company", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2014, + "callsign": "", + "codeHub": "", + "codeIataAirline": "GZ", + "codeIcaoAirline": "", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Intergulf", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2015, + "callsign": "GRAGAIR", + "codeHub": "", + "codeIataAirline": "GZ", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gregory Air Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2016, + "callsign": "", + "codeHub": "", + "codeIataAirline": "GZ*", + "codeIcaoAirline": "SHU", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sakhalinskie Aviatrassy SAT", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2017, + "callsign": "", + "codeHub": "FRA", + "codeIataAirline": "H1", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hahn Air Systems", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 2018, + "callsign": "", + "codeHub": "", + "codeIataAirline": "H1", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hooters Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2019, + "callsign": "DREAM FLIGHT", + "codeHub": "BRU", + "codeIataAirline": "H2*", + "codeIcaoAirline": "CTB", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "City Bird", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2020, + "callsign": "HARBOUR EXPRESS", + "codeHub": "CXH", + "codeIataAirline": "H3", + "codeIcaoAirline": "HES", + "codeIso2Country": "CA", + "founding": 1982, + "iataPrefixAccounting": "", + "nameAirline": "Harbour Air Seaplanes", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2021, + "callsign": "HERMES", + "codeHub": "ATH", + "codeIataAirline": "H3", + "codeIcaoAirline": "HRM", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hermes Airlines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2022, + "callsign": "SAGA", + "codeHub": "IST", + "codeIataAirline": "H3", + "codeIcaoAirline": "SGX", + "codeIso2Country": "TR", + "founding": 2004, + "iataPrefixAccounting": "", + "nameAirline": "Saga Airlines", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2023, + "callsign": "", + "codeHub": "", + "codeIataAirline": "H3", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Harbour Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2024, + "callsign": "AEROCUTTER", + "codeHub": "LJU", + "codeIataAirline": "H4", + "codeIcaoAirline": "AEH", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero4M", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2025, + "callsign": "HELI SAINT-TROPEZ", + "codeHub": "LTT", + "codeIataAirline": "H4", + "codeIcaoAirline": "HLI", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Securite", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2026, + "callsign": "", + "codeHub": "", + "codeIataAirline": "H4", + "codeIcaoAirline": "IIN", + "codeIso2Country": "CV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter Islands Airlines", + "nameCountry": "Cape Verde", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2027, + "callsign": "HOLA", + "codeHub": "PMI", + "codeIataAirline": "H5", + "codeIcaoAirline": "HOA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hola Airlines", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2028, + "callsign": "MAVIAL", + "codeHub": "GDX", + "codeIataAirline": "H5", + "codeIcaoAirline": "MVL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "428", + "nameAirline": "MAVIAL - Magadan Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2029, + "callsign": "", + "codeHub": "", + "codeIataAirline": "H5", + "codeIcaoAirline": "RSY", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "iFly Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2030, + "callsign": "", + "codeHub": "PAP", + "codeIataAirline": "H5", + "codeIcaoAirline": "", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Haiti Aviation", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2031, + "callsign": "", + "codeHub": "", + "codeIataAirline": "H5", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Haiti Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2032, + "callsign": "CHERAVIA", + "codeHub": "CEK", + "codeIataAirline": "H6", + "codeIcaoAirline": "CHB", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airline Chelyabinsk Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2033, + "callsign": "AFRICAN EAGLE", + "codeHub": "EBB", + "codeIataAirline": "H7", + "codeIcaoAirline": "EGU", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Air", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2034, + "callsign": "", + "codeHub": "IST", + "codeIataAirline": "H7", + "codeIcaoAirline": "LFA", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "770", + "nameAirline": "Air Alfa", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2035, + "callsign": "", + "codeHub": "", + "codeIataAirline": "H7", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taron Avia LLC", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2036, + "callsign": "GRANDE", + "codeHub": "", + "codeIataAirline": "H7*", + "codeIcaoAirline": "GRN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rio Grande Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2037, + "callsign": "", + "codeHub": "", + "codeIataAirline": "H7*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taquan Air Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2038, + "callsign": "KHABAROVSK AIR", + "codeHub": "KHV", + "codeIataAirline": "H8", + "codeIcaoAirline": "KHB", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "560", + "nameAirline": "Khabarovsk Aviation Group", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2039, + "callsign": "SEPAHAN", + "codeHub": "IFH", + "codeIataAirline": "H8", + "codeIcaoAirline": "SPN", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sepahan Airlines", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2040, + "callsign": "", + "codeHub": "KHV", + "codeIataAirline": "H8", + "codeIcaoAirline": "", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Far East Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2041, + "callsign": "", + "codeHub": "", + "codeIataAirline": "H8", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chilejet S.A.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2042, + "callsign": "HAITI AVIA", + "codeHub": "PAP", + "codeIataAirline": "H9", + "codeIcaoAirline": "HAD", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air D'Ayiti", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2043, + "callsign": "ALBORAN", + "codeHub": "AGP", + "codeIataAirline": "H9", + "codeIcaoAirline": "HTH", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helitt Lineas Aereas", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2044, + "callsign": "", + "codeHub": "HAK", + "codeIataAirline": "HAK", + "codeIcaoAirline": "", + "codeIso2Country": "CN", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "Grand China Air", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2045, + "callsign": "ASIA ATLANTIC", + "codeHub": "BKK", + "codeIataAirline": "HB", + "codeIcaoAirline": "AAQ", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "943", + "nameAirline": "Asia Atlantic Airlines Co., Ltd.", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2046, + "callsign": "AIR CLUB", + "codeHub": "YMX", + "codeIataAirline": "HB", + "codeIcaoAirline": "CLI", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Club International", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2047, + "callsign": "HARBOR", + "codeHub": "", + "codeIataAirline": "HB", + "codeIcaoAirline": "HAR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Harbor Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2048, + "callsign": "", + "codeHub": "SWF", + "codeIataAirline": "HB", + "codeIcaoAirline": "PFT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Express International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2049, + "callsign": "", + "codeHub": "", + "codeIataAirline": "HB*", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Augusta Airways", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2050, + "callsign": "", + "codeHub": "", + "codeIataAirline": "HB*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Homer Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2051, + "callsign": "HOTEL CHARLIE", + "codeHub": "", + "codeIataAirline": "HC", + "codeIcaoAirline": "CGM", + "codeIso2Country": "OM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cargoman", + "nameCountry": "Oman", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2052, + "callsign": "CZECH HOLIDAYS", + "codeHub": "PRG", + "codeIataAirline": "HC", + "codeIcaoAirline": "HCC", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Holidays Czech Airlines", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2053, + "callsign": "NASKE AIR", + "codeHub": "", + "codeIataAirline": "HC", + "codeIcaoAirline": "HCN", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Naske-Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2054, + "callsign": "HEAVYLIFT INTERNATIONAL", + "codeHub": "RKT", + "codeIataAirline": "HC", + "codeIcaoAirline": "HVL", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "310", + "nameAirline": "Heavylift International", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2055, + "callsign": "AVIACTION", + "codeHub": "HAM", + "codeIataAirline": "HC", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviaction", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2056, + "callsign": "", + "codeHub": "KEF", + "codeIataAirline": "HC", + "codeIcaoAirline": "", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Iceland Express", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 2057, + "callsign": "SANAGA", + "codeHub": "", + "codeIataAirline": "HC", + "codeIcaoAirline": "", + "codeIso2Country": "CM", + "founding": 0, + "iataPrefixAccounting": "377", + "nameAirline": "Avient Cameroon", + "nameCountry": "Cameroon", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2058, + "callsign": "", + "codeHub": "", + "codeIataAirline": "HC", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Esterel", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2059, + "callsign": "", + "codeHub": "CNS", + "codeIataAirline": "HC*", + "codeIcaoAirline": "ATI", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero-Tropics Air Services", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2060, + "callsign": "ORANGE", + "codeHub": "", + "codeIataAirline": "HD", + "codeIcaoAirline": "AHD", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Holland", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2061, + "callsign": "", + "codeHub": "", + "codeIataAirline": "HD", + "codeIcaoAirline": "", + "codeIso2Country": "HN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicios", + "nameCountry": "Honduras", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2062, + "callsign": "BELGAIR", + "codeHub": "BRU", + "codeIataAirline": "HE", + "codeIcaoAirline": "TEA", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TEA - Trans European Airlines", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2063, + "callsign": "FLO WEST", + "codeHub": "", + "codeIataAirline": "HG", + "codeIcaoAirline": "FWL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Florida West Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2064, + "callsign": "HAITI AIRLINE", + "codeHub": "", + "codeIataAirline": "HG", + "codeIcaoAirline": "HRB", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "138", + "nameAirline": "Haiti International Airline", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2065, + "callsign": "", + "codeHub": "", + "codeIataAirline": "HG", + "codeIcaoAirline": "", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Lloyd Austria", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2066, + "callsign": "HUNTING", + "codeHub": "", + "codeIataAirline": "HG", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hunting Surveys Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2067, + "callsign": "", + "codeHub": "", + "codeIataAirline": "HG", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centreline Air Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2068, + "callsign": "SOMALAIR", + "codeHub": "MGQ", + "codeIataAirline": "HH", + "codeIcaoAirline": "SOM", + "codeIso2Country": "SO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Somali Airlines", + "nameCountry": "Somalia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2069, + "callsign": "", + "codeHub": "", + "codeIataAirline": "HH", + "codeIcaoAirline": "", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hispania", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2070, + "callsign": "HISPANIA", + "codeHub": "PMI", + "codeIataAirline": "HI", + "codeIcaoAirline": "HSL", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hispania Lineas Aereas", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2071, + "callsign": "", + "codeHub": "LAS", + "codeIataAirline": "HI", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 1965, + "iataPrefixAccounting": "563", + "nameAirline": "Papillon Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2072, + "callsign": "COPTAIR", + "codeHub": "", + "codeIataAirline": "HI", + "codeIcaoAirline": "", + "codeIso2Country": "HK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hong Kong Air International Ltd.", + "nameCountry": "Hong Kong", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2073, + "callsign": "HELLENIC STAR", + "codeHub": "ATH", + "codeIataAirline": "HJ", + "codeIcaoAirline": "HST", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hellenic Star Airways", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2074, + "callsign": "", + "codeHub": "HUV", + "codeIataAirline": "HJ", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Holmstroem Air Sweden", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2075, + "callsign": "", + "codeHub": "", + "codeIataAirline": "HJ", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Haywards Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2076, + "callsign": "", + "codeHub": "", + "codeIataAirline": "HJ", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Holmstroem Air", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2077, + "callsign": "FREIGHTEXPRESS", + "codeHub": "SYD", + "codeIataAirline": "HJ*", + "codeIcaoAirline": "AXF", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tasman Cargo Airlines PTY Ltd", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2078, + "callsign": "", + "codeHub": "PER", + "codeIataAirline": "HK", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skippers Aviation", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2079, + "callsign": "COGEAIR", + "codeHub": "", + "codeIataAirline": "HK", + "codeIcaoAirline": "", + "codeIso2Country": "ZR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compagnie Generale Aerienne Africaine", + "nameCountry": "Zaire", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2080, + "callsign": "", + "codeHub": "", + "codeIataAirline": "HK", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "(Time) Air Sweden", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2081, + "callsign": "TURKU", + "codeHub": "IST", + "codeIataAirline": "HK*", + "codeIcaoAirline": "TRK", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turkuaz Airlines", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2082, + "callsign": "", + "codeHub": "HKG", + "codeIataAirline": "HKG", + "codeIcaoAirline": "", + "codeIso2Country": "HK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hong Kong Airlines", + "nameCountry": "Hong Kong", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2083, + "callsign": "HOLIDAY EXPRESS", + "codeHub": "HAM", + "codeIataAirline": "HL", + "codeIcaoAirline": "HLE", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Holiday Express", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2084, + "callsign": "", + "codeHub": "", + "codeIataAirline": "HL", + "codeIcaoAirline": "XHL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hotels/Motels", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2085, + "callsign": "HALCON", + "codeHub": "", + "codeIataAirline": "HL", + "codeIcaoAirline": "", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Empresa Aeroias Halcon", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2086, + "callsign": "HAMAREIN", + "codeHub": "", + "codeIataAirline": "HM", + "codeIcaoAirline": "", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hamarein Air", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2087, + "callsign": "HUMBER", + "codeHub": "", + "codeIataAirline": "HM", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Humber Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2088, + "callsign": "AFGHAN JET", + "codeHub": "KBL", + "codeIataAirline": "HN", + "codeIcaoAirline": "AJA", + "codeIso2Country": "AF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Afghan Jet International", + "nameCountry": "Afghanistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2089, + "callsign": "HEAVY CARGO", + "codeHub": "BNE", + "codeIataAirline": "HN", + "codeIcaoAirline": "HVY", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heavylift Cargo", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2090, + "callsign": "", + "codeHub": "AMS", + "codeIataAirline": "HN", + "codeIcaoAirline": "NLM", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "N.L.M. Dutch Airlines Ltd.", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2091, + "callsign": "PROTEUS", + "codeHub": "", + "codeIataAirline": "HN", + "codeIcaoAirline": "PTH", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "INAER Helicopter France", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2092, + "callsign": "ANTINEA", + "codeHub": "ALG", + "codeIataAirline": "HO", + "codeIcaoAirline": "DJA", + "codeIso2Country": "DZ", + "founding": 0, + "iataPrefixAccounting": "394", + "nameAirline": "Antinea Airlines", + "nameCountry": "Algeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2093, + "callsign": "", + "codeHub": "", + "codeIataAirline": "HO", + "codeIcaoAirline": "", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Austrian Air Services", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2094, + "callsign": "CACTUS", + "codeHub": "PHX", + "codeIataAirline": "HP", + "codeIcaoAirline": "AWE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "401", + "nameAirline": "America West Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2095, + "callsign": "PHOENIX", + "codeHub": "", + "codeIataAirline": "HP", + "codeIcaoAirline": "", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoenix Airways", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2096, + "callsign": "", + "codeHub": "", + "codeIataAirline": "HP", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amapola Flyg AB", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2097, + "callsign": "BAE", + "codeHub": "", + "codeIataAirline": "HQ", + "codeIcaoAirline": "BAE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Aerospace", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2098, + "callsign": "BIZEX", + "codeHub": "BOS", + "codeIataAirline": "HQ", + "codeIcaoAirline": "GAA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Express Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2099, + "callsign": "HANKINS", + "codeHub": "HKS", + "codeIataAirline": "HQ", + "codeIcaoAirline": "HKN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jim Hankins Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 2100, + "callsign": "HARMONY", + "codeHub": "YVR", + "codeIataAirline": "HQ", + "codeIcaoAirline": "HMY", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Harmony Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2101, + "callsign": "HAWKAIR", + "codeHub": "", + "codeIataAirline": "HQ", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hawker Siddeley Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2102, + "callsign": "AIR BREMEN", + "codeHub": "BRE", + "codeIataAirline": "HR", + "codeIcaoAirline": "BRN", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bremen", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2103, + "callsign": "ROOSTER", + "codeHub": "FRA", + "codeIataAirline": "HR", + "codeIcaoAirline": "HHN", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "169", + "nameAirline": "Hahn Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2104, + "callsign": "", + "codeHub": "EZE", + "codeIataAirline": "HR", + "codeIcaoAirline": "HRT", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAR Transporte Aereo Rioplatense", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2105, + "callsign": "", + "codeHub": "", + "codeIataAirline": "HR", + "codeIcaoAirline": "", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAR", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2106, + "callsign": "HANSUNG AIR", + "codeHub": "CJJ", + "codeIataAirline": "HS", + "codeIcaoAirline": "HAN", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hansung Airlines", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2107, + "callsign": "", + "codeHub": "MXP", + "codeIataAirline": "HS", + "codeIcaoAirline": "", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeral", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2108, + "callsign": "BEECHSALES", + "codeHub": "", + "codeIataAirline": "HS", + "codeIcaoAirline": "", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Beechcraft Sales (PTY) Ltd.", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2109, + "callsign": "", + "codeHub": "", + "codeIataAirline": "HS", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Securite Helicopter Airline", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2110, + "callsign": "SKYREG", + "codeHub": "", + "codeIataAirline": "HS*", + "codeIcaoAirline": "SKH", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyways Regional", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2111, + "callsign": "AEROMIST", + "codeHub": "HRK", + "codeIataAirline": "HT", + "codeIcaoAirline": "AHW", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromist - Kharkiv", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2112, + "callsign": "LINGBIRD", + "codeHub": "INC", + "codeIataAirline": "HT", + "codeIcaoAirline": "HTK", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "669", + "nameAirline": "Ningxia Cargo Airlines CO.,LTD", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2113, + "callsign": "ICEBIRD", + "codeHub": "RKV", + "codeIataAirline": "HT*", + "codeIcaoAirline": "ICB", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "652", + "nameAirline": "Islandsflug", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2114, + "callsign": "IMPERIAL", + "codeHub": "ATH", + "codeIataAirline": "HT*", + "codeIcaoAirline": "IMP", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "570", + "nameAirline": "Hellenic Imperial Airways", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2115, + "callsign": "", + "codeHub": "XIY", + "codeIataAirline": "HU", + "codeIcaoAirline": "CGN", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chang'an Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2116, + "callsign": "", + "codeHub": "TSA", + "codeIataAirline": "HU", + "codeIcaoAirline": "FOS", + "codeIso2Country": "TW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Formosa Airlines", + "nameCountry": "Taiwan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2117, + "callsign": "HOTEL UNIFORM", + "codeHub": "", + "codeIataAirline": "HU", + "codeIcaoAirline": "SEN", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2118, + "callsign": "", + "codeHub": "FOC", + "codeIataAirline": "HU", + "codeIcaoAirline": "", + "codeIso2Country": "CN", + "founding": 2012, + "iataPrefixAccounting": "", + "nameAirline": "Fuzhou Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2119, + "callsign": "", + "codeHub": "ORY", + "codeIataAirline": "HV", + "codeIcaoAirline": "TRA", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transavia France", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2120, + "callsign": "GUERNSEY", + "codeHub": "", + "codeIataAirline": "HW", + "codeIcaoAirline": "GER", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guernsey Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2121, + "callsign": "HOLIDAY EXPRESS", + "codeHub": "IST", + "codeIataAirline": "HW", + "codeIcaoAirline": "HLD", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Holiday Air", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2122, + "callsign": "AUSCARGO", + "codeHub": "", + "codeIataAirline": "HW*", + "codeIcaoAirline": "AUC", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transaustralian Air Express", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2123, + "callsign": "FLY HELLO", + "codeHub": "BSL", + "codeIataAirline": "HW*", + "codeIcaoAirline": "FHE", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "590", + "nameAirline": "Hello", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2124, + "callsign": "", + "codeHub": "JFK", + "codeIataAirline": "HX", + "codeIcaoAirline": "GAM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guy-American Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2125, + "callsign": "HAMBURG AIR", + "codeHub": "HAM", + "codeIataAirline": "HX", + "codeIcaoAirline": "HAS", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hamburg Airlines", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2126, + "callsign": "", + "codeHub": "HAM", + "codeIataAirline": "HX", + "codeIcaoAirline": "HLE", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hanse Express", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2127, + "callsign": "", + "codeHub": "", + "codeIataAirline": "HX*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans North Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2128, + "callsign": "SWAVIA", + "codeHub": "", + "codeIataAirline": "HX*", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South West Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2129, + "callsign": "HENRYNIELSEN", + "codeHub": "", + "codeIataAirline": "HY", + "codeIcaoAirline": "", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Henry Nielsen", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2130, + "callsign": "EUROPEAN", + "codeHub": "", + "codeIataAirline": "HY*", + "codeIcaoAirline": "EAW", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2131, + "callsign": "THURSTON", + "codeHub": "", + "codeIataAirline": "HZ", + "codeIcaoAirline": "THG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thurston Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2132, + "callsign": "", + "codeHub": "", + "codeIataAirline": "HZ", + "codeIcaoAirline": "", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pomair", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2133, + "callsign": "HARTEX", + "codeHub": "", + "codeIataAirline": "HZ", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Herts and Essex Aero Club", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2134, + "callsign": "", + "codeHub": "LIM", + "codeIataAirline": "I2", + "codeIcaoAirline": "", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Magenta Air", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2135, + "callsign": "", + "codeHub": "", + "codeIataAirline": "I2", + "codeIcaoAirline": "", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroturwismo y Publicidad", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2136, + "callsign": "", + "codeHub": "", + "codeIataAirline": "I2*", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Munich Airlines", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2137, + "callsign": "", + "codeHub": "", + "codeIataAirline": "I3", + "codeIcaoAirline": "IVN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ivoirienne de Transport Aerien", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2138, + "callsign": "", + "codeHub": "", + "codeIataAirline": "I3", + "codeIcaoAirline": "", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ivoirenne de Transport Aerien", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2139, + "callsign": "ISLAND EXPRESS", + "codeHub": "CGA", + "codeIataAirline": "I4", + "codeIcaoAirline": "EXP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Scott Air, LLC dba Island Air Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2140, + "callsign": "FREEWAYAIR", + "codeHub": "MST", + "codeIataAirline": "I4*", + "codeIcaoAirline": "FWA", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interstate Airlines", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2141, + "callsign": "", + "codeHub": "KHI", + "codeIataAirline": "I6", + "codeIcaoAirline": "MPK", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Indus", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2142, + "callsign": "LINK", + "codeHub": "GDL", + "codeIataAirline": "I6", + "codeIcaoAirline": "MXI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mexicana Inter", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2143, + "callsign": "SKY EYES", + "codeHub": "UTP", + "codeIataAirline": "I6", + "codeIcaoAirline": "SEQ", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Eyes", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2144, + "callsign": "INTER ILES", + "codeHub": "AJN", + "codeIataAirline": "I7", + "codeIcaoAirline": "IIA", + "codeIso2Country": "KM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter Iles Air", + "nameCountry": "Comoros", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2145, + "callsign": "PARAWAY", + "codeHub": "MAA", + "codeIataAirline": "I7*", + "codeIcaoAirline": "PMW", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Paramount Airways", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2146, + "callsign": "IZHAVIA", + "codeHub": "IJK", + "codeIataAirline": "I8", + "codeIcaoAirline": "IZA", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "25", + "nameAirline": "Izhavia Public Stock Company", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2147, + "callsign": "", + "codeHub": "ASP", + "codeIataAirline": "I8", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aboriginal Air Services", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2148, + "callsign": "", + "codeHub": "", + "codeIataAirline": "I8*", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aboriginal Air Services", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2149, + "callsign": "AIR ITALY", + "codeHub": "MXP", + "codeIataAirline": "I9", + "codeIcaoAirline": "AEY", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "67", + "nameAirline": "Air Italy S.p.A.", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2150, + "callsign": "INDIGO BLUE", + "codeHub": "MDW", + "codeIataAirline": "I9*", + "codeIcaoAirline": "IBU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Indigo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2151, + "callsign": "INDAIR", + "codeHub": "DEL", + "codeIataAirline": "IC", + "codeIcaoAirline": "IAC", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "58", + "nameAirline": "Indian Airlines", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2152, + "callsign": "IATA MEMBER", + "codeHub": "GRU", + "codeIataAirline": "ICA", + "codeIcaoAirline": "IATA", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAM Airlines", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2153, + "callsign": "", + "codeHub": "IOM", + "codeIataAirline": "ICA", + "codeIcaoAirline": "IATA", + "codeIso2Country": "IM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Manx2", + "nameCountry": "Isle of Man", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2154, + "callsign": "GERMAN ATLANTIC", + "codeHub": "", + "codeIataAirline": "ID", + "codeIcaoAirline": "ADH", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Deutsche Luftverkehrs", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2155, + "callsign": "AIRCARGO", + "codeHub": "", + "codeIataAirline": "ID", + "codeIcaoAirline": "FFL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intavia", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2156, + "callsign": "SKYLARK", + "codeHub": "ATL", + "codeIataAirline": "ID", + "codeIcaoAirline": "IDN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Independent Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2157, + "callsign": "INTERLINK", + "codeHub": "JNB", + "codeIataAirline": "ID", + "codeIcaoAirline": "ITK", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "431", + "nameAirline": "Interlink Airlines", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2158, + "callsign": "TRIANGLE", + "codeHub": "", + "codeIataAirline": "ID", + "codeIcaoAirline": "TRG", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Island Air", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2159, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ID", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airmax Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2160, + "callsign": "AIRCRAFT", + "codeHub": "", + "codeIataAirline": "ID", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Aircraft Deliveries, Inc.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2161, + "callsign": "NORMANDIE", + "codeHub": "", + "codeIataAirline": "ID*", + "codeIcaoAirline": "RNO", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Normandie Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2162, + "callsign": "IRAQ EXPRESS", + "codeHub": "BGW", + "codeIataAirline": "IF", + "codeIcaoAirline": "FBA", + "codeIso2Country": "IQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Baghdad Airlines", + "nameCountry": "Iraq", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2163, + "callsign": "", + "codeHub": "TSA", + "codeIataAirline": "IF", + "codeIcaoAirline": "GCA", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Great China Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2164, + "callsign": "INTERFLUG", + "codeHub": "SXF", + "codeIataAirline": "IF", + "codeIcaoAirline": "IFL", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interflug", + "nameCountry": "East Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2165, + "callsign": "PINTADERA", + "codeHub": "TFN", + "codeIataAirline": "IF", + "codeIcaoAirline": "ISW", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "769", + "nameAirline": "Islas Airways", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2166, + "callsign": "RIVIERA", + "codeHub": "RMI", + "codeIataAirline": "IF*", + "codeIcaoAirline": "IFS", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Italy First", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2167, + "callsign": "", + "codeHub": "", + "codeIataAirline": "IF*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "611", + "nameAirline": "Gulf & Caribbean Cargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2168, + "callsign": "FALCON", + "codeHub": "MMX", + "codeIataAirline": "IH", + "codeIcaoAirline": "FCN", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "759", + "nameAirline": "Falcon Air", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2169, + "callsign": "ALGESA", + "codeHub": "", + "codeIataAirline": "IH", + "codeIcaoAirline": "IHA", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Algesa", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2170, + "callsign": "", + "codeHub": "PWQ", + "codeIataAirline": "IH", + "codeIcaoAirline": "MZA", + "codeIso2Country": "KZ", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "Irtysh Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2171, + "callsign": "", + "codeHub": "", + "codeIataAirline": "IH", + "codeIcaoAirline": "MZA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sapsan Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2172, + "callsign": "MAGENTA", + "codeHub": "EMA", + "codeIataAirline": "IH", + "codeIcaoAirline": "UKI", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UK International Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2173, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "IH", + "codeIcaoAirline": "", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sapsan Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 2174, + "callsign": "ITAVIA", + "codeHub": "FCO", + "codeIataAirline": "IH", + "codeIcaoAirline": "", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Itavia", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2175, + "callsign": "", + "codeHub": "", + "codeIataAirline": "IH", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lynden Air Cargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2176, + "callsign": "GRANITE", + "codeHub": "ABZ", + "codeIataAirline": "II", + "codeIcaoAirline": "GNT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2177, + "callsign": "STOL", + "codeHub": "LCY", + "codeIataAirline": "II", + "codeIcaoAirline": "LCY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "London City Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2178, + "callsign": "AIRWAYS", + "codeHub": "", + "codeIataAirline": "II", + "codeIcaoAirline": "", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airways (India)", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2179, + "callsign": "SUNBEAM", + "codeHub": "", + "codeIataAirline": "II", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Evex Fluggsellschaft", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2180, + "callsign": "GREAT WALL", + "codeHub": "PVG", + "codeIataAirline": "IJ", + "codeIcaoAirline": "GWL", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "989", + "nameAirline": "Great Wall Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2181, + "callsign": "", + "codeHub": "ORY", + "codeIataAirline": "IJ", + "codeIcaoAirline": "LIB", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AirLib", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2182, + "callsign": "", + "codeHub": "NRT", + "codeIataAirline": "IJ", + "codeIcaoAirline": "", + "codeIso2Country": "JP", + "founding": 2012, + "iataPrefixAccounting": "", + "nameAirline": "Spring Japan", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2183, + "callsign": "TRADEWINDS", + "codeHub": "STN", + "codeIataAirline": "IK", + "codeIcaoAirline": "IKA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tradewinds Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2184, + "callsign": "KAMOZ", + "codeHub": "MPM", + "codeIataAirline": "IK", + "codeIcaoAirline": "KYY", + "codeIso2Country": "MZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kaya Airlines", + "nameCountry": "Mozambique", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2185, + "callsign": "", + "codeHub": "ANC", + "codeIataAirline": "IK", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alaska International Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2186, + "callsign": "", + "codeHub": "EKA", + "codeIataAirline": "IK", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Pacific (USA)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2187, + "callsign": "IMPROTEX", + "codeHub": "GYD", + "codeIataAirline": "IK*", + "codeIcaoAirline": "ITX", + "codeIso2Country": "AZ", + "founding": 0, + "iataPrefixAccounting": "166", + "nameAirline": "IMAIR Airline", + "nameCountry": "Azerbaijan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2188, + "callsign": "AIR ARCTIC", + "codeHub": "", + "codeIataAirline": "IL", + "codeIcaoAirline": "AEB", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arctic", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2189, + "callsign": "ISTANBUL", + "codeHub": "IST", + "codeIataAirline": "IL", + "codeIcaoAirline": "IST", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Istanbul Airlines", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2190, + "callsign": "LANK AIR", + "codeHub": "CMB", + "codeIataAirline": "IL", + "codeIcaoAirline": "LKN", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lankair", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2191, + "callsign": "", + "codeHub": "", + "codeIataAirline": "IL", + "codeIcaoAirline": "", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas Nacionales (LANSA)", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2192, + "callsign": "", + "codeHub": "", + "codeIataAirline": "IL", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intercontinental Airways (USA)", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2193, + "callsign": "AUSTASIA", + "codeHub": "", + "codeIataAirline": "IM", + "codeIcaoAirline": "AAU", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Australia Asia Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2194, + "callsign": "", + "codeHub": "BGI", + "codeIataAirline": "IM", + "codeIcaoAirline": "BCB", + "codeIso2Country": "BB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Carib Express", + "nameCountry": "Barbados", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2195, + "callsign": "", + "codeHub": "", + "codeIataAirline": "IM", + "codeIcaoAirline": "FLM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fleming International Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2196, + "callsign": "BOXHAULER", + "codeHub": "", + "codeIataAirline": "IM", + "codeIcaoAirline": "IAS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Spirit of America Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2197, + "callsign": "MINT AIRWAYS", + "codeHub": "MAD", + "codeIataAirline": "IM", + "codeIcaoAirline": "MIC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mint Airways", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2198, + "callsign": "MENAJET", + "codeHub": "BEY", + "codeIataAirline": "IM", + "codeIcaoAirline": "MNJ", + "codeIso2Country": "LB", + "founding": 2003, + "iataPrefixAccounting": "", + "nameAirline": "Menajet", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2199, + "callsign": "", + "codeHub": "", + "codeIataAirline": "IM", + "codeIcaoAirline": "", + "codeIso2Country": "AG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Carib Express", + "nameCountry": "Antigua and Barbuda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2200, + "callsign": "", + "codeHub": "", + "codeIataAirline": "IM", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Michelin Air Services", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2201, + "callsign": "", + "codeHub": "", + "codeIataAirline": "IM", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Invicta International Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2202, + "callsign": "ADIK", + "codeHub": "GUW", + "codeIataAirline": "IM*", + "codeIcaoAirline": "AMA", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "707", + "nameAirline": "ATMA", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2203, + "callsign": "FLYWEX", + "codeHub": "VBS", + "codeIataAirline": "IM*", + "codeIcaoAirline": "IAD", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Wex", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2204, + "callsign": "INTENSIVE", + "codeHub": "JNB", + "codeIataAirline": "IM*", + "codeIcaoAirline": "XRA", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intensive Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2205, + "callsign": "MAKAVIO", + "codeHub": "SKP", + "codeIataAirline": "IN", + "codeIcaoAirline": "MAK", + "codeIso2Country": "MK", + "founding": 0, + "iataPrefixAccounting": "367", + "nameAirline": "MAT-Macedonian Airlines", + "nameCountry": "Macedonia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2206, + "callsign": "SHAMROCK", + "codeHub": "", + "codeIataAirline": "IN", + "codeIcaoAirline": "", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerlinte Eireann", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2207, + "callsign": "INDO LINES", + "codeHub": "CGK", + "codeIataAirline": "IO", + "codeIcaoAirline": "IAA", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Indonesian Airlines", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2208, + "callsign": "", + "codeHub": "", + "codeIataAirline": "IO", + "codeIcaoAirline": "IDO", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Indochina Airlines", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2209, + "callsign": "", + "codeHub": "AUA", + "codeIataAirline": "IO", + "codeIcaoAirline": "ILP", + "codeIso2Country": "AW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ILPO Airlines Cargo", + "nameCountry": "Aruba", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2210, + "callsign": "TAT", + "codeHub": "", + "codeIataAirline": "IO", + "codeIcaoAirline": "TAD", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAT", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2211, + "callsign": "", + "codeHub": "", + "codeIataAirline": "IO", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Paris", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2212, + "callsign": "APSARA", + "codeHub": "REP", + "codeIataAirline": "IP", + "codeIcaoAirline": "AQQ", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Apsara International Air", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2213, + "callsign": "ASPRO", + "codeHub": "CWL", + "codeIataAirline": "IP", + "codeIcaoAirline": "IEA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter European Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2214, + "callsign": "INDIA PAPA", + "codeHub": "", + "codeIataAirline": "IP", + "codeIcaoAirline": "IPP", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Unifly", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2215, + "callsign": "IBERWORLD", + "codeHub": "PMI", + "codeIataAirline": "IP", + "codeIcaoAirline": "IWD", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "560", + "nameAirline": "Orbest Orizonia", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2216, + "callsign": "EDIL", + "codeHub": "GUW", + "codeIataAirline": "IP", + "codeIcaoAirline": "JOL", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "312", + "nameAirline": "Atyrau Aue Joly", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2217, + "callsign": "", + "codeHub": "", + "codeIataAirline": "IP", + "codeIcaoAirline": "", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Unifly Express", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2218, + "callsign": "INTERREGIONAL", + "codeHub": "", + "codeIataAirline": "IP", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interregional", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2219, + "callsign": "", + "codeHub": "", + "codeIataAirline": "IP", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Apsara International", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2220, + "callsign": "", + "codeHub": "", + "codeIataAirline": "IQ", + "codeIcaoAirline": "", + "codeIso2Country": "BB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Caribbean Airline", + "nameCountry": "Barbados", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2221, + "callsign": "IDS", + "codeHub": "", + "codeIataAirline": "IS", + "codeIcaoAirline": "IDS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IDS Aircraft Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2222, + "callsign": "ISLAND", + "codeHub": "ACK", + "codeIataAirline": "IS", + "codeIcaoAirline": "ISA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Island Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2223, + "callsign": "SPINNER", + "codeHub": "AMS", + "codeIataAirline": "IS", + "codeIcaoAirline": "PNX", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AIS Airlines", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2224, + "callsign": "", + "codeHub": "IST", + "codeIataAirline": "IS", + "codeIcaoAirline": "SWW", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunway Airlines", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2225, + "callsign": "INTERPAC", + "codeHub": "", + "codeIataAirline": "IS*", + "codeIcaoAirline": "IPC", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intercontinental Pacific Airways", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2226, + "callsign": "INTERSUN", + "codeHub": "", + "codeIataAirline": "IS*", + "codeIcaoAirline": "SWW", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunways", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2227, + "callsign": "IRTYSH", + "codeHub": "", + "codeIataAirline": "IT", + "codeIcaoAirline": "IRT", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Irtysh-Avia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2228, + "callsign": "AIR INTER", + "codeHub": "ORY", + "codeIataAirline": "IT", + "codeIcaoAirline": "ITF", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Inter Europe", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2229, + "callsign": "KINGFISHER", + "codeHub": "BOM", + "codeIataAirline": "IT", + "codeIcaoAirline": "KFR", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kingfisher Airlines", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2230, + "callsign": "SILKITALIA", + "codeHub": "MXP", + "codeIataAirline": "IU", + "codeIcaoAirline": "CSW", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SW Italia s.p.a.", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2231, + "callsign": "", + "codeHub": "", + "codeIataAirline": "IU", + "codeIcaoAirline": "MIS", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Strabing", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2232, + "callsign": "INTERSWEDE", + "codeHub": "", + "codeIataAirline": "IU", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interswede Aviation", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2233, + "callsign": "", + "codeHub": "", + "codeIataAirline": "IU*", + "codeIcaoAirline": "", + "codeIso2Country": "PG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hevi Lift", + "nameCountry": "Papua New Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2234, + "callsign": "", + "codeHub": "", + "codeIataAirline": "IU*", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ibis Air", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2235, + "callsign": "GHIBLI", + "codeHub": "CTA", + "codeIataAirline": "IV", + "codeIcaoAirline": "JET", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wind Jet", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2236, + "callsign": "MAIDEN", + "codeHub": "MLA", + "codeIataAirline": "IV", + "codeIcaoAirline": "SGO", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VVB Aviation Malta", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2237, + "callsign": "NICO", + "codeHub": "BRU", + "codeIataAirline": "IV*", + "codeIcaoAirline": "FVG", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Delsey Airlines", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2238, + "callsign": "FRENCH LINES", + "codeHub": "ORY", + "codeIataAirline": "IW", + "codeIcaoAirline": "AOM", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "646", + "nameAirline": "AOM French Airlines", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2239, + "callsign": "", + "codeHub": "CAK", + "codeIataAirline": "IW", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Best Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2240, + "callsign": "AIRBAHAMA", + "codeHub": "", + "codeIataAirline": "IW", + "codeIcaoAirline": "", + "codeIso2Country": "BS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Air Bahama", + "nameCountry": "Bahamas", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2241, + "callsign": "HELLAS CARGO", + "codeHub": "", + "codeIataAirline": "IW*", + "codeIcaoAirline": "OAN", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "271", + "nameAirline": "Aerospace One", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2242, + "callsign": "FLANDAIR", + "codeHub": "LIL", + "codeIataAirline": "IX", + "codeIcaoAirline": "FRS", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flandre Air", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2243, + "callsign": "", + "codeHub": "GLA", + "codeIataAirline": "IX", + "codeIcaoAirline": "GRE", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Greece Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2244, + "callsign": "INAIR", + "codeHub": "", + "codeIataAirline": "IX", + "codeIcaoAirline": "IAP", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Internacional de Aviacion", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2245, + "callsign": "", + "codeHub": "", + "codeIataAirline": "IX*", + "codeIcaoAirline": "", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Select Air", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2246, + "callsign": "KEN JET", + "codeHub": "NBO", + "codeIataAirline": "J0", + "codeIcaoAirline": "JLX", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "402", + "nameAirline": "Jet Link Express", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2247, + "callsign": "BISCAYNE", + "codeHub": "", + "codeIataAirline": "J1", + "codeIcaoAirline": "BSK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JetAmerica", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2248, + "callsign": "", + "codeHub": "BOS", + "codeIataAirline": "J1", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PrimAir (USA)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 2249, + "callsign": "", + "codeHub": "IND", + "codeIataAirline": "J1", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "528", + "nameAirline": "One Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 2250, + "callsign": "", + "codeHub": "PIE", + "codeIataAirline": "J1", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet America (2009)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2251, + "callsign": "", + "codeHub": "", + "codeIataAirline": "J1", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BusinessJet Class", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2252, + "callsign": "POLARIS", + "codeHub": "YSM", + "codeIataAirline": "J3", + "codeIcaoAirline": "PLR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "325", + "nameAirline": "Northwestern Air Lease Ltd.", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2253, + "callsign": "", + "codeHub": "VLC", + "codeIataAirline": "J4", + "codeIcaoAirline": "", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet For You", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2254, + "callsign": "", + "codeHub": "DXB", + "codeIataAirline": "J5", + "codeIcaoAirline": "JU&B", + "codeIso2Country": "SO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jubba Airways", + "nameCountry": "Somalia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2255, + "callsign": "AVIAPRIMA", + "codeHub": "", + "codeIataAirline": "J5", + "codeIcaoAirline": "PRL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sochi Airlines - AVIAPRIMA", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2256, + "callsign": "", + "codeHub": "JNU", + "codeIataAirline": "J5", + "codeIcaoAirline": "", + "codeIso2Country": "UM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alaska Seaplane Service", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2257, + "callsign": "", + "codeHub": "JNU", + "codeIataAirline": "J5", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alaska Seaplane Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2258, + "callsign": "", + "codeHub": "", + "codeIataAirline": "J5*", + "codeIcaoAirline": "", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DAC Aviation", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2259, + "callsign": "INTERAMERICANA", + "codeHub": "", + "codeIataAirline": "J6", + "codeIcaoAirline": "IIA", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interamericana Cargo Venezuela", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2260, + "callsign": "OPS-JET", + "codeHub": "DCG", + "codeIataAirline": "J6", + "codeIcaoAirline": "OPS", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Ops", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter,virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 2261, + "callsign": "", + "codeHub": "", + "codeIataAirline": "J6", + "codeIcaoAirline": "", + "codeIso2Country": "JM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airways International", + "nameCountry": "Jamaica", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2262, + "callsign": "VOE CRUISER", + "codeHub": "BFH", + "codeIataAirline": "J6*", + "codeIcaoAirline": "VCR", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cruiser Linhas A�reas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2263, + "callsign": "", + "codeHub": "", + "codeIataAirline": "J6*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Larry's Flying Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2264, + "callsign": "", + "codeHub": "LBV", + "codeIataAirline": "J7", + "codeIcaoAirline": "ABS", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Afrijet Business Services", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2265, + "callsign": "AVIACENTRE", + "codeHub": "BKA", + "codeIataAirline": "J7", + "codeIcaoAirline": "CVC", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centre-Avia Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2266, + "callsign": "", + "codeHub": "AMS", + "codeIataAirline": "J7", + "codeIcaoAirline": "DNM", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FlyDenim", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "division" + }, + { + "ageFleet": 0.0, + "airlineId": 2267, + "callsign": "CRITTER", + "codeHub": "ATL", + "codeIataAirline": "J7", + "codeIcaoAirline": "VJA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ValuJet Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2268, + "callsign": "", + "codeHub": "KRS", + "codeIataAirline": "J7", + "codeIcaoAirline": "", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FlyNonstop", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 2269, + "callsign": "GALAX", + "codeHub": "HND", + "codeIataAirline": "J7*", + "codeIcaoAirline": "GXY", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Galaxy Airlines", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2270, + "callsign": "BERJAYA", + "codeHub": "SZB", + "codeIataAirline": "J8", + "codeIcaoAirline": "BVT", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "801", + "nameAirline": "Berjaya Air Sdn. Bhd.", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2271, + "callsign": "GUINEE AIRLINES", + "codeHub": "", + "codeIataAirline": "J9", + "codeIcaoAirline": "GIF", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinee Airlines", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2272, + "callsign": "BOSNIA", + "codeHub": "SJJ", + "codeIataAirline": "JA", + "codeIcaoAirline": "BON", + "codeIso2Country": "BA", + "founding": 0, + "iataPrefixAccounting": "995", + "nameAirline": "B & H Airlines", + "nameCountry": "Bosnia and Herzegovina", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2273, + "callsign": "IRISH CLUB", + "codeHub": "", + "codeIataAirline": "JA", + "codeIcaoAirline": "CLS", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Club Air", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2274, + "callsign": "JETAIR", + "codeHub": "", + "codeIataAirline": "JA", + "codeIcaoAirline": "JAG", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetair", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2275, + "callsign": "", + "codeHub": "SVG", + "codeIataAirline": "JA", + "codeIcaoAirline": "NOS", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norways Airlines", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2276, + "callsign": "REGAIR", + "codeHub": "", + "codeIataAirline": "JA", + "codeIcaoAirline": "RGL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regionair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2277, + "callsign": "AIRSPAIN", + "codeHub": "MAD", + "codeIataAirline": "JA", + "codeIcaoAirline": "", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Spain", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2278, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JA", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Scimitar Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2279, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JB", + "codeIcaoAirline": "BCC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Caledonian Airways (Charter)", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2280, + "callsign": "HELIJET", + "codeHub": "YVR", + "codeIataAirline": "JB", + "codeIcaoAirline": "JBA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "613", + "nameAirline": "Helijet International", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2281, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JB", + "codeIcaoAirline": "", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronaves del Norte", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2282, + "callsign": "ALL SEASONS", + "codeHub": "", + "codeIataAirline": "JC", + "codeIcaoAirline": "ASG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "All Seasons Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2283, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JC", + "codeIcaoAirline": "JAC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Japan Air Commuter Co., Ltd.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2284, + "callsign": "JAMAIR", + "codeHub": "", + "codeIataAirline": "JC", + "codeIcaoAirline": "", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jamair", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2285, + "callsign": "TOADOMES", + "codeHub": "HND", + "codeIataAirline": "JD", + "codeIcaoAirline": "TDA", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "234", + "nameAirline": "TOA Domestic Airlines", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2286, + "callsign": "EUROJET", + "codeHub": "", + "codeIataAirline": "JE", + "codeIcaoAirline": "EUR", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurojet", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2287, + "callsign": "MANX", + "codeHub": "IOM", + "codeIataAirline": "JE", + "codeIcaoAirline": "MXE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "916", + "nameAirline": "Manx Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2288, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JE", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Charters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2289, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JE*", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jettainer", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2290, + "callsign": "JET FRET", + "codeHub": "", + "codeIataAirline": "JF", + "codeIcaoAirline": "JFT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Fret", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2291, + "callsign": "LAB", + "codeHub": "JNU", + "codeIataAirline": "JF", + "codeIcaoAirline": "LAB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "510", + "nameAirline": "L.A.B. Flying Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2292, + "callsign": "TREHAVEN", + "codeHub": "", + "codeIataAirline": "JF", + "codeIcaoAirline": "TJF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Creat Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2293, + "callsign": "JOHNSON SERVICE", + "codeHub": "", + "codeIataAirline": "JF", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Johnsons Flying Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2294, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JF", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Logistics", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2295, + "callsign": "AIR GREECE", + "codeHub": "HER", + "codeIataAirline": "JG", + "codeIcaoAirline": "AGJ", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Greece - Aerodromisis", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2296, + "callsign": "BURNTHILLS", + "codeHub": "", + "codeIataAirline": "JG", + "codeIcaoAirline": "BAV", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Burnthills Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2297, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JG", + "codeIcaoAirline": "LAS", + "codeIso2Country": "SC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ligne A�rienne Seychelles", + "nameCountry": "Seychelles", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2298, + "callsign": "SWEDAIR", + "codeHub": "BMA", + "codeIataAirline": "JG", + "codeIcaoAirline": "SWE", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swedair", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2299, + "callsign": "", + "codeHub": "DKR", + "codeIataAirline": "JG", + "codeIcaoAirline": "", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Teranga", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2300, + "callsign": "BIZJET", + "codeHub": "", + "codeIataAirline": "JG", + "codeIcaoAirline": "", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Jet Flight Center", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2301, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JG", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Fecteau Ltee", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2302, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JG*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airline Container Leasing", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2303, + "callsign": "", + "codeHub": "SSA", + "codeIataAirline": "JH", + "codeIcaoAirline": "FFX", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flex Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2304, + "callsign": "NORDESTE", + "codeHub": "SSA", + "codeIataAirline": "JH", + "codeIcaoAirline": "NES", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "264", + "nameAirline": "Nordeste-Linhas Aereas Regionais", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2305, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JH", + "codeIcaoAirline": "", + "codeIso2Country": "YU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan Adria", + "nameCountry": "Yugoslavia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2306, + "callsign": "HARLEQUIN", + "codeHub": "", + "codeIataAirline": "JH*", + "codeIcaoAirline": "HLQ", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Harlequin Air", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2307, + "callsign": "AQUAIR", + "codeHub": "", + "codeIataAirline": "JI", + "codeIcaoAirline": "AQU", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aquair", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2308, + "callsign": "JET EX", + "codeHub": "RDU", + "codeIataAirline": "JI", + "codeIcaoAirline": "JEX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "878", + "nameAirline": "Midway Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2309, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JI", + "codeIcaoAirline": "", + "codeIso2Country": "PR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "San Juan Aviation", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2310, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JI", + "codeIcaoAirline": "", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronaves del Este", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2311, + "callsign": "JADE CARGO", + "codeHub": "SZX", + "codeIataAirline": "JI*", + "codeIcaoAirline": "JAE", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "189", + "nameAirline": "Jade Cargo International", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2312, + "callsign": "CENTRAL", + "codeHub": "", + "codeIataAirline": "JJ*", + "codeIcaoAirline": "BLC", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brasil Central", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2313, + "callsign": "TONGA ROYAL", + "codeHub": "", + "codeIataAirline": "JK", + "codeIcaoAirline": "HRH", + "codeIso2Country": "TO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Friendly Islands Airways", + "nameCountry": "Tonga", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2314, + "callsign": "SUNWING", + "codeHub": "BCN", + "codeIataAirline": "JK", + "codeIcaoAirline": "SPP", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "680", + "nameAirline": "Spanair", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2315, + "callsign": "", + "codeHub": "LAS", + "codeIataAirline": "JK", + "codeIcaoAirline": "SWI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunworld International Airways (1982)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2316, + "callsign": "TAE", + "codeHub": "MAD", + "codeIataAirline": "JK", + "codeIcaoAirline": "TAE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAE - Trabajos A�reos y Enlaces", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2317, + "callsign": "JULIETT KILO", + "codeHub": "", + "codeIataAirline": "JK", + "codeIcaoAirline": "", + "codeIso2Country": "AG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Caribbean Air", + "nameCountry": "Antigua and Barbuda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2318, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JM", + "codeIcaoAirline": "", + "codeIso2Country": "JM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EC Xpress", + "nameCountry": "Jamaica", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2319, + "callsign": "SEAGULL", + "codeHub": "MXP", + "codeIataAirline": "JN", + "codeIcaoAirline": "NLV", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "New Livingston", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2320, + "callsign": "RICHAIR", + "codeHub": "MIA", + "codeIataAirline": "JN", + "codeIcaoAirline": "RIA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rich International Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2321, + "callsign": "TOBOL", + "codeHub": "KSN", + "codeIataAirline": "JN", + "codeIcaoAirline": "SAP", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia Jaynar", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2322, + "callsign": "SABRE", + "codeHub": "LGW", + "codeIataAirline": "JN", + "codeIcaoAirline": "SBE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sabre Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2323, + "callsign": "EXPO", + "codeHub": "LGW", + "codeIataAirline": "JN", + "codeIcaoAirline": "XLA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "812", + "nameAirline": "XL Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2324, + "callsign": "NURMINENAIR", + "codeHub": "", + "codeIataAirline": "JN", + "codeIcaoAirline": "", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "John Nurminen", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2325, + "callsign": "JOKER", + "codeHub": "", + "codeIataAirline": "JO", + "codeIcaoAirline": "DST", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S.A.T. Fluggesellschaft mbH", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2326, + "callsign": "JOKER", + "codeHub": "", + "codeIataAirline": "JO", + "codeIcaoAirline": "GFG", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Germania Fluggesellschaft", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2327, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JO", + "codeIcaoAirline": "JTG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Time", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2328, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JO", + "codeIcaoAirline": "", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronaves del Oeste", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2329, + "callsign": "JULIETT PAPA", + "codeHub": "", + "codeIataAirline": "JP", + "codeIcaoAirline": "IAA", + "codeIso2Country": "YU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inex Adria", + "nameCountry": "Yugoslavia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2330, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JP", + "codeIcaoAirline": "", + "codeIso2Country": "YU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Adria Aviopromet", + "nameCountry": "Yugoslavia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2331, + "callsign": "JAMAICA EXPRESS", + "codeHub": "KTP", + "codeIataAirline": "JQ", + "codeIcaoAirline": "JMX", + "codeIso2Country": "JM", + "founding": 0, + "iataPrefixAccounting": "100", + "nameAirline": "Air Jamaica Express", + "nameCountry": "Jamaica", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2332, + "callsign": "", + "codeHub": "KTP", + "codeIataAirline": "JQ", + "codeIcaoAirline": "", + "codeIso2Country": "JM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-Jamaican Airlines", + "nameCountry": "Jamaica", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2333, + "callsign": "JOY AIR", + "codeHub": "XIY", + "codeIataAirline": "JR", + "codeIcaoAirline": "JOY", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "929", + "nameAirline": "Joy Air", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2334, + "callsign": "AEROCALIFORNIA", + "codeHub": "LAP", + "codeIataAirline": "JR", + "codeIcaoAirline": "SER", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "78", + "nameAirline": "Aero California", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2335, + "callsign": "YUGAIR", + "codeHub": "BEG", + "codeIataAirline": "JR", + "codeIcaoAirline": "YRG", + "codeIso2Country": "YU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Yugoslavia", + "nameCountry": "Yugoslavia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2336, + "callsign": "JULIETT SIERRA", + "codeHub": "FNJ", + "codeIataAirline": "JS", + "codeIcaoAirline": "CSM", + "codeIso2Country": "KP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chosonmihang CAA of DPR of Korea", + "nameCountry": "North Korea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2337, + "callsign": "AIR KORYO", + "codeHub": "FNJ", + "codeIataAirline": "JS", + "codeIcaoAirline": "KOR", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "120", + "nameAirline": "Air Koryo", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2338, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JS", + "codeIcaoAirline": "", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronaves del Sur", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2339, + "callsign": "JARO INTERNATIONAL", + "codeHub": "BBU", + "codeIataAirline": "JT", + "codeIcaoAirline": "MDJ", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jaro International", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2340, + "callsign": "", + "codeHub": "BNE", + "codeIataAirline": "JT", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transair (Australia)", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2341, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JT", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transair", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2342, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JT", + "codeIcaoAirline": "", + "codeIso2Country": "JM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jamaica Air Services", + "nameCountry": "Jamaica", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2343, + "callsign": "", + "codeHub": "JUB", + "codeIataAirline": "JU", + "codeIcaoAirline": "", + "codeIso2Country": "SS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South Supreme Airlines", + "nameCountry": "South Sudan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2344, + "callsign": "BIG A", + "codeHub": "MIA", + "codeIataAirline": "JW", + "codeIcaoAirline": "APW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "404", + "nameAirline": "Arrow Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2345, + "callsign": "JAMAICA CARGO", + "codeHub": "", + "codeIataAirline": "JW", + "codeIcaoAirline": "JFE", + "codeIso2Country": "JM", + "founding": 0, + "iataPrefixAccounting": "751", + "nameAirline": "Jamaica Far East", + "nameCountry": "Jamaica", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2346, + "callsign": "TREKAIR", + "codeHub": "", + "codeIataAirline": "JW", + "codeIcaoAirline": "TKE", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trek Airways", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2347, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JW", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Air Travel", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2348, + "callsign": "TAIPAN", + "codeHub": "SIN", + "codeIataAirline": "JX", + "codeIcaoAirline": "JEC", + "codeIso2Country": "SG", + "founding": 0, + "iataPrefixAccounting": "693", + "nameAirline": "Jett8 Airlines Cargo", + "nameCountry": "Singapore", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2349, + "callsign": "", + "codeHub": "BLK", + "codeIataAirline": "JX", + "codeIcaoAirline": "JXT", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetstream Express", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2350, + "callsign": "", + "codeHub": "PIE", + "codeIataAirline": "JX", + "codeIcaoAirline": "SJI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Jet International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2351, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JX", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "704", + "nameAirline": "DAC Aviation (EC) Ltd.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2352, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JX*", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nice Helicopteres", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 2353, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JX*", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skybus", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2354, + "callsign": "ISLANDWAYS", + "codeHub": "PLS", + "codeIataAirline": "JY", + "codeIcaoAirline": "IWY", + "codeIso2Country": "TC", + "founding": 0, + "iataPrefixAccounting": "653", + "nameAirline": "interCaribbean Airways, Ltd.", + "nameCountry": "Turks and Caicos Islands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2355, + "callsign": "", + "codeHub": "JER", + "codeIataAirline": "JY", + "codeIcaoAirline": "JEA", + "codeIso2Country": "JE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jersey European Airways", + "nameCountry": "Jersey", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2356, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JY", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intra Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2357, + "callsign": "J-WAYS", + "codeHub": "NRT", + "codeIataAirline": "JZ", + "codeIcaoAirline": "JAZ", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "708", + "nameAirline": "JALWays", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2358, + "callsign": "JATAYU", + "codeHub": "BTH", + "codeIataAirline": "JZ", + "codeIcaoAirline": "JTY", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "New Jatayu Air", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2359, + "callsign": "SKY EXPRESS", + "codeHub": "ARN", + "codeIataAirline": "JZ", + "codeIcaoAirline": "SKX", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "752", + "nameAirline": "Avia Express Sweden", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2360, + "callsign": "ZASAIR", + "codeHub": "", + "codeIataAirline": "JZ", + "codeIcaoAirline": "ZAI", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zaire Aero Service", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2361, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JZ", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jatayu Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2362, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JZ", + "codeIcaoAirline": "", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronaves del Centro", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2363, + "callsign": "", + "codeHub": "", + "codeIataAirline": "JZ*", + "codeIcaoAirline": "", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Japan Air Charter", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2364, + "callsign": "", + "codeHub": "", + "codeIataAirline": "K1", + "codeIcaoAirline": "", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "109", + "nameAirline": "Topas Co. Ltd.", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2365, + "callsign": "EUROLOT", + "codeHub": "WAW", + "codeIataAirline": "K2", + "codeIcaoAirline": "ELO", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurolot", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2366, + "callsign": "SINBAD", + "codeHub": "WIL", + "codeIataAirline": "K3", + "codeIcaoAirline": "SAQ", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SAC (K) Limited", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2367, + "callsign": "", + "codeHub": "", + "codeIataAirline": "K3*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ketchikan Air Serivce", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2368, + "callsign": "", + "codeHub": "WIL", + "codeIataAirline": "K4", + "codeIcaoAirline": "GF5", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ALS", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2369, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "K4", + "codeIcaoAirline": "KZA", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kazakhstan Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2370, + "callsign": "", + "codeHub": "", + "codeIataAirline": "K4*", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kronflyg", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2371, + "callsign": "SASQUATCH", + "codeHub": "PDX", + "codeIataAirline": "K5", + "codeIcaoAirline": "SQH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "609", + "nameAirline": "SeaPort Airlines, Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2372, + "callsign": "WINGS ALASKA", + "codeHub": "JNU", + "codeIataAirline": "K5*", + "codeIcaoAirline": "WAK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wings Of Alaska", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2373, + "callsign": "BRAVO AIRCONGO", + "codeHub": "FIH", + "codeIataAirline": "K6", + "codeIcaoAirline": "BBV", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bravo Air Congo", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2374, + "callsign": "KHALIFA AIR", + "codeHub": "ALG", + "codeIataAirline": "K6", + "codeIcaoAirline": "KZW", + "codeIso2Country": "DZ", + "founding": 0, + "iataPrefixAccounting": "122", + "nameAirline": "Khalifa Airways", + "nameCountry": "Algeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2375, + "callsign": "", + "codeHub": "BAQ", + "codeIataAirline": "K7", + "codeIcaoAirline": "KRA", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arkas", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2376, + "callsign": "RED TAIL", + "codeHub": "ANU", + "codeIataAirline": "K7*", + "codeIcaoAirline": "DEL", + "codeIso2Country": "AG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Carib Aviation", + "nameCountry": "Antigua and Barbuda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2377, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "K7*", + "codeIcaoAirline": "LMY", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "346", + "nameAirline": "Air Almaty", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2378, + "callsign": "TEMPE", + "codeHub": "SOW", + "codeIataAirline": "K7*", + "codeIcaoAirline": "TMP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arizona Express Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2379, + "callsign": "TARONAVIA", + "codeHub": "UDYE", + "codeIataAirline": "K7*", + "codeIcaoAirline": "TRV", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taron-Avia", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2380, + "callsign": "", + "codeHub": "CUR", + "codeIataAirline": "K8", + "codeIcaoAirline": "ALM", + "codeIso2Country": "CW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DCA Dutch Caribbean Airlines", + "nameCountry": "Curacao", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2381, + "callsign": "", + "codeHub": "LUN", + "codeIataAirline": "K8", + "codeIcaoAirline": "", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zambia Skyways", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 2382, + "callsign": "DUTCH CARIBBEAN", + "codeHub": "", + "codeIataAirline": "K8*", + "codeIcaoAirline": "DCE", + "codeIso2Country": "AN", + "founding": 0, + "iataPrefixAccounting": "559", + "nameAirline": "Dutch Caribbean Airline", + "nameCountry": "Netherlands Antilles", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2383, + "callsign": "", + "codeHub": "", + "codeIataAirline": "K8*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "InterJet West", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2384, + "callsign": "", + "codeHub": "BKA", + "codeIataAirline": "K9", + "codeIcaoAirline": "KRI", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Krylo Aviakompania", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2385, + "callsign": "SKYWARD", + "codeHub": "", + "codeIataAirline": "K9", + "codeIcaoAirline": "SGK", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyward Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2386, + "callsign": "TONLESAP AIR", + "codeHub": "PNH", + "codeIataAirline": "K9", + "codeIcaoAirline": "TSP", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "443", + "nameAirline": "Tonlesap Airlines", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2387, + "callsign": "", + "codeHub": "", + "codeIataAirline": "K9*", + "codeIcaoAirline": "ITM", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Itapemirim Transportes Aereos", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2388, + "callsign": "KRILO", + "codeHub": "", + "codeIataAirline": "K9*", + "codeIcaoAirline": "KRI", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Krylo Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2389, + "callsign": "AIRBIZ", + "codeHub": "", + "codeIataAirline": "KA", + "codeIcaoAirline": "ABZ", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airbusiness", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2390, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KA", + "codeIcaoAirline": "", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kalinga Airlines", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2391, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KB", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Burnthills Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2392, + "callsign": "CADABO", + "codeHub": "", + "codeIataAirline": "KB", + "codeIcaoAirline": "", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cadabo Gestione Servizi Aeronautici", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2393, + "callsign": "KENCHARTER", + "codeHub": "", + "codeIataAirline": "KB", + "codeIcaoAirline": "", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kenya Aircharters", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2394, + "callsign": "KAYTAC", + "codeHub": "HLZ", + "codeIataAirline": "KC", + "codeIcaoAirline": "KIC", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kiwi Travel International Airlines", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2395, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KC", + "codeIcaoAirline": "", + "codeIso2Country": "CM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cameroons Air Transport", + "nameCountry": "Cameroon", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2396, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KC", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Atlantic Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2397, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KC", + "codeIcaoAirline": "", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cargoair New Zealand", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2398, + "callsign": "CARPATIAN", + "codeHub": "", + "codeIataAirline": "KC*", + "codeIcaoAirline": "CPP", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Carpathian Air Transport", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2399, + "callsign": "ENTERPRISE", + "codeHub": "", + "codeIataAirline": "KD", + "codeIcaoAirline": "AEN", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Entreprise", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2400, + "callsign": "BRITISLAND", + "codeHub": "LGW", + "codeIataAirline": "KD", + "codeIcaoAirline": "BIS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Island Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2401, + "callsign": "KENDELL", + "codeHub": "WGA", + "codeIataAirline": "KD", + "codeIcaoAirline": "KDA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "678", + "nameAirline": "Kendell Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2402, + "callsign": "ABALAIR", + "codeHub": "", + "codeIataAirline": "KD", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Abal Air", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2403, + "callsign": "KALININGRAD AIR", + "codeHub": "KGD", + "codeIataAirline": "KD*", + "codeIcaoAirline": "KNI", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "93", + "nameAirline": "KD Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2404, + "callsign": "BLUEFIN", + "codeHub": "HEL", + "codeIataAirline": "KF", + "codeIcaoAirline": "BLF", + "codeIso2Country": "AX", + "founding": 0, + "iataPrefixAccounting": "142", + "nameAirline": "Blue1", + "nameCountry": "Aland Islands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2405, + "callsign": "CONGOFRIGO", + "codeHub": "", + "codeIataAirline": "KF", + "codeIcaoAirline": "", + "codeIso2Country": "ZR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Congofrigo", + "nameCountry": "Zaire", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2406, + "callsign": "", + "codeHub": "BNS", + "codeIataAirline": "KG", + "codeIcaoAirline": "BNX", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LAI - Linea Aerea IAACA", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2407, + "callsign": "NACAR", + "codeHub": "PMI", + "codeIataAirline": "KG", + "codeIcaoAirline": "NCR", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canafrica Transportes A�reos", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2408, + "callsign": "ORION", + "codeHub": "EMA", + "codeIataAirline": "KG", + "codeIcaoAirline": "ORN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orion Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2409, + "callsign": "CARDINAL", + "codeHub": "", + "codeIataAirline": "KG", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cardinal Air Taxis", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2410, + "callsign": "AIR BARINAS", + "codeHub": "", + "codeIataAirline": "KG*", + "codeIcaoAirline": "BNX", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "102", + "nameAirline": "Linea Aerea I.A.A.C.A. (L.A.I.)", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2411, + "callsign": "ALOHA", + "codeHub": "HNL", + "codeIataAirline": "KH", + "codeIcaoAirline": "AAH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "327", + "nameAirline": "Aeko Kula, Inc. DBA Aloha Air Cargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2412, + "callsign": "", + "codeHub": "FRU", + "codeIataAirline": "KH", + "codeIcaoAirline": "KGZ", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kyrgyz Airways (2004)", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2413, + "callsign": "KILO HOTEL", + "codeHub": "", + "codeIataAirline": "KH", + "codeIcaoAirline": "KHH", + "codeIso2Country": "CK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cook Islands Airways", + "nameCountry": "Cook Islands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2414, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KH", + "codeIcaoAirline": "", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cook Island Airways", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2415, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KH", + "codeIcaoAirline": "", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helishuttle", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2416, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KH", + "codeIcaoAirline": "", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kyrgyz Airways", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2417, + "callsign": "CHARENTE", + "codeHub": "", + "codeIataAirline": "KI", + "codeIcaoAirline": "APB", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Atlantique / Air Publicit�", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2418, + "callsign": "CANADIAN REGIONAL", + "codeHub": "YYC", + "codeIataAirline": "KI", + "codeIcaoAirline": "CDR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canadian Regional Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2419, + "callsign": "ADAM SKY", + "codeHub": "CGK", + "codeIataAirline": "KI", + "codeIcaoAirline": "DHI", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Adam Air", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2420, + "callsign": "CONTACTAIR", + "codeHub": "STR", + "codeIataAirline": "KI", + "codeIcaoAirline": "KIS", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Contactair", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2421, + "callsign": "SIBERIAN SKY", + "codeHub": "KJA", + "codeIataAirline": "KI", + "codeIcaoAirline": "SSJ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Krasavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2422, + "callsign": "TIME AIR", + "codeHub": "YYC", + "codeIataAirline": "KI", + "codeIcaoAirline": "TAF", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Time Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2423, + "callsign": "TASA", + "codeHub": "", + "codeIataAirline": "KI", + "codeIcaoAirline": "TGE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trabajos A�reos del Sahara", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2424, + "callsign": "AIBEK AIRWAYS", + "codeHub": "FRU", + "codeIataAirline": "KJ", + "codeIcaoAirline": "AAZ", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "666", + "nameAirline": "Asian Air", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2425, + "callsign": "AIR INCHEON", + "codeHub": "ICN", + "codeIataAirline": "KJ", + "codeIcaoAirline": "AIH", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Incheon", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2426, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KJ", + "codeIcaoAirline": "JOA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Swift Aviation", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2427, + "callsign": "BEE MED", + "codeHub": "LHR", + "codeIataAirline": "KJ", + "codeIcaoAirline": "LAJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "436", + "nameAirline": "Bmed", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2428, + "callsign": "SULTAN", + "codeHub": "", + "codeIataAirline": "KJ", + "codeIcaoAirline": "SUT", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sultan Air", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2429, + "callsign": "CRESCENT", + "codeHub": "", + "codeIataAirline": "KJ", + "codeIcaoAirline": "", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Crescent Air Transport", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2430, + "callsign": "AERODIENST", + "codeHub": "", + "codeIataAirline": "KJ", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerodienst", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2431, + "callsign": "AIR STAR", + "codeHub": "", + "codeIataAirline": "KK", + "codeIcaoAirline": "ASC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Star", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2432, + "callsign": "TAM", + "codeHub": "", + "codeIataAirline": "KK", + "codeIcaoAirline": "TAM", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAM - Linhas Aerea", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2433, + "callsign": "", + "codeHub": "CAI", + "codeIataAirline": "KK", + "codeIcaoAirline": "", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arabia International", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2434, + "callsign": "TRANSMERIDAN", + "codeHub": "STN", + "codeIataAirline": "KK", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transmeridian Air Cargo", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2435, + "callsign": "ARABIA", + "codeHub": "", + "codeIataAirline": "KK", + "codeIcaoAirline": "", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arab International Aviation Company", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2436, + "callsign": "GUEST KEEN", + "codeHub": "", + "codeIataAirline": "KN", + "codeIcaoAirline": "GKN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GKN Group Services Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2437, + "callsign": "", + "codeHub": "SLC", + "codeIataAirline": "KN", + "codeIcaoAirline": "MSS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Morris Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2438, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KN", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maroomba Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2439, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KN*", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maroomba Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2440, + "callsign": "KILO OSCAR", + "codeHub": "", + "codeIataAirline": "KO", + "codeIcaoAirline": "AKO", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Colonia S.A. (Arco S.A.)", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2441, + "callsign": "CAPE", + "codeHub": "", + "codeIataAirline": "KP", + "codeIcaoAirline": "ACP", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cape", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2442, + "callsign": "", + "codeHub": "FJR", + "codeIataAirline": "KP", + "codeIcaoAirline": "ISN", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kang Pacific Airlines", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2443, + "callsign": "KIWI AIR", + "codeHub": "EWR", + "codeIataAirline": "KP", + "codeIcaoAirline": "KIA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "538", + "nameAirline": "Kiwi International Air Lines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2444, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KP*", + "codeIcaoAirline": "", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "385", + "nameAirline": "Asialink Cargo Express", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2445, + "callsign": "", + "codeHub": "NBO", + "codeIataAirline": "KQ", + "codeIcaoAirline": "", + "codeIso2Country": "KE", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "Jambojet", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2446, + "callsign": "EASTOK", + "codeHub": "FRU", + "codeIataAirline": "KR", + "codeIcaoAirline": "EAA", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "265", + "nameAirline": "Air Bishkek Aircompany dba Air Bishkek Ltd. Aircompany", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2447, + "callsign": "KARAIR", + "codeHub": "HEL", + "codeIataAirline": "KR", + "codeIcaoAirline": "KAR", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kar-Air", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2448, + "callsign": "ALIBLY", + "codeHub": "", + "codeIataAirline": "KR", + "codeIcaoAirline": "KRO", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aliblu Airways", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2449, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KR", + "codeIcaoAirline": "", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Company MDA", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2450, + "callsign": "AIR KITTYHAWWK", + "codeHub": "FWA", + "codeIataAirline": "KR*", + "codeIcaoAirline": "KHA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "798", + "nameAirline": "Kitty Hawk Aircargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2451, + "callsign": "CASAIR", + "codeHub": "", + "codeIataAirline": "KS", + "codeIcaoAirline": "CSL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Casair Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2452, + "callsign": "SATURN", + "codeHub": "OAK", + "codeIataAirline": "KS", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saturn Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2453, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KS", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Casair Aviation Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2454, + "callsign": "BIRGENAIR", + "codeHub": "IST", + "codeIataAirline": "KT", + "codeIcaoAirline": "BHY", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Birgenair", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2455, + "callsign": "BEETOURS", + "codeHub": "", + "codeIataAirline": "KT", + "codeIcaoAirline": "BKT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Airtours", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2456, + "callsign": "CALEDONIAN", + "codeHub": "LGW", + "codeIataAirline": "KT", + "codeIcaoAirline": "CKT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caledonian Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2457, + "callsign": "KAMPUCHEA", + "codeHub": "PNH", + "codeIataAirline": "KT", + "codeIcaoAirline": "KMP", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "837", + "nameAirline": "Kampuchea Airlines", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2458, + "callsign": "SIAVIA", + "codeHub": "LJU", + "codeIataAirline": "KT", + "codeIcaoAirline": "SVB", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SiAvia d.o.o.", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2459, + "callsign": "", + "codeHub": "CFE", + "codeIataAirline": "KT", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Kiss", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "restarting", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 2460, + "callsign": "BEATOURS", + "codeHub": "", + "codeIataAirline": "KT", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BEA Airtours", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2461, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KT*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Katmai Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2462, + "callsign": "KILO VICTOR", + "codeHub": "", + "codeIataAirline": "KV", + "codeIcaoAirline": "KVY", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CAI, Compagnia Aeronautica Italiana", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2463, + "callsign": "AIR MINVODY", + "codeHub": "MRV", + "codeIataAirline": "KV", + "codeIcaoAirline": "MVD", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kavminvodyavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2464, + "callsign": "TAJIK EXPRESS", + "codeHub": "DYU", + "codeIataAirline": "KV", + "codeIcaoAirline": "TXP", + "codeIso2Country": "TJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asian Express Airline (Tajikistan)", + "nameCountry": "Tajikistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2465, + "callsign": "MODERN", + "codeHub": "", + "codeIataAirline": "KV", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Modern Air Transport", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2466, + "callsign": "CARNIVAL AIR", + "codeHub": "FLL", + "codeIataAirline": "KW", + "codeIcaoAirline": "CAA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Carnival Air Lines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2467, + "callsign": "COLUMBIA", + "codeHub": "", + "codeIataAirline": "KW", + "codeIcaoAirline": "CLA", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Colombia", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2468, + "callsign": "SUNRAY", + "codeHub": "HRK", + "codeIataAirline": "KW", + "codeIcaoAirline": "KHK", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kharkiv Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2469, + "callsign": "WATANIYA", + "codeHub": "KWI", + "codeIataAirline": "KW", + "codeIcaoAirline": "KNA", + "codeIso2Country": "KW", + "founding": 0, + "iataPrefixAccounting": "100", + "nameAirline": "Kuwait National Airways", + "nameCountry": "Kuwait", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2470, + "callsign": "AEROKAS", + "codeHub": "", + "codeIataAirline": "KW", + "codeIcaoAirline": "KSK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kas Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2471, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KW", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan American World Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2472, + "callsign": "EQUATORIAL", + "codeHub": "TMS", + "codeIataAirline": "KY", + "codeIcaoAirline": "EQL", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "980", + "nameAirline": "Linhas Aereas de Air Sao Tome And Principe", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2473, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KY", + "codeIcaoAirline": "", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kasturi and Sons", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2474, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KY", + "codeIcaoAirline": "", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West Afica AirCargo", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2475, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KZ", + "codeIcaoAirline": "", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pomair", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2476, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KZ", + "codeIcaoAirline": "", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avair", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2477, + "callsign": "", + "codeHub": "", + "codeIataAirline": "KZ", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Europe Air", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2478, + "callsign": "", + "codeHub": "", + "codeIataAirline": "L1", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lufthansa Systems Group", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2479, + "callsign": "", + "codeHub": "", + "codeIataAirline": "L1", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "22", + "nameAirline": "Airlliance LLC", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2480, + "callsign": "", + "codeHub": "", + "codeIataAirline": "L1", + "codeIcaoAirline": "", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "E-Savtravel", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2481, + "callsign": "LOVEAIR", + "codeHub": "", + "codeIataAirline": "L2", + "codeIcaoAirline": "LOV", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Love Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2482, + "callsign": "LYNDEN", + "codeHub": "ANC", + "codeIataAirline": "L2", + "codeIcaoAirline": "LYC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "344", + "nameAirline": "Lynden Air Cargo, LLC", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2483, + "callsign": "", + "codeHub": "NUE", + "codeIataAirline": "L3", + "codeIcaoAirline": "LTO", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flynext", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2484, + "callsign": "BILLATRANSPORT", + "codeHub": "VIE", + "codeIataAirline": "L3", + "codeIcaoAirline": "LTO", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LTU Austria", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2485, + "callsign": "", + "codeHub": "SVX", + "codeIataAirline": "L3", + "codeIcaoAirline": "", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Region Avia Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2486, + "callsign": "", + "codeHub": "", + "codeIataAirline": "L3*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Ketchum", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2487, + "callsign": "", + "codeHub": "SIP", + "codeIataAirline": "L4", + "codeIcaoAirline": "ATG", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlant-SV Aircompany", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2488, + "callsign": "JET BELGIUM", + "codeHub": "", + "codeIataAirline": "L4", + "codeIcaoAirline": "BNJ", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Service Liege", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2489, + "callsign": "LEGACY AIR", + "codeHub": "DMK", + "codeIataAirline": "L4", + "codeIcaoAirline": "LGC", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Legacy Air", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2490, + "callsign": "AEREOTUY", + "codeHub": "CCS", + "codeIataAirline": "L4", + "codeIcaoAirline": "TUY", + "codeIso2Country": "VE", + "founding": 1982, + "iataPrefixAccounting": "445", + "nameAirline": "LTA", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2491, + "callsign": "", + "codeHub": "", + "codeIataAirline": "L4", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "American Capital Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 2492, + "callsign": "MAX-AVIATION", + "codeHub": "", + "codeIataAirline": "L4*", + "codeIcaoAirline": "MAX", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Max Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2493, + "callsign": "AIR MALDIVES", + "codeHub": "MLE", + "codeIataAirline": "L6", + "codeIcaoAirline": "AMI", + "codeIso2Country": "MV", + "founding": 0, + "iataPrefixAccounting": "900", + "nameAirline": "Air Maldives", + "nameCountry": "Maldives", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2494, + "callsign": "", + "codeHub": "", + "codeIataAirline": "L6", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Services & Support", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "supplier" + }, + { + "ageFleet": 0.0, + "airlineId": 2495, + "callsign": "LANCO", + "codeHub": "BOG", + "codeIataAirline": "L7", + "codeIcaoAirline": "LAE", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "985", + "nameAirline": "Linea Aerea Carguera de Colombia S. dba LATAM Cargo Colombia", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2496, + "callsign": "", + "codeHub": "VSG", + "codeIataAirline": "L7", + "codeIcaoAirline": "LHS", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lugansk Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2497, + "callsign": "", + "codeHub": "", + "codeIataAirline": "L7", + "codeIcaoAirline": "LNP", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linea Aerea SAPSA", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2498, + "callsign": "LAOAG AIR", + "codeHub": "", + "codeIataAirline": "L7", + "codeIcaoAirline": "LPN", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Laoag International Airlines", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2499, + "callsign": "SAPSA", + "codeHub": "", + "codeIataAirline": "L7*", + "codeIcaoAirline": "LNP", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linea Aerea SAPSA Chile", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2500, + "callsign": "LEISURE WORLD", + "codeHub": "INT", + "codeIataAirline": "L8", + "codeIcaoAirline": "LWD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Leisure Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2501, + "callsign": "LUXOR GULF", + "codeHub": "OXB", + "codeIataAirline": "L8", + "codeIcaoAirline": "LXG", + "codeIso2Country": "GW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Luxor", + "nameCountry": "Guinea-Bissau", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2502, + "callsign": "", + "codeHub": "", + "codeIataAirline": "L8", + "codeIcaoAirline": "NLB", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Novosibirsk Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2503, + "callsign": "", + "codeHub": "KWI", + "codeIataAirline": "L8", + "codeIcaoAirline": "", + "codeIso2Country": "KW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LoadAir Cargo", + "nameCountry": "Kuwait", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2504, + "callsign": "", + "codeHub": "", + "codeIataAirline": "L8", + "codeIcaoAirline": "", + "codeIso2Country": "KW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Air Cargo", + "nameCountry": "Kuwait", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2505, + "callsign": "HIGHLANDS", + "codeHub": "LML", + "codeIataAirline": "L8*", + "codeIcaoAirline": "LYB", + "codeIso2Country": "PG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lynden Air Cargo PNG", + "nameCountry": "Papua New Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2506, + "callsign": "", + "codeHub": "", + "codeIataAirline": "L8*", + "codeIcaoAirline": "", + "codeIso2Country": "GY", + "founding": 0, + "iataPrefixAccounting": "959", + "nameAirline": "Laparkan Airways", + "nameCountry": "Guyana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2507, + "callsign": "BELLEAIR EUROPE", + "codeHub": "AOI", + "codeIataAirline": "L9", + "codeIcaoAirline": "BAL", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Belle Air Europe", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2508, + "callsign": "AIR MALI", + "codeHub": "BKO", + "codeIataAirline": "L9", + "codeIcaoAirline": "MLI", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "109", + "nameAirline": "Air Mali", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2509, + "callsign": "TEAMLINE", + "codeHub": "", + "codeIataAirline": "L9", + "codeIcaoAirline": "TLW", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Teamline Air", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2510, + "callsign": "", + "codeHub": "", + "codeIataAirline": "L9", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bristow U.S. LLC", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2511, + "callsign": "AIRLOG", + "codeHub": "", + "codeIataAirline": "L9*", + "codeIcaoAirline": "ALG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Logistics", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2512, + "callsign": "BRISTOW GROUP", + "codeHub": "ARA", + "codeIataAirline": "L9*", + "codeIcaoAirline": "BTZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bristow US", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 2513, + "callsign": "", + "codeHub": "BGF", + "codeIataAirline": "LB", + "codeIcaoAirline": "LBA", + "codeIso2Country": "CF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lobaye Airways", + "nameCountry": "Central African Republic", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2514, + "callsign": "LECOSTA", + "codeHub": "VGA", + "codeIataAirline": "LB", + "codeIcaoAirline": "LEP", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Costa", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2515, + "callsign": "LLOYDAEREO", + "codeHub": "CBB", + "codeIataAirline": "LB", + "codeIcaoAirline": "LLB", + "codeIso2Country": "BO", + "founding": 0, + "iataPrefixAccounting": "51", + "nameAirline": "Lloyd Aereo Boliviano (LAB)", + "nameCountry": "Bolivia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2516, + "callsign": "LAC", + "codeHub": "BAQ", + "codeIataAirline": "LC", + "codeIcaoAirline": "LIC", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LAC Colombia - Lineas Aereas Del Caribe", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2517, + "callsign": "VELOG", + "codeHub": "GRU", + "codeIataAirline": "LC", + "codeIcaoAirline": "VLO", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "183", + "nameAirline": "Varig Log", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2518, + "callsign": "LEGENDARY", + "codeHub": "DAL", + "codeIataAirline": "LC*", + "codeIcaoAirline": "LGD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Legend Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2519, + "callsign": "", + "codeHub": "CCS", + "codeIataAirline": "LD", + "codeIcaoAirline": "TUY", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LTA - Linea Turistica Aerotuy", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2520, + "callsign": "LALENA", + "codeHub": "MLA", + "codeIataAirline": "LE", + "codeIcaoAirline": "LEF", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "E Fly", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2521, + "callsign": "", + "codeHub": "", + "codeIataAirline": "LE", + "codeIcaoAirline": "LHS", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2522, + "callsign": "", + "codeHub": "", + "codeIataAirline": "LE", + "codeIcaoAirline": "LHS", + "codeIso2Country": "GY", + "founding": 1983, + "iataPrefixAccounting": "", + "nameAirline": "Laparkan Airways", + "nameCountry": "Guyana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2523, + "callsign": "HOTEL YANKEE", + "codeHub": "", + "codeIataAirline": "LE", + "codeIcaoAirline": "LWA", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Liberian World Airlines", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2524, + "callsign": "", + "codeHub": "GEO", + "codeIataAirline": "LE", + "codeIcaoAirline": "", + "codeIso2Country": "GY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Laparkan Airlines", + "nameCountry": "Guyana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2525, + "callsign": "", + "codeHub": "", + "codeIataAirline": "LE", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lion Air Cargo Tanzania Limited", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2526, + "callsign": "", + "codeHub": "", + "codeIataAirline": "LE", + "codeIcaoAirline": "", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Lowveld", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2527, + "callsign": "", + "codeHub": "", + "codeIataAirline": "LE", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Laparkan Airways", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2528, + "callsign": "", + "codeHub": "", + "codeIataAirline": "LE*", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helgoland Airlines", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2529, + "callsign": "JETTRAIN", + "codeHub": "PHL", + "codeIataAirline": "LF", + "codeIcaoAirline": "JTN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jettrain Corporation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2530, + "callsign": "", + "codeHub": "DEL", + "codeIataAirline": "LF", + "codeIcaoAirline": "LCI", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hinduja Cargo Services", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2531, + "callsign": "SWEDLINE", + "codeHub": "BMA", + "codeIataAirline": "LF", + "codeIcaoAirline": "LIN", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linjeflyg", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2532, + "callsign": "NORDIC", + "codeHub": "ARN", + "codeIataAirline": "LF", + "codeIcaoAirline": "NDC", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FlyNordic", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2533, + "callsign": "VOLUNTEER", + "codeHub": "MQY", + "codeIataAirline": "LF", + "codeIcaoAirline": "VTE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "522", + "nameAirline": "Corporate Flight Management Inc", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,division" + }, + { + "ageFleet": 0.0, + "airlineId": 2534, + "callsign": "", + "codeHub": "HID", + "codeIataAirline": "LF", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Uzu Air", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2535, + "callsign": "LUFTHANSA INDIA", + "codeHub": "", + "codeIataAirline": "LF*", + "codeIcaoAirline": "LCI", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lufthansa Cargo", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2536, + "callsign": "SELAIR", + "codeHub": "FNA", + "codeIataAirline": "LJ", + "codeIcaoAirline": "SLA", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "690", + "nameAirline": "Sierra National Airlines", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2537, + "callsign": "SELAIR", + "codeHub": "", + "codeIataAirline": "LJ", + "codeIcaoAirline": "", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sierra Leone Airways", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2538, + "callsign": "", + "codeHub": "VKO", + "codeIataAirline": "LK", + "codeIcaoAirline": "CNE", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Continent-Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2539, + "callsign": "LAVIE", + "codeHub": "VTE", + "codeIataAirline": "LK", + "codeIcaoAirline": "LLL", + "codeIso2Country": "LA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lao Skyway", + "nameCountry": "Laos", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2540, + "callsign": "LUXOR", + "codeHub": "LIS", + "codeIataAirline": "LK", + "codeIcaoAirline": "LXR", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "40", + "nameAirline": "Air Luxor", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2541, + "callsign": "", + "codeHub": "", + "codeIataAirline": "LK", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lucas Air Transport", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2542, + "callsign": "ARAWAK", + "codeHub": "", + "codeIataAirline": "LK", + "codeIcaoAirline": "", + "codeIso2Country": "TT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arawak Airlines", + "nameCountry": "Trinidad and Tobago", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2543, + "callsign": "", + "codeHub": "CUN", + "codeIataAirline": "LL", + "codeIcaoAirline": "GRO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Allegro Air", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2544, + "callsign": "", + "codeHub": "KEF", + "codeIataAirline": "LL", + "codeIcaoAirline": "", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Loftleidir Icelandic (1944)", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2545, + "callsign": "", + "codeHub": "", + "codeIataAirline": "LL", + "codeIcaoAirline": "", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Loftleidir Icelandic", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2546, + "callsign": "LOFTLEIDIR", + "codeHub": "", + "codeIataAirline": "LL", + "codeIcaoAirline": "", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Loftleidir", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2547, + "callsign": "ALLEGRO", + "codeHub": "", + "codeIataAirline": "LL*", + "codeIcaoAirline": "GRO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "902", + "nameAirline": "Lineas Aereas Allegro", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2548, + "callsign": "ANTILLEAN", + "codeHub": "AUA", + "codeIataAirline": "LM", + "codeIcaoAirline": "ALM", + "codeIso2Country": "AN", + "founding": 0, + "iataPrefixAccounting": "119", + "nameAirline": "ALM", + "nameCountry": "Netherlands Antilles", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2549, + "callsign": "LIVINGSTON", + "codeHub": "MXP", + "codeIataAirline": "LM", + "codeIcaoAirline": "LVG", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Livingston", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2550, + "callsign": "", + "codeHub": "RML", + "codeIataAirline": "LN", + "codeIcaoAirline": "LEO", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lionair (Sri Lanka)", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2551, + "callsign": "", + "codeHub": "", + "codeIataAirline": "LP", + "codeIcaoAirline": "HEA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "The Hawaii Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2552, + "callsign": "LATUR", + "codeHub": "", + "codeIataAirline": "LP", + "codeIcaoAirline": "LPT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "La Tur Airlines", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2553, + "callsign": "", + "codeHub": "", + "codeIataAirline": "LP", + "codeIcaoAirline": "PTG", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linea Aerea Del Sur", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2554, + "callsign": "", + "codeHub": "MEX", + "codeIataAirline": "LP", + "codeIcaoAirline": "", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "La Tur", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2555, + "callsign": "", + "codeHub": "", + "codeIataAirline": "LP", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Alpes", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2556, + "callsign": "AIRPAC", + "codeHub": "BFI", + "codeIataAirline": "LQ", + "codeIcaoAirline": "APC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airpac Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2557, + "callsign": "LAT", + "codeHub": "", + "codeIataAirline": "LQ", + "codeIcaoAirline": "LAQ", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lebanese Air Transport", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2558, + "callsign": "", + "codeHub": "KMI", + "codeIataAirline": "LQ", + "codeIcaoAirline": "SNJ", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SNA - Skynet Asia Airways", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2559, + "callsign": "", + "codeHub": "HND", + "codeIataAirline": "LQ", + "codeIcaoAirline": "", + "codeIso2Country": "JP", + "founding": 2002, + "iataPrefixAccounting": "", + "nameAirline": "Solaseed Air", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2560, + "callsign": "", + "codeHub": "SSG", + "codeIataAirline": "LQ", + "codeIcaoAirline": "", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Guinea", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2561, + "callsign": "", + "codeHub": "", + "codeIataAirline": "LQ*", + "codeIcaoAirline": "AST", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Astana", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2562, + "callsign": "", + "codeHub": "", + "codeIataAirline": "LQ*", + "codeIcaoAirline": "", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Guinea Cargo", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2563, + "callsign": "LACSA", + "codeHub": "SJO", + "codeIataAirline": "LR", + "codeIcaoAirline": "LRC", + "codeIso2Country": "CR", + "founding": 0, + "iataPrefixAccounting": "133", + "nameAirline": "LACSA", + "nameCountry": "Costa Rica", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2564, + "callsign": "", + "codeHub": "", + "codeIataAirline": "LS", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlas Air Express", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2565, + "callsign": "LITUCANIA", + "codeHub": "VNO", + "codeIataAirline": "LT", + "codeIcaoAirline": "LTU", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "266", + "nameAirline": "Air Lituanica", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2566, + "callsign": "MIRACOLO", + "codeHub": "MXP", + "codeIataAirline": "LU", + "codeIcaoAirline": "LIT", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lufthansa Italia", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2567, + "callsign": "LTS", + "codeHub": "MUC", + "codeIataAirline": "LU", + "codeIcaoAirline": "LTS", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LTU S�d", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2568, + "callsign": "LANEX", + "codeHub": "SCL", + "codeIataAirline": "LU", + "codeIcaoAirline": "LXP", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "972", + "nameAirline": "Transporte Aereo S.A. dba LATAM Airlines Chile", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2569, + "callsign": "SAETA", + "codeHub": "", + "codeIataAirline": "LU", + "codeIcaoAirline": "", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sociedad Ecuatoriana de Transportes Aereos", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2570, + "callsign": "AEROPOSTAL", + "codeHub": "", + "codeIataAirline": "LV", + "codeIcaoAirline": "ALV", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropostal de Venezuela", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2571, + "callsign": "", + "codeHub": "CCS", + "codeIataAirline": "LV", + "codeIcaoAirline": "LAV", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropostal - Lineas Aeropostal Venezolana", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2572, + "callsign": "ALBANIAN", + "codeHub": "TIA", + "codeIataAirline": "LV", + "codeIcaoAirline": "LBC", + "codeIso2Country": "AL", + "founding": 0, + "iataPrefixAccounting": "639", + "nameAirline": "Albanian Airlines", + "nameCountry": "Albania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2573, + "callsign": "AIR NEVADA", + "codeHub": "OGG", + "codeIataAirline": "LW", + "codeIcaoAirline": "ANV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "568", + "nameAirline": "Pacific Wings", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2574, + "callsign": "", + "codeHub": "", + "codeIataAirline": "LW", + "codeIcaoAirline": "NMI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Wings", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2575, + "callsign": "LLOYD", + "codeHub": "", + "codeIataAirline": "LW", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lloyd International Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2576, + "callsign": "LOS ANGELES", + "codeHub": "", + "codeIataAirline": "LX", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Los Angeles Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2577, + "callsign": "BALKAN", + "codeHub": "SOF", + "codeIataAirline": "LZ", + "codeIcaoAirline": "LAZ", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "196", + "nameAirline": "Balkan - Bulgarian Airlines", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2578, + "callsign": "ALBAN-BELLE", + "codeHub": "TIA", + "codeIataAirline": "LZ", + "codeIcaoAirline": "LBY", + "codeIso2Country": "AL", + "founding": 0, + "iataPrefixAccounting": "196", + "nameAirline": "Belle Air", + "nameCountry": "Albania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2579, + "callsign": "", + "codeHub": "", + "codeIataAirline": "LZ", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swiss Global Air Lines AG", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2580, + "callsign": "", + "codeHub": "DEL", + "codeIataAirline": "M1", + "codeIcaoAirline": "", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Mantra", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2581, + "callsign": "", + "codeHub": "", + "codeIataAirline": "M1", + "codeIcaoAirline": "", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Reps", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2582, + "callsign": "", + "codeHub": "", + "codeIataAirline": "M2", + "codeIcaoAirline": "MDO", + "codeIso2Country": "MK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Macedonia Air Services", + "nameCountry": "Macedonia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2583, + "callsign": "", + "codeHub": "", + "codeIataAirline": "M2", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MHS Aviation GmbH", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2584, + "callsign": "MILLON EXPRESS", + "codeHub": "", + "codeIataAirline": "M2*", + "codeIcaoAirline": "MXS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Millon Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2585, + "callsign": "", + "codeHub": "", + "codeIataAirline": "M2*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mario's Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2586, + "callsign": "NORTH FLYING", + "codeHub": "AAL", + "codeIataAirline": "M3*", + "codeIcaoAirline": "NFA", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Flying", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2587, + "callsign": "NORIS", + "codeHub": "", + "codeIataAirline": "M3*", + "codeIcaoAirline": "NRX", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Filder Air Service Airlines", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2588, + "callsign": "AIR SKOPJE", + "codeHub": "", + "codeIataAirline": "M3*", + "codeIcaoAirline": "SPJ", + "codeIso2Country": "MK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Service", + "nameCountry": "Macedonia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2589, + "callsign": "AVIOIMPEX", + "codeHub": "SKP", + "codeIataAirline": "M4", + "codeIcaoAirline": "AXX", + "codeIso2Country": "MK", + "founding": 0, + "iataPrefixAccounting": "743", + "nameAirline": "Interimpex - Avioimpex", + "nameCountry": "Macedonia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2590, + "callsign": "", + "codeHub": "MEX", + "codeIataAirline": "M4*", + "codeIcaoAirline": "PMO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nova Air", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2591, + "callsign": "KENMORE", + "codeHub": "BFI", + "codeIataAirline": "M5", + "codeIcaoAirline": "KEN", + "codeIso2Country": "US", + "founding": 1946, + "iataPrefixAccounting": "763", + "nameAirline": "Kenmore Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2592, + "callsign": "", + "codeHub": "PAP", + "codeIataAirline": "M7", + "codeIcaoAirline": "TBG", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tropical Airways d'Haiti", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2593, + "callsign": "", + "codeHub": "", + "codeIataAirline": "M7*", + "codeIcaoAirline": "TBG", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tropical Airways D'Haiti", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2594, + "callsign": "MIZAR", + "codeHub": "TPS", + "codeIataAirline": "M8", + "codeIcaoAirline": "MDS", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Med Airlines", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2595, + "callsign": "MEKONG AIRLINES", + "codeHub": "PNH", + "codeIataAirline": "M8", + "codeIcaoAirline": "MKN", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mekong Airlines", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2596, + "callsign": "", + "codeHub": "", + "codeIataAirline": "M8", + "codeIcaoAirline": "MSC", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Moscow Airways", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2597, + "callsign": "MIKE DRAVO", + "codeHub": "", + "codeIataAirline": "M8", + "codeIcaoAirline": "", + "codeIso2Country": "MV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maldives International Airlines", + "nameCountry": "Maldives", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2598, + "callsign": "", + "codeHub": "", + "codeIataAirline": "M8", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Magnum. Air, Inc dba Skyjet", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2599, + "callsign": "", + "codeHub": "", + "codeIataAirline": "M8*", + "codeIcaoAirline": "", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airmax", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2600, + "callsign": "MOTOR SICH", + "codeHub": "OZH", + "codeIataAirline": "M9", + "codeIcaoAirline": "MSI", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "11", + "nameAirline": "Motor-Sich JSC", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2601, + "callsign": "MALEV", + "codeHub": "BUD", + "codeIataAirline": "MA", + "codeIcaoAirline": "MAH", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "182", + "nameAirline": "MALEV", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2602, + "callsign": "EXPRESS", + "codeHub": "", + "codeIataAirline": "MB", + "codeIcaoAirline": "FDE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Federal Express Corporation (Fedex)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2603, + "callsign": "MALAYSIA", + "codeHub": "", + "codeIataAirline": "MB", + "codeIcaoAirline": "", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Malasyia Air Charter Company Ltd.", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2604, + "callsign": "CANADIAN EXECAIRE", + "codeHub": "YUL", + "codeIataAirline": "MB*", + "codeIcaoAirline": "EXA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Execaire", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 2605, + "callsign": "MUASE AIR", + "codeHub": "", + "codeIataAirline": "MC", + "codeIcaoAirline": "MCA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Muse Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2606, + "callsign": "", + "codeHub": "ATH", + "codeIataAirline": "MC", + "codeIcaoAirline": "MCS", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Macedonian Airlines (1992)", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2607, + "callsign": "REACH", + "codeHub": "", + "codeIataAirline": "MC", + "codeIcaoAirline": "RCH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Mobility Command", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2608, + "callsign": "TRANSTAR", + "codeHub": "HOU", + "codeIataAirline": "MC", + "codeIcaoAirline": "TST", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transtar Airliner", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2609, + "callsign": "", + "codeHub": "LUN", + "codeIataAirline": "MC", + "codeIcaoAirline": "", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mahogany Air", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2610, + "callsign": "FIRST MYANMAR", + "codeHub": "RGN", + "codeIataAirline": "MD", + "codeIcaoAirline": "FMI", + "codeIso2Country": "MM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FIM Air", + "nameCountry": "Myanmar", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2611, + "callsign": "MAMAIR", + "codeHub": "", + "codeIataAirline": "MF", + "codeIcaoAirline": "MMM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MAMair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2612, + "callsign": "", + "codeHub": "ADL", + "codeIataAirline": "MF", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lloyd Aviation Jet Charter", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 2613, + "callsign": "MARSHALL", + "codeHub": "", + "codeIataAirline": "MF", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Marshall's Flying Services Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2614, + "callsign": "CHAMPION AIR", + "codeHub": "MSP", + "codeIataAirline": "MG", + "codeIcaoAirline": "CCP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Champion Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2615, + "callsign": "GRAND AIR", + "codeHub": "", + "codeIataAirline": "MG", + "codeIcaoAirline": "MGM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MGM Grand Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2616, + "callsign": "MIDEX CARGO", + "codeHub": "SHJ", + "codeIataAirline": "MG", + "codeIcaoAirline": "MIX", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "791", + "nameAirline": "Midex Airlines", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2617, + "callsign": "MIKE GOLF", + "codeHub": "", + "codeIataAirline": "MG", + "codeIcaoAirline": "MOF", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Moaf Airways", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2618, + "callsign": "", + "codeHub": "TLV", + "codeIataAirline": "MG", + "codeIcaoAirline": "", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MAOF airlines", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2619, + "callsign": "", + "codeHub": "", + "codeIataAirline": "MG", + "codeIcaoAirline": "", + "codeIso2Country": "TN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mediterranean Air Service", + "nameCountry": "Tunisia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2620, + "callsign": "", + "codeHub": "", + "codeIataAirline": "MG", + "codeIcaoAirline": "", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Malta Airlines", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2621, + "callsign": "MIAMI AIR", + "codeHub": "MIA", + "codeIataAirline": "MG*", + "codeIcaoAirline": "MGD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "424", + "nameAirline": "Miami Air Lease", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2622, + "callsign": "", + "codeHub": "SIN", + "codeIataAirline": "MI", + "codeIcaoAirline": "SQA", + "codeIso2Country": "SG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tradewinds Airlines (Singapore)", + "nameCountry": "Singapore", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2623, + "callsign": "MACKEY", + "codeHub": "", + "codeIataAirline": "MI", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mackey International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2624, + "callsign": "LAPA", + "codeHub": "AEP", + "codeIataAirline": "MJ", + "codeIcaoAirline": "LPR", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "69", + "nameAirline": "LAPA", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2625, + "callsign": "", + "codeHub": "", + "codeIataAirline": "MJ", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Manchester Airport Agencies", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2626, + "callsign": "JONAH", + "codeHub": "", + "codeIataAirline": "MJ*", + "codeIcaoAirline": "JNH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "M & N Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2627, + "callsign": "ACORISA", + "codeHub": "SJO", + "codeIataAirline": "ML", + "codeIcaoAirline": "AEK", + "codeIso2Country": "CR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Costa Rica", + "nameCountry": "Costa Rica", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2628, + "callsign": "ANGLO", + "codeHub": "MSE", + "codeIataAirline": "ML", + "codeIcaoAirline": "ANC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Anglo Cargo Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2629, + "callsign": "MEDITERRANEE", + "codeHub": "LDE", + "codeIataAirline": "ML", + "codeIcaoAirline": "BIE", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "853", + "nameAirline": "Air Mediterranee", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2630, + "callsign": "MIDWAY", + "codeHub": "MDW", + "codeIataAirline": "ML", + "codeIcaoAirline": "MID", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midway Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2631, + "callsign": "MALAYSIAN", + "codeHub": "", + "codeIataAirline": "ML", + "codeIcaoAirline": "MSA", + "codeIso2Country": "MU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Malaysia-Singapore Airlines", + "nameCountry": "Mauritius", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2632, + "callsign": "", + "codeHub": "SIN", + "codeIataAirline": "ML", + "codeIcaoAirline": "", + "codeIso2Country": "SG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MSA - Malaysia-Singapore Airlines", + "nameCountry": "Singapore", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2633, + "callsign": "EMESSAYE (MAS)", + "codeHub": "", + "codeIataAirline": "ML", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Malaysian-Singapore Airlines", + "nameCountry": "Malaysia / Singapore", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2634, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ML", + "codeIcaoAirline": "", + "codeIso2Country": "GU", + "founding": 0, + "iataPrefixAccounting": "939", + "nameAirline": "Air Micronesia", + "nameCountry": "Guam", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2635, + "callsign": "TRANATTICO", + "codeHub": "", + "codeIataAirline": "ML*", + "codeIcaoAirline": "ETC", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "African Transport Trading And Investment Co. (ATTICO)", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2636, + "callsign": "OLAVIA", + "codeHub": "ATH", + "codeIataAirline": "ML*", + "codeIcaoAirline": "OLY", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Olympic Aviation", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2637, + "callsign": "NATIONAL", + "codeHub": "", + "codeIataAirline": "MO", + "codeIcaoAirline": "NAA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airmore Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2638, + "callsign": "", + "codeHub": "KUCA", + "codeIataAirline": "MO", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mohawk Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2639, + "callsign": "MOHAWK", + "codeHub": "", + "codeIataAirline": "MO", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mohawk Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2640, + "callsign": "SULTAN", + "codeHub": "", + "codeIataAirline": "MO*", + "codeIcaoAirline": "AUH", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Abu Dhabi Amiri Flight", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2641, + "callsign": "COMOS LANKA", + "codeHub": "CMB", + "codeIataAirline": "MO*", + "codeIcaoAirline": "CMK", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cosmos Aviation Services", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2642, + "callsign": "", + "codeHub": "", + "codeIataAirline": "MP", + "codeIcaoAirline": "", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Martin's Aircharter Company M.A.C.", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2643, + "callsign": "MALDIVESAIR", + "codeHub": "", + "codeIataAirline": "MQ", + "codeIcaoAirline": "", + "codeIso2Country": "MV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maldives Airways", + "nameCountry": "Maldives", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2644, + "callsign": "AIR SAM", + "codeHub": "", + "codeIataAirline": "MQ", + "codeIcaoAirline": "", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Societa Aerea Mediterranea (SAM)", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2645, + "callsign": "MIKE ROMEO", + "codeHub": "NKC", + "codeIataAirline": "MR", + "codeIcaoAirline": "MRT", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "174", + "nameAirline": "Air Mauritanie", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2646, + "callsign": "", + "codeHub": "", + "codeIataAirline": "MS", + "codeIcaoAirline": "", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United Arab Airlines (UAA)", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2647, + "callsign": "", + "codeHub": "", + "codeIataAirline": "MT", + "codeIcaoAirline": "TMD", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transmed Airlines", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2648, + "callsign": "", + "codeHub": "FBU", + "codeIataAirline": "MT", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mey-Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2649, + "callsign": "MARITIME", + "codeHub": "", + "codeIataAirline": "MT", + "codeIcaoAirline": "", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mey-Air", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2650, + "callsign": "COLOURS", + "codeHub": "MAN", + "codeIataAirline": "MT*", + "codeIcaoAirline": "FCL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flying Colours Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2651, + "callsign": "JAYEMMSEE", + "codeHub": "MAN", + "codeIataAirline": "MT*", + "codeIcaoAirline": "JMC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JMC Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2652, + "callsign": "MISAIR", + "codeHub": "", + "codeIataAirline": "MU", + "codeIcaoAirline": "", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Misr Air", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2653, + "callsign": "", + "codeHub": "MUC", + "codeIataAirline": "MUC", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 1966, + "iataPrefixAccounting": "", + "nameAirline": "Transavia", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2654, + "callsign": "AIRWA", + "codeHub": "PER", + "codeIataAirline": "MV", + "codeIcaoAirline": "AWA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlines of Western Australia", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2655, + "callsign": "", + "codeHub": "RNO", + "codeIataAirline": "MV", + "codeIcaoAirline": "GRA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Great American Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2656, + "callsign": "", + "codeHub": "MRU", + "codeIataAirline": "MV", + "codeIcaoAirline": "IBL", + "codeIso2Country": "MU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Catovair", + "nameCountry": "Mauritius", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2657, + "callsign": "ALOUETTE", + "codeHub": "YUL", + "codeIataAirline": "MV", + "codeIcaoAirline": "MRV", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Minerve Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2658, + "callsign": "", + "codeHub": "EVN", + "codeIataAirline": "MV", + "codeIcaoAirline": "RML", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Armenian International Airways", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2659, + "callsign": "", + "codeHub": "LGW", + "codeIataAirline": "MV", + "codeIcaoAirline": "", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Leisure International Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2660, + "callsign": "", + "codeHub": "", + "codeIataAirline": "MV", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MacRobertson Miller Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2661, + "callsign": "", + "codeHub": "", + "codeIataAirline": "MV", + "codeIcaoAirline": "", + "codeIso2Country": "MU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Mascareignes", + "nameCountry": "Mauritius", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2662, + "callsign": "MANAS AIR", + "codeHub": "", + "codeIataAirline": "MV*", + "codeIcaoAirline": "KGM", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Manas Air", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2663, + "callsign": "LEISURE", + "codeHub": "", + "codeIataAirline": "MV*", + "codeIcaoAirline": "LEI", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Leisure International Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2664, + "callsign": "LEISURE", + "codeHub": "", + "codeIataAirline": "MV*", + "codeIcaoAirline": "UKL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air UK Leisure", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2665, + "callsign": "CTC", + "codeHub": "", + "codeIataAirline": "MW", + "codeIcaoAirline": "CTC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "C T C Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2666, + "callsign": "MAHALO", + "codeHub": "KOA", + "codeIataAirline": "MW", + "codeIcaoAirline": "MUL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "415", + "nameAirline": "Mokulele Flight Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2667, + "callsign": "", + "codeHub": "", + "codeIataAirline": "MW", + "codeIcaoAirline": "", + "codeIso2Country": "BZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maya Airways", + "nameCountry": "Belize", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2668, + "callsign": "MEXICANA", + "codeHub": "MEX", + "codeIataAirline": "MX", + "codeIcaoAirline": "MXA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "132", + "nameAirline": "Mexicana", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2669, + "callsign": "", + "codeHub": "", + "codeIataAirline": "MY", + "codeIcaoAirline": "EUJ", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euroscot Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2670, + "callsign": "MAX-JET", + "codeHub": "IAD", + "codeIataAirline": "MY", + "codeIcaoAirline": "MXJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "386", + "nameAirline": "MAXjet Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2671, + "callsign": "MALI", + "codeHub": "", + "codeIataAirline": "MY", + "codeIcaoAirline": "", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Mali", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2672, + "callsign": "SCOTAIR", + "codeHub": "", + "codeIataAirline": "MY*", + "codeIcaoAirline": "EUJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Happyjet", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2673, + "callsign": "", + "codeHub": "CAI", + "codeIataAirline": "MY*", + "codeIcaoAirline": "MWA", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midwest Airlines (Egypt)", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2674, + "callsign": "AMAKUSA AIR", + "codeHub": "KMJ", + "codeIataAirline": "MZ", + "codeIcaoAirline": "AHX", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amakusa Airlines Co.,Ltd", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2675, + "callsign": "SAEREO", + "codeHub": "UIO", + "codeIataAirline": "MZ", + "codeIcaoAirline": "SRO", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "532", + "nameAirline": "Servicios Aereos Ejecutivos Saereo", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2676, + "callsign": "", + "codeHub": "", + "codeIataAirline": "N1", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nextres AB", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2677, + "callsign": "DAGAL", + "codeHub": "MCX", + "codeIataAirline": "N2", + "codeIcaoAirline": "DAG", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "394", + "nameAirline": "Daghestan Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2678, + "callsign": "LINEAINT", + "codeHub": "CVJ", + "codeIataAirline": "N2", + "codeIcaoAirline": "LNT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Internacionales", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2679, + "callsign": "TANGO LIMA", + "codeHub": "BEY", + "codeIataAirline": "N2", + "codeIcaoAirline": "TMA", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "673", + "nameAirline": "Trans Mediterranean Airways", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2680, + "callsign": "", + "codeHub": "", + "codeIataAirline": "N2", + "codeIcaoAirline": "TMA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "270", + "nameAirline": "TMA Cargo", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2681, + "callsign": "", + "codeHub": "", + "codeIataAirline": "N3", + "codeIcaoAirline": "ANR", + "codeIso2Country": "HR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Anic Airways", + "nameCountry": "Croatia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2682, + "callsign": "AIRMAS", + "codeHub": "JBQ", + "codeIataAirline": "N3", + "codeIcaoAirline": "MAF", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "877", + "nameAirline": "Aerolineas MAS, S.A.", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2683, + "callsign": "NATIONAL", + "codeHub": "SCL", + "codeIataAirline": "N4", + "codeIcaoAirline": "NCN", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Airlines", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2684, + "callsign": "", + "codeHub": "", + "codeIataAirline": "N4*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NACNET Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2685, + "callsign": "KYRMAL", + "codeHub": "", + "codeIataAirline": "N5", + "codeIcaoAirline": "KYL", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "987", + "nameAirline": "Kyrgyz International Airlines", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2686, + "callsign": "", + "codeHub": "PHL", + "codeIataAirline": "N5", + "codeIcaoAirline": "NAE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nations Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2687, + "callsign": "SKAGWAY AIR", + "codeHub": "SGY", + "codeIataAirline": "N5", + "codeIcaoAirline": "SGY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skagway Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2688, + "callsign": "", + "codeHub": "YFB", + "codeIataAirline": "N5", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Sarvaq", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 2689, + "callsign": "", + "codeHub": "YFB", + "codeIataAirline": "N5", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Go Sarvaq", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "start_up", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 2690, + "callsign": "AERO CONTINENTE", + "codeHub": "LIM", + "codeIataAirline": "N6", + "codeIcaoAirline": "ACQ", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "929", + "nameAirline": "Aero Continente", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2691, + "callsign": "", + "codeHub": "", + "codeIataAirline": "N6", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nomad Aviation (PTY) Ltd.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2692, + "callsign": "", + "codeHub": "", + "codeIataAirline": "N7", + "codeIcaoAirline": "FCM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nordic Regional Airlines Oy", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2693, + "callsign": "LAGUNAIR", + "codeHub": "LEN", + "codeIataAirline": "N7", + "codeIcaoAirline": "JEV", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "504", + "nameAirline": "Lagun Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2694, + "callsign": "", + "codeHub": "LAS", + "codeIataAirline": "N7", + "codeIcaoAirline": "ROK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Airlines (1998)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2695, + "callsign": "", + "codeHub": "", + "codeIataAirline": "N8", + "codeIcaoAirline": "SEK", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "547", + "nameAirline": "Salaam Express Air Services", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2696, + "callsign": "", + "codeHub": "", + "codeIataAirline": "N9", + "codeIcaoAirline": "AOH", + "codeIso2Country": "PG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Coast Aviation", + "nameCountry": "Papua New Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2697, + "callsign": "MENA", + "codeHub": "", + "codeIataAirline": "N9", + "codeIcaoAirline": "NCN", + "codeIso2Country": "NE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Niger Air Continental", + "nameCountry": "Niger", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2698, + "callsign": "NAVIGATOR", + "codeHub": "ARN", + "codeIataAirline": "N9", + "codeIcaoAirline": "NVR", + "codeIso2Country": "SE", + "founding": 1997, + "iataPrefixAccounting": "326", + "nameAirline": "Nova Airlines AB", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2699, + "callsign": "", + "codeHub": "MHQ", + "codeIataAirline": "N9", + "codeIcaoAirline": "", + "codeIso2Country": "AX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Aland", + "nameCountry": "Aland Islands", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 2700, + "callsign": "", + "codeHub": "", + "codeIataAirline": "N9*", + "codeIcaoAirline": "", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nordic Solutions", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2701, + "callsign": "ENA", + "codeHub": "", + "codeIataAirline": "NA", + "codeIcaoAirline": "ENA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Espana, Direccion General De Aviacion Civil Y Telecomunicaciones", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2702, + "callsign": "NATIONAL", + "codeHub": "MIA", + "codeIataAirline": "NA", + "codeIcaoAirline": "NAL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2703, + "callsign": "NORTH AMERICAN", + "codeHub": "JFK", + "codeIataAirline": "NA", + "codeIcaoAirline": "NAO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "455", + "nameAirline": "North American Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2704, + "callsign": "", + "codeHub": "", + "codeIataAirline": "NB", + "codeIcaoAirline": "EAN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skypower Express Airways Ltd.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2705, + "callsign": "STERLING", + "codeHub": "CPH", + "codeIataAirline": "NB", + "codeIcaoAirline": "SNB", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "373", + "nameAirline": "Sterling Airlines", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2706, + "callsign": "", + "codeHub": "", + "codeIataAirline": "NB", + "codeIcaoAirline": "", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skypower Express", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2707, + "callsign": "", + "codeHub": "TRF", + "codeIataAirline": "NC", + "codeIcaoAirline": "NIR", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norsk Air", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2708, + "callsign": "NORTH CENTRAL", + "codeHub": "MSP", + "codeIataAirline": "NC", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Central Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2709, + "callsign": "ARROW JET", + "codeHub": "ATH", + "codeIataAirline": "ND", + "codeIcaoAirline": "GSW", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Wings Airlines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2710, + "callsign": "INTER-CANADIAN", + "codeHub": "", + "codeIataAirline": "ND", + "codeIcaoAirline": "ICN", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter-Canadian", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2711, + "callsign": "", + "codeHub": "YQB", + "codeIataAirline": "ND", + "codeIcaoAirline": "INT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intair Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2712, + "callsign": "NORDAIR", + "codeHub": "YUL", + "codeIataAirline": "ND", + "codeIcaoAirline": "NDR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nordair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2713, + "callsign": "", + "codeHub": "MAG", + "codeIataAirline": "ND", + "codeIcaoAirline": "", + "codeIso2Country": "PG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlink PG", + "nameCountry": "Papua New Guinea", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2714, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ND", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airline", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2715, + "callsign": "NORTHEAST", + "codeHub": "", + "codeIataAirline": "NE", + "codeIcaoAirline": "DOW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northeast Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2716, + "callsign": "RELAX", + "codeHub": "BTS", + "codeIataAirline": "NE", + "codeIcaoAirline": "ESK", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyeurope Airlines", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2717, + "callsign": "EXCALIBUR", + "codeHub": "", + "codeIataAirline": "NE", + "codeIcaoAirline": "EXX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Exel", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2718, + "callsign": "NARDI", + "codeHub": "", + "codeIataAirline": "NE", + "codeIcaoAirline": "NRD", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nardi", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2719, + "callsign": "", + "codeHub": "BOS", + "codeIataAirline": "NE", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northeast Airlines (USA)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2720, + "callsign": "NOVEMBER ECHO", + "codeHub": "", + "codeIataAirline": "NE", + "codeIcaoAirline": "", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nile Air", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2721, + "callsign": "NATCHAIR", + "codeHub": "", + "codeIataAirline": "NF", + "codeIcaoAirline": "", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Airways Corporation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2722, + "callsign": "GILLAIR", + "codeHub": "NCL", + "codeIataAirline": "NG", + "codeIcaoAirline": "GIL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gill Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2723, + "callsign": "LAUDA AIR", + "codeHub": "VIE", + "codeIataAirline": "NG", + "codeIcaoAirline": "LDA", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "231", + "nameAirline": "Lauda Air", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "division" + }, + { + "ageFleet": 0.0, + "airlineId": 2724, + "callsign": "NYGE", + "codeHub": "", + "codeIataAirline": "NG", + "codeIcaoAirline": "NYG", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nyge Aero Trafikflyg", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2725, + "callsign": "AERONICA", + "codeHub": "", + "codeIataAirline": "NI", + "codeIcaoAirline": "ANI", + "codeIso2Country": "NI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronica, Aerolineas Nicaraguenses", + "nameCountry": "Nicaragua", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2726, + "callsign": "MIDFLY", + "codeHub": "", + "codeIataAirline": "NI", + "codeIcaoAirline": "MDF", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midtfly", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2727, + "callsign": "LANICA", + "codeHub": "", + "codeIataAirline": "NI", + "codeIcaoAirline": "", + "codeIso2Country": "NI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas Nicaragus", + "nameCountry": "Nicaragua", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2728, + "callsign": "AVIP", + "codeHub": "AEP", + "codeIataAirline": "NJ", + "codeIcaoAirline": "AOG", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "592", + "nameAirline": "Aero VIP", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2729, + "callsign": "VANGUARD AIR", + "codeHub": "MCI", + "codeIataAirline": "NJ", + "codeIcaoAirline": "VGD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "311", + "nameAirline": "Vanguard Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2730, + "callsign": "NORDIC GLOBAL", + "codeHub": "HEL", + "codeIataAirline": "NJ*", + "codeIcaoAirline": "NGB", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nordic Global Airlines", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2731, + "callsign": "", + "codeHub": "", + "codeIataAirline": "NJ*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nordisk Aviation Products", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2732, + "callsign": "", + "codeHub": "DTW", + "codeIataAirline": "NK", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 1980, + "iataPrefixAccounting": "", + "nameAirline": "Spirit", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2733, + "callsign": "", + "codeHub": "", + "codeIataAirline": "NK", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norcanair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2734, + "callsign": "NOVEMBER LIMA", + "codeHub": "ROB", + "codeIataAirline": "NL", + "codeIcaoAirline": "ALI", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Liberia", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2735, + "callsign": "LAUDA ITALY", + "codeHub": "MXP", + "codeIataAirline": "NL", + "codeIcaoAirline": "LDI", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "372", + "nameAirline": "Lauda Air Italy", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2736, + "callsign": "", + "codeHub": "NSK", + "codeIataAirline": "NL", + "codeIcaoAirline": "PZY", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zapolyarye Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2737, + "callsign": "", + "codeHub": "", + "codeIataAirline": "NL", + "codeIcaoAirline": "", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lierian National Airlines", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2738, + "callsign": "ZAPOLYARYE", + "codeHub": "", + "codeIataAirline": "NL*", + "codeIcaoAirline": "PZY", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zapolyarye, Airline Company", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2739, + "callsign": "", + "codeHub": "IOM", + "codeIataAirline": "NM", + "codeIcaoAirline": "BPS", + "codeIso2Country": "IM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Manx2", + "nameCountry": "Isle of Man", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2740, + "callsign": "ALADA AIR", + "codeHub": "MAD", + "codeIataAirline": "NM", + "codeIcaoAirline": "DRD", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "476", + "nameAirline": "Air Madrid", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2741, + "callsign": "", + "codeHub": "IOM", + "codeIataAirline": "NM", + "codeIcaoAirline": "", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Citywing", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2742, + "callsign": "AIR ITALY", + "codeHub": "", + "codeIataAirline": "NN", + "codeIcaoAirline": "AJR", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Italy", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2743, + "callsign": "CARDINAL AIR", + "codeHub": "", + "codeIataAirline": "NN", + "codeIcaoAirline": "DCF", + "codeIso2Country": "AG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cardinal Airlines", + "nameCountry": "Antigua and Barbuda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2744, + "callsign": "", + "codeHub": "", + "codeIataAirline": "NO", + "codeIcaoAirline": "AUZ", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aus-Air", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2745, + "callsign": "NORLAND", + "codeHub": "", + "codeIataAirline": "NO", + "codeIcaoAirline": "FNA", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flugfelag Nordurlands", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2746, + "callsign": "NIGER CARGO", + "codeHub": "", + "codeIataAirline": "NO", + "codeIcaoAirline": "NAB", + "codeIso2Country": "NE", + "founding": 0, + "iataPrefixAccounting": "591", + "nameAirline": "Niger Air Cargo", + "nameCountry": "Niger", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2747, + "callsign": "ATLANTIS", + "codeHub": "FRA", + "codeIataAirline": "NO", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantis", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2748, + "callsign": "NOVEMBER PAPA", + "codeHub": "", + "codeIataAirline": "NP", + "codeIcaoAirline": "HLA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heavylift Cargo Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2749, + "callsign": "AIR JAPAN", + "codeHub": "HND", + "codeIataAirline": "NQ", + "codeIcaoAirline": "AJX", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Japan Company Ltd.", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2750, + "callsign": "", + "codeHub": "TBS", + "codeIataAirline": "NQ", + "codeIcaoAirline": "DVU", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ORBI Georgian Airways", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2751, + "callsign": "", + "codeHub": "", + "codeIataAirline": "NQ", + "codeIcaoAirline": "NWT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NW Territoral Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2752, + "callsign": "CIVAIR", + "codeHub": "", + "codeIataAirline": "NQ", + "codeIcaoAirline": "", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "New Zealand Ministry of Transport", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2753, + "callsign": "WIGWAM", + "codeHub": "", + "codeIataAirline": "NR", + "codeIcaoAirline": "CSE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CSE Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2754, + "callsign": "EXCO AIR", + "codeHub": "", + "codeIataAirline": "NR", + "codeIcaoAirline": "ESY", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Aviation Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2755, + "callsign": "NORONTAIR", + "codeHub": "", + "codeIataAirline": "NR", + "codeIcaoAirline": "NOT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NorOntair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2756, + "callsign": "ANGARA", + "codeHub": "", + "codeIataAirline": "NR", + "codeIcaoAirline": "RUR", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "437", + "nameAirline": "RUSS", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2757, + "callsign": "", + "codeHub": "TBS", + "codeIataAirline": "NS", + "codeIcaoAirline": "CAY", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caucasus Airlines", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2758, + "callsign": "", + "codeHub": "KWL", + "codeIataAirline": "NS", + "codeIcaoAirline": "DBH", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northeast Airlines (2010)", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2759, + "callsign": "FLAMINGO", + "codeHub": "NUE", + "codeIataAirline": "NS", + "codeIcaoAirline": "NFD", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NFD Luftverkehrs", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2760, + "callsign": "NORJET", + "codeHub": "", + "codeIataAirline": "NS", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northeast Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2761, + "callsign": "SILKROUTE AIRWAYS", + "codeHub": "", + "codeIataAirline": "NS*", + "codeIcaoAirline": "GSR", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silk Route Airways", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2762, + "callsign": "CAUCASUS", + "codeHub": "", + "codeIataAirline": "NS*", + "codeIcaoAirline": "SRJ", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caucasus Airlines", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2763, + "callsign": "NORTHAIR", + "codeHub": "", + "codeIataAirline": "NT", + "codeIcaoAirline": "NTL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northair Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2764, + "callsign": "", + "codeHub": "", + "codeIataAirline": "NT", + "codeIcaoAirline": "", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Continental International Airways", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2765, + "callsign": "NORTHAIR", + "codeHub": "", + "codeIataAirline": "NT", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northern Air Taxis", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2766, + "callsign": "NANSEI", + "codeHub": "OKA", + "codeIataAirline": "NU", + "codeIcaoAirline": "SWL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southwest Air Lines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2767, + "callsign": "AIR CENTRAL", + "codeHub": "NGO", + "codeIataAirline": "NV", + "codeIcaoAirline": "CRF", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Central", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2768, + "callsign": "TERRITORIAL", + "codeHub": "", + "codeIataAirline": "NV", + "codeIcaoAirline": "NWT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NWT Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2769, + "callsign": "", + "codeHub": "", + "codeIataAirline": "NV", + "codeIcaoAirline": "", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nakanihon Airlines (NAL)", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2770, + "callsign": "", + "codeHub": "", + "codeIataAirline": "NV", + "codeIcaoAirline": "", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nakanihon Airlines", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2771, + "callsign": "NORTHWEST", + "codeHub": "MSP", + "codeIataAirline": "NW", + "codeIcaoAirline": "NWA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "12", + "nameAirline": "Northwest Orient Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2772, + "callsign": "NATION AIRWAYS", + "codeHub": "YMX", + "codeIataAirline": "NX", + "codeIcaoAirline": "NXA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nationair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2773, + "callsign": "", + "codeHub": "", + "codeIataAirline": "NX", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Niagara", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2774, + "callsign": "NEWMANS", + "codeHub": "", + "codeIataAirline": "NY", + "codeIcaoAirline": "NMA", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Newmans Airways", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2775, + "callsign": "NEW YORK", + "codeHub": "", + "codeIataAirline": "NY", + "codeIcaoAirline": "NYA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "New York Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2776, + "callsign": "", + "codeHub": "WLG", + "codeIataAirline": "NZ", + "codeIcaoAirline": "", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NAC National Airways", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2777, + "callsign": "", + "codeHub": "", + "codeIataAirline": "O2", + "codeIcaoAirline": "GIO", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oceanic Airlines", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2778, + "callsign": "JETA", + "codeHub": "WAW", + "codeIataAirline": "O2", + "codeIcaoAirline": "JEA", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JET AIR", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2779, + "callsign": "", + "codeHub": "WAW", + "codeIataAirline": "O2", + "codeIcaoAirline": "YAP", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "OLT Express Poland", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2780, + "callsign": "", + "codeHub": "FNA", + "codeIataAirline": "O3*", + "codeIcaoAirline": "BVU", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bellview Airlines", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2781, + "callsign": "ORANGE JET", + "codeHub": "", + "codeIataAirline": "O3*", + "codeIcaoAirline": "ORN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orange Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2782, + "callsign": "OCTAFLIGHT", + "codeHub": "LBG", + "codeIataAirline": "O4*", + "codeIcaoAirline": "OCN", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Octavia Airlines", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2783, + "callsign": "", + "codeHub": "HAH", + "codeIataAirline": "O5", + "codeIcaoAirline": "KMZ", + "codeIso2Country": "KM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comores Aviation International", + "nameCountry": "Comoros", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2784, + "callsign": "", + "codeHub": "FNA", + "codeIataAirline": "O5", + "codeIcaoAirline": "ORJ", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orange Air (Sierra Leone)", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2785, + "callsign": "", + "codeHub": "", + "codeIataAirline": "O5*", + "codeIcaoAirline": "ORJ", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orange Air Sierra Leone", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2786, + "callsign": "", + "codeHub": "REN", + "codeIataAirline": "O7", + "codeIcaoAirline": "ORG", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SUE Orenburg Region \"Int'l Airport Orenburg\"", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2787, + "callsign": "AUSJET", + "codeHub": "MEL", + "codeIataAirline": "O7", + "codeIcaoAirline": "OZJ", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "OzJet", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2788, + "callsign": "OASIS", + "codeHub": "HKG", + "codeIataAirline": "O8", + "codeIcaoAirline": "OHK", + "codeIso2Country": "HK", + "founding": 0, + "iataPrefixAccounting": "558", + "nameAirline": "Oasis Hong Kong Airlines", + "nameCountry": "Hong Kong", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2789, + "callsign": "", + "codeHub": "DLA", + "codeIataAirline": "O8", + "codeIcaoAirline": "", + "codeIso2Country": "CM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Axis Lines International", + "nameCountry": "Cameroon", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2790, + "callsign": "", + "codeHub": "", + "codeIataAirline": "O8", + "codeIcaoAirline": "", + "codeIso2Country": "CM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Axis International Lines", + "nameCountry": "Cameroon", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2791, + "callsign": "", + "codeHub": "DEL", + "codeIataAirline": "O9", + "codeIcaoAirline": "", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Indus Air", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2792, + "callsign": "", + "codeHub": "", + "codeIataAirline": "O9", + "codeIcaoAirline": "", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Indus Airways", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2793, + "callsign": "OASIS", + "codeHub": "MAD", + "codeIataAirline": "OB", + "codeIcaoAirline": "AAN", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oasis International Airlines", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2794, + "callsign": "AIR ASTRAKHAN", + "codeHub": "ASF", + "codeIataAirline": "OB", + "codeIcaoAirline": "ASZ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "562", + "nameAirline": "Astrakhan Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2795, + "callsign": "AUSTRIAN CHARTER", + "codeHub": "", + "codeIataAirline": "OB", + "codeIcaoAirline": "AUC", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Austrian Airtransport", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2796, + "callsign": "", + "codeHub": "", + "codeIataAirline": "OB", + "codeIcaoAirline": "CMM", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bee", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2797, + "callsign": "", + "codeHub": "", + "codeIataAirline": "OB*", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shepparton Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2798, + "callsign": "AIRCAL", + "codeHub": "SNA", + "codeIataAirline": "OC", + "codeIcaoAirline": "ACL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AirCal", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2799, + "callsign": "AVINOR", + "codeHub": "HMO", + "codeIataAirline": "OC", + "codeIcaoAirline": "ANW", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviacion Del Noroeste", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2800, + "callsign": "SUNSHINE", + "codeHub": "LUG", + "codeIataAirline": "OC", + "codeIcaoAirline": "SHS", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunshine Aviation", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2801, + "callsign": "", + "codeHub": "SNA", + "codeIataAirline": "OC", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air California", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2802, + "callsign": "AIRPHOTOS", + "codeHub": "", + "codeIataAirline": "OC", + "codeIcaoAirline": "", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircraft Operating Co. (Aerial Surveys) Ltd.", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2803, + "callsign": "", + "codeHub": "AUS", + "codeIataAirline": "OD", + "codeIcaoAirline": "EEF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Emerald Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2804, + "callsign": "", + "codeHub": "PNR", + "codeIataAirline": "OD", + "codeIcaoAirline": "NCO", + "codeIso2Country": "CG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Natalco Air Lines", + "nameCountry": "Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2805, + "callsign": "TORLINE", + "codeHub": "GSE", + "codeIataAirline": "OD", + "codeIcaoAirline": "OAI", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tor Air", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2806, + "callsign": "", + "codeHub": "FRU", + "codeIataAirline": "OD", + "codeIcaoAirline": "SAL", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asia Alpha Airways", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2807, + "callsign": "ZULIANA", + "codeHub": "CCS", + "codeIataAirline": "OD", + "codeIcaoAirline": "ULA", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zuliana de Aviacion", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2808, + "callsign": "", + "codeHub": "BAQ", + "codeIataAirline": "OD", + "codeIcaoAirline": "", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocondor Colombia", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2809, + "callsign": "", + "codeHub": "", + "codeIataAirline": "OD", + "codeIcaoAirline": "", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAMPA", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2810, + "callsign": "AEROCONDOR", + "codeHub": "", + "codeIataAirline": "OD", + "codeIcaoAirline": "", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocondor", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2811, + "callsign": "", + "codeHub": "", + "codeIataAirline": "OD", + "codeIcaoAirline": "", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Natalco Airlines", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2812, + "callsign": "WARLOCK", + "codeHub": "AOC", + "codeIataAirline": "OE", + "codeIcaoAirline": "AOW", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Omega", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2813, + "callsign": "", + "codeHub": "CAI", + "codeIataAirline": "OE", + "codeIcaoAirline": "CCE", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "207", + "nameAirline": "Cairo Aviation", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2814, + "callsign": "YEONGNAM AIR", + "codeHub": "PUS", + "codeIataAirline": "OE", + "codeIcaoAirline": "ONA", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yeongnam Air", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2815, + "callsign": "POLSTERER", + "codeHub": "", + "codeIataAirline": "OE", + "codeIcaoAirline": "OPV", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bedarfsflugunternehmen Dr. L. Polsterer", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2816, + "callsign": "", + "codeHub": "FAT", + "codeIataAirline": "OE", + "codeIcaoAirline": "SDU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Westair / United Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2817, + "callsign": "", + "codeHub": "", + "codeIataAirline": "OE", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Out-Island Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2818, + "callsign": "LAUDA AIR", + "codeHub": "", + "codeIataAirline": "OE", + "codeIcaoAirline": "", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lauda Air", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2819, + "callsign": "AIR FINLAND", + "codeHub": "HEL", + "codeIataAirline": "OF", + "codeIcaoAirline": "FIF", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Finland", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2820, + "callsign": "CHALLENGE AIR", + "codeHub": "", + "codeIataAirline": "OF", + "codeIcaoAirline": "OFF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Challenge Air International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2821, + "callsign": "TAM AIRLINE", + "codeHub": "TNR", + "codeIataAirline": "OF", + "codeIcaoAirline": "TML", + "codeIso2Country": "MG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transports et Travaux A�riens de Madagascar", + "nameCountry": "Madagascar", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2822, + "callsign": "", + "codeHub": "VIE", + "codeIataAirline": "OF", + "codeIcaoAirline": "", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Montana Austria", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2823, + "callsign": "", + "codeHub": "", + "codeIataAirline": "OF", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Aircraft Corp. (BAC)", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2824, + "callsign": "GO-FLIGHT", + "codeHub": "STN", + "codeIataAirline": "OG", + "codeIcaoAirline": "GOE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "333", + "nameAirline": "Go Fly", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2825, + "callsign": "", + "codeHub": "PTP", + "codeIataAirline": "OG", + "codeIcaoAirline": "GWX", + "codeIso2Country": "GP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Caraibes Express", + "nameCountry": "Guadeloupe", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2826, + "callsign": "OCEAN AIRWAYS", + "codeHub": "NTE", + "codeIataAirline": "OG", + "codeIcaoAirline": "OCW", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ocean Airways", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2827, + "callsign": "ONIXAIR", + "codeHub": "SIP", + "codeIataAirline": "OG", + "codeIcaoAirline": "ONX", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Onix", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2828, + "callsign": "THAI EXPRESS", + "codeHub": "BKK", + "codeIataAirline": "OG", + "codeIcaoAirline": "OTG", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "908", + "nameAirline": "One Two Go Airlines", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2829, + "callsign": "TOLL FREIGHT", + "codeHub": "AKL", + "codeIataAirline": "OG", + "codeIcaoAirline": "TFR", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Originair", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2830, + "callsign": "", + "codeHub": "", + "codeIataAirline": "OG", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orientair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2831, + "callsign": "COMAIR", + "codeHub": "CVG", + "codeIataAirline": "OH", + "codeIcaoAirline": "COM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "886", + "nameAirline": "Delta Connection Comair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2832, + "callsign": "XP PARCEL", + "codeHub": "", + "codeIataAirline": "OH", + "codeIcaoAirline": "XPS", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "XP International", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2833, + "callsign": "SFO AIRLINES", + "codeHub": "", + "codeIataAirline": "OH", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SFO Helicopter Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 2834, + "callsign": "HELI TRANSPORT", + "codeHub": "", + "codeIataAirline": "OI", + "codeIcaoAirline": "HLT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Transport", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2835, + "callsign": "HINTERLAND", + "codeHub": "CNS", + "codeIataAirline": "OI", + "codeIcaoAirline": "HND", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hinterland Aviation Pty Ltd", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2836, + "callsign": "OKAPI", + "codeHub": "FIH", + "codeIataAirline": "OI", + "codeIcaoAirline": "OKP", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Okapi Airways", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 2837, + "callsign": "", + "codeHub": "MIA", + "codeIataAirline": "OI", + "codeIcaoAirline": "PAI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prestige Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2838, + "callsign": "", + "codeHub": "", + "codeIataAirline": "OI", + "codeIcaoAirline": "", + "codeIso2Country": "CS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Slov-Air", + "nameCountry": "Serbia and Montenegro", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2839, + "callsign": "ODINN", + "codeHub": "", + "codeIataAirline": "OI", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "H. Jonsson air Taxi", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2840, + "callsign": "", + "codeHub": "", + "codeIataAirline": "OI*", + "codeIcaoAirline": "", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aspiring Air", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2841, + "callsign": "", + "codeHub": "", + "codeIataAirline": "OJ", + "codeIcaoAirline": "", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maof Airlines", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2842, + "callsign": "ODYSSEY", + "codeHub": "YYZ", + "codeIataAirline": "OL", + "codeIcaoAirline": "ODY", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Odyssey International", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2843, + "callsign": "POLYNESIAN", + "codeHub": "FGI", + "codeIataAirline": "OL", + "codeIcaoAirline": "PAO", + "codeIso2Country": "WS", + "founding": 0, + "iataPrefixAccounting": "162", + "nameAirline": "Polynesian Limited", + "nameCountry": "Samoa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2844, + "callsign": "ARPA", + "codeHub": "", + "codeIataAirline": "OP", + "codeIcaoAirline": "API", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Panama International", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2845, + "callsign": "CHALKS", + "codeHub": "MPB", + "codeIataAirline": "OP", + "codeIcaoAirline": "CHK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "370", + "nameAirline": "Chalks International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2846, + "callsign": "ROYALE AIR", + "codeHub": "", + "codeIataAirline": "OQ", + "codeIcaoAirline": "RAY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royale Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2847, + "callsign": "ZAMBEX", + "codeHub": "LUN", + "codeIataAirline": "OQ", + "codeIcaoAirline": "SZX", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zambian Express Airways", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2848, + "callsign": "EFFEX", + "codeHub": "", + "codeIataAirline": "OQ*", + "codeIcaoAirline": "FXA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunrise Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2849, + "callsign": "QUEEN AIR", + "codeHub": "", + "codeIataAirline": "OQ*", + "codeIcaoAirline": "QNA", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Queen Air", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2850, + "callsign": "AIRCOMOR", + "codeHub": "HAH", + "codeIataAirline": "OR", + "codeIcaoAirline": "AOR", + "codeIso2Country": "KM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Comores", + "nameCountry": "Comoros", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2851, + "callsign": "", + "codeHub": "SIP", + "codeIataAirline": "OR", + "codeIcaoAirline": "CRF", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "106", + "nameAirline": "Krym", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2852, + "callsign": "", + "codeHub": "", + "codeIataAirline": "OR", + "codeIcaoAirline": "TFL", + "codeIso2Country": "CW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TUIfly", + "nameCountry": "Curacao", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2853, + "callsign": "CRIMEA AIR", + "codeHub": "", + "codeIataAirline": "OR*", + "codeIcaoAirline": "CRF", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "107", + "nameAirline": "Crimea Air", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2854, + "callsign": "LASTP", + "codeHub": "", + "codeIataAirline": "OT", + "codeIcaoAirline": "OTN", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sao Tome And Principe Airlines", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2855, + "callsign": "STA", + "codeHub": "", + "codeIataAirline": "OT", + "codeIcaoAirline": "", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicio de Transportes Aereos de Sao Tome", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2856, + "callsign": "", + "codeHub": "", + "codeIataAirline": "OT", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FlyPelican", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2857, + "callsign": "", + "codeHub": "BEO", + "codeIataAirline": "OT*", + "codeIcaoAirline": "PEL", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropelican Air Services", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2858, + "callsign": "AVANT AIRLINES", + "codeHub": "SCL", + "codeIataAirline": "OT*", + "codeIcaoAirline": "VAT", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avant Airlines", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2859, + "callsign": "COURT LINE", + "codeHub": "LTN", + "codeIataAirline": "OU", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Court Line", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2860, + "callsign": "ESTONIAN", + "codeHub": "TLL", + "codeIataAirline": "OV", + "codeIcaoAirline": "ELL", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "960", + "nameAirline": "Estonian Air", + "nameCountry": "Estonia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2861, + "callsign": "", + "codeHub": "ILN", + "codeIataAirline": "OV", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Overseas National Airways (1950)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2862, + "callsign": "", + "codeHub": "JFK", + "codeIataAirline": "OV", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Overseas National Airways (1980)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2863, + "callsign": "ONAIR", + "codeHub": "", + "codeIataAirline": "OV", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Overseas National Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2864, + "callsign": "", + "codeHub": "", + "codeIataAirline": "OV", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Overseas National Airways (ONA)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2865, + "callsign": "ECHOLINE", + "codeHub": "SJU", + "codeIataAirline": "OW", + "codeIcaoAirline": "EXK", + "codeIso2Country": "PR", + "founding": 0, + "iataPrefixAccounting": "92", + "nameAirline": "Executive Airlines", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2866, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "OW", + "codeIcaoAirline": "EXW", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EAS Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2867, + "callsign": "CARGOSUR", + "codeHub": "", + "codeIataAirline": "OW", + "codeIcaoAirline": "OWS", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cargosur", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2868, + "callsign": "OWENAIR", + "codeHub": "", + "codeIataAirline": "OW", + "codeIcaoAirline": "", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Owenair (PTY) Ltd.", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2869, + "callsign": "VIAMET", + "codeHub": "", + "codeIataAirline": "OW*", + "codeIcaoAirline": "MNK", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Metavia Airlines", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2870, + "callsign": "BOXHAULER", + "codeHub": "MIA", + "codeIataAirline": "OX", + "codeIcaoAirline": "FLM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cam Air International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2871, + "callsign": "AIR HUDIK", + "codeHub": "HUV", + "codeIataAirline": "OX", + "codeIcaoAirline": "HUD", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Hudik", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2872, + "callsign": "MILL AIR", + "codeHub": "MIA", + "codeIataAirline": "OX", + "codeIcaoAirline": "OXO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Millon Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2873, + "callsign": "SKYLINE", + "codeHub": "", + "codeIataAirline": "OX", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyline", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2874, + "callsign": "CONAIR", + "codeHub": "CPH", + "codeIataAirline": "OY", + "codeIcaoAirline": "OYC", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Conair", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2875, + "callsign": "SODER", + "codeHub": "TMP", + "codeIataAirline": "OY", + "codeIcaoAirline": "SDE", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soder Air", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2876, + "callsign": "", + "codeHub": "", + "codeIataAirline": "OY", + "codeIcaoAirline": "", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "African Intercontinental Airways", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2877, + "callsign": "OZARK", + "codeHub": "", + "codeIataAirline": "OZ", + "codeIcaoAirline": "OZA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ozark Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2878, + "callsign": "", + "codeHub": "STL", + "codeIataAirline": "OZ", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ozark Air Lines (1943)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2879, + "callsign": "", + "codeHub": "AVP", + "codeIataAirline": "P1", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "351", + "nameAirline": "PublicCharters.com", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2880, + "callsign": "AURIGA", + "codeHub": "FCO", + "codeIataAirline": "P2*", + "codeIcaoAirline": "LLI", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Small Planet Airlines Italia", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2881, + "callsign": "PANAIRFLY", + "codeHub": "", + "codeIataAirline": "P2*", + "codeIcaoAirline": "PIT", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Panair", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2882, + "callsign": "FIREBIRD", + "codeHub": "STN", + "codeIataAirline": "P3", + "codeIcaoAirline": "CLU", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "560", + "nameAirline": "Cargologicair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2883, + "callsign": "WEST AZUR", + "codeHub": "MRS", + "codeIataAirline": "P3", + "codeIcaoAirline": "FWA", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West-Air.fr", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2884, + "callsign": "", + "codeHub": "RAO", + "codeIataAirline": "P3", + "codeIcaoAirline": "PAZ", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "837", + "nameAirline": "Passaredo Transportes Aereos", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2885, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "P3", + "codeIcaoAirline": "PHW", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2886, + "callsign": "", + "codeHub": "SVO", + "codeIataAirline": "P3", + "codeIcaoAirline": "PLS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroflot-Plus", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "private,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2887, + "callsign": "", + "codeHub": "", + "codeIataAirline": "P3", + "codeIcaoAirline": "", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroflot - Plus", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2888, + "callsign": "", + "codeHub": "", + "codeIataAirline": "P3*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "435", + "nameAirline": "Premier Trans Aire", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2889, + "callsign": "", + "codeHub": "ACC", + "codeIataAirline": "P4", + "codeIcaoAirline": "ACE", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Charter Express (Ghana)", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2890, + "callsign": "PACIFIC INTERNATIONAL", + "codeHub": "PTY", + "codeIataAirline": "P4", + "codeIcaoAirline": "PFC", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific International Airlines", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2891, + "callsign": "", + "codeHub": "", + "codeIataAirline": "P4*", + "codeIcaoAirline": "", + "codeIso2Country": "HN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Lineas Sosa", + "nameCountry": "Honduras", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2892, + "callsign": "", + "codeHub": "", + "codeIataAirline": "P5*", + "codeIcaoAirline": "JPR", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taxi Fly Group", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2893, + "callsign": "EASTLINE EXPRESS", + "codeHub": "DME", + "codeIataAirline": "P7", + "codeIcaoAirline": "ESL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "215", + "nameAirline": "Russian Sky Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2894, + "callsign": "PALAUAIRWAYS", + "codeHub": "ROR", + "codeIataAirline": "P7", + "codeIcaoAirline": "PAU", + "codeIso2Country": "PW", + "founding": 0, + "iataPrefixAccounting": "389", + "nameAirline": "Palau Airways", + "nameCountry": "Palau", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2895, + "callsign": "REGIOPAR", + "codeHub": "ASU", + "codeIataAirline": "P7", + "codeIcaoAirline": "REP", + "codeIso2Country": "PY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Regional Paraguaya", + "nameCountry": "Paraguay", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2896, + "callsign": "", + "codeHub": "", + "codeIataAirline": "P7", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Small Planet Airline Sp. Z.o.o", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2897, + "callsign": "AIR MEKONG", + "codeHub": "SGN", + "codeIataAirline": "P8", + "codeIcaoAirline": "MKG", + "codeIso2Country": "VN", + "founding": 0, + "iataPrefixAccounting": "819", + "nameAirline": "Air Mekong", + "nameCountry": "Vietnam", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2898, + "callsign": "", + "codeHub": "", + "codeIataAirline": "P8", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sprintair SA", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2899, + "callsign": "PLATINUM WEST", + "codeHub": "ODC", + "codeIataAirline": "P8*", + "codeIcaoAirline": "PKW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sierra West Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2900, + "callsign": "", + "codeHub": "", + "codeIataAirline": "P8*", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IAS International Services", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2901, + "callsign": "AIR BANE", + "codeHub": "", + "codeIataAirline": "P9", + "codeIcaoAirline": "NCM", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nas Air", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2902, + "callsign": "MAGELLAN", + "codeHub": "GUM", + "codeIataAirline": "P9*", + "codeIcaoAirline": "MGE", + "codeIso2Country": "GU", + "founding": 0, + "iataPrefixAccounting": "46", + "nameAirline": "Asia Pacific Airlines", + "nameCountry": "Guam", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2903, + "callsign": "PERM AIR", + "codeHub": "PEE", + "codeIataAirline": "P9*", + "codeIcaoAirline": "PGP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Perm Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2904, + "callsign": "FLORIDA COASTAL", + "codeHub": "FLL", + "codeIataAirline": "PA", + "codeIcaoAirline": "FCL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Florida Coastal Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2905, + "callsign": "CLIPPER", + "codeHub": "JFK", + "codeIataAirline": "PA", + "codeIcaoAirline": "PXA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan Am II", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2906, + "callsign": "BANDEIRANTE", + "codeHub": "GIG", + "codeIataAirline": "PB", + "codeIcaoAirline": "PAB", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Panair do Brasil", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2907, + "callsign": "STABAIR", + "codeHub": "", + "codeIataAirline": "PB", + "codeIcaoAirline": "", + "codeIso2Country": "BI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Service des Transports A�riens du Burundi", + "nameCountry": "Burundi", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2908, + "callsign": "FIJIAIR", + "codeHub": "SUV", + "codeIataAirline": "PC", + "codeIcaoAirline": "FAJ", + "codeIso2Country": "FJ", + "founding": 0, + "iataPrefixAccounting": "677", + "nameAirline": "Air Fiji", + "nameCountry": "Fiji", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2909, + "callsign": "", + "codeHub": "KDEN", + "codeIataAirline": "PC", + "codeIcaoAirline": "POC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ports of Call Denver", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2910, + "callsign": "", + "codeHub": "KDEN", + "codeIataAirline": "PC", + "codeIcaoAirline": "SPC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyworld Airlines (USA)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2911, + "callsign": "", + "codeHub": "SFO", + "codeIataAirline": "PC", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Air Lines (USA)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2912, + "callsign": "", + "codeHub": "", + "codeIataAirline": "PC", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Purolator Courier", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2913, + "callsign": "CONTAIR", + "codeHub": "SVO", + "codeIataAirline": "PC*", + "codeIcaoAirline": "PVV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "922", + "nameAirline": "Continental Airways", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2914, + "callsign": "", + "codeHub": "", + "codeIataAirline": "PC*", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Envirotainer AB", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2915, + "callsign": "PEM-AIR", + "codeHub": "", + "codeIataAirline": "PD", + "codeIcaoAirline": "PEM", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pemair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2916, + "callsign": "", + "codeHub": "ROR", + "codeIataAirline": "PD", + "codeIcaoAirline": "PMN", + "codeIso2Country": "PW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Palau Micronesia Air", + "nameCountry": "Palau", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2917, + "callsign": "PLUTO AIR", + "codeHub": "SHJ", + "codeIataAirline": "PD", + "codeIcaoAirline": "PPL", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pluto Airlines", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2918, + "callsign": "", + "codeHub": "LAF", + "codeIataAirline": "PD", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Purdue Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2919, + "callsign": "", + "codeHub": "MNL", + "codeIataAirline": "PD", + "codeIcaoAirline": "", + "codeIso2Country": "PH", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "AirAsia - Philippines AirAsia", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2920, + "callsign": "", + "codeHub": "", + "codeIataAirline": "PD", + "codeIcaoAirline": "", + "codeIso2Country": "PW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Palau Rock Island Air", + "nameCountry": "Palau", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2921, + "callsign": "AIR EUROPE", + "codeHub": "LGW", + "codeIataAirline": "PE", + "codeIcaoAirline": "AEL", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "667", + "nameAirline": "Air Europe", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2922, + "callsign": "PEOPLE EXPRESS", + "codeHub": "", + "codeIataAirline": "PE", + "codeIcaoAirline": "PEX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "People Express Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2923, + "callsign": "", + "codeHub": "EWR", + "codeIataAirline": "PE", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PeoplExpress (1980)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2924, + "callsign": "", + "codeHub": "", + "codeIataAirline": "PE", + "codeIcaoAirline": "", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Philip's N.V.", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2925, + "callsign": "TAM EXPRESS", + "codeHub": "", + "codeIataAirline": "PE*", + "codeIcaoAirline": "SUL", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helisul", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2926, + "callsign": "", + "codeHub": "", + "codeIataAirline": "PE*", + "codeIcaoAirline": "", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "People�s Viennaline", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2927, + "callsign": "", + "codeHub": "", + "codeIataAirline": "PE*", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Air Express Australia", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2928, + "callsign": "", + "codeHub": "LAF", + "codeIataAirline": "PF", + "codeIcaoAirline": "MPA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mid-Pacific Cargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2929, + "callsign": "", + "codeHub": "VIDD", + "codeIataAirline": "PF", + "codeIcaoAirline": "VDT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vayudoot", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2930, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "PF", + "codeIcaoAirline": "", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan African Airlines (Nigeria)", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2931, + "callsign": "", + "codeHub": "", + "codeIataAirline": "PF", + "codeIcaoAirline": "", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan African Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2932, + "callsign": "GABONCARGO", + "codeHub": "", + "codeIataAirline": "PG", + "codeIcaoAirline": "", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Gabon Cargo", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 2933, + "callsign": "AEROSPACE", + "codeHub": "", + "codeIataAirline": "PG", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Spacelines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2934, + "callsign": "GREEN", + "codeHub": "CPH", + "codeIataAirline": "PH", + "codeIcaoAirline": "TDK", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transavia Denmark", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2935, + "callsign": "GRAY BIRD", + "codeHub": "KVPC", + "codeIataAirline": "PH*", + "codeIcaoAirline": "PHA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoenix Air Group", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 2936, + "callsign": "", + "codeHub": "SBY", + "codeIataAirline": "PI", + "codeIcaoAirline": "HNA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Henson Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2937, + "callsign": "KOROR", + "codeHub": "ROR", + "codeIataAirline": "PI", + "codeIcaoAirline": "PFL", + "codeIso2Country": "PW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Flier", + "nameCountry": "Palau", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 2938, + "callsign": "", + "codeHub": "DAM", + "codeIataAirline": "PI", + "codeIcaoAirline": "PSB", + "codeIso2Country": "SY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Syrian Pearl Airlines", + "nameCountry": "Syria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2939, + "callsign": "AIR SAKHA", + "codeHub": "YKS", + "codeIataAirline": "PI", + "codeIcaoAirline": "RKA", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "545", + "nameAirline": "Polar Airlines OJSC", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2940, + "callsign": "", + "codeHub": "", + "codeIataAirline": "PI*", + "codeIcaoAirline": "PFL", + "codeIso2Country": "PW", + "founding": 0, + "iataPrefixAccounting": "213", + "nameAirline": "Aviation Matters", + "nameCountry": "Palau", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2941, + "callsign": "APOLLO AIR", + "codeHub": "", + "codeIataAirline": "PJ", + "codeIcaoAirline": "AOA", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Apollo Airlines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2942, + "callsign": "POLARAIR", + "codeHub": "", + "codeIataAirline": "PJ", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polar-Air", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2943, + "callsign": "", + "codeHub": "", + "codeIataAirline": "PJ", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Peregrine Air Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2944, + "callsign": "MOROZOV", + "codeHub": "DME", + "codeIataAirline": "PL", + "codeIcaoAirline": "ASE", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airstars", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2945, + "callsign": "AEROPERU", + "codeHub": "LIM", + "codeIataAirline": "PL", + "codeIcaoAirline": "PLI", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroperu", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2946, + "callsign": "PLYFLY", + "codeHub": "", + "codeIataAirline": "PL", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Plymouth Aero Club", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2947, + "callsign": "", + "codeHub": "", + "codeIataAirline": "PL", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Air Charter", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2948, + "callsign": "SOUTH AIRCHARTER", + "codeHub": "NAS", + "codeIataAirline": "PL*", + "codeIcaoAirline": "SOA", + "codeIso2Country": "BS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Air Charters", + "nameCountry": "Bahamas", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2949, + "callsign": "BRYMON", + "codeHub": "PLH", + "codeIataAirline": "PM", + "codeIcaoAirline": "BRY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brymon Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2950, + "callsign": "PAMIR", + "codeHub": "KBL", + "codeIataAirline": "PM", + "codeIcaoAirline": "PIR", + "codeIso2Country": "AF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pamir Airways", + "nameCountry": "Afghanistan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2951, + "callsign": "", + "codeHub": "GON", + "codeIataAirline": "PM", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pilgrim Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2952, + "callsign": "", + "codeHub": "", + "codeIataAirline": "PM", + "codeIcaoAirline": "", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania Internacional de Aviacion, S.A. (COPISA)", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2953, + "callsign": "", + "codeHub": "", + "codeIataAirline": "PM*", + "codeIcaoAirline": "", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "POLUS Centre for Parachute and Expeditional Works", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2954, + "callsign": "AIR MARTINIQUE", + "codeHub": "FDF", + "codeIataAirline": "PN", + "codeIcaoAirline": "MTQ", + "codeIso2Country": "MQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Martinique", + "nameCountry": "Martinique", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2955, + "callsign": "", + "codeHub": "PSM", + "codeIataAirline": "PN", + "codeIcaoAirline": "PAA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan Am (1996)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2956, + "callsign": "", + "codeHub": "ANC", + "codeIataAirline": "PN", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Northern Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2957, + "callsign": "", + "codeHub": "", + "codeIataAirline": "PN", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ansett Airlines of Papua New Guinea", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2958, + "callsign": "MALDIVESAIR", + "codeHub": "", + "codeIataAirline": "PN", + "codeIcaoAirline": "", + "codeIso2Country": "MV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maldives Airways", + "nameCountry": "Maldives", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2959, + "callsign": "CLIPPER", + "codeHub": "", + "codeIataAirline": "PN*", + "codeIcaoAirline": "PAA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan American Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2960, + "callsign": "", + "codeHub": "USH", + "codeIataAirline": "PO", + "codeIcaoAirline": "POS", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroposta", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2961, + "callsign": "PROTEA", + "codeHub": "", + "codeIataAirline": "PO", + "codeIcaoAirline": "", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Protea Lugdiens", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2962, + "callsign": "JET AVIATION", + "codeHub": "ZRH", + "codeIataAirline": "PP", + "codeIcaoAirline": "PJS", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Aviation Business Jets AG", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 2963, + "callsign": "PILATUS", + "codeHub": "", + "codeIataAirline": "PP", + "codeIcaoAirline": "", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pilatus", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2964, + "callsign": "AEROPARAGUAY", + "codeHub": "ASU", + "codeIataAirline": "PQ", + "codeIcaoAirline": "AES", + "codeIso2Country": "PY", + "founding": 0, + "iataPrefixAccounting": "682", + "nameAirline": "Aerosur Paraguay", + "nameCountry": "Paraguay", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2965, + "callsign": "", + "codeHub": "", + "codeIataAirline": "PQ", + "codeIcaoAirline": "APG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AirAsia Inc.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2966, + "callsign": "BASFIR", + "codeHub": "", + "codeIataAirline": "PQ", + "codeIcaoAirline": "BHT", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bogazici Hava Tasimacilik", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2967, + "callsign": "TRANSAFRIK", + "codeHub": "", + "codeIataAirline": "PQ", + "codeIcaoAirline": "TRF", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Transafrik", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2968, + "callsign": "", + "codeHub": "", + "codeIataAirline": "PQ", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Holiday Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2969, + "callsign": "PRINAIR", + "codeHub": "", + "codeIataAirline": "PQ", + "codeIcaoAirline": "", + "codeIso2Country": "PR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Puerto Rico International Airlines", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2970, + "callsign": "CORTAS", + "codeHub": "", + "codeIataAirline": "PQ*", + "codeIcaoAirline": "CTP", + "codeIso2Country": "UZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tashkent Aircraft Production", + "nameCountry": "Uzbekistan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2971, + "callsign": "PANWAYS", + "codeHub": "ABJ", + "codeIataAirline": "PQ*", + "codeIcaoAirline": "PNF", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Panafrican Airways (Panaf)", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 2972, + "callsign": "PSA", + "codeHub": "", + "codeIataAirline": "PS", + "codeIcaoAirline": "PSA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PSA - Pacific Southwest Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2973, + "callsign": "", + "codeHub": "SAN", + "codeIataAirline": "PS", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PSA (1949)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2974, + "callsign": "PIEDMONT", + "codeHub": "SBY", + "codeIataAirline": "PT", + "codeIcaoAirline": "PDT", + "codeIso2Country": "US", + "founding": 1931, + "iataPrefixAccounting": "531", + "nameAirline": "Piedmont Airlines, Inc. (U S Airways Express)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2975, + "callsign": "PROVINCETOWN", + "codeHub": "", + "codeIataAirline": "PT", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Provincetown-Boston Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2976, + "callsign": "PLUNA", + "codeHub": "MVD", + "codeIataAirline": "PU", + "codeIcaoAirline": "PUA", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "286", + "nameAirline": "PLUNA", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2977, + "callsign": "PROVINCIAL", + "codeHub": "YYT", + "codeIataAirline": "PV", + "codeIcaoAirline": "EPA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastern Provincial Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2978, + "callsign": "", + "codeHub": "AGP", + "codeIataAirline": "PV", + "codeIcaoAirline": "", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Paukn Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2979, + "callsign": "BARTHS", + "codeHub": "", + "codeIataAirline": "PV*", + "codeIcaoAirline": "BTH", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Saint Barthelemy", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2980, + "callsign": "GERMAN WINGS", + "codeHub": "MUC", + "codeIataAirline": "PW", + "codeIcaoAirline": "KFK", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "German Wings", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2981, + "callsign": "PAC WEST", + "codeHub": "YVR", + "codeIataAirline": "PW", + "codeIcaoAirline": "PWA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Western Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2982, + "callsign": "", + "codeHub": "", + "codeIataAirline": "PW*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pine State Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2983, + "callsign": "PRESTAIR", + "codeHub": "", + "codeIataAirline": "PX", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pressed Steel Co. Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2984, + "callsign": "PARAGUAYA", + "codeHub": "ASU", + "codeIataAirline": "PZ", + "codeIcaoAirline": "LAP", + "codeIso2Country": "PY", + "founding": 0, + "iataPrefixAccounting": "692", + "nameAirline": "TAM - Transportes Aereos del Mercosur Sociedad Anonima", + "nameCountry": "Paraguay", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2985, + "callsign": "", + "codeHub": "YQB", + "codeIataAirline": "Q0", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quebecair Express", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2986, + "callsign": "", + "codeHub": "", + "codeIataAirline": "Q0*", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quebecair Express", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2987, + "callsign": "", + "codeHub": "", + "codeIataAirline": "Q1", + "codeIcaoAirline": "", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PT. Sqiva Sistem", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2988, + "callsign": "MINES", + "codeHub": "LUN", + "codeIataAirline": "Q3", + "codeIcaoAirline": "MAZ", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "391", + "nameAirline": "Mines Air Services Zambia", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2989, + "callsign": "", + "codeHub": "", + "codeIataAirline": "Q3", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Anguilla Air Services, Ltd", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2990, + "callsign": "SWAZI EXPRESS", + "codeHub": "MTS", + "codeIataAirline": "Q4", + "codeIcaoAirline": "SWX", + "codeIso2Country": "SZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swazi Express Airways", + "nameCountry": "Swaziland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2991, + "callsign": "STARLINK", + "codeHub": "YUL", + "codeIataAirline": "Q4", + "codeIcaoAirline": "TLK", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Starlink Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 2992, + "callsign": "MILE AIR", + "codeHub": "TKJ", + "codeIataAirline": "Q5", + "codeIcaoAirline": "MLA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "40-Mile Air, Ltd.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2993, + "callsign": "", + "codeHub": "", + "codeIataAirline": "Q5", + "codeIcaoAirline": "", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sutra Air Charter", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 2994, + "callsign": "CONDOR-PERU", + "codeHub": "LIM", + "codeIataAirline": "Q6", + "codeIcaoAirline": "CDP", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "381", + "nameAirline": "Aero-Condor", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2995, + "callsign": "", + "codeHub": "NAS", + "codeIataAirline": "Q7", + "codeIcaoAirline": "SBM", + "codeIso2Country": "BS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SkyBahamas Airlines", + "nameCountry": "Bahamas", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2996, + "callsign": "SOBELAIR", + "codeHub": "", + "codeIataAirline": "Q7", + "codeIcaoAirline": "SLR", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sobelair", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 2997, + "callsign": "", + "codeHub": "CNS", + "codeIataAirline": "Q7*", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Queensland Regional Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2998, + "callsign": "", + "codeHub": "", + "codeIataAirline": "Q9", + "codeIcaoAirline": "AFU", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Afrinat International Airlines", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 2999, + "callsign": "INTERBRASIL", + "codeHub": "BSB", + "codeIataAirline": "Q9", + "codeIcaoAirline": "ITB", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "151", + "nameAirline": "Interbrasil Star", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3000, + "callsign": "LIAISON", + "codeHub": "YBC", + "codeIataAirline": "Q9", + "codeIcaoAirline": "LIZ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Liaison", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3001, + "callsign": "NIGER ARIK", + "codeHub": "NIM", + "codeIataAirline": "Q9", + "codeIcaoAirline": "NAK", + "codeIso2Country": "NE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arik Niger", + "nameCountry": "Niger", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3002, + "callsign": "", + "codeHub": "YXD", + "codeIataAirline": "Q9", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quikair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3003, + "callsign": "", + "codeHub": "", + "codeIataAirline": "Q9*", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "QuikAir", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3004, + "callsign": "", + "codeHub": "", + "codeIataAirline": "Q9*", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Jet M.G.", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3005, + "callsign": "AFRICAN EXPRESS", + "codeHub": "", + "codeIataAirline": "QA", + "codeIcaoAirline": "AEK", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "African Express Airways", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3006, + "callsign": "CLICK", + "codeHub": "MID", + "codeIataAirline": "QA", + "codeIcaoAirline": "CBE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "723", + "nameAirline": "Mexicana Click", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3007, + "callsign": "QUEBEC ALPHA", + "codeHub": "", + "codeIataAirline": "QA", + "codeIcaoAirline": "CIT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter City Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3008, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QA", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alidair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3009, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QA*", + "codeIcaoAirline": "SLT", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "321", + "nameAirline": "Starlight Airline", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3010, + "callsign": "AIR ALMA", + "codeHub": "YTF", + "codeIataAirline": "QB", + "codeIcaoAirline": "AAJ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Alma", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3011, + "callsign": "QUEBECAIR", + "codeHub": "YUL", + "codeIataAirline": "QB", + "codeIcaoAirline": "QBA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quebecair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3012, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QB", + "codeIcaoAirline": "", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bisec", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3013, + "callsign": "AIR ZAIRE", + "codeHub": "NLO", + "codeIataAirline": "QC", + "codeIcaoAirline": "AZR", + "codeIso2Country": "ZR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Zaire", + "nameCountry": "Zaire", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3014, + "callsign": "AIR CORRIDOR", + "codeHub": "APL", + "codeIataAirline": "QC", + "codeIcaoAirline": "CRD", + "codeIso2Country": "MZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Corridor", + "nameCountry": "Mozambique", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3015, + "callsign": "DOBROLET", + "codeHub": "SVO", + "codeIataAirline": "QD", + "codeIcaoAirline": "DBR", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dobrolet", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3016, + "callsign": "AIR LIMOUSIN", + "codeHub": "LIG", + "codeIataAirline": "QD", + "codeIcaoAirline": "LIM", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Limousin", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3017, + "callsign": "", + "codeHub": "MVD", + "codeIataAirline": "QD", + "codeIcaoAirline": "", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3018, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QD", + "codeIcaoAirline": "", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes A�reas Salvador", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3019, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QD", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dobrolet", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3020, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QD", + "codeIcaoAirline": "", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Atlantic", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3021, + "callsign": "SADIA", + "codeHub": "", + "codeIataAirline": "QD", + "codeIcaoAirline": "", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sadia", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3022, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QD*", + "codeIcaoAirline": "QWA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Qwestair", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3023, + "callsign": "CIGIGNE", + "codeHub": "MLH", + "codeIataAirline": "QE", + "codeIcaoAirline": "ECC", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European Continental Airways (ECA)", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3024, + "callsign": "FARS QESHM", + "codeHub": "GSM", + "codeIataAirline": "QE", + "codeIcaoAirline": "QFZ", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "721", + "nameAirline": "Fars Qeshm Airlines", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3025, + "callsign": "AIR MOOREA", + "codeHub": "PPT", + "codeIataAirline": "QE", + "codeIcaoAirline": "TAH", + "codeIso2Country": "PF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Moorea", + "nameCountry": "French Polynesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3026, + "callsign": "GULF TRANS", + "codeHub": "", + "codeIataAirline": "QG", + "codeIcaoAirline": "GAT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TransOcean Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3027, + "callsign": "SKAT", + "codeHub": "", + "codeIataAirline": "QG", + "codeIcaoAirline": "", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Seychelles-Kilimanjaro Air Transport", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3028, + "callsign": "PALM", + "codeHub": "", + "codeIataAirline": "QH", + "codeIcaoAirline": "FLA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Florida", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3029, + "callsign": "", + "codeHub": "MIA", + "codeIataAirline": "QH", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Florida (1971)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3030, + "callsign": "DOMINICAN", + "codeHub": "", + "codeIataAirline": "QI", + "codeIcaoAirline": "CIM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "110", + "nameAirline": "Caribair", + "nameCountry": "dominicanrep", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3031, + "callsign": "ITALJET", + "codeHub": "", + "codeIataAirline": "QJ", + "codeIcaoAirline": "ITJ", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ItalJet", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3032, + "callsign": "PARAMOUNT", + "codeHub": "BRS", + "codeIataAirline": "QJ", + "codeIcaoAirline": "PAT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Paramount Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3033, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QJ", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Airways Inc.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3034, + "callsign": "AEROMAR", + "codeHub": "", + "codeIataAirline": "QK", + "codeIcaoAirline": "QKL", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromaritime", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3035, + "callsign": "GULFALCON", + "codeHub": "SHJ", + "codeIataAirline": "QL", + "codeIcaoAirline": "GLN", + "codeIso2Country": "SZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Gulf Falcon", + "nameCountry": "Swaziland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3036, + "callsign": "LESOTAIR", + "codeHub": "MSU", + "codeIataAirline": "QL", + "codeIcaoAirline": "LAI", + "codeIso2Country": "LS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lesotho Airways", + "nameCountry": "Lesotho", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3037, + "callsign": "SERENDIB", + "codeHub": "RML", + "codeIataAirline": "QL", + "codeIcaoAirline": "RNL", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Serendib Express", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3038, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QL", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "782", + "nameAirline": "Linea Aerea De Servicio Ejecutivo Regional Laser C.A", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3039, + "callsign": "", + "codeHub": "MCM", + "codeIataAirline": "QM", + "codeIcaoAirline": "", + "codeIso2Country": "MC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Monacair", + "nameCountry": "Monaco", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3040, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QN", + "codeIcaoAirline": "AOM", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Outre Mer", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3041, + "callsign": "", + "codeHub": "YMX", + "codeIataAirline": "QN", + "codeIcaoAirline": "ROY", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "498", + "nameAirline": "Royal Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3042, + "callsign": "", + "codeHub": "CNS", + "codeIataAirline": "QN", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Queensland", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3043, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QN", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bush Pilots Airways", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3044, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QN*", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ord Air Charter", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3045, + "callsign": "BAR HARBOR", + "codeHub": "BOS", + "codeIataAirline": "QO", + "codeIcaoAirline": "AJC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bar Harbor Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3046, + "callsign": "QUANTUM", + "codeHub": "PMI", + "codeIataAirline": "QO", + "codeIcaoAirline": "QTM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quantum Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3047, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QO", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Maroochy Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3048, + "callsign": "ORIGIN", + "codeHub": "NSN", + "codeIataAirline": "QO*", + "codeIcaoAirline": "OGN", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Origin Pacific Airways", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3049, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QO*", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Airways RTZ", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3050, + "callsign": "CASPAIR", + "codeHub": "", + "codeIataAirline": "QP", + "codeIcaoAirline": "SAL", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caspair", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3051, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QP", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Starlight Airline", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3052, + "callsign": "QUISQUEYANA", + "codeHub": "SDQ", + "codeIataAirline": "QQ", + "codeIcaoAirline": "QAS", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovias Quisqueyana", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3053, + "callsign": "RENO AIR", + "codeHub": "RNO", + "codeIataAirline": "QQ", + "codeIcaoAirline": "ROA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Reno Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3054, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QR", + "codeIcaoAirline": "", + "codeIso2Country": "CF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centrafrique", + "nameCountry": "Central African Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3055, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QS", + "codeIcaoAirline": "QSA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Eastern International", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3056, + "callsign": "ZEBRA", + "codeHub": "", + "codeIataAirline": "QS", + "codeIcaoAirline": "QSC", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "African Safari Airways", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3057, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QS", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 2004, + "iataPrefixAccounting": "", + "nameAirline": "SmartWings", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3058, + "callsign": "QUEBEC TANGO", + "codeHub": "DUB", + "codeIataAirline": "QT", + "codeIcaoAirline": "ATT", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aer Turas", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3059, + "callsign": "", + "codeHub": "CNS", + "codeIataAirline": "QT", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Pacific Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3060, + "callsign": "", + "codeHub": "MAG", + "codeIataAirline": "QT", + "codeIcaoAirline": "", + "codeIso2Country": "PG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Air (Papua New Guinea)", + "nameCountry": "Papua New Guinea", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3061, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QT", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter City Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3062, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QT", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tampa Cargo S.A.S", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3063, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QT*", + "codeIcaoAirline": "", + "codeIso2Country": "PG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Air", + "nameCountry": "Papua New Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3064, + "callsign": "UGANDA", + "codeHub": "EBB", + "codeIataAirline": "QU", + "codeIcaoAirline": "UGA", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Uganda Airlines", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3065, + "callsign": "", + "codeHub": "VKO", + "codeIataAirline": "QU", + "codeIcaoAirline": "", + "codeIso2Country": "RU", + "founding": 2008, + "iataPrefixAccounting": "", + "nameAirline": "UTair - Ukraine Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3066, + "callsign": "CRANE", + "codeHub": "EBB", + "codeIataAirline": "QU*", + "codeIcaoAirline": "UGX", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East Afrian Airlines", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3067, + "callsign": "", + "codeHub": "CDG", + "codeIataAirline": "QV", + "codeIcaoAirline": "QKL", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromaritime International", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3068, + "callsign": "BLUE WINGS", + "codeHub": "DUS", + "codeIataAirline": "QW", + "codeIcaoAirline": "BWG", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "49", + "nameAirline": "Blue Wings", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3069, + "callsign": "INTER ISLAND", + "codeHub": "", + "codeIataAirline": "QW", + "codeIcaoAirline": "IES", + "codeIso2Country": "GD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter-Island Air Services", + "nameCountry": "Grenada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3070, + "callsign": "SAARLAND", + "codeHub": "", + "codeIataAirline": "QW", + "codeIcaoAirline": "SLL", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saarland Airlines", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3071, + "callsign": "", + "codeHub": "", + "codeIataAirline": "QW", + "codeIcaoAirline": "", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mines Air Services", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3072, + "callsign": "TRANSAIR-SUISSE", + "codeHub": "", + "codeIataAirline": "QX", + "codeIcaoAirline": "", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transair", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3073, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "QY", + "codeIcaoAirline": "RXA", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arax Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3074, + "callsign": "SAFARIAIR", + "codeHub": "", + "codeIataAirline": "QY", + "codeIcaoAirline": "", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Safari Air Services", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3075, + "callsign": "ZAMBIA", + "codeHub": "LUN", + "codeIataAirline": "QZ", + "codeIcaoAirline": "ZAC", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zambia Airways", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3076, + "callsign": "", + "codeHub": "CGK", + "codeIataAirline": "QZ", + "codeIcaoAirline": "", + "codeIso2Country": "ID", + "founding": 2004, + "iataPrefixAccounting": "", + "nameAirline": "AirAsia Indonesia", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3077, + "callsign": "ROYAL PAKISTAN", + "codeHub": "KHI", + "codeIataAirline": "R0", + "codeIcaoAirline": "RPK", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Airlines", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3078, + "callsign": "", + "codeHub": "", + "codeIataAirline": "R1", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "407", + "nameAirline": "Zapways, Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3079, + "callsign": "", + "codeHub": "", + "codeIataAirline": "R1", + "codeIcaoAirline": "", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sirin", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3080, + "callsign": "ORENBURG", + "codeHub": "REN", + "codeIataAirline": "R2", + "codeIcaoAirline": "ORB", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "291", + "nameAirline": "Orenair", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3081, + "callsign": "ARMENIAN", + "codeHub": "EVN", + "codeIataAirline": "R3", + "codeIcaoAirline": "RME", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "956", + "nameAirline": "Armenian Airlines", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3082, + "callsign": "RELIABLE", + "codeHub": "SHJ", + "codeIataAirline": "R4", + "codeIcaoAirline": "RLB", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "827", + "nameAirline": "RUS Aviation", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3083, + "callsign": "RUSSIA", + "codeHub": "", + "codeIataAirline": "R4", + "codeIcaoAirline": "SDM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "948", + "nameAirline": "State Transport Company of Russia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3084, + "callsign": "", + "codeHub": "", + "codeIataAirline": "R4", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Reliable Unique Services Aviation L", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3085, + "callsign": "", + "codeHub": "KGF", + "codeIataAirline": "R4*", + "codeIcaoAirline": "TUX", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tulpar Avia Service", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3086, + "callsign": "MALTA CHARTER", + "codeHub": "MLA", + "codeIataAirline": "R5", + "codeIcaoAirline": "MAC", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Malta Air Charter Company", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3087, + "callsign": "", + "codeHub": "LPK", + "codeIataAirline": "R6", + "codeIcaoAirline": "UVL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orel Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3088, + "callsign": "", + "codeHub": "", + "codeIataAirline": "R6", + "codeIcaoAirline": "", + "codeIso2Country": "GT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RACSA", + "nameCountry": "Guatemala", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3089, + "callsign": "AIR SRPSKA", + "codeHub": "BNX", + "codeIataAirline": "R6*", + "codeIcaoAirline": "SBK", + "codeIso2Country": "BA", + "founding": 0, + "iataPrefixAccounting": "207", + "nameAirline": "Air Srpska", + "nameCountry": "Bosnia and Herzegovina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3090, + "callsign": "", + "codeHub": "", + "codeIataAirline": "R6*", + "codeIcaoAirline": "", + "codeIso2Country": "GT", + "founding": 0, + "iataPrefixAccounting": "478", + "nameAirline": "RACSA Airlines", + "nameCountry": "Guatemala", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3091, + "callsign": "", + "codeHub": "", + "codeIataAirline": "R7*", + "codeIcaoAirline": "", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Unitpool", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3092, + "callsign": "", + "codeHub": "", + "codeIataAirline": "R7*", + "codeIcaoAirline": "", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CHEP Aerospace Solutions Switzerland", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3093, + "callsign": "KYRGYZ", + "codeHub": "FRU", + "codeIataAirline": "R8", + "codeIcaoAirline": "KGA", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kyrgyzstan Airlines", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3094, + "callsign": "", + "codeHub": "", + "codeIataAirline": "R8", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sundance Air Venezuela S.A.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3095, + "callsign": "REGULJAIR", + "codeHub": "", + "codeIataAirline": "R8*", + "codeIcaoAirline": "REF", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Reguljair", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3096, + "callsign": "ROBLEX", + "codeHub": "SIG", + "codeIataAirline": "R9", + "codeIcaoAirline": "ROX", + "codeIso2Country": "PR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Roblex Aviation", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3097, + "callsign": "TAFI", + "codeHub": "FOR", + "codeIataAirline": "R9", + "codeIcaoAirline": "TSD", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAF Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3098, + "callsign": "AIR CAMAI", + "codeHub": "", + "codeIataAirline": "R9*", + "codeIcaoAirline": "CAM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "451", + "nameAirline": "Camai Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3099, + "callsign": "REPUBLIC", + "codeHub": "MSP", + "codeIataAirline": "RC", + "codeIcaoAirline": "REP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Republic Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3100, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RC", + "codeIcaoAirline": "", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Air Cambodge", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3101, + "callsign": "AIRLIFT", + "codeHub": "MIA", + "codeIataAirline": "RD", + "codeIcaoAirline": "AIR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlift International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3102, + "callsign": "", + "codeHub": "IKT", + "codeIataAirline": "RD", + "codeIcaoAirline": "IAE", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IrAero Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3103, + "callsign": "AVIANOVA", + "codeHub": "OLB", + "codeIataAirline": "RD", + "codeIcaoAirline": "NOV", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avianova", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3104, + "callsign": "REDJET", + "codeHub": "BGI", + "codeIataAirline": "RD", + "codeIcaoAirline": "RDJ", + "codeIso2Country": "BB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "REDJet Caribbean Ltd", + "nameCountry": "Barbados", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3105, + "callsign": "RYAN INTERNATIONAL", + "codeHub": "ICT", + "codeIataAirline": "RD", + "codeIcaoAirline": "RYN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ryan International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter,virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 3106, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RD", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alderney Air Ferries / Metropolitan Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3107, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RD", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Riddle Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3108, + "callsign": "AEROCANCUN", + "codeHub": "CUN", + "codeIataAirline": "RE", + "codeIcaoAirline": "ACU", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocancun", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3109, + "callsign": "AMEVIA", + "codeHub": "", + "codeIataAirline": "RE", + "codeIcaoAirline": "", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Americana de Aviacion", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3110, + "callsign": "FLO WEST", + "codeHub": "MIA", + "codeIataAirline": "RF", + "codeIcaoAirline": "FWL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "330", + "nameAirline": "Florida West International Airways,", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3111, + "callsign": "", + "codeHub": "AUH", + "codeIataAirline": "RF", + "codeIcaoAirline": "", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Emirates Air Services", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3112, + "callsign": "RHOFLIGHT", + "codeHub": "", + "codeIataAirline": "RF", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rhodesian Air Services", + "nameCountry": "Rhodesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3113, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RF*", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ord Air Charter", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3114, + "callsign": "VARIG", + "codeHub": "GIG", + "codeIataAirline": "RG", + "codeIcaoAirline": "VRG", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "42", + "nameAirline": "Varig", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3115, + "callsign": "", + "codeHub": "GIG", + "codeIataAirline": "RG", + "codeIcaoAirline": "VRN", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VRG Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3116, + "callsign": "GIONNAIR", + "codeHub": "", + "codeIataAirline": "RH", + "codeIcaoAirline": "GIO", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regionnair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3117, + "callsign": "", + "codeHub": "BCN", + "codeIataAirline": "RH", + "codeIcaoAirline": "MDN", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meridiana Espana", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3118, + "callsign": "PUBLIC EXPRESS", + "codeHub": "CGK", + "codeIataAirline": "RH", + "codeIcaoAirline": "RPH", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Republic Express Airlines", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3119, + "callsign": "RHODESIA", + "codeHub": "", + "codeIataAirline": "RH", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Rhodesia", + "nameCountry": "Rhodesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3120, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RH", + "codeIcaoAirline": "", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Zimbabwe", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3121, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RH", + "codeIcaoAirline": "", + "codeIso2Country": "BS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regal Bahamas International Airlines", + "nameCountry": "Bahamas", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3122, + "callsign": "SHERWOOD", + "codeHub": "GRZ", + "codeIataAirline": "RH*", + "codeIcaoAirline": "RHA", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Robin Hood Aviation", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3123, + "callsign": "MANDALA", + "codeHub": "CGK", + "codeIataAirline": "RI", + "codeIcaoAirline": "MDL", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mandala Airlines", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3124, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RI", + "codeIcaoAirline": "", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rutas Internacionales Peruanas (RIPSA)", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3125, + "callsign": "AIRAFRIC", + "codeHub": "ABJ", + "codeIataAirline": "RK", + "codeIcaoAirline": "RKA", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "92", + "nameAirline": "Air Afrique", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3126, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RK", + "codeIcaoAirline": "", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Region-Airline", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3127, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RK", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyview Airways Company Limited dba Skyview", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3128, + "callsign": "KHMER AIR", + "codeHub": "PNH", + "codeIataAirline": "RK*", + "codeIcaoAirline": "RKH", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Khmer Airlines", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3129, + "callsign": "ENVOY", + "codeHub": "CWL", + "codeIataAirline": "RL", + "codeIcaoAirline": "AWD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airworld", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3130, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RL", + "codeIcaoAirline": "", + "codeIso2Country": "PR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Charter", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3131, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RL", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "E.S. & A. Robinson (Holdings) Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3132, + "callsign": "PHNOM-PENH AIR", + "codeHub": "PNH", + "codeIataAirline": "RL*", + "codeIcaoAirline": "PPW", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Phnom Penh Airways", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3133, + "callsign": "MCALPINE", + "codeHub": "", + "codeIataAirline": "RM", + "codeIcaoAirline": "MAL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "McAlpine Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3134, + "callsign": "MOLDOVA INTERNATIONAL", + "codeHub": "", + "codeIataAirline": "RM", + "codeIcaoAirline": "MLV", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "283", + "nameAirline": "Air Moldova International", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3135, + "callsign": "", + "codeHub": "EVN", + "codeIataAirline": "RM", + "codeIcaoAirline": "NGT", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "437", + "nameAirline": "Aircompany Armenia LLC", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3136, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RM", + "codeIcaoAirline": "", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fairways Rotterdam", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3137, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RM*", + "codeIcaoAirline": "", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Air", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3138, + "callsign": "EURALAIR HORIZONS", + "codeHub": "LBG", + "codeIataAirline": "RN", + "codeIcaoAirline": "EUH", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Horizons", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3139, + "callsign": "BLUE GREEN", + "codeHub": "LGK", + "codeIataAirline": "RN", + "codeIcaoAirline": "RKT", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "639", + "nameAirline": "Rayani Air Sdn Bhd", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3140, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RN*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sum Air Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3141, + "callsign": "CHAUTAUQUA", + "codeHub": "IND", + "codeIataAirline": "RP", + "codeIcaoAirline": "CHQ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "363", + "nameAirline": "Chautauqua Airlines Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3142, + "callsign": "PETREL", + "codeHub": "", + "codeIataAirline": "RP", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Antilles Air Service", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3143, + "callsign": "ENGIADINA", + "codeHub": "BRN", + "codeIataAirline": "RQ", + "codeIcaoAirline": "RQX", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swisswings Airlines", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3144, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RQ", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Synthetic Rubber Co. Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3145, + "callsign": "ROMEO QUEBEC", + "codeHub": "", + "codeIataAirline": "RQ", + "codeIcaoAirline": "", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arab Wing Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3146, + "callsign": "AEROFREIGHT", + "codeHub": "DME", + "codeIataAirline": "RS", + "codeIcaoAirline": "FRT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerofreight Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3147, + "callsign": "CONTAVIA", + "codeHub": "", + "codeIataAirline": "RS", + "codeIcaoAirline": "ICT", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intercontinental colombia - Intercontinental de Aviacion", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3148, + "callsign": "", + "codeHub": "MCT", + "codeIataAirline": "RS", + "codeIcaoAirline": "ORF", + "codeIso2Country": "OM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oman Royal Flight", + "nameCountry": "Oman", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 3149, + "callsign": "AERSA", + "codeHub": "", + "codeIataAirline": "RS", + "codeIcaoAirline": "SFA", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotransportes Entre Rios", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3150, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RS", + "codeIcaoAirline": "", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropesca Colombia", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3151, + "callsign": "OMAN", + "codeHub": "", + "codeIataAirline": "RS*", + "codeIcaoAirline": "ORF", + "codeIso2Country": "OM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Flight of Oman", + "nameCountry": "Oman", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3152, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RT", + "codeIcaoAirline": "LRT", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lincoln Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3153, + "callsign": "RAINDROP", + "codeHub": "HRE", + "codeIataAirline": "RT", + "codeIcaoAirline": "RAT", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rainbow Airlines (Pvt) Ltd", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 3154, + "callsign": "RAKAIR", + "codeHub": "RKT", + "codeIataAirline": "RT", + "codeIcaoAirline": "RKM", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RAK Airways", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3155, + "callsign": "TUNGARU", + "codeHub": "", + "codeIataAirline": "RT", + "codeIcaoAirline": "TUN", + "codeIso2Country": "KI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Tungaru", + "nameCountry": "Kiribati", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3156, + "callsign": "", + "codeHub": "TOS", + "codeIataAirline": "RT", + "codeIcaoAirline": "", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norving", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3157, + "callsign": "TAT", + "codeHub": "", + "codeIataAirline": "RT", + "codeIcaoAirline": "", + "codeIso2Country": "TL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes A�reos de Timor", + "nameCountry": "East Timor", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3158, + "callsign": "", + "codeHub": "RHE", + "codeIataAirline": "RT*", + "codeIcaoAirline": "RTQ", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Turquoise", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3159, + "callsign": "CTA", + "codeHub": "GVA", + "codeIataAirline": "RU", + "codeIcaoAirline": "CTA", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CTA", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3160, + "callsign": "", + "codeHub": "PLS", + "codeIataAirline": "RU", + "codeIcaoAirline": "SKI", + "codeIso2Country": "TC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyking Airlines", + "nameCountry": "Turks and Caicos Islands", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3161, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RU", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rousseau Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3162, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RU", + "codeIcaoAirline": "", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SATA", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3163, + "callsign": "SKYKING", + "codeHub": "", + "codeIataAirline": "RU*", + "codeIcaoAirline": "SKI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TCI Skyking", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3164, + "callsign": "REEVE", + "codeHub": "ANC", + "codeIataAirline": "RV", + "codeIcaoAirline": "RVV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Reeve Aleutian Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3165, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RV", + "codeIcaoAirline": "VAO", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Venezolana", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3166, + "callsign": "", + "codeHub": "THR", + "codeIataAirline": "RV", + "codeIcaoAirline": "", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caspian Airlines", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3167, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RV", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "8165343 Canada Inc. dba Air Canada", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3168, + "callsign": "AFRICAWORLD", + "codeHub": "", + "codeIataAirline": "RV*", + "codeIcaoAirline": "AFI", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AfricaOne", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3169, + "callsign": "RHEINLAND", + "codeHub": "", + "codeIataAirline": "RW", + "codeIcaoAirline": "RLD", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "586", + "nameAirline": "Rheinland Air Service", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3170, + "callsign": "GIULA", + "codeHub": "", + "codeIataAirline": "RW", + "codeIcaoAirline": "RWA", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aligiulia", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3171, + "callsign": "", + "codeHub": "BKK", + "codeIataAirline": "RW", + "codeIcaoAirline": "TRB", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thai Regional", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3172, + "callsign": "HUGHES-AIR", + "codeHub": "SFO", + "codeIataAirline": "RW", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hughes Airwest", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3173, + "callsign": "", + "codeHub": "SFO", + "codeIataAirline": "RW", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air West (USA)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3174, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RW", + "codeIcaoAirline": "", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ALAS de transporte Internacional", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3175, + "callsign": "HUGHES AIR", + "codeHub": "", + "codeIataAirline": "RW", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hughes Air Corporartion", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3176, + "callsign": "AVEX", + "codeHub": "", + "codeIataAirline": "RX", + "codeIcaoAirline": "AEH", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviaexpress", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3177, + "callsign": "INDEPENDENT", + "codeHub": "", + "codeIataAirline": "RX", + "codeIcaoAirline": "BXH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Independent Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3178, + "callsign": "REDWING AIR", + "codeHub": "", + "codeIataAirline": "RX*", + "codeIcaoAirline": "RWG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Redwing Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3179, + "callsign": "SKYRIDER", + "codeHub": "CGK", + "codeIataAirline": "RY", + "codeIcaoAirline": "PRQ", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Royale Airways", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3180, + "callsign": "ROMEO YANKEE", + "codeHub": "", + "codeIataAirline": "RY", + "codeIcaoAirline": "REL", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rotterdam Airlines", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3181, + "callsign": "", + "codeHub": "KGL", + "codeIataAirline": "RY", + "codeIcaoAirline": "RWD", + "codeIso2Country": "RW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Rwanda", + "nameCountry": "Rwanda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3182, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RY", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arista International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3183, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RY", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Redcoat Air Cargo", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3184, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RY", + "codeIcaoAirline": "", + "codeIso2Country": "LA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Air Laos", + "nameCountry": "Laos", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3185, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RY", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arista International Airlines (AIA)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3186, + "callsign": "ECHO EXPRESS", + "codeHub": "ARN", + "codeIataAirline": "RY*", + "codeIcaoAirline": "EXC", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European Executive Express", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3187, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RZ", + "codeIcaoAirline": "LRS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SANSA Regional", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3188, + "callsign": "PAN AM", + "codeHub": "PHL", + "codeIataAirline": "RZ", + "codeIcaoAirline": "PXX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan Am Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3189, + "callsign": "", + "codeHub": "PHL", + "codeIataAirline": "RZ", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans World Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3190, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RZ", + "codeIcaoAirline": "", + "codeIso2Country": "BW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Desert Airways Botswana", + "nameCountry": "Botswana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3191, + "callsign": "", + "codeHub": "", + "codeIataAirline": "RZ", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "684", + "nameAirline": "Servicios Aereos Nacionales S.A. SANSA", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3192, + "callsign": "", + "codeHub": "SJO", + "codeIataAirline": "RZ*", + "codeIcaoAirline": "LRS", + "codeIso2Country": "CR", + "founding": 0, + "iataPrefixAccounting": "503", + "nameAirline": "Servicios Aereos Nacionales SANSA", + "nameCountry": "Costa Rica", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3193, + "callsign": "SLOK GAMBIA", + "codeHub": "BJL", + "codeIataAirline": "S0*", + "codeIcaoAirline": "OKS", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Slok Air International", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3194, + "callsign": "", + "codeHub": "FIH", + "codeIataAirline": "S1", + "codeIcaoAirline": "", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Stellar Airways", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3195, + "callsign": "", + "codeHub": "", + "codeIataAirline": "S1", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lufthansa Systems AG", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3196, + "callsign": "", + "codeHub": "KGF", + "codeIataAirline": "S3", + "codeIcaoAirline": "SND", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SAN Air Company", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3197, + "callsign": "", + "codeHub": "", + "codeIataAirline": "S3*", + "codeIcaoAirline": "", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "San Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3198, + "callsign": "", + "codeHub": "KPLB", + "codeIataAirline": "S5", + "codeIcaoAirline": "MNE", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Metro Air Northeast", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3199, + "callsign": "", + "codeHub": "KPLB", + "codeIataAirline": "S5", + "codeIcaoAirline": "PAI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brockway Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3200, + "callsign": "SAEAGA", + "codeHub": "BKI", + "codeIataAirline": "S5", + "codeIcaoAirline": "SGG", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saeaga Airlines", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3201, + "callsign": "SHABAIR", + "codeHub": "FBM", + "codeIataAirline": "S5", + "codeIcaoAirline": "SHB", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shabair", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3202, + "callsign": "", + "codeHub": "", + "codeIataAirline": "S5*", + "codeIcaoAirline": "TSJ", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trast Aero", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3203, + "callsign": "SIFLY", + "codeHub": "AOI", + "codeIataAirline": "S6", + "codeIcaoAirline": "KWY", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SiFly", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3204, + "callsign": "", + "codeHub": "", + "codeIataAirline": "S6", + "codeIcaoAirline": "", + "codeIso2Country": "GP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air St. Martin", + "nameCountry": "Guadeloupe", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3205, + "callsign": "", + "codeHub": "", + "codeIataAirline": "S6*", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SAE SWE Aviation Europe", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3206, + "callsign": "ELKA", + "codeHub": "TLL", + "codeIataAirline": "S8", + "codeIcaoAirline": "ELK", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "520", + "nameAirline": "ELK Airways", + "nameCountry": "Estonia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3207, + "callsign": "", + "codeHub": "PCN", + "codeIataAirline": "S8", + "codeIcaoAirline": "SDA", + "codeIso2Country": "NZ", + "founding": 1986, + "iataPrefixAccounting": "", + "nameAirline": "Sounds Air Travel & Tourism Ltd.", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3208, + "callsign": "", + "codeHub": "", + "codeIataAirline": "S8", + "codeIcaoAirline": "SWZ", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skywise Airlines", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3209, + "callsign": "CHARLAN", + "codeHub": "HLA", + "codeIataAirline": "S8*", + "codeIcaoAirline": "CAH", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Charlan Air Charter", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3210, + "callsign": "", + "codeHub": "", + "codeIataAirline": "S8*", + "codeIcaoAirline": "", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sama Air", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3211, + "callsign": "DUMA", + "codeHub": "NBO", + "codeIataAirline": "S9", + "codeIcaoAirline": "HSA", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "895", + "nameAirline": "East African Safari Air", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3212, + "callsign": "ESKA", + "codeHub": "", + "codeIataAirline": "S9", + "codeIcaoAirline": "SKU", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SK Air", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3213, + "callsign": "SKY AIR", + "codeHub": "", + "codeIataAirline": "S9", + "codeIcaoAirline": "SYW", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "535", + "nameAirline": "Sky Air World", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3214, + "callsign": "SWING", + "codeHub": "ARN", + "codeIataAirline": "S9*", + "codeIcaoAirline": "SWL", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SAE SWE Aviation Europe", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3215, + "callsign": "SEABOARD", + "codeHub": "JFK", + "codeIataAirline": "SB", + "codeIcaoAirline": "SEW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Seaboard World Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3216, + "callsign": "CRUZEIRO", + "codeHub": "GIG", + "codeIataAirline": "SC", + "codeIcaoAirline": "CRZ", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicos Aereos Cruzeiro Do Sul", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3217, + "callsign": "TULIP", + "codeHub": "", + "codeIataAirline": "SE", + "codeIcaoAirline": "HAO", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Holland Aero Leasing", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3218, + "callsign": "", + "codeHub": "CDG", + "codeIataAirline": "SE", + "codeIcaoAirline": "SEU", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Airlines (France)", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3219, + "callsign": "ALFA", + "codeHub": "", + "codeIataAirline": "SE", + "codeIcaoAirline": "", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Flecha Austral Ltda.", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3220, + "callsign": "", + "codeHub": "", + "codeIataAirline": "SE", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wings of Alaska", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3221, + "callsign": "", + "codeHub": "", + "codeIataAirline": "SE", + "codeIcaoAirline": "", + "codeIso2Country": "AS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Samoa Aviation", + "nameCountry": "American Samoa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3222, + "callsign": "AIR CHARTER", + "codeHub": "ORY", + "codeIataAirline": "SF", + "codeIcaoAirline": "ACF", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Societe Air Charter SAFA", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3223, + "callsign": "", + "codeHub": "", + "codeIataAirline": "SF", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soci�t� Aerienne Francaise d'Affretements", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3224, + "callsign": "AIR SARNIA", + "codeHub": "", + "codeIataAirline": "SG", + "codeIcaoAirline": "ASG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Sarnia", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3225, + "callsign": "JETSGO", + "codeHub": "YUL", + "codeIataAirline": "SG", + "codeIcaoAirline": "JGO", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetsgo", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3226, + "callsign": "SPIROW", + "codeHub": "CGK", + "codeIataAirline": "SG", + "codeIcaoAirline": "SSR", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sempati Air", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3227, + "callsign": "ALA", + "codeHub": "", + "codeIataAirline": "SG", + "codeIcaoAirline": "", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotransporte Litoral Argentino", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3228, + "callsign": "", + "codeHub": "", + "codeIataAirline": "SG", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Spacegrand", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3229, + "callsign": "FRANCE CHARTER", + "codeHub": "TLS", + "codeIataAirline": "SH", + "codeIcaoAirline": "AIS", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeris", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3230, + "callsign": "FLYBIRD", + "codeHub": "KVB", + "codeIataAirline": "SH", + "codeIcaoAirline": "FLY", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FlyMe", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3231, + "callsign": "", + "codeHub": "HLT", + "codeIataAirline": "SH", + "codeIcaoAirline": "SHA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sharp Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3232, + "callsign": "SIERRA HOTEL", + "codeHub": "TGU", + "codeIataAirline": "SH", + "codeIcaoAirline": "SHA", + "codeIso2Country": "HN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicio Aereo de Honduras (SAHSA)", + "nameCountry": "Honduras", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3233, + "callsign": "", + "codeHub": "LUX", + "codeIataAirline": "SH", + "codeIcaoAirline": "STU", + "codeIso2Country": "LU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Strategic Airlines (Luxembourg)", + "nameCountry": "Luxembourg", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3234, + "callsign": "AIR TOULOUSE", + "codeHub": "TLS", + "codeIataAirline": "SH", + "codeIcaoAirline": "TLE", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Toulouse", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3235, + "callsign": "", + "codeHub": "", + "codeIataAirline": "SH*", + "codeIcaoAirline": "", + "codeIso2Country": "VI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Airways", + "nameCountry": "U.S. Virgin Islands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3236, + "callsign": "", + "codeHub": "SHA", + "codeIataAirline": "SHA", + "codeIcaoAirline": "", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "China Eastern Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3237, + "callsign": "", + "codeHub": "LGB", + "codeIataAirline": "SI", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet America Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3238, + "callsign": "", + "codeHub": "", + "codeIataAirline": "SI", + "codeIcaoAirline": "", + "codeIso2Country": "SG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SaBer Air", + "nameCountry": "Singapore", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3239, + "callsign": "", + "codeHub": "", + "codeIataAirline": "SI", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Friesenflug", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3240, + "callsign": "", + "codeHub": "", + "codeIataAirline": "SI", + "codeIcaoAirline": "", + "codeIso2Country": "SG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saber Air of Singapore", + "nameCountry": "Singapore", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3241, + "callsign": "BLUEJET", + "codeHub": "SNN", + "codeIataAirline": "SI*", + "codeIcaoAirline": "SIH", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skynet Airlines", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3242, + "callsign": "SEAGLE", + "codeHub": "BTS", + "codeIataAirline": "SJ", + "codeIcaoAirline": "CGL", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Seagle Air", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3243, + "callsign": "FREE AIR", + "codeHub": "AKL", + "codeIataAirline": "SJ", + "codeIcaoAirline": "FOM", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Freedom Air International", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3244, + "callsign": "SOUTHERN AIR", + "codeHub": "MIA", + "codeIataAirline": "SJ", + "codeIcaoAirline": "SJM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Air Transport", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3245, + "callsign": "AVIANDINA", + "codeHub": "LIM", + "codeIataAirline": "SJ*", + "codeIcaoAirline": "VND", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "178", + "nameAirline": "Aviandina", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3246, + "callsign": "", + "codeHub": "", + "codeIataAirline": "SL", + "codeIcaoAirline": "AIA", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Atlantic", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3247, + "callsign": "ST. LUCIA EXPRESS", + "codeHub": "", + "codeIataAirline": "SL", + "codeIcaoAirline": "CSC", + "codeIso2Country": "LC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caribbean Skyways St. Lucia Express", + "nameCountry": "Saint Lucia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3248, + "callsign": "RIOSSUL", + "codeHub": "SDU", + "codeIataAirline": "SL", + "codeIcaoAirline": "RSL", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "293", + "nameAirline": "Rio Sul", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3249, + "callsign": "", + "codeHub": "VIE", + "codeIataAirline": "SL", + "codeIcaoAirline": "SHR", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Sylhet", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 3250, + "callsign": "SOUTHEAST", + "codeHub": "", + "codeIataAirline": "SL", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southeast Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3251, + "callsign": "", + "codeHub": "", + "codeIataAirline": "SL", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "310", + "nameAirline": "Thai Lion Mentari Co., Ltd.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3252, + "callsign": "", + "codeHub": "", + "codeIataAirline": "SM", + "codeIcaoAirline": "AAW", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aberdeen Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3253, + "callsign": "MANILA SKY", + "codeHub": "CRK", + "codeIataAirline": "SM", + "codeIcaoAirline": "MNP", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "976", + "nameAirline": "Spirit of Manila Airlines", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3254, + "callsign": "SIERRA MIKE", + "codeHub": "", + "codeIataAirline": "SM", + "codeIcaoAirline": "SMI", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Altair", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3255, + "callsign": "SCOFLY", + "codeHub": "", + "codeIataAirline": "SM", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southend Municipal Flying School", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3256, + "callsign": "AIR SERVICES", + "codeHub": "VIE", + "codeIataAirline": "SO", + "codeIcaoAirline": "AAS", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Austrian Air Services", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3257, + "callsign": "", + "codeHub": "", + "codeIataAirline": "SO", + "codeIcaoAirline": "AAS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunshine Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3258, + "callsign": "SOSOLISO", + "codeHub": "LOS", + "codeIataAirline": "SO", + "codeIcaoAirline": "OSL", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sosoliso Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3259, + "callsign": "SPEAR AIR", + "codeHub": "", + "codeIataAirline": "SO", + "codeIcaoAirline": "SOA", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Spear Air", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3260, + "callsign": "SWISSWORLD", + "codeHub": "", + "codeIataAirline": "SO", + "codeIcaoAirline": "SWO", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swiss World Airways", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3261, + "callsign": "", + "codeHub": "", + "codeIataAirline": "SO", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Apex Airline Public Company Limited", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3262, + "callsign": "SAT", + "codeHub": "", + "codeIataAirline": "SP", + "codeIcaoAirline": "", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sociedade Acoriana de Tranportes Aereos, Lda. (SATA)", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3263, + "callsign": "", + "codeHub": "", + "codeIataAirline": "SQ", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norcanair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3264, + "callsign": "DOMINAIR", + "codeHub": "", + "codeIataAirline": "SS", + "codeIcaoAirline": "ADM", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Dominicanas S.A.", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3265, + "callsign": "SAGITTAIR", + "codeHub": "", + "codeIataAirline": "SS", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sagitair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3266, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ST", + "codeIcaoAirline": "", + "codeIso2Country": "VN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soci�t� de Transports A�riens en Extr�me-Orient", + "nameCountry": "Vietnam", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3267, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ST*", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yanda Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3268, + "callsign": "", + "codeHub": "SVO", + "codeIataAirline": "SU*", + "codeIcaoAirline": "RCF", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "507", + "nameAirline": "Aeroflot Cargo", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3269, + "callsign": "SOW WEST", + "codeHub": "", + "codeIataAirline": "SW", + "codeIcaoAirline": "", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South West Air Transport", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3270, + "callsign": "SKYBUS", + "codeHub": "CMH", + "codeIataAirline": "SX", + "codeIcaoAirline": "SKB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skybus Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3271, + "callsign": "SKYFOX", + "codeHub": "BRN", + "codeIataAirline": "SX", + "codeIcaoAirline": "SRK", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "772", + "nameAirline": "SkyWork Airlines AG", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3272, + "callsign": "", + "codeHub": "MNL", + "codeIataAirline": "SX", + "codeIcaoAirline": "", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sterling Philippines Airways", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3273, + "callsign": "", + "codeHub": "", + "codeIataAirline": "SX", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Scottish Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3274, + "callsign": "", + "codeHub": "", + "codeIataAirline": "SX*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "906", + "nameAirline": "Skywagon", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3275, + "callsign": "SIERRA YANKEE", + "codeHub": "", + "codeIataAirline": "SY", + "codeIcaoAirline": "UHP", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United Air Service", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3276, + "callsign": "", + "codeHub": "CMR", + "codeIataAirline": "SY", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Alsace", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3277, + "callsign": "SKYWAYS", + "codeHub": "", + "codeIataAirline": "SY", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyways International", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3278, + "callsign": "CHINA SOUTHWEST", + "codeHub": "CTU", + "codeIataAirline": "SZ", + "codeIcaoAirline": "CXN", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "785", + "nameAirline": "China Southwest Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3279, + "callsign": "AIR NEPAL", + "codeHub": "KTM", + "codeIataAirline": "SZ", + "codeIcaoAirline": "NPL", + "codeIso2Country": "NP", + "founding": 0, + "iataPrefixAccounting": "855", + "nameAirline": "Air Nepal International", + "nameCountry": "Nepal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3280, + "callsign": "SUEDFLUG", + "codeHub": "MUC", + "codeIataAirline": "SZ", + "codeIcaoAirline": "SFG", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sudflug", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3281, + "callsign": "AESA", + "codeHub": "", + "codeIataAirline": "SZ", + "codeIcaoAirline": "SZA", + "codeIso2Country": "SV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas de El Salvador", + "nameCountry": "El Salvador", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3282, + "callsign": "SWALLOW", + "codeHub": "PLH", + "codeIataAirline": "SZ", + "codeIcaoAirline": "WOW", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "429", + "nameAirline": "Air Southwest", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3283, + "callsign": "", + "codeHub": "BNE", + "codeIataAirline": "T0", + "codeIcaoAirline": "SYW", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SkyAirWorld", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3284, + "callsign": "", + "codeHub": "", + "codeIataAirline": "T1", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sysops", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3285, + "callsign": "", + "codeHub": "", + "codeIataAirline": "T1", + "codeIcaoAirline": "", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tik Systems (Thailand) Co. Ltd.", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3286, + "callsign": "TABA", + "codeHub": "BEL", + "codeIataAirline": "T2", + "codeIcaoAirline": "TAB", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TABA, Transportes Aereos Da Bacia Amazonica", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3287, + "callsign": "THAI CARGO", + "codeHub": "BKK", + "codeIataAirline": "T2", + "codeIcaoAirline": "TCG", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "284", + "nameAirline": "Thai Air Cargo", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3288, + "callsign": "", + "codeHub": "", + "codeIataAirline": "T2", + "codeIcaoAirline": "TFB", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tair Airways", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3289, + "callsign": "", + "codeHub": "", + "codeIataAirline": "T2", + "codeIcaoAirline": "TOW", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AirTanker Services Limited", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3290, + "callsign": "", + "codeHub": "YQN", + "codeIataAirline": "T2", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 1973, + "iataPrefixAccounting": "", + "nameAirline": "Nakina Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3291, + "callsign": "", + "codeHub": "", + "codeIataAirline": "T2", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Art", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3292, + "callsign": "", + "codeHub": "", + "codeIataAirline": "T2", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nakina Air Service", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3293, + "callsign": "", + "codeHub": "", + "codeIataAirline": "T2*", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nakina Air Service", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3294, + "callsign": "AFRICARGO", + "codeHub": "", + "codeIataAirline": "T3", + "codeIcaoAirline": "TCG", + "codeIso2Country": "BF", + "founding": 0, + "iataPrefixAccounting": "728", + "nameAirline": "Transafricaine Air Cargo", + "nameCountry": "Burkina Faso", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3295, + "callsign": "KILROE", + "codeHub": "MAN", + "codeIataAirline": "T3*", + "codeIcaoAirline": "AKL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Kilroe", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3296, + "callsign": "HELLAS JET", + "codeHub": "ATH", + "codeIataAirline": "T4", + "codeIcaoAirline": "HEJ", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hellas Jet", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3297, + "callsign": "RHOADES EXPRESS", + "codeHub": "CLU", + "codeIataAirline": "T4", + "codeIcaoAirline": "RDS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rhoades Aviation Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3298, + "callsign": "LATTRANS", + "codeHub": "", + "codeIataAirline": "T4", + "codeIcaoAirline": "TRL", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transeast Airlines", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3299, + "callsign": "TRIP", + "codeHub": "VCP", + "codeIataAirline": "T4*", + "codeIcaoAirline": "TIB", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "661", + "nameAirline": "TRIP Linhas A�reas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3300, + "callsign": "AKHAL", + "codeHub": "", + "codeIataAirline": "T5", + "codeIcaoAirline": "AKH", + "codeIso2Country": "TM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Akhal - Turkmenistan Airlines", + "nameCountry": "Turkmenistan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3301, + "callsign": "NEXT TIME", + "codeHub": "JNB", + "codeIataAirline": "T6", + "codeIcaoAirline": "RNX", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "1Time Airline", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3302, + "callsign": "", + "codeHub": "", + "codeIataAirline": "T6", + "codeIcaoAirline": "TBH", + "codeIso2Country": "BS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trinity Air Bahamas", + "nameCountry": "Bahamas", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3303, + "callsign": "TWINCAL", + "codeHub": "", + "codeIataAirline": "T6*", + "codeIcaoAirline": "TNY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "997", + "nameAirline": "Twin Air Calypso", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3304, + "callsign": "TRASER", + "codeHub": "", + "codeIataAirline": "T7", + "codeIcaoAirline": "SRT", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircompany Trans Asian Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3305, + "callsign": "TRANSLIFT", + "codeHub": "DUB", + "codeIataAirline": "T7", + "codeIcaoAirline": "TLA", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TransAer International Airlines", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3306, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "T7", + "codeIcaoAirline": "", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Asian Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3307, + "callsign": "", + "codeHub": "", + "codeIataAirline": "T8", + "codeIcaoAirline": "MCS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MCS Aerocarga de Mexico, S.A. de CV", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3308, + "callsign": "TANEU", + "codeHub": "", + "codeIataAirline": "T8", + "codeIcaoAirline": "NQN", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos Neuquen Sociedad del Estado", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3309, + "callsign": "STA-MALI", + "codeHub": "BKO", + "codeIataAirline": "T8", + "codeIcaoAirline": "SBA", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "STA Trans African Airlines", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3310, + "callsign": "", + "codeHub": "", + "codeIataAirline": "T8", + "codeIcaoAirline": "", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "STA - Trans African Airlines", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3311, + "callsign": "WORLDWIDE", + "codeHub": "", + "codeIataAirline": "T8*", + "codeIcaoAirline": "WWI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Worldwide Jet Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3312, + "callsign": "", + "codeHub": "", + "codeIataAirline": "T8*", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Telair International", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3313, + "callsign": "WING MAN", + "codeHub": "CAI", + "codeIataAirline": "T9", + "codeIcaoAirline": "AVV", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "553", + "nameAirline": "Aviator Aviation", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3314, + "callsign": "", + "codeHub": "CCS", + "codeIataAirline": "T9", + "codeIcaoAirline": "TNW", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3315, + "callsign": "THAI STAR", + "codeHub": "DMK", + "codeIataAirline": "T9", + "codeIcaoAirline": "TSX", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thai Star Airlines", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3316, + "callsign": "STARLINE", + "codeHub": "HLF", + "codeIataAirline": "T9*", + "codeIcaoAirline": "SRL", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Varmlandsflyg", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3317, + "callsign": "", + "codeHub": "", + "codeIataAirline": "T9*", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Master Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3318, + "callsign": "", + "codeHub": "HBA", + "codeIataAirline": "TA", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tasair", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3319, + "callsign": "AIR TARA", + "codeHub": "", + "codeIataAirline": "TB", + "codeIcaoAirline": "AGP", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Tara", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3320, + "callsign": "TOBAGO EXPRESS", + "codeHub": "POS", + "codeIataAirline": "TB", + "codeIcaoAirline": "TBX", + "codeIso2Country": "TT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tobago Express", + "nameCountry": "Trinidad and Tobago", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3321, + "callsign": "US SHUTTLE", + "codeHub": "", + "codeIataAirline": "TB", + "codeIcaoAirline": "USS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "USAir Shuttle", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3322, + "callsign": "", + "codeHub": "LGA", + "codeIataAirline": "TB", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trump Shuttle", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3323, + "callsign": "", + "codeHub": "", + "codeIataAirline": "TB", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transair Sweden", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3324, + "callsign": "BEAUTY", + "codeHub": "BRU", + "codeIataAirline": "TB*", + "codeIcaoAirline": "TUB", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetairfly.com", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3325, + "callsign": "", + "codeHub": "BOG", + "codeIataAirline": "TC", + "codeIcaoAirline": "TCO", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ATC Colombia", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3326, + "callsign": "", + "codeHub": "MIA", + "codeIataAirline": "TC", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Caribbean Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3327, + "callsign": "", + "codeHub": "", + "codeIataAirline": "TC", + "codeIcaoAirline": "", + "codeIso2Country": "CR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes A�reos de Integraci�n (TAISA)", + "nameCountry": "Costa Rica", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3328, + "callsign": "ATLANTIS LINER", + "codeHub": "EVN", + "codeIataAirline": "TD", + "codeIcaoAirline": "LUR", + "codeIso2Country": "AM", + "founding": 2008, + "iataPrefixAccounting": "432", + "nameAirline": "Atlantis European Airways", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3329, + "callsign": "", + "codeHub": "TSF", + "codeIataAirline": "TD", + "codeIcaoAirline": "TEI", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TEA Italia", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3330, + "callsign": "", + "codeHub": "GRU", + "codeIataAirline": "TD", + "codeIcaoAirline": "TNS", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SAVA Cargo", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3331, + "callsign": "TRANSCARGA", + "codeHub": "", + "codeIataAirline": "TD", + "codeIcaoAirline": "", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transporte A�reo de Carga", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3332, + "callsign": "AIR ANATOLIA", + "codeHub": "IST", + "codeIataAirline": "TD*", + "codeIcaoAirline": "NTL", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GTI Havayollari A.S. Airloines, Inc.", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3333, + "callsign": "TULIPAIR", + "codeHub": "RTM", + "codeIataAirline": "TD*", + "codeIcaoAirline": "TLP", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tulip Air", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3334, + "callsign": "LITHUANIA AIR", + "codeHub": "VNO", + "codeIataAirline": "TE", + "codeIcaoAirline": "LIL", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "874", + "nameAirline": "FlyLAL", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3335, + "callsign": "", + "codeHub": "HHN", + "codeIataAirline": "TE", + "codeIcaoAirline": "TBA", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FreshLine", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3336, + "callsign": "", + "codeHub": "JKG", + "codeIataAirline": "TE", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flyglinjen", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3337, + "callsign": "", + "codeHub": "", + "codeIataAirline": "TED", + "codeIcaoAirline": "ZJ*", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Teddy Air", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3338, + "callsign": "SCANWINGS", + "codeHub": "BMA", + "codeIataAirline": "TF", + "codeIcaoAirline": "SCW", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "276", + "nameAirline": "Braathens Regional Aviation AB", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 3339, + "callsign": "", + "codeHub": "", + "codeIataAirline": "TF", + "codeIcaoAirline": "", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avioligure", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3340, + "callsign": "", + "codeHub": "", + "codeIataAirline": "TF", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia Taxi France", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3341, + "callsign": "", + "codeHub": "", + "codeIataAirline": "TF", + "codeIcaoAirline": "", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thai Flying Service", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3342, + "callsign": "", + "codeHub": "", + "codeIataAirline": "TF*", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tasman Australia Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3343, + "callsign": "", + "codeHub": "IOM", + "codeIataAirline": "TH", + "codeIcaoAirline": "MXE", + "codeIso2Country": "IM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Regional Airlines", + "nameCountry": "Isle of Man", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3344, + "callsign": "TRANSREGIONAL", + "codeHub": "LIS", + "codeIataAirline": "TH", + "codeIcaoAirline": "PDF", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LAR Transregional, Linhas Aerea Regionais", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3345, + "callsign": "THAI AIR", + "codeHub": "", + "codeIataAirline": "TH", + "codeIcaoAirline": "TAC", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thai Airways", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3346, + "callsign": "", + "codeHub": "DMK", + "codeIataAirline": "TH", + "codeIcaoAirline": "", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thai Airways (TAC)", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3347, + "callsign": "BRITISH", + "codeHub": "MAN", + "codeIataAirline": "TH*", + "codeIcaoAirline": "BRT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BA Connect", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3348, + "callsign": "TRANSMILE", + "codeHub": "SZB", + "codeIataAirline": "TH*", + "codeIcaoAirline": "TSE", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "539", + "nameAirline": "Transmile Air Services", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3349, + "callsign": "TEXAS INTERNATIONAL", + "codeHub": "", + "codeIataAirline": "TI", + "codeIcaoAirline": "TIA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Texas International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3350, + "callsign": "TAISA", + "codeHub": "", + "codeIataAirline": "TI", + "codeIcaoAirline": "TII", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAISA Transportes Aereos Internacionales S.A.", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3351, + "callsign": "", + "codeHub": "HOU", + "codeIataAirline": "TI", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Texas Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3352, + "callsign": "", + "codeHub": "HOU", + "codeIataAirline": "TI", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Texas International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3353, + "callsign": "", + "codeHub": "ORY", + "codeIataAirline": "TI", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAI - Transports Aeriens Intercontinentaux", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3354, + "callsign": "", + "codeHub": "", + "codeIataAirline": "TI", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerial Tours PTY Ltd.", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3355, + "callsign": "", + "codeHub": "", + "codeIataAirline": "TI", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transports Aeriens Intercontinentaux (TAI)", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3356, + "callsign": "TOL AIR", + "codeHub": "SJU", + "codeIataAirline": "TI*", + "codeIcaoAirline": "TOL", + "codeIso2Country": "PR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tol Air Services", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3357, + "callsign": "", + "codeHub": "OXC", + "codeIataAirline": "TJ", + "codeIcaoAirline": "GPD", + "codeIso2Country": "US", + "founding": 2001, + "iataPrefixAccounting": "492", + "nameAirline": "Tradewind Aviation, LLC", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3358, + "callsign": "", + "codeHub": "", + "codeIataAirline": "TJ", + "codeIcaoAirline": "JCS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet 24", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3359, + "callsign": "", + "codeHub": "LIN", + "codeIataAirline": "TJ", + "codeIcaoAirline": "TTS", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAS Airways", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3360, + "callsign": "TAS", + "codeHub": "", + "codeIataAirline": "TJ", + "codeIcaoAirline": "", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes A�reos Squella", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3361, + "callsign": "AEREOS SELVA", + "codeHub": "LIM", + "codeIataAirline": "TJ*", + "codeIcaoAirline": "ELV", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "735", + "nameAirline": "Transportes Aereos Nacionales de Selva (TANS)", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3362, + "callsign": "", + "codeHub": "PUG", + "codeIataAirline": "TL", + "codeIcaoAirline": "LRT", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ASA - Airlines of SA", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3363, + "callsign": "", + "codeHub": "MPM", + "codeIataAirline": "TM", + "codeIcaoAirline": "", + "codeIso2Country": "MZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DETA - Linhas Aereas de Mocambique", + "nameCountry": "Mozambique", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3364, + "callsign": "DETA", + "codeHub": "", + "codeIataAirline": "TM", + "codeIcaoAirline": "", + "codeIso2Country": "MZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Direccao de Exploacao doe Transportes Aereos (DETA)", + "nameCountry": "Mozambique", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3365, + "callsign": "", + "codeHub": "", + "codeIataAirline": "TM", + "codeIcaoAirline": "", + "codeIso2Country": "MZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DETA Linhas Aereas de Mocambique", + "nameCountry": "Mozambique", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3366, + "callsign": "AUSTRALINA", + "codeHub": "MEL", + "codeIataAirline": "TN", + "codeIcaoAirline": "AUS", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Australian Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3367, + "callsign": "", + "codeHub": "", + "codeIataAirline": "TN", + "codeIcaoAirline": "ECO", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastern Australian Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3368, + "callsign": "TRANSAIR", + "codeHub": "MEL", + "codeIataAirline": "TN", + "codeIcaoAirline": "TAA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAA - Trans Australian", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3369, + "callsign": "", + "codeHub": "TSV", + "codeIataAirline": "TN", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Australian Regional Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3370, + "callsign": "", + "codeHub": "PNH", + "codeIataAirline": "TO", + "codeIcaoAirline": "PSD", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "540", + "nameAirline": "President Airlines", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3371, + "callsign": "MEDINA", + "codeHub": "", + "codeIataAirline": "TO", + "codeIcaoAirline": "", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "The Medina Aviation Company", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3372, + "callsign": "TANDEM", + "codeHub": "KIV", + "codeIataAirline": "TQ", + "codeIcaoAirline": "TDM", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "38", + "nameAirline": "Tandem Aero Ltd.", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3373, + "callsign": "", + "codeHub": "ARN", + "codeIataAirline": "TQ", + "codeIcaoAirline": "TQA", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transwede (1985)", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3374, + "callsign": "TRANS-SWEDE", + "codeHub": "GOT", + "codeIataAirline": "TQ", + "codeIcaoAirline": "TWE", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transwede Airways", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3375, + "callsign": "TRADAIR", + "codeHub": "", + "codeIataAirline": "TQ", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tradair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3376, + "callsign": "TANGO ROMEO", + "codeHub": "CGH", + "codeIataAirline": "TR", + "codeIcaoAirline": "TBA", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "653", + "nameAirline": "Transbrasil", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3377, + "callsign": "", + "codeHub": "YUL", + "codeIataAirline": "TR", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-Canada Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3378, + "callsign": "TRANS EUROPA", + "codeHub": "", + "codeIataAirline": "TR", + "codeIcaoAirline": "", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-Europa", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3379, + "callsign": "AIR BENIN", + "codeHub": "", + "codeIataAirline": "TS", + "codeIcaoAirline": "TSB", + "codeIso2Country": "BJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Benin", + "nameCountry": "Benin", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3380, + "callsign": "KAUNAS", + "codeHub": "KUN", + "codeIataAirline": "TT", + "codeIcaoAirline": "KLA", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "843", + "nameAirline": "Air Lithuania", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3381, + "callsign": "TEXAS", + "codeHub": "", + "codeIataAirline": "TT", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Texas International Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3382, + "callsign": "", + "codeHub": "", + "codeIataAirline": "TT", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-Texas Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3383, + "callsign": "VIRGIN EXPRESS", + "codeHub": "BRU", + "codeIataAirline": "TV", + "codeIcaoAirline": "VEX", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Virgin Express", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3384, + "callsign": "TRANS-INTERNATIONAL", + "codeHub": "LAX", + "codeIataAirline": "TV", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3385, + "callsign": "TWA", + "codeHub": "STL", + "codeIataAirline": "TW", + "codeIcaoAirline": "TWA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "15", + "nameAirline": "Trans World Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3386, + "callsign": "AIR GUADELOUPE", + "codeHub": "", + "codeIataAirline": "TX", + "codeIcaoAirline": "AGU", + "codeIso2Country": "GP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Guadeloupe", + "nameCountry": "Guadeloupe", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3387, + "callsign": "TAN", + "codeHub": "", + "codeIataAirline": "TX", + "codeIcaoAirline": "TAN", + "codeIso2Country": "HN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAN Honduras", + "nameCountry": "Honduras", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3388, + "callsign": "BCM AIRLINES", + "codeHub": "LPA", + "codeIataAirline": "TY*", + "codeIcaoAirline": "BCM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BCM Airlines", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3389, + "callsign": "IBERWORLD", + "codeHub": "PMI", + "codeIataAirline": "TY*", + "codeIcaoAirline": "IWD", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Iberworld Airlines", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3390, + "callsign": "AMTRAN", + "codeHub": "IND", + "codeIataAirline": "TZ", + "codeIcaoAirline": "AMT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "366", + "nameAirline": "ATA", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3391, + "callsign": "", + "codeHub": "YWG", + "codeIataAirline": "TZ", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transair Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3392, + "callsign": "", + "codeHub": "", + "codeIataAirline": "TZ", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Air Limited", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3393, + "callsign": "", + "codeHub": "", + "codeIataAirline": "U1", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Videcom International Limited", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3394, + "callsign": "AVIES", + "codeHub": "TLL", + "codeIataAirline": "U3", + "codeIcaoAirline": "AIA", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avies", + "nameCountry": "Estonia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3395, + "callsign": "AIR FLIGHT", + "codeHub": "EZE", + "codeIataAirline": "U3", + "codeIcaoAirline": "LMP", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "17", + "nameAirline": "Air Plus Argentina", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3396, + "callsign": "", + "codeHub": "SVX", + "codeIataAirline": "U3", + "codeIcaoAirline": "URA", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Uralinteravia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3397, + "callsign": "", + "codeHub": "", + "codeIataAirline": "U3", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Paramount Jet", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3398, + "callsign": "", + "codeHub": "", + "codeIataAirline": "U3*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Paramount Jet Ltd", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3399, + "callsign": "BURAVIA", + "codeHub": "", + "codeIataAirline": "U4", + "codeIcaoAirline": "BUT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Burjat Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3400, + "callsign": "MULTITRADE", + "codeHub": "PNH", + "codeIataAirline": "U4*", + "codeIcaoAirline": "PMT", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "253", + "nameAirline": "Progress Multitrade", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3401, + "callsign": "", + "codeHub": "BGF", + "codeIataAirline": "U5", + "codeIcaoAirline": "KRN", + "codeIso2Country": "CF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Karinou Airlines", + "nameCountry": "Central African Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3402, + "callsign": "GETAWAY", + "codeHub": "PHL", + "codeIataAirline": "U5*", + "codeIcaoAirline": "GWY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "USA 3000", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3403, + "callsign": "", + "codeHub": "YXE", + "codeIataAirline": "U7", + "codeIcaoAirline": "NKA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norcanair Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3404, + "callsign": "UNIWORLD", + "codeHub": "PTY", + "codeIataAirline": "U7", + "codeIcaoAirline": "UCG", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "399", + "nameAirline": "Uniworld Air Cargo Corp.", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3405, + "callsign": "NORCANAIR", + "codeHub": "", + "codeIataAirline": "U7*", + "codeIcaoAirline": "NKA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northern Dene Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3406, + "callsign": "AUSTRIAN CHARTER", + "codeHub": "", + "codeIataAirline": "U8", + "codeIcaoAirline": "AAT", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Austrian Airtransport", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3407, + "callsign": "TATARSTAN", + "codeHub": "KZN", + "codeIataAirline": "U9", + "codeIcaoAirline": "TAK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "966", + "nameAirline": "Tatarstan Aircompany", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3408, + "callsign": "", + "codeHub": "", + "codeIataAirline": "UA", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Albatross Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3409, + "callsign": "UION AIR", + "codeHub": "", + "codeIataAirline": "UB", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Burma Airways", + "nameCountry": "Burma", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3410, + "callsign": "LADECO CARGO", + "codeHub": "", + "codeIataAirline": "UC", + "codeIcaoAirline": "LDC", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "527", + "nameAirline": "LADECO Cargo", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3411, + "callsign": "LADECO", + "codeHub": "", + "codeIataAirline": "UC", + "codeIcaoAirline": "UCO", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linea Aerea del Cobre Ltda.", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3412, + "callsign": "FASTER", + "codeHub": "", + "codeIataAirline": "UD", + "codeIcaoAirline": "FST", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fast Air", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3413, + "callsign": "LASA", + "codeHub": "", + "codeIataAirline": "UD", + "codeIcaoAirline": "", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linea Aerea Sud-Americana ltda.", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3414, + "callsign": "ULTIMATE", + "codeHub": "CAK", + "codeIataAirline": "UE", + "codeIcaoAirline": "UJC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "327", + "nameAirline": "Ultimate Jetcharters LLC dba Ultimate Air Shuttle", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3415, + "callsign": "", + "codeHub": "DPA", + "codeIataAirline": "UE", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BizAir Shuttle", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 3416, + "callsign": "", + "codeHub": "MVD", + "codeIataAirline": "UE", + "codeIcaoAirline": "", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "U Air", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3417, + "callsign": "", + "codeHub": "", + "codeIataAirline": "UE", + "codeIcaoAirline": "", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Uair", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3418, + "callsign": "TRANSEURLINE", + "codeHub": "SVO", + "codeIataAirline": "UE*", + "codeIcaoAirline": "TEP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transeuropean Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3419, + "callsign": "AEREOS ORIENTE", + "codeHub": "MTY", + "codeIataAirline": "UF", + "codeIcaoAirline": "SRO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Rutas Oriente", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3420, + "callsign": "", + "codeHub": "", + "codeIataAirline": "UF", + "codeIcaoAirline": "TSQ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TPI International Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3421, + "callsign": "UNIVERSAL", + "codeHub": "", + "codeIataAirline": "UF", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Universal Flying Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3422, + "callsign": "UNIFORM OSCAR", + "codeHub": "", + "codeIataAirline": "UG", + "codeIcaoAirline": "AUO", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Empresa (Aero Uruguay)", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3423, + "callsign": "", + "codeHub": "BNE", + "codeIataAirline": "UG", + "codeIcaoAirline": "NIA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norfolk Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3424, + "callsign": "UGANDAIR", + "codeHub": "", + "codeIataAirline": "UG", + "codeIcaoAirline": "", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Uganda Aviation Services", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3425, + "callsign": "EURASIA", + "codeHub": "BKA", + "codeIataAirline": "UH", + "codeIcaoAirline": "EUS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "914", + "nameAirline": "Eurasia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3426, + "callsign": "", + "codeHub": "JRB", + "codeIataAirline": "UH", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "US Helicopter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3427, + "callsign": "US HELI", + "codeHub": "", + "codeIataAirline": "UH*", + "codeIcaoAirline": "USH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "U.S. Helicopter Corporation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 3428, + "callsign": "AURIC SERVICES", + "codeHub": "MWZ", + "codeIataAirline": "UI", + "codeIcaoAirline": "AUK", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Auric Air Services Limited", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3429, + "callsign": "EUROCYPRIA", + "codeHub": "LCA", + "codeIataAirline": "UI", + "codeIcaoAirline": "ECA", + "codeIso2Country": "CY", + "founding": 0, + "iataPrefixAccounting": "475", + "nameAirline": "Eurocypria Airlines", + "nameCountry": "Cyprus", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3430, + "callsign": "STAR", + "codeHub": "", + "codeIataAirline": "UI", + "codeIcaoAirline": "", + "codeIso2Country": "RW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soci�t� de Transport Aerien du Rwanda (STAR)", + "nameCountry": "Rwanda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3431, + "callsign": "", + "codeHub": "", + "codeIataAirline": "UI*", + "codeIcaoAirline": "", + "codeIso2Country": "PR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "San Juan Aviation", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3432, + "callsign": "", + "codeHub": "", + "codeIataAirline": "UI*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alaska Seaplane Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3433, + "callsign": "", + "codeHub": "", + "codeIataAirline": "UJ", + "codeIcaoAirline": "SFG", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Freight Logistics", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3434, + "callsign": "", + "codeHub": "", + "codeIataAirline": "UJ", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Montair Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3435, + "callsign": "", + "codeHub": "", + "codeIataAirline": "UJ", + "codeIcaoAirline": "", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ukraine National Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3436, + "callsign": "UGANDAJET", + "codeHub": "", + "codeIataAirline": "UJ", + "codeIcaoAirline": "", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Uganda Air", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3437, + "callsign": "UKAY", + "codeHub": "NWI", + "codeIataAirline": "UK", + "codeIcaoAirline": "UKA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "130", + "nameAirline": "Air Uk", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3438, + "callsign": "", + "codeHub": "STN", + "codeIataAirline": "UK", + "codeIcaoAirline": "", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air UK Leisure", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3439, + "callsign": "BRITISLAND", + "codeHub": "", + "codeIataAirline": "UK", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Island Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3440, + "callsign": "", + "codeHub": "", + "codeIataAirline": "UL", + "codeIcaoAirline": "", + "codeIso2Country": "HN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lansa", + "nameCountry": "Honduras", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3441, + "callsign": "", + "codeHub": "MNL", + "codeIataAirline": "UM", + "codeIcaoAirline": "", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Manila International", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3442, + "callsign": "AIRMAN", + "codeHub": "", + "codeIataAirline": "UM", + "codeIcaoAirline": "", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Manila", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3443, + "callsign": "TRANSOVIET", + "codeHub": "DME", + "codeIataAirline": "UN", + "codeIcaoAirline": "TSO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "670", + "nameAirline": "JSC \"TRANSAERO AIRLINES\"", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3444, + "callsign": "UNIVERSAIR", + "codeHub": "PMI", + "codeIataAirline": "UN", + "codeIcaoAirline": "UNA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Universair", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3445, + "callsign": "", + "codeHub": "SEA", + "codeIataAirline": "UN", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Land Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3446, + "callsign": "", + "codeHub": "", + "codeIataAirline": "UN", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East Coast Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3447, + "callsign": "UNIFORM OSCAR", + "codeHub": "", + "codeIataAirline": "UO", + "codeIcaoAirline": "AEU", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Uruguay", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3448, + "callsign": "", + "codeHub": "", + "codeIataAirline": "UO", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-Union", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3449, + "callsign": "FOYLE", + "codeHub": "", + "codeIataAirline": "UP", + "codeIcaoAirline": "UPA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Foyle", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3450, + "callsign": "EUROPEAN", + "codeHub": "", + "codeIataAirline": "UQ", + "codeIcaoAirline": "LON", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ryanair Eurpoe", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3451, + "callsign": "", + "codeHub": "TIP", + "codeIataAirline": "UQ", + "codeIcaoAirline": "NOL", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United African Airlines", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3452, + "callsign": "O'CONNOR", + "codeHub": "MGB", + "codeIataAirline": "UQ", + "codeIcaoAirline": "OCM", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "O'Connor-Mt. Gambier's Airline", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3453, + "callsign": "", + "codeHub": "", + "codeIataAirline": "UQ*", + "codeIcaoAirline": "SJA", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Jet Aviation", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3454, + "callsign": "AEROSUN", + "codeHub": "", + "codeIataAirline": "UR", + "codeIcaoAirline": "ASI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerosun International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3455, + "callsign": "LION", + "codeHub": "", + "codeIataAirline": "UR", + "codeIcaoAirline": "BIH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Airways Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3456, + "callsign": "UTAIR-EXPRESS", + "codeHub": "SCW", + "codeIataAirline": "UR", + "codeIcaoAirline": "UTX", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "184", + "nameAirline": "UTair Express", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3457, + "callsign": "TRANSAFRICAIR", + "codeHub": "", + "codeIataAirline": "UR", + "codeIcaoAirline": "", + "codeIso2Country": "RW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transafricair", + "nameCountry": "Rwanda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3458, + "callsign": "", + "codeHub": "", + "codeIataAirline": "UR", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Empire Airlines (1975)", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3459, + "callsign": "", + "codeHub": "MWO", + "codeIataAirline": "US", + "codeIcaoAirline": "ALO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Allegheny Airlines (1989)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3460, + "callsign": "US AIR", + "codeHub": "PHX", + "codeIataAirline": "US", + "codeIcaoAirline": "AWE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "37", + "nameAirline": "US Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3461, + "callsign": "", + "codeHub": "PIT", + "codeIataAirline": "US", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MidAtlantic Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3462, + "callsign": "UNAVIA", + "codeHub": "", + "codeIataAirline": "US", + "codeIcaoAirline": "", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Unavia Suisse", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3463, + "callsign": "ALLEGHENY", + "codeHub": "", + "codeIataAirline": "US*", + "codeIcaoAirline": "ALO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "USAir Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3464, + "callsign": "UNIVERSAL", + "codeHub": "", + "codeIataAirline": "UV", + "codeIcaoAirline": "UVA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Universal Airways, Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3465, + "callsign": "", + "codeHub": "AMM", + "codeIataAirline": "UV", + "codeIcaoAirline": "UVS", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Universal", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3466, + "callsign": "", + "codeHub": "ALC", + "codeIataAirline": "UV", + "codeIcaoAirline": "", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Sureste", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3467, + "callsign": "", + "codeHub": "", + "codeIataAirline": "UV", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Kangaroo Island", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3468, + "callsign": "HELISURESTE", + "codeHub": "", + "codeIataAirline": "UV*", + "codeIcaoAirline": "HSE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopteros del Sureste", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 3469, + "callsign": "UNIFORM WHISKEY", + "codeHub": "", + "codeIataAirline": "UW", + "codeIcaoAirline": "SAR", + "codeIso2Country": "RW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Rwanda", + "nameCountry": "Rwanda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3470, + "callsign": "GUYANA JET", + "codeHub": "GEO", + "codeIataAirline": "UW", + "codeIcaoAirline": "UVG", + "codeIso2Country": "GY", + "founding": 0, + "iataPrefixAccounting": "751", + "nameAirline": "Universal Airlines", + "nameCountry": "Guyana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3471, + "callsign": "", + "codeHub": "", + "codeIataAirline": "UX", + "codeIcaoAirline": "", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lotus Airways", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3472, + "callsign": "", + "codeHub": "TBS", + "codeIataAirline": "UY", + "codeIcaoAirline": "CSG", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "49", + "nameAirline": "Air Caucasus", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3473, + "callsign": "CAM-AIR", + "codeHub": "DLA", + "codeIataAirline": "UY", + "codeIcaoAirline": "UYC", + "codeIso2Country": "CM", + "founding": 0, + "iataPrefixAccounting": "604", + "nameAirline": "Cameroon Airlines", + "nameCountry": "Cameroon", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3474, + "callsign": "AEROCOZUMEL", + "codeHub": "", + "codeIataAirline": "UZ", + "codeIcaoAirline": "AZM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocozumel", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3475, + "callsign": "UNISTEEL", + "codeHub": "", + "codeIataAirline": "UZ", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United Steel Companies Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3476, + "callsign": "TESIS", + "codeHub": "DME", + "codeIataAirline": "UZ*", + "codeIcaoAirline": "TIS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "246", + "nameAirline": "TESIS", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3477, + "callsign": "", + "codeHub": "", + "codeIataAirline": "V1", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IBS Software Services Americas, Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3478, + "callsign": "AVIAKARAT", + "codeHub": "DME", + "codeIataAirline": "V2", + "codeIcaoAirline": "AKT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Karat", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3479, + "callsign": "TWINARROW", + "codeHub": "TAS", + "codeIataAirline": "V2", + "codeIcaoAirline": "TWN", + "codeIso2Country": "UZ", + "founding": 0, + "iataPrefixAccounting": "552", + "nameAirline": "Avialeasing Aviation Company", + "nameCountry": "Uzbekistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3480, + "callsign": "", + "codeHub": "MAN", + "codeIataAirline": "V2", + "codeIcaoAirline": "VIR", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Virgin Sun", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3481, + "callsign": "", + "codeHub": "PHF", + "codeIataAirline": "V2", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PEOPLExpress", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 3482, + "callsign": "", + "codeHub": "", + "codeIataAirline": "V2", + "codeIcaoAirline": "", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Visa Airways PVT", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3483, + "callsign": "VEGFLIGHT", + "codeHub": "", + "codeIataAirline": "V3", + "codeIcaoAirline": "VEG", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Veg Air", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3484, + "callsign": "VENUS", + "codeHub": "ATH", + "codeIataAirline": "V4", + "codeIcaoAirline": "VER", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Venus Airlines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3485, + "callsign": "VIEQUES", + "codeHub": "VQS", + "codeIataAirline": "V4", + "codeIcaoAirline": "VES", + "codeIso2Country": "PR", + "founding": 1965, + "iataPrefixAccounting": "381", + "nameAirline": "Vieques Air Link", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3486, + "callsign": "", + "codeHub": "", + "codeIataAirline": "V4", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vensecar Internacional C.A.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3487, + "callsign": "", + "codeHub": "", + "codeIataAirline": "V4", + "codeIcaoAirline": "", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vensecar Internacional (DHL Venezuela)", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3488, + "callsign": "GOLDBIRD", + "codeHub": "AJA", + "codeIataAirline": "V4*", + "codeIcaoAirline": "KYN", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kyrnair", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3489, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "V4*", + "codeIcaoAirline": "REK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Reem Air", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3490, + "callsign": "", + "codeHub": "VLN", + "codeIataAirline": "V5", + "codeIcaoAirline": "JDV", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JD Valenciana de Aviacion", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3491, + "callsign": "VNUKOVO", + "codeHub": "VKO", + "codeIataAirline": "V5", + "codeIcaoAirline": "VKO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vnukovo Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3492, + "callsign": "ROYAL ARUBAN", + "codeHub": "AUA", + "codeIataAirline": "V5*", + "codeIcaoAirline": "RYL", + "codeIso2Country": "AW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Aruban Airlines", + "nameCountry": "Aruba", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3493, + "callsign": "AEROVOLAR", + "codeHub": "TIJ", + "codeIataAirline": "V5*", + "codeIcaoAirline": "VLI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Volare", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3494, + "callsign": "", + "codeHub": "BOD", + "codeIataAirline": "V6", + "codeIcaoAirline": "APB", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Atlantique (France)", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3495, + "callsign": "", + "codeHub": "SVO", + "codeIataAirline": "V6", + "codeIcaoAirline": "ORT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orient Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3496, + "callsign": "TURTLE DOVE", + "codeHub": "EIS", + "codeIataAirline": "V6", + "codeIcaoAirline": "VIL", + "codeIso2Country": "VG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VI Airlink", + "nameCountry": "British Virgin Islands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3497, + "callsign": "AEROVIZ", + "codeHub": "RWN", + "codeIataAirline": "V6", + "codeIcaoAirline": "VIZ", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AeroVis Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3498, + "callsign": "", + "codeHub": "SEQU", + "codeIataAirline": "V6", + "codeIcaoAirline": "VUR", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vuelos Internos Privados VIP S.A.", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3499, + "callsign": "", + "codeHub": "", + "codeIataAirline": "V6", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Clairmont Holdings Ltd dba VI Air L", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3500, + "callsign": "VOYAGER AIR", + "codeHub": "DAC", + "codeIataAirline": "V6*", + "codeIcaoAirline": "VOG", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "772", + "nameAirline": "Voyager Airlines", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3501, + "callsign": "AIR SENEGAL", + "codeHub": "DKR", + "codeIataAirline": "V7*", + "codeIcaoAirline": "SNG", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "407", + "nameAirline": "Air Senegal International", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3502, + "callsign": "", + "codeHub": "YMM", + "codeIataAirline": "V8", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Mikisew", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3503, + "callsign": "TAPSA", + "codeHub": "CRD", + "codeIataAirline": "V8*", + "codeIcaoAirline": "TPS", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos Petroleros / TAPSA", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3504, + "callsign": "", + "codeHub": "UFA", + "codeIataAirline": "V9", + "codeIcaoAirline": "BTC", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BAL - Bashkirian Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3505, + "callsign": "", + "codeHub": "VNO", + "codeIataAirline": "V9", + "codeIcaoAirline": "HCW", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star1 Airlines", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3506, + "callsign": "EUROVAN", + "codeHub": "BRQ", + "codeIataAirline": "V9", + "codeIcaoAirline": "VAA", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Van Air Europe", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3507, + "callsign": "", + "codeHub": "ATL", + "codeIataAirline": "V9", + "codeIcaoAirline": "VIK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3508, + "callsign": "VIASA", + "codeHub": "CCS", + "codeIataAirline": "VA", + "codeIcaoAirline": "VIA", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VIASA - Venezolana Internacional de Aviacion", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3509, + "callsign": "REVOLA", + "codeHub": "MXP", + "codeIataAirline": "VA", + "codeIcaoAirline": "VLE", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Volare Airlines", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3510, + "callsign": "BALTIC", + "codeHub": "", + "codeIataAirline": "VB", + "codeIcaoAirline": "BAB", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baltic Aviation", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3511, + "callsign": "BIRMEX", + "codeHub": "BHX", + "codeIataAirline": "VB", + "codeIcaoAirline": "BEA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Birmingham European Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3512, + "callsign": "AIR TENGLONG", + "codeHub": "", + "codeIataAirline": "VB", + "codeIcaoAirline": "CCO", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Tenglong", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3513, + "callsign": "FLY DUO", + "codeHub": "BHX", + "codeIataAirline": "VB", + "codeIcaoAirline": "DUO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "702", + "nameAirline": "Duo Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3514, + "callsign": "", + "codeHub": "LECU", + "codeIataAirline": "VB", + "codeIcaoAirline": "FLK", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flylink Express", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 3515, + "callsign": "", + "codeHub": "EBB", + "codeIataAirline": "VB", + "codeIcaoAirline": "WEV", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Victoria International Airlines", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3516, + "callsign": "", + "codeHub": "", + "codeIataAirline": "VB", + "codeIcaoAirline": "", + "codeIso2Country": "CF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bangui", + "nameCountry": "Central African Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3517, + "callsign": "", + "codeHub": "", + "codeIataAirline": "VB", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Express/Westair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3518, + "callsign": "VETFLIGHT", + "codeHub": "EVN", + "codeIataAirline": "VB*", + "codeIcaoAirline": "VTF", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "59", + "nameAirline": "Veteran Avia", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3519, + "callsign": "STRATEGIC", + "codeHub": "BNE", + "codeIataAirline": "VC", + "codeIcaoAirline": "AGC", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Australia Airways", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3520, + "callsign": "SERVIVENSA", + "codeHub": "CCS", + "codeIataAirline": "VC", + "codeIcaoAirline": "SVV", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "985", + "nameAirline": "SERVIVENSA", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3521, + "callsign": "OCEAN CARGO", + "codeHub": "VBS", + "codeIataAirline": "VC", + "codeIcaoAirline": "VCX", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ocean Airlines", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3522, + "callsign": "", + "codeHub": "", + "codeIataAirline": "VC", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vernair Flying Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3523, + "callsign": "LACO", + "codeHub": "", + "codeIataAirline": "VC", + "codeIcaoAirline": "", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linea Aerea Condor", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3524, + "callsign": "BLACKBIRD", + "codeHub": "NRK", + "codeIataAirline": "VD", + "codeIcaoAirline": "BBB", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swedjet Airways", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3525, + "callsign": "KUN PENG", + "codeHub": "CGO", + "codeIataAirline": "VD", + "codeIcaoAirline": "KPA", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "981", + "nameAirline": "Henan Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3526, + "callsign": "AIR LIBERTE", + "codeHub": "ORY", + "codeIataAirline": "VD", + "codeIcaoAirline": "LIB", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "646", + "nameAirline": "Air Liberte", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3527, + "callsign": "TAT", + "codeHub": "TUF", + "codeIataAirline": "VD", + "codeIcaoAirline": "TAT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "T.A.T. European Airlines", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3528, + "callsign": "TAHIS", + "codeHub": "", + "codeIataAirline": "VD", + "codeIcaoAirline": "THS", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAHIS - Transportes Aereos Hispanos", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3529, + "callsign": "", + "codeHub": "", + "codeIataAirline": "VD", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RTZ Services Limited", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3530, + "callsign": "ALPHAVICTORECHO", + "codeHub": "CCS", + "codeIataAirline": "VE", + "codeIcaoAirline": "AVE", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "128", + "nameAirline": "AVENSA", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3531, + "callsign": "EUROAIRWAYS", + "codeHub": "SNN", + "codeIataAirline": "VE", + "codeIcaoAirline": "EUY", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EU Airways", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3532, + "callsign": "VOLA", + "codeHub": "", + "codeIataAirline": "VE", + "codeIcaoAirline": "VLE", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "C.A.I. Second S.p.A.", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3533, + "callsign": "", + "codeHub": "", + "codeIataAirline": "VE", + "codeIcaoAirline": "VLE", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CAI Second", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3534, + "callsign": "UNION JET", + "codeHub": "", + "codeIataAirline": "VE*", + "codeIcaoAirline": "EUJ", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EU Jet", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3535, + "callsign": "FERRYCAR", + "codeHub": "SEN", + "codeIataAirline": "VF", + "codeIcaoAirline": "BWL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Air Ferries", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3536, + "callsign": "VALUE", + "codeHub": "SIN", + "codeIataAirline": "VF", + "codeIcaoAirline": "VLU", + "codeIso2Country": "SG", + "founding": 0, + "iataPrefixAccounting": "896", + "nameAirline": "Valuair", + "nameCountry": "Singapore", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3537, + "callsign": "", + "codeHub": "", + "codeIataAirline": "VF*", + "codeIcaoAirline": "", + "codeIso2Country": "KN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nevis Express", + "nameCountry": "Saint Kitts and Nevis", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3538, + "callsign": "GITANAIR", + "codeHub": "", + "codeIataAirline": "VG", + "codeIcaoAirline": "GTA", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gitanair", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3539, + "callsign": "RFG", + "codeHub": "DTM", + "codeIataAirline": "VG", + "codeIcaoAirline": "RFG", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RFG - Regionalflug", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3540, + "callsign": "AIRSIAM", + "codeHub": "DMK", + "codeIataAirline": "VG", + "codeIcaoAirline": "", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Siam", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3541, + "callsign": "BURKINA", + "codeHub": "", + "codeIataAirline": "VH", + "codeIcaoAirline": "VBW", + "codeIso2Country": "BF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Volta", + "nameCountry": "Burkina Faso", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3542, + "callsign": "VOLGA DNEPR", + "codeHub": "ULY", + "codeIataAirline": "VI", + "codeIcaoAirline": "VDA", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "412", + "nameAirline": "Volga-Dnepr Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3543, + "callsign": "VIVA", + "codeHub": "PMI", + "codeIataAirline": "VI", + "codeIcaoAirline": "VIV", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VIVA Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3544, + "callsign": "", + "codeHub": "", + "codeIataAirline": "VI", + "codeIcaoAirline": "", + "codeIso2Country": "DZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soci�t� de Travail A�rien", + "nameCountry": "Algeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3545, + "callsign": "AFRIWAYS", + "codeHub": "COO", + "codeIataAirline": "VJ", + "codeIcaoAirline": "AFF", + "codeIso2Country": "BJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Africa Airways", + "nameCountry": "Benin", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3546, + "callsign": "AIR EXEL", + "codeHub": "", + "codeIataAirline": "VJ", + "codeIcaoAirline": "RXL", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Exel (France)", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3547, + "callsign": "", + "codeHub": "PNH", + "codeIataAirline": "VJ", + "codeIcaoAirline": "", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "658", + "nameAirline": "Royal Air Cambodge", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3548, + "callsign": "JATAYU", + "codeHub": "CGK", + "codeIataAirline": "VJ*", + "codeIcaoAirline": "JTY", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jatayu Airlines", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3549, + "callsign": "NICO FLIERS", + "codeHub": "LOS", + "codeIataAirline": "VK", + "codeIcaoAirline": "ANP", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "786", + "nameAirline": "Air Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3550, + "callsign": "GREENISLE", + "codeHub": "", + "codeIataAirline": "VK", + "codeIcaoAirline": "VEI", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Virgin Express", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3551, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "VK", + "codeIcaoAirline": "VGN", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Virgin Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3552, + "callsign": "", + "codeHub": "YUL", + "codeIataAirline": "VK", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Val Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3553, + "callsign": "", + "codeHub": "", + "codeIataAirline": "VK*", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Val Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3554, + "callsign": "EAGLEAIR", + "codeHub": "", + "codeIataAirline": "VL", + "codeIcaoAirline": "ISL", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Air", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3555, + "callsign": "VIA AIRWAYS", + "codeHub": "SOF", + "codeIataAirline": "VL", + "codeIcaoAirline": "VIM", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "699", + "nameAirline": "Air Via Ltd.", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3556, + "callsign": "NORVAN", + "codeHub": "", + "codeIataAirline": "VL*", + "codeIcaoAirline": "NRV", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Vancouver Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3557, + "callsign": "", + "codeHub": "", + "codeIataAirline": "VL*", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sonicblue Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3558, + "callsign": "", + "codeHub": "", + "codeIataAirline": "VL*", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regency Express", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3559, + "callsign": "ABACUS", + "codeHub": "", + "codeIataAirline": "VM", + "codeIcaoAirline": "ABA", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Abacus Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3560, + "callsign": "AERO TRADES", + "codeHub": "", + "codeIataAirline": "VM", + "codeIcaoAirline": "ATW", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Trades", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3561, + "callsign": "", + "codeHub": "RES", + "codeIataAirline": "VM", + "codeIcaoAirline": "PRV", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerochaco", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 3562, + "callsign": "REGIONAL AIRLINES", + "codeHub": "", + "codeIataAirline": "VM", + "codeIcaoAirline": "RGI", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "982", + "nameAirline": "Regional Airlines", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3563, + "callsign": "VIAGGIO", + "codeHub": "SOF", + "codeIataAirline": "VM", + "codeIcaoAirline": "VOA", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "424", + "nameAirline": "Viaggio Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3564, + "callsign": "", + "codeHub": "", + "codeIataAirline": "VM", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Vendee", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3565, + "callsign": "", + "codeHub": "SGN", + "codeIataAirline": "VN", + "codeIcaoAirline": "", + "codeIso2Country": "VN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Vietnam", + "nameCountry": "Vietnam", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3566, + "callsign": "AIR VIETNAM", + "codeHub": "", + "codeIataAirline": "VN", + "codeIcaoAirline": "", + "codeIso2Country": "VN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hang Khong Veitnam", + "nameCountry": "Vietnam", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3567, + "callsign": "TYROLEAN", + "codeHub": "INN", + "codeIataAirline": "VO", + "codeIcaoAirline": "TYR", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "734", + "nameAirline": "Austrian Arrows", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3568, + "callsign": "VILLA AIR", + "codeHub": "MLE", + "codeIataAirline": "VP", + "codeIcaoAirline": "VQI", + "codeIso2Country": "MV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Villa Air Pvt. Ltd. dba Villa Air", + "nameCountry": "Maldives", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3569, + "callsign": "VASP", + "codeHub": "CGH", + "codeIataAirline": "VP", + "codeIcaoAirline": "VSP", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "343", + "nameAirline": "VASP", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3570, + "callsign": "AIRSPUP", + "codeHub": "SGN", + "codeIataAirline": "VP*", + "codeIcaoAirline": "AXC", + "codeIso2Country": "VN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Speed Up", + "nameCountry": "Vietnam", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3571, + "callsign": "", + "codeHub": "", + "codeIataAirline": "VP*", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Bee Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3572, + "callsign": "MEDITERRANEA", + "codeHub": "", + "codeIataAirline": "VQ", + "codeIcaoAirline": "BQI", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aermediterranea", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3573, + "callsign": "IMPULSE", + "codeHub": "SYD", + "codeIataAirline": "VQ", + "codeIcaoAirline": "IPU", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Impulse Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3574, + "callsign": "", + "codeHub": "ATH", + "codeIataAirline": "VQ", + "codeIcaoAirline": "VKH", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "904", + "nameAirline": "Viking Hellas Airlines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3575, + "callsign": "VINTAGE", + "codeHub": "", + "codeIataAirline": "VQ", + "codeIcaoAirline": "VPP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vintage Props and Jets", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3576, + "callsign": "", + "codeHub": "KEVB", + "codeIataAirline": "VQ", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vintage Props & Jets", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3577, + "callsign": "VICTOR SIERRA", + "codeHub": "LOS", + "codeIataAirline": "VS", + "codeIcaoAirline": "VVV", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intercontinental Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3578, + "callsign": "TRADEWINDS", + "codeHub": "", + "codeIataAirline": "VS", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tradewinds Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3579, + "callsign": "SATA", + "codeHub": "", + "codeIataAirline": "VS", + "codeIcaoAirline": "", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SATA", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3580, + "callsign": "AIRVOIRE", + "codeHub": "ABJ", + "codeIataAirline": "VU", + "codeIcaoAirline": "VUN", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "943", + "nameAirline": "Air Ivoire, Soci�t�", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3581, + "callsign": "AERO SVIT", + "codeHub": "KBP", + "codeIataAirline": "VV", + "codeIcaoAirline": "AEW", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "870", + "nameAirline": "Aerosvit Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3582, + "callsign": "", + "codeHub": "", + "codeIataAirline": "VV", + "codeIcaoAirline": "ASZ", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Sardinia", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3583, + "callsign": "", + "codeHub": "DCA", + "codeIataAirline": "VV", + "codeIcaoAirline": "CNV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United States Navy", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 3584, + "callsign": "NILE VALLEY AVIATION", + "codeHub": "", + "codeIataAirline": "VV", + "codeIcaoAirline": "VVC", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nile Valley Aviation", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3585, + "callsign": "", + "codeHub": "", + "codeIataAirline": "VV", + "codeIcaoAirline": "", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TRAFE", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3586, + "callsign": "AIRVIKING", + "codeHub": "", + "codeIataAirline": "VV", + "codeIcaoAirline": "", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Viking", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3587, + "callsign": "VIRAIR", + "codeHub": "", + "codeIataAirline": "VW", + "codeIcaoAirline": "VIG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Virgin Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3588, + "callsign": "VIENNAIR", + "codeHub": "", + "codeIataAirline": "VW", + "codeIcaoAirline": "VNR", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Viennair", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3589, + "callsign": "ACES", + "codeHub": "EOH", + "codeIataAirline": "VX", + "codeIcaoAirline": "AES", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "137", + "nameAirline": "Aerolineas Centrales de Colombia (ACES)", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3590, + "callsign": "VEEBEE", + "codeHub": "NRN", + "codeIataAirline": "VX", + "codeIcaoAirline": "VBA", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "V Bird", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3591, + "callsign": "", + "codeHub": "", + "codeIataAirline": "VX", + "codeIcaoAirline": "", + "codeIso2Country": "VN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vietnam Air Transport (VIAT)", + "nameCountry": "Vietnam", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3592, + "callsign": "AIR BELGIUM", + "codeHub": "BRU", + "codeIataAirline": "VY", + "codeIcaoAirline": "ABB", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Belgium", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3593, + "callsign": "CHARTER EXPRESS", + "codeHub": "", + "codeIataAirline": "VY", + "codeIcaoAirline": "CHX", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ACE Transvalair", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3594, + "callsign": "", + "codeHub": "", + "codeIataAirline": "VY", + "codeIcaoAirline": "HIX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Highland Express", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3595, + "callsign": "TARTAN", + "codeHub": "", + "codeIataAirline": "VY", + "codeIcaoAirline": "TTN", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Highland Express Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3596, + "callsign": "", + "codeHub": "", + "codeIataAirline": "VY", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "938", + "nameAirline": "Bay Chaleur Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3597, + "callsign": "MYLITE", + "codeHub": "BHX", + "codeIataAirline": "VZ", + "codeIcaoAirline": "LIZ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MyTravel Lite", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3598, + "callsign": "", + "codeHub": "MAN", + "codeIataAirline": "VZ", + "codeIcaoAirline": "MYT", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MyTravel Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3599, + "callsign": "TOURJET", + "codeHub": "MAN", + "codeIataAirline": "VZ", + "codeIcaoAirline": "TIH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airtours International Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3600, + "callsign": "THAIVIET JET", + "codeHub": "BKK", + "codeIataAirline": "VZ", + "codeIcaoAirline": "TVJ", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "863", + "nameAirline": "Thai Vietjet Air", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3601, + "callsign": "ZAIREAN", + "codeHub": "", + "codeIataAirline": "VZ", + "codeIcaoAirline": "ZAR", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zairean Airlines", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3602, + "callsign": "", + "codeHub": "FCO", + "codeIataAirline": "VZ", + "codeIcaoAirline": "", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropa", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 3603, + "callsign": "SEAPORT", + "codeHub": "", + "codeIataAirline": "VZ", + "codeIcaoAirline": "", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "N.V. National Vliegtuigbeheer", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3604, + "callsign": "", + "codeHub": "", + "codeIataAirline": "VZ", + "codeIcaoAirline": "", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nefertiti Aviation", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3605, + "callsign": "AEROVIP", + "codeHub": "", + "codeIataAirline": "VZ*", + "codeIcaoAirline": "RVP", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "510", + "nameAirline": "Aero V.I.P. Ltda", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3606, + "callsign": "", + "codeHub": "", + "codeIataAirline": "W1", + "codeIcaoAirline": "", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "World Ticket Ltd", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3607, + "callsign": "", + "codeHub": "HLP", + "codeIataAirline": "W2", + "codeIcaoAirline": "EIJ", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Efata", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3608, + "callsign": "EFATA", + "codeHub": "HLP", + "codeIataAirline": "W2", + "codeIcaoAirline": "EPA", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Efata Papua Airlines", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3609, + "callsign": "FLIGHTLINE", + "codeHub": "SEN", + "codeIataAirline": "W2", + "codeIcaoAirline": "FLT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flightline", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3610, + "callsign": "", + "codeHub": "RKE", + "codeIataAirline": "W2", + "codeIcaoAirline": "FXT", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "365", + "nameAirline": "FlexFlight ApS", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3611, + "callsign": "", + "codeHub": "DND", + "codeIataAirline": "W2", + "codeIcaoAirline": "WEA", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FlyWhoosh", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 3612, + "callsign": "ECLIPSE", + "codeHub": "LCY", + "codeIataAirline": "W2", + "codeIcaoAirline": "WRD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "World Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3613, + "callsign": "", + "codeHub": "SKE", + "codeIataAirline": "W2", + "codeIcaoAirline": "", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vildanden", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 3614, + "callsign": "", + "codeHub": "VLY", + "codeIataAirline": "W2", + "codeIcaoAirline": "", + "codeIso2Country": "GB", + "founding": 1983, + "iataPrefixAccounting": "", + "nameAirline": "Links Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3615, + "callsign": "CANADA WESTERN", + "codeHub": "", + "codeIataAirline": "W2*", + "codeIcaoAirline": "CWA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canadian Western Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3616, + "callsign": "WHITE EAGLE", + "codeHub": "WAW", + "codeIataAirline": "W2*", + "codeIcaoAirline": "WEA", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "White Eagle Aviation", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3617, + "callsign": "", + "codeHub": "BKK", + "codeIataAirline": "W3", + "codeIcaoAirline": "FYH", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flyhy Cargo Airlines", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3618, + "callsign": "DELTA ICE", + "codeHub": "KEF", + "codeIataAirline": "W3", + "codeIcaoAirline": "MDI", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MD Airlines", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3619, + "callsign": "", + "codeHub": "", + "codeIataAirline": "W3*", + "codeIcaoAirline": "", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "850", + "nameAirline": "Flyhy Cargo Airlines", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3620, + "callsign": "BIRD EXPRESS", + "codeHub": "", + "codeIataAirline": "W4", + "codeIcaoAirline": "BES", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Services Executive", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3621, + "callsign": "", + "codeHub": "", + "codeIataAirline": "W4*", + "codeIcaoAirline": "", + "codeIso2Country": "PR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MN Aviation", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3622, + "callsign": "WEST-ISLE AIR", + "codeHub": "", + "codeIataAirline": "W6", + "codeIcaoAirline": "WIL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West Isle Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3623, + "callsign": "KOMSTAR", + "codeHub": "COS", + "codeIataAirline": "W7", + "codeIcaoAirline": "KMR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Western Pacific Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3624, + "callsign": "", + "codeHub": "GYN", + "codeIataAirline": "W7", + "codeIcaoAirline": "", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "POP Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3625, + "callsign": "SAYAKHAT", + "codeHub": "ALA", + "codeIataAirline": "W7*", + "codeIcaoAirline": "SAH", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "271", + "nameAirline": "Sayakhat Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3626, + "callsign": "", + "codeHub": "MGA", + "codeIataAirline": "W8", + "codeIcaoAirline": "", + "codeIso2Country": "NI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "La Costena", + "nameCountry": "Nicaragua", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3627, + "callsign": "STINGER", + "codeHub": "PHL", + "codeIataAirline": "W9", + "codeIcaoAirline": "SGR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastwind Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3628, + "callsign": "", + "codeHub": "", + "codeIataAirline": "W9", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Service", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3629, + "callsign": "WESTERN", + "codeHub": "LAX", + "codeIataAirline": "WA", + "codeIcaoAirline": "WAL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Western Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3630, + "callsign": "AEREOS", + "codeHub": "CUE", + "codeIataAirline": "WB", + "codeIcaoAirline": "SAN", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Nacionales (SAN)", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3631, + "callsign": "WIEN CONSOLIDATED", + "codeHub": "FAI", + "codeIataAirline": "WC", + "codeIcaoAirline": "WAA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wien Consolidated Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3632, + "callsign": "DASAIR", + "codeHub": "", + "codeIataAirline": "WD", + "codeIcaoAirline": "DAZ", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "761", + "nameAirline": "DAS Air", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3633, + "callsign": "", + "codeHub": "EBB", + "codeIataAirline": "WD", + "codeIcaoAirline": "DSR", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DAS Air Cargo", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3634, + "callsign": "WARDAIR", + "codeHub": "YEG", + "codeIataAirline": "WD", + "codeIcaoAirline": "WDA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wardair Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3635, + "callsign": "WAT PHNOM", + "codeHub": "PNH", + "codeIataAirline": "WD", + "codeIcaoAirline": "WPH", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "913", + "nameAirline": "Wat Phnom Airlines", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3636, + "callsign": "AMSTEL", + "codeHub": "AMS", + "codeIataAirline": "WD*", + "codeIcaoAirline": "AAN", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amsterdam Airlines", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3637, + "callsign": "", + "codeHub": "MIA", + "codeIataAirline": "WE", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South Winds Cargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3638, + "callsign": "", + "codeHub": "", + "codeIataAirline": "WE", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centurion Air Cargo, Inc.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3639, + "callsign": "", + "codeHub": "", + "codeIataAirline": "WE", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "WDL Flugdienst", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3640, + "callsign": "TRADER", + "codeHub": "", + "codeIataAirline": "WE", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Trader", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3641, + "callsign": "", + "codeHub": "", + "codeIataAirline": "WE", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Westward Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3642, + "callsign": "RHEINTAL", + "codeHub": "", + "codeIataAirline": "WE*", + "codeIcaoAirline": "RTL", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "915", + "nameAirline": "Rheintalflug", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3643, + "callsign": "AIR ECOSSE", + "codeHub": "", + "codeIataAirline": "WG", + "codeIcaoAirline": "ECS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Ecosse", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3644, + "callsign": "MALIN", + "codeHub": "GLA", + "codeIataAirline": "WG", + "codeIcaoAirline": "MAK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Malinair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3645, + "callsign": "WORLDWAYS CANADA", + "codeHub": "YYZ", + "codeIataAirline": "WG", + "codeIcaoAirline": "WWC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Worldways Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3646, + "callsign": "", + "codeHub": "", + "codeIataAirline": "WG", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fairflight Charters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3647, + "callsign": "WASAYA", + "codeHub": "YQT", + "codeIataAirline": "WG*", + "codeIcaoAirline": "WSG", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "93", + "nameAirline": "Wasaya Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3648, + "callsign": "CHINA NORTHWEST", + "codeHub": "SIA", + "codeIataAirline": "WH", + "codeIcaoAirline": "CNW", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "783", + "nameAirline": "China Northwest Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3649, + "callsign": "KILO YANKEE", + "codeHub": "", + "codeIataAirline": "WH", + "codeIcaoAirline": "WCB", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "764", + "nameAirline": "West African Airlines", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3650, + "callsign": "WIHURI", + "codeHub": "", + "codeIataAirline": "WH", + "codeIcaoAirline": "", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wihuri-Yhtyn�", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3651, + "callsign": "", + "codeHub": "TSA", + "codeIataAirline": "WI", + "codeIcaoAirline": "", + "codeIso2Country": "TW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "U-Land Airlines", + "nameCountry": "Taiwan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3652, + "callsign": "", + "codeHub": "", + "codeIataAirline": "WI", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rottnest Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3653, + "callsign": "WILKEN", + "codeHub": "", + "codeIataAirline": "WI", + "codeIcaoAirline": "", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wilken Air Services", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3654, + "callsign": "TRADEWINDS EXPRESS", + "codeHub": "GSO", + "codeIataAirline": "WI*", + "codeIcaoAirline": "TDX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tradewinds Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3655, + "callsign": "ANK AIR", + "codeHub": "", + "codeIataAirline": "WJ", + "codeIcaoAirline": "NKK", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Nippon", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3656, + "callsign": "WEBJET", + "codeHub": "GIG", + "codeIataAirline": "WJ*", + "codeIcaoAirline": "WEB", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Webjet", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3657, + "callsign": "AMERICAN FALCON", + "codeHub": "AEP", + "codeIataAirline": "WK", + "codeIcaoAirline": "AFB", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "676", + "nameAirline": "American Falcon", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3658, + "callsign": "", + "codeHub": "", + "codeIataAirline": "WK", + "codeIcaoAirline": "GRN", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Greenair", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3659, + "callsign": "", + "codeHub": "", + "codeIataAirline": "WK", + "codeIcaoAirline": "WKF", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Westk�stenflug", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3660, + "callsign": "WESTERN ALASKA", + "codeHub": "", + "codeIataAirline": "WK", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Western Alaska Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3661, + "callsign": "AEROPERLAS", + "codeHub": "PAC", + "codeIataAirline": "WL", + "codeIcaoAirline": "APP", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "54", + "nameAirline": "Aeroperlas", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3662, + "callsign": "COASTAL CLIPPER", + "codeHub": "SPU", + "codeIataAirline": "WL", + "codeIcaoAirline": "ECB", + "codeIso2Country": "HR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European Coastal Airlines Ltd.", + "nameCountry": "Croatia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3663, + "callsign": "", + "codeHub": "", + "codeIataAirline": "WL", + "codeIcaoAirline": "LGW", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compagne Aerienne Du Languedoc", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3664, + "callsign": "", + "codeHub": "", + "codeIataAirline": "WL", + "codeIcaoAirline": "", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bursa Airlines (BAL)", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3665, + "callsign": "", + "codeHub": "", + "codeIataAirline": "WL", + "codeIcaoAirline": "", + "codeIso2Country": "LA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lao Air Lines", + "nameCountry": "Laos", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3666, + "callsign": "WINDWARD", + "codeHub": "SXM", + "codeIataAirline": "WM", + "codeIcaoAirline": "WIA", + "codeIso2Country": "SX", + "founding": 1961, + "iataPrefixAccounting": "295", + "nameAirline": "Windward Islands Airways Int'l N.V.", + "nameCountry": "Sint Maarten", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3667, + "callsign": "NORSHIP", + "codeHub": "", + "codeIataAirline": "WN", + "codeIcaoAirline": "NFC", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nor-Fly A/S", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3668, + "callsign": "WESTWAY", + "codeHub": "", + "codeIataAirline": "WN", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Western Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3669, + "callsign": "", + "codeHub": "", + "codeIataAirline": "WN", + "codeIcaoAirline": "", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norfly", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3670, + "callsign": "WORLD AIRWAYS", + "codeHub": "ATL", + "codeIataAirline": "WO", + "codeIcaoAirline": "WOA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "468", + "nameAirline": "World Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3671, + "callsign": "", + "codeHub": "BLK", + "codeIataAirline": "WP", + "codeIcaoAirline": "BNW", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British North West Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3672, + "callsign": "", + "codeHub": "", + "codeIataAirline": "WP", + "codeIcaoAirline": "", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania Aeronaves Del Peru", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3673, + "callsign": "SWIFTFLIGHT", + "codeHub": "", + "codeIataAirline": "WQ", + "codeIcaoAirline": "SWQ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SWIFT AIR,L.L.C.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3674, + "callsign": "WHISKEY QUEBEC", + "codeHub": "NAS", + "codeIataAirline": "WQ", + "codeIcaoAirline": "WQA", + "codeIso2Country": "BS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bahamas World Airlines (1974) Ltd.", + "nameCountry": "Bahamas", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3675, + "callsign": "TONGA ROYAL", + "codeHub": "TBU", + "codeIataAirline": "WR", + "codeIcaoAirline": "HRH", + "codeIso2Country": "TO", + "founding": 0, + "iataPrefixAccounting": "971", + "nameAirline": "Royal Tongan Airlines", + "nameCountry": "Tonga", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3676, + "callsign": "AVIAPRAD", + "codeHub": "SVX", + "codeIataAirline": "WR", + "codeIcaoAirline": "VID", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviaprad", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3677, + "callsign": "FLY CARGO", + "codeHub": "JNB", + "codeIataAirline": "WS", + "codeIcaoAirline": "AIN", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "648", + "nameAirline": "African International Airways", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3678, + "callsign": "ISLAND BIRD", + "codeHub": "", + "codeIataAirline": "WS", + "codeIcaoAirline": "ISB", + "codeIso2Country": "GP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caraibes Air Transport", + "nameCountry": "Guadeloupe", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3679, + "callsign": "AEROWILT", + "codeHub": "", + "codeIataAirline": "WS", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wiltshire School of Flying", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3680, + "callsign": "NIGERIA", + "codeHub": "LOS", + "codeIataAirline": "WT", + "codeIcaoAirline": "NGA", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "87", + "nameAirline": "Nigeria Airways", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3681, + "callsign": "WUHAN AIR", + "codeHub": "WUH", + "codeIataAirline": "WU", + "codeIcaoAirline": "CWU", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wuhan Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3682, + "callsign": "NETHERLINES", + "codeHub": "AMS", + "codeIataAirline": "WU", + "codeIcaoAirline": "NET", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Netherlands Airlines", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3683, + "callsign": "WIZZAIR UKRAINE", + "codeHub": "IEV", + "codeIataAirline": "WU", + "codeIcaoAirline": "WAU", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wizz Air Ukraine", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3684, + "callsign": "TIKAL", + "codeHub": "GUA", + "codeIataAirline": "WU*", + "codeIcaoAirline": "TKC", + "codeIso2Country": "GT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tikal Jets", + "nameCountry": "Guatemala", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3685, + "callsign": "WHISKEY VICTOR", + "codeHub": "", + "codeIataAirline": "WV", + "codeIcaoAirline": "AVV", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avair", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3686, + "callsign": "KHAKI BLUE", + "codeHub": "", + "codeIataAirline": "WV", + "codeIcaoAirline": "KKB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air South", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3687, + "callsign": "", + "codeHub": "", + "codeIataAirline": "WV", + "codeIcaoAirline": "MWA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midwest Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3688, + "callsign": "", + "codeHub": "LPCS", + "codeIataAirline": "WV", + "codeIcaoAirline": "RVP", + "codeIso2Country": "PT", + "founding": 2000, + "iataPrefixAccounting": "", + "nameAirline": "Aero Vip (Portugal)", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3689, + "callsign": "", + "codeHub": "LZU", + "codeIataAirline": "WV", + "codeIcaoAirline": "WAI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Greco International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3690, + "callsign": "", + "codeHub": "", + "codeIataAirline": "WV", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero VIP Companhia Transportes Servicos Aere", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3691, + "callsign": "", + "codeHub": "", + "codeIataAirline": "WV", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midwest Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3692, + "callsign": "SVEAFLYG", + "codeHub": "NYO", + "codeIataAirline": "WV*", + "codeIcaoAirline": "SVB", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swe Fly", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3693, + "callsign": "BABY", + "codeHub": "EMA", + "codeIataAirline": "WW", + "codeIcaoAirline": "BMI", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "bmibaby", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3694, + "callsign": "CLANSPEED", + "codeHub": "", + "codeIataAirline": "WW", + "codeIcaoAirline": "SEU", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Scottish European Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3695, + "callsign": "WOWAIR", + "codeHub": "KEF", + "codeIataAirline": "WW", + "codeIcaoAirline": "WOW", + "codeIso2Country": "IS", + "founding": 2011, + "iataPrefixAccounting": "377", + "nameAirline": "WOW Air ehf", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3696, + "callsign": "", + "codeHub": "", + "codeIataAirline": "WW", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "bmi Regional", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3697, + "callsign": "WESTWING", + "codeHub": "", + "codeIataAirline": "WW", + "codeIcaoAirline": "", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Westwing", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3698, + "callsign": "", + "codeHub": "", + "codeIataAirline": "WW*", + "codeIcaoAirline": "WWL", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Whyalla Airlines.", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3699, + "callsign": "", + "codeHub": "DTW", + "codeIataAirline": "WX", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "American Eagle Airlines (1980)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3700, + "callsign": "NEWSOUTH", + "codeHub": "", + "codeIataAirline": "WX", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlines of New South Wales", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3701, + "callsign": "AIR ROMANIA", + "codeHub": "BBU", + "codeIataAirline": "WZ", + "codeIcaoAirline": "MDJ", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetran Air", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3702, + "callsign": "REGIONAL", + "codeHub": "", + "codeIataAirline": "WZ", + "codeIcaoAirline": "RGN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Berlin European U.K.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3703, + "callsign": "", + "codeHub": "COO", + "codeIataAirline": "WZ", + "codeIcaoAirline": "WSF", + "codeIso2Country": "BJ", + "founding": 0, + "iataPrefixAccounting": "682", + "nameAirline": "West African Airlines", + "nameCountry": "Benin", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3704, + "callsign": "SWAZIAIR", + "codeHub": "", + "codeIataAirline": "WZ", + "codeIcaoAirline": "", + "codeIso2Country": "SZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swazi Air", + "nameCountry": "Swaziland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3705, + "callsign": "", + "codeHub": "", + "codeIataAirline": "WZ", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Closed Joint Stock Company Red Wing", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3706, + "callsign": "CHASQUI", + "codeHub": "", + "codeIataAirline": "WZ*", + "codeIcaoAirline": "CSQ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Western Air Freight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3707, + "callsign": "", + "codeHub": "", + "codeIataAirline": "X1", + "codeIcaoAirline": "", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FORTHcrs", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3708, + "callsign": "BAIKAL", + "codeHub": "IKT", + "codeIataAirline": "X3", + "codeIcaoAirline": "BKL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baikal Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3709, + "callsign": "EXCELLENCE", + "codeHub": "CGN", + "codeIataAirline": "X3*", + "codeIcaoAirline": "HLX", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hapag-Lloyd Express", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3710, + "callsign": "", + "codeHub": "JNU", + "codeIataAirline": "X4", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alaska Seaplanes", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3711, + "callsign": "", + "codeHub": "VLI", + "codeIataAirline": "X4", + "codeIcaoAirline": "", + "codeIso2Country": "VU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vanair", + "nameCountry": "Vanuatu", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3712, + "callsign": "", + "codeHub": "", + "codeIataAirline": "X4", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Excursions", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3713, + "callsign": "", + "codeHub": "", + "codeIataAirline": "X4", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Excursion, LLC", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3714, + "callsign": "STARDUST", + "codeHub": "FRA", + "codeIataAirline": "X4*", + "codeIcaoAirline": "GXL", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "XL Airways Germany", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3715, + "callsign": "", + "codeHub": "", + "codeIataAirline": "X4*", + "codeIcaoAirline": "", + "codeIso2Country": "HK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BAS (H.K.) Limited", + "nameCountry": "Hong Kong", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3716, + "callsign": "CRONUS", + "codeHub": "ATH", + "codeIataAirline": "X5", + "codeIcaoAirline": "CUS", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cronus Airlines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3717, + "callsign": "TENDER AIR", + "codeHub": "OTP", + "codeIataAirline": "X5", + "codeIcaoAirline": "OTJ", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ten Airways", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter,virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 3718, + "callsign": "AERODIRECT", + "codeHub": "", + "codeIataAirline": "X5*", + "codeIcaoAirline": "DRR", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airdirect Bedarfsflug", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3719, + "callsign": "AFRIQUE-BENIN", + "codeHub": "COO", + "codeIataAirline": "X5*", + "codeIcaoAirline": "FBN", + "codeIso2Country": "BJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Afrique Airlines", + "nameCountry": "Benin", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3720, + "callsign": "", + "codeHub": "", + "codeIataAirline": "X5*", + "codeIcaoAirline": "", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Pacific Air", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3721, + "callsign": "", + "codeHub": "", + "codeIataAirline": "X5*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ULD Logistics LLC", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3722, + "callsign": "", + "codeHub": "", + "codeIataAirline": "X7", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Exec Air, Inc. of Naples", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3723, + "callsign": "EASAIR", + "codeHub": "", + "codeIataAirline": "X7*", + "codeIcaoAirline": "EAZ", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zambia Skyways", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3724, + "callsign": "", + "codeHub": "", + "codeIataAirline": "X7*", + "codeIcaoAirline": "", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Service", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3725, + "callsign": "FEDEREAGLE", + "codeHub": "FOG", + "codeIataAirline": "X8", + "codeIcaoAirline": "FDE", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Federico II Airways", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3726, + "callsign": "", + "codeHub": "", + "codeIataAirline": "X8", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airmax S.A.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3727, + "callsign": "", + "codeHub": "", + "codeIataAirline": "X8", + "codeIcaoAirline": "", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Icaro Air", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3728, + "callsign": "ISLANDIA", + "codeHub": "RKV", + "codeIataAirline": "X9", + "codeIcaoAirline": "ISL", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Landsflug", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter,virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 3729, + "callsign": "", + "codeHub": "", + "codeIataAirline": "X9", + "codeIcaoAirline": "", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JSC \"Avion Express\"", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3730, + "callsign": "ROCKFISH", + "codeHub": "", + "codeIataAirline": "XA", + "codeIcaoAirline": "XAA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ARINC (Aeronautical Radio, Inc.)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3731, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XB", + "codeIcaoAirline": "IAT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Air Transport Association - IATA", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3732, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XB", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IATA -� Montreal", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3733, + "callsign": "CARIBBEAN", + "codeHub": "", + "codeIataAirline": "XC", + "codeIcaoAirline": "CLT", + "codeIso2Country": "AN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Caribbean", + "nameCountry": "Netherlands Antilles", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3734, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XC", + "codeIcaoAirline": "", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania Radio Aeronautica Costarriceense", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3735, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XD", + "codeIcaoAirline": "ATA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Transport Association of America (ATA)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3736, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XD", + "codeIcaoAirline": "XXD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "OAG", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3737, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XD", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Universal Air Travel Plan (UATP-Marketing)", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3738, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XD", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Scheduled Airlines Traffic Offices, Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3739, + "callsign": "GREEN-CRAFT", + "codeHub": "KGF", + "codeIataAirline": "XE", + "codeIcaoAirline": "ALT", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SBS Aircraft", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3740, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XE", + "codeIcaoAirline": "EUC", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurocontrol", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3741, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XE", + "codeIcaoAirline": "KHM", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cambodia International Airlines", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3742, + "callsign": "SOUTH CENTRAL", + "codeHub": "", + "codeIataAirline": "XE", + "codeIcaoAirline": "SCA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South Central Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3743, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XE", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Delux Public Charter LLC", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3744, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XF", + "codeIcaoAirline": "HSL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vladivostock Air", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3745, + "callsign": "VALDIVOSTOK AIR", + "codeHub": "VVO", + "codeIataAirline": "XF", + "codeIcaoAirline": "VLK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "277", + "nameAirline": "Vladavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3746, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XF", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Spacegrand Aviation Services - SGA", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3747, + "callsign": "CLICKJET", + "codeHub": "BCN", + "codeIataAirline": "XG", + "codeIcaoAirline": "CLI", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Clickair", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3748, + "callsign": "TRANS MALI", + "codeHub": "", + "codeIataAirline": "XG", + "codeIcaoAirline": "KLB", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Mali International", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3749, + "callsign": "", + "codeHub": "ALC", + "codeIataAirline": "XG", + "codeIcaoAirline": "", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotransporte de Espana", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3750, + "callsign": "", + "codeHub": "MLH", + "codeIataAirline": "XG", + "codeIcaoAirline": "", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alsavia", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3751, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XH", + "codeIcaoAirline": "XXH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Special Ground Handling Service -XH", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3752, + "callsign": "AERADIO", + "codeHub": "", + "codeIataAirline": "XI", + "codeIcaoAirline": "IAL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Aeradio", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3753, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XI", + "codeIcaoAirline": "XXI", + "codeIso2Country": "JM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronautical Telecommunications Ltd. (AEROTEL)", + "nameCountry": "Jamaica", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3754, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XI", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Aeradio Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3755, + "callsign": "MESABA", + "codeHub": "MSP", + "codeIataAirline": "XJ", + "codeIcaoAirline": "MES", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "582", + "nameAirline": "Mesaba Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3756, + "callsign": "", + "codeHub": "VVC", + "codeIataAirline": "XK", + "codeIcaoAirline": "ART", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotal", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3757, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XK", + "codeIcaoAirline": "HHH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Hawaii", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3758, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XL", + "codeIcaoAirline": "NSW", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Country Connection Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3759, + "callsign": "PROHAWK", + "codeHub": "DET", + "codeIataAirline": "XL*", + "codeIcaoAirline": "PRH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pro Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3760, + "callsign": "ALIEXPRESS", + "codeHub": "FCO", + "codeIataAirline": "XM", + "codeIcaoAirline": "SMX", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "C.A.I. First", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3761, + "callsign": "AXONAIR", + "codeHub": "ATH", + "codeIataAirline": "XN", + "codeIcaoAirline": "AXO", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "304", + "nameAirline": "Axon Airlines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3762, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XN", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Logic Malmo AB", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3763, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XN", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Xpressair", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3764, + "callsign": "FUN JET", + "codeHub": "PMI", + "codeIataAirline": "XO", + "codeIcaoAirline": "LTE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LTE International Airways", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3765, + "callsign": "AIR BLUE", + "codeHub": "CRK", + "codeIataAirline": "XO", + "codeIcaoAirline": "SGD", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South East Asian Airlines (SEAIR) International, Inc.", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3766, + "callsign": "", + "codeHub": "GRK", + "codeIataAirline": "XO", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rio Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3767, + "callsign": "XINJIANG", + "codeHub": "URC", + "codeIataAirline": "XO*", + "codeIcaoAirline": "CXJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Xinjiang Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3768, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XP", + "codeIcaoAirline": "DAE", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DHL Aero Expresso", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3769, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XP", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TEM Enterprises", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3770, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XP", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avior Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3771, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XS", + "codeIcaoAirline": "SIT", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "950", + "nameAirline": "SITA - Airlines Worldwide Telecommunications and Information Svcs", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3772, + "callsign": "EXEL COMMUTER", + "codeHub": "MST", + "codeIataAirline": "XT", + "codeIcaoAirline": "AXL", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "824", + "nameAirline": "Air Exel Netherlands", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3773, + "callsign": "SKY YOU", + "codeHub": "BKK", + "codeIataAirline": "XT", + "codeIcaoAirline": "SKT", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skystar Airways", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3774, + "callsign": "EXTER", + "codeHub": "", + "codeIataAirline": "XT", + "codeIcaoAirline": "XTR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sector Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3775, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XT", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Indonesia AirAsia Extra, PT", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3776, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XT", + "codeIcaoAirline": "", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicos Auxiliares de Transportes Aereos (SATA)", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3777, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XT", + "codeIcaoAirline": "", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Summit Philippines Airways", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3778, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XT", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alsace Exel", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3779, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XU", + "codeIcaoAirline": "XUT", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerorepresentaciones Tupac Amaru", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3780, + "callsign": "", + "codeHub": "EIS", + "codeIataAirline": "XV", + "codeIcaoAirline": "BVI", + "codeIso2Country": "VG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BVI Airways", + "nameCountry": "British Virgin Islands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3781, + "callsign": "GOTIC", + "codeHub": "", + "codeIataAirline": "XV", + "codeIcaoAirline": "GOT", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Express", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3782, + "callsign": "", + "codeHub": "IAD", + "codeIataAirline": "XV", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Presidential Airways (1985)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3783, + "callsign": "", + "codeHub": "LBV", + "codeIataAirline": "XV", + "codeIcaoAirline": "", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "M R Lines", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3784, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XV", + "codeIcaoAirline": "", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Waltair", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3785, + "callsign": "IVOIREAIRWAYS", + "codeHub": "ABJ", + "codeIataAirline": "XV*", + "codeIcaoAirline": "IVW", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "351", + "nameAirline": "Ivoire Airways", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3786, + "callsign": "SKYSTORM", + "codeHub": "VKO", + "codeIataAirline": "XW", + "codeIcaoAirline": "SXR", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "492", + "nameAirline": "Sky Express", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3787, + "callsign": "", + "codeHub": "AYT", + "codeIataAirline": "XW", + "codeIcaoAirline": "", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Talia Airways", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3788, + "callsign": "OREX", + "codeHub": "", + "codeIataAirline": "XW*", + "codeIcaoAirline": "ORX", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orbit Express Airlines (Orex)", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3789, + "callsign": "PERU", + "codeHub": "LIM", + "codeIataAirline": "XX", + "codeIcaoAirline": "WPL", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronaves del Peru", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3790, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XX", + "codeIcaoAirline": "", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hispania", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3791, + "callsign": "KALHARI", + "codeHub": "", + "codeIataAirline": "XY", + "codeIcaoAirline": "KEA", + "codeIso2Country": "NA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kalahari Express Airlines", + "nameCountry": "Namibia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3792, + "callsign": "REGAL EAGLE", + "codeHub": "", + "codeIataAirline": "XY", + "codeIcaoAirline": "NGP", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3793, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XY", + "codeIcaoAirline": "XYF", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Operations Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3794, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XY*", + "codeIcaoAirline": "KNE", + "codeIso2Country": "SA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Al-Khayala", + "nameCountry": "Saudi Arabia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3795, + "callsign": "", + "codeHub": "", + "codeIataAirline": "XY*", + "codeIcaoAirline": "", + "codeIso2Country": "SA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Al Khayala", + "nameCountry": "Saudi Arabia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3796, + "callsign": "LIGHT HOUSE", + "codeHub": "FLL", + "codeIataAirline": "Y0", + "codeIcaoAirline": "EMJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yellow Air Taxi", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3797, + "callsign": "", + "codeHub": "", + "codeIataAirline": "Y1", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "392", + "nameAirline": "Travel Technology Interactive SA", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3798, + "callsign": "", + "codeHub": "", + "codeIataAirline": "Y1", + "codeIcaoAirline": "", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Travel Technologyu Interactive", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3799, + "callsign": "", + "codeHub": "EBB", + "codeIataAirline": "Y2", + "codeIcaoAirline": "AFI", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Africa One (Uganda)", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3800, + "callsign": "JAMBO", + "codeHub": "EBB", + "codeIataAirline": "Y2", + "codeIcaoAirline": "AFJ", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "693", + "nameAirline": "Alliance Air", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3801, + "callsign": "CENTURYFLIGHT", + "codeHub": "JBQ", + "codeIataAirline": "Y2", + "codeIcaoAirline": "CEY", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Century, S.A.", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3802, + "callsign": "GLOBESPAN", + "codeHub": "EDI", + "codeIataAirline": "Y2", + "codeIcaoAirline": "GSM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "60", + "nameAirline": "Flyglobespan", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3803, + "callsign": "SIMBA", + "codeHub": "JNB", + "codeIataAirline": "Y3", + "codeIcaoAirline": "GRF", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gryphon Airlines", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3804, + "callsign": "", + "codeHub": "", + "codeIataAirline": "Y3*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Worldwide Cargo Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3805, + "callsign": "", + "codeHub": "", + "codeIataAirline": "Y3*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Driessen Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3806, + "callsign": "MAGNUM", + "codeHub": "NBO", + "codeIataAirline": "Y4", + "codeIcaoAirline": "EQA", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "67", + "nameAirline": "Eagle Aviation", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3807, + "callsign": "SEITEK", + "codeHub": "", + "codeIataAirline": "Y5", + "codeIcaoAirline": "ITD", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter Trans Avia", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3808, + "callsign": "PACE", + "codeHub": "INT", + "codeIataAirline": "Y5", + "codeIcaoAirline": "PCE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pace Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3809, + "callsign": "", + "codeHub": "", + "codeIataAirline": "Y5", + "codeIcaoAirline": "RXR", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arax Airways", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3810, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "Y5*", + "codeIcaoAirline": "AWA", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asia Wings", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3811, + "callsign": "", + "codeHub": "HAH", + "codeIataAirline": "Y6", + "codeIcaoAirline": "AYD", + "codeIso2Country": "KM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AB Aviation", + "nameCountry": "Comoros", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3812, + "callsign": "BATAVIA", + "codeHub": "CGK", + "codeIataAirline": "Y6", + "codeIcaoAirline": "BTV", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Metro Batavia", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3813, + "callsign": "", + "codeHub": "PNH", + "codeIataAirline": "Y6", + "codeIcaoAirline": "CCL", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cambodia Airlines", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3814, + "callsign": "VESTAL", + "codeHub": "", + "codeIataAirline": "Y6", + "codeIcaoAirline": "VIP", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Europe Elite", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3815, + "callsign": "CAMBODIA AIRLINES", + "codeHub": "", + "codeIataAirline": "Y6*", + "codeIcaoAirline": "KHM", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cambodia Airlines", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3816, + "callsign": "ENVOY", + "codeHub": "LGW", + "codeIataAirline": "Y7", + "codeIcaoAirline": "FJE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "362", + "nameAirline": "Silverjet", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3817, + "callsign": "", + "codeHub": "", + "codeIataAirline": "Y7", + "codeIcaoAirline": "", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Iran Asseman Airlines", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3818, + "callsign": "", + "codeHub": "", + "codeIataAirline": "Y7*", + "codeIcaoAirline": "DNJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerodynamics", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3819, + "callsign": "TRANS-BENIN", + "codeHub": "COO", + "codeIataAirline": "Y7*", + "codeIcaoAirline": "TNB", + "codeIso2Country": "BJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Air Benin", + "nameCountry": "Benin", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3820, + "callsign": "SAYANY", + "codeHub": "", + "codeIataAirline": "Y8*", + "codeIcaoAirline": "SYL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sayany Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3821, + "callsign": "", + "codeHub": "", + "codeIataAirline": "YA", + "codeIcaoAirline": "", + "codeIso2Country": "NP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yeti Airlines", + "nameCountry": "Nepal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3822, + "callsign": "UNITY", + "codeHub": "BNE", + "codeIataAirline": "YC", + "codeIcaoAirline": "FWQ", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight West Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3823, + "callsign": "TRYGG", + "codeHub": "", + "codeIataAirline": "YC", + "codeIcaoAirline": "TYG", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trygg-Flyg", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3824, + "callsign": "", + "codeHub": "", + "codeIataAirline": "YC*", + "codeIcaoAirline": "", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caverton Helicopters", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 3825, + "callsign": "SKY EXPRESS", + "codeHub": "GOT", + "codeIataAirline": "YD", + "codeIcaoAirline": "SKX", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Salair", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3826, + "callsign": "SYNERGY", + "codeHub": "", + "codeIataAirline": "YD", + "codeIcaoAirline": "SYG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "259", + "nameAirline": "Synergy Aviation Ltd", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3827, + "callsign": "", + "codeHub": "", + "codeIataAirline": "YD", + "codeIcaoAirline": "", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transalp Air", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3828, + "callsign": "ACE CARGO", + "codeHub": "DEL", + "codeIataAirline": "YE", + "codeIcaoAirline": "ACQ", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "185", + "nameAirline": "Aryan Cargo Express", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3829, + "callsign": "", + "codeHub": "NLK", + "codeIataAirline": "YE", + "codeIcaoAirline": "", + "codeIso2Country": "NF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norfolk Jet Express", + "nameCountry": "Norfolk Island", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3830, + "callsign": "", + "codeHub": "", + "codeIataAirline": "YE", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yanda Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3831, + "callsign": "", + "codeHub": "", + "codeIataAirline": "YF", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Department of National Defence", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3832, + "callsign": "", + "codeHub": "", + "codeIataAirline": "YG", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "YTO Cargo Airlines Co. Ltd.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3833, + "callsign": "AIR JET", + "codeHub": "ORY", + "codeIataAirline": "YH", + "codeIcaoAirline": "AIJ", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Jet", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3834, + "callsign": "", + "codeHub": "DMK", + "codeIataAirline": "YH", + "codeIcaoAirline": "THG", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thai Global Air", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3835, + "callsign": "", + "codeHub": "MIA", + "codeIataAirline": "YH", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "361", + "nameAirline": "Sunsplash Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3836, + "callsign": "THAI GLOBAL", + "codeHub": "", + "codeIataAirline": "YH*", + "codeIcaoAirline": "THM", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thai Global Airline", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3837, + "callsign": "", + "codeHub": "", + "codeIataAirline": "YI", + "codeIcaoAirline": "AYE", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yunnan Ying'An Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3838, + "callsign": "AIR SUNSHINE", + "codeHub": "FLL", + "codeIataAirline": "YI", + "codeIcaoAirline": "RSI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "806", + "nameAirline": "Air Sunshine", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3839, + "callsign": "TURAVRUPA", + "codeHub": "", + "codeIataAirline": "YI", + "codeIcaoAirline": "TUR", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TUR European Airways", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3840, + "callsign": "", + "codeHub": "IST", + "codeIataAirline": "YI", + "codeIcaoAirline": "", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TUR Avrupa", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3841, + "callsign": "", + "codeHub": "KWE", + "codeIataAirline": "YI", + "codeIcaoAirline": "", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yunnan Ying'An Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3842, + "callsign": "", + "codeHub": "SYM", + "codeIataAirline": "YI", + "codeIcaoAirline": "", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yunnan Ying'an Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3843, + "callsign": "", + "codeHub": "", + "codeIataAirline": "YI", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "852", + "nameAirline": "Yunnan Yingan Airline Co., Ltd.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3844, + "callsign": "AIR YING AN", + "codeHub": "", + "codeIataAirline": "YI*", + "codeIcaoAirline": "AYE", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yunnan Yingan Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3845, + "callsign": "", + "codeHub": "", + "codeIataAirline": "YJ", + "codeIcaoAirline": "", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "687", + "nameAirline": "Amiyi Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3846, + "callsign": "AIRKIBRIS", + "codeHub": "ECN", + "codeIataAirline": "YK", + "codeIcaoAirline": "KYV", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "56", + "nameAirline": "Kibris Turk Hava Yollari", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3847, + "callsign": "", + "codeHub": "", + "codeIataAirline": "YK*", + "codeIcaoAirline": "HZN", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Horizon Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3848, + "callsign": "", + "codeHub": "", + "codeIataAirline": "YK*", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Aviation", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3849, + "callsign": "LIBYAN WINGS", + "codeHub": "MJI", + "codeIataAirline": "YL", + "codeIcaoAirline": "LWA", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "368", + "nameAirline": "Libyan Wings", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3850, + "callsign": "COMPAIR", + "codeHub": "", + "codeIataAirline": "YM", + "codeIcaoAirline": "CYM", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compass Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3851, + "callsign": "DIRAC", + "codeHub": "", + "codeIataAirline": "YM", + "codeIcaoAirline": "DAV", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dirac Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3852, + "callsign": "ECHO MIKE", + "codeHub": "MCM", + "codeIataAirline": "YO", + "codeIcaoAirline": "MCM", + "codeIso2Country": "MC", + "founding": 0, + "iataPrefixAccounting": "747", + "nameAirline": "Heli Air Monaco", + "nameCountry": "Monaco", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3853, + "callsign": "AERO LLOYD", + "codeHub": "FRA", + "codeIataAirline": "YP", + "codeIcaoAirline": "AEF", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Lloyd", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3854, + "callsign": "", + "codeHub": "", + "codeIataAirline": "YP", + "codeIcaoAirline": "", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Perimeter Aviation Ltd.", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3855, + "callsign": "POLET", + "codeHub": "VOZ", + "codeIataAirline": "YQ", + "codeIcaoAirline": "POT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "342", + "nameAirline": "Aircompany Polet", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3856, + "callsign": "SWEDCOPTER", + "codeHub": "", + "codeIataAirline": "YQ", + "codeIcaoAirline": "SCO", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helikopterservice AB, Euro Air", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3857, + "callsign": "", + "codeHub": "", + "codeIataAirline": "YQ", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Link Conexion Aerea S.A. de C.V", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3858, + "callsign": "SCENIC", + "codeHub": "VGT", + "codeIataAirline": "YR", + "codeIcaoAirline": "SCE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "398", + "nameAirline": "Grand Canyon Airlines, Inc. dba Scenic Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3859, + "callsign": "NAKURU", + "codeHub": "NBO", + "codeIataAirline": "YS*", + "codeIcaoAirline": "KFL", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flamingo Airways", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3860, + "callsign": "YETI AIRLINES", + "codeHub": "KTM", + "codeIataAirline": "YT", + "codeIcaoAirline": "NYT", + "codeIso2Country": "NP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yeti Airlines", + "nameCountry": "Nepal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3861, + "callsign": "AIR TOGO", + "codeHub": "LFW", + "codeIataAirline": "YT", + "codeIcaoAirline": "TGA", + "codeIso2Country": "TG", + "founding": 0, + "iataPrefixAccounting": "30", + "nameAirline": "Air Togo", + "nameCountry": "Togo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3862, + "callsign": "", + "codeHub": "", + "codeIataAirline": "YT", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SkyWest Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3863, + "callsign": "DOMINAIR", + "codeHub": "", + "codeIataAirline": "YU", + "codeIcaoAirline": "ADM", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "725", + "nameAirline": "Dominair", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3864, + "callsign": "", + "codeHub": "HND", + "codeIataAirline": "YU", + "codeIcaoAirline": "JST", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JUST - Japan Universal System Transport", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3865, + "callsign": "STATES", + "codeHub": "PHX", + "codeIataAirline": "YW", + "codeIcaoAirline": "SWJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Stateswest Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3866, + "callsign": "MIDEX", + "codeHub": "MKE", + "codeIataAirline": "YX", + "codeIcaoAirline": "MEP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "453", + "nameAirline": "Republic Airline Inc..", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3867, + "callsign": "ALAS URUGUAY", + "codeHub": "MVD", + "codeIataAirline": "YZ", + "codeIcaoAirline": "ALY", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "570", + "nameAirline": "Alas Uruguay - Dyrus S.A.", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3868, + "callsign": "ZIM AIRLINK", + "codeHub": "", + "codeIataAirline": "YZ", + "codeIcaoAirline": "FEM", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zimbabwe Airlink", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3869, + "callsign": "", + "codeHub": "OXB", + "codeIataAirline": "YZ", + "codeIcaoAirline": "GBU", + "codeIso2Country": "GW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bissau", + "nameCountry": "Guinea-Bissau", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3870, + "callsign": "HOLLAND EXEL", + "codeHub": "AMS", + "codeIataAirline": "YZ", + "codeIcaoAirline": "HXL", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Holland Exel", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3871, + "callsign": "", + "codeHub": "", + "codeIataAirline": "YZ", + "codeIcaoAirline": "", + "codeIso2Country": "GW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transports Aereos de Guinee-Bissau", + "nameCountry": "Guinea-Bissau", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3872, + "callsign": "", + "codeHub": "", + "codeIataAirline": "YZ", + "codeIcaoAirline": "", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TACA Ecuador", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3873, + "callsign": "", + "codeHub": "", + "codeIataAirline": "Z1", + "codeIcaoAirline": "", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airline Control Systems", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3874, + "callsign": "", + "codeHub": "BZV", + "codeIataAirline": "Z2", + "codeIcaoAirline": "BAO", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bravo Air Congo Brazzaville", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3875, + "callsign": "", + "codeHub": "CGO", + "codeIataAirline": "Z2", + "codeIcaoAirline": "CYN", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "China Zhingyuan Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3876, + "callsign": "STYRIAN", + "codeHub": "GRZ", + "codeIataAirline": "Z2", + "codeIcaoAirline": "STY", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "536", + "nameAirline": "Styrian Airways", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3877, + "callsign": "", + "codeHub": "MBX", + "codeIataAirline": "Z2", + "codeIcaoAirline": "STY", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Slovenian Spirit", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3878, + "callsign": "", + "codeHub": "", + "codeIataAirline": "Z3", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PM Air LLC", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3879, + "callsign": "", + "codeHub": "", + "codeIataAirline": "Z3*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Promech", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3880, + "callsign": "ZIRCON", + "codeHub": "", + "codeIataAirline": "Z4", + "codeIcaoAirline": "BZW", + "codeIso2Country": "BJ", + "founding": 0, + "iataPrefixAccounting": "573", + "nameAirline": "Zircon Airways Benin", + "nameCountry": "Benin", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3881, + "callsign": "ZOOM", + "codeHub": "YOW", + "codeIataAirline": "Z4*", + "codeIcaoAirline": "OOM", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "389", + "nameAirline": "Zoom Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3882, + "callsign": "GMG", + "codeHub": "DAC", + "codeIataAirline": "Z5", + "codeIcaoAirline": "GMG", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "9", + "nameAirline": "GMG Airlines", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3883, + "callsign": "", + "codeHub": "HRE", + "codeIataAirline": "Z5", + "codeIcaoAirline": "", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Africa Aviation", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3884, + "callsign": "", + "codeHub": "FRU", + "codeIataAirline": "Z7", + "codeIcaoAirline": "AIF", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia Traffic", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3885, + "callsign": "ZIM EXPRESS", + "codeHub": "HRE", + "codeIataAirline": "Z7", + "codeIcaoAirline": "EZX", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "247", + "nameAirline": "Zimbabwe Express Airlines", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3886, + "callsign": "FRESH EXPRESS", + "codeHub": "HRE", + "codeIataAirline": "Z7", + "codeIcaoAirline": "FZW", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Africa Zimbabwe", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3887, + "callsign": "", + "codeHub": "DXB", + "codeIataAirline": "Z7", + "codeIcaoAirline": "SFQ", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sahara Aviation", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3888, + "callsign": "", + "codeHub": "HRE", + "codeIataAirline": "Z7", + "codeIcaoAirline": "", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "flyafrica.com", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3889, + "callsign": "ADCO", + "codeHub": "LOS", + "codeIataAirline": "Z7*", + "codeIcaoAirline": "ADK", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Development Company", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3890, + "callsign": "", + "codeHub": "", + "codeIataAirline": "Z7*", + "codeIcaoAirline": "SFQ", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "913", + "nameAirline": "Sahara Air Cargo", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3891, + "callsign": "MALI AIRWAYS", + "codeHub": "", + "codeIataAirline": "Z8", + "codeIcaoAirline": "MTZ", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mali Airways", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3892, + "callsign": "PULKOVO", + "codeHub": "LED", + "codeIataAirline": "Z8", + "codeIcaoAirline": "PLK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Enterprise Pulkovo", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3893, + "callsign": "AERO ZAMBIA", + "codeHub": "LUN", + "codeIataAirline": "Z9", + "codeIcaoAirline": "RZL", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "509", + "nameAirline": "Aero Zambia", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3894, + "callsign": "CYCLONE", + "codeHub": "DSM", + "codeIataAirline": "ZA", + "codeIcaoAirline": "CYD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Access Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3895, + "callsign": "ASTAIR", + "codeHub": "DME", + "codeIataAirline": "ZA", + "codeIcaoAirline": "SUW", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "433", + "nameAirline": "Astair", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3896, + "callsign": "ZAS AIRLINES", + "codeHub": "CAI", + "codeIataAirline": "ZA", + "codeIcaoAirline": "ZAS", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ZAS", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3897, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ZA", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Genair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3898, + "callsign": "KORONGO", + "codeHub": "FBM", + "codeIataAirline": "ZC", + "codeIcaoAirline": "KGO", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "557", + "nameAirline": "Korongo Airlines", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3899, + "callsign": "SWAZI NATIONAL", + "codeHub": "", + "codeIataAirline": "ZC", + "codeIcaoAirline": "RSN", + "codeIso2Country": "SZ", + "founding": 0, + "iataPrefixAccounting": "141", + "nameAirline": "Royal Swazi National Airways", + "nameCountry": "Swaziland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3900, + "callsign": "MAYOTTE AIR", + "codeHub": "DZA", + "codeIataAirline": "ZD", + "codeIcaoAirline": "EWR", + "codeIso2Country": "YT", + "founding": 0, + "iataPrefixAccounting": "732", + "nameAirline": "EWA Air", + "nameCountry": "Mayotte", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3901, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ZD*", + "codeIcaoAirline": "", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coral Air Niue", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3902, + "callsign": "LINEAS AZTECA", + "codeHub": "MEX", + "codeIataAirline": "ZE", + "codeIcaoAirline": "LCD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "994", + "nameAirline": "Lineas Aereas Azteca", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3903, + "callsign": "ATHENS AIRWAYS", + "codeHub": "ATH", + "codeIataAirline": "ZF", + "codeIcaoAirline": "ATW", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Athens Airways", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3904, + "callsign": "MIDWING", + "codeHub": "", + "codeIataAirline": "ZF", + "codeIcaoAirline": "MIW", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airborne of Sweden", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3905, + "callsign": "", + "codeHub": "TXL", + "codeIataAirline": "ZF", + "codeIcaoAirline": "", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Berlin USA", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3906, + "callsign": "SAFARI EXPRESS", + "codeHub": "", + "codeIataAirline": "ZF*", + "codeIcaoAirline": "SXY", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "925", + "nameAirline": "Safari Express Cargo", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3907, + "callsign": "GROZNY AVIA", + "codeHub": "GRV", + "codeIataAirline": "ZG", + "codeIcaoAirline": "GOZ", + "codeIso2Country": "RU", + "founding": 2007, + "iataPrefixAccounting": "24", + "nameAirline": "Joint Stock Company Airline\" Groznyy Avia\"", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3908, + "callsign": "JACKPOT", + "codeHub": "MFM", + "codeIataAirline": "ZG", + "codeIcaoAirline": "VVM", + "codeIso2Country": "MO", + "founding": 0, + "iataPrefixAccounting": "887", + "nameAirline": "Viva Macau", + "nameCountry": "Macao", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3909, + "callsign": "KHAKI EXPRESS", + "codeHub": "", + "codeIataAirline": "ZG*", + "codeIcaoAirline": "AEJ", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Express", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3910, + "callsign": "", + "codeHub": "SSG", + "codeIataAirline": "ZH", + "codeIcaoAirline": "ECV", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ecuato Guineana de Aviacion", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3911, + "callsign": "", + "codeHub": "ESB", + "codeIataAirline": "ZH", + "codeIcaoAirline": "THT", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "THT Hava Yollari", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3912, + "callsign": "AIR TRUCK", + "codeHub": "EAS", + "codeIataAirline": "ZH", + "codeIcaoAirline": "TRK", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Truck", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3913, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ZJ", + "codeIcaoAirline": "ARC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ARINC", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3914, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ZJ", + "codeIcaoAirline": "", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Routing International L.P.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3915, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ZJ*", + "codeIcaoAirline": "TED", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Teddy Air", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3916, + "callsign": "ZAMBEZI WINGS", + "codeHub": "LUN", + "codeIataAirline": "ZJ*", + "codeIcaoAirline": "ZMA", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zambezi Airlines", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3917, + "callsign": "", + "codeHub": "ADL", + "codeIataAirline": "ZL", + "codeIcaoAirline": "", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Express Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3918, + "callsign": "AFRO", + "codeHub": "HRE", + "codeIataAirline": "ZL*", + "codeIcaoAirline": "AFM", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "292", + "nameAirline": "Affretair", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3919, + "callsign": "SCIBE AIRLIFT", + "codeHub": "FIH", + "codeIataAirline": "ZM", + "codeIcaoAirline": "SBZ", + "codeIso2Country": "ZR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Scibe-Airlift", + "nameCountry": "Zaire", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3920, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ZM", + "codeIcaoAirline": "", + "codeIso2Country": "RW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alliance Express Rwanda", + "nameCountry": "Rwanda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3921, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ZM*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Air Charters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3922, + "callsign": "BOURBON", + "codeHub": "RUN", + "codeIataAirline": "ZN", + "codeIcaoAirline": "BUB", + "codeIso2Country": "RE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bourbon", + "nameCountry": "Reunion", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3923, + "callsign": "MAYFLOWER", + "codeHub": "", + "codeIataAirline": "ZN", + "codeIcaoAirline": "EAV", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Airlines Luftverkehrsges", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3924, + "callsign": "SHUMBA", + "codeHub": "", + "codeIataAirline": "ZO", + "codeIcaoAirline": "CEN", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Air Transpsort Services (CATS)", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3925, + "callsign": "", + "codeHub": "FVCP", + "codeIataAirline": "ZO", + "codeIcaoAirline": "", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Air Transport Services", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3926, + "callsign": "GREAT PLAINS", + "codeHub": "TUL", + "codeIataAirline": "ZO*", + "codeIcaoAirline": "OZR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ozark Air Lines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3927, + "callsign": "", + "codeHub": "ASU", + "codeIataAirline": "ZP", + "codeIcaoAirline": "AZP", + "codeIso2Country": "PY", + "founding": 0, + "iataPrefixAccounting": "445", + "nameAirline": "Amaszonas del Paraguay S.A. Lineas Aereas", + "nameCountry": "Paraguay", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3928, + "callsign": "PARADISE", + "codeHub": "STT", + "codeIataAirline": "ZP", + "codeIcaoAirline": "STT", + "codeIso2Country": "VI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air St. Thomas", + "nameCountry": "U.S. Virgin Islands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3929, + "callsign": "ARK AIRWAYS", + "codeHub": "EVN", + "codeIataAirline": "ZQ", + "codeIcaoAirline": "ARQ", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "327", + "nameAirline": "Ark Airways", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3930, + "callsign": "LOCAIR", + "codeHub": "FLL", + "codeIataAirline": "ZQ", + "codeIcaoAirline": "LOC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Locair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter,virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 3931, + "callsign": "", + "codeHub": "AKL", + "codeIataAirline": "ZQ", + "codeIcaoAirline": "NMA", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Newmans Airline", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3932, + "callsign": "", + "codeHub": "AKL", + "codeIataAirline": "ZQ", + "codeIcaoAirline": "NZA", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ansett New Zealand", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3933, + "callsign": "CARIB SUN", + "codeHub": "SJU", + "codeIataAirline": "ZQ", + "codeIcaoAirline": "SFG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "521", + "nameAirline": "Caribbean Sun Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3934, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ZQ", + "codeIcaoAirline": "", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tasman Pacific Airlines of NZ", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3935, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ZQ*", + "codeIcaoAirline": "", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caribbean Sun Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3936, + "callsign": "ZITOTRANS", + "codeHub": "SVX", + "codeIataAirline": "ZR", + "codeIcaoAirline": "AZS", + "codeIso2Country": "RU", + "founding": 1995, + "iataPrefixAccounting": "", + "nameAirline": "Aviacon Zitotrans Air Company JSC", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3937, + "callsign": "MUKAIR", + "codeHub": "CPH", + "codeIataAirline": "ZR", + "codeIcaoAirline": "MUK", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "796", + "nameAirline": "Muk Air", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3938, + "callsign": "", + "codeHub": "CAI", + "codeIataAirline": "ZR", + "codeIcaoAirline": "", + "codeIso2Country": "EG", + "founding": 2006, + "iataPrefixAccounting": "", + "nameAirline": "Alexandria Airlines", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3939, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ZR", + "codeIcaoAirline": "", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Casair Aviation Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3940, + "callsign": "CANYON VIEW", + "codeHub": "GCN", + "codeIataAirline": "ZS", + "codeIcaoAirline": "CVU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grand Canyon Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3941, + "callsign": "HISPANIOLA", + "codeHub": "POP", + "codeIataAirline": "ZS", + "codeIcaoAirline": "HIS", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hispaniola Airways", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3942, + "callsign": "SPAKAZ", + "codeHub": "ALA", + "codeIataAirline": "ZS", + "codeIcaoAirline": "KZS", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kazaviaspas", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 3943, + "callsign": "NAJIM", + "codeHub": "RUH", + "codeIataAirline": "ZS", + "codeIcaoAirline": "SMY", + "codeIso2Country": "SA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sama Airways", + "nameCountry": "Saudi Arabia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3944, + "callsign": "", + "codeHub": "HRE", + "codeIataAirline": "ZS", + "codeIcaoAirline": "", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sol Air (Zimbabwe)", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3945, + "callsign": "AZZURRA AIR", + "codeHub": "MXP", + "codeIataAirline": "ZS*", + "codeIcaoAirline": "AZI", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "864", + "nameAirline": "Azzurra Air", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3946, + "callsign": "ZAMBEZI", + "codeHub": "", + "codeIataAirline": "ZT", + "codeIcaoAirline": "TZT", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Zambezi", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3947, + "callsign": "", + "codeHub": "LGW", + "codeIataAirline": "ZT", + "codeIcaoAirline": "", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Snowjet", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 3948, + "callsign": "VORONEZHAVIA", + "codeHub": "", + "codeIataAirline": "ZT*", + "codeIcaoAirline": "VRN", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Voronezhavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3949, + "callsign": "AYJET", + "codeHub": "LCA", + "codeIataAirline": "ZU", + "codeIcaoAirline": "AJY", + "codeIso2Country": "CY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ajet Airways", + "nameCountry": "Cyprus", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3950, + "callsign": "ARCA", + "codeHub": "BOG", + "codeIataAirline": "ZU", + "codeIcaoAirline": "AKC", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arca Aerovias Colombianas", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 3951, + "callsign": "AGYDAL", + "codeHub": "DME", + "codeIataAirline": "ZU", + "codeIcaoAirline": "BBT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "894", + "nameAirline": "Air Bashkortostan", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3952, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ZU", + "codeIcaoAirline": "BBT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bashkortavia", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3953, + "callsign": "", + "codeHub": "", + "codeIataAirline": "ZU", + "codeIcaoAirline": "SNR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3954, + "callsign": "HELIOS", + "codeHub": "LCA", + "codeIataAirline": "ZU*", + "codeIcaoAirline": "HCY", + "codeIso2Country": "CY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helios Airways", + "nameCountry": "Cyprus", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3955, + "callsign": "", + "codeHub": "ABQ", + "codeIataAirline": "ZV", + "codeIcaoAirline": "AMW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Midwest (USA)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3956, + "callsign": "", + "codeHub": "EBL", + "codeIataAirline": "ZV", + "codeIcaoAirline": "GZQ", + "codeIso2Country": "IQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zagros Air (Iraq)", + "nameCountry": "Iraq", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3957, + "callsign": "", + "codeHub": "YQB", + "codeIataAirline": "ZX", + "codeIcaoAirline": "AAQ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Alliance (Canada)", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3958, + "callsign": "AIRCOACH", + "codeHub": "", + "codeIataAirline": "ZX", + "codeIcaoAirline": "ABL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "742", + "nameAirline": "Air B.C.", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 3959, + "callsign": "FLYZOOM", + "codeHub": "GLA", + "codeIataAirline": "ZX", + "codeIcaoAirline": "UKZ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zoom Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3960, + "callsign": "ADA AIR", + "codeHub": "TIA", + "codeIataAirline": "ZY", + "codeIcaoAirline": "ADE", + "codeIso2Country": "AL", + "founding": 0, + "iataPrefixAccounting": "121", + "nameAirline": "Ada Air", + "nameCountry": "Albania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 3961, + "callsign": "ANTALYA BIRD", + "codeHub": "AYT", + "codeIataAirline": "ZY", + "codeIcaoAirline": "SHY", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Airlines", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.4, + "airlineId": 3962, + "callsign": "PIEDMONT", + "codeHub": "CLT", + "codeIataAirline": "", + "codeIcaoAirline": "PAI", + "codeIso2Country": "UM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Piedmont", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 42, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.6, + "airlineId": 3963, + "callsign": "NATIONAL JET", + "codeHub": "ADL", + "codeIataAirline": "", + "codeIcaoAirline": "NJS", + "codeIso2Country": "AU", + "founding": 2009, + "iataPrefixAccounting": "", + "nameAirline": "Cobham Aviation", + "nameCountry": "Australia", + "sizeAirline": 33, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.7, + "airlineId": 3964, + "callsign": "SUNSTATE", + "codeHub": "BNE", + "codeIataAirline": "", + "codeIcaoAirline": "SSQ", + "codeIso2Country": "AU", + "founding": 1974, + "iataPrefixAccounting": "", + "nameAirline": "Sunstate Airlines", + "nameCountry": "Australia", + "sizeAirline": 30, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.0, + "airlineId": 3965, + "callsign": "ANADOLUJET", + "codeHub": "ESB", + "codeIataAirline": "", + "codeIcaoAirline": "AJA", + "codeIso2Country": "TR", + "founding": 2008, + "iataPrefixAccounting": "", + "nameAirline": "AnadoluJet", + "nameCountry": "Turkey", + "sizeAirline": 29, + "statusAirline": "active", + "type": "scheduled,division" + }, + { + "ageFleet": 7.2, + "airlineId": 3966, + "callsign": "J-AIR", + "codeHub": "NKM", + "codeIataAirline": "", + "codeIcaoAirline": "JLJ", + "codeIso2Country": "JP", + "founding": 1991, + "iataPrefixAccounting": "", + "nameAirline": "J-Air", + "nameCountry": "Japan", + "sizeAirline": 27, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.1, + "airlineId": 3967, + "callsign": "CONTRACT", + "codeHub": "DUB", + "codeIataAirline": "", + "codeIcaoAirline": "ABR", + "codeIso2Country": "IE", + "founding": 2015, + "iataPrefixAccounting": "", + "nameAirline": "ASL Airlines Ireland", + "nameCountry": "Ireland", + "sizeAirline": 25, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 3968, + "callsign": "", + "codeHub": "FLL", + "codeIataAirline": "", + "codeIcaoAirline": "GFT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silver Airways", + "nameCountry": "United States", + "sizeAirline": 25, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.3, + "airlineId": 3969, + "callsign": "LINK", + "codeHub": "NSN", + "codeIataAirline": "", + "codeIcaoAirline": "RLK", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Nelson", + "nameCountry": "New Zealand", + "sizeAirline": 23, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 12.6, + "airlineId": 3970, + "callsign": "INDIAN AIR FORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IFC", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Indian Air Force", + "nameCountry": "India", + "sizeAirline": 21, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 8.8, + "airlineId": 3971, + "callsign": "AIRBUS INDUSTRIE", + "codeHub": "TLS", + "codeIataAirline": "", + "codeIcaoAirline": "AIB", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airbus Industrie", + "nameCountry": "France", + "sizeAirline": 18, + "statusAirline": "active", + "type": "manufacturer" + }, + { + "ageFleet": 23.2, + "airlineId": 3972, + "callsign": "CONNIE", + "codeHub": "YIP", + "codeIataAirline": "", + "codeIcaoAirline": "CKS", + "codeIso2Country": "UM", + "founding": 2000, + "iataPrefixAccounting": "", + "nameAirline": "Kalitta Air", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 18, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 18.4, + "airlineId": 3973, + "callsign": "ENTER", + "codeHub": "WAW", + "codeIataAirline": "", + "codeIcaoAirline": "ENT", + "codeIso2Country": "PL", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "Enter Air", + "nameCountry": "Poland", + "sizeAirline": 17, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.0, + "airlineId": 3974, + "callsign": "", + "codeHub": "PER", + "codeIataAirline": "", + "codeIcaoAirline": "WQ8", + "codeIso2Country": "AU", + "founding": 1990, + "iataPrefixAccounting": "", + "nameAirline": "Skippers Aviation", + "nameCountry": "Australia", + "sizeAirline": 17, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 20.5, + "airlineId": 3975, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLB", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Bird Aviation", + "nameCountry": "Kenya", + "sizeAirline": 16, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 16.5, + "airlineId": 3976, + "callsign": "SONAIR", + "codeHub": "LAD", + "codeIataAirline": "", + "codeIcaoAirline": "SOR", + "codeIso2Country": "AO", + "founding": 1979, + "iataPrefixAccounting": "", + "nameAirline": "Sonair", + "nameCountry": "Angola", + "sizeAirline": 16, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.1, + "airlineId": 3977, + "callsign": "EUROSWISS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWU", + "codeIso2Country": "CH", + "founding": 2015, + "iataPrefixAccounting": "", + "nameAirline": "Swiss Global Air Lines", + "nameCountry": "Switzerland", + "sizeAirline": 15, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 23.7, + "airlineId": 3978, + "callsign": "AIR INUIT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "3H", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Inuit", + "nameCountry": "Canada", + "sizeAirline": 14, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 26.7, + "airlineId": 3979, + "callsign": "AMAPOLA", + "codeHub": "ARN", + "codeIataAirline": "", + "codeIcaoAirline": "APF", + "codeIso2Country": "SE", + "founding": 2004, + "iataPrefixAccounting": "", + "nameAirline": "Amapola", + "nameCountry": "Sweden", + "sizeAirline": 14, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 5.5, + "airlineId": 3980, + "callsign": "MASWINGS", + "codeHub": "MYY", + "codeIataAirline": "", + "codeIcaoAirline": "MWG", + "codeIso2Country": "MY", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "MASwings", + "nameCountry": "Malaysia", + "sizeAirline": 14, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.4, + "airlineId": 3981, + "callsign": "OMNI-EXPRESS", + "codeHub": "TUL", + "codeIataAirline": "", + "codeIcaoAirline": "OAE", + "codeIso2Country": "US", + "founding": 1984, + "iataPrefixAccounting": "", + "nameAirline": "Omni Air International", + "nameCountry": "United States", + "sizeAirline": 14, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 7.7, + "airlineId": 3982, + "callsign": "SILVER ARROW", + "codeHub": "LUX", + "codeIataAirline": "", + "codeIcaoAirline": "SVW", + "codeIso2Country": "LU", + "founding": 1999, + "iataPrefixAccounting": "", + "nameAirline": "Global Jet Luxembourg", + "nameCountry": "Luxembourg", + "sizeAirline": 14, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 10.4, + "airlineId": 3983, + "callsign": "AUSSY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EVY", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Australian Air Force", + "nameCountry": "Australia", + "sizeAirline": 13, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 23.8, + "airlineId": 3984, + "callsign": "FARNER", + "codeHub": "MLH", + "codeIataAirline": "", + "codeIcaoAirline": "FAT", + "codeIso2Country": "CH", + "founding": 2015, + "iataPrefixAccounting": "", + "nameAirline": "ASL Airlines Switzerland", + "nameCountry": "Switzerland", + "sizeAirline": 13, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 12.9, + "airlineId": 3985, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JCG", + "codeIso2Country": "JP", + "founding": 1948, + "iataPrefixAccounting": "", + "nameAirline": "Japan Coast Guard", + "nameCountry": "Japan", + "sizeAirline": 13, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 20.6, + "airlineId": 3986, + "callsign": "NORTH CARIBOO", + "codeHub": "YXJ", + "codeIataAirline": "", + "codeIcaoAirline": "NCB", + "codeIso2Country": "CA", + "founding": 1957, + "iataPrefixAccounting": "", + "nameAirline": "North Cariboo Air", + "nameCountry": "Canada", + "sizeAirline": 13, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 23.1, + "airlineId": 3987, + "callsign": "CASPIAN", + "codeHub": "THR", + "codeIataAirline": "", + "codeIcaoAirline": "CPN", + "codeIso2Country": "IR", + "founding": 1993, + "iataPrefixAccounting": "", + "nameAirline": "Caspian Airlines", + "nameCountry": "Iran", + "sizeAirline": 12, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 27.8, + "airlineId": 3988, + "callsign": "GRUPOMONTERREY", + "codeHub": "MEX", + "codeIataAirline": "", + "codeIcaoAirline": "GMT", + "codeIso2Country": "MX", + "founding": 1994, + "iataPrefixAccounting": "", + "nameAirline": "Magnicharters", + "nameCountry": "Mexico", + "sizeAirline": 12, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 29.1, + "airlineId": 3989, + "callsign": "SPRINTAIR", + "codeHub": "WAW", + "codeIataAirline": "", + "codeIcaoAirline": "SRN", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SprintAir", + "nameCountry": "Poland", + "sizeAirline": 12, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.0, + "airlineId": 3990, + "callsign": "DUBAI", + "codeHub": "DXB", + "codeIataAirline": "", + "codeIcaoAirline": "DUB", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dubai Air Wing / Royal Flight", + "nameCountry": "United Arab Emirates", + "sizeAirline": 11, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 20.9, + "airlineId": 3991, + "callsign": "WESTWIND", + "codeHub": "YXE", + "codeIataAirline": "", + "codeIcaoAirline": "WEW", + "codeIso2Country": "CA", + "founding": 1983, + "iataPrefixAccounting": "", + "nameAirline": "West Wind Aviation", + "nameCountry": "Canada", + "sizeAirline": 11, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 16.8, + "airlineId": 3992, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LCT", + "codeIso2Country": "MX", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos Regionales", + "nameCountry": "Mexico", + "sizeAirline": 10, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 27.4, + "airlineId": 3993, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canadian Air Force", + "nameCountry": "Canada", + "sizeAirline": 9, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 20.4, + "airlineId": 3994, + "callsign": "GERMAN AIR FORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAF", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "German Air Force", + "nameCountry": "Germany", + "sizeAirline": 9, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 15.0, + "airlineId": 3995, + "callsign": "LIMA LIMA CHARLEY", + "codeHub": "VNO", + "codeIataAirline": "", + "codeIcaoAirline": "LLC", + "codeIso2Country": "LT", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "Small Planet Airlines", + "nameCountry": "Lithuania", + "sizeAirline": 9, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 15.0, + "airlineId": 3996, + "callsign": "MOON FLOWER", + "codeHub": "MXP", + "codeIataAirline": "", + "codeIcaoAirline": "NOS", + "codeIso2Country": "IT", + "founding": 2001, + "iataPrefixAccounting": "", + "nameAirline": "Neos", + "nameCountry": "Italy", + "sizeAirline": 9, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 27.5, + "airlineId": 3997, + "callsign": "NEPTUNE", + "codeHub": "CVT", + "codeIataAirline": "", + "codeIcaoAirline": "NPT", + "codeIso2Country": "UK", + "founding": 1994, + "iataPrefixAccounting": "", + "nameAirline": "West Atlantic", + "nameCountry": "United Kingdom", + "sizeAirline": 9, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 22.9, + "airlineId": 3998, + "callsign": "OVERLAND", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "OLA", + "codeIso2Country": "NG", + "founding": 2001, + "iataPrefixAccounting": "", + "nameAirline": "Overland Airways", + "nameCountry": "Nigeria", + "sizeAirline": 9, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 14.7, + "airlineId": 3999, + "callsign": "VIVA COLOMBIA", + "codeHub": "MDE", + "codeIataAirline": "", + "codeIcaoAirline": "VVC", + "codeIso2Country": "CO", + "founding": 2012, + "iataPrefixAccounting": "", + "nameAirline": "VivaColombia", + "nameCountry": "Colombia", + "sizeAirline": 9, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 20.9, + "airlineId": 4000, + "callsign": "BOEING", + "codeHub": "ORD", + "codeIataAirline": "", + "codeIcaoAirline": "BOE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Boeing Commercial Airplane Group", + "nameCountry": "United States", + "sizeAirline": 8, + "statusAirline": "active", + "type": "manufacturer" + }, + { + "ageFleet": 6.2, + "airlineId": 4001, + "callsign": "GERMAN CARGO", + "codeHub": "LEJ", + "codeIataAirline": "", + "codeIcaoAirline": "BOX", + "codeIso2Country": "DE", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "AeroLogic", + "nameCountry": "Germany", + "sizeAirline": 8, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 4.4, + "airlineId": 4002, + "callsign": "XIANGJIAN", + "codeHub": "DLC", + "codeIataAirline": "", + "codeIcaoAirline": "CCD", + "codeIso2Country": "CN", + "founding": 2011, + "iataPrefixAccounting": "", + "nameAirline": "Dalian Airlines", + "nameCountry": "China", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 17.9, + "airlineId": 4003, + "callsign": "CHINOCK", + "codeHub": "YYC", + "codeIataAirline": "", + "codeIcaoAirline": "CNK", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunwest Aviation", + "nameCountry": "Canada", + "sizeAirline": 8, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 21.3, + "airlineId": 4004, + "callsign": "EVAS", + "codeHub": "YQX", + "codeIataAirline": "", + "codeIcaoAirline": "EVS", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EVAS Air Charters", + "nameCountry": "Canada", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.2, + "airlineId": 4005, + "callsign": "MOZAMBIQUE EXPRESS", + "codeHub": "MPM", + "codeIataAirline": "", + "codeIcaoAirline": "MXE", + "codeIso2Country": "MZ", + "founding": 1995, + "iataPrefixAccounting": "", + "nameAirline": "Mocambique Expresso", + "nameCountry": "Mozambique", + "sizeAirline": 8, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 26.3, + "airlineId": 4006, + "callsign": "SKYJET", + "codeHub": "MAD", + "codeIataAirline": "", + "codeIcaoAirline": "PNR", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PAN AIR Lineas Aereas", + "nameCountry": "Spain", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 5.7, + "airlineId": 4007, + "callsign": "QANTAS JETCONNECT", + "codeHub": "AKL", + "codeIataAirline": "", + "codeIcaoAirline": "QNZ", + "codeIso2Country": "NZ", + "founding": 2002, + "iataPrefixAccounting": "", + "nameAirline": "Jet Connect", + "nameCountry": "New Zealand", + "sizeAirline": 8, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 24.2, + "airlineId": 4008, + "callsign": "SIDERAL", + "codeHub": "CWB", + "codeIataAirline": "", + "codeIcaoAirline": "SID", + "codeIso2Country": "BR", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "Sideral Air Cargo", + "nameCountry": "Brazil", + "sizeAirline": 8, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 10.2, + "airlineId": 4009, + "callsign": "STAR CHARTER", + "codeHub": "RUH", + "codeIataAirline": "", + "codeIcaoAirline": "STT", + "codeIso2Country": "SA", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "Alpha Star Charter", + "nameCountry": "Saudi Arabia", + "sizeAirline": 8, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 29.8, + "airlineId": 4010, + "callsign": "AIREST CARGO", + "codeHub": "TLL", + "codeIataAirline": "", + "codeIcaoAirline": "AEG", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airest", + "nameCountry": "Estonia", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.5, + "airlineId": 4011, + "callsign": "AIRFAST", + "codeHub": "HLP", + "codeIataAirline": "", + "codeIcaoAirline": "AFE", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airfast Indonesia", + "nameCountry": "Indonesia", + "sizeAirline": 7, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 5.8, + "airlineId": 4012, + "callsign": "ASTERIX", + "codeHub": "VIE", + "codeIataAirline": "", + "codeIcaoAirline": "AOJ", + "codeIso2Country": "AT", + "founding": 2011, + "iataPrefixAccounting": "", + "nameAirline": "Avcon Jet", + "nameCountry": "Austria", + "sizeAirline": 7, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 26.0, + "airlineId": 4013, + "callsign": "CLEVER", + "codeHub": "PDV", + "codeIataAirline": "", + "codeIcaoAirline": "CGF", + "codeIso2Country": "BG", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "Cargo Air", + "nameCountry": "Bulgaria", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 23.2, + "airlineId": 4014, + "callsign": "MORNINGSTAR", + "codeHub": "YEG", + "codeIataAirline": "", + "codeIcaoAirline": "MAL", + "codeIso2Country": "CA", + "founding": 1992, + "iataPrefixAccounting": "", + "nameAirline": "Morningstar Air Express", + "nameCountry": "Canada", + "sizeAirline": 7, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 9.5, + "airlineId": 4015, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAS", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Petroleum Air Services", + "nameCountry": "Egypt", + "sizeAirline": 7, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 11.1, + "airlineId": 4016, + "callsign": "RYUKYU", + "codeHub": "OKA", + "codeIataAirline": "", + "codeIcaoAirline": "RAC", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ryukyu Air Commuter", + "nameCountry": "Japan", + "sizeAirline": 7, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 14.2, + "airlineId": 4017, + "callsign": "ROYALJET", + "codeHub": "AUH", + "codeIataAirline": "", + "codeIcaoAirline": "ROJ", + "codeIso2Country": "AE", + "founding": 2003, + "iataPrefixAccounting": "", + "nameAirline": "Royal Jet", + "nameCountry": "United Arab Emirates", + "sizeAirline": 7, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 12.8, + "airlineId": 4018, + "callsign": "PARAMITA", + "codeHub": "HLP", + "codeIataAirline": "", + "codeIcaoAirline": "TVV", + "codeIso2Country": "ID", + "founding": 1982, + "iataPrefixAccounting": "", + "nameAirline": "Travira Air", + "nameCountry": "Indonesia", + "sizeAirline": 7, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 14.2, + "airlineId": 4019, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "XAH", + "codeIso2Country": "", + "founding": 1990, + "iataPrefixAccounting": "", + "nameAirline": "Mid East Jet", + "nameCountry": "Saudia Arabia", + "sizeAirline": 7, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 30.9, + "airlineId": 4020, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFY", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Africa Charter Airline", + "nameCountry": "South Africa", + "sizeAirline": 6, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 1.8, + "airlineId": 4021, + "callsign": "AIR HAMBURG", + "codeHub": "EDHE", + "codeIataAirline": "", + "codeIcaoAirline": "AHO", + "codeIso2Country": "DE", + "founding": 2006, + "iataPrefixAccounting": "", + "nameAirline": "Air Hamburg", + "nameCountry": "Germany", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 24.8, + "airlineId": 4022, + "callsign": "COTAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTM", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "French Air Force", + "nameCountry": "France", + "sizeAirline": 6, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 14.4, + "airlineId": 4023, + "callsign": "EAGLE", + "codeHub": "HLZ", + "codeIataAirline": "", + "codeIcaoAirline": "EAG", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Airways", + "nameCountry": "New Zealand", + "sizeAirline": 6, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 25.6, + "airlineId": 4024, + "callsign": "ESTAFA", + "codeHub": "SLP", + "codeIataAirline": "", + "codeIcaoAirline": "ESF", + "codeIso2Country": "MX", + "founding": 1979, + "iataPrefixAccounting": "", + "nameAirline": "Estafeta", + "nameCountry": "Mexico", + "sizeAirline": 6, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 21.5, + "airlineId": 4025, + "callsign": "INTRA", + "codeHub": "HLP", + "codeIataAirline": "", + "codeIcaoAirline": "IDA", + "codeIso2Country": "ID", + "founding": 1968, + "iataPrefixAccounting": "", + "nameAirline": "Indonesia Air Transport", + "nameCountry": "Indonesia", + "sizeAirline": 6, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 14.2, + "airlineId": 4026, + "callsign": "SPARKLE ROLL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QSR", + "codeIso2Country": "CN", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "SR Jet", + "nameCountry": "China", + "sizeAirline": 6, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 24.7, + "airlineId": 4027, + "callsign": "WORLD ATLANTIC", + "codeHub": "MIA", + "codeIataAirline": "", + "codeIcaoAirline": "WAL", + "codeIso2Country": "UM", + "founding": 2009, + "iataPrefixAccounting": "", + "nameAirline": "World Atlantic Airlines", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 6, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 11.5, + "airlineId": 4028, + "callsign": "XINHUA", + "codeHub": "PEK", + "codeIataAirline": "", + "codeIcaoAirline": "CXH", + "codeIso2Country": "CN", + "founding": 2002, + "iataPrefixAccounting": "", + "nameAirline": "China Xinhua Airlines", + "nameCountry": "China", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.6, + "airlineId": 4029, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EFA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Express Freighters", + "nameCountry": "Australia", + "sizeAirline": 5, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 23.2, + "airlineId": 4030, + "callsign": "BLUE STRIP", + "codeHub": "BUD", + "codeIataAirline": "", + "codeIcaoAirline": "FAH", + "codeIso2Country": "HU", + "founding": 2015, + "iataPrefixAccounting": "", + "nameAirline": "ASL Airlines Hungary", + "nameCountry": "Hungary", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 28.5, + "airlineId": 4031, + "callsign": "AIRCOMPANY KHORS", + "codeHub": "IEV", + "codeIataAirline": "", + "codeIcaoAirline": "KHO", + "codeIso2Country": "UA", + "founding": 1990, + "iataPrefixAccounting": "", + "nameAirline": "Khors Air", + "nameCountry": "Ukraine", + "sizeAirline": 5, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 3.9, + "airlineId": 4032, + "callsign": "", + "codeHub": "CMN", + "codeIataAirline": "", + "codeIcaoAirline": "RXP", + "codeIso2Country": "MA", + "founding": 2009, + "iataPrefixAccounting": "", + "nameAirline": "Royal Air Maroc Express", + "nameCountry": "Morocco", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 28.2, + "airlineId": 4033, + "callsign": "AIR SWEDEN", + "codeHub": "LDK", + "codeIataAirline": "", + "codeIcaoAirline": "SWN", + "codeIso2Country": "SE", + "founding": 1962, + "iataPrefixAccounting": "", + "nameAirline": "West Air", + "nameCountry": "Sweden", + "sizeAirline": 5, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 23.5, + "airlineId": 4034, + "callsign": "", + "codeHub": "HLP", + "codeIataAirline": "", + "codeIcaoAirline": "SYA", + "codeIso2Country": "ID", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "Sky Aviation Indonesia", + "nameCountry": "Indonesia", + "sizeAirline": 5, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.5, + "airlineId": 4035, + "callsign": "TRANSCANADA", + "codeHub": "YYC", + "codeIataAirline": "", + "codeIcaoAirline": "TSH", + "codeIso2Country": "CA", + "founding": 2003, + "iataPrefixAccounting": "", + "nameAirline": "Regional 1 Airlines", + "nameCountry": "Canada", + "sizeAirline": 5, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 7.0, + "airlineId": 4036, + "callsign": "VISTA JET", + "codeHub": "SZG", + "codeIataAirline": "", + "codeIcaoAirline": "VJS", + "codeIso2Country": "AT", + "founding": 2006, + "iataPrefixAccounting": "", + "nameAirline": "Vista Jet", + "nameCountry": "Austria", + "sizeAirline": 5, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 7.1, + "airlineId": 4037, + "callsign": "ARAB WINGS", + "codeHub": "ADJ", + "codeIataAirline": "", + "codeIcaoAirline": "AWS", + "codeIso2Country": "JO", + "founding": 1975, + "iataPrefixAccounting": "", + "nameAirline": "Arab Wings Company", + "nameCountry": "Jordan", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 30.0, + "airlineId": 4038, + "callsign": "CARDIG AIR", + "codeHub": "CGK", + "codeIataAirline": "", + "codeIcaoAirline": "CAD", + "codeIso2Country": "ID", + "founding": 2009, + "iataPrefixAccounting": "", + "nameAirline": "Cardig Air", + "nameCountry": "Indonesia", + "sizeAirline": 4, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 17.7, + "airlineId": 4039, + "callsign": "CALAFIA", + "codeHub": "SJD", + "codeIataAirline": "", + "codeIcaoAirline": "CFV", + "codeIso2Country": "MX", + "founding": 1993, + "iataPrefixAccounting": "", + "nameAirline": "Aero Calafia", + "nameCountry": "Mexico", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.8, + "airlineId": 4040, + "callsign": "AEROCARIBBEAN", + "codeHub": "HAV", + "codeIataAirline": "", + "codeIcaoAirline": "CRN", + "codeIso2Country": "CU", + "founding": 1982, + "iataPrefixAccounting": "", + "nameAirline": "Aerocaribbean", + "nameCountry": "Cuba", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 13.0, + "airlineId": 4041, + "callsign": "EASYFLY", + "codeHub": "BOG", + "codeIataAirline": "", + "codeIcaoAirline": "EFY", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EasyFly", + "nameCountry": "Colombia", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 1.4, + "airlineId": 4042, + "callsign": "FALCON AVIATION", + "codeHub": "AZI", + "codeIataAirline": "", + "codeIcaoAirline": "FVS", + "codeIso2Country": "AE", + "founding": 2006, + "iataPrefixAccounting": "", + "nameAirline": "Falcon Aviation Services", + "nameCountry": "United Arab Emirates", + "sizeAirline": 4, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 18.8, + "airlineId": 4043, + "callsign": "HERCULES JET", + "codeHub": "ATH", + "codeIataAirline": "", + "codeIcaoAirline": "GNJ", + "codeIso2Country": "GR", + "founding": 1996, + "iataPrefixAccounting": "", + "nameAirline": "GainJet", + "nameCountry": "Greece", + "sizeAirline": 4, + "statusAirline": "active", + "type": "private,charter" + }, + { + "ageFleet": 19.1, + "airlineId": 4044, + "callsign": "MED-VIEW", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "MEV", + "codeIso2Country": "NG", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "Med View Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 9.7, + "airlineId": 4045, + "callsign": "EM-EXPRESS", + "codeHub": "VIE", + "codeIataAirline": "", + "codeIcaoAirline": "MJF", + "codeIso2Country": "AT", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "Mjet", + "nameCountry": "Austria", + "sizeAirline": 4, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 24.1, + "airlineId": 4046, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLP", + "codeIso2Country": "PG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asia Pacific Airlines", + "nameCountry": "Papua New Guinea", + "sizeAirline": 4, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 22.6, + "airlineId": 4047, + "callsign": "NAV CAN", + "codeHub": "YOW", + "codeIataAirline": "", + "codeIcaoAirline": "NVC", + "codeIso2Country": "CA", + "founding": 1996, + "iataPrefixAccounting": "", + "nameAirline": "Nav Canada", + "nameCountry": "Canada", + "sizeAirline": 4, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 22.6, + "airlineId": 4048, + "callsign": "PERIMETER", + "codeHub": "YYZ", + "codeIataAirline": "", + "codeIcaoAirline": "PAG", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Perimeter Aviation", + "nameCountry": "Canada", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 23.7, + "airlineId": 4049, + "callsign": "MAP AIR", + "codeHub": "MAO", + "codeIataAirline": "", + "codeIcaoAirline": "PAM", + "codeIso2Country": "BR", + "founding": 2011, + "iataPrefixAccounting": "", + "nameAirline": "Map Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 27.0, + "airlineId": 4050, + "callsign": "KABO", + "codeHub": "KAN", + "codeIataAirline": "", + "codeIcaoAirline": "QNK", + "codeIso2Country": "NG", + "founding": 1981, + "iataPrefixAccounting": "", + "nameAirline": "Kabo Air", + "nameCountry": "Nigeria", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 1.0, + "airlineId": 4051, + "callsign": "", + "codeHub": "DMM", + "codeIataAirline": "", + "codeIcaoAirline": "SGQ", + "codeIso2Country": "SA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SaudiGulf Airlines", + "nameCountry": "Saudi Arabia", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.4, + "airlineId": 4052, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SJK", + "codeIso2Country": "ID", + "founding": 2009, + "iataPrefixAccounting": "", + "nameAirline": "Nusantara Air", + "nameCountry": "Indonesia", + "sizeAirline": 4, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 24.4, + "airlineId": 4053, + "callsign": "", + "codeHub": "SCO", + "codeIataAirline": "", + "codeIcaoAirline": "TLG", + "codeIso2Country": "KZ", + "founding": 2011, + "iataPrefixAccounting": "", + "nameAirline": "Caspiy", + "nameCountry": "Kazakhstan", + "sizeAirline": 4, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 28.0, + "airlineId": 4054, + "callsign": "DREAM BIRD", + "codeHub": "KHI", + "codeIataAirline": "", + "codeIcaoAirline": "VIS", + "codeIso2Country": "PK", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "Vision Air International", + "nameCountry": "Pakistan", + "sizeAirline": 4, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 28.4, + "airlineId": 4055, + "callsign": "WDL", + "codeHub": "CGN", + "codeIataAirline": "", + "codeIcaoAirline": "WDL", + "codeIso2Country": "DE", + "founding": 1974, + "iataPrefixAccounting": "", + "nameAirline": "WDL Aviation", + "nameCountry": "Germany", + "sizeAirline": 4, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 26.9, + "airlineId": 4056, + "callsign": "BASE", + "codeHub": "BUD", + "codeIataAirline": "", + "codeIcaoAirline": "BPS", + "codeIso2Country": "HU", + "founding": 1991, + "iataPrefixAccounting": "", + "nameAirline": "Budapest Aircraft Service", + "nameCountry": "Hungary", + "sizeAirline": 3, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 8.5, + "airlineId": 4057, + "callsign": "MENGYUAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNM", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air China Inner Mongolia", + "nameCountry": "China", + "sizeAirline": 3, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 5.6, + "airlineId": 4058, + "callsign": "DALIA", + "codeHub": "CMN", + "codeIataAirline": "", + "codeIcaoAirline": "DLI", + "codeIso2Country": "MA", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "Dalia Air", + "nameCountry": "Morocco", + "sizeAirline": 3, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 26.3, + "airlineId": 4059, + "callsign": "GRAND CRU", + "codeHub": "VNO", + "codeIataAirline": "", + "codeIcaoAirline": "GCA", + "codeIso2Country": "LT", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "Grand Cru Airlines", + "nameCountry": "Lithuania", + "sizeAirline": 3, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 5.9, + "airlineId": 4060, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GM", + "codeIso2Country": "CH", + "founding": 2015, + "iataPrefixAccounting": "", + "nameAirline": "Germania Flug", + "nameCountry": "Switzerland", + "sizeAirline": 3, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 34.2, + "airlineId": 4061, + "callsign": "GEORGIAN STAR", + "codeHub": "TBS", + "codeIataAirline": "", + "codeIcaoAirline": "GST", + "codeIso2Country": "GE", + "founding": 2009, + "iataPrefixAccounting": "", + "nameAirline": "Georgian Star", + "nameCountry": "Georgia", + "sizeAirline": 3, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 13.9, + "airlineId": 4062, + "callsign": "GAVIOTA", + "codeHub": "HAV", + "codeIataAirline": "", + "codeIcaoAirline": "GTV", + "codeIso2Country": "CU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerogaviota", + "nameCountry": "Cuba", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 6.1, + "airlineId": 4063, + "callsign": "KAZLUX", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "KAZ", + "codeIso2Country": "KZ", + "founding": 2009, + "iataPrefixAccounting": "", + "nameAirline": "Comlux KZ", + "nameCountry": "Kazakhstan", + "sizeAirline": 3, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 4.4, + "airlineId": 4064, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LBR", + "codeIso2Country": "IN", + "founding": 2012, + "iataPrefixAccounting": "", + "nameAirline": "Air Costa", + "nameCountry": "India", + "sizeAirline": 3, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 24.9, + "airlineId": 4065, + "callsign": "", + "codeHub": "LPCS", + "codeIataAirline": "", + "codeIcaoAirline": "LZF", + "codeIso2Country": "PT", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "Lease Fly", + "nameCountry": "Portugal", + "sizeAirline": 3, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 19.3, + "airlineId": 4066, + "callsign": "MEDAVIA", + "codeHub": "MLA", + "codeIataAirline": "", + "codeIcaoAirline": "MDM", + "codeIso2Country": "MT", + "founding": 1978, + "iataPrefixAccounting": "", + "nameAirline": "Medavia", + "nameCountry": "Malta", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 3.6, + "airlineId": 4067, + "callsign": "LUXMALTA", + "codeHub": "MLA", + "codeIataAirline": "", + "codeIcaoAirline": "MLM", + "codeIso2Country": "MT", + "founding": 2003, + "iataPrefixAccounting": "", + "nameAirline": "Comlux Aviation Malta", + "nameCountry": "Malta", + "sizeAirline": 3, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 8.8, + "airlineId": 4068, + "callsign": "", + "codeHub": "SHE", + "codeIataAirline": "", + "codeIcaoAirline": "MZT", + "codeIso2Country": "CN", + "founding": 2008, + "iataPrefixAccounting": "", + "nameAirline": "ZYB Lily Jet", + "nameCountry": "China", + "sizeAirline": 3, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 32.6, + "airlineId": 4069, + "callsign": "NETHERLANDS AIR FORCE", + "codeHub": "EIN", + "codeIataAirline": "", + "codeIcaoAirline": "NAF", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Netherlands Air Force", + "nameCountry": "Netherlands", + "sizeAirline": 3, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 17.9, + "airlineId": 4070, + "callsign": "", + "codeHub": "CMF", + "codeIataAirline": "", + "codeIcaoAirline": "PEA", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan Europeenne Air Service", + "nameCountry": "France", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 29.8, + "airlineId": 4071, + "callsign": "SIERRA PACIFIC", + "codeHub": "TUS", + "codeIataAirline": "", + "codeIcaoAirline": "SPA", + "codeIso2Country": "UM", + "founding": 1971, + "iataPrefixAccounting": "", + "nameAirline": "Sierra Pacific", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 3, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 1.8, + "airlineId": 4072, + "callsign": "SUNFLOWER", + "codeHub": "NAN", + "codeIataAirline": "", + "codeIcaoAirline": "SUF", + "codeIso2Country": "FJ", + "founding": 2014, + "iataPrefixAccounting": "", + "nameAirline": "Fiji Link", + "nameCountry": "Fiji", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 20.1, + "airlineId": 4073, + "callsign": "SWEDEFORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVF", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swedish Armed Forces", + "nameCountry": "Sweden", + "sizeAirline": 3, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 7.2, + "airlineId": 4074, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAG", + "codeIso2Country": "UM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAG Aviation", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 3, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 7.3, + "airlineId": 4075, + "callsign": "TYROLJET", + "codeHub": "INN", + "codeIataAirline": "", + "codeIcaoAirline": "TJS", + "codeIso2Country": "AT", + "founding": 1970, + "iataPrefixAccounting": "", + "nameAirline": "Tyrolean Jet Service", + "nameCountry": "Austria", + "sizeAirline": 3, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 17.8, + "airlineId": 4076, + "callsign": "TOTAL", + "codeHub": "PLU", + "codeIataAirline": "", + "codeIcaoAirline": "TTL", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Total Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 3, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 34.5, + "airlineId": 4077, + "callsign": "TOKA", + "codeHub": "TBS", + "codeIataAirline": "", + "codeIcaoAirline": "TZS", + "codeIso2Country": "GE", + "founding": 2012, + "iataPrefixAccounting": "", + "nameAirline": "TCA", + "nameCountry": "Georgia", + "sizeAirline": 3, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 13.8, + "airlineId": 4078, + "callsign": "SOVEREIGN", + "codeHub": "FAB", + "codeIataAirline": "", + "codeIcaoAirline": "VIP", + "codeIso2Country": "UK", + "founding": 2000, + "iataPrefixAccounting": "", + "nameAirline": "TAG Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 3, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 20.3, + "airlineId": 4079, + "callsign": "AERONAVES", + "codeHub": "SLW", + "codeIataAirline": "", + "codeIcaoAirline": "VTM", + "codeIso2Country": "MX", + "founding": 1995, + "iataPrefixAccounting": "", + "nameAirline": "Aeronaves TSM", + "nameCountry": "Mexico", + "sizeAirline": 3, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 28.1, + "airlineId": 4080, + "callsign": "", + "codeHub": "SYD", + "codeIataAirline": "", + "codeIcaoAirline": "XME", + "codeIso2Country": "AU", + "founding": 1992, + "iataPrefixAccounting": "", + "nameAirline": "Qantas Freight", + "nameCountry": "Australia", + "sizeAirline": 3, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 25.7, + "airlineId": 4081, + "callsign": "GEOLINE", + "codeHub": "TBS", + "codeIataAirline": "", + "codeIcaoAirline": "AGA", + "codeIso2Country": "GE", + "founding": 2012, + "iataPrefixAccounting": "", + "nameAirline": "AG Air", + "nameCountry": "Georgia", + "sizeAirline": 2, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 22.9, + "airlineId": 4082, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMP", + "codeIso2Country": "PE", + "founding": 1980, + "iataPrefixAccounting": "", + "nameAirline": "Aero Transporte", + "nameCountry": "Peru", + "sizeAirline": 2, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 23.8, + "airlineId": 4083, + "callsign": "", + "codeHub": "THR", + "codeIataAirline": "", + "codeIcaoAirline": "ATR", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atrak Air", + "nameCountry": "Iran", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.3, + "airlineId": 4084, + "callsign": "", + "codeHub": "MLA", + "codeIataAirline": "", + "codeIcaoAirline": "AXY", + "codeIso2Country": "MT", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "Air X Charter", + "nameCountry": "Malta", + "sizeAirline": 2, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 14.0, + "airlineId": 4085, + "callsign": "AIR YANGON", + "codeHub": "RGN", + "codeIataAirline": "", + "codeIcaoAirline": "AYG", + "codeIso2Country": "MM", + "founding": 1996, + "iataPrefixAccounting": "", + "nameAirline": "Yangon Airways", + "nameCountry": "Myanmar", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 21.9, + "airlineId": 4086, + "callsign": "FELIX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BAe Systems (Corporate Air Travel)", + "nameCountry": "United Kingdom", + "sizeAirline": 2, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 23.3, + "airlineId": 4087, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAY", + "codeIso2Country": "UA", + "founding": 2012, + "iataPrefixAccounting": "", + "nameAirline": "Bravo Airways", + "nameCountry": "Ukraine", + "sizeAirline": 2, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 28.8, + "airlineId": 4088, + "callsign": "BRIGHT FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BFG", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bright Flight", + "nameCountry": "Bulgaria", + "sizeAirline": 2, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 6.0, + "airlineId": 4089, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CON", + "codeIso2Country": "UM", + "founding": 2002, + "iataPrefixAccounting": "", + "nameAirline": "ConocoPhilips Aviation", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 2, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 22.4, + "airlineId": 4090, + "callsign": "CRONOS", + "codeHub": "SSG", + "codeIataAirline": "", + "codeIcaoAirline": "CRA", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cronos Airlines", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 8.2, + "airlineId": 4091, + "callsign": "TWIN STAR", + "codeHub": "STR", + "codeIataAirline": "", + "codeIcaoAirline": "DCS", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DC Aviation", + "nameCountry": "Germany", + "sizeAirline": 2, + "statusAirline": "active", + "type": "private,charter" + }, + { + "ageFleet": 19.3, + "airlineId": 4092, + "callsign": "FIRST NATION", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "FRN", + "codeIso2Country": "NG", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "First Nation Airways", + "nameCountry": "Nigeria", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 27.6, + "airlineId": 4093, + "callsign": "", + "codeHub": "DXB", + "codeIataAirline": "", + "codeIcaoAirline": "GBG", + "codeIso2Country": "AE", + "founding": 2009, + "iataPrefixAccounting": "", + "nameAirline": "Global Jet", + "nameCountry": "United Arab Emirates", + "sizeAirline": 2, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 5.9, + "airlineId": 4094, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JBA", + "codeIso2Country": "AE", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "Al Jaber Aviation", + "nameCountry": "United Arab Emirates", + "sizeAirline": 2, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 27.1, + "airlineId": 4095, + "callsign": "MABECO", + "codeHub": "LAD", + "codeIataAirline": "", + "codeIcaoAirline": "MBC", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airjet Exploracao Aerea de Carga", + "nameCountry": "Angola", + "sizeAirline": 2, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 6.5, + "airlineId": 4096, + "callsign": "EMJET", + "codeHub": "DXB", + "codeIataAirline": "", + "codeIcaoAirline": "MJE", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Empire Aviation Group", + "nameCountry": "United Arab Emirates", + "sizeAirline": 2, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 13.5, + "airlineId": 4097, + "callsign": "MALETH", + "codeHub": "MLA", + "codeIataAirline": "", + "codeIcaoAirline": "MLT", + "codeIso2Country": "MT", + "founding": 2012, + "iataPrefixAccounting": "", + "nameAirline": "Maleth-Aero", + "nameCountry": "Malta", + "sizeAirline": 2, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 28.9, + "airlineId": 4098, + "callsign": "META", + "codeHub": "BVB", + "codeIataAirline": "", + "codeIcaoAirline": "MSQ", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meta - Mesquita Transportes Aereos", + "nameCountry": "Brazil", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 29.8, + "airlineId": 4099, + "callsign": "MITAVIA", + "codeHub": "RIX", + "codeIataAirline": "", + "codeIcaoAirline": "MTL", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RAF-Avia", + "nameCountry": "Latvia", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 15.7, + "airlineId": 4100, + "callsign": "TALLIN CAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MYX", + "codeIso2Country": "EE", + "founding": 2012, + "iataPrefixAccounting": "", + "nameAirline": "SmartLynx Estonia", + "nameCountry": "Estonia", + "sizeAirline": 2, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 28.1, + "airlineId": 4101, + "callsign": "CHANCHANGI", + "codeHub": "ABV", + "codeIataAirline": "", + "codeIcaoAirline": "NCH", + "codeIso2Country": "NG", + "founding": 1994, + "iataPrefixAccounting": "", + "nameAirline": "Chanchangi Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 19.7, + "airlineId": 4102, + "callsign": "NEEDLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NDL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chrono Aviation", + "nameCountry": "Canada", + "sizeAirline": 2, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 26.3, + "airlineId": 4103, + "callsign": "NATURELINK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NRK", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Naturelink Charter", + "nameCountry": "South Africa", + "sizeAirline": 2, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 16.9, + "airlineId": 4104, + "callsign": "NOUVELLE AFFAIRES", + "codeHub": "LBV", + "codeIataAirline": "", + "codeIcaoAirline": "NVS", + "codeIso2Country": "GA", + "founding": 1975, + "iataPrefixAccounting": "", + "nameAirline": "Nouvelle Air Affaires Gabon", + "nameCountry": "Gabon", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 16.1, + "airlineId": 4105, + "callsign": "OLY AIR", + "codeHub": "ATH", + "codeIataAirline": "", + "codeIcaoAirline": "OLY", + "codeIso2Country": "GR", + "founding": 2015, + "iataPrefixAccounting": "", + "nameAirline": "Olympus Airways", + "nameCountry": "Greece", + "sizeAirline": 2, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 27.1, + "airlineId": 4106, + "callsign": "PASCAN", + "codeHub": "YQB", + "codeIataAirline": "", + "codeIcaoAirline": "PSC", + "codeIso2Country": "CA", + "founding": 1999, + "iataPrefixAccounting": "", + "nameAirline": "Pascan Aviation", + "nameCountry": "Canada", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 33.6, + "airlineId": 4107, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAV", + "codeIso2Country": "HN", + "founding": 1999, + "iataPrefixAccounting": "", + "nameAirline": "RollinsAir", + "nameCountry": "Honduras", + "sizeAirline": 2, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 32.4, + "airlineId": 4108, + "callsign": "RUBY", + "codeHub": "SDF", + "codeIataAirline": "", + "codeIcaoAirline": "RBY", + "codeIso2Country": "UM", + "founding": 1999, + "iataPrefixAccounting": "", + "nameAirline": "Vision Airlines", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 2, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 19.9, + "airlineId": 4109, + "callsign": "", + "codeHub": "ADJ", + "codeIataAirline": "", + "codeIcaoAirline": "RFJ", + "codeIso2Country": "JO", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "Royal Falcon", + "nameCountry": "Jordan", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 25.5, + "airlineId": 4110, + "callsign": "CYGNUS AIR", + "codeHub": "MAD", + "codeIataAirline": "", + "codeIcaoAirline": "RGN", + "codeIso2Country": "ES", + "founding": 1994, + "iataPrefixAccounting": "", + "nameAirline": "Cygnus Air", + "nameCountry": "Spain", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 11.7, + "airlineId": 4111, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSC", + "codeIso2Country": "ES", + "founding": 2009, + "iataPrefixAccounting": "", + "nameAirline": "Canarias Airlines", + "nameCountry": "Spain", + "sizeAirline": 2, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 28.9, + "airlineId": 4112, + "callsign": "ASSOCITED", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "SCD", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Associated Aviation", + "nameCountry": "Nigeria", + "sizeAirline": 2, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 7.9, + "airlineId": 4113, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOR", + "codeIso2Country": "HK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "China Sonangol", + "nameCountry": "Hong Kong", + "sizeAirline": 2, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 25.1, + "airlineId": 4114, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STH", + "codeIso2Country": "AM", + "founding": 2001, + "iataPrefixAccounting": "", + "nameAirline": "South-Airlines", + "nameCountry": "Armenia", + "sizeAirline": 2, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 15.3, + "airlineId": 4115, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVI", + "codeIso2Country": "MX", + "founding": 1994, + "iataPrefixAccounting": "", + "nameAirline": "SETRA-Banco de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 2, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 20.7, + "airlineId": 4116, + "callsign": "SIERRA SERVICES", + "codeHub": "NBO", + "codeIataAirline": "", + "codeIcaoAirline": "SVT", + "codeIso2Country": "KE", + "founding": 1994, + "iataPrefixAccounting": "", + "nameAirline": "748 Air Services", + "nameCountry": "Kenya", + "sizeAirline": 2, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 25.3, + "airlineId": 4117, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAF", + "codeIso2Country": "TZ", + "founding": 1999, + "iataPrefixAccounting": "", + "nameAirline": "Tropical Air", + "nameCountry": "Tanzania", + "sizeAirline": 2, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 29.1, + "airlineId": 4118, + "callsign": "TOLL EXPRESS", + "codeHub": "YBAF", + "codeIataAirline": "", + "codeIcaoAirline": "TFX", + "codeIso2Country": "AU", + "founding": 2008, + "iataPrefixAccounting": "", + "nameAirline": "Toll Aviation", + "nameCountry": "Australia", + "sizeAirline": 2, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 25.8, + "airlineId": 4119, + "callsign": "AIR LIBYA", + "codeHub": "TIP", + "codeIataAirline": "", + "codeIcaoAirline": "TLR", + "codeIso2Country": "LY", + "founding": 1999, + "iataPrefixAccounting": "", + "nameAirline": "Air Libya", + "nameCountry": "Libya", + "sizeAirline": 2, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.8, + "airlineId": 4120, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TXR", + "codeIso2Country": "BH", + "founding": 2014, + "iataPrefixAccounting": "", + "nameAirline": "Texel Air", + "nameCountry": "Bahrain", + "sizeAirline": 2, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 11.9, + "airlineId": 4121, + "callsign": "BAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABP", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aba Air", + "nameCountry": "Czech Republic", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 26.0, + "airlineId": 4122, + "callsign": "ADMIRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACL", + "codeIso2Country": "CO", + "founding": 1997, + "iataPrefixAccounting": "", + "nameAirline": "Aerolinia del Caribe", + "nameCountry": "Colombia", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 7.2, + "airlineId": 4123, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACR", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Acropolis Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 27.7, + "airlineId": 4124, + "callsign": "ANGOLA CHARTER", + "codeHub": "LAD", + "codeIataAirline": "", + "codeIcaoAirline": "AGO", + "codeIso2Country": "AO", + "founding": 1987, + "iataPrefixAccounting": "", + "nameAirline": "AAC - Angola Air Charter", + "nameCountry": "Angola", + "sizeAirline": 1, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 28.3, + "airlineId": 4125, + "callsign": "ATSA", + "codeHub": "LIM", + "codeIataAirline": "", + "codeIcaoAirline": "AMP", + "codeIso2Country": "PE", + "founding": 1982, + "iataPrefixAccounting": "", + "nameAirline": "ATSA", + "nameCountry": "Peru", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 8.9, + "airlineId": 4126, + "callsign": "", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "AMV", + "codeIso2Country": "EG", + "founding": 1992, + "iataPrefixAccounting": "", + "nameAirline": "AMC", + "nameCountry": "Egypt", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 27.8, + "airlineId": 4127, + "callsign": "AIR ALLEGIANCE", + "codeHub": "HLA", + "codeIataAirline": "", + "codeIcaoAirline": "ANJ", + "codeIso2Country": "ZA", + "founding": 2004, + "iataPrefixAccounting": "", + "nameAirline": "Allegiance Air", + "nameCountry": "South Africa", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 2.4, + "airlineId": 4128, + "callsign": "ARAVCO", + "codeHub": "FAB", + "codeIataAirline": "", + "codeIcaoAirline": "ARV", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aravco", + "nameCountry": "United Kingdom", + "sizeAirline": 1, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 25.8, + "airlineId": 4129, + "callsign": "AVANTI AIR", + "codeHub": "SGE", + "codeIataAirline": "", + "codeIcaoAirline": "ATV", + "codeIso2Country": "DE", + "founding": 1994, + "iataPrefixAccounting": "", + "nameAirline": "Avanti Air", + "nameCountry": "Germany", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 6.5, + "airlineId": 4130, + "callsign": "COMMON SKY", + "codeHub": "LNZ", + "codeIataAirline": "", + "codeIcaoAirline": "AUN", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Common Sky A & N Luftfahrt", + "nameCountry": "Germany", + "sizeAirline": 1, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 34.4, + "airlineId": 4131, + "callsign": "BENIN GOLF", + "codeHub": "COO", + "codeIataAirline": "", + "codeIcaoAirline": "BGL", + "codeIso2Country": "BJ", + "founding": 2002, + "iataPrefixAccounting": "", + "nameAirline": "Benin Golf Air", + "nameCountry": "Benin", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 36.3, + "airlineId": 4132, + "callsign": "BHOJA", + "codeHub": "KHI", + "codeIataAirline": "", + "codeIcaoAirline": "BHO", + "codeIso2Country": "PK", + "founding": 1993, + "iataPrefixAccounting": "", + "nameAirline": "Bhoja Airlines", + "nameCountry": "Pakistan", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 20.7, + "airlineId": 4133, + "callsign": "AIR BUCHAREST", + "codeHub": "BBU", + "codeIataAirline": "", + "codeIcaoAirline": "BUR", + "codeIso2Country": "RO", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "Air Bucharest", + "nameCountry": "Romania", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 24.1, + "airlineId": 4134, + "callsign": "BULGARY", + "codeHub": "SOF", + "codeIataAirline": "", + "codeIcaoAirline": "BVL", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bul Air", + "nameCountry": "Bulgaria", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 39.7, + "airlineId": 4135, + "callsign": "EXPRESS CENTRAF", + "codeHub": "BGF", + "codeIataAirline": "", + "codeIcaoAirline": "CAE", + "codeIso2Country": "CF", + "founding": 2006, + "iataPrefixAccounting": "", + "nameAirline": "Centrafrique Air Express", + "nameCountry": "Central African Republic", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 27.9, + "airlineId": 4136, + "callsign": "CELLOJET", + "codeHub": "BHX", + "codeIataAirline": "", + "codeIcaoAirline": "CLJ", + "codeIso2Country": "UK", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "Cello Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 25.8, + "airlineId": 4137, + "callsign": "", + "codeHub": "BKO", + "codeIataAirline": "", + "codeIcaoAirline": "CMM", + "codeIso2Country": "ML", + "founding": 2005, + "iataPrefixAccounting": "", + "nameAirline": "Societe Nouvelle Air Mali", + "nameCountry": "Mali", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 27.5, + "airlineId": 4138, + "callsign": "CITYLINK", + "codeHub": "ACC", + "codeIataAirline": "", + "codeIcaoAirline": "CTQ", + "codeIso2Country": "GH", + "founding": 1994, + "iataPrefixAccounting": "", + "nameAirline": "Citylink Ghana", + "nameCountry": "Ghana", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 10.8, + "airlineId": 4139, + "callsign": "SHANXI", + "codeHub": "TYN", + "codeIataAirline": "", + "codeIcaoAirline": "CXI", + "codeIso2Country": "CN", + "founding": 1988, + "iataPrefixAccounting": "", + "nameAirline": "Shanxi Airlines", + "nameCountry": "China", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 41.3, + "airlineId": 4140, + "callsign": "", + "codeHub": "NBO", + "codeIataAirline": "", + "codeIcaoAirline": "DCP", + "codeIso2Country": "KE", + "founding": 2006, + "iataPrefixAccounting": "", + "nameAirline": "Delta Connection", + "nameCountry": "Kenya", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 40.5, + "airlineId": 4141, + "callsign": "DAMOJH", + "codeHub": "MEX", + "codeIataAirline": "", + "codeIcaoAirline": "DMJ", + "codeIso2Country": "MX", + "founding": 2003, + "iataPrefixAccounting": "", + "nameAirline": "Global Air", + "nameCountry": "Mexico", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 20.5, + "airlineId": 4142, + "callsign": "EMERALD JETS", + "codeHub": "BEY", + "codeIataAirline": "", + "codeIcaoAirline": "EFB", + "codeIso2Country": "LB", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "Emerald Jets", + "nameCountry": "Lebanon", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 17.8, + "airlineId": 4143, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EGA", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ecuato - Guineana de Aviacion", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 12.1, + "airlineId": 4144, + "callsign": "ENERJET AIR", + "codeHub": "YYC", + "codeIataAirline": "", + "codeIcaoAirline": "ENJ", + "codeIso2Country": "CA", + "founding": 2008, + "iataPrefixAccounting": "", + "nameAirline": "Enerjet", + "nameCountry": "Canada", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 19.6, + "airlineId": 4145, + "callsign": "ENZO", + "codeHub": "SEN", + "codeIataAirline": "", + "codeIcaoAirline": "ENZ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jota Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 1, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 15.3, + "airlineId": 4146, + "callsign": "EVERJETS", + "codeHub": "OPO", + "codeIataAirline": "", + "codeIcaoAirline": "EVJ", + "codeIso2Country": "PT", + "founding": 2015, + "iataPrefixAccounting": "", + "nameAirline": "Everjets", + "nameCountry": "Portugal", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 34.6, + "airlineId": 4147, + "callsign": "FLYING DOLPYHINS", + "codeHub": "DXB", + "codeIataAirline": "", + "codeIcaoAirline": "FDN", + "codeIso2Country": "AE", + "founding": 1996, + "iataPrefixAccounting": "", + "nameAirline": "Dolphin Air", + "nameCountry": "United Arab Emirates", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 2.4, + "airlineId": 4148, + "callsign": "FLYING GROUP", + "codeHub": "ANT", + "codeIataAirline": "", + "codeIcaoAirline": "FYG", + "codeIso2Country": "BE", + "founding": 1995, + "iataPrefixAccounting": "", + "nameAirline": "Flying Service", + "nameCountry": "Belgium", + "sizeAirline": 1, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 38.3, + "airlineId": 4149, + "callsign": "GLOBE", + "codeHub": "JNB", + "codeIataAirline": "", + "codeIcaoAirline": "GBB", + "codeIso2Country": "ZA", + "founding": 2001, + "iataPrefixAccounting": "", + "nameAirline": "Global Aviation Operations", + "nameCountry": "South Africa", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 33.2, + "airlineId": 4150, + "callsign": "ATLANTIC HONDURAS", + "codeHub": "LCE", + "codeIataAirline": "", + "codeIcaoAirline": "HHA", + "codeIso2Country": "HN", + "founding": 2001, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Airlines de Honduras", + "nameCountry": "Honduras", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.6, + "airlineId": 4151, + "callsign": "HAK AIRLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HKL", + "codeIso2Country": "NG", + "founding": 1990, + "iataPrefixAccounting": "", + "nameAirline": "Hak Air", + "nameCountry": "Nigeria", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 3.3, + "airlineId": 4152, + "callsign": "JHONLIN", + "codeHub": "BDJ", + "codeIataAirline": "", + "codeIcaoAirline": "JLB", + "codeIso2Country": "ID", + "founding": 2011, + "iataPrefixAccounting": "", + "nameAirline": "Jhonlin Air Transport", + "nameCountry": "Indonesia", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 31.3, + "airlineId": 4153, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JSR", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Star", + "nameCountry": "Moldova", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 16.6, + "airlineId": 4154, + "callsign": "JETFIN", + "codeHub": "HEL", + "codeIataAirline": "", + "codeIcaoAirline": "JTF", + "codeIso2Country": "FI", + "founding": 2014, + "iataPrefixAccounting": "", + "nameAirline": "Jet Time", + "nameCountry": "Finland", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 26.7, + "airlineId": 4155, + "callsign": "JET USA", + "codeHub": "YIP", + "codeIataAirline": "", + "codeIcaoAirline": "JUS", + "codeIso2Country": "UM", + "founding": 1994, + "iataPrefixAccounting": "", + "nameAirline": "USA Jet Airlines", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 30.0, + "airlineId": 4156, + "callsign": "TRANS KIEV", + "codeHub": "IEV", + "codeIataAirline": "", + "codeIcaoAirline": "KCA", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviatrans K", + "nameCountry": "Ukraine", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 32.3, + "airlineId": 4157, + "callsign": "KALLAT EL SKER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KES", + "codeIso2Country": "LY", + "founding": 2005, + "iataPrefixAccounting": "", + "nameAirline": "Kallat El Saker Air", + "nameCountry": "Libya", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 23.4, + "airlineId": 4158, + "callsign": "ALEXANDRIA AIRLINES", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "KHH", + "codeIso2Country": "EG", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "Alexandria Airlines", + "nameCountry": "Egypt", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 28.1, + "airlineId": 4159, + "callsign": "", + "codeHub": "BTH", + "codeIataAirline": "", + "codeIcaoAirline": "KPC", + "codeIso2Country": "ID", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "Asialink Cargo Express", + "nameCountry": "Indonesia", + "sizeAirline": 1, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 23.8, + "airlineId": 4160, + "callsign": "SKY PRIMAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KPM", + "codeIso2Country": "MD", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "Sky Prim Air", + "nameCountry": "Moldova", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 10.6, + "airlineId": 4161, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "L7", + "codeIso2Country": "CO", + "founding": 2009, + "iataPrefixAccounting": "", + "nameAirline": "Lanco", + "nameCountry": "Colombia", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 24.8, + "airlineId": 4162, + "callsign": "LACECUADO", + "codeHub": "CUE", + "codeIataAirline": "", + "codeIcaoAirline": "LAC", + "codeIso2Country": "EC", + "founding": 2012, + "iataPrefixAccounting": "", + "nameAirline": "LAC Linea Aerea Cuencana", + "nameCountry": "Ecuador", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 18.1, + "airlineId": 4163, + "callsign": "SCANDJET", + "codeHub": "ZAD", + "codeIataAirline": "", + "codeIcaoAirline": "LIM", + "codeIso2Country": "HR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Limitless Airways", + "nameCountry": "Croatia", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 25.9, + "airlineId": 4164, + "callsign": "AIR MARSHALL ISLANDS", + "codeHub": "MAJ", + "codeIataAirline": "", + "codeIcaoAirline": "MRS", + "codeIso2Country": "MH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Marshall Islands", + "nameCountry": "Marshall Islands", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 27.3, + "airlineId": 4165, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSJ", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyjet Philippines", + "nameCountry": "Philippines", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 27.2, + "airlineId": 4166, + "callsign": "", + "codeHub": "GRU", + "codeIataAirline": "", + "codeIcaoAirline": "MWM", + "codeIso2Country": "BR", + "founding": 2015, + "iataPrefixAccounting": "", + "nameAirline": "Modern Logistics", + "nameCountry": "Brazil", + "sizeAirline": 1, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 27.3, + "airlineId": 4167, + "callsign": "CAPITAL SHUTTLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCP", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Capital Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 9.7, + "airlineId": 4168, + "callsign": "", + "codeHub": "TLC", + "codeIataAirline": "", + "codeIcaoAirline": "NTG", + "codeIso2Country": "MX", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "FlyMex", + "nameCountry": "Mexico", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 2.8, + "airlineId": 4169, + "callsign": "NORWIND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NUK", + "codeIso2Country": "GB", + "founding": 2015, + "iataPrefixAccounting": "", + "nameAirline": "Norwegian Air UK", + "nameCountry": "United Kingdom", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 5.8, + "airlineId": 4170, + "callsign": "OMNIFLYS", + "codeHub": "GDL", + "codeIataAirline": "", + "codeIcaoAirline": "OMF", + "codeIso2Country": "MX", + "founding": 1992, + "iataPrefixAccounting": "", + "nameAirline": "Omniflys", + "nameCountry": "Mexico", + "sizeAirline": 1, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 13.8, + "airlineId": 4171, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ONM", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Presidencia de la Republica de Guinea Ecuatorial", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 31.1, + "airlineId": 4172, + "callsign": "AERONOVA", + "codeHub": "VLC", + "codeIataAirline": "", + "codeIcaoAirline": "OVA", + "codeIso2Country": "ES", + "founding": 1996, + "iataPrefixAccounting": "", + "nameAirline": "Aero Nova", + "nameCountry": "Spain", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 4.5, + "airlineId": 4173, + "callsign": "BLUE BIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PBN", + "codeIso2Country": "", + "founding": 2011, + "iataPrefixAccounting": "", + "nameAirline": "Virgin Samoa", + "nameCountry": "West Samoa", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 24.4, + "airlineId": 4174, + "callsign": "AERO PENA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PEP", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PENTA Airlines", + "nameCountry": "Brazil", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 25.2, + "airlineId": 4175, + "callsign": "PERLA", + "codeHub": "PMV", + "codeIataAirline": "", + "codeIcaoAirline": "PLV", + "codeIso2Country": "VE", + "founding": 2009, + "iataPrefixAccounting": "", + "nameAirline": "Perla Airlines", + "nameCountry": "Venezuela", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 27.9, + "airlineId": 4176, + "callsign": "PUMA BRASIL", + "codeHub": "BEL", + "codeIataAirline": "", + "codeIcaoAirline": "PLY", + "codeIso2Country": "BR", + "founding": 2002, + "iataPrefixAccounting": "", + "nameAirline": "Puma Air Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 22.7, + "airlineId": 4177, + "callsign": "PINEAPPLE AIR", + "codeHub": "NAS", + "codeIataAirline": "", + "codeIcaoAirline": "PNP", + "codeIso2Country": "BS", + "founding": 1999, + "iataPrefixAccounting": "", + "nameAirline": "Pineapple Air", + "nameCountry": "Bahamas", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 32.2, + "airlineId": 4178, + "callsign": "", + "codeHub": "MNL", + "codeIataAirline": "", + "codeIcaoAirline": "PPM", + "codeIso2Country": "PH", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Pearl Airways", + "nameCountry": "Philippines", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 16.4, + "airlineId": 4179, + "callsign": "PRIVAJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTG", + "codeIso2Country": "DE", + "founding": 2014, + "iataPrefixAccounting": "", + "nameAirline": "PrivatAir Germany", + "nameCountry": "Germany", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 20.4, + "airlineId": 4180, + "callsign": "ROYAL WINGS", + "codeHub": "AMM", + "codeIataAirline": "", + "codeIcaoAirline": "RYW", + "codeIso2Country": "JO", + "founding": 1995, + "iataPrefixAccounting": "", + "nameAirline": "Royal Wings", + "nameCountry": "Jordan", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 4.7, + "airlineId": 4181, + "callsign": "RIZON JET", + "codeHub": "DOH", + "codeIataAirline": "", + "codeIcaoAirline": "RZJ", + "codeIso2Country": "AE", + "founding": 2009, + "iataPrefixAccounting": "", + "nameAirline": "Rizon Jet", + "nameCountry": "United Arab Emirates", + "sizeAirline": 1, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 5.2, + "airlineId": 4182, + "callsign": "SNOWEAGLE", + "codeHub": "HRB", + "codeIataAirline": "", + "codeIcaoAirline": "SNG", + "codeIso2Country": "CN", + "founding": 2016, + "iataPrefixAccounting": "", + "nameAirline": "Longjiang Airlines", + "nameCountry": "China", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 26.7, + "airlineId": 4183, + "callsign": "SOLINAIR", + "codeHub": "LJU", + "codeIataAirline": "", + "codeIcaoAirline": "SOP", + "codeIso2Country": "SI", + "founding": 1992, + "iataPrefixAccounting": "", + "nameAirline": "Solinair", + "nameCountry": "Slovenia", + "sizeAirline": 1, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 16.7, + "airlineId": 4184, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPN", + "codeIso2Country": "IR", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "Sepehran Airlines", + "nameCountry": "Iran", + "sizeAirline": 1, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 1.8, + "airlineId": 4185, + "callsign": "TOWLINE", + "codeHub": "BZZ", + "codeIataAirline": "", + "codeIcaoAirline": "TOW", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airtanker Services", + "nameCountry": "United Kingdom", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 25.0, + "airlineId": 4186, + "callsign": "", + "codeHub": "HLP", + "codeIataAirline": "", + "codeIcaoAirline": "TWT", + "codeIso2Country": "ID", + "founding": 2002, + "iataPrefixAccounting": "", + "nameAirline": "Transwisata Airlines", + "nameCountry": "Indonesia", + "sizeAirline": 1, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 16.5, + "airlineId": 4187, + "callsign": "UGANDA", + "codeHub": "EBB", + "codeIataAirline": "", + "codeIcaoAirline": "UGA", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Uganda", + "nameCountry": "Uganda", + "sizeAirline": 1, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4188, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "26L", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yapo Aerotaxi Ltda", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4189, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "3CO", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coturisca SA", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4190, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "4AP", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "APEL Colombia", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4191, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "5MM", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Metro Manila Airways International", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4192, + "callsign": "", + "codeHub": "TBG", + "codeIataAirline": "", + "codeIcaoAirline": "7AP", + "codeIso2Country": "PG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asia Pacific Airline PNG", + "nameCountry": "Papua New Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4193, + "callsign": "", + "codeHub": "MCY", + "codeIataAirline": "", + "codeIcaoAirline": "93C", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromil Pacific", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4194, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "A84", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arctic Sunwest Charters", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4195, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAA", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avicon Aviation Consultants & Agents", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4196, + "callsign": "ABG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAB", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Abelag Aviation", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4197, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Abelag Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4198, + "callsign": "ARMYAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Army Air Corps", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4199, + "callsign": "SUNRISE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAD", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Aviation Centre", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4200, + "callsign": "AMBASSADOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ambassador", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4201, + "callsign": "ARIZONA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arizona Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4202, + "callsign": "ARIZONA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Express Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4203, + "callsign": "AIR EAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Astec Air East", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4204, + "callsign": "ATLANTIC", + "codeHub": "CVT", + "codeIataAirline": "", + "codeIcaoAirline": "AAG", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Atlantique (UK)", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4205, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAG", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alpha Air", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4206, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alpha Air (Ukraine)", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4207, + "callsign": "BOREALIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Aurora", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4208, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Aurora", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4209, + "callsign": "", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "AAJ", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4210, + "callsign": "", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "AAJ", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alfa Airlines SD", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4211, + "callsign": "ALFA SUDAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAJ", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alfa Airlines", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4212, + "callsign": "ALASKA ISLAND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alaska Island Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4213, + "callsign": "AM CORP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Management Corporation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4214, + "callsign": "AIM AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAM", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aim Air", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4215, + "callsign": "ANDALUSAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAN", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Andalusair", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4216, + "callsign": "ATLANTIS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantis Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4217, + "callsign": "AEROINTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Administracion Aeronautica Internacional", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4218, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "AAP", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovista Airlines", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4219, + "callsign": "AEROVISTA GROUP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAP", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovista Airlines", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4220, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAP", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Astro Air International", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4221, + "callsign": "ARABASCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAP", + "codeIso2Country": "SA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arabasco Air Services", + "nameCountry": "Saudi Arabia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4222, + "callsign": "COPTERACTION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAQ", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Copter Action", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4223, + "callsign": "PATRIOT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Americ Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4224, + "callsign": "AVIASERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airtransservice", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4225, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAT", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Central Asia", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4226, + "callsign": "AIR NAV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Navigation and Trading", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4227, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAU", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropa", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4228, + "callsign": "AUSTIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAW", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Austin Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4229, + "callsign": "ALMETA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAW", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Almeta Air", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4230, + "callsign": "AFREX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAX", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Afric'air Express", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4231, + "callsign": "SKY EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAX", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AMA-Flyg I Goteborg HB", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4232, + "callsign": "ADVANCE AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAX", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Advance Aviation", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4233, + "callsign": "ALY AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aly Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4234, + "callsign": "AEOLUS", + "codeHub": "BJL", + "codeIataAirline": "", + "codeIcaoAirline": "AAZ", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeolus Air", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4235, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeolus Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4236, + "callsign": "ANGUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AAZ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Angus Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4237, + "callsign": "ARTEN-AVIA", + "codeHub": "IEV", + "codeIataAirline": "", + "codeIcaoAirline": "ABA", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Artem-Avia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4238, + "callsign": "AEROBETA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABA", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero-Beta", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4239, + "callsign": "AFRICAN BUSINESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABB", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "African Business and Transportations", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4240, + "callsign": "ABAN", + "codeHub": "THR", + "codeIataAirline": "", + "codeIcaoAirline": "ABE", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aban Air", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4241, + "callsign": "ARBERIA AIRLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABE", + "codeIso2Country": "AL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arberia Airlines", + "nameCountry": "Albania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4242, + "callsign": "ABBY AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABE", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Abbotsford Air Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4243, + "callsign": "SKYWINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABF", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerial", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4244, + "callsign": "SKYWINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABF", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Scanwings", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4245, + "callsign": "ABAKAN AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABG", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Abakan Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4246, + "callsign": "BRETAGNE SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABH", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bretagne Service", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4247, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABH", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hokuriku-Koukuu", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4248, + "callsign": "ANAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABI", + "codeIso2Country": "AG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Antigua And Barbuda Airways International", + "nameCountry": "Antigua and Barbuda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4249, + "callsign": "AIRALABACETE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABI", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alba-Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4250, + "callsign": "", + "codeHub": "SSA", + "codeIataAirline": "", + "codeIcaoAirline": "ABJ", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ala Abaete Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4251, + "callsign": "", + "codeHub": "SSA", + "codeIataAirline": "", + "codeIcaoAirline": "ABJ", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Abaete Taxi Aereo", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4252, + "callsign": "ALBERTA CITYLINK", + "codeHub": "YYC", + "codeIataAirline": "", + "codeIcaoAirline": "ABK", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alberta Citylink", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4253, + "callsign": "ABALAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABK", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Abal Air", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4254, + "callsign": "ALBATROS ESPANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Albatros", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4255, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABN", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Fret Senegal", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4256, + "callsign": "AEROEXPRESO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABO", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroexpreso Bogota - APSA", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4257, + "callsign": "", + "codeHub": "PRG", + "codeIataAirline": "", + "codeIcaoAirline": "ABP", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ABA-Air", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4258, + "callsign": "BAIR", + "codeHub": "PRG", + "codeIataAirline": "", + "codeIcaoAirline": "ABP", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ABS Jets", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,private" + }, + { + "ageFleet": 0.0, + "airlineId": 4259, + "callsign": "", + "codeHub": "NLV", + "codeIataAirline": "", + "codeIcaoAirline": "ABS", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Albatros Avia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4260, + "callsign": "AMBITION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ambeo", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4261, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alexandair.", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4262, + "callsign": "AIR BROUSSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Brousse, Inc", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4263, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Aviaton Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4264, + "callsign": "AEROBUENO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABU", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovias Bueno", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4265, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABW", + "codeIso2Country": "AL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arberia Airways", + "nameCountry": "Albania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4266, + "callsign": "BOURGOGNE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABY", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bourgogne Europe", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4267, + "callsign": "ATA BRASIL", + "codeHub": "FOR", + "codeIataAirline": "", + "codeIcaoAirline": "ABZ", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ATA Brasil", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4268, + "callsign": "ISLAND LIFEFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABZ", + "codeIso2Country": "BS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Ambulance Services", + "nameCountry": "Bahamas", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4269, + "callsign": "ATA-BRAZIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ABZ", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ATA - Brazil", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4270, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AC4", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Exploits Valley Air Services", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4271, + "callsign": "", + "codeHub": "LBV", + "codeIataAirline": "", + "codeIcaoAirline": "ACB", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Continental Africa", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4272, + "callsign": "AIRCONTI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACB", + "codeIso2Country": "FO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Continental Africa", + "nameCountry": "Faroe Islands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4273, + "callsign": "AIR CONTACT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACB", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Business Contact A.B.C.", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4274, + "callsign": "AFRICARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACB", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "African Cargo Services", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4275, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACC", + "codeIso2Country": "JM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airspeed Charter", + "nameCountry": "Jamaica", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4276, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avcard Services Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4277, + "callsign": "AEROCHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocharter Midlands", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4278, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACD", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Academy Airlines", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4279, + "callsign": "ACADEMY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Academy Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4280, + "callsign": "FASTCARGO", + "codeHub": "ACC", + "codeIataAirline": "", + "codeIcaoAirline": "ACE", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cargoplus Aviation", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4281, + "callsign": "FASTCARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACE", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Race Cargo Airlines", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4282, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACE", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "246", + "nameAirline": "Air Charter Express", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4283, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACE", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cargo Plus Aviation of Ghana", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4284, + "callsign": "FORCAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centro de Formacion Aeronautica de Canarias", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4285, + "callsign": "AIR PARTNER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Partner", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4286, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACG", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AOSAC - Airline Operations Support and Aviation Consultant", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4287, + "callsign": "", + "codeHub": "TMS", + "codeIataAirline": "", + "codeIcaoAirline": "ACH", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Africa's Connection STP", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4288, + "callsign": "AIR-CHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Barcklay Flying Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4289, + "callsign": "AIR PLUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACH", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cargo Plus", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4290, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACH", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Africa's Connection STP", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4291, + "callsign": "AIR CORTEZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cortez", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4292, + "callsign": "FLY BUSINESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACJ", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Corporate", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4293, + "callsign": "AVICHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACJ", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avicon", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4294, + "callsign": "SINOJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACJ", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AC Aviation", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4295, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACK", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nantucket Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4296, + "callsign": "ACK AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nantucket Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4297, + "callsign": "ADMIRE", + "codeHub": "BOG", + "codeIataAirline": "", + "codeIcaoAirline": "ACL", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aercaribe", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4298, + "callsign": "CAVREL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cavrel", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4299, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACM", + "codeIso2Country": "HN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AVIAC S.A. de C.V.", + "nameCountry": "Honduras", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4300, + "callsign": "WEST CAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACM", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Caledonia", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4301, + "callsign": "AEROCENTRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACN", + "codeIso2Country": "NI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central American Airlines", + "nameCountry": "Nicaragua", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4302, + "callsign": "AERO COMONDU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Comondu", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4303, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Comondu", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4304, + "callsign": "ASTRAL CARGO", + "codeHub": "NBO", + "codeIataAirline": "", + "codeIcaoAirline": "ACP", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Astral Aviation", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4305, + "callsign": "AIRCRUISE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACR", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ASA, Air Starline", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4306, + "callsign": "CARAVANE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Caravane", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4307, + "callsign": "AEROCENTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACR", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocenter, Escuela de Formacion de Pilotos Privados de Avion", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4308, + "callsign": "AIRCRAFT SALES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACS", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircraft Sales and Services (Pvt) Ltd", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4309, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ASSL", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4310, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACS", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cess (Liberia)", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4311, + "callsign": "AIR CENTRAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Central", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4312, + "callsign": "", + "codeHub": "APA", + "codeIataAirline": "", + "codeIcaoAirline": "ACT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Line (USA)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4313, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Line", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4314, + "callsign": "AMERICAN CHECK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Line", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4315, + "callsign": "AFRISPIRIT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACU", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cargo Transportation System", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4316, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACV", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Charter Service", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4317, + "callsign": "SERACRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACW", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Across", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4318, + "callsign": "AIR CADET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACW", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RAF Air Cadet Schools", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4319, + "callsign": "LOADMASTER", + "codeHub": "HHN", + "codeIataAirline": "", + "codeIcaoAirline": "ACX", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ACG", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4320, + "callsign": "PARAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACX", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Charters", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4321, + "callsign": "ATLAS CARGOLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACY", + "codeIso2Country": "MA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlas Cargo Airlines", + "nameCountry": "Morocco", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4322, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ACZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4323, + "callsign": "", + "codeHub": "DRW", + "codeIataAirline": "", + "codeIcaoAirline": "ADA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pearl Aviation", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4324, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Australian Department of Aviation Flying Unit.", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4325, + "callsign": "AUSCAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airservices Australia, Flight Inspection Unit", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4326, + "callsign": "ANTONOV BUREAU", + "codeHub": "UKKM", + "codeIataAirline": "", + "codeIcaoAirline": "ADB", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Antonov Design Bureau / Antonov Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4327, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Antonov Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4328, + "callsign": "AD ASTRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADC", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AD Astra", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4329, + "callsign": "ATLAN-DOMINICAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADC", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Atlantic Dominicana", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4330, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADD", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Advanced Air", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4331, + "callsign": "ADASTRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADD", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Adastra Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4332, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Adefa", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4333, + "callsign": "ADE AVIACION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ade, Aviacion Deportiva", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4334, + "callsign": "AEREA TRAINING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADG", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerea Flying Training Organization", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4335, + "callsign": "DEL GOLFO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviones Y Servicics Del Golfo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4336, + "callsign": "AUDELI", + "codeHub": "MAD", + "codeIataAirline": "", + "codeIcaoAirline": "ADI", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Audeli Air Express", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4337, + "callsign": "", + "codeHub": "BUS", + "codeIataAirline": "", + "codeIcaoAirline": "ADJ", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Adjarian Airlines", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4338, + "callsign": "ADJAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADJ", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Batumi", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4339, + "callsign": "ABICAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADJ", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Abidjan Air Cargo", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4340, + "callsign": "AIR DALE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air-Dale", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4341, + "callsign": "COTSWOLD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerodynamics", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4342, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADM", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Andaman Aviation Services Limited", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4343, + "callsign": "AERODIENST", + "codeHub": "NUE", + "codeIataAirline": "", + "codeIcaoAirline": "ADN", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero-Dienst", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,private" + }, + { + "ageFleet": 0.0, + "airlineId": 4344, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Dienst", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4345, + "callsign": "AERODIPLOMATIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerodiplomatic", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4346, + "callsign": "AIR DATA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADQ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avion Taxi", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4347, + "callsign": "SONORAV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviones de Sonora", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4348, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADS", + "codeIso2Country": "BZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Dispatch Services", + "nameCountry": "Belize", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4349, + "callsign": "AIR DORVAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Dorval", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4350, + "callsign": "ARRENDA-TRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arrendaminetos y Transportes Turisticos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4351, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Dorval Ltee", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4352, + "callsign": "AIRDEAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADU", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airdeal", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4353, + "callsign": "ADVANCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADV", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Advance Air Charters", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4354, + "callsign": "ADVANCED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADV", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Advanced Flight Training", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4355, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADW", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ADC Airways", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4356, + "callsign": "ANDAX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Anderson Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4357, + "callsign": "AERODYNE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerodyne", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4358, + "callsign": "", + "codeHub": "DYR", + "codeIataAirline": "", + "codeIcaoAirline": "ADZ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chukotavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4359, + "callsign": "AVIOSARDA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADZ", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviosarda", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4360, + "callsign": "MIGRATOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ADZ", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avio Delta", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4361, + "callsign": "AEROCESAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEC", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocesar, Aerovias Del Cesar", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4362, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicios de Almeria", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4363, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AED", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EADS CASA", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4364, + "callsign": "AIE EXPERIENCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AED", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aie Experience Flight", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4365, + "callsign": "AERNSPA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AED", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aernord", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4366, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AED", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotrans Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4367, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerea", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4368, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airest", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4369, + "callsign": "FUMIGACIONES SAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEG", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerofumigaciones Sam", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4370, + "callsign": "AIR EAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEG", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air East", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4371, + "callsign": "INTERAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEI", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroexpreso Interamericano", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4372, + "callsign": "HELI SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEJ", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Affaires EJA France", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4373, + "callsign": "AERO CALY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Caly", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4374, + "callsign": "AEROMADRID", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Madrid", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4375, + "callsign": "AERO OCCIDENTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicios Ejecutivos Del Occidente", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4376, + "callsign": "AEPSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEP", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania Aero Transportes Panamenos", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4377, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEP", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AEROTEC", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4378, + "callsign": "AEROTEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEP", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotec", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4379, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEP", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ATP Cargo", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4380, + "callsign": "", + "codeHub": "ARN", + "codeIataAirline": "", + "codeIcaoAirline": "AEQ", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Express Sweden", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4381, + "callsign": "LUNIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEQ", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Express", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4382, + "callsign": "ACE AIR", + "codeHub": "ANC", + "codeIataAirline": "", + "codeIcaoAirline": "AER", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ACE Air Cargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4383, + "callsign": "AEROTHAI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AET", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronautical Radio of Thailand", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4384, + "callsign": "AEROTIME", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AET", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotime Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4385, + "callsign": "AERO PALMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AET", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero-Palma", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4386, + "callsign": "UNITED EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEU", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United Air Express", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4387, + "callsign": "AEROVENTAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroventas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4388, + "callsign": "AVCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airway Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4389, + "callsign": "AERIAL TRANZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AEZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerial Transit Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4390, + "callsign": "ARCATA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arcata Flying Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4391, + "callsign": "BLUE ALFA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFA", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alfa Air", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4392, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFB", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bulgarian Air Force", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 4393, + "callsign": "ABLE CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "American Flght Center", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4394, + "callsign": "AFRICAN WEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFC", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "African West Air (AWA)", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4395, + "callsign": "AIRFED", + "codeHub": "HPN", + "codeIataAirline": "", + "codeIcaoAirline": "AFD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Panorama Flight Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4396, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFD", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airfutures Airlines", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4397, + "callsign": "AEROCAF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFF", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CAF", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4398, + "callsign": "FACTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFH", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Fecteau", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4399, + "callsign": "AIR AFGHANISTAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFH", + "codeIso2Country": "AF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Afghanistan International", + "nameCountry": "Afghanistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4400, + "callsign": "", + "codeHub": "FNA", + "codeIataAirline": "", + "codeIcaoAirline": "AFK", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Afrik Air Links", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4401, + "callsign": "AFRICA LINKS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFK", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Africa Air Links", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4402, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFM", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Four", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4403, + "callsign": "HEKLA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFN", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantsflug", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4404, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFN", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "African Star Airlines", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4405, + "callsign": "SIMBA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFN", + "codeIso2Country": "LS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "African International Airlines", + "nameCountry": "Lesotho", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4406, + "callsign": "AERO EMPRESA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Empresa Mexicana", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4407, + "callsign": "", + "codeHub": "LPMT", + "codeIataAirline": "", + "codeIcaoAirline": "AFP", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAM - Transportes Aereos Militares", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 4408, + "callsign": "PORTUGUESE AIR FORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFP", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Portuguese Air Force", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 4409, + "callsign": "ALBA", + "codeHub": "LIN", + "codeIataAirline": "", + "codeIcaoAirline": "AFQ", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alba Servizi Aerotrasporti", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4410, + "callsign": "ALBA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFQ", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alba Servicio Aerotrasporti", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4411, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Data", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4412, + "callsign": "ANNIE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFS", + "codeIso2Country": "CY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airfast", + "nameCountry": "Cyprus", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4413, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4414, + "callsign": "AVIOFUN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFU", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviofun", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4415, + "callsign": "ARFIQUE VACANCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFV", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Afrique Vacancies", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4416, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AvFinity", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4417, + "callsign": "AFRAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFW", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Afrique Regional Airways", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4418, + "callsign": "AFRIWEST AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFW", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Afriwest Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4419, + "callsign": "SKYPAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Freight Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4420, + "callsign": "SKYMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Foyle", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4421, + "callsign": "AFRICA CHARTERED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFY", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Africa Chartered Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4422, + "callsign": "AFREIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AFZ", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Africa Freight Services", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4423, + "callsign": "AGAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGA", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "New Georgia", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4424, + "callsign": "AGRICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGC", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arab Agricultural Aviation Company", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4425, + "callsign": "AGDERFLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGD", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Agderfly", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4426, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGD", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Agricolair", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4427, + "callsign": "", + "codeHub": "ATH", + "codeIataAirline": "", + "codeIcaoAirline": "AGE", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AirGo Airlines Bulgaria", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4428, + "callsign": "AEROANGEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos de Los Angeles", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4429, + "callsign": "SKY RUNNERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGE", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airgo Airlines", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4430, + "callsign": "ATLANTIC GULF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Gulf Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4431, + "callsign": "ALGOMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGG", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Algoma Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4432, + "callsign": "AIR GRISCHA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGG", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Grischa Helikopter", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4433, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGH", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airgroup Havacilik", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4434, + "callsign": "ALTAGNA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGH", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Altagna", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4435, + "callsign": "ANGELES AMERICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aereo Transportes Los Angeles de America", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4436, + "callsign": "AGRAR AVIACION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGI", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Agrar-Aviacion", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4437, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGK", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroleasing Ukraine", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4438, + "callsign": "TAG UKRAINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGK", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAG Aviation Ukraine", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4439, + "callsign": "GALAXY CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGL", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Galaxy", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4440, + "callsign": "AIR ANGOULEME", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGL", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Angouleme", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4441, + "callsign": "AIR GUAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGM", + "codeIso2Country": "GU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Guam", + "nameCountry": "Guam", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4442, + "callsign": "ANGEL MED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation West Charters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4443, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Angola Air Charter", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4444, + "callsign": "AER TARA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGP", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GPA Group", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4445, + "callsign": "GALASERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGQ", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerogala", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4446, + "callsign": "AGRICULTURE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dept. Of Agriculture", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4447, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGS", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airgo Airlines", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4448, + "callsign": "ATAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGS", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Gambia", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4449, + "callsign": "AIR GAVA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGV", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Gava", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4450, + "callsign": "AERO GAMBIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGW", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Gambia", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4451, + "callsign": "AGRONAUT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGW", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Agro Airways", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4452, + "callsign": "AVIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGW", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia Airlines", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4453, + "callsign": "GENEX", + "codeHub": "BEG", + "codeIataAirline": "", + "codeIcaoAirline": "AGX", + "codeIso2Country": "YU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviogenex", + "nameCountry": "Yugoslavia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4454, + "callsign": "AEROGUAYACAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGY", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroguayacan", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4455, + "callsign": "FLIGHT GROUP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Flight Service.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4456, + "callsign": "AGROLET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AGZ", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Agrolet-Mci", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4457, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHB", + "codeIso2Country": "HN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas de Honduras (AEHSA)", + "nameCountry": "Honduras", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4458, + "callsign": "ALHAMBRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHB", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Alboran", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4459, + "callsign": "", + "codeHub": "GYD", + "codeIataAirline": "", + "codeIcaoAirline": "AHC", + "codeIso2Country": "AZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AZAL Cargo", + "nameCountry": "Azerbaijan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4460, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AZAL Avia Cargo", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4461, + "callsign": "AIR HAWAII", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Hawaii", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4462, + "callsign": "AZALAVIACARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHC", + "codeIso2Country": "AZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Azalaviacargo", + "nameCountry": "Azerbaijan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4463, + "callsign": "AZALVIACARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHC", + "codeIso2Country": "AZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cargo Airline of the State Concern Azerbaijan", + "nameCountry": "Azerbaijan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4464, + "callsign": "AIRHANDLING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHD", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Czech Air Handling", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4465, + "callsign": "AIRPORT HELICOPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHE", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airport Helicopter Basel", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4466, + "callsign": "ASPEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aspen Helicopters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4467, + "callsign": "AIRHOLD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHH", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airplanes Holdings", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4468, + "callsign": "", + "codeHub": "CUU", + "codeIataAirline": "", + "codeIcaoAirline": "AHI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Chihuahua", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4469, + "callsign": "AEROCHISA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos de Chihuahua Aerochisa", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4470, + "callsign": "AVYCOP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHJ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviones Y Helicopteros Ejecutivos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4471, + "callsign": "HIDALGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Hidalgo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4472, + "callsign": "HANSON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Hanson", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4473, + "callsign": "HELI ATLANTIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantis Helicopters de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4474, + "callsign": "AIR HURON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHM", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Garrison Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4475, + "callsign": "AIR HUNGARIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHN", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Hungaria", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4476, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHN", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia Group Handling, LLC", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4477, + "callsign": "AIR HAINAUT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHN", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Hainaut", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4478, + "callsign": "AIRDANE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHO", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Holbaek", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4479, + "callsign": "AEROCHIAPAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerochiapas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4480, + "callsign": "ADRIATIC", + "codeHub": "RJK", + "codeIataAirline": "", + "codeIcaoAirline": "AHR", + "codeIso2Country": "HR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Adriatic", + "nameCountry": "Croatia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4481, + "callsign": "", + "codeHub": "KHI", + "codeIataAirline": "", + "codeIcaoAirline": "AHS", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AHS Air International", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4482, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHS", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Viggi San Raffaele", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4483, + "callsign": "HELIAPRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHT", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "HTA Helicopteros", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4484, + "callsign": "ABC HUNGARY", + "codeHub": "BUD", + "codeIataAirline": "", + "codeIcaoAirline": "AHU", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ABC Air Hungary", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4485, + "callsign": "SKY CAPITAL", + "codeHub": "DAC", + "codeIataAirline": "", + "codeIcaoAirline": "AHW", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SkyAir", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4486, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AHW", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromist-Kharkiv", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4487, + "callsign": "AIRMARK", + "codeHub": "HLP", + "codeIataAirline": "", + "codeIcaoAirline": "AIA", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airmark Indonesia Aviation", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4488, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airbus Industrie", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4489, + "callsign": "ALTIT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AID", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alti", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4490, + "callsign": "CENTURY AIRBIRDS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AID", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Christian Konig - Century Airbirds", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4491, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIF", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aim Aviation", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4492, + "callsign": "FLYMED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airmed", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4493, + "callsign": "", + "codeHub": "POG", + "codeIataAirline": "", + "codeIcaoAirline": "AIG", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Inter Gabon", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4494, + "callsign": "APLINE CHILE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIH", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alpine Air Chile", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4495, + "callsign": "", + "codeHub": "YQL", + "codeIataAirline": "", + "codeIcaoAirline": "AII", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Integra Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4496, + "callsign": "INTEGRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AII", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Integra", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4497, + "callsign": "AFRICAN AIRLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIK", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "African Airlines International", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4498, + "callsign": "AIR ILLINOIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Illinois", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4499, + "callsign": "PIJO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trabajos Aereos Murcianos", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4500, + "callsign": "AVICOBA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviones Y Helicopteros Illes Balears", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4501, + "callsign": "AMBUL-INSU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ambulancias Insulares", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4502, + "callsign": "AIR CHIEF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chief of Staff, USAF", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4503, + "callsign": "AVIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIO", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avis", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4504, + "callsign": "", + "codeHub": "UUBW", + "codeIataAirline": "", + "codeIcaoAirline": "AIS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AIS Airlines (Russia)", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4505, + "callsign": "SURESTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIS", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air SurEste", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4506, + "callsign": "SKYSHIP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airship Industries UK Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4507, + "callsign": "AIREST", + "codeHub": "TLL", + "codeIataAirline": "", + "codeIcaoAirline": "AIT", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airest", + "nameCountry": "Estonia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4508, + "callsign": "ARTHUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "American International Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4509, + "callsign": "AIR TAURUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIT", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Taurus", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4510, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIU", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Segura", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4511, + "callsign": "ALIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIU", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alicante Internacional Airlines", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4512, + "callsign": "", + "codeHub": "GRU", + "codeIataAirline": "", + "codeIcaoAirline": "AIV", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Vias", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4513, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIV", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avex International", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4514, + "callsign": "AIRVIAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIV", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airvias S/A Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4515, + "callsign": "TARTAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIW", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Island Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4516, + "callsign": "CRUISER", + "codeHub": "SYD", + "codeIataAirline": "", + "codeIcaoAirline": "AIX", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircruising Australia", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 4517, + "callsign": "AIRCREW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AIY", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircrew Check and Training Australia", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4518, + "callsign": "AYJAY SERVICES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AJA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "A J Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4519, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AJA", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Al Jaber Aviation", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4520, + "callsign": "AERO JBR", + "codeHub": "SLW", + "codeIataAirline": "", + "codeIcaoAirline": "AJB", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero JBR", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4521, + "callsign": "VISTA GEORGIA", + "codeHub": "TBS", + "codeIataAirline": "", + "codeIcaoAirline": "AJD", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vista Georgia", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter,division" + }, + { + "ageFleet": 0.0, + "airlineId": 4522, + "callsign": "JET EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AJE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Jet Express", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4523, + "callsign": "", + "codeHub": "VIE", + "codeIataAirline": "", + "codeIcaoAirline": "AJF", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia-Consult Flugbetrieb", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4524, + "callsign": "AVIACONSULT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AJF", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia Consult Flugbetriebs", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4525, + "callsign": "ALJARAFE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AJH", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroaljarafe", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4526, + "callsign": "", + "codeHub": "ADS", + "codeIataAirline": "", + "codeIcaoAirline": "AJI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ameristar Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4527, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AJI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ameristar Jet Charter", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4528, + "callsign": "AVJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AJJ", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avcon Jet Africa", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4529, + "callsign": "ATLANTIC JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AJJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4530, + "callsign": "AEROJALISCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AJL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Jalisco", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4531, + "callsign": "BIRD EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AJL", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Almajet", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4532, + "callsign": "BAJANTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AJN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Automotriz Baja Notre", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4533, + "callsign": "AEROEXO", + "codeHub": "MTY", + "codeIataAirline": "", + "codeIcaoAirline": "AJO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroejecutivo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4534, + "callsign": "AEROJETS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AJP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Jets Corporativos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4535, + "callsign": "JET MONGOLIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AJR", + "codeIso2Country": "MN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "A-Jet Aviation", + "nameCountry": "Mongolia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4536, + "callsign": "AEROEJECUTIVOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AJS", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroejecutivos Colombia", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4537, + "callsign": "AIRJETSUL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AJU", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airjetsul Private Jets", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4538, + "callsign": "ALPHAJET", + "codeHub": "MSL", + "codeIataAirline": "", + "codeIcaoAirline": "AJW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alpha Jet International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4539, + "callsign": "LEE JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AJW", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Advance Aviation Jet", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4540, + "callsign": "ANGLO JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AJZ", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Anglo American South Africa", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4541, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKA", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Korea", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4542, + "callsign": "KARAB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKB", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aktjubavia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4543, + "callsign": "", + "codeHub": "IST", + "codeIataAirline": "", + "codeIcaoAirline": "AKD", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Akdeniz Airlines", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4544, + "callsign": "ALFA ASIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKD", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alfa KR", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4545, + "callsign": "AIR MAKEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKE", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Maken", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4546, + "callsign": "", + "codeHub": "FRU", + "codeIataAirline": "", + "codeIcaoAirline": "AKF", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Anikay Air", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4547, + "callsign": "AFRICAN FALCON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKF", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gulf Falcon Air Services", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4548, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKF", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Asahi", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4549, + "callsign": "GRIFTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "84 Squadron RAF Akrotiri", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4550, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKI", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ibk-Petra", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4551, + "callsign": "AIR KIRIBATI", + "codeHub": "TRW", + "codeIataAirline": "", + "codeIcaoAirline": "AKL", + "codeIso2Country": "KI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Kiribati", + "nameCountry": "Kiribati", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4552, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Continental Airways", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4553, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "AKM", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mak Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4554, + "callsign": "AMCE AEREO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Acme", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4555, + "callsign": "ALKAN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKN", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alkan Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4556, + "callsign": "OBELIX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKO", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotec Maintenace & Service", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4557, + "callsign": "ANTEX-POLUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Antex-Polus", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4558, + "callsign": "MOONFLIGHT", + "codeHub": "NBO", + "codeIataAirline": "", + "codeIcaoAirline": "AKQ", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerospace Consortium", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4559, + "callsign": "ARCTIC NORWAY", + "codeHub": "KKN", + "codeIataAirline": "", + "codeIcaoAirline": "AKR", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arctic Air", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4560, + "callsign": "AKHMOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKS", + "codeIso2Country": "BY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Akhmos-1", + "nameCountry": "Belarus", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4561, + "callsign": "AIR KANSAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Four Sons Flying Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4562, + "callsign": "ACSUNKAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKU", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AK Sunkar Aircompany", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4563, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKV", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Active Air", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4564, + "callsign": "", + "codeHub": "VKO", + "codeIataAirline": "", + "codeIcaoAirline": "AKY", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yak Service", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4565, + "callsign": "AIR KENTUCKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Kentucky", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4566, + "callsign": "YAK-SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKY", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yak-Service", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4567, + "callsign": "ABSOLUTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AKZ", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AK Navigator", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4568, + "callsign": "ALBION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Albion Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4569, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Association Of Latin American Air Carriers", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4570, + "callsign": "ALBATROS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALB", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Albatros", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4571, + "callsign": "ACOM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Jersey Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4572, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "American Linehaul Corporation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4573, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Albion Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4574, + "callsign": "DORADA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALD", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronaves La Dorada", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4575, + "callsign": "ALY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALD", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Spare Parts Europe", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4576, + "callsign": "AIRLIFT GHANA", + "codeHub": "ACC", + "codeIataAirline": "", + "codeIcaoAirline": "ALE", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlift International", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4577, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALE", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlift International of Ghana", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4578, + "callsign": "AEROALAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALE", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroalas Colombia - Aerolineas Especiales de Colombia", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4579, + "callsign": "ACEFORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALF", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Allied Command Europe (Mobile Force)", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4580, + "callsign": "LOFCARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4581, + "callsign": "ALPHA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alpha Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4582, + "callsign": "LUCAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALI", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alaire", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4583, + "callsign": "ALPSTEIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALI", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alpsteinair", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4584, + "callsign": "BLUELIFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALI", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlift", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4585, + "callsign": "ALPIN HELI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALJ", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Ambulance Team", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4586, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALJ", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ALI Aero Leasing Italiana", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4587, + "callsign": "ALISERIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALL", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aliserio", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4588, + "callsign": "VALLARTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovallarta", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4589, + "callsign": "", + "codeHub": "CMN", + "codeIataAirline": "", + "codeIcaoAirline": "ALM", + "codeIso2Country": "MA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alfa Air", + "nameCountry": "Morocco", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4590, + "callsign": "TOLEMAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALN", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alpha Jet", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4591, + "callsign": "CHICAGO LINCOLN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Lincoln", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4592, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALO", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Lorient", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4593, + "callsign": "ALLEGHENY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Allegheny Commuter Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4594, + "callsign": "ALPLINER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALP", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alpliner", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4595, + "callsign": "ALLPOINTS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALP", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Allpoints Jet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4596, + "callsign": "ALTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALQ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Altair Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4597, + "callsign": "ALFA GROUP", + "codeHub": "BBU", + "codeIataAirline": "", + "codeIcaoAirline": "ALR", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alfa Air Services", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4598, + "callsign": "", + "codeHub": "MAD", + "codeIataAirline": "", + "codeIcaoAirline": "ALR", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alaire", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4599, + "callsign": "ALGARVILARA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALR", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Algarvilara, Transportes Aereos Algarvios", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4600, + "callsign": "ALASKA AERONAUTICAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alaska Aeronautical Industries", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4601, + "callsign": "AEROALAIRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALR", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas Alaire", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4602, + "callsign": "MERMAID", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALS", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Alsie", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4603, + "callsign": "AERALP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALS", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeralp", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4604, + "callsign": "AIR LOS ANGELES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chartair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4605, + "callsign": "ALAG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALU", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alpine Luft-Transport", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4606, + "callsign": "ALVEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALV", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alas de Venezuela", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4607, + "callsign": "ALSAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALV", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alsavia", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4608, + "callsign": "ALNACIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALW", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alas Nacionales", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4609, + "callsign": "", + "codeHub": "FIH", + "codeIataAirline": "", + "codeIcaoAirline": "ALX", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "flyCAA", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4610, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALX", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alitaxi", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4611, + "callsign": "ALYESKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alyeska Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4612, + "callsign": "", + "codeHub": "YEG", + "codeIataAirline": "", + "codeIcaoAirline": "ALZ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alta Flights", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4613, + "callsign": "ALLIANCE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alliance Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4614, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ALZ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alta Flights (Charters) Inc", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4615, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMA", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircompany ATMA", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4616, + "callsign": "CIVIL AIR AMBULANCE", + "codeHub": "STR", + "codeIataAirline": "", + "codeIcaoAirline": "AMB", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DRF - Stiftung Luftrettung Gemeinnuetzige AG", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4617, + "callsign": "AEROLINEAS MEDELLIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMD", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Medellin", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4618, + "callsign": "AME", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AME", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Spanish Air Force", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 4619, + "callsign": "AMAG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMG", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Material", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4620, + "callsign": "MANN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alan Mann Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4621, + "callsign": "AIRMEK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMI", + "codeIso2Country": "PR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air America", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4622, + "callsign": "", + "codeHub": "ATH", + "codeIataAirline": "", + "codeIcaoAirline": "AMJ", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amjet Executive", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4623, + "callsign": "AVIATION AMOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMJ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Amos", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4624, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amjet Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4625, + "callsign": "AMER AIR", + "codeHub": "LNZ", + "codeIataAirline": "", + "codeIcaoAirline": "AMK", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amerer Air", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4626, + "callsign": "MALAWI", + "codeHub": "BLZ", + "codeIataAirline": "", + "codeIcaoAirline": "AML", + "codeIso2Country": "MW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Malawi", + "nameCountry": "Malawi", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4627, + "callsign": "", + "codeHub": "LUBM", + "codeIataAirline": "", + "codeIcaoAirline": "AMM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerom", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4628, + "callsign": "NORAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotransportacion de Norteamerica", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4629, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMM", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerom", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4630, + "callsign": "AEROM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMM", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroportul International Marculesti", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4631, + "callsign": "MONTENEGRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMN", + "codeIso2Country": "YU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Montenegro", + "nameCountry": "Yugoslavia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4632, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMO", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Angel Martinez Ridao (SAETA)", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4633, + "callsign": "", + "codeHub": "WAW", + "codeIataAirline": "", + "codeIcaoAirline": "AMQ", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "4YOU Airlines", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 4634, + "callsign": "LIFELINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMQ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromedicare", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4635, + "callsign": "AMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMQ", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AMC Aviation", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4636, + "callsign": "AIR MARINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Marine", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4637, + "callsign": "AIR AM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air American / Total Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4638, + "callsign": "AIR MUSKOKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMS", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Muskoka", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4639, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ASTA Linhas Aereas", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4640, + "callsign": "", + "codeHub": "LIM", + "codeIataAirline": "", + "codeIcaoAirline": "AMT", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amazon Sky", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4641, + "callsign": "AMC AIRLINES", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "AMV", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AMC Airlines", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4642, + "callsign": "AIR MIDWEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "471", + "nameAirline": "Air Midwest", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4643, + "callsign": "AIR AMBAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMY", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Ambar", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4644, + "callsign": "MALI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMY", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Mali", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4645, + "callsign": "AIR MEUSE", + "codeHub": "LGG", + "codeIataAirline": "", + "codeIcaoAirline": "AMZ", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Meuse", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4646, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amiyi Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4647, + "callsign": "AMIYI AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AMZ", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amiyi Airline", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4648, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air New-Bec, Inc", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4649, + "callsign": "AIR NAV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Navigation And Trading", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4650, + "callsign": "AIR INDIANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AND", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Jet Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4651, + "callsign": "AIR TARA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air National", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4652, + "callsign": "CRESTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alpine Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4653, + "callsign": "AERO NORTH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANF", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero North Icelandic", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4654, + "callsign": "ANTAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANH", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Antares Air", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4655, + "callsign": "ALAJNIHAH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANH", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "311", + "nameAirline": "Alajnihah Air Transport", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4656, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "ANI", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Atlantic Cargo", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4657, + "callsign": "NIGALANTIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANI", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Atlantic", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4658, + "callsign": "AERO ALENTEJO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANJ", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero-Alentejo, Servicos Aereos, Lda.", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4659, + "callsign": "AIRLINK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northwest Orient Airlink", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4660, + "callsign": "", + "codeHub": "LAD", + "codeIataAirline": "", + "codeIcaoAirline": "ANL", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Nacoia", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4661, + "callsign": "AIR NICOIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANL", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nacoia", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4662, + "callsign": "AIR NEW ORLEANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air New Orleans", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4663, + "callsign": "", + "codeHub": "EDFR", + "codeIataAirline": "", + "codeIcaoAirline": "ANM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Antares Airtransport", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4664, + "callsign": "ANTARES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANM", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Antares Airtransport, Maintenance & Service", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4665, + "callsign": "AIR NEW MEXICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airways of New Mexico", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4666, + "callsign": "AIR NORTH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air North", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4667, + "callsign": "ANTONAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANP", + "codeIso2Country": "LS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Antonair International", + "nameCountry": "Lesotho", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4668, + "callsign": "ANTIOQUIA", + "codeHub": "EOH", + "codeIataAirline": "", + "codeIcaoAirline": "ANQ", + "codeIso2Country": "CO", + "founding": 1987, + "iataPrefixAccounting": "", + "nameAirline": "Aerolinea de Antioquia", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4669, + "callsign": "AERONORTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANR", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronorte", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4670, + "callsign": "TERRITORY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANT", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlines of Northern Australia", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4671, + "callsign": "AVIONAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANU", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avionair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4672, + "callsign": "AIR NEVADA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Nevada Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4673, + "callsign": "ANGEL WINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANW", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Me", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4674, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANX", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AN Express (ANEX)", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4675, + "callsign": "SECRETARIA DEARINA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Secretaria de Marina", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4676, + "callsign": "ANAX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANX", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ANAX Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4677, + "callsign": "NORTERRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANX", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Norterra", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4678, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ANY", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "OAG Computer", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4679, + "callsign": "ALCON", + "codeHub": "SLW", + "codeIataAirline": "", + "codeIcaoAirline": "AOA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alcon Servicios Aereos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4680, + "callsign": "???IB? CORD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOB", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocaribe Cord", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4681, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolion International", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4682, + "callsign": "AERO AVCOM", + "codeHub": "DME", + "codeIataAirline": "", + "codeIcaoAirline": "AOC", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avcom (Russia)", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4683, + "callsign": "AERO CZECH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOD", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Vodochody", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4684, + "callsign": "LIVINGSTON AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOE", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Livingston Executive", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4685, + "callsign": "SOSEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOE", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerososel", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4686, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOE", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air One Executive", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4687, + "callsign": "ATAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOF", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atair", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4688, + "callsign": "AIR OHIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Coast Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4689, + "callsign": "ASTORIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOI", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Astoria", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4690, + "callsign": "SWISSJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOJ", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero-Jet", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4691, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOK", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroatlantico Colombia - Aerovias Del Atlantico", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4692, + "callsign": "AEOLIAN", + "codeHub": "ATH", + "codeIataAirline": "", + "codeIcaoAirline": "AOL", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeolian Airlines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4693, + "callsign": "AIRLEASE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOL", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Exel Executive", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4694, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOL", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroleasing France", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4695, + "callsign": "ANGKOR AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOL", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Angkor Airlines", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4696, + "callsign": "ANDRODA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Andromeda Taxi Aereo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4697, + "callsign": "AERO ENTERPROSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AON", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Entreprise", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4698, + "callsign": "GATEWAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AON", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air One", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4699, + "callsign": "COMPANY AS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOO", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "As, Opened", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4700, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerospecservice", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4701, + "callsign": "AEROPILOTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOP", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropiloto - Sociedade Exploradora de Servicos Aereos", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4702, + "callsign": "INTER-AFRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOR", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Afro International Ent.", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4703, + "callsign": "AEROSOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aerecs Del Sol", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4704, + "callsign": "AROS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOS", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arosflyg", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4705, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeros Flight Training", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4706, + "callsign": "ALSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOS", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ansett Airlines of South Australia", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4707, + "callsign": "ASIA OVERNIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOT", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asia Overnight Express", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4708, + "callsign": "ASTRONAUT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOT", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DLR Flugbetrieb", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4709, + "callsign": "AIR TRACTOR", + "codeHub": "OSI", + "codeIataAirline": "", + "codeIcaoAirline": "AOU", + "codeIso2Country": "HR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Tractor", + "nameCountry": "Croatia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4710, + "callsign": "AEROVISION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOV", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Vision", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4711, + "callsign": "AIR ANDAMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOW", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Andaman", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4712, + "callsign": "AEROVALLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AOX", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxi Del Valle", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4713, + "callsign": "CAN-AM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Park Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4714, + "callsign": "", + "codeHub": "BNX", + "codeIataAirline": "", + "codeIcaoAirline": "APB", + "codeIso2Country": "BA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avio Piva", + "nameCountry": "Bosnia and Herzegovina", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4715, + "callsign": "AVIOPIVA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APB", + "codeIso2Country": "BA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviopiva", + "nameCountry": "Bosnia and Herzegovina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4716, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airpac Airlines", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4717, + "callsign": "AIR PARCEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Parcel Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4718, + "callsign": "ASIA PACIFIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APF", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asia Pacific Airlines", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4719, + "callsign": "AEROPEGASO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis Pegaso", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4720, + "callsign": "AIRFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alpha Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4721, + "callsign": "ASA PESADA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "API", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ASA Pesada", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4722, + "callsign": "AIR PRINT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APJ", + "codeIso2Country": "LU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Print", + "nameCountry": "Luxembourg", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4723, + "callsign": "PEACE BIRD", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "APK", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Peace", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4724, + "callsign": "APAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APK", + "codeIso2Country": "SG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asia Pacific Air Cargo", + "nameCountry": "Singapore", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4725, + "callsign": "AEROPRAKT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroprakt K.Z.", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4726, + "callsign": "APPALACHIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Appalachian Flying Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4727, + "callsign": "ALASKA PACIFIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airpac", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4728, + "callsign": "", + "codeHub": "DMK", + "codeIataAirline": "", + "codeIcaoAirline": "APN", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Phoenix", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4729, + "callsign": "AEROANTIPLANO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovia Del Altiplano", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4730, + "callsign": "AEROPRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APO", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropro", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4731, + "callsign": "ASPEN BASE", + "codeHub": "ASE", + "codeIataAirline": "", + "codeIcaoAirline": "APQ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aspen Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4732, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Societe NouvelExploitation l d'Air Provence", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4733, + "callsign": "AP CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APR", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "413", + "nameAirline": "Air Polonia Cargo", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4734, + "callsign": "", + "codeHub": "IQT", + "codeIataAirline": "", + "codeIcaoAirline": "APS", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "APISA Air Cargo", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4735, + "callsign": "APISA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APS", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotransporte Peruanos Internacionales", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4736, + "callsign": "LAP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APT", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LAP Colombia - Lineas Aereas Petroleras", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4737, + "callsign": "AEROPUMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APU", + "codeIso2Country": "SV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropuma", + "nameCountry": "El Salvador", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4738, + "callsign": "APUKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APU", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transporte Aereo Expreso Moche", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4739, + "callsign": "AIR PLAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APV", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Plan International", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4740, + "callsign": "APEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Newcastle Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4741, + "callsign": "PARCEL EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Apex Air Cargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4742, + "callsign": "APA INTERNATIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "APA International Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4743, + "callsign": "APPLE PIE", + "codeHub": "RIX", + "codeIataAirline": "", + "codeIcaoAirline": "APZ", + "codeIso2Country": "LV", + "founding": 2012, + "iataPrefixAccounting": "", + "nameAirline": "Alpha Express Airlines", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4744, + "callsign": "AMPERE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "APZ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hydro-Quebec", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4745, + "callsign": "ATCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AQA", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroatlas", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4746, + "callsign": "AQUAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AQB", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aqualata Air (Aqua Air)", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4747, + "callsign": "ALQUILADORA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AQC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alquiladora de Casas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4748, + "callsign": "AQUILA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AQL", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comair Flight Services", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4749, + "callsign": "AQUILA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AQL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aquila Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4750, + "callsign": "BUSHAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AQN", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Queensland", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4751, + "callsign": "ALCOA SHUTTLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AQO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aluminum Company Of America, Alcoa Aircraft Operations", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4752, + "callsign": "", + "codeHub": "CUN", + "codeIataAirline": "", + "codeIcaoAirline": "AQT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avioquintana", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4753, + "callsign": "AVIOQUINTANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AQT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviones de Renta de Quintana Roo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4754, + "callsign": "QUARIUS", + "codeHub": "HLA", + "codeIataAirline": "", + "codeIcaoAirline": "AQU", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airquarius Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4755, + "callsign": "QUANZA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AQZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerodyne Charter Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4756, + "callsign": "AEROBEIRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARA", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerobeira, Sociedade de Transportes Aereos", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4757, + "callsign": "AURORA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aurora Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4758, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARB", + "codeIso2Country": "AW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arubair", + "nameCountry": "Aruba", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4759, + "callsign": "", + "codeHub": "STD", + "codeIataAirline": "", + "codeIcaoAirline": "ARD", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroandinas", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4760, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARD", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocondor (Portugal)", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4761, + "callsign": "ANIMAL FLIGHTS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Animal Rescue Flights", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4762, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARF", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero France", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4763, + "callsign": "AEROHELCA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARH", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerohelicopteros", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4764, + "callsign": "ARROWHEAD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arrowhead Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4765, + "callsign": "", + "codeHub": "TLC", + "codeIataAirline": "", + "codeIcaoAirline": "ARI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovics", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4766, + "callsign": "", + "codeHub": "WMX", + "codeIataAirline": "", + "codeIcaoAirline": "ARI", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Regional", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4767, + "callsign": "AEROVICS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Vics", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4768, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARJ", + "codeIso2Country": "CR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerojet de Costa Rica", + "nameCountry": "Costa Rica", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4769, + "callsign": "LINK SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARK", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Link Air Services", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4770, + "callsign": "ARKANSAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Center", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4771, + "callsign": "AIRLEC", + "codeHub": "BOD", + "codeIataAirline": "", + "codeIcaoAirline": "ARL", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlec Air Espace", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4772, + "callsign": "SUNSKY", + "codeHub": "KIV", + "codeIataAirline": "", + "codeIcaoAirline": "ARM", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Megaviation", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4773, + "callsign": "HELI SHUTTLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Armadillo Airways Helicopters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4774, + "callsign": "AMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromarket Express", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4775, + "callsign": "SUNSKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARM", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky One", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4776, + "callsign": "", + "codeHub": "GVA", + "codeIataAirline": "", + "codeIcaoAirline": "ARN", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Astra Airlines (Switzerland)", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4777, + "callsign": "", + "codeHub": "JNB", + "codeIataAirline": "", + "codeIcaoAirline": "ARN", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronexus Corporate", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4778, + "callsign": "", + "codeHub": "SJJ", + "codeIataAirline": "", + "codeIcaoAirline": "ARN", + "codeIso2Country": "BA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arnoro Airlines", + "nameCountry": "Bosnia and Herzegovina", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4779, + "callsign": "AERONEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARN", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronexus", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4780, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronexus", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4781, + "callsign": "SWISSLEASE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARN", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Astra Airlines", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4782, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARN", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviaservice", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4783, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARN", + "codeIso2Country": "BA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arnoro", + "nameCountry": "Bosnia and Herzegovina", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4784, + "callsign": "ARROW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARO", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arrow Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4785, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RPA-Aviataxi", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4786, + "callsign": "AEROPOSTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARP", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soci�t� D�Exploitation Aeropostale", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4787, + "callsign": "ARMSTRONG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARQ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Armstrong Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4788, + "callsign": "AERORA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerora", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4789, + "callsign": "", + "codeHub": "KSH", + "codeIataAirline": "", + "codeIcaoAirline": "ARS", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arsh Air", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4790, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARS", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Sardinia Ltd", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4791, + "callsign": "HAFE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronaves Hafe", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4792, + "callsign": "JETRIDER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetrider International", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4793, + "callsign": "", + "codeHub": "BLQ", + "codeIataAirline": "", + "codeIcaoAirline": "ART", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SmartLynx Italia", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4794, + "callsign": "AEROTAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ART", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotal Aerolineas Territoriales de Colombia", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4795, + "callsign": "", + "codeHub": "KTP", + "codeIataAirline": "", + "codeIcaoAirline": "ARW", + "codeIso2Country": "JM", + "founding": 2009, + "iataPrefixAccounting": "", + "nameAirline": "Jamaica Air Shuttle", + "nameCountry": "Jamaica", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4796, + "callsign": "", + "codeHub": "MLH", + "codeIataAirline": "", + "codeIcaoAirline": "ARW", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aria", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4797, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARW", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arrows", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4798, + "callsign": "ARIABIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARW", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aria", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4799, + "callsign": "AIREX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Xpress", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4800, + "callsign": "GOSEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Argosy Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4801, + "callsign": "YERAZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARY", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ATC", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4802, + "callsign": "AIR RESORTS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ARZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Resorts", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4803, + "callsign": "", + "codeHub": "YQF", + "codeIataAirline": "", + "codeIcaoAirline": "ASB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Spray (1967)", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4804, + "callsign": "AIR SPRAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air-Spray", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4805, + "callsign": "", + "codeHub": "SRZ", + "codeIataAirline": "", + "codeIcaoAirline": "ASC", + "codeIso2Country": "BO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alas del Sur", + "nameCountry": "Bolivia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4806, + "callsign": "", + "codeHub": "YZF", + "codeIataAirline": "", + "codeIcaoAirline": "ASC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arctic Sunwest Charters", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4807, + "callsign": "ASERTEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios de Aviacion Asertec", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4808, + "callsign": "ASEA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Southeast Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4809, + "callsign": "AUSTRIAN AIRFORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASF", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Austrian Air Force", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 4810, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASG", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Speed Charter (Pvt) Ltd", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4811, + "callsign": "SATELLITE", + "codeHub": "YBC", + "codeIataAirline": "", + "codeIcaoAirline": "ASJ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Exact Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4812, + "callsign": "ASTONJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASJ", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Astonjet", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4813, + "callsign": "", + "codeHub": "VVI", + "codeIataAirline": "", + "codeIcaoAirline": "ASK", + "codeIso2Country": "BO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Sudamericanas", + "nameCountry": "Bolivia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4814, + "callsign": "MULTISKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASK", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Sky", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4815, + "callsign": "AIR SEATTLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Spurling Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4816, + "callsign": "", + "codeHub": "HLA", + "codeIataAirline": "", + "codeIcaoAirline": "ASM", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Awesome Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4817, + "callsign": "AIR SAINT MARTIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SCTA Air Saint Martin", + "nameCountry": "St. Martin", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4818, + "callsign": "SPEEDLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASM", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airspeed Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4819, + "callsign": "AWESOME", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASM", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Awesome Flight Services", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4820, + "callsign": "", + "codeHub": "MUC", + "codeIataAirline": "", + "codeIcaoAirline": "ASN", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Straubing", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4821, + "callsign": "PROSPECTOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASN", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Spectrem Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4822, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASN", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air and Sea Transport", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4823, + "callsign": "AIR NANTES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASN", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Service Nantes", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4824, + "callsign": "AZAUD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASO", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airrthe Organisation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4825, + "callsign": "AERO NITRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASO", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Slovakia", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4826, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASP", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Empresa de Servicios Maritima Y Aerea", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4827, + "callsign": "ASIA SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASQ", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asia Service Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4828, + "callsign": "ALL STAR", + "codeHub": "BOS", + "codeIataAirline": "", + "codeIcaoAirline": "ASR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "All Star Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4829, + "callsign": "SOTRAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Sotravia", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4830, + "callsign": "DODO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Sarnia", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4831, + "callsign": "AIR CLASS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Class", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4832, + "callsign": "", + "codeHub": "CGB", + "codeIataAirline": "", + "codeIcaoAirline": "AST", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ASTA - America do Sul Taxi Aereo", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4833, + "callsign": "ASTRO-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AST", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Astro Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4834, + "callsign": "AIR SARINA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AST", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Sarina", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4835, + "callsign": "AEROESTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AST", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Del Oeste", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4836, + "callsign": "ASUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASU", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerosur", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4837, + "callsign": "COMMUTER LINER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airspur", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4838, + "callsign": "", + "codeHub": "ICN", + "codeIataAirline": "", + "codeIcaoAirline": "ASV", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Seoul", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "start_up", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4839, + "callsign": "AIR SAVOIE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASV", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Savoie", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4840, + "callsign": "ASIA VALUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASV", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ava Airlines", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4841, + "callsign": "ASTRAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASV", + "codeIso2Country": "GW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Astravia-Bissau Air Transports", + "nameCountry": "Guinea-Bissau", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4842, + "callsign": "", + "codeHub": "DYU", + "codeIataAirline": "", + "codeIcaoAirline": "ASW", + "codeIso2Country": "TJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asia Airways", + "nameCountry": "Tajikistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4843, + "callsign": "AIRSOUTHWEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASW", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Southwest", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4844, + "callsign": "AIRSPEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASX", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Special", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4845, + "callsign": "AUSSIE", + "codeHub": "RCM", + "codeIataAirline": "", + "codeIcaoAirline": "ASY", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Australian Air Force", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 4846, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASY", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Australian Air Force", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 4847, + "callsign": "ASCENSION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ASZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ascension Air Management", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4848, + "callsign": "STARLITE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4849, + "callsign": "AEROTOURS", + "codeHub": "SDQ", + "codeIataAirline": "", + "codeIcaoAirline": "ATD", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotours Dominicana", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4850, + "callsign": "", + "codeHub": "MEX", + "codeIataAirline": "", + "codeIcaoAirline": "ATE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AeroMexico Travel", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4851, + "callsign": "AMTRAVEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicio Mericano de Vuelose de Fletamento", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4852, + "callsign": "ATLANTIS CANADA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATE", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantis Transportation Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4853, + "callsign": "AEROTECNICAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania Aerotecnicas Fotograficas", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4854, + "callsign": "BACHYT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATG", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotrans Airline", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4855, + "callsign": "AIR TRAVEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Travel", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4856, + "callsign": "GLOBESTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATH", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircraft Systems South Africa", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4857, + "callsign": "SNOOPY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATJ", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Traffic", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4858, + "callsign": "", + "codeHub": "BOG", + "codeIataAirline": "", + "codeIcaoAirline": "ATK", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaca Express", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4859, + "callsign": "AEROTACA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATK", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaca Colombia - Aerotaxi Casanare", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4860, + "callsign": "AIR BREMEN", + "codeHub": "BRE", + "codeIataAirline": "", + "codeIcaoAirline": "ATL", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlas Air Service", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4861, + "callsign": "CENTRALMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocentral", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4862, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Par Avion Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4863, + "callsign": "SCHOOL FLYING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATO", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airways Flygutbildning AB", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4864, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATO", + "codeIso2Country": "TO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Tonga", + "nameCountry": "Tonga", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4865, + "callsign": "ASTRAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATP", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ASTRAL Colombia - Aerotransportes Especiales", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4866, + "callsign": "ALTIPLANO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos del Altiplano", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4867, + "callsign": "COLIBRI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATQ", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CHC Helicopters Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4868, + "callsign": "MULTI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATQ", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Transport Schiphol", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4869, + "callsign": "ATLAS-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlas Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4870, + "callsign": "", + "codeHub": "KIH", + "codeIataAirline": "", + "codeIcaoAirline": "ATS", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlas Khomein Kish", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4871, + "callsign": "ATS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Touring Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4872, + "callsign": "AIR ATLAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATS", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlas Khomein Kish Air Taxi Service", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4873, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATS", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Transport Service", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4874, + "callsign": "", + "codeHub": "BEN", + "codeIataAirline": "", + "codeIcaoAirline": "ATT", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Attawasol Airlines", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4875, + "callsign": "", + "codeHub": "PPQ", + "codeIataAirline": "", + "codeIcaoAirline": "ATT", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air2There", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4876, + "callsign": "", + "codeHub": "BUD", + "codeIataAirline": "", + "codeIcaoAirline": "ATU", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlant-Hungary Airlines", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4877, + "callsign": "TOULON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATU", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Toulon", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4878, + "callsign": "ATLANT-HUNGARY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATU", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlant Aerobatics", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4879, + "callsign": "AVANTI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATV", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avanti Air", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4880, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATV", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avanti Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4881, + "callsign": "AIRTAX", + "codeHub": "BHX", + "codeIataAirline": "", + "codeIcaoAirline": "ATX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Options", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4882, + "callsign": "AIRTAX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Warwickshire Aerocentre", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4883, + "callsign": "AIRCARE", + "codeHub": "WIL", + "codeIataAirline": "", + "codeIcaoAirline": "ATY", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airtraffic", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4884, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATY", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Airports Authority Of India", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4885, + "callsign": "ASTEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATZ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "A.S.T. - Air Service Training", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4886, + "callsign": "ACE TAXI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ATZ", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ace Air", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4887, + "callsign": "AUGSBURG-AIR", + "codeHub": "MUC", + "codeIataAirline": "", + "codeIcaoAirline": "AUB", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Augsburg Airways", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4888, + "callsign": "AUCTIONS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AUC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "A.D.T.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4889, + "callsign": "AUDI AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AUD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Audi Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4890, + "callsign": "AIR UNIVERSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AUE", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Universal Aviation Academy", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4891, + "callsign": "AUGUSTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AUF", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Augusta Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4892, + "callsign": "AUGUSTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AUG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cesar Augusto de La Cruz Lepe", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4893, + "callsign": "", + "codeHub": "AUH", + "codeIataAirline": "", + "codeIcaoAirline": "AUH", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Presidential Flight Authority", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 4894, + "callsign": "AUSTROJET", + "codeHub": "SZG", + "codeIataAirline": "", + "codeIcaoAirline": "AUJ", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Austrojet", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4895, + "callsign": "AUSTROJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AUJ", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BFS Business Flight Salzburg Bedarfsflug GesmbH", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4896, + "callsign": "AEROCENTRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AUK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Birmingham Aerocentre", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4897, + "callsign": "ARCHANGELSK AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AUL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Archangelsk Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4898, + "callsign": "ATLAMUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AUM", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Atlantic Uruguay", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4899, + "callsign": "AVIONES UNIDOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AUN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviones Unidos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4900, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AUP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia Business Group", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4901, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AUS", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aus-Air", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4902, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AUS", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Australian International Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4903, + "callsign": "AURORA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AUU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aurora Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4904, + "callsign": "ATRUVERA", + "codeHub": "LED", + "codeIataAirline": "", + "codeIcaoAirline": "AUV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atruvera", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4905, + "callsign": "AUSTRIAN AMBULANCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AUV", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Redair Luftfahrt", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4906, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AUX", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Uganda International", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4907, + "callsign": "AUSA", + "codeHub": "MVD", + "codeIataAirline": "", + "codeIcaoAirline": "AUY", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Uruguayas", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4908, + "callsign": "BEAUPAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Beaufort", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4909, + "callsign": "AIRTEAM VARNA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVC", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviootriad Varna", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4910, + "callsign": "AEROVENCA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVC", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronautica Venezolana (Aerovenca)", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4911, + "callsign": "ALAMO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVD", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alamo Aviacion", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4912, + "callsign": "", + "codeHub": "JNB", + "codeIataAirline": "", + "codeIcaoAirline": "AVE", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avex Air Transport", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4913, + "callsign": "AVES FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVF", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aves Flight Share", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4914, + "callsign": "ALGARVE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVG", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avialgarve, Taxis Aereos Do Algarve", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4915, + "callsign": "DJIBOUTI FALCON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVG", + "codeIso2Country": "DJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Falcon", + "nameCountry": "Djibouti", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4916, + "callsign": "AVISER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVH", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviser", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4917, + "callsign": "AVIORRENTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviorrenta", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4918, + "callsign": "AEROVIAJES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVJ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroviajes Ejecutivos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4919, + "callsign": "AVIATE-COPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVK", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AV8 Helicopters", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4920, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviotex", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4921, + "callsign": "ALVIK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVK", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Alvik", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4922, + "callsign": "SKY VENTURES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Adventures", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4923, + "callsign": "AEROVIAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVL", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovial", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4924, + "callsign": "LAS AMERICAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVL", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovias Las Americas", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4925, + "callsign": "", + "codeHub": "TLC", + "codeIataAirline": "", + "codeIcaoAirline": "AVM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avemex - Aviacion Ejecutiva Mexicana", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 4926, + "callsign": "AVEMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviacion Ejecutiva Mexicana", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4927, + "callsign": "AVISO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVO", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviso Air Transport Division", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4928, + "callsign": "OAXAQUENAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovias Oaxaquenas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4929, + "callsign": "AIR AVISTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVO", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avisto", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4930, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVP", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Enterprises", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4931, + "callsign": "AVCORP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVP", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avcorp Registrations Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4932, + "callsign": "AQUILINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVQ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4933, + "callsign": "AVIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVQ", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AVIC - International Flight Training Academy (AIFA)", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4934, + "callsign": "AIR VISTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVR", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Vista", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4935, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Active Aero Charter Inc", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4936, + "callsign": "ACTIVE AERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Active Aero Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4937, + "callsign": "ARTAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVS", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Artac", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4938, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVS", + "codeIso2Country": "SC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Seychelles", + "nameCountry": "Seychelles", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4939, + "callsign": "", + "codeHub": "MES", + "codeIataAirline": "", + "codeIcaoAirline": "AVT", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asia Avia Airlines", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4940, + "callsign": "ASIAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVT", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asia Avia Megatama", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4941, + "callsign": "ADVENT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ATS Aircharter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4942, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVU", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia Sud", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4943, + "callsign": "AVIASUD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVU", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia Sud A�rotaxi", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4944, + "callsign": "AVIATOR", + "codeHub": "ATH", + "codeIataAirline": "", + "codeIcaoAirline": "AVW", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviator Airways", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,private" + }, + { + "ageFleet": 0.0, + "airlineId": 4945, + "callsign": "AV WEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVW", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation West", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4946, + "callsign": "PASLAUGA", + "codeHub": "KUN", + "codeIataAirline": "", + "codeIcaoAirline": "AVX", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviapaslauga", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4947, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVX", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroclub de Vitoria", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4948, + "callsign": "AEROVARADERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVY", + "codeIso2Country": "CU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovaradero", + "nameCountry": "Cuba", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4949, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "AVZ", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservice Kazakhstan", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4950, + "callsign": "SABIT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVZ", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservice", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4951, + "callsign": "AIR VALENCIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVZ", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Valencia", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4952, + "callsign": "AVONAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AVZ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avon Air Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4953, + "callsign": "GAMBIA ATLANTIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWA", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "The Atlantic Airline", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4954, + "callsign": "AIRNAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airways International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4955, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWD", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Providence Aviation Services", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4956, + "callsign": "SINBAD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWF", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arab Air Cargo", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4957, + "callsign": "", + "codeHub": "TBS", + "codeIataAirline": "", + "codeIcaoAirline": "AWG", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air West", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 4958, + "callsign": "BLUE WINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWG", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airtaxi Wings", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4959, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWG", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air West (Georgia)", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4960, + "callsign": "AIR-WING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Astro-Wing Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4961, + "callsign": "SKYRIBBEAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWG", + "codeIso2Country": "AG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerowings", + "nameCountry": "Antigua and Barbuda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4962, + "callsign": "INTER NIGER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWH", + "codeIso2Country": "NE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Inter Niger", + "nameCountry": "Niger", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4963, + "callsign": "SAHEL AIRLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWJ", + "codeIso2Country": "NE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sahel Airlines", + "nameCountry": "Niger", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4964, + "callsign": "AIRWORK", + "codeHub": "AKL", + "codeIataAirline": "", + "codeIcaoAirline": "AWK", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airwork New Zealand", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4965, + "callsign": "AIRWORK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airwork Services Training", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4966, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWK", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airwork (NZ)", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4967, + "callsign": "AUSSIEWORLD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWL", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Australian Wetleasing Operations", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4968, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWL", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Walser", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4969, + "callsign": "AIR CONTACT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWM", + "codeIso2Country": "NE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Contact, Compagnie Nigerienne Des Transports Aerien", + "nameCountry": "Niger", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4970, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Niamey", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4971, + "callsign": "AWOOD AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWO", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Awood Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4972, + "callsign": "NIGER INTERNATIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWP", + "codeIso2Country": "NE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Niger International", + "nameCountry": "Niger", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4973, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWP", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroworld Pakistan", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4974, + "callsign": "AWAN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWR", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Awan Airlines", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4975, + "callsign": "ARCTIC WINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arctic Wings And Rotors", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4976, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arab Wings", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4977, + "callsign": "ALBAWINGS", + "codeHub": "TIA", + "codeIataAirline": "", + "codeIcaoAirline": "AWT", + "codeIso2Country": "AL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Albawings", + "nameCountry": "Albania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4978, + "callsign": "AIR WEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air West", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4979, + "callsign": "AIRWAVE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWV", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airwave Transport", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4980, + "callsign": "ALLWEATHER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CAA Directorate of Airspace Policy (IFP)", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4981, + "callsign": "ALLWEATHER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerodrome Standards 2", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4982, + "callsign": "AEROWEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWY", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroway", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4983, + "callsign": "", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "AWZ", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air West (Sudan)", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4984, + "callsign": "", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "AWZ", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4985, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AWZ", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AirWest", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4986, + "callsign": "AAR AIRLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AXA", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kiev Aar Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4987, + "callsign": "AIR EXCLUSIVE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AXC", + "codeIso2Country": "HR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Exclusive", + "nameCountry": "Croatia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4988, + "callsign": "AIR SUDEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AXD", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Express", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4989, + "callsign": "AVIREX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AXG", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avirex Guinee Equatoriale", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4990, + "callsign": "AEROMEXHAGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AXH", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromexhaga", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4991, + "callsign": "AIR FREIGHTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AXI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Express International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4992, + "callsign": "AIR FREIGHTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AXI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeron International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4993, + "callsign": "AJAX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AXJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aspen Executive Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4994, + "callsign": "", + "codeHub": "AXA", + "codeIataAirline": "", + "codeIcaoAirline": "AXL", + "codeIso2Country": "AI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Anguilla Air Services", + "nameCountry": "Anguilla", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 4995, + "callsign": "", + "codeHub": "ATH", + "codeIataAirline": "", + "codeIcaoAirline": "AXN", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alexandair", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4996, + "callsign": "ATLAS EXPRESS", + "codeHub": "CMN", + "codeIataAirline": "", + "codeIcaoAirline": "AXP", + "codeIso2Country": "MA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Atlas Express", + "nameCountry": "Morocco", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 4997, + "callsign": "SCANVIP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AXP", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Express", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4998, + "callsign": "ACTION AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AXQ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Action Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 4999, + "callsign": "RENTAXEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AXR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Axel Rent", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5000, + "callsign": "ALTUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AXS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Altus Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5001, + "callsign": "AEROAXA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AXT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis Axa", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5002, + "callsign": "AXTRANSPORTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AXT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AX Transporter", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5003, + "callsign": "", + "codeHub": "AUH", + "codeIataAirline": "", + "codeIcaoAirline": "AXU", + "codeIso2Country": "AE", + "founding": 1975, + "iataPrefixAccounting": "", + "nameAirline": "Abu Dhabi Aviation", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5004, + "callsign": "AXAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AXV", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviaxess", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5005, + "callsign": "SKY SHUTTLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AXX", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Advance Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5006, + "callsign": "ACADEMY AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AYA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Federal Aviation Administration", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5007, + "callsign": "BELGIAN ARMY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AYB", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Force Terrestre Belge", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5008, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AYC", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aya Aviation", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5009, + "callsign": "", + "codeHub": "EVN", + "codeIataAirline": "", + "codeIcaoAirline": "AYK", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ayk Avia", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5010, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AYK", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aykavia", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5011, + "callsign": "ALPINE NEPAL", + "codeHub": "KTM", + "codeIataAirline": "", + "codeIcaoAirline": "AYL", + "codeIso2Country": "NP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alpine Air", + "nameCountry": "Nepal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5012, + "callsign": "AIRMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AYM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airman", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5013, + "callsign": "", + "codeHub": "MGA", + "codeIataAirline": "", + "codeIcaoAirline": "AYN", + "codeIso2Country": "NI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Airlines (Nicaragua)", + "nameCountry": "Nicaragua", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5014, + "callsign": "ATLANTIC NICARAGUA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AYN", + "codeIso2Country": "NI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Airlines", + "nameCountry": "Nicaragua", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5015, + "callsign": "AUSTRIA LLOYD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AYP", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Lloyd Austria", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5016, + "callsign": "CYGNET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AYR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Aerospace Flying College", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5017, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AYS", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Awsaj Aviation Services", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5018, + "callsign": "AYIT", + "codeHub": "BEV", + "codeIataAirline": "", + "codeIcaoAirline": "AYT", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ayit Aviation & Tourism", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5019, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AYU", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yuhi Air Lines", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5020, + "callsign": "VARGWAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AYV", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airways Services & Support", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5021, + "callsign": "LUPUS", + "codeHub": "SGE", + "codeIataAirline": "", + "codeIcaoAirline": "AYY", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Alliance", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5022, + "callsign": "TUMARA", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "AZB", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Azamat", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5023, + "callsign": "", + "codeHub": "DAR", + "codeIataAirline": "", + "codeIcaoAirline": "AZD", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Zara International", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5024, + "callsign": "ARAL AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AZD", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aral", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5025, + "callsign": "ARCUS AIR", + "codeHub": "MHG", + "codeIataAirline": "", + "codeIcaoAirline": "AZE", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arcus Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5026, + "callsign": "AIR ZERMATT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AZF", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Zermatt", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5027, + "callsign": "SKY WIND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AZH", + "codeIso2Country": "AZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Wind", + "nameCountry": "Azerbaijan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5028, + "callsign": "HELIAZE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AZH", + "codeIso2Country": "AZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SW Helicopter Services", + "nameCountry": "Azerbaijan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5029, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AZJ", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zas Air", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5030, + "callsign": "AZALHELIKOPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AZK", + "codeIso2Country": "AZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Azalhelikopter", + "nameCountry": "Azerbaijan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5031, + "callsign": "ZANZIBAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AZL", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Zanzibar", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5032, + "callsign": "SKY AFRICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AZL", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Africa One", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5033, + "callsign": "AERO AMAZONICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AZN", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Amazonicos", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5034, + "callsign": "ARIZONA PACIFIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AZP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arizona Pacific Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5035, + "callsign": "SILK LINE", + "codeHub": "GYD", + "codeIataAirline": "", + "codeIcaoAirline": "AZQ", + "codeIso2Country": "AZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silk Way Airlines", + "nameCountry": "Azerbaijan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5036, + "callsign": "ZENAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AZR", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zenith Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5037, + "callsign": "AZIMUT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AZT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Azimut", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5038, + "callsign": "AIR ZASTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AZU", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Star Zanzibar", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5039, + "callsign": "AVIAZENTRUM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AZU", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avionik Zentrum", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5040, + "callsign": "", + "codeHub": "UKDM", + "codeIataAirline": "", + "codeIcaoAirline": "AZV", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Azov-Avia", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5041, + "callsign": "AZOV AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AZV", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asov.Avia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5042, + "callsign": "", + "codeHub": "CTS", + "codeIataAirline": "", + "codeIcaoAirline": "AZX", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airtransse", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5043, + "callsign": "", + "codeHub": "LBV", + "codeIataAirline": "", + "codeIcaoAirline": "AZX", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Max Africa", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5044, + "callsign": "ARIZAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AZY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arizona Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5045, + "callsign": "AZZA TRANSPORT", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "AZZ", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Azza Transport", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5046, + "callsign": "", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "AZZ", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5047, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "AZZ", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Azza Transport Company", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5048, + "callsign": "BOWMAN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bo-S-Aire Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5049, + "callsign": "BALKAN AGRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAA", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Balkan Agro Aviation", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5050, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BAC Leasing", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5051, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAC", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East Aero Service", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5052, + "callsign": "BUFFALO AERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Buffalo Aeronautical Corp.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5053, + "callsign": "BADLANDS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Development", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5054, + "callsign": "", + "codeHub": "EGNO", + "codeIataAirline": "", + "codeIcaoAirline": "BAE", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BAe Systems", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "manufacturer" + }, + { + "ageFleet": 0.0, + "airlineId": 5055, + "callsign": "", + "codeHub": "BRU", + "codeIataAirline": "", + "codeIcaoAirline": "BAF", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Belgian Air Component", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5056, + "callsign": "BELGIAN AIRFORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAF", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Belgian Air Force", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5057, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAF", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Belgian Air Force", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5058, + "callsign": "", + "codeHub": "BAH", + "codeIataAirline": "", + "codeIcaoAirline": "BAH", + "codeIso2Country": "BH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bahrain Royal Flight", + "nameCountry": "Bahrain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5059, + "callsign": "BAHRAIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAH", + "codeIso2Country": "BH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "The Amiri Flight - Bahrain", + "nameCountry": "Bahrain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5060, + "callsign": "BARAI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAI", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Barair", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5061, + "callsign": "BONITO AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pueblo Bonito Air", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5062, + "callsign": "BAKER AVIATION", + "codeHub": "OTZ", + "codeIataAirline": "", + "codeIcaoAirline": "BAJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baker Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5063, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAL", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Barnax Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5064, + "callsign": "MANAS AIRWAYS", + "codeHub": "FRU", + "codeIataAirline": "", + "codeIcaoAirline": "BAM", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Manas Airways", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5065, + "callsign": "BUSINESS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAM", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Air Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5066, + "callsign": "PENGUIN", + "codeHub": "AAXX", + "codeIataAirline": "", + "codeIcaoAirline": "BAN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Antarctic Survey", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5067, + "callsign": "LAUDER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Banyon Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5068, + "callsign": "AIR BAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAN", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Ban", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5069, + "callsign": "BAY CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAO", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bay Air Cargo", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5070, + "callsign": "BIG APPLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans International Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5071, + "callsign": "BRADLEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bradley Air Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5072, + "callsign": "AEROSERV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAS", + "codeIso2Country": "BB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Services", + "nameCountry": "Barbados", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5073, + "callsign": "BIZTRAVEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business air Travel", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5074, + "callsign": "BAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAT", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swissjet", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5075, + "callsign": "BALLISTIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAT", + "codeIso2Country": "LU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Premiair", + "nameCountry": "Luxembourg", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5076, + "callsign": "GHERKIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Airways (BA)", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5077, + "callsign": "BAY AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAV", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bay Aviation", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5078, + "callsign": "VARNA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAV", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Varna", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5079, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAX", + "codeIso2Country": "AZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baku Express", + "nameCountry": "Azerbaijan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5080, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAX", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Best Aero Handling", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5081, + "callsign": "", + "codeHub": "KBP", + "codeIataAirline": "", + "codeIcaoAirline": "BAY", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bravo Airways (Ukraine)", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5082, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAY", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bravo Airways", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5083, + "callsign": "BAYON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAY", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bayon Airlines", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5084, + "callsign": "BARGOUZIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BAZ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bargouzin Airline", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5085, + "callsign": "BOMBARDIER", + "codeHub": "YUL", + "codeIataAirline": "", + "codeIcaoAirline": "BBA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bombardier", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "manufacturer" + }, + { + "ageFleet": 0.0, + "airlineId": 5086, + "callsign": "BANAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BBA", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bannert Air", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5087, + "callsign": "BABEL AIR", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "BBE", + "codeIso2Country": "SD", + "founding": 2004, + "iataPrefixAccounting": "", + "nameAirline": "Ababeel Aviation", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5088, + "callsign": "SPEEDCHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BBF", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "B-Air Charter", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5089, + "callsign": "CADIA BIRD", + "codeHub": "HER", + "codeIataAirline": "", + "codeIcaoAirline": "BBG", + "codeIso2Country": "GR", + "founding": 2008, + "iataPrefixAccounting": "", + "nameAirline": "Blue Bird Airways", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5090, + "callsign": "BLUE KOREA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BBJ", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Air Lines", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5091, + "callsign": "BLUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BBL", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IBM", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5092, + "callsign": "BLACKBURN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BBN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Scampton BAe", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5093, + "callsign": "BRABAZON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BBN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CAA Airworthiness Division", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5094, + "callsign": "BEIBARS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BBS", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Beibars", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5095, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BBS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Beibars", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5096, + "callsign": "BLUEBEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BBX", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bel Air Aviation", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5097, + "callsign": "", + "codeHub": "SAH", + "codeIataAirline": "", + "codeIcaoAirline": "BBY", + "codeIso2Country": "YE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Bird Aviation (Yemen)", + "nameCountry": "Yemen", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5098, + "callsign": "YEMEN BLUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BBY", + "codeIso2Country": "YE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Bird Aviation", + "nameCountry": "Yemen", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5099, + "callsign": "COBRA", + "codeHub": "WIL", + "codeIataAirline": "", + "codeIcaoAirline": "BBZ", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Bird Aviation", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5100, + "callsign": "BRASMEX", + "codeHub": "CNF", + "codeIataAirline": "", + "codeIcaoAirline": "BCA", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brasmex", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5101, + "callsign": "BUL AIR CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BCA", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bulgarian Air Cargo", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5102, + "callsign": "WAVEBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BCB", + "codeIso2Country": "BB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caribexpress", + "nameCountry": "Barbados", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5103, + "callsign": "THAI BIZ", + "codeHub": "BKK", + "codeIataAirline": "", + "codeIcaoAirline": "BCC", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Air", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5104, + "callsign": "BACH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BCF", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "B.A.C.H.", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5105, + "callsign": "BRITISH COLUMBIA GOVERNME", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BCG", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Columbia Government", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5106, + "callsign": "BELGIAN COASTGUARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BCG", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Management Unit of North Sea Mathematical Models", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5107, + "callsign": "HYDRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BCH", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Columbia Power And Hydro Authority", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5108, + "callsign": "BLUE BOY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BCJ", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Jet Charters", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5109, + "callsign": "BANKCHECK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BCK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Priority Aviation Company.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5110, + "callsign": "BLUE OCEAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BCN", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ocean Air", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5111, + "callsign": "BACKER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BCR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5112, + "callsign": "BOBCAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BCT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BCT Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5113, + "callsign": "TELCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BCT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Columbia Telephone", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5114, + "callsign": "BUSINESS AVIATION", + "codeHub": "KBP", + "codeIataAirline": "", + "codeIcaoAirline": "BCV", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Aviation Center", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5115, + "callsign": "", + "codeHub": "KBP", + "codeIataAirline": "", + "codeIcaoAirline": "BCV", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5116, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BDA", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Border Airways", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5117, + "callsign": "BORDER POLICE", + "codeHub": "ADL", + "codeIataAirline": "", + "codeIcaoAirline": "BDF", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Surveillance Australia", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5118, + "callsign": "BISSAU DISCOVERY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BDF", + "codeIso2Country": "GW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bissau Discovery Flying Club", + "nameCountry": "Guinea-Bissau", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5119, + "callsign": "BULLDOG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BDG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mississippi State University", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5120, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BDH", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bird Dog Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5121, + "callsign": "", + "codeHub": "STA", + "codeIataAirline": "", + "codeIcaoAirline": "BDI", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Benair", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5122, + "callsign": "", + "codeHub": "TED", + "codeIataAirline": "", + "codeIcaoAirline": "BDI", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flyvsmart", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5123, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BDI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BenAir", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5124, + "callsign": "BIRDIE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BDI", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air & Training Center-West", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5125, + "callsign": "CROWN JET", + "codeHub": "PEK", + "codeIataAirline": "", + "codeIcaoAirline": "BDJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Deer Jet (Beijing)", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5126, + "callsign": "BANDAMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BDM", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bandama", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5127, + "callsign": "", + "codeHub": "EGDM", + "codeIataAirline": "", + "codeIcaoAirline": "BDN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "QinetiQ", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5128, + "callsign": "GAUNTLET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BDN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Boscombe Down MOD/PE", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5129, + "callsign": "GAUNTLET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BDN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Boscombe Down DERA", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5130, + "callsign": "ABERDAV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BDV", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aberdair Aviation", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5131, + "callsign": "", + "codeHub": "GVA", + "codeIataAirline": "", + "codeIcaoAirline": "BEA", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BenAvia", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5132, + "callsign": "BENAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEA", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Benaviation", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5133, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "BEC", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Berkut Air Services", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5134, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "BEC", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Berkut", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5135, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEC", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Berkut Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5136, + "callsign": "BEECH TEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Beech Aircraft Corp.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5137, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEC", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "State Air Company Berkut", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5138, + "callsign": "", + "codeHub": "EGO", + "codeIataAirline": "", + "codeIcaoAirline": "BED", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Belgorod Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5139, + "callsign": "BELOGORYE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BED", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Belgorod State Aviation Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5140, + "callsign": "BELOGORYE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BED", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Belgorod Aviation Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5141, + "callsign": "BALEAR EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Balear Express", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5142, + "callsign": "BLUE EAGLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEG", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bluebird Aviation", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5143, + "callsign": "BLUECOPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEH", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bel Air Helicopters ApS", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5144, + "callsign": "BENAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEI", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Benair", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5145, + "callsign": "BERKUT", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "BEK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Berkut Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5146, + "callsign": "AMAZONIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEL", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos Belem Amazonia", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5147, + "callsign": "BUSINESS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEM", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5148, + "callsign": "", + "codeHub": "KDDH", + "codeIataAirline": "", + "codeIcaoAirline": "BEN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airnow", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5149, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AirNow", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5150, + "callsign": "BENIN CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEN", + "codeIso2Country": "BJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Benin Air Cargo", + "nameCountry": "Benin", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5151, + "callsign": "SKY COURIER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bennington Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5152, + "callsign": "", + "codeHub": "GRU", + "codeIataAirline": "", + "codeIcaoAirline": "BET", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BETA - Brazilian Express Transportes Aereos", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5153, + "callsign": "BETA CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BET", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BETA Cargo", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5154, + "callsign": "BETA CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BET", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "376", + "nameAirline": "BETA - Brazilian Express", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5155, + "callsign": "BATELEUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEU", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bateleur Air Charter Services", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5156, + "callsign": "BELLAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEV", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bellavia", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5157, + "callsign": "BEXJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEX", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business-Express - Magna Air", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5158, + "callsign": "BENIN EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEX", + "codeIso2Country": "BJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Benin Air Express", + "nameCountry": "Benin", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5159, + "callsign": "BESTFLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEY", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bestfly", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5160, + "callsign": "", + "codeHub": "SJU", + "codeIataAirline": "", + "codeIcaoAirline": "BEZ", + "codeIso2Country": "PR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air St. Kitts & Nevis", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5161, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kingfisher Air Service", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5162, + "callsign": "SEA BREEZE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BEZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kingfisher Air Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5163, + "callsign": "GHOST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BFA", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blekinge Flyg", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5164, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BFA", + "codeIso2Country": "BF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Presidence du Faso", + "nameCountry": "Burkina Faso", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5165, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BFB", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bulgarian Flying Cargo", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5166, + "callsign": "", + "codeHub": "OSH", + "codeIataAirline": "", + "codeIcaoAirline": "BFC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Basler Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5167, + "callsign": "BASLER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BFC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Basler Flight Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5168, + "callsign": "MEDIA JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BFD", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bertelsmann AG", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5169, + "callsign": "AIR BAFFIN", + "codeHub": "YFB", + "codeIataAirline": "", + "codeIcaoAirline": "BFF", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Nunavut", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5170, + "callsign": "BEARFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BFG", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bear Flight", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5171, + "callsign": "BUFFALO", + "codeHub": "YZF", + "codeIataAirline": "", + "codeIcaoAirline": "BFL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Buffalo Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5172, + "callsign": "FAN MAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BFM", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Beijing Panam International Aviaition Academy", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5173, + "callsign": "", + "codeHub": "OUA", + "codeIataAirline": "", + "codeIcaoAirline": "BFN", + "codeIso2Country": "BF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Naganagani Compagnie Nationale", + "nameCountry": "Burkina Faso", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5174, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BFN", + "codeIso2Country": "BF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compagnie Nationale Naganagani", + "nameCountry": "Burkina Faso", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5175, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BFO", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bombardier", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5176, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BFS", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Benelux Falcon Service", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5177, + "callsign": "BUSINESS FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BFS", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Flight Sweden", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5178, + "callsign": "MOONRUN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BFS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BFS International", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5179, + "callsign": "BORDER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BFT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Border Air Training", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5180, + "callsign": "SUMMAN", + "codeHub": "BAH", + "codeIataAirline": "", + "codeIcaoAirline": "BFW", + "codeIso2Country": "BH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bahrain Defence Force", + "nameCountry": "Bahrain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5181, + "callsign": "BLUEFOX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BFX", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Alpha", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5182, + "callsign": "SUPER TRANSPORT", + "codeHub": "TLS", + "codeIataAirline": "", + "codeIcaoAirline": "BGA", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airbus Transport International", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5183, + "callsign": "AIR BULGARIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BGB", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bulgaria", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5184, + "callsign": "BRITISH GLOBAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BGB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Global Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5185, + "callsign": "YANDU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BGC", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Good Jet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5186, + "callsign": "BRIDGE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BGE", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bridge Airlines", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5187, + "callsign": "", + "codeHub": "SOF", + "codeIataAirline": "", + "codeIcaoAirline": "BGF", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviodetachment 28", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5188, + "callsign": "BULGARIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BGF", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Government of Bulgaria", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5189, + "callsign": "AERO BG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BGG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero BG", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5190, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BGI", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Gulf International Airlines", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5191, + "callsign": "BRITISH GULF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BGI", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brisith Gulf International", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5192, + "callsign": "", + "codeHub": "IST", + "codeIataAirline": "", + "codeIcaoAirline": "BGK", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baron Air Cargo", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5193, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "BGK", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Gulf International Airlines", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5194, + "callsign": "GULF INTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BGK", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Gulf International Airlines", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5195, + "callsign": "BUGAVIA", + "codeHub": "UUA", + "codeIataAirline": "", + "codeIcaoAirline": "BGM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bugulma Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5196, + "callsign": "SKYBUDDY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BGN", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Inter Transport", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5197, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BGN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Inter Transport", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5198, + "callsign": "BUDGET AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BGR", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Budget Air Bangladesh", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5199, + "callsign": "PIROL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BGS", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bundesgrenzschutz", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5200, + "callsign": "PIROL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BGS", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grenzschutz-Fliegertruppe", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5201, + "callsign": "BERGEN AIR", + "codeHub": "BGO", + "codeIataAirline": "", + "codeIcaoAirline": "BGT", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bergen Air Transport", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5202, + "callsign": "", + "codeHub": "MOL", + "codeIataAirline": "", + "codeIcaoAirline": "BGT", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Classic Norway Air", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 5203, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BGT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bergen Air Transport", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5204, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BGX", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bigas Grup", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5205, + "callsign": "BRENNAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BHA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brennan and Hargreaves", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5206, + "callsign": "BAHIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BHC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis de la Bahia", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5207, + "callsign": "BANGKOK DUSIT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BHD", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bangkok Helicopter Services Co", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5208, + "callsign": "BALTIC HELICOPTERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BHE", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baltic Helicopters", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5209, + "callsign": "BEELINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BHE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Biggen Hill Executive Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5210, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BHH", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BH Heli", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5211, + "callsign": "SHARIF", + "codeHub": "KBL", + "codeIataAirline": "", + "codeIcaoAirline": "BHI", + "codeIso2Country": "AF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Balkh Airlines", + "nameCountry": "Afghanistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5212, + "callsign": "BLUHALKIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BHK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blu Halkin", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5213, + "callsign": "BRISTOW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BHL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bristow Helicopters Group", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5214, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BHL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bristow Helicopters", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5215, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "BHN", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bristow Helicopters Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5216, + "callsign": "BRISTOW HELICOPTERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BHN", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bristow Helicopters", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5217, + "callsign": "BIGHORN", + "codeHub": "SHR", + "codeIataAirline": "", + "codeIcaoAirline": "BHR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bighorn Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5218, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BHR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bighorn Airways", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5219, + "callsign": "BRIGHTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BHT", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bright Air", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5220, + "callsign": "BUSINESS HUNGARY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BHU", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Air", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5221, + "callsign": "AVIASPEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BHV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Specavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5222, + "callsign": "BOSPHORUS", + "codeHub": "IST", + "codeIataAirline": "", + "codeIcaoAirline": "BHY", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bosphorus European Airways", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5223, + "callsign": "BALTIC INTERNATIONAL", + "codeHub": "RIX", + "codeIataAirline": "", + "codeIcaoAirline": "BIA", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baltic International Airlines", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5224, + "callsign": "BONAVENTURE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BIA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Bonaventure", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5225, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BIB", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Michelin Air Services", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5226, + "callsign": "BINAIR", + "codeHub": "MUC", + "codeIataAirline": "", + "codeIcaoAirline": "BID", + "codeIso2Country": "DE", + "founding": 1996, + "iataPrefixAccounting": "", + "nameAirline": "Bin Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5227, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BID", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BinAir", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5228, + "callsign": "BIG ISLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BIG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Big Island Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5229, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BIG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Big Island Air", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5230, + "callsign": "BRINTEL", + "codeHub": "CWL", + "codeIataAirline": "", + "codeIcaoAirline": "BIH", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British International", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5231, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BIK", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bikkair", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5232, + "callsign": "BILAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BIL", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Billund Air Center", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5233, + "callsign": "BISON-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BIN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Boise Interagency Fire Center", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5234, + "callsign": "BIO-AIR", + "codeHub": "SJJ", + "codeIataAirline": "", + "codeIcaoAirline": "BIO", + "codeIso2Country": "BA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bio", + "nameCountry": "Bosnia and Herzegovina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5235, + "callsign": "BIOFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BIO", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bioflight", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5236, + "callsign": "BIRD AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BIR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bird Leasing", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5237, + "callsign": "JUMA AIR", + "codeHub": "FRU", + "codeIataAirline": "", + "codeIcaoAirline": "BIS", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Bishkek", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5238, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "BIS", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Irbis", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5239, + "callsign": "IRBIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BIS", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Irbis", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5240, + "callsign": "RUN BITTY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BIT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northeast Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5241, + "callsign": "AVIASERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BIV", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviaservice", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5242, + "callsign": "BIZMEX", + "codeHub": "TLC", + "codeIataAirline": "", + "codeIcaoAirline": "BIZ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bizjet de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5243, + "callsign": "BIZZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BIZ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bizjet", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5244, + "callsign": "BAJA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BJA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baja Air", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5245, + "callsign": "", + "codeHub": "LGW", + "codeIataAirline": "", + "codeIcaoAirline": "BJC", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BritishJet", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 5246, + "callsign": "BALTIC JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BJC", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baltic Jet Aircompany", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5247, + "callsign": "BAXA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BJF", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baja Fly", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5248, + "callsign": "BLACKJACK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BJK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5249, + "callsign": "AIR JINGHUA", + "codeHub": "PEK", + "codeIataAirline": "", + "codeIcaoAirline": "BJN", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Beijing Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5250, + "callsign": "SOLUTION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BJS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Jet Solutions", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5251, + "callsign": "BAY JET", + "codeHub": "SJC", + "codeIataAirline": "", + "codeIcaoAirline": "BJT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ACM Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5252, + "callsign": "", + "codeHub": "ODS", + "codeIataAirline": "", + "codeIcaoAirline": "BJU", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AeroJet (Ukraine)", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5253, + "callsign": "JET EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BJU", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerojet Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5254, + "callsign": "BEIJING VISTAJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BJV", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Beijing VistaJet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5255, + "callsign": "BANKAIR", + "codeHub": "CAE", + "codeIataAirline": "", + "codeIcaoAirline": "BKA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bankair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5256, + "callsign": "BLACK BEAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BKB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "State of West Virginia, Aviation Division", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5257, + "callsign": "BAKERFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BKF", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BF-Lento", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5258, + "callsign": "BIRKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BKF", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Birkaflyg", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5259, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BKG", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baron Air Cargo", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5260, + "callsign": "BARKSTON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BKH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Barkston Heath FTU", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5261, + "callsign": "", + "codeHub": "DAL", + "codeIataAirline": "", + "codeIcaoAirline": "BKJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lynx Jet International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5262, + "callsign": "BARKEN JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BKJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Barken International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5263, + "callsign": "BLINKAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BKK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blink", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5264, + "callsign": "BARCOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BKL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircompany Barcol", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5265, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BKL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Barkol Aviakompania", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5266, + "callsign": "CARDINAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BKM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Advisors Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5267, + "callsign": "", + "codeHub": "ABA", + "codeIataAirline": "", + "codeIcaoAirline": "BKN", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Khakasia Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5268, + "callsign": "BILLIKEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BKN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Parks College of Engineering, Aviation and Technology", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5269, + "callsign": "AIR ABAKAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BKN", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Khakasia Airline", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5270, + "callsign": "BRIKO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BKO", + "codeIso2Country": "TT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Briko Air Service", + "nameCountry": "Trinidad and Tobago", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5271, + "callsign": "BOX KAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BKR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Civil Air Patrol, South Carolina Wing", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5272, + "callsign": "AVIACRUISE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BKS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviaexpress Cruise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5273, + "callsign": "", + "codeHub": "SOU", + "codeIataAirline": "", + "codeIcaoAirline": "BKT", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Club 328", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5274, + "callsign": "BLACKTAIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BKT", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAB Charters", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5275, + "callsign": "BYKOVO AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BKU", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bykovo-Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5276, + "callsign": "ALL CHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "All Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5277, + "callsign": "AIR BVI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5278, + "callsign": "BLUEBIRD SUDAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLB", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Bird Aviation", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5279, + "callsign": "BELLESAVIA", + "codeHub": "VTB", + "codeIataAirline": "", + "codeIcaoAirline": "BLC", + "codeIso2Country": "BY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bellesavia", + "nameCountry": "Belarus", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5280, + "callsign": "BLACKADDER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bournemouth Commercial Flight Training Centre", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5281, + "callsign": "BLUEBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLE", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Collingwood Air Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5282, + "callsign": "BLUEWATER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Air Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5283, + "callsign": "LUCKY AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLF", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bulgarian Lucky Flight", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5284, + "callsign": "BEEFLEET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bee Line Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5285, + "callsign": "AVIAPARTNER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLG", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviapartner", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5286, + "callsign": "BELGAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLG", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Belgavia", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5287, + "callsign": "BLUE HORIZON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Horizon Travel Club", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5288, + "callsign": "BLUELINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLI", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thyssen Krupp", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5289, + "callsign": "SLOVBEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLJ", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bel-Air", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5290, + "callsign": "BLUEJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLJ", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bluelinks Jets", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5291, + "callsign": "BLUEWAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLJ", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Jet", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5292, + "callsign": "BLUEJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLJ", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Petter Solberg Aviation", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5293, + "callsign": "BLUE FLAME", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLK", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Westcoast Energy", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5294, + "callsign": "BALTIC AIRLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baltic Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5295, + "callsign": "", + "codeHub": "EVN", + "codeIataAirline": "", + "codeIcaoAirline": "BLM", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Airways", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5296, + "callsign": "BLACK MAGIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "The Black Magic Project", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5297, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5298, + "callsign": "HELI PER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLM", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopteros Personales", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5299, + "callsign": "", + "codeHub": "CGK", + "codeIataAirline": "", + "codeIcaoAirline": "BLN", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bali Air", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5300, + "callsign": "BIAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLN", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bali International Air Service", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5301, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Belogorie", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5302, + "callsign": "BARLOVENTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotransportes Barlovento", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5303, + "callsign": "BELOGORIE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VC Belogorie", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5304, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLP", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blimp", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5305, + "callsign": "BLUE SQAURE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLQ", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Flight Services", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5306, + "callsign": "BLUERIDGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Metropolitan Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5307, + "callsign": "BLUEAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLR", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Burmeister Anb Wain AS, Flgveafdeling", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5308, + "callsign": "BALTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baltic Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5309, + "callsign": "BLUE TIE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air et Compagnie", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5310, + "callsign": "BLUEGRASS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Solutions Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5311, + "callsign": "BLUENOSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLU", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "I M P Aviation Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5312, + "callsign": "BLUESTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLW", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wermlandsflyg", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5313, + "callsign": "BLARNEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLY", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Starair", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5314, + "callsign": "AEROLOZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BLZ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Barloz", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5315, + "callsign": "BRITISH MEDICAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BMD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Medical Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5316, + "callsign": "BRIGGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BME", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Briggs Marine Environmental Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5317, + "callsign": "BALTIC MERIDIANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BMF", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baltijas Meridians", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5318, + "callsign": "BOOMERANG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BMG", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Image Air Charter", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5319, + "callsign": "MASAYU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BMH", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bristow Masayu Helicopters", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5320, + "callsign": "BEMO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BMI", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bemoair", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5321, + "callsign": "MURAT", + "codeHub": "DMB", + "codeIataAirline": "", + "codeIcaoAirline": "BMK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GST Aero, Aircompnay", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5322, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BMK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GST Aero Aircompany", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5323, + "callsign": "BISMILLAH", + "codeHub": "DAC", + "codeIataAirline": "", + "codeIcaoAirline": "BML", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bismillah Airlines", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5324, + "callsign": "BURMAN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BMM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Burman Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5325, + "callsign": "BOWMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BMN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bowman Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5326, + "callsign": "AIR BAMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BMP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bundled Aerial Mapping Assets", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5327, + "callsign": "ISHIM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BMS", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Akmola Bim", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5328, + "callsign": "SYMONETTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BMT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bahamas Habitat", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5329, + "callsign": "OLIGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BMV", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alatau Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5330, + "callsign": "BMW-FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BMW", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BMW", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5331, + "callsign": "BANXICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BMX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Banco de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5332, + "callsign": "BIMINI", + "codeHub": "FXE", + "codeIataAirline": "", + "codeIcaoAirline": "BMY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bimini Island Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5333, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BMY", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bimini Island Air", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5334, + "callsign": "BARONAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNA", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baronair", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5335, + "callsign": "BUN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bun Air Corporation Ltd.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5336, + "callsign": "DAZZLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNB", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Beyond General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5337, + "callsign": "AEROBANOBRAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNB", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Banobras", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5338, + "callsign": "BARNACLE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sundance Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5339, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sundance Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5340, + "callsign": "BOND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BND", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bond Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5341, + "callsign": "BENINA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNE", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Benina Air", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5342, + "callsign": "BRUNEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bristol Flight Training Centre", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5343, + "callsign": "VECTIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BN Group", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5344, + "callsign": "ALBERNI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNI", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alberni Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5345, + "callsign": "", + "codeHub": "LGG", + "codeIataAirline": "", + "codeIcaoAirline": "BNJ", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ASL airtaxi", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5346, + "callsign": "NILE TRADING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNL", + "codeIso2Country": "ET", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Nile Ethiopia Trading", + "nameCountry": "Ethiopia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5347, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alberni Airways", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5348, + "callsign": "BENIN ROYAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNR", + "codeIso2Country": "BJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Air", + "nameCountry": "Benin", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5349, + "callsign": "BONAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bonair Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5350, + "callsign": "BARONS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Barons (U.K.) Ltd", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5351, + "callsign": "BANCSTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bancstar", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5352, + "callsign": "BENTIU AIR", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "BNT", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bentiu Air Transport", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5353, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNT", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ben Air", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5354, + "callsign": "BENANE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNV", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Benane Aviation", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5355, + "callsign": "BRITISH NORTH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNW", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British NorthWest Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5356, + "callsign": "AERO BONANZA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BNZ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Bonanza", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5357, + "callsign": "KUMANOVO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BOA", + "codeIso2Country": "MK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Boniair", + "nameCountry": "Macedonia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5358, + "callsign": "BACKBONE", + "codeHub": "EBJ", + "codeIataAirline": "", + "codeIcaoAirline": "BOB", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Backbone Aviation", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5359, + "callsign": "", + "codeHub": "MUC", + "codeIataAirline": "", + "codeIcaoAirline": "BOB", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bonair", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5360, + "callsign": "BOB JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BOB", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Club", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5361, + "callsign": "BOBFLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BOB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MLP Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5362, + "callsign": "TWISTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BOB", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bonair Business Charter", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5363, + "callsign": "AEROBONA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BOC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerobona", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5364, + "callsign": "UGABOND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BOD", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bond Air Services", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5365, + "callsign": "BORNFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BOF", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bornfly", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5366, + "callsign": "BORDAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BOF", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bordaire", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5367, + "callsign": "BOHEMIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BOH", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bohemia", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5368, + "callsign": "BRISTOW HELI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BOH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bristow Offshore Helicopters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5369, + "callsign": "", + "codeHub": "MNL", + "codeIataAirline": "", + "codeIcaoAirline": "BOI", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aboitiz Air", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5370, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BOI", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aboitiz One Inc", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5371, + "callsign": "ABAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BOI", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aboitiz Air Transport", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5372, + "callsign": "", + "codeHub": "VVI", + "codeIataAirline": "", + "codeIcaoAirline": "BOL", + "codeIso2Country": "BO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aéreos Bolivianos", + "nameCountry": "Bolivia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5373, + "callsign": "BONAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BON", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bonanza Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5374, + "callsign": "BOOKAJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BOO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bookajet", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5375, + "callsign": "BORNEO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BOR", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Merpati Intan", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5376, + "callsign": "BOLIDORSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BOR", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bolidor", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5377, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BOR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Merpati Intan", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5378, + "callsign": "BOSAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BOS", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bosal International Management", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5379, + "callsign": "BONAVAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BOV", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bonavair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5380, + "callsign": "BOX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BOX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tiphook", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5381, + "callsign": "BLACK PHOENIX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BPH", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoenix Helicopter Academy", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5382, + "callsign": "", + "codeHub": "URA", + "codeIataAirline": "", + "codeIcaoAirline": "BPK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Berkut West", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5383, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BPK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Berkhut Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5384, + "callsign": "VENERA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BPK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Berkhut ZK", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5385, + "callsign": "PIROL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BPO", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bundepolizei-Fliegergruppe", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5386, + "callsign": "", + "codeHub": "BUD", + "codeIataAirline": "", + "codeIcaoAirline": "BPS", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BASe Airlines", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5387, + "callsign": "", + "codeHub": "BUD", + "codeIataAirline": "", + "codeIcaoAirline": "BPS", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Budapest Aircraft Service (BASe)", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5388, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BPS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Manx2", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5389, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BPS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Base Kft", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5390, + "callsign": "BONUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BPT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bonus Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5391, + "callsign": "", + "codeHub": "BOG", + "codeIataAirline": "", + "codeIcaoAirline": "BPX", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BPX - BP Exploration Company Colombia", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5392, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BPX", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Petroleum Exploration", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5393, + "callsign": "BRASAIR", + "codeHub": "GRU", + "codeIataAirline": "", + "codeIcaoAirline": "BRB", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BRA Transportes Aeroes", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5394, + "callsign": "BRAVI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRC", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Breeze Aviation", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5395, + "callsign": "BROCK AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRD", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brock Air Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5396, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brencham air Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5397, + "callsign": "AVIABREEZE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRE", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Breeze Ltd.", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5398, + "callsign": "AIR BRAVO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRF", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bravo", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5399, + "callsign": "", + "codeHub": "JNB", + "codeIataAirline": "", + "codeIcaoAirline": "BRH", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Air (South Africa)", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5400, + "callsign": "BRIGHTSTAR", + "codeHub": "JNB", + "codeIataAirline": "", + "codeIcaoAirline": "BRH", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Air Cargo", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5401, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRH", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5402, + "callsign": "AIR BOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRI", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bor", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5403, + "callsign": "BARRICK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRI", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Barrick", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5404, + "callsign": "", + "codeHub": "BZK", + "codeIataAirline": "", + "codeIcaoAirline": "BRK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bravia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5405, + "callsign": "BARTOK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRK", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heavy Airlift Wing", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5406, + "callsign": "BRIANSK-AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Briansk State Air", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5407, + "callsign": "BRASD'OR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Brasd'or", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5408, + "callsign": "BRASS LINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRL", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TopBrass Aviation", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5409, + "callsign": "BOOMERANG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRM", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air 500", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5410, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Top Helicopteros", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5411, + "callsign": "BRANSON", + "codeHub": "MCI", + "codeIataAirline": "", + "codeIcaoAirline": "BRN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Branson Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5412, + "callsign": "BRYANAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bryan Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5413, + "callsign": "", + "codeHub": "ORM", + "codeIataAirline": "", + "codeIcaoAirline": "BRO", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "2Excel Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5414, + "callsign": "BROADSWORD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "2 Excel Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5415, + "callsign": "BROW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brower Flight Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5416, + "callsign": "AEROBRA", + "codeHub": "BTK", + "codeIataAirline": "", + "codeIcaoAirline": "BRP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerobratsk", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5417, + "callsign": "AEROBRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airport Bratsk", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5418, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRP", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AeroBratsk", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5419, + "callsign": "MOUNTAIN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mountain Air Service.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5420, + "callsign": "FAB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRS", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brazilian Air Force", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5421, + "callsign": "BRITISH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BIH (Onshore)", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5422, + "callsign": "BOREAL AVIACION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRV", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Boreal Aviacon", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5423, + "callsign": "BRIGHT SERVICES", + "codeHub": "SOF", + "codeIataAirline": "", + "codeIcaoAirline": "BRW", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bright Aviation Services", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5424, + "callsign": "BROWNAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRW", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brown Air Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5425, + "callsign": "BUFF EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Buffalo Express Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5426, + "callsign": "BURAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRY", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Burundayavia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5427, + "callsign": "GREMAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BRZ", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bravo Air", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5428, + "callsign": "BISSAU INTERNATIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BSA", + "codeIso2Country": "GW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bissau International", + "nameCountry": "Guinea-Bissau", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5429, + "callsign": "CAS BELGIUM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BSA", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ecole D'aviation Civile", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5430, + "callsign": "ARBAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BSB", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Wings", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5431, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BSC", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerostan", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5432, + "callsign": "BLUE STEAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BSC", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Sky Carrier", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5433, + "callsign": "BIG SHOT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BSC", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bistar", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5434, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BSD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Star Airlines", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5435, + "callsign": "BUSINESS FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BSF", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Flight of Scandinavia A/S", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5436, + "callsign": "", + "codeHub": "MLA", + "codeIataAirline": "", + "codeIcaoAirline": "BSG", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Square Aviation Group Malta", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5437, + "callsign": "BOSS-GROUP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BSG", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Boss Air Group", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5438, + "callsign": "CAPITAL ROTOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BSH", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Beijing Capital Airlines Helicopter General Aviation Services", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5439, + "callsign": "BRASAIR", + "codeHub": "GRU", + "codeIataAirline": "", + "codeIcaoAirline": "BSI", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brasair Transportes Aereos", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5440, + "callsign": "BLUE SWAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BSJ", + "codeIso2Country": "BS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Swan Aviation", + "nameCountry": "Bahamas", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5441, + "callsign": "SKYBUS JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BSJ", + "codeIso2Country": "BS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skybus Jet", + "nameCountry": "Bahamas", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5442, + "callsign": "", + "codeHub": "GRU", + "codeIataAirline": "", + "codeIcaoAirline": "BSL", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Brasil Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5443, + "callsign": "", + "codeHub": "IEV", + "codeIataAirline": "", + "codeIcaoAirline": "BSL", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BSL Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5444, + "callsign": "BOS-AIR", + "codeHub": "OMO", + "codeIataAirline": "", + "codeIcaoAirline": "BSL", + "codeIso2Country": "BA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bosnia Airlines", + "nameCountry": "Bosnia and Herzegovina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5445, + "callsign": "AIRBRASIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BSL", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Brasil", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5446, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BSM", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Sky Aviation", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5447, + "callsign": "BASTION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BSN", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Connectair Charters", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5448, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BSO", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroclub Barcelona-Sabadell", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5449, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BSP", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Airways", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5450, + "callsign": "AERO NEGOCIOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BSS", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Business, S.L.", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5451, + "callsign": "BESTWAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BST", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Best Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5452, + "callsign": "BESIT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BST", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sicieta' Besit", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5453, + "callsign": "SKY BLUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BSW", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Sky Airways", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5454, + "callsign": "JET LINK", + "codeHub": "CLE", + "codeIataAirline": "", + "codeIcaoAirline": "BTA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Continental Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5455, + "callsign": "BRITT-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BTA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Britt Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5456, + "callsign": "158 FIGHTER WING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BTB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air National Guard", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5457, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BTC", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BFA Airlines", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5458, + "callsign": "BASHIRIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BTC", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "940", + "nameAirline": "Bashkir Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5459, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BTC", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baltic Flight Academy", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5460, + "callsign": "BALTIC EAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BTE", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Baltic Eastern", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5461, + "callsign": "BALTIJAS HELICOPTERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BTH", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baltijas Helicopters", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5462, + "callsign": "AIR BARTH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BTH", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Barth's Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5463, + "callsign": "", + "codeHub": "KWG", + "codeIataAirline": "", + "codeIcaoAirline": "BTK", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baltika", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5464, + "callsign": "BRATSK AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BTK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bratsk Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5465, + "callsign": "", + "codeHub": "BUS", + "codeIataAirline": "", + "codeIcaoAirline": "BTM", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Batumi", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5466, + "callsign": "BAHRIA TOWN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BTP", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kingcrete Associates", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5467, + "callsign": "NET RAIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BTP", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Veritair Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5468, + "callsign": "TECHSERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BTS", + "codeIso2Country": "BY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Techaviaservice", + "nameCountry": "Belarus", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5469, + "callsign": "AEROLINES ALBATROS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BTS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Nacionales Albatros", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5470, + "callsign": "", + "codeHub": "KBP", + "codeIataAirline": "", + "codeIcaoAirline": "BTT", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Jet Travel Airline", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5471, + "callsign": "BEETEE-SLAVUTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BTT", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BT-Slavuta", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5472, + "callsign": "ROLLS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BTU", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rolls Royce", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5473, + "callsign": "BUSYAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BUA", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Aviation", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5474, + "callsign": "BUDDY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BUD", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Budapest Club", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5475, + "callsign": "BUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BUE", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orebro Aviation", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5476, + "callsign": "BUCKLEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BUK", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Buckley Air", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5477, + "callsign": "", + "codeHub": "FIH", + "codeIataAirline": "", + "codeIcaoAirline": "BUL", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Airlines (Congo)", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5478, + "callsign": "BLUE AIRLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BUL", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Airlines", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5479, + "callsign": "", + "codeHub": "UUD", + "codeIataAirline": "", + "codeIcaoAirline": "BUN", + "codeIso2Country": "RU", + "founding": 1993, + "iataPrefixAccounting": "", + "nameAirline": "Bural", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5480, + "callsign": "BURAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BUN", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Buryat Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5481, + "callsign": "", + "codeHub": "AMM", + "codeIataAirline": "", + "codeIcaoAirline": "BUR", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bourtuqalieh Air", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5482, + "callsign": "", + "codeHub": "AMM", + "codeIataAirline": "", + "codeIcaoAirline": "BUR", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Barq Aviation", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5483, + "callsign": "AIR-BUSINESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BUR", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Air", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5484, + "callsign": "BURLINGTON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BUR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Burlington Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5485, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BUS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5486, + "callsign": "BUTLERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BUT", + "codeIso2Country": "BS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Butlers Aviation", + "nameCountry": "Bahamas", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5487, + "callsign": "BUZZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BUZ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Buzz Stansted Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5488, + "callsign": "BUFFALO AIR", + "codeHub": "ACT", + "codeIataAirline": "", + "codeIcaoAirline": "BVA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Buffalo Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5489, + "callsign": "BULGARIAN WINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BVC", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bulgarian Aeronautical Centre", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5490, + "callsign": "BEEVEEGEE VIAJES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BVG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BVG Viajes", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5491, + "callsign": "AIR B-V-I", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BVI", + "codeIso2Country": "VG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caribbean Wings - BVI Airlines", + "nameCountry": "British Virgin Islands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5492, + "callsign": "SHOW-ME", + "codeHub": "VIH", + "codeIataAirline": "", + "codeIcaoAirline": "BVN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baron Aviation Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5493, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BVN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baron Aviation Services", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5494, + "callsign": "BAVARIAN", + "codeHub": "FKB", + "codeIataAirline": "", + "codeIcaoAirline": "BVR", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ACM Air Charter", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5495, + "callsign": "SPARK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BVV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Spark+", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5496, + "callsign": "ABAZIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BVZ", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Abavia", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5497, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BWA", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Belgian World Airlines", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5498, + "callsign": "BROOKER-WHEATON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BWB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brooker-Wheaton Aviation,", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5499, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BWE", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CorpJet", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5500, + "callsign": "BEEWEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BWE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baltimore Air Transport.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5501, + "callsign": "BLUEWEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BWH", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BlueWest Helicopters", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5502, + "callsign": "BLUE TAIL", + "codeHub": "ORG", + "codeIataAirline": "", + "codeIcaoAirline": "BWI", + "codeIso2Country": "SR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Wing Airlines", + "nameCountry": "Suriname", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5503, + "callsign": "", + "codeHub": "ORG", + "codeIataAirline": "", + "codeIcaoAirline": "BWI", + "codeIso2Country": "SR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "Suriname", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5504, + "callsign": "BELLAWIWNG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BWJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "HK Bellawings Jet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5505, + "callsign": "ALTERAERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BWK", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alter Aeroservicios", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5506, + "callsign": "BRITWORLD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BWL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BWA", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5507, + "callsign": "BLUEHELI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BWN", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blueway Offshore Norge", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5508, + "callsign": "WAYNE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BWO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BW Air Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5509, + "callsign": "BASS EXEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BWS", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bass Airways", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5510, + "callsign": "BROADWAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BWY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fleet Requirements Air Direction Unit", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5511, + "callsign": "", + "codeHub": "BAH", + "codeIataAirline": "", + "codeIcaoAirline": "BXA", + "codeIso2Country": "BH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bexair", + "nameCountry": "Bahrain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5512, + "callsign": "BEXAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BXA", + "codeIso2Country": "BH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bahrain Executive / Bexair", + "nameCountry": "Bahrain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5513, + "callsign": "PALLISER", + "codeHub": "YXH", + "codeIataAirline": "", + "codeIcaoAirline": "BXH", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bar XH Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5514, + "callsign": "XENIA", + "codeHub": "CRL", + "codeIataAirline": "", + "codeIcaoAirline": "BXI", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brussels International Airways", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5515, + "callsign": "BRIXTEL JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BXJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brixtel Group", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5516, + "callsign": "BONEXEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BXL", + "codeIso2Country": "AN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dutch Eagle Express N.V. (Bonexel)", + "nameCountry": "Netherlands Antilles", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5517, + "callsign": "EXEL COMMUTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BXL", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Exel Belgique", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5518, + "callsign": "BOXER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BXR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Redding Aero Enterprises", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5519, + "callsign": "", + "codeHub": "HYI", + "codeIataAirline": "", + "codeIcaoAirline": "BYA", + "codeIso2Country": "UM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Berry Aviation", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5520, + "callsign": "BERRY", + "codeHub": "KHYI", + "codeIataAirline": "", + "codeIcaoAirline": "BYA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Berry Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5521, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BYA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Berry Aviation", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5522, + "callsign": "BAY FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BYF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "San Carlos Flight School", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5523, + "callsign": "BYGONE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BYG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bygone Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5524, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "BYK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skybus (Kazakhstan)", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5525, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BYK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skybus JSC (Kazakhstan)", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5526, + "callsign": "SUMKO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BYK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skybus", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5527, + "callsign": "BYLINA", + "codeHub": "VKO", + "codeIataAirline": "", + "codeIcaoAirline": "BYL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bylina", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5528, + "callsign": "", + "codeHub": "BEY", + "codeIataAirline": "", + "codeIcaoAirline": "BYR", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Berytos Airways", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5529, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BYR", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Berytos Airlines", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5530, + "callsign": "BYTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BYT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Patriot Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5531, + "callsign": "", + "codeHub": "CGK", + "codeIataAirline": "", + "codeIcaoAirline": "BYU", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bayu Indonesia Air", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5532, + "callsign": "BONAN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BZA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Bonanza", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5533, + "callsign": "BERLIN BEAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BZA", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bizair Fluggesellschaft", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5534, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5535, + "callsign": "BLIZZARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BZD", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canadian Global Air Ambulance", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5536, + "callsign": "ZENSTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BZE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zenith Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5537, + "callsign": "BIZFLEET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BZF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Aviation Business Jets", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5538, + "callsign": "STING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BZQ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Seneca College", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5539, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BZR", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airbiz Aviation Services Worldwide", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5540, + "callsign": "BINIZA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BZS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Biniza", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5541, + "callsign": "BUSINESS-SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BZT", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Aircraft Management", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5542, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BZX", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bravo Zulu", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5543, + "callsign": "BREEZY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BZY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fresh Air Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5544, + "callsign": "BUZZARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "BZZ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Butane Buzzard Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5545, + "callsign": "INSPECTOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAA", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Civil Aviation Authority of the Czech Republic", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5546, + "callsign": "CENAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central American Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5547, + "callsign": "CHESAPEAKE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chesapeake Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5548, + "callsign": "CONQUEST AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Conquest Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5549, + "callsign": "CALAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "California Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5550, + "callsign": "CHILLIWACKAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAD", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chilliwack Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5551, + "callsign": "HUMMINGBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAE", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Colibri Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5552, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAF", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5553, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAG", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Club Acrobatico Mediterraneo", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5554, + "callsign": "", + "codeHub": "BKK", + "codeIataAirline": "", + "codeIcaoAirline": "CAH", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chaba Airlines", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5555, + "callsign": "AIR CHABA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAH", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Siam Global Air", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5556, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAH", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Command Airways", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5557, + "callsign": "CORPOINTERNACIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporacion Aereo Internacional", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5558, + "callsign": "CATALINA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Catalina Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5559, + "callsign": "", + "codeHub": "ORY", + "codeIataAirline": "", + "codeIcaoAirline": "CAJ", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Caraibes Atlantique", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5560, + "callsign": "CAR LINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAJ", + "codeIso2Country": "GP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Caraibes Atlantique", + "nameCountry": "Guadeloupe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5561, + "callsign": "COUGAR AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAJ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cougar Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5562, + "callsign": "COUNTY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "County Air Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5563, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAK", + "codeIso2Country": "BS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Congo Air", + "nameCountry": "Bahamas", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5564, + "callsign": "CANADIAN MILITARY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAM", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ctz", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5565, + "callsign": "CREST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Crest Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5566, + "callsign": "GOBER AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAN", + "codeIso2Country": "NE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Contact Air", + "nameCountry": "Niger", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5567, + "callsign": "AIRCAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAN", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Canarias", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5568, + "callsign": "", + "codeHub": "PEK", + "codeIataAirline": "", + "codeIcaoAirline": "CAO", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air China Cargo", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5569, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air China Cargo", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5570, + "callsign": "ATLANTIC CAPE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAO", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5571, + "callsign": "CAP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "U.S. Air Force Auxiliary/Civil Air Patrol", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5572, + "callsign": "AIR CHESTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAQ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cityair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5573, + "callsign": "QUEBEC ROMEO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAR", + "codeIso2Country": "CF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter RCA", + "nameCountry": "Central African Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5574, + "callsign": "CHRISTMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Christman Air System", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5575, + "callsign": "AIRCAT", + "codeHub": "RKE", + "codeIataAirline": "", + "codeIcaoAirline": "CAT", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Copenhagen Airtaxi", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5576, + "callsign": "CANARIAS LINK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAU", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canarias Aeronautica", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5577, + "callsign": "AVIOTURISMO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAU", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cancun Avioturismo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5578, + "callsign": "CENTRAL EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAX", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Air Express", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5579, + "callsign": "CONSORCIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Consorcio Aereo de Xalapa", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5580, + "callsign": "CAPAX AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CAX", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Capax-Air C/O Unitreva", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5581, + "callsign": "EUROCAT", + "codeHub": "ZRH", + "codeIataAirline": "", + "codeIcaoAirline": "CAZ", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CAT Aviation", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5582, + "callsign": "CALIBRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBA", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Navigation Services of the Czech Republic", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5583, + "callsign": "COLORADO AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Crested Butte Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5584, + "callsign": "CALIBRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBA", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Civil Aviation Inspectorate of the Czech Republic", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5585, + "callsign": "CHEBAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBB", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cheboksary Airenterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5586, + "callsign": "CARIBAIR", + "codeHub": "MDHE", + "codeIataAirline": "", + "codeIcaoAirline": "CBC", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caribair", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5587, + "callsign": "", + "codeHub": "MRS", + "codeIataAirline": "", + "codeIcaoAirline": "CBD", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Continent Air Paris", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5588, + "callsign": "CATBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lockheed Martin Aeronautics", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5589, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBD", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Continent Air", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5590, + "callsign": "CEEBEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CB Executive Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5591, + "callsign": "CLUB HOUSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Eagle Management Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5592, + "callsign": "CABI", + "codeHub": "DOK", + "codeIataAirline": "", + "codeIcaoAirline": "CBI", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cabi", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5593, + "callsign": "", + "codeHub": "AMM", + "codeIataAirline": "", + "codeIcaoAirline": "CBJ", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CBJ Cargo", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5594, + "callsign": "RIGEL", + "codeHub": "ANU", + "codeIataAirline": "", + "codeIcaoAirline": "CBJ", + "codeIso2Country": "AG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caribjet", + "nameCountry": "Antigua and Barbuda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5595, + "callsign": "", + "codeHub": "CSY", + "codeIataAirline": "", + "codeIcaoAirline": "CBK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chuvashia Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5596, + "callsign": "AIR CHEBOKSARY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cheboksary Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5597, + "callsign": "STALBEK AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBK", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Asian Services", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5598, + "callsign": "", + "codeHub": "OUA", + "codeIataAirline": "", + "codeIcaoAirline": "CBL", + "codeIso2Country": "BF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Colombe Airlines", + "nameCountry": "Burkina Faso", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5599, + "callsign": "CUMBERLAND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cumberland Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5600, + "callsign": "CAMBRIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DragonFly Executive Air Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5601, + "callsign": "BLUE MAX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cherokee Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5602, + "callsign": "CARBONDALE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Illinois University d/b/a Aviation Flight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5603, + "callsign": "CALIBRATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBN", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swedish Civil Aviation Administration", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5604, + "callsign": "TAXI CABO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxi del Cabo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5605, + "callsign": "CABAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cabair Air Taxis", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5606, + "callsign": "CABAIR LONDON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cabair Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5607, + "callsign": "COLUMBUS AVIA", + "codeHub": "IEV", + "codeIataAirline": "", + "codeIcaoAirline": "CBS", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Columbus Avia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5608, + "callsign": "AIR COLUMBUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBS", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Columbus", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5609, + "callsign": "CATALINA AIR", + "codeHub": "LGB", + "codeIataAirline": "", + "codeIcaoAirline": "CBT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Catalina Flying Boats", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5610, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aereo Cabo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5611, + "callsign": "TYPHOON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coningsby FTU", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5612, + "callsign": "COOL BREEZE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CBZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Non Stop Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5613, + "callsign": "", + "codeHub": "ORG", + "codeIataAirline": "", + "codeIcaoAirline": "CCB", + "codeIso2Country": "SR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caricom Airways", + "nameCountry": "Suriname", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5614, + "callsign": "CARGO AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCB", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cargo Avia", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5615, + "callsign": "VENZARA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Colorado Corporate Charters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5616, + "callsign": "ALDERNEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European Aviation Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5617, + "callsign": "CARLOS CERVANTES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Carlos Cervantes Del Rio", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5618, + "callsign": "CASCADE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cascade Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5619, + "callsign": "TOMCAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCF", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CCF Manager Airline", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5620, + "callsign": "CHILCHOTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCH", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chilchota Taxi Aereo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5621, + "callsign": "CAPPY", + "codeHub": "MCO", + "codeIataAirline": "", + "codeIcaoAirline": "CCI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Capital Cargo International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5622, + "callsign": "CABLE CHECK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Trac", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5623, + "callsign": "AIR CORAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCK", + "codeIso2Country": "FJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Coral Coast", + "nameCountry": "Fiji", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5624, + "callsign": "", + "codeHub": "ACC", + "codeIataAirline": "", + "codeIcaoAirline": "CCL", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Continental Cargo Airlines", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5625, + "callsign": "CONTICAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCL", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Continental Aviation", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5626, + "callsign": "CLASSIC JET", + "codeHub": "STN", + "codeIataAirline": "", + "codeIcaoAirline": "CCN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Classic Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5627, + "callsign": "AEROCOCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Coco Club Hoteles de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5628, + "callsign": "CAP CITY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCQ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Capital City Air Carriers", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5629, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCQ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mustang Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5630, + "callsign": "CONCIAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Conciair Ltd", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5631, + "callsign": "CARGA CARAVEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCR", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Carga Aerea Venezolana Caraven", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5632, + "callsign": "CONNECTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Connectair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5633, + "callsign": "SKYSPIRIT", + "codeHub": "BTS", + "codeIataAirline": "", + "codeIcaoAirline": "CCS", + "codeIso2Country": "SK", + "founding": 2010, + "iataPrefixAccounting": "", + "nameAirline": "Samair", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5634, + "callsign": "CANARIAS CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCS", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euro Air Cargo", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5635, + "callsign": "CATRAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCT", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Catran", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5636, + "callsign": "CETTY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cetty Taxi Aereo Nacional", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5637, + "callsign": "CONNECT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Connect Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5638, + "callsign": "", + "codeHub": "MJI", + "codeIataAirline": "", + "codeIcaoAirline": "CCU", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "acacusair", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "start_up", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5639, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCU", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Seven Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5640, + "callsign": "TRANSCANARIAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCU", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania Aerea Canaria de Transporte Aereo", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5641, + "callsign": "HELICORPORATIVO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centro de Helicopteros Corporativos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5642, + "callsign": "AIR VALAIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCV", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air-Alpes", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5643, + "callsign": "COPTRADE AIR", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "CCW", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coptrade Air Transport", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5644, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Colt International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5645, + "callsign": "", + "codeHub": "ADS", + "codeIataAirline": "", + "codeIcaoAirline": "CCY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cherry-Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5646, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCY", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cherry Air", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5647, + "callsign": "CHERRY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cherry Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5648, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CCZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5649, + "callsign": "AEROCARDAL", + "codeHub": "SCL", + "codeIataAirline": "", + "codeIcaoAirline": "CDA", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocardal", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5650, + "callsign": "AIR CORDOBA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CDB", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cordoba", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5651, + "callsign": "CARGA DELCARIBE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CDC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Carga Del Caribe", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5652, + "callsign": "COMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CDE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comed Group", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5653, + "callsign": "SAMANTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CDF", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Samanta", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5654, + "callsign": "CARDS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CDI", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cards Air Services", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5655, + "callsign": "CAROLINA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CDL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunbird Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5656, + "callsign": "CARGA AEREA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CDM", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Carga Aerea Dominicana", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5657, + "callsign": "CANADIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CDN", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canadian Helicopters", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5658, + "callsign": "CARGODOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CDO", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cargo Dor", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5659, + "callsign": "CHODANG FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CDQ", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chodang University", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5660, + "callsign": "CANADAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CDR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bombardier", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5661, + "callsign": "SPECDAS", + "codeHub": "HLA", + "codeIataAirline": "", + "codeIcaoAirline": "CDS", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Spectrem Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5662, + "callsign": "CENTRAL AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CDS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Districts Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5663, + "callsign": "CORDAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CDS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cord-Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5664, + "callsign": "AEROREUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CDT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Real Aero Club de Reus-Costa Dorada", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5665, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CDU", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotrans", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5666, + "callsign": "", + "codeHub": "SGC", + "codeIataAirline": "", + "codeIcaoAirline": "CDV", + "codeIso2Country": "RU", + "founding": 2000, + "iataPrefixAccounting": "", + "nameAirline": "Skol Aviakompania", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5667, + "callsign": "SKOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CDV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airline Skol", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5668, + "callsign": "CLOUDEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CDX", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cloudex", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5669, + "callsign": "CADDY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CDY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "HeliAviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5670, + "callsign": "COLT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CEA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Colt Car Company", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5671, + "callsign": "CELTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CEC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Celtic Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5672, + "callsign": "CEDTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CED", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania Ecuatoriana de Transportes Aereos (CEDTA)", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5673, + "callsign": "VERDINO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CEE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South Atlantic Airways", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5674, + "callsign": "CENTRA AEREOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CEE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servivios Aereos Centrales", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5675, + "callsign": "AIR-CEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CEE", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "C-Air", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5676, + "callsign": "CZECH AIR FORCE", + "codeHub": "LKKB", + "codeIataAirline": "", + "codeIcaoAirline": "CEF", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Czech Air Force", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5677, + "callsign": "CEGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CEG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CEGA Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5678, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CEH", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Helicopter Service", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5679, + "callsign": "CORPOEJECUTIVA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CEJ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporacion Aerea Ejecutiva", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5680, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CEL", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ceneast Airlines", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5681, + "callsign": "CENTRAL MONGOLIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CEM", + "codeIso2Country": "MN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Mongolia Airways", + "nameCountry": "Mongolia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5682, + "callsign": "CENTRAL AIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CEN", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5683, + "callsign": "", + "codeHub": "KMAI", + "codeIataAirline": "", + "codeIcaoAirline": "CEP", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chipola Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5684, + "callsign": "CHIPOLA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CEP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chipola Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5685, + "callsign": "CETRACA", + "codeHub": "BNC", + "codeIataAirline": "", + "codeIcaoAirline": "CER", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cetraca Aviation Service", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5686, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CER", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cetraca Air Service", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5687, + "callsign": "CELMAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CER", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Celmar Servicios Aereos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5688, + "callsign": "CETA-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CET", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kal Air", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5689, + "callsign": "CENTRUM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CEU", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coventry Helicopter Centre", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5690, + "callsign": "CENTEV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CEV", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centre D'essais En Vol", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5691, + "callsign": "TRYDONAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CEW", + "codeIso2Country": "CF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Airways", + "nameCountry": "Central African Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5692, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CEZ", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cesszani Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5693, + "callsign": "FEILONG", + "codeHub": "HRB", + "codeIataAirline": "", + "codeIcaoAirline": "CFA", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "China Flying Dragon Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5694, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "China Flying Dragon Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5695, + "callsign": "FRENCH BIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFB", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "City Bird France", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5696, + "callsign": "", + "codeHub": "YTR", + "codeIataAirline": "", + "codeIcaoAirline": "CFC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Canadian Air Force", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5697, + "callsign": "", + "codeHub": "YTR", + "codeIataAirline": "", + "codeIcaoAirline": "CFC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canadian Forces", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5698, + "callsign": "CANFORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canadian Armed Forces", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5699, + "callsign": "AERONAUT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cranfield University", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5700, + "callsign": "AERONAUT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cranfield Institute Of Technology", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5701, + "callsign": "AEROFAN", + "codeHub": "MAD", + "codeIataAirline": "", + "codeIcaoAirline": "CFF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerofan", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5702, + "callsign": "CARE FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFH", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Care Flight", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5703, + "callsign": "CHINA JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFI", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Inspection Center of the General Administration of Civil Aviation of China", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5704, + "callsign": "FUJIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fujian Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5705, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFK", + "codeIso2Country": "CF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centrafric'air", + "nameCountry": "Central African Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5706, + "callsign": "SWEDISH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFL", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swedish Airlines", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5707, + "callsign": "CONSORT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Consort Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5708, + "callsign": "ACEF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFM", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ACEF - Transportes Aereos Cargas", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5709, + "callsign": "CHURCH FENTON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Church Fenton FTU", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5710, + "callsign": "FAUCET", + "codeHub": "LIM", + "codeIataAirline": "", + "codeIcaoAirline": "CFP", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Faucet", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5711, + "callsign": "", + "codeHub": "FIH", + "codeIataAirline": "", + "codeIcaoAirline": "CFR", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Africa One (Congo Kinshasa)", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5712, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chauffair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5713, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFR", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Africa One", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5714, + "callsign": "CASPER FREIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Freighters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5715, + "callsign": "MINAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFU", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CAA Flying Unit", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5716, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFV", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aereo Calafia", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5717, + "callsign": "CEEFA CHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFX", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CFA Air Charters", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5718, + "callsign": "", + "codeHub": "ZLYN", + "codeIataAirline": "", + "codeIcaoAirline": "CFZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zhongfei Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5719, + "callsign": "ZHONGFEI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CFZ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zhongfei General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5720, + "callsign": "CONGRESSIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CGA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Congressional Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5721, + "callsign": "CARGO BELIZE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CGB", + "codeIso2Country": "BZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cargo Belize", + "nameCountry": "Belize", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5722, + "callsign": "CAL-GULF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CGC", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cal Gulf Aviation", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5723, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CGD", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Charlotte, NC Air National Guard", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5724, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CGD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Charlotte, NC Air National Guard", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5725, + "callsign": "COLLEGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CGE", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nelson Aviation College", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5726, + "callsign": "CARGO AFRICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CGF", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cargo Africa", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5727, + "callsign": "CHARGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CGG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Walmart Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5728, + "callsign": "CGI-RUSAIR", + "codeHub": "SVO", + "codeIataAirline": "", + "codeIcaoAirline": "CGI", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rusair", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5729, + "callsign": "CGI-RUSAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CGI", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlas Jet", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5730, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CGM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trabajos Aereos Y Publicidad Andaluza", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5731, + "callsign": "WOLD ONION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CGO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chicago Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5732, + "callsign": "CAPGROUP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CGP", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Capital Aircraft Group", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5733, + "callsign": "CARGO PLUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CGP", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cargo Plus Aviation", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5734, + "callsign": "COMPRIP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CGR", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compagnia Generale Ripreseaeree", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5735, + "callsign": "GEO CENTRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CGS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centre of Applied Geodynamica", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5736, + "callsign": "", + "codeHub": "VOZ", + "codeIataAirline": "", + "codeIcaoAirline": "CGT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "KNG Transavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5737, + "callsign": "TRANSGAZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CGT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CNG-Transavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5738, + "callsign": "CHINGUETTI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CGU", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chinguetti Airlines", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5739, + "callsign": "CLUBE ALGARVE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CGV", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Clube de Algarve", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5740, + "callsign": "COASTGUARD AUXAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CGX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United States Coast Guard Auxiliary", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5741, + "callsign": "", + "codeHub": "AGT", + "codeIataAirline": "", + "codeIcaoAirline": "CGY", + "codeIso2Country": "PY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporacion Paraguaya de Aeronautica", + "nameCountry": "Paraguay", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5742, + "callsign": "CHARTER CENTRAL", + "codeHub": "LIT", + "codeIataAirline": "", + "codeIcaoAirline": "CHA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Flying Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5743, + "callsign": "CAVALIER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chiltern Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5744, + "callsign": "CHINA HELICOPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHC", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "China Ocean Helicopter Corp. - COHC", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5745, + "callsign": "CHKALOVSK-AVIA", + "codeHub": "CKL", + "codeIataAirline": "", + "codeIcaoAirline": "CHD", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "223rd Flight Unit, State Airline", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5746, + "callsign": "CHECK AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Top Flight Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5747, + "callsign": "CHITA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHF", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chitaavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5748, + "callsign": "CHAO FEI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHF", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tianjin Jeppesen International Flight College", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5749, + "callsign": "SKYCHALLENGER", + "codeHub": "UKKT", + "codeIataAirline": "", + "codeIcaoAirline": "CHG", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Challenge Aero", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5750, + "callsign": "COUGAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHI", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cougar Helicopters", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5751, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cougar Helicopters", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5752, + "callsign": "AIR CHAIKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHJ", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurocharter Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5753, + "callsign": "SHINING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Jet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5754, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cranfield Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5755, + "callsign": "COHLMIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cohlmia Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5756, + "callsign": "AEROCHOMBO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Chombo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5757, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHM", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chemech Aviation (Pvt) Limited", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5758, + "callsign": "", + "codeHub": "KCMA", + "codeIataAirline": "", + "codeIcaoAirline": "CHN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Channel Islands Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5759, + "callsign": "CHANNEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Channel Island Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5760, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "CHO", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chrome Air Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5761, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHO", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ciga Hotels Aviation", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5762, + "callsign": "CHROME AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHO", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chrome Air Service", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5763, + "callsign": "", + "codeHub": "FIH", + "codeIataAirline": "", + "codeIcaoAirline": "CHR", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ACS Air Charter Service", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5764, + "callsign": "CHEESE MAKER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SC Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5765, + "callsign": "CHRISTLER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Christler Flying Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5766, + "callsign": "ZAIRE CHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHR", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Charter Services (ACS)", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5767, + "callsign": "CHALLENGE AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHS", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Challenge Aviation.", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5768, + "callsign": "CHURCHAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Church Aircraft", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5769, + "callsign": "AIR CHERNIVTSI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chernivtsi Aviation Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5770, + "callsign": "CHARTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Charter Professionals", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5771, + "callsign": "CAPITOL SHUTTLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Capitol Helicopters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5772, + "callsign": "CHARTER WIEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHW", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Charter Air", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5773, + "callsign": "CHRISTOPH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHX", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hubschrauber IM Luftrettungsdienst", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5774, + "callsign": "CHIRAG AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHX", + "codeIso2Country": "AZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chirag Air", + "nameCountry": "Azerbaijan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5775, + "callsign": "CHARTER EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHX", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Charter Express", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5776, + "callsign": "CHINA CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHY", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "China Air Cargo", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5777, + "callsign": "CHERL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CHZ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cherlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5778, + "callsign": "CALIMERA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CIA", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Civil Aviation Authority of the Slovak Republic", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5779, + "callsign": "CIPRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CIA", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CIPRA", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5780, + "callsign": "", + "codeHub": "YYC", + "codeIataAirline": "", + "codeIcaoAirline": "CIC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ICC Air Cargo Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5781, + "callsign": "CELTIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CIC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Celtic Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5782, + "callsign": "AIR TRADER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CIC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ICC Canada Ltd", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5783, + "callsign": "ACID", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "CID", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asia Continental Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5784, + "callsign": "CZECHIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CIE", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Czech Government Flying Service", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5785, + "callsign": "CARFLIGHTS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CIF", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caribbean Flights", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5786, + "callsign": "SIRIUS AERO", + "codeHub": "VKO", + "codeIataAirline": "", + "codeIcaoAirline": "CIG", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sirius-Aero", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5787, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CII", + "codeIso2Country": "CK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cook Islands International", + "nameCountry": "Cook Islands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5788, + "callsign": "CITYFLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CII", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CityFly", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5789, + "callsign": "NIKOLAUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CIJ", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "C&I Corporation", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5790, + "callsign": "COMOROS AIRLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CIK", + "codeIso2Country": "KM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comoros International Airline", + "nameCountry": "Comoros", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5791, + "callsign": "CIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CIL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cecil Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5792, + "callsign": "", + "codeHub": "HAH", + "codeIataAirline": "", + "codeIcaoAirline": "CIN", + "codeIso2Country": "KM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comoro Islands Airline", + "nameCountry": "Comoros", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5793, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CIO", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ciao Fly", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5794, + "callsign": "CIOCCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CIO", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Il Ciocco International Travel Service", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5795, + "callsign": "AIR ARCTIC", + "codeHub": "SPN", + "codeIataAirline": "", + "codeIcaoAirline": "CIR", + "codeIso2Country": "MP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arctic Circle Air", + "nameCountry": "Northern Mariana Islands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5796, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CIS", + "codeIso2Country": "BS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cat Island Air", + "nameCountry": "Bahamas", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5797, + "callsign": "EXPRESS UKRAINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CIS", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CIS Express Ukraine,", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5798, + "callsign": "CHAILLOTINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CIS", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chaillotine Air Service - CAS", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5799, + "callsign": "CITYVIENNA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CIT", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "City-Jet", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5800, + "callsign": "ZANE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CIT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zanesville Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5801, + "callsign": "CIELOS", + "codeHub": "LIM", + "codeIataAirline": "", + "codeIcaoAirline": "CIU", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cielos Del Peru", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5802, + "callsign": "CIVAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CIV", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Civil Aviation Authority Of New Zealand", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5803, + "callsign": "", + "codeHub": "CPT", + "codeIataAirline": "", + "codeIcaoAirline": "CIW", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Civair", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5804, + "callsign": "CIVFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CIW", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Civair Airways", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5805, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CIW", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Afrik Airways", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5806, + "callsign": "BIRD JET", + "codeHub": "LBG", + "codeIataAirline": "", + "codeIcaoAirline": "CJE", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Services Corporate", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5807, + "callsign": "CUSTOM JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CJE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Custom Jet Charters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5808, + "callsign": "", + "codeHub": "HGH", + "codeIataAirline": "", + "codeIcaoAirline": "CJG", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CNAC - Zhejiang Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5809, + "callsign": "ZHEJIANG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CJG", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zhejiang Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5810, + "callsign": "SEA JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CJI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Jets", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5811, + "callsign": "CHECKMARK", + "codeHub": "FAB", + "codeIataAirline": "", + "codeIcaoAirline": "CJM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Jet Management", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5812, + "callsign": "CAVERTON AIR", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "CJR", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caverton Helicopters", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5813, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CJR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caverton Helicopters Ltd.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5814, + "callsign": "COMMONWEALTH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CJS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Commonwealth Jet Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5815, + "callsign": "", + "codeHub": "YHM", + "codeIataAirline": "", + "codeIcaoAirline": "CJT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Starjet Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5816, + "callsign": "CALIBER JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CJZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caliber Jet Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5817, + "callsign": "COOK-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CKA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cook Inlet Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5818, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CKC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CKC Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5819, + "callsign": "CHECKMATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CKE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Aviation Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5820, + "callsign": "CIRCLE CITY", + "codeHub": "IND", + "codeIataAirline": "", + "codeIcaoAirline": "CKL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Charter Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5821, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CKL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Charter Services", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5822, + "callsign": "", + "codeHub": "BIO", + "codeIataAirline": "", + "codeIcaoAirline": "CKM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BKS Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5823, + "callsign": "COSMOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CKM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rivaflecha S.L. (BKS Air)", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5824, + "callsign": "CROWN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CKR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Crown Air Systems", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5825, + "callsign": "COKER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CKR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coker Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5826, + "callsign": "CONNIE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CKS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Connie Kalitta Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5827, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CKV", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CTK - Network Aviation Mali", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5828, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "CKW", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Click Airways International", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5829, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CKW", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Click Airways International", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5830, + "callsign": "SKY CYPRUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CKY", + "codeIso2Country": "CY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Airlines", + "nameCountry": "Cyprus", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5831, + "callsign": "COMLUX", + "codeHub": "ZRH", + "codeIataAirline": "", + "codeIcaoAirline": "CLA", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comlux Aviation", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,private" + }, + { + "ageFleet": 0.0, + "airlineId": 5832, + "callsign": "PENNANT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLA", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Color Air", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5833, + "callsign": "CALIBRATOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cobham Flight Inspection", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5834, + "callsign": "CALIBRATOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Precision", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5835, + "callsign": "CALIBRATOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CAA Calibration Flight", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5836, + "callsign": "CLASSIC AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLC", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Classic Air", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5837, + "callsign": "CLOWES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Clowes Estates", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5838, + "callsign": "CONSOLIDATED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Consolidated Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5839, + "callsign": "", + "codeHub": "M88", + "codeIataAirline": "", + "codeIcaoAirline": "CLE", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Colemill Air Charter", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5840, + "callsign": "CHILEINTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLE", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chileinter Airlines", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5841, + "callsign": "COLEMILL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Colemill Enterprises", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5842, + "callsign": "CLIFTON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bristol Flying Centre", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5843, + "callsign": "CHALLAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLG", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Challeng'Air International", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5844, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLJ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cello Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5845, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLJ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Light", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5846, + "callsign": "COLOURJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlines Management", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5847, + "callsign": "CLARKAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Clark Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5848, + "callsign": "AEROCASTILLO", + "codeHub": "GDL", + "codeIataAirline": "", + "codeIcaoAirline": "CLL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovias Castillo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5849, + "callsign": "CARGO LINK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLM", + "codeIso2Country": "BB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cargo Link (Caribbean)", + "nameCountry": "Barbados", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5850, + "callsign": "CALCOM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "California Air Commuter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5851, + "callsign": "", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "CLN", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cleopatra Aviation", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5852, + "callsign": "CLOEPATRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLN", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cloepatra Aviation", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5853, + "callsign": "CATLIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Catlin Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5854, + "callsign": "SEELINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Barnes Olson Aeroleasing", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5855, + "callsign": "CHALLENGE UKRAINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLO", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Challenge Aero Ukraine", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5856, + "callsign": "COLAIRLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLO", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Litoral Airlines (Colair)", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5857, + "callsign": "CLUB PORTUGAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLP", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Club de Portugal", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5858, + "callsign": "CLINTON AIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans America", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5859, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Challenge Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5860, + "callsign": "AIRISTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLS", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Challenge Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5861, + "callsign": "", + "codeHub": "DUS", + "codeIataAirline": "", + "codeIcaoAirline": "CLU", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Triple Alpha Luftfahrtgesellschaft", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5862, + "callsign": "CLUB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLU", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Club Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5863, + "callsign": "CAROLUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLU", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avanti Aviation", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5864, + "callsign": "CAROLUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLU", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Triple Alpha Luftfahfitgesellschaft mbH", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5865, + "callsign": "CLOVER AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Clover Aero", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5866, + "callsign": "CALAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLV", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CAL Aviation", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5867, + "callsign": "LACY", + "codeHub": "VNY", + "codeIataAirline": "", + "codeIcaoAirline": "CLY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Clay Lacy Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5868, + "callsign": "CLYDE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Clyde Surveys Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5869, + "callsign": "CLOUDNINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLZ", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cloud 9 Air charters", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5870, + "callsign": "AEROCALZADA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CLZ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis Calzada", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5871, + "callsign": "", + "codeHub": "CNX", + "codeIataAirline": "", + "codeIcaoAirline": "CMA", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nakhon Chiangmai Air", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5872, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMA", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nakorn Chiang Mai Airways", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5873, + "callsign": "EUROCENTRAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMA", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central European Airlines", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5874, + "callsign": "", + "codeHub": "DCA", + "codeIataAirline": "", + "codeIcaoAirline": "CMB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United States Air Force", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5875, + "callsign": "CAMBER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "U.S. Transportation Command", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5876, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMC", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chemech Aviation", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5877, + "callsign": "ESTERLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CMC Electronics", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5878, + "callsign": "COMANDOR AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMD", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comandor Avia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5879, + "callsign": "CALSTAR MED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Calstar", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5880, + "callsign": "COMET", + "codeHub": "YHG", + "codeIataAirline": "", + "codeIcaoAirline": "CME", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prince Edward Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5881, + "callsign": "COMMERCE BANK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CME", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Commerce Bank", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5882, + "callsign": "CAMELOT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CME", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Camelot", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5883, + "callsign": "COMPASSION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Care Alliance", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5884, + "callsign": "SUNSPY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMG", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comet Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5885, + "callsign": "COMMODORE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Commair Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5886, + "callsign": "COMFORT JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMJ", + "codeIso2Country": "TG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comfort Jet Services", + "nameCountry": "Togo", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5887, + "callsign": "MUDANJIANG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mudanjiang General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5888, + "callsign": "CHERAVIA", + "codeHub": "AER", + "codeIataAirline": "", + "codeIcaoAirline": "CMK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chernomor-Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5889, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chernomor Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5890, + "callsign": "COMMUNITY", + "codeHub": "DAR", + "codeIataAirline": "", + "codeIcaoAirline": "CML", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Community Airlines", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5891, + "callsign": "COMMANDAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CML", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Commander Air Charter", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5892, + "callsign": "", + "codeHub": "MLC", + "codeIataAirline": "", + "codeIcaoAirline": "CMN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cimarron Aire", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5893, + "callsign": "CIMMARON AIRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eckles Aircraft", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5894, + "callsign": "CAMELOT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMO", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "KGFM Transport And Logistics", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5895, + "callsign": "CAMEO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cam Air Management", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5896, + "callsign": "ACCESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMS", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Commercial Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5897, + "callsign": "CASEMENT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Casement Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5898, + "callsign": "LANNA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMU", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northern Aviation Service", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5899, + "callsign": "CEMAVOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMV", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centre de Maintenance Et de Vol", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5900, + "callsign": "EL CAMINNATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "El Caminante Taxi Aereo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5901, + "callsign": "MEXTAXIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania Mexicana de Taxis Aereos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5902, + "callsign": "CEE-EM STAIRS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CMZ", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CM Sair, Compagnie Mauritanienne des Services ET", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5903, + "callsign": "CITYHUN", + "codeHub": "BUD", + "codeIataAirline": "", + "codeIcaoAirline": "CNB", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cityline Hungary", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5904, + "callsign": "CENCOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporacion Aereo Cencor", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5905, + "callsign": "AIR CONCORD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CND", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Concord Airlines Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5906, + "callsign": "CONNECTOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNE", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Toronto", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5907, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNE", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Company Continent", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5908, + "callsign": "CONIFAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNF", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Conifair Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5909, + "callsign": "", + "codeHub": "GPT", + "codeIataAirline": "", + "codeIcaoAirline": "CNG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coastal Airways (USA)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5910, + "callsign": "SID-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coastal Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5911, + "callsign": "CHENANGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aquila Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5912, + "callsign": "", + "codeHub": "CYO", + "codeIataAirline": "", + "codeIcaoAirline": "CNI", + "codeIso2Country": "CU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxi", + "nameCountry": "Cuba", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5913, + "callsign": "SERAER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNI", + "codeIso2Country": "CU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Empresa Nacional de Servicios Aereos", + "nameCountry": "Cuba", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5914, + "callsign": "NINGHANG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nanjing Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5915, + "callsign": "CHINOCK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNK", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunwest Home Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5916, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNK", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunwest Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5917, + "callsign": "WYO-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centennial Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5918, + "callsign": "CANARIAS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canarias Regional Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5919, + "callsign": "CONNECTION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Centers of America", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5920, + "callsign": "LINEAS NORTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Comerciales Del Norte", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5921, + "callsign": "CERES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNP", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centennial Air", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5922, + "callsign": "CARGO NORTH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNP", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Private Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5923, + "callsign": "CONAERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Condor Aero Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5924, + "callsign": "", + "codeHub": "PSM", + "codeIataAirline": "", + "codeIcaoAirline": "CNS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cobalt Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5925, + "callsign": "CENTENNIAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNS", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centennial Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5926, + "callsign": "KNET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centre National D'etudes Des Telecommunications (C.N.E.T.)", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5927, + "callsign": "AIR CONSUL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNU", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Consul", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5928, + "callsign": "CONVOY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "U.S. Navy Logistic Air Forces", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5929, + "callsign": "CANAIV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cannon Aviation Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5930, + "callsign": "CONVOY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "U.S. Navy Reserve Logistic Air Forces", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5931, + "callsign": "", + "codeHub": "KIV", + "codeIataAirline": "", + "codeIcaoAirline": "CNW", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Continental Airways (Moldova)", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "restarting", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5932, + "callsign": "WUHAN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNW", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wuhan Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5933, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNW", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Continental Airways", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5934, + "callsign": "CANEX", + "codeHub": "YYZ", + "codeIataAirline": "", + "codeIcaoAirline": "CNX", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "726", + "nameAirline": "AllCanada Express", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5935, + "callsign": "CENTRAL LEONE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CNY", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Airways", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5936, + "callsign": "CONTINENTAL", + "codeHub": "IAH", + "codeIataAirline": "", + "codeIcaoAirline": "COA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Continental Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5937, + "callsign": "COBHAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Platinum Air Charter Executive", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5938, + "callsign": "CONSETA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COC", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Firma Conseta", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5939, + "callsign": "CONCORDAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COD", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Concordavia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5940, + "callsign": "", + "codeHub": "VIE", + "codeIataAirline": "", + "codeIcaoAirline": "COE", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comtel Air", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5941, + "callsign": "COMTEL-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COE", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comitel, Bedarfsfluge", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5942, + "callsign": "COMFORT AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COF", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comfort Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5943, + "callsign": "CONFORT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COF", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Confort Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5944, + "callsign": "", + "codeHub": "SSG", + "codeIataAirline": "", + "codeIcaoAirline": "COG", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "COAGE - Compania Aerea de Guinea Ecuatorial", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5945, + "callsign": "COAGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COG", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania Aerea de Guinea Ecuatorial (COAGE)", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5946, + "callsign": "COLT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coltishall FTU", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5947, + "callsign": "COAVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COI", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coinspectra Aviacion", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5948, + "callsign": "CONTRAIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COI", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Absolute Flight Services", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5949, + "callsign": "CONJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Continental Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5950, + "callsign": "COCKTAIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Imperial Charter Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5951, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COK", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ciskei International Airways", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5952, + "callsign": "COLAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Columbia Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5953, + "callsign": "COLUMBA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COL", + "codeIso2Country": "HR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Columba Air", + "nameCountry": "Croatia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5954, + "callsign": "", + "codeHub": "ANC", + "codeIataAirline": "", + "codeIcaoAirline": "CON", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ConocoPhillips Aviation Alaska", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5955, + "callsign": "CONOCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CON", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Continental Oil", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5956, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CON", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ConocoPhillips", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5957, + "callsign": "CORPORATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COO", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Airlink", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5958, + "callsign": "COPPER STATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Copper State Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5959, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5960, + "callsign": "", + "codeHub": "RIX", + "codeIataAirline": "", + "codeIcaoAirline": "COS", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Concors", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5961, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COS", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Concors Company", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5962, + "callsign": "CONCORS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COS", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Concors Latvian Air Service", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5963, + "callsign": "CONUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Conus", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5964, + "callsign": "COAIR", + "codeHub": "MAR", + "codeIataAirline": "", + "codeIcaoAirline": "COT", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Costa Airlines", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5965, + "callsign": "CRATER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cottesmore FTU", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5966, + "callsign": "AIR COVENTRY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COV", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Coventry", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5967, + "callsign": "HELICENTRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COV", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicentre Coventry", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5968, + "callsign": "COWI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COW", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cowi", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5969, + "callsign": "COMPION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COX", + "codeIso2Country": "NA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compion Aviation", + "nameCountry": "Namibia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5970, + "callsign": "COYNE AIR", + "codeHub": "AMS", + "codeIataAirline": "", + "codeIcaoAirline": "COY", + "codeIso2Country": "NL", + "founding": 1994, + "iataPrefixAccounting": "", + "nameAirline": "Coyne Airways", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5971, + "callsign": "CORA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "COZ", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corair", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5972, + "callsign": "", + "codeHub": "YYC", + "codeIataAirline": "", + "codeIcaoAirline": "CPB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Express (Canada)", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5973, + "callsign": "PENTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corpac Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5974, + "callsign": "AEROCAMPECHE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Campeche", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5975, + "callsign": "CAPITAL DELTA", + "codeHub": "WIL", + "codeIataAirline": "", + "codeIcaoAirline": "CPD", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Capital Airlines", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5976, + "callsign": "COPTERLINE", + "codeHub": "HEL", + "codeIataAirline": "", + "codeIcaoAirline": "CPE", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Copterline", + "nameCountry": "Estonia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 5977, + "callsign": "COMPONENTESINT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocomponentes Internacionales", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5978, + "callsign": "CAP-FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "U S Air Force Auxiliary, Civil Air Patrol", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 5979, + "callsign": "TECHSERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPF", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airtechservice", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5980, + "callsign": "CORPORNAG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporacion Aeroangeles", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5981, + "callsign": "CHAMPAGNE", + "codeHub": "RHE", + "codeIataAirline": "", + "codeIcaoAirline": "CPH", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Champagne Airlines", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 5982, + "callsign": "AIRCAI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPI", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "C.A.I. - Compagnia Aeronautica Italiana", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5983, + "callsign": "", + "codeHub": "KRYY", + "codeIataAirline": "", + "codeIcaoAirline": "CPJ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corpjet", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 5984, + "callsign": "CORPJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corpjet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5985, + "callsign": "CHAPARRAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chaparral Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5986, + "callsign": "", + "codeHub": "NKC", + "codeIataAirline": "", + "codeIcaoAirline": "CPM", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CPM - Compagnie Mauritanienne de Transports", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5987, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPM", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compagnie Mauritanienne Des Transports", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5988, + "callsign": "MOKAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Aircraft Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5989, + "callsign": "COPTERPLUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPP", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Copterplus Finland", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5990, + "callsign": "", + "codeHub": "LIM", + "codeIataAirline": "", + "codeIcaoAirline": "CPR", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aer Caribe Peru", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5991, + "callsign": "CARIBE-PERU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPR", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolinea del Caribe-Peru", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5992, + "callsign": "CORPAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5993, + "callsign": "COMPASS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compass Interational Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5994, + "callsign": "COMPASS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compass Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5995, + "callsign": "AIR SPUR", + "codeHub": "GTF", + "codeIataAirline": "", + "codeIcaoAirline": "CPT", + "codeIso2Country": "US", + "founding": 1981, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 5996, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5997, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPU", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Support", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5998, + "callsign": "AIRCORPORATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPV", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Corporate", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 5999, + "callsign": "CHIPPEWA-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chippewa Air Commuter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6000, + "callsign": "CAPAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Capital Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6001, + "callsign": "AIR COMPANY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPY", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Company", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6002, + "callsign": "CAPAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CPZ", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CPS - Cargo and Passenger air Services", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6003, + "callsign": "COASTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CQA", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coast Air", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6004, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CQC", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Queensland Aviation College", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6005, + "callsign": "CORAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRA", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coral Colombia - Coronado Aerolineas", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6006, + "callsign": "CROSSROADS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Solutions Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6007, + "callsign": "CIMAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRA", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CIMAS Emergency Air Rescue Service", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6008, + "callsign": "CATSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRB", + "codeIso2Country": "HN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caribbean Air Tours & Services Charters", + "nameCountry": "Honduras", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6009, + "callsign": "AIRLAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Atlanta", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6010, + "callsign": "CONAIR CANADA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Conair Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6011, + "callsign": "AEROCOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRD", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Cordillera (Aerocor)", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6012, + "callsign": "", + "codeHub": "TBS", + "codeIataAirline": "", + "codeIcaoAirline": "CRE", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Carre Aviation", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6013, + "callsign": "IMEDI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRE", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Carre Aviation", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6014, + "callsign": "CREE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRE", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cree Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6015, + "callsign": "CROIX ROUGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRF", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Croix Rouge Francais", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6016, + "callsign": "", + "codeHub": "MXP", + "codeIataAirline": "", + "codeIcaoAirline": "CRG", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cargoitalia", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6017, + "callsign": "COURAGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRG", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "City-Link Airlines Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6018, + "callsign": "HELI-MEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRH", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CRI Helicopters Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6019, + "callsign": "CROAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Crown Air", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6020, + "callsign": "CONSORICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Consorcio Aereo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6021, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRI", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cirrus Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6022, + "callsign": "CARGOJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRJ", + "codeIso2Country": "MK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cargojet", + "nameCountry": "Macedonia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6023, + "callsign": "AIR CRUZAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRJ", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cruzal", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6024, + "callsign": "AIR CRAKE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRK", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Pacific Crake", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6025, + "callsign": "", + "codeHub": "TLC", + "codeIataAirline": "", + "codeIcaoAirline": "CRM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Commander Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6026, + "callsign": "COMMANDERMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Commander Mexicana", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6027, + "callsign": "CROWN AIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Crown Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6028, + "callsign": "CORPORATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Air Travel", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6029, + "callsign": "AEROTRANSCORP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotransportes Corporativos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6030, + "callsign": "CORPORATIVO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis Corporativo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6031, + "callsign": "CARRANZA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRR", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Carranza", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6032, + "callsign": "COURIER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chandler Flyers", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6033, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "CRS", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Asian Aviation Services", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6034, + "callsign": "CRESAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Crescent Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6035, + "callsign": "COMERCIAL AEREA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comercial Aerea", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6036, + "callsign": "CARBINTAIR", + "codeHub": "PAP", + "codeIataAirline": "", + "codeIcaoAirline": "CRT", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caribintair", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6037, + "callsign": "CHERKASY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRU", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cherkasy Universal Avia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6038, + "callsign": "ACROPOLIS", + "codeHub": "FAB", + "codeIataAirline": "", + "codeIcaoAirline": "CRV", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Acropolis Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6039, + "callsign": "CARGIV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRV", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cargo Ivoire", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6040, + "callsign": "REGAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRW", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Crownair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6041, + "callsign": "CROSSAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cross Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6042, + "callsign": "CARRIERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Primavia", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6043, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CRY", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia Carriers", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6044, + "callsign": "AIR COMMERCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSB", + "codeIso2Country": "BA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Commerce", + "nameCountry": "Bosnia and Herzegovina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6045, + "callsign": "DELIVERY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Courier Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6046, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSE", + "codeIso2Country": "SB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coral Seas Express", + "nameCountry": "Solomon Islands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6047, + "callsign": "", + "codeHub": "PIK", + "codeIataAirline": "", + "codeIcaoAirline": "CSF", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Caledonian", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6048, + "callsign": "CLASAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Clasair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6049, + "callsign": "COSTA SOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSG", + "codeIso2Country": "CR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Costa Sol", + "nameCountry": "Costa Rica", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6050, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSG", + "codeIso2Country": "CS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Czech Government Flying Service", + "nameCountry": "Serbia and Montenegro", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 6051, + "callsign": "SKYPORT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Skyport", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6052, + "callsign": "CASI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Capital Aviaition Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6053, + "callsign": "CASTLE", + "codeHub": "CAK", + "codeIataAirline": "", + "codeIcaoAirline": "CSJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Castle Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6054, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSJ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Castle Aviation", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6055, + "callsign": "CASCADE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flightcraft", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6056, + "callsign": "CATSKILL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Catskill Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6057, + "callsign": "CALIFORNIA SHUTTLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "California Air Shuttle", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6058, + "callsign": "LORRY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSM", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ratkhan Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6059, + "callsign": "LORRY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSM", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservice-Sabit", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6060, + "callsign": "CASAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Casino Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6061, + "callsign": "CASPER AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Casper Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6062, + "callsign": "", + "codeHub": "SJO", + "codeIataAirline": "", + "codeIcaoAirline": "CSR", + "codeIso2Country": "CR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Costa Rica Skies", + "nameCountry": "Costa Rica", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6063, + "callsign": "CISAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSR", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cis-Air", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6064, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSS", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corse Aero Service", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6065, + "callsign": "COAST-CENTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CST", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coast Aero Center", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6066, + "callsign": "CHARI SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSU", + "codeIso2Country": "TD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chari Aviation Services", + "nameCountry": "Chad", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6067, + "callsign": "CENTROSUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSU", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taxi Aereo Centro Sur", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6068, + "callsign": "CASSOVIA SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSV", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Service", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6069, + "callsign": "CHARTER SYSTEMS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSW", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Worldwide Air Charter Systems", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6070, + "callsign": "CHASER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Enterprise Consultants", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6071, + "callsign": "CHOICE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Choice Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6072, + "callsign": "POLESTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CSX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polestar Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6073, + "callsign": "SHUANGYANY", + "codeHub": "AVA", + "codeIataAirline": "", + "codeIcaoAirline": "CSY", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shuangyang General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6074, + "callsign": "CARIBE-TRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Caribe", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6075, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Charter and Transport", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6076, + "callsign": "CHAR-TRAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Charter and Transport", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6077, + "callsign": "CORP EJECUTIVA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporacion Ejecutiva de Transporte Aereo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6078, + "callsign": "AEROCORPORATIVOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocorporativos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6079, + "callsign": "CASTANEDA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Castaneda", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6080, + "callsign": "TENGLONG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTE", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Tenglong", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6081, + "callsign": "CUTTER FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cutter Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6082, + "callsign": "FOTOCARTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CETFA", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6083, + "callsign": "CANADIAN COAST GUARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTG", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canadian Coast Guard", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 6084, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CTI - Container Transport International", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6085, + "callsign": "COSTOCK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East Midlands Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6086, + "callsign": "", + "codeHub": "MKC", + "codeIataAirline": "", + "codeIcaoAirline": "CTL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Air Southwest", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6087, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Air Southwest", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6088, + "callsign": "CENTRAL COMMUTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6089, + "callsign": "", + "codeHub": "VIY", + "codeIataAirline": "", + "codeIcaoAirline": "CTM", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Armee de l'Air", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 6090, + "callsign": "COTAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTM", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Commandement du Transport Aerien Militaire Francais", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6091, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis Del Centro", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6092, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTO", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cape Air Transport", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6093, + "callsign": "", + "codeHub": "UTTP", + "codeIataAirline": "", + "codeIcaoAirline": "CTP", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tashkent Aircraft Production", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "manufacturer" + }, + { + "ageFleet": 0.0, + "airlineId": 6094, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTP", + "codeIso2Country": "UZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAPC Aviatrans", + "nameCountry": "Uzbekistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6095, + "callsign": "CITYLINK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTQ", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CTK Network Aviation", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6096, + "callsign": "AIR CENTRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transport Air Centre", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6097, + "callsign": "CENTAURO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Centauro", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6098, + "callsign": "", + "codeHub": "EGO", + "codeIataAirline": "", + "codeIcaoAirline": "CTS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Center South Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6099, + "callsign": "CENTER-SOUTH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Center-South", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6100, + "callsign": "CITYLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTU", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "City Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6101, + "callsign": "ARE AVIACION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTV", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Escuela de Pilotos Are Aviacion", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6102, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTW", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PanAir Cargo", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6103, + "callsign": "CATBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Air Fleet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6104, + "callsign": "CEN-TEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cen-Tex Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6105, + "callsign": "CENTURY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cryderman Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6106, + "callsign": "", + "codeHub": "SADD", + "codeIataAirline": "", + "codeIcaoAirline": "CTZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CATA Linea Aerea", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6107, + "callsign": "CATA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CTZ", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CATA", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6108, + "callsign": "CUN-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CUI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cancun Air", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6109, + "callsign": "", + "codeHub": "RJAN", + "codeIataAirline": "", + "codeIcaoAirline": "CUK", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NCA - New Central Aviation", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6110, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CUK", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "New Central Airlines", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6111, + "callsign": "CHUKKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CUK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polo Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6112, + "callsign": "CUAHONTE", + "codeHub": "UPN", + "codeIataAirline": "", + "codeIcaoAirline": "CUO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocuahonte", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6113, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CUO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Cuahonte", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6114, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CUO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Cuahonte", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6115, + "callsign": "CUAHONTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CUO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Enrique Cuahonte Delgado, C.C., Marta Amezclia de Cuahonte", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6116, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CUT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Court Helicopters", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6117, + "callsign": "COURT AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CUT", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Court Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6118, + "callsign": "COURT AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CUT", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Court Helicopters", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6119, + "callsign": "CHATHAM", + "codeHub": "CHT", + "codeIataAirline": "", + "codeIcaoAirline": "CVA", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Chathams", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6120, + "callsign": "BROCKWAY AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CVA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brockway Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6121, + "callsign": "KABEX", + "codeHub": "SID", + "codeIataAirline": "", + "codeIcaoAirline": "CVE", + "codeIso2Country": "CV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cabo Verde Express", + "nameCountry": "Cape Verde", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6122, + "callsign": "CLOVERLEAF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CVF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dassault Falcon Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6123, + "callsign": "CARILL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CVG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Carill Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6124, + "callsign": "AVIA DONBASS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CVI", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centeravia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6125, + "callsign": "CASSOVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CVI", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cassovia Air", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6126, + "callsign": "COMEREJECUTIVA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CVJ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comercializacion de Aviacion Ejecutiva", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6127, + "callsign": "CARGO LINE", + "codeHub": "KIV", + "codeIataAirline": "", + "codeIcaoAirline": "CVK", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cavok Air", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6128, + "callsign": "COVAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CVL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coval Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6129, + "callsign": "CARAVAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CVN", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bromma Flygskola", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6130, + "callsign": "CET AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CVN", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CET Aviation", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6131, + "callsign": "CENTERVOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CVO", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Center Vol", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6132, + "callsign": "", + "codeHub": "KMJD", + "codeIataAirline": "", + "codeIcaoAirline": "CVR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ChevronTexaco Aircraft Operations", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6133, + "callsign": "CHEVRON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CVR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chevron U.S.A.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6134, + "callsign": "CONVERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CVS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Convers Avia Airline", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6135, + "callsign": "CVETA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CVT", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Peran", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6136, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CVV", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comeravia", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6137, + "callsign": "COMERAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CVV", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comercial de Aviacion (Comeravia)", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6138, + "callsign": "CANADA WEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CWA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canada West Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6139, + "callsign": "CELTIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CWE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Celtic West Co. Air Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6140, + "callsign": "CONTIWINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CWG", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Continental Wings", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6141, + "callsign": "CARO-WINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CWG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caro-Wings Flight Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6142, + "callsign": "WARPLANE HERITAGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CWH", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canadian Warplane Heritage Museum", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6143, + "callsign": "CONTICOM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CWK", + "codeIso2Country": "KM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Continental Wings - Comoros Airlines", + "nameCountry": "Comoros", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6144, + "callsign": "CRANWELL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CWL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cranwell FTU", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6145, + "callsign": "AIR MARSHALLS", + "codeHub": "MAJ", + "codeIataAirline": "", + "codeIcaoAirline": "CWM", + "codeIso2Country": "MH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Marshall Islands", + "nameCountry": "Marshall Islands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6146, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CWM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Marshall Islands", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6147, + "callsign": "CAMBRIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CWN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cardiff Wales Flying Club", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6148, + "callsign": "COASTWATCH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CWP", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Australian Customs Service - Coastwatch", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6149, + "callsign": "CITY WORLD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CWR", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Beijing City International Jet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6150, + "callsign": "SWAZI CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CWS", + "codeIso2Country": "SZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Swazi Cargo", + "nameCountry": "Swaziland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6151, + "callsign": "TEXAS AIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CWT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Texas Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6152, + "callsign": "CANAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CWW", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6153, + "callsign": "CROW EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CWX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Crow Executive Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6154, + "callsign": "CAUSEWAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CWY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Woodgate Aviation (NI) Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6155, + "callsign": "CAUSEWAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CWY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EAC Flight Training", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6156, + "callsign": "CAPWINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CWZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Capitol Wings Airline", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6157, + "callsign": "", + "codeHub": "AUA", + "codeIataAirline": "", + "codeIcaoAirline": "CXB", + "codeIso2Country": "AW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comlux Aruba", + "nameCountry": "Aruba", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6158, + "callsign": "ZHONG YUAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CXN", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zhong Yuan Aviation Co.", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6159, + "callsign": "CONROE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CXO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Conroe Aviation Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6160, + "callsign": "COASTAL", + "codeHub": "STX", + "codeIataAirline": "", + "codeIcaoAirline": "CXT", + "codeIso2Country": "VI", + "founding": 1976, + "iataPrefixAccounting": "", + "nameAirline": "Coastal Air", + "nameCountry": "U.S. Virgin Islands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6161, + "callsign": "CHEYENNE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CYA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cheyenne Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6162, + "callsign": "CITYBUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CYB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "City Air Bus", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6163, + "callsign": "CYPRAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CYC", + "codeIso2Country": "CY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cyprair Tours", + "nameCountry": "Cyprus", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6164, + "callsign": "AEROCHEYENNE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CYE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocheyenne", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6165, + "callsign": "SAKIRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CYE", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ordos General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6166, + "callsign": "COMPANY FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CYF", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Company Flight", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6167, + "callsign": "VICAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CYG", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yana Airlines", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6168, + "callsign": "", + "codeHub": "CGO", + "codeIataAirline": "", + "codeIcaoAirline": "CYH", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Henan Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6169, + "callsign": "CHRYSLER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CYL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chrysler Pentastar Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6170, + "callsign": "", + "codeHub": "BNE", + "codeIataAirline": "", + "codeIcaoAirline": "CYM", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compass Airlines (Australia)", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6171, + "callsign": "SNOWDON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CYM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cymru Wales Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6172, + "callsign": "CHINA CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CYN", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "China Air Cargo", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6173, + "callsign": "ZHONGYUAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CYN", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zhongyuan Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6174, + "callsign": "", + "codeHub": "ELP", + "codeIataAirline": "", + "codeIcaoAirline": "CYO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ATI Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6175, + "callsign": "COYOTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CYO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Transport", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6176, + "callsign": "BUDGET JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CYR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ryanair UK", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6177, + "callsign": "SKYBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CYS", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cypress Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6178, + "callsign": "CRYSTAL AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CYT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Crystal Shamrock", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6179, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6180, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6181, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6182, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZD", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6183, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZE", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6184, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZF", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6185, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6186, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZH", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6187, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6188, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZJ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6189, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZK", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6190, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6191, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6192, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6193, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6194, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZP", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6195, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZQ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6196, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6197, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6198, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6199, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZU", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6200, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZV", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6201, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZW", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6202, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZX", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6203, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZY", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6204, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "CZZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6205, + "callsign": "DECUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DAA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Decatur Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6206, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DAB", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dassault Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6207, + "callsign": "DOMINION AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DAC", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dominion Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6208, + "callsign": "DACO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DAC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "McDonnell Douglas", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6209, + "callsign": "DEWAN EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DAD", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Express", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6210, + "callsign": "DORADO AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DAD", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dorado Air", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6211, + "callsign": "DYNAMIC AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DAF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dynamic Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6212, + "callsign": "DANISH AIR FORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DAF", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Danish Air Force", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 6213, + "callsign": "DENAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DAI", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Denair Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6214, + "callsign": "STRATUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DAJ", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet A", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6215, + "callsign": "DAKAIRLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DAK", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dakair", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6216, + "callsign": "FLIGHT RESCUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DAM", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DAMES, Department of aviation under the Ministry of Emergency Situaion", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6217, + "callsign": "DANISH ARMY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DAR", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Danish Army", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6218, + "callsign": "", + "codeHub": "BAH", + "codeIataAirline": "", + "codeIcaoAirline": "DAS", + "codeIso2Country": "BH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Delmun Aviation Services", + "nameCountry": "Bahrain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6219, + "callsign": "DIALOGUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DAS", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dialogue-S-Aero", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6220, + "callsign": "DOLLAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DAS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dollar Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6221, + "callsign": "", + "codeHub": "KAD", + "codeIataAirline": "", + "codeIcaoAirline": "DAV", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dornier Aviation Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6222, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DAV", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dornier Aviation Nigeria", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6223, + "callsign": "DANTAX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DAX", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aalborg Airtaxi", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6224, + "callsign": "DAYA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DAY", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Daya Aviation", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6225, + "callsign": "HALA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DAZ", + "codeIso2Country": "SY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hala Fly Airlines", + "nameCountry": "Syria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6226, + "callsign": "DOUBLE-A", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DBA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Alpha", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6227, + "callsign": "DIAMOND BACK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DBC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gemini Air Group", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6228, + "callsign": "DATABIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DBD", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Niagara (1978) Limited", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6229, + "callsign": "DOVE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DBE", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Danube-Air", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6230, + "callsign": "DANBO", + "codeHub": "BJL", + "codeIataAirline": "", + "codeIcaoAirline": "DBG", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Dabia", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6231, + "callsign": "DUCHESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DBJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Duchess Of Brittany", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6232, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DBO", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Phoenix Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6233, + "callsign": "WHITE BEAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DBX", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Big White Bear Jet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6234, + "callsign": "DELCARIBE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxi del Caribe", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6235, + "callsign": "AERODACIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCA", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerodacia", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6236, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCA", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dacono Air", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6237, + "callsign": "DREAM CATCHER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dreamcatcher Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6238, + "callsign": "CARICARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCC", + "codeIso2Country": "BB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caribbean Air Cargo", + "nameCountry": "Barbados", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6239, + "callsign": "", + "codeHub": "LAD", + "codeIataAirline": "", + "codeIcaoAirline": "DCD", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air 26", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6240, + "callsign": "DUCARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCD", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air26", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6241, + "callsign": "", + "codeHub": "CUR", + "codeIataAirline": "", + "codeIcaoAirline": "DCE", + "codeIso2Country": "CW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dutch Caribbean Express", + "nameCountry": "Curacao", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6242, + "callsign": "DESERT STAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCF", + "codeIso2Country": "AG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DC Aviation Al-Futtaim", + "nameCountry": "Antigua and Barbuda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6243, + "callsign": "DON CARLOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCL", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos Don Carlos", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6244, + "callsign": "DOT COM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fltplan", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6245, + "callsign": "DIPLOMATIC CLEARANCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCN", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Federal Armed Forces, Federal Republic of Germany", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6246, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "David Crawshaw Consultants", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6247, + "callsign": "", + "codeHub": "NBO", + "codeIataAirline": "", + "codeIcaoAirline": "DCP", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Direct Connect", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6248, + "callsign": "DISCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCR", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Discovery Ltd", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6249, + "callsign": "", + "codeHub": "STR", + "codeIataAirline": "", + "codeIcaoAirline": "DCS", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DaimlerChrysler Aviation", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6250, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DC Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6251, + "callsign": "TWIN STAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCS", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Daimler Chrysler Aviation", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6252, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Direct Flight", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6253, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Directflight Limited", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6254, + "callsign": "DISCOVER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Discover Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6255, + "callsign": "", + "codeHub": "PTK", + "codeIataAirline": "", + "codeIcaoAirline": "DCX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pentastar Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6256, + "callsign": "DAIMLER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Daimler-Chrysler", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6257, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCX", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pentastar Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6258, + "callsign": "DUCOY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCY", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inversiones Y Promociones Ducoy", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6259, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DCZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6260, + "callsign": "DUSTY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DDA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "D & D Aviaion", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6261, + "callsign": "", + "codeHub": "SOF", + "codeIataAirline": "", + "codeIcaoAirline": "DDD", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flying Dandy", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6262, + "callsign": "DANDY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DDD", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Net 21", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6263, + "callsign": "ADDIS LINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DDS", + "codeIso2Country": "ET", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Addis Airlines", + "nameCountry": "Ethiopia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6264, + "callsign": "DANDY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DDY", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Dandy", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6265, + "callsign": "JET SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DEA", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Delta Aerotaxi", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6266, + "callsign": "TACAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DEE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dixie Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6267, + "callsign": "TIRPA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DEF", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Defense Service", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6268, + "callsign": "DANAJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DEJ", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dana Executive Jets", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6269, + "callsign": "DELTA JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DEJ", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Delta Jet", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6270, + "callsign": "DESTILA MIELES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DEM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Destiladora de Alcoholes Y Mieles", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6271, + "callsign": "DENEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DEN", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Denel Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6272, + "callsign": "AIR DARDAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DEP", + "codeIso2Country": "BA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dardan Air", + "nameCountry": "Bosnia and Herzegovina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6273, + "callsign": "DESTINA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DES", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Especializados Destina", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6274, + "callsign": "CHILCOTIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DES", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chilcotin Caribou Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6275, + "callsign": "DELTA AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DET", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Delta Aviation", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6276, + "callsign": "RED DEVILS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DEV", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Red Devils Parachute Display Team", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6277, + "callsign": "AERO COACH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DFA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Coach Aviation International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6278, + "callsign": "DARK BLUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DFC", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropartner", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6279, + "callsign": "", + "codeHub": "EXT", + "codeIataAirline": "", + "codeIcaoAirline": "DFL", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Directflight", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6280, + "callsign": "MEDIFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DFL", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Scandinavian Medicopter", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6281, + "callsign": "DWYAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DFS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dwyer Aircraft Sales", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6282, + "callsign": "SKYDRIFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DFT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skydrift Aircharter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6283, + "callsign": "DYLAN FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DFX", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dylan Flight Service", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6284, + "callsign": "YELLOW RIVER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DGA", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yellow River Delta General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6285, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DGC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicio Aereo de la Guardia Civil", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 6286, + "callsign": "", + "codeHub": "TBS", + "codeIataAirline": "", + "codeIcaoAirline": "DGD", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastern Express Georgia", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6287, + "callsign": "TBILAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DGD", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyway", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6288, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DGL", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "D.G.L. Air", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6289, + "callsign": "DGO JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DGO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dgo Jet", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6290, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DGP", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cuerpo Nacional de Policia", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6291, + "callsign": "DIGITAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DGT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Digital Equipment Corporation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6292, + "callsign": "", + "codeHub": "GRU", + "codeIataAirline": "", + "codeIcaoAirline": "DGX", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Digex Aero Cargo", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6293, + "callsign": "DASNA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DGX", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dasnair", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6294, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DGX", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dasnair", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6295, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DHA", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dahla Airlines", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6296, + "callsign": "DE HAVILLAND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DHC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "De Havilland", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6297, + "callsign": "HELIDAP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DHE", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DAP Helicopteros", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6298, + "callsign": "ARCHER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DHM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Archer Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6299, + "callsign": "", + "codeHub": "HLA", + "codeIataAirline": "", + "codeIcaoAirline": "DHV", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DHL Aviation (South Africa)", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6300, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DHV", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DHL Aviation South Africa", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6301, + "callsign": "WORLDSTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DHV", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DHL Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6302, + "callsign": "BLUE SKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DIA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Direct Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6303, + "callsign": "AEROMEDICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DIC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromedica", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6304, + "callsign": "DIALOGUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DIL", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dialogaero", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6305, + "callsign": "AERODIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DIN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerodin", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6306, + "callsign": "DIPFREIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DIP", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Diplomatic Freight Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6307, + "callsign": "AERODIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DIS", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerodis Aviacion", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6308, + "callsign": "DIX FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DIX", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dix Aviation", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6309, + "callsign": "DJIBOUTI AIR", + "codeHub": "JIB", + "codeIataAirline": "", + "codeIcaoAirline": "DJB", + "codeIso2Country": "DJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Djibouti Airlines", + "nameCountry": "Djibouti", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6310, + "callsign": "DYNAMICJET CHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DJC", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DJT Aviation", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6311, + "callsign": "DURANGO JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DJE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Durango Jet", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6312, + "callsign": "DESERT JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DJR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Desert Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6313, + "callsign": "DAYJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DJS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dayjet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6314, + "callsign": "DENVER JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DJT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Denver Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6315, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DKA", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Daka", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6316, + "callsign": "DUKE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DKE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jubilee Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6317, + "callsign": "DIMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DKR", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Darik Sky", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6318, + "callsign": "", + "codeHub": "FSD", + "codeIataAirline": "", + "codeIcaoAirline": "DKT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Aviation Courier", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6319, + "callsign": "DAKOTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DKT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sioux Falls Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6320, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DKT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Encore Air Cargo", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6321, + "callsign": "CHATTANOOGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DLB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chattanooga Jet Centre", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6322, + "callsign": "SOARCOPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DLC", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ruili Jingcheng Helicopters", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6323, + "callsign": "RED WISENT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DLF", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Direct Fly", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6324, + "callsign": "DELGOLFO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DLG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas del Golfo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6325, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DLI", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Delta Express International", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6326, + "callsign": "", + "codeHub": "CMB", + "codeIataAirline": "", + "codeIcaoAirline": "DLK", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Millenium Airlines", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6327, + "callsign": "", + "codeHub": "RML", + "codeIataAirline": "", + "codeIcaoAirline": "DLK", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Deccan Lanka", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6328, + "callsign": "DEKKANLANKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DLK", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Deccan Aviation (Lanka)", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6329, + "callsign": "DALMATIAN", + "codeHub": "SPU", + "codeIataAirline": "", + "codeIcaoAirline": "DLN", + "codeIso2Country": "HR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dalmatian", + "nameCountry": "Croatia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6330, + "callsign": "NAUTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DLO", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nauta", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6331, + "callsign": "DELPHINAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DLP", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Graf Und Maresch", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6332, + "callsign": "DALA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DLR", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dala Air Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6333, + "callsign": "AEROMODELO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DLS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Modelo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6334, + "callsign": "DATLITE", + "codeHub": "VNO", + "codeIataAirline": "", + "codeIcaoAirline": "DLT", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dat Lite", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6335, + "callsign": "DREAMLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DLX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dreamline Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6336, + "callsign": "DAILY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DLY", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Independence", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6337, + "callsign": "DINAMICAMONT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DMC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerodinamica de Monterrey", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6338, + "callsign": "DIAMOND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DMD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Diamond Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6339, + "callsign": "SKY DIAMOND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DMD", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "R S T Aviation", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6340, + "callsign": "DIAMONDJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DMD", + "codeIso2Country": "NA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Namdeb Diamond Corporation", + "nameCountry": "Namibia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6341, + "callsign": "DEMLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DMF", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dmcfly", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6342, + "callsign": "AERODINAMICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DMI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicios Dimamicos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6343, + "callsign": "", + "codeHub": "DXB", + "codeIataAirline": "", + "codeIcaoAirline": "DML", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Damal Airlines", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6344, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DML", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis Dosmil", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6345, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DMN", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Diamond Flight Academy Scandinavia", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6346, + "callsign": "AIR DIM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DMS", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Dimension", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6347, + "callsign": "ULTIMATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DMT", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Dan", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6348, + "callsign": "FLYINGOLIVE", + "codeHub": "AGP", + "codeIataAirline": "", + "codeIcaoAirline": "DNC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerodynamics Malaga", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6349, + "callsign": "DINDER", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "DND", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eldinder Aviation", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6350, + "callsign": "", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "DND", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6351, + "callsign": "VENID", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DNE", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Venid Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6352, + "callsign": "AERO DENIM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DNI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Denim", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6353, + "callsign": "DIRECT JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DNK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "D & K Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6354, + "callsign": "DIRECT JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DNL", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "D & K Aviation", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6355, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DNN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6356, + "callsign": "DONIYA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DNO", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Doniya Air Gambia", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6357, + "callsign": "DYNAMAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DNR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dynamair Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6358, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DNS", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dniproaviaservis", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6359, + "callsign": "DONEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DNX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Donoghue Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6360, + "callsign": "DANISH NAVY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DNY", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Danish Navy", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6361, + "callsign": "HELIDOC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DOC", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norsk Luftambulanse", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6362, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DOD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "USAF Air Mobility Operations Control Center", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6363, + "callsign": "INTERIOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DOI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "U.S. Department of the Interior, Office of Aircraft Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6364, + "callsign": "", + "codeHub": "OKC", + "codeIataAirline": "", + "codeIcaoAirline": "DOJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JPATS", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 6365, + "callsign": "JUSTICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DOJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "US Department Of Justice Prisoner & Alien Transportation Service (JPATS)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6366, + "callsign": "DOCTOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DOK", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norwegian Air Ambulance", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6367, + "callsign": "DOLLAR SIGN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DOL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Million Air Longview", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6368, + "callsign": "DOME AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DOM", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Domergue Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6369, + "callsign": "DOS MUNDOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DOM", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dos Mundos", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6370, + "callsign": "DONAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DON", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Donair Flying Club", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6371, + "callsign": "DANCOPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DOP", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dancopter", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6372, + "callsign": "DORNIER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DOR", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dornier", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6373, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DOS", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Icec Tour", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6374, + "callsign": "DOT TEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DOT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Telnic", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6375, + "callsign": "DOVAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DOV", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dove Air", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6376, + "callsign": "DOWNTOWN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DOW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Best Jets International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6377, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DPC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6378, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DPH", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Domodedovo Airport Handling", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6379, + "callsign": "JET CARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DPJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Delta Private Jets", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6380, + "callsign": "DOME", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DPL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dome Petroleum", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6381, + "callsign": "BLUE-GRAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DPS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alabama Department of Public Safety", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6382, + "callsign": "LIBERTAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DPT", + "codeIso2Country": "HR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Libertas Airways", + "nameCountry": "Croatia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6383, + "callsign": "DRAVIDIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dravidian Air Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6384, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRA", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Deer Air", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6385, + "callsign": "DIDIER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRB", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Didier Rousset Buy", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6386, + "callsign": "TRITON AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Triton Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6387, + "callsign": "DARDANEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRD", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dardanel Air Havacilik Ve Sanayi Ticaret", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6388, + "callsign": "MICHIGAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Drummond Island Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6389, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dream Flyers Training Center", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6390, + "callsign": "DESERT JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRJ", + "codeIso2Country": "SA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mid East Air Charters", + "nameCountry": "Saudi Arabia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6391, + "callsign": "DRILLER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Omni Air Transport", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6392, + "callsign": "DARTMOOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airways Flight Training", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6393, + "callsign": "DISCOS REYNOSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Central de Discos de Reynosa", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6394, + "callsign": "AERONORESTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronaves Del Noreste", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6395, + "callsign": "ADRO SERVICIOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Adro Servicios Aereos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6396, + "callsign": "DRENAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRS", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Drenair", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6397, + "callsign": "DREAMSHORE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dreamshore Aero", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6398, + "callsign": "DARTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Charter DARTA", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6399, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DARTA", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6400, + "callsign": "MIRNY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRU", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Diamonds Of Russia-Sakha", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6401, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRX", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Des R. Cargo Express", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6402, + "callsign": "DERAYA", + "codeHub": "HLP", + "codeIataAirline": "", + "codeIcaoAirline": "DRY", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Deraya Air Taxi", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6403, + "callsign": "DERAZONA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DRZ", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Derazona Air Service", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6404, + "callsign": "DANBURY AIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DSA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Danbury Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6405, + "callsign": "ADDIS CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DSC", + "codeIso2Country": "ET", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Addis Air Cargo Services", + "nameCountry": "Ethiopia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6406, + "callsign": "DISCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DSF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "David See Flying Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6407, + "callsign": "DASH CHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DSH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dash Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6408, + "callsign": "SKYBANNER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DSK", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Algarve", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6409, + "callsign": "DIESEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DSL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meridian Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6410, + "callsign": "DIAMOND AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DSL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Diamond Sakha Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6411, + "callsign": "DESNA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DSN", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Desna", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6412, + "callsign": "DASSAULT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DSO", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dassault Falcon Service", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6413, + "callsign": "SURAVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DSP", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Suraviation", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6414, + "callsign": "DASAB AIR", + "codeHub": "ABV", + "codeIataAirline": "", + "codeIcaoAirline": "DSQ", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dasab Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6415, + "callsign": "DESERT", + "codeHub": "PHX", + "codeIataAirline": "", + "codeIcaoAirline": "DST", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aex Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6416, + "callsign": "DELTA STATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DSU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Delta State University", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6417, + "callsign": "", + "codeHub": "BBU", + "codeIataAirline": "", + "codeIcaoAirline": "DSV", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Direct Aero Services", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6418, + "callsign": "DARIDA-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DTE", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tamas Darida Enterprise", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6419, + "callsign": "AERO OCCIDENTAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DTL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Occidental", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6420, + "callsign": "DATA AIR", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "DTN", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DATA International Aviation", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6421, + "callsign": "", + "codeHub": "CJC", + "codeIataAirline": "", + "codeIcaoAirline": "DTO", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AeroDesierto", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6422, + "callsign": "", + "codeHub": "IQQ", + "codeIataAirline": "", + "codeIcaoAirline": "DTO", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chilean Airways", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "start_up", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6423, + "callsign": "AERODESIERTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DTO", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ADA - AeroDesierto Airlines", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6424, + "callsign": "", + "codeHub": "BKO", + "codeIataAirline": "", + "codeIcaoAirline": "DTS", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Douniah Airlines", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6425, + "callsign": "DUTCH VALLEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DTV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centre Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6426, + "callsign": "DELTEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DTX", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Deltex", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6427, + "callsign": "", + "codeHub": "FNA", + "codeIataAirline": "", + "codeIcaoAirline": "DTY", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Destiny Air Services", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6428, + "callsign": "DUSHANBE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DUA", + "codeIso2Country": "TJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dushanbe Air", + "nameCountry": "Tajikistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6429, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DUB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dubai Air Wing", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6430, + "callsign": "DUNCAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DUC", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircompany Duncan", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6431, + "callsign": "", + "codeHub": "SVFM", + "codeIataAirline": "", + "codeIcaoAirline": "DUG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotecnica", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6432, + "callsign": "ATSAVEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DUG", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotecnica", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6433, + "callsign": "LION KING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DUK", + "codeIso2Country": "LU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ducair", + "nameCountry": "Luxembourg", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6434, + "callsign": "HAWKER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DUN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dunsfold BAe", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6435, + "callsign": "DUNAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DUN", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dunair", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6436, + "callsign": "SERENDIB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DUT", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Serendib Air International", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6437, + "callsign": "DONSEBAI", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "DVB", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Don Avia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6438, + "callsign": "AERO DAVINCI", + "codeHub": "REX", + "codeIataAirline": "", + "codeIcaoAirline": "DVI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Davinci Internacional", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6439, + "callsign": "DVIN-AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DVN", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dvin-Avia", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6440, + "callsign": "", + "codeHub": "CUR", + "codeIataAirline": "", + "codeIcaoAirline": "DVR", + "codeIso2Country": "CW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Divi Divi Air", + "nameCountry": "Curacao", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6441, + "callsign": "DIVI AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DVR", + "codeIso2Country": "AN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Divi Divi Air", + "nameCountry": "Netherlands Antilles", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6442, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DVR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Divi Divi Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6443, + "callsign": "AEROTAXI DVZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DVZ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxi DVZ", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6444, + "callsign": "", + "codeHub": "OST", + "codeIataAirline": "", + "codeIcaoAirline": "DWA", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ducor World Airlines", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6445, + "callsign": "DUCOR WORLD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DWA", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ducor World Airlines", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6446, + "callsign": "DAWN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DWN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dawn Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6447, + "callsign": "DELAWARE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DWR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Delaware Skyways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6448, + "callsign": "DON JUAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DWW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Courier Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6449, + "callsign": "DALLAS EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DXP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dallas Express Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6450, + "callsign": "", + "codeHub": "BKA", + "codeIataAirline": "", + "codeIcaoAirline": "DXT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dexter Air Taxi", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6451, + "callsign": "DEXTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DXT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Management Group", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6452, + "callsign": "DYNAMITE", + "codeHub": "RTM", + "codeIataAirline": "", + "codeIcaoAirline": "DYE", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dynamic Air", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6453, + "callsign": "DYNAMIC SKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DYM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dynamic Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6454, + "callsign": "DUVALAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DYT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yankee Delta", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6455, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6456, + "callsign": "DOZER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "DZR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midwest Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6457, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "E13", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Air Transport", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6458, + "callsign": "TANDINO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAA", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transporte Aereo Andino (TAAN)", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6459, + "callsign": "SWISS EAGLE", + "codeHub": "BRN", + "codeIataAirline": "", + "codeIcaoAirline": "EAB", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swiss Eagle", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6460, + "callsign": "SWISS EAGLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAB", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Air", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6461, + "callsign": "EXECAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6462, + "callsign": "AERO-ESCOLA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAD", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EAA - Escola de Aviacao AeroCondor", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6463, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Airways", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6464, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European Aeronautical Group", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6465, + "callsign": "EASTERN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baltimore Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6466, + "callsign": "ELAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAI", + "codeIso2Country": "TG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elite Air", + "nameCountry": "Togo", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6467, + "callsign": "EX LINK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Air Link", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6468, + "callsign": "PHILIPPINE EAGLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAL", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Philippine Eagle Airlines", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6469, + "callsign": "STAR WING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAL", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European Air Express", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6470, + "callsign": "EMBASSY AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAM", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Embassy Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6471, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "EAN", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Axiom Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6472, + "callsign": "NIGERIA EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAN", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Express Airways", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6473, + "callsign": "AERO-PYRENEES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAP", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero-Pyrenees", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6474, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAP", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linea Aerea Imperial (LAI)", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6475, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAQ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastern Australia", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6476, + "callsign": "EJECUTIVO-AEREO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transporte Ejecutivo Aereo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6477, + "callsign": "", + "codeHub": "DUR", + "codeIataAirline": "", + "codeIcaoAirline": "EAS", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Aerospace", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6478, + "callsign": "AEROSPACE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAS", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Aero Space", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6479, + "callsign": "ENGERT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Engert Aviation Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6480, + "callsign": "TRANS EUROPE", + "codeHub": "TAT", + "codeIataAirline": "", + "codeIcaoAirline": "EAT", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Transport", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6481, + "callsign": "EAGLE EUROPEAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAU", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle European Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6482, + "callsign": "ELITE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAU", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elitavia Malta", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6483, + "callsign": "ELITAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAV", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elit'Avia", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6484, + "callsign": "EASTEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EAX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastern Air Executive", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6485, + "callsign": "EUROVIA", + "codeHub": "OSR", + "codeIataAirline": "", + "codeIcaoAirline": "EAY", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurovia Air", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6486, + "callsign": "BOND AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EBA", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bond Aviation", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6487, + "callsign": "CALIEXET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EBC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Ejecutivo de Baja California", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6488, + "callsign": "MINEBEA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EBE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Minebea Technologies", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6489, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EBF", + "codeIso2Country": "BS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Echo Airlines", + "nameCountry": "Bahamas", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6490, + "callsign": "SKYRUNNER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EBF", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MSR Flug-Charter", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6491, + "callsign": "EUROSENSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EBG", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurosense", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6492, + "callsign": "SKY ELITE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EBJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European Business Jets", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6493, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EBS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AEG Aviation Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6494, + "callsign": "ELIFLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EBS", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eli-fly", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6495, + "callsign": "ELITE BLUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EBU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Delta AirElite", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6496, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EBV", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerbrava", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6497, + "callsign": "EAGLEAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Commuter Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6498, + "callsign": "DARK KNIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECA", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "OHL Air Charterflug", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6499, + "callsign": "�CLAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECC", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "�clair Aviation", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6500, + "callsign": "ECOTOUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ecotour", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6501, + "callsign": "EUROCITY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurocity Express", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6502, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECF", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airbus Helicopters", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6503, + "callsign": "EUROCOPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECF", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurocopter", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6504, + "callsign": "EJECUTIVIS RCG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Ejecutivos R.C.G.", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6505, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECH", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ESN Jet Service", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6506, + "callsign": "EASTERN CAROLINA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastern Carolina Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6507, + "callsign": "EASTCOAST JET", + "codeHub": "ABE", + "codeIataAirline": "", + "codeIcaoAirline": "ECJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East Coast Jets", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6508, + "callsign": "EAST COAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECK", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East Coast Airlines", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6509, + "callsign": "AERO CASTELLANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECL", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronautica Castellana", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6510, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECL", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euro City Line", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6511, + "callsign": "AERO COMERCIALES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Comerciales", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6512, + "callsign": "EURO CONTINENTAL", + "codeHub": "BCN", + "codeIataAirline": "", + "codeIcaoAirline": "ECN", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euro Continental Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6513, + "callsign": "SKYBRIDGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECQ", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eco Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6514, + "callsign": "ECHO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECS", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Aircraft Charter And Charter Services", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6515, + "callsign": "", + "codeHub": "VIR", + "codeIataAirline": "", + "codeIcaoAirline": "ECT", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East Coast Airways (South Africa)", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6516, + "callsign": "EUROCOMMANDER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurocommander", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6517, + "callsign": "EASTWAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECT", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East Coast Airways", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6518, + "callsign": "ECUAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECU", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ecuavia Compania Limitada", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6519, + "callsign": "EQUATOGUINEA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECV", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ecuatoguineana de Aviacion", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6520, + "callsign": "ECOTRAVEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECW", + "codeIso2Country": "BF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eco Airways", + "nameCountry": "Burkina Faso", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6521, + "callsign": "AIR ECOMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECX", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ecomex Air Cargo", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6522, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ECZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6523, + "callsign": "", + "codeHub": "KIN", + "codeIataAirline": "", + "codeIcaoAirline": "EDA", + "codeIso2Country": "JM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Exec Direct Aviation", + "nameCountry": "Jamaica", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6524, + "callsign": "SALTIRE", + "codeHub": "PSL", + "codeIataAirline": "", + "codeIcaoAirline": "EDC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Charter Scotland", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6525, + "callsign": "SALTIRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EDC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Edinburgh Air Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6526, + "callsign": "LINEAS DURANGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EDD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas Ejecutivas de Durango", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6527, + "callsign": "JET EDGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EDG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Edge", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6528, + "callsign": "", + "codeHub": "BIL", + "codeIataAirline": "", + "codeIcaoAirline": "EDJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Edwards Jet Center of Montana", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6529, + "callsign": "EDWARDS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EDJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Edwards Jet Cner of Montana", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6530, + "callsign": "POLICE EDELWEISS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EDL", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polizeihubschrauberstaffel Bayern", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6531, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EDN", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eden", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6532, + "callsign": "ELIDOLOMITI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EDO", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elidolomiti", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6533, + "callsign": "EDACOM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EDO", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Edacom", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6534, + "callsign": "BIRDVIEW", + "codeHub": "PBM", + "codeIataAirline": "", + "codeIcaoAirline": "EDR", + "codeIso2Country": "SR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly AllWays", + "nameCountry": "Suriname", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6535, + "callsign": "ELDORADO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EDR", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "El Dorado Colombia - Lineas Aereas Eldorado", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6536, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EDS", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EDS Air Services", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6537, + "callsign": "SOLWAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EDY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Apollo Air Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6538, + "callsign": "QUICK SPEED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EEC", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Carry Air", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6539, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EEE", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6540, + "callsign": "MELISSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EEF", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ema Air", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6541, + "callsign": "ELISYSTEM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EEI", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elisystem Eliagricola", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6542, + "callsign": "EJAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EEJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euro Executive Jet", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6543, + "callsign": "EJEAERMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EEM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ejecutivo Aereo de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6544, + "callsign": "SKY NIGHTS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EES", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Europe Executive Jet Services", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6545, + "callsign": "EAGLE STAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EES", + "codeIso2Country": "RS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Express", + "nameCountry": "Serbia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6546, + "callsign": "AESTE", + "codeHub": "VLC", + "codeIataAirline": "", + "codeIcaoAirline": "EET", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Este", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6547, + "callsign": "EUROFLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EEU", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurofly Service", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6548, + "callsign": "EXAV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EEV", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ex. A.V. Executive Aviation", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6549, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EEX", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avanti Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6550, + "callsign": "EUROEXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EEX", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avanti Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6551, + "callsign": "EXECUTIVE EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EEX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Express Aviation", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6552, + "callsign": "NETWORK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EEX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euro Express Cargo Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6553, + "callsign": "CARGOCANARIAS", + "codeHub": "MAD", + "codeIataAirline": "", + "codeIcaoAirline": "EFA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euro First Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6554, + "callsign": "EXPRESS FREIGHT", + "codeHub": "SYD", + "codeIataAirline": "", + "codeIcaoAirline": "EFA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Express Freighters Australia", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6555, + "callsign": "FLIGHT TAXI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EFC", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Mana", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6556, + "callsign": "EVER FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EFD", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "E Aviation / EFD Eisele Flugdienst", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6557, + "callsign": "EFREIGHT SUDAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EFE", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "E-Freight International", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6558, + "callsign": "ERMOLINO AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EFE", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ermolino Flying Test Research Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6559, + "callsign": "EMERALD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EFF", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Westair Aviation", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6560, + "callsign": "EMERALD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EFF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Emerald Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6561, + "callsign": "ELIFRIULIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EFG", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elifriulia", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6562, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EFO", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Estop Estudios de Fotografia, S.A.", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6563, + "callsign": "ELFAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EFR", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "934", + "nameAirline": "Elf Air", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6564, + "callsign": "ERFOTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EFR", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Erfoto", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6565, + "callsign": "EFAOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EFS", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Efaos", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6566, + "callsign": "EMBASSY FREIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EFT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Embassy Freight Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6567, + "callsign": "ZIPLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EFT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Execuflight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6568, + "callsign": "EASY EXPRESS", + "codeHub": "DAC", + "codeIataAirline": "", + "codeIcaoAirline": "EFX", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Easy Fly Express", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6569, + "callsign": "", + "codeHub": "ISB", + "codeIataAirline": "", + "codeIcaoAirline": "EGA", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Eagle", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6570, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EGB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Excellent Glide", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6571, + "callsign": "EAGLE CREEK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EGC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "First Wing Aircraft Charter and Maintenance", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6572, + "callsign": "GYRO TREKKER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EGE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Expedition Golden Eagle", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6573, + "callsign": "EAGLE FLIGHT", + "codeHub": "DFW", + "codeIataAirline": "", + "codeIcaoAirline": "EGF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Envoy", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6574, + "callsign": "PRESTIGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EGL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Capital Trading Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6575, + "callsign": "AERO ESTERGOM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EGM", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroclub Esztergom", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6576, + "callsign": "", + "codeHub": "SNR", + "codeIataAirline": "", + "codeIcaoAirline": "EGN", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Aviation (France)", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6577, + "callsign": "FRENCH EAGLE", + "codeHub": "SNR", + "codeIataAirline": "", + "codeIcaoAirline": "EGN", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Aviation France", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6578, + "callsign": "GAUTENG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EGO", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gauteng Air Cargo", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6579, + "callsign": "TASCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EGP", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thai Aerospace Services", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6580, + "callsign": "", + "codeHub": "CKY", + "codeIataAirline": "", + "codeIcaoAirline": "EGR", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Air (Guinea)", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6581, + "callsign": "PREDATOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EGT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6582, + "callsign": "GLEISNER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EGV", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Enrique Gleisner Vivanco", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6583, + "callsign": "THAI EAGLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EGX", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Air", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6584, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EGY", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Egyptian Air Force", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 6585, + "callsign": "AIRE HAMPTON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EHA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East Hampton Aire", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6586, + "callsign": "PLATINUM AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EHD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "E H Darby Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6587, + "callsign": "EAST HORIZON", + "codeHub": "KBL", + "codeIataAirline": "", + "codeIcaoAirline": "EHN", + "codeIso2Country": "AF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East Horizon Airlines", + "nameCountry": "Afghanistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6588, + "callsign": "ROTOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EHR", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nordurflug", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6589, + "callsign": "ELITOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EHS", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elitos", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6590, + "callsign": "EVERGREEN", + "codeHub": "CSG", + "codeIataAirline": "", + "codeIcaoAirline": "EIA", + "codeIso2Country": "UM", + "founding": 1975, + "iataPrefixAccounting": "", + "nameAirline": "Evergreen International", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6591, + "callsign": "EXCARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EIC", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Express International Cargo", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6592, + "callsign": "EIRJET", + "codeHub": "SNN", + "codeIataAirline": "", + "codeIcaoAirline": "EIR", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eirjet", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6593, + "callsign": "COOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EIS", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "E.I.S. Aircraft", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6594, + "callsign": "AIR EXPORTS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EIX", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EI Air Exports", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6595, + "callsign": "EXECJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EJA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NetJets Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6596, + "callsign": "GRUPOEJECUTIVA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EJC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grupo de Aviacion Ejecutiva", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6597, + "callsign": "", + "codeHub": "DXB", + "codeIataAirline": "", + "codeIcaoAirline": "EJD", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elite Jets", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6598, + "callsign": "EXJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EJE", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Jet Aviation", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6599, + "callsign": "SKY BEAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EJG", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Execujet Europe", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6600, + "callsign": "JET SPEED", + "codeHub": "LUK", + "codeIataAirline": "", + "codeIcaoAirline": "EJM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Jet Management", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6601, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EJM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Jet Management", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6602, + "callsign": "MIDJET", + "codeHub": "DWC", + "codeIataAirline": "", + "codeIcaoAirline": "EJO", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Execujet Middle East", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6603, + "callsign": "EJECORPORATIVOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EJP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicios Ejecutivos Corporativos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6604, + "callsign": "EEJAY SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EJS", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurojet Servis", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6605, + "callsign": "ECLIPSE JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EJT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eclipse Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6606, + "callsign": "AEROIVA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EJT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Ejecutiva", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6607, + "callsign": "EJECUTIVA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EJV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania Ejecutiva", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6608, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EJX", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Egyptian Aviation", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6609, + "callsign": "", + "codeHub": "FIH", + "codeIataAirline": "", + "codeIcaoAirline": "EJZ", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Jet Services", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6610, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EJZ", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Jet Service", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6611, + "callsign": "BLUE GOOSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EKC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East Kansas City Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6612, + "callsign": "EQUAJET", + "codeHub": "BZV", + "codeIataAirline": "", + "codeIcaoAirline": "EKJ", + "codeIso2Country": "CG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Equajet", + "nameCountry": "Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6613, + "callsign": "CONCISE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EKO", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroeko", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6614, + "callsign": "ECOPATROL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EKP", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Small Enterprise (Ecopatroil)", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6615, + "callsign": "", + "codeHub": "SAP", + "codeIataAirline": "", + "codeIcaoAirline": "EKY", + "codeIso2Country": "HN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EasySky", + "nameCountry": "Honduras", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6616, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EKY", + "codeIso2Country": "HN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EasySky Airlines", + "nameCountry": "Honduras", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6617, + "callsign": "ELILOMBARDIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELB", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elieuro", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6618, + "callsign": "CHARTERS ESTONIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELC", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Small Planet Airlines", + "nameCountry": "Estonia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6619, + "callsign": "ELILARIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELC", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elilario", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6620, + "callsign": "", + "codeHub": "ATH", + "codeIataAirline": "", + "codeIcaoAirline": "ELD", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Electra Airlines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6621, + "callsign": "ELECTRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELD", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Electra Ailrines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6622, + "callsign": "ELECTRICITY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S W Electricity", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6623, + "callsign": "LARIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELH", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elilario Italia", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6624, + "callsign": "HELIARCOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELI", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heliarcos", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6625, + "callsign": "", + "codeHub": "BTS", + "codeIataAirline": "", + "codeIcaoAirline": "ELJ", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elite Jet (Slovakia)", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6626, + "callsign": "ELITE JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Delta AirElite", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6627, + "callsign": "TOPJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELJ", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elite Jet", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6628, + "callsign": "CRELAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Crelam", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6629, + "callsign": "ELMAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elmdon Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6630, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELN", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nordic European Airlines International", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6631, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELP", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Ambulance Malta", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6632, + "callsign": "AEROSANLUIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Ejecutivas de San Luis Potosi", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6633, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELR", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elrom Aviation And Investments", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6634, + "callsign": "EL SAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELS", + "codeIso2Country": "SV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "El Sal Air", + "nameCountry": "El Salvador", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6635, + "callsign": "ELLIOTT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elliott Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6636, + "callsign": "EGYPTIAN LEISURE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELU", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Egyptian Leisure Airlines", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6637, + "callsign": "YELLOW WINGS", + "codeHub": "WIL", + "codeIataAirline": "", + "codeIcaoAirline": "ELW", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yellow Wings Air Serivces", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6638, + "callsign": "ELITORINO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELW", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elitorino", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6639, + "callsign": "ELAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elan Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6640, + "callsign": "HOPPER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ELZ", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alpha Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6641, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EMA", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Egyptian Aviation Company", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6642, + "callsign": "EMBRAER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EMB", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Empresa Brasileira de Aeronautica", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6643, + "callsign": "EAGLEMED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EMD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eaglemed", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6644, + "callsign": "EMAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EME", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastern Metro Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6645, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "EMI", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PAS - Premium Air Shuttle", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6646, + "callsign": "BLUE SHUTTLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EMI", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Premium Air Shuttle", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6647, + "callsign": "EMALUSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EML", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EMA, Empresa de Melos Aereos", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6648, + "callsign": "EMMA-NIKAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EMM", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Emma-Nik Aviation Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6649, + "callsign": "RULER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EMM", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Emperor Aviation", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6650, + "callsign": "AGENCY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EMN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Examiner Training Agency", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6651, + "callsign": "EMPIRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EMP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Empire Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6652, + "callsign": "EMPIRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EMP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Empire Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6653, + "callsign": "ZEMMOUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EMR", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zemmour Airlines", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6654, + "callsign": "EMPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EMS", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Preferred Flights", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6655, + "callsign": "SERVIEMPRESARIAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EMS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Servicios Empresariales", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6656, + "callsign": "EMETEBE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EMT", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Emetebe", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6657, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EMU", + "codeIso2Country": "HK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Shuttle Helicopters Limited", + "nameCountry": "Hong Kong", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6658, + "callsign": "EXCLUSIVOMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EMX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vuelos Exclusivos de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6659, + "callsign": "ENDECOTS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ENC", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Endecots", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6660, + "callsign": "ARRENDADORA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "END", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arrendadora y Transortadora Aerea", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6661, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ENE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Enerjet", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6662, + "callsign": "ENAV CHECK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ENF", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ENAC", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6663, + "callsign": "ENIMEX", + "codeHub": "TLL", + "codeIataAirline": "", + "codeIcaoAirline": "ENI", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Enimex", + "nameCountry": "Estonia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6664, + "callsign": "SUNBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ENK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Airlink", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6665, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ENN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6666, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ENR", + "codeIso2Country": "NA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Scenic Air", + "nameCountry": "Namibia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6667, + "callsign": "ENTERGY SHUTTLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ENS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Entergy Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6668, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ENT", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Hamilton", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6669, + "callsign": "ENTERPRISE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ENT", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Holmstorm Flyg", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6670, + "callsign": "DATENT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ENT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dat Enterprise", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6671, + "callsign": "ENDEAVOUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ENV", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Victoria Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6672, + "callsign": "AERONOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ENW", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airnor", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6673, + "callsign": "GENESIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ENX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Enex Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6674, + "callsign": "LOMBARDA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EOA", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elilombarda", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6675, + "callsign": "EOLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EOL", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airailes", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6676, + "callsign": "AERO ERMES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EOM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Ermes", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6677, + "callsign": "EXECUJET OPS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EOP", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Execujet Flight Operations", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6678, + "callsign": "EOLO PLUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EOP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eolo Plus", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6679, + "callsign": "ELIOSSOLA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EOS", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eliossola", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6680, + "callsign": "EXWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EPA", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Express Airways", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6681, + "callsign": "EAST PAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EPB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastern Pacific Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6682, + "callsign": "DONG JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EPB", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Donghai Business Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6683, + "callsign": "ESPACE", + "codeHub": "FIH", + "codeIataAirline": "", + "codeIcaoAirline": "EPC", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Espace Aviation Services", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6684, + "callsign": "", + "codeHub": "NTR", + "codeIataAirline": "", + "codeIcaoAirline": "EPE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovitro", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6685, + "callsign": "AEROEMPRESARIAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EPE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Empresarial", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6686, + "callsign": "ESPEJO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EPJ", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trabajos Aereos Espejo", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6687, + "callsign": "EMPRESARIALES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EPL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Transportes Empresariales", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6688, + "callsign": "EUROPLANE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EPN", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Europlane", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6689, + "callsign": "", + "codeHub": "MBX", + "codeIataAirline": "", + "codeIcaoAirline": "EPR", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Express Airways (Slovenia)", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "restarting", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6690, + "callsign": "EMPEROR", + "codeHub": "MBX", + "codeIataAirline": "", + "codeIcaoAirline": "EPR", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Express Airways", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6691, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EPR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Express Airways", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6692, + "callsign": "EXPRESO AEREO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EPR", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Expreso Aereo", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6693, + "callsign": "", + "codeHub": "PDK", + "codeIataAirline": "", + "codeIcaoAirline": "EPS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Epps Aviation Center", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6694, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EPS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Epps Air Service", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6695, + "callsign": "EPPS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EPS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Epps Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6696, + "callsign": "ELITACAPULCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EPU", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Elite Acapulco", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6697, + "callsign": "", + "codeHub": "SSG", + "codeIataAirline": "", + "codeIcaoAirline": "EQC", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Equatorial Cargo", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6698, + "callsign": "ECUA-CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EQC", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ecuatorial Cargo", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6699, + "callsign": "EQUATORIAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EQL", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Equatorial Airlines of Sao Tome And Principe", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6700, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EQT", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Equatorial Airlines", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6701, + "callsign": "ZAMBIA CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EQZ", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Equatair Air Service", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6702, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ERA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis Tucan", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6703, + "callsign": "EUROCOMMANDER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ERA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurocommander", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6704, + "callsign": "ESSO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ERC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Esso Resources Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6705, + "callsign": "SEREAD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ERD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Empresariales Y Administrativos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6706, + "callsign": "AIR ERIE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ERE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Erie Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6707, + "callsign": "AEROFATRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ERF", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerofatra", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6708, + "callsign": "AVIAENERGO", + "codeHub": "SVO", + "codeIataAirline": "", + "codeIcaoAirline": "ERG", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviaenergo", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6709, + "callsign": "ERAH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ERH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Era Helicopters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6710, + "callsign": "ASERGIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ERI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Servicios Regiomontanos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6711, + "callsign": "JET ITALIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ERJ", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurojet Italia", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6712, + "callsign": "AEROSEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ERK", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerosec", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6713, + "callsign": "AEROLAB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ERL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolab", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6714, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ERM", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromar Airlines", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6715, + "callsign": "EOMAAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ERM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromaan", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6716, + "callsign": "BLUE HAWK", + "codeHub": "PGX", + "codeIataAirline": "", + "codeIcaoAirline": "ERN", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolinair", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6717, + "callsign": "EASTERN AIRCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ERN", + "codeIso2Country": "MN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastern Airlines", + "nameCountry": "Mongolia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6718, + "callsign": "ERAH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ERR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Era Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6719, + "callsign": "", + "codeHub": "EVN", + "codeIataAirline": "", + "codeIcaoAirline": "ERV", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yer-Avia", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6720, + "callsign": "YEREBAN-AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ERV", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "998", + "nameAirline": "Yerevan-Avia", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6721, + "callsign": "EARTH AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ERX", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Earth Airlines services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6722, + "callsign": "SEAGREEN", + "codeHub": "ANU", + "codeIataAirline": "", + "codeIcaoAirline": "ESA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Seagreen Air Transport", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6723, + "callsign": "AEREOSABA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ESB", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aereosaba", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6724, + "callsign": "", + "codeHub": "TLL", + "codeIataAirline": "", + "codeIcaoAirline": "ESC", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FlyLAL Charters Estonia", + "nameCountry": "Estonia", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6725, + "callsign": "", + "codeHub": "TLL", + "codeIataAirline": "", + "codeIcaoAirline": "ESC", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Wind Airlines", + "nameCountry": "Estonia", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6726, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ESC", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FlyLAL Charter Eesti AS", + "nameCountry": "Estonia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6727, + "callsign": "ESEN AIR", + "codeHub": "FRU", + "codeIataAirline": "", + "codeIcaoAirline": "ESD", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Esen Air", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6728, + "callsign": "", + "codeHub": "HLP", + "codeIataAirline": "", + "codeIcaoAirline": "ESD", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EastIndo", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6729, + "callsign": "AVESEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ESE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avesen", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6730, + "callsign": "ENSANADA ESPECIAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ESE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ensenada Vuelos Especiales", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6731, + "callsign": "ESTONIAN REGIONAL", + "codeHub": "TLL", + "codeIataAirline": "", + "codeIcaoAirline": "ESG", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Estonian Air Regional", + "nameCountry": "Estonia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6732, + "callsign": "ELISERVIZI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ESI", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Esi Eliservizi Italiani", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6733, + "callsign": "EASTERN SKYJETS", + "codeHub": "DXB", + "codeIataAirline": "", + "codeIcaoAirline": "ESJ", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastern Skyjets", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6734, + "callsign": "EXEC AIRCRAFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ESM", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Aircraft Services", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6735, + "callsign": "EURO SUN", + "codeHub": "AYT", + "codeIataAirline": "", + "codeIcaoAirline": "ESN", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euro Sun", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6736, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ESO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avitat", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6737, + "callsign": "ESPEAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ESP", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Espeair", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6738, + "callsign": "EUROPSTAR", + "codeHub": "KLU", + "codeIataAirline": "", + "codeIcaoAirline": "ESQ", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Europ Star Aircraft", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6739, + "callsign": "EXCELSIOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ESR", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Excelsior Airlines", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6740, + "callsign": "TECSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ESS", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAES", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6741, + "callsign": "TWEEDY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ESS", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ESS-Luftfahrtunternehmen", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6742, + "callsign": "", + "codeHub": "TLL", + "codeIataAirline": "", + "codeIcaoAirline": "EST", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Jet OÜ", + "nameCountry": "Estonia", + "sizeAirline": 0, + "statusAirline": "start_up", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6743, + "callsign": "AUSTURFLUG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EST", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flugfelag Austurlands", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6744, + "callsign": "CARGAINTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EST", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Carga Express Internacional", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6745, + "callsign": "ALESUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ESU", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Ejecutivas Del Sureste", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6746, + "callsign": "", + "codeHub": "GYD", + "codeIataAirline": "", + "codeIcaoAirline": "ESW", + "codeIso2Country": "AZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SW Business Aviation", + "nameCountry": "Azerbaijan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6747, + "callsign": "W-BUSINESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ESW", + "codeIso2Country": "AZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silk Way Business Aviation", + "nameCountry": "Azerbaijan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6748, + "callsign": "W-BUSINESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ESW", + "codeIso2Country": "AZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ESW Business Aviation", + "nameCountry": "Azerbaijan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6749, + "callsign": "CATFISH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ESX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euroskylink", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6750, + "callsign": "EXCO AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ESY", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EAS Cargo Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6751, + "callsign": "ESPERANZA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ESZ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronautica La Esperanza", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6752, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ETA", + "codeIso2Country": "TL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Timor Air", + "nameCountry": "East Timor", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6753, + "callsign": "ESTRELLAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ETA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Estrellas Del Aire", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6754, + "callsign": "", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "ETC", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Attico", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6755, + "callsign": "AEROSIETE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ETE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Siete", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6756, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ETF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Unidades Aeromoviles del Ejercito De Tierra", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6757, + "callsign": "JETHAWK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ETI", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hummingbird Aviation Services", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6758, + "callsign": "JETHAWK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ETI", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastair", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6759, + "callsign": "ELITALIANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ETI", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elitaliana", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6760, + "callsign": "ENTEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ETL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Patterson Aviation Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6761, + "callsign": "", + "codeHub": "LAD", + "codeIataAirline": "", + "codeIcaoAirline": "ETM", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Etram Air Wing", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6762, + "callsign": "TAMSAERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ETM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos Tamaulipas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6763, + "callsign": "CHIMNIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ETN", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chim-Nir Aviation", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6764, + "callsign": "ETELEAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ETO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eteleair, Air Company", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6765, + "callsign": "TESTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ETP", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Empire Test Pilots School", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6766, + "callsign": "", + "codeHub": "CCS", + "codeIataAirline": "", + "codeIcaoAirline": "ETR", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Estelar Lationoamerica", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6767, + "callsign": "HELITOUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ETR", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helitour", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6768, + "callsign": "", + "codeHub": "RNN", + "codeIataAirline": "", + "codeIcaoAirline": "ETS", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wings of Bornholm", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 6769, + "callsign": "ETTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ETT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ETT Aviation Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6770, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ETU", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastunion", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6771, + "callsign": "EURO EXEC", + "codeHub": "ESH", + "codeIataAirline": "", + "codeIcaoAirline": "ETV", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European Executive", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6772, + "callsign": "EAGLE TRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ETW", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Trans Asia Airways", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6773, + "callsign": "NEAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ETX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European Air Taxi", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6774, + "callsign": "AERO ZODIAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ETZ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotransportes Zodiac", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6775, + "callsign": "", + "codeHub": "SSH", + "codeIataAirline": "", + "codeIcaoAirline": "EUD", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euromediterranean Airlines", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6776, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EUD", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euro Mediterranean Airlines", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6777, + "callsign": "EUROFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EUF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euroflight", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6778, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EUF", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurojet Geneva", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6779, + "callsign": "", + "codeHub": "ATH", + "codeIataAirline": "", + "codeIcaoAirline": "EUH", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Summer Express", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6780, + "callsign": "EURAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EUI", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euravia", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6781, + "callsign": "EUROLAO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EUL", + "codeIso2Country": "LA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euro-Asia Aviation", + "nameCountry": "Laos", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6782, + "callsign": "ALI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EUP", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alieurope", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6783, + "callsign": "REDSPOT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EUR", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurosky Aviation", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6784, + "callsign": "FIESTA", + "codeHub": "MLA", + "codeIataAirline": "", + "codeIcaoAirline": "EUT", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European 2000 Airlines", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6785, + "callsign": "EUROAMERICAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EUU", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euroamerican Air", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6786, + "callsign": "EUROWEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EUW", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EFS European Flight Service", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6787, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EUW", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EFS European Flight Service", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6788, + "callsign": "YELLOW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EUX", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European Expedite", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6789, + "callsign": "SUNBEAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EVE", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Evex", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6790, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EVI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Evin-Evoluzionhndustriali", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6791, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EVJ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Everjets", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6792, + "callsign": "EVERETT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EVK", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Everett Aviation", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6793, + "callsign": "EVOLEM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EVL", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Evolem Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6794, + "callsign": "ENVIROMENT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EVM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Natural Environment Research Council Airborne Remote Sensing Facility", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6795, + "callsign": "SCIENCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EVM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Natural Enviroment Research Council", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6796, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EVM", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Natural Environment Research Council", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6797, + "callsign": "EURAVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EVN", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euraviation", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6798, + "callsign": "EUROAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EVP", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Europe Air", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6799, + "callsign": "DIANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EVR", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronautical Academy of Europe", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6800, + "callsign": "AEROVENETA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EVT", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroveneta", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6801, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EVY", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "34 Squadron, Royal Australian Air Force", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 6802, + "callsign": "EWEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EWA", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ewest Air", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6803, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EWE", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EWAT", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6804, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EWE", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurowings Europe", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6805, + "callsign": "SILVER WING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EWE", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East West European", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6806, + "callsign": "", + "codeHub": "FIH", + "codeIataAirline": "", + "codeIcaoAirline": "EWS", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EWA - Enterprise World Airways", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6807, + "callsign": "WORLD ENTERPRISE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EWS", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Enterprise World Airways", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6808, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EWS", + "codeIso2Country": "CG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Enterprise World Airways", + "nameCountry": "Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6809, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EWS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Enterprise World Airways", + "nameCountry": "congodr", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6810, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EWT", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastwest Airlines", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6811, + "callsign": "E-WING", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "EWZ", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East Wing", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6812, + "callsign": "", + "codeHub": "GYD", + "codeIataAirline": "", + "codeIcaoAirline": "EWZ", + "codeIso2Country": "AZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East Wing", + "nameCountry": "Azerbaijan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6813, + "callsign": "BRAZILIAN ARMY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXB", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brazilian Army Aviation", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6814, + "callsign": "EXCELLENCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXC", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hapag-Lloyd Executive", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6815, + "callsign": "EXEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Flight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6816, + "callsign": "EXFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Expressflight", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6817, + "callsign": "EXCHANGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Exchange", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6818, + "callsign": "ALIEN", + "codeHub": "ZRH", + "codeIataAirline": "", + "codeIcaoAirline": "EXH", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "G5 Executive", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6819, + "callsign": "EXCEL AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXI", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Excel Air Services", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6820, + "callsign": "", + "codeHub": "GLO", + "codeIataAirline": "", + "codeIcaoAirline": "EXJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Jet Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6821, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXJ", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Jet Italiana", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6822, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXL", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunshine Express Airline", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6823, + "callsign": "EXCELL AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air U.S.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6824, + "callsign": "EXCLUSIVE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXL", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Exclusive Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6825, + "callsign": "EXAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CAA Flight Examiners", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6826, + "callsign": "", + "codeHub": "KTW", + "codeIataAirline": "", + "codeIcaoAirline": "EXN", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Exin", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6827, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6828, + "callsign": "EXPRESS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXP", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Express Delivery", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6829, + "callsign": "FLIGHT EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6830, + "callsign": "EXPERTOS ENCARGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Expertos en Carga", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6831, + "callsign": "EXPRESS COURIER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chapman Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6832, + "callsign": "EXECUTIVE", + "codeHub": "FRA", + "codeIataAirline": "", + "codeIcaoAirline": "EXT", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Night Express", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6833, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nightexpress", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6834, + "callsign": "EXTRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXU", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Transports", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6835, + "callsign": "SACIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXU", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Airlines", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6836, + "callsign": "EXCEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Air Taxi", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6837, + "callsign": "EXPRESS INTERNATIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6838, + "callsign": "EXECUTIVE ZURICH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EXZ", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Air Transport", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6839, + "callsign": "", + "codeHub": "EDFE", + "codeIataAirline": "", + "codeIcaoAirline": "EYC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elytra Charter", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6840, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EYC", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elytra Charter", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6841, + "callsign": "SOCKEYE", + "codeHub": "ANC", + "codeIataAirline": "", + "codeIcaoAirline": "EYE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "F.S. Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6842, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EYN", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Europe Aero Service National", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6843, + "callsign": "EXTRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EYS", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flygtransporter Nykoping", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6844, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EZ9", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Helicopters Inc", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6845, + "callsign": "EZNIS", + "codeHub": "ULN", + "codeIataAirline": "", + "codeIcaoAirline": "EZA", + "codeIso2Country": "MN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eznis Airways", + "nameCountry": "Mongolia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6846, + "callsign": "EICHENBERGER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EZB", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flugschule Eichenberger", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6847, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6848, + "callsign": "GUYANA JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EZJ", + "codeIso2Country": "GY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ezjet", + "nameCountry": "Guyana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6849, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "EZR", + "codeIso2Country": "AN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ezair", + "nameCountry": "Netherlands Antilles", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6850, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Federal Aviation Administration", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6851, + "callsign": "BRADLEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bradley Air Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6852, + "callsign": "FIRST AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "First Air Courier", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6853, + "callsign": "FAEROECOPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAC", + "codeIso2Country": "FO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Helicopters", + "nameCountry": "Faroe Islands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6854, + "callsign": "AIR FRONTIER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAD", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rog-Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6855, + "callsign": "", + "codeHub": "UIO", + "codeIataAirline": "", + "codeIcaoAirline": "FAE", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fuerza Aerea Ecuatoriana", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 6856, + "callsign": "WILDGOOSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Freshaer", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6857, + "callsign": "FRANCE AIR FORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAF", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Force Aerienne Francaise", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6858, + "callsign": "FUAER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAG", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fuerza Aerea Argentina", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6859, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAH", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ASL Airlines Hungary", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6860, + "callsign": "MOTOR-CITY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Falcon Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6861, + "callsign": "FACTS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Financial Airxpress", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6862, + "callsign": "FRIENDSHIP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Friendship Air Alaska", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6863, + "callsign": "", + "codeHub": "MEX", + "codeIataAirline": "", + "codeIcaoAirline": "FAM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fuerza Aerea Mexicana", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 6864, + "callsign": "FANBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAN", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AF-Air International", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6865, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Falcon Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6866, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAP", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Parsons Airways Northern", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6867, + "callsign": "FAIR SCHOOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAP", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "F Air", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6868, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAQ", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerofaq", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6869, + "callsign": "FAR AIRLINES", + "codeHub": "LIN", + "codeIataAirline": "", + "codeIcaoAirline": "FAR", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Far Airlines", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6870, + "callsign": "FARRINGTON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Farrington Aircraft Corporation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6871, + "callsign": "", + "codeHub": "LCA", + "codeIataAirline": "", + "codeIcaoAirline": "FAS", + "codeIso2Country": "CY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Freedom Airways (Cyprus)", + "nameCountry": "Cyprus", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6872, + "callsign": "FLORIDA CARGO", + "codeHub": "OPF", + "codeIataAirline": "", + "codeIcaoAirline": "FAS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Florida Air Cargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6873, + "callsign": "FIELDAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Field Survey Flight", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6874, + "callsign": "AIR AFFAIRES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAS", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Afrique Air Affaires", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6875, + "callsign": "FREEDOM AIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAS", + "codeIso2Country": "CY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Freedom Airways", + "nameCountry": "Cyprus", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6876, + "callsign": "FALCON AIRLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAU", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Falcon Airline", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6877, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAU", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Faucher Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6878, + "callsign": "FAIRAVIA", + "codeHub": "HLA", + "codeIataAirline": "", + "codeIcaoAirline": "FAV", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fair Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6879, + "callsign": "FALWELL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Falwell Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6880, + "callsign": "FAIRFAX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midwest Air Freighters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6881, + "callsign": "FAYBAN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAY", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fayban Air Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6882, + "callsign": "FLINT AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flint Aviation Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6883, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FAZ", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SFAIR", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6884, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FBA", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FAB-Air", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6885, + "callsign": "AIR FELOU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FBA", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lignes Aeriennes Felou", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6886, + "callsign": "AFRIBEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FBE", + "codeIso2Country": "MU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan African Airlines Leasing Company", + "nameCountry": "Mauritius", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6887, + "callsign": "FINE AIR", + "codeHub": "MIA", + "codeIataAirline": "", + "codeIcaoAirline": "FBF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fine Air Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6888, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FBL", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Benghazi", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6889, + "callsign": "FOODBROJER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FBL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Food Brokers", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6890, + "callsign": "FLORIDA TRANSPORT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FBN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Florida Air Transport", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6891, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FBO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Carroll Aircraft Corporation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6892, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FBO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAG Farnborough Airport Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6893, + "callsign": "", + "codeHub": "FKB", + "codeIataAirline": "", + "codeIcaoAirline": "FBR", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baden Aircraft Operations", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6894, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FBR", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FB Flugbereitschaft GbmH", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6895, + "callsign": "AVANGARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FBR", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avangard Aviation", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6896, + "callsign": "EUROBELAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FBR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Belair", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6897, + "callsign": "FRENCH BLUE", + "codeHub": "ORY", + "codeIataAirline": "", + "codeIcaoAirline": "FBU", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "French Blue", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6898, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FBW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Data Systems", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6899, + "callsign": "BAI FLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FBY", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Bai", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6900, + "callsign": "FESTIVAL CITY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Stratford Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6901, + "callsign": "FLYCOLUMBIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FlyColumbia", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6902, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCG", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FCG - Flight Consulting Group", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6903, + "callsign": "FAST CHECK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Carriers", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6904, + "callsign": "FAIRFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fairflight Corporate Jets", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6905, + "callsign": "FRACJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AirSprint US", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6906, + "callsign": "NAV CHECKER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCK", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FCS, Flight Calibration Serivces", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6907, + "callsign": "FINNCOMM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCM", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flybe Nordic", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6908, + "callsign": "ATOLL CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCM", + "codeIso2Country": "MV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flying Cargo Private", + "nameCountry": "Maldives", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6909, + "callsign": "FALCON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCN", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Falcon Cargo", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6910, + "callsign": "AEROFRISCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerofrisco", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6911, + "callsign": "FLIGHTCORP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCP", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6912, + "callsign": "MEXFACTS", + "codeHub": "MEX", + "codeIataAirline": "", + "codeIcaoAirline": "FCS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Facts Air", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6913, + "callsign": "", + "codeHub": "LFBR", + "codeIataAirline": "", + "codeIcaoAirline": "FCT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SEFA", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6914, + "callsign": "SFACT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CNFA (SFACT)", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6915, + "callsign": "DEALER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly CI Ltd", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6916, + "callsign": "SEFA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SEFA", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6917, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCU", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alfa 4", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6918, + "callsign": "", + "codeHub": "YYJ", + "codeIataAirline": "", + "codeIcaoAirline": "FCV", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nav Air Charter", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6919, + "callsign": "NAVAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCV", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Centre Victoria", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6920, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCV", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nav Air Charter", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6921, + "callsign": "FALCON CARGO", + "codeHub": "DXB", + "codeIataAirline": "", + "codeIcaoAirline": "FCX", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Falcon Express Cargo", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6922, + "callsign": "FLY COMPANY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCY", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Company", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6923, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FCZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6924, + "callsign": "AIR SANKORE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FDA", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "African Airlines", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6925, + "callsign": "FEDERICK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FDC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Frederick Air Taxi Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6926, + "callsign": "", + "codeHub": "JUB", + "codeIataAirline": "", + "codeIcaoAirline": "FDD", + "codeIso2Country": "SS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Feeder Airlines", + "nameCountry": "South Sudan", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6927, + "callsign": "", + "codeHub": "JUB", + "codeIataAirline": "", + "codeIcaoAirline": "FDD", + "codeIso2Country": "SD", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "Feeder Airlines", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6928, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FDF", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IVV Femida", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6929, + "callsign": "FARMINGDALE STATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FDL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Farmingdale State University", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6930, + "callsign": "LIBERTY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FDM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Freedom Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6931, + "callsign": "FLYING DOLPHINS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FDN", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flying Dolphin Airlines", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6932, + "callsign": "FRENCH CUSTOM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FDO", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "France Douanes", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6933, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FDP", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FDS-Ops", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6934, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FDP", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Dispatch Serivces", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6935, + "callsign": "FLYDOC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FDS", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "African Medical and Research Foundation", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6936, + "callsign": "FRIENDLY", + "codeHub": "FLL", + "codeIataAirline": "", + "codeIcaoAirline": "FDY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Air Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 6937, + "callsign": "FALCON EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FEC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Denver Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6938, + "callsign": "FEDERALES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FED", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas Federales", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6939, + "callsign": "FEDERAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FED", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linea Federal Argentina", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6940, + "callsign": "FLY EURO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FEE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Europa", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6941, + "callsign": "", + "codeHub": "RKV", + "codeIataAirline": "", + "codeIcaoAirline": "FEI", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Air Iceland", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6942, + "callsign": "ARCTIC EAGLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FEI", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Air Iceland (Flugfelagid Ernir)", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6943, + "callsign": "AVIAJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FEJ", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "France Europe Aviajet", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6944, + "callsign": "PREMIERE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FEL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "First European Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6945, + "callsign": "", + "codeHub": "HRE", + "codeIataAirline": "", + "codeIcaoAirline": "FEM", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlink Zimbabwe", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6946, + "callsign": "FLYWELL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FEM", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flywell Airlines", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6947, + "callsign": "FENESTRON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FEN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurocopter UK", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6948, + "callsign": "FENESTRON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FEN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airbus Helicopters UK", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6949, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FEO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroferinco SA de CV", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6950, + "callsign": "AEROFERINCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FEO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroferinco", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6951, + "callsign": "FERIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FER", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Feria Aviacion", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6952, + "callsign": "AERO ALFE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FES", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Taxis Y Servicios Alfe", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6953, + "callsign": "FREIGHTLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FET", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Old Dominion Freight LT Lines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6954, + "callsign": "AEROCOM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FEU", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compagnie Aeronautique Europeenne", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6955, + "callsign": "EASTERN CARGO", + "codeHub": "KHV", + "codeIataAirline": "", + "codeIcaoAirline": "FEW", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Far Eastern Cargo Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6956, + "callsign": "FLIGHTEXEC", + "codeHub": "YXU", + "codeIataAirline": "", + "codeIcaoAirline": "FEX", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flightexec", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6957, + "callsign": "", + "codeHub": "PES", + "codeIataAirline": "", + "codeIcaoAirline": "FFA", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avialesookhrana", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 6958, + "callsign": "FAIRTRAVEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FFA", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FFA Air-Travel", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6959, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FFA", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avialesookhrana Central Base for Forest", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6960, + "callsign": "FAIROAKS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FFC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fairoaks Flight Centre", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6961, + "callsign": "FIRST FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FFD", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Stuttgarter Flugdienst - SFD", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6962, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FFD", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rheinair", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6963, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FFD", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Stuttgarter Flugdienst", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6964, + "callsign": "SMART TRAINER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FFE", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FFL Fachschule Fuer Luft-Fahrzeugfuehrer", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6965, + "callsign": "INTER FREEDOM", + "codeHub": "KAD", + "codeIataAirline": "", + "codeIcaoAirline": "FFF", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Freedom Air Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 6966, + "callsign": "WITCHCRAFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FFG", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flugdienst Fehlhaber", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6967, + "callsign": "PEACE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FFH", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shalom Air Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6968, + "callsign": "INFINIT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FFI", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Infinit Air", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6969, + "callsign": "FOREFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FFL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ForeFlight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6970, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FFN", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly & Fun", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6971, + "callsign": "", + "codeHub": "WAW", + "codeIataAirline": "", + "codeIcaoAirline": "FFP", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fischer Air Polska", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6972, + "callsign": "FLYING FISH", + "codeHub": "WAW", + "codeIataAirline": "", + "codeIcaoAirline": "FFP", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prima Charter", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6973, + "callsign": "FLYING FISH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FFP", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fischer Air Poland", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6974, + "callsign": "FORESTRY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FFS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Florida Dept Of Agriculture", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6975, + "callsign": "FERRANTI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FFU", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GEC Marconi Avionics", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6976, + "callsign": "FLY FINN", + "codeHub": "HEL", + "codeIataAirline": "", + "codeIcaoAirline": "FFW", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flying Finn Airways", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6977, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FFX", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flex Linhas A�reas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6978, + "callsign": "GEORGIA FED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FGA", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Georgian Aviation Federation", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6979, + "callsign": "FORESTALES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FGC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Departamento de Agricultura de La Generalitat de Cataluna", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6980, + "callsign": "FIREGUARD", + "codeHub": "YXX", + "codeIataAirline": "", + "codeIcaoAirline": "FGD", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Conair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 6981, + "callsign": "FEDERAL-GEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FGE", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Federal Air G.E. Airlines", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6982, + "callsign": "FANAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FGH", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fan Airways", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6983, + "callsign": "FRANCE GENDARME", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FGN", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gendarmerie Nationale", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6984, + "callsign": "FLYING CENTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FGP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flying-Research Aerogeophysical Center Ltd.", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6985, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FGP", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Test Flight Aerographical Center", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 6986, + "callsign": "ELITELLINA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FGS", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elitellina", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6987, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FGT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerofreight", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6988, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FGY", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Froggy Corporate Aviation", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6989, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FHA", + "codeIso2Country": "TW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Foshing Airlines", + "nameCountry": "Taiwan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6990, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FHA", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Foshing Airline", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6991, + "callsign": "FINDON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FHL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fast Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6992, + "callsign": "HELISCOT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FHS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Forth and Clyde Helicopter Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6993, + "callsign": "HELISCOT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FHS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Forth Helicopter Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 6994, + "callsign": "PATROL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FHV", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flyverhjemmevaernet", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6995, + "callsign": "", + "codeHub": "OST", + "codeIataAirline": "", + "codeIcaoAirline": "FIA", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FIA - First International Airways", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 6996, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FIA", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air First", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6997, + "callsign": "FREE IBERICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FIB", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Freeway Iberica", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6998, + "callsign": "AEROSAFIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FIC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerosafin", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 6999, + "callsign": "FIESTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FIE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fiesta Airline", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7000, + "callsign": "FRIFLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FIF", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Frifly", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7001, + "callsign": "FINNHEMS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FIH", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FinnHems", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7002, + "callsign": "FLIGHT CHECKER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FII", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AFI Flight Inspection", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7003, + "callsign": "", + "codeHub": "NLO", + "codeIataAirline": "", + "codeIcaoAirline": "FIL", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Filair", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7004, + "callsign": "BRISTOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FIL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BAe Filton", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7005, + "callsign": "AVIAFIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FIL", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia Filipinas International", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7006, + "callsign": "FLYLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FIL", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Line", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7007, + "callsign": "", + "codeHub": "FNA", + "codeIataAirline": "", + "codeIcaoAirline": "FIR", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "First Line Air", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7008, + "callsign": "AEROFIESTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FIT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Fiesta Mexicana", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7009, + "callsign": "FINALAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FIT", + "codeIso2Country": "TG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Finalair", + "nameCountry": "Togo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7010, + "callsign": "FIVE STAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FIV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Five Star Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7011, + "callsign": "FIVESTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FIV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerostar", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7012, + "callsign": "FIVE STAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FIV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Citationshares", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7013, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FIV", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CitationAir", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7014, + "callsign": "AIRFIX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FIX", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airfix Aviation", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7015, + "callsign": "", + "codeHub": "NAN", + "codeIataAirline": "", + "codeIcaoAirline": "FJA", + "codeIso2Country": "FJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Sun Airways", + "nameCountry": "Fiji", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7016, + "callsign": "FASTBIRD", + "codeHub": "LUN", + "codeIataAirline": "", + "codeIcaoAirline": "FJB", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fastjet Zambia", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7017, + "callsign": "FALCONJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FJC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Falcon Jet Centre", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7018, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FJE", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FairJets", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7019, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "FJK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Jet.kz", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7020, + "callsign": "", + "codeHub": "AMM", + "codeIataAirline": "", + "codeIcaoAirline": "FJR", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Jordan", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7021, + "callsign": "SOLITAIRE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FJR", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Solitaire Air", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7022, + "callsign": "FLORIDAJET", + "codeHub": "FXE", + "codeIataAirline": "", + "codeIcaoAirline": "FJS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Florida Jet Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7023, + "callsign": "FLY JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FJT", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Jet", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7024, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FJW", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fastjet Zimbabwe", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7025, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FJX", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Sky Cargo and Air Charter", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7026, + "callsign": "KIEL AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FKI", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FLM Aviation Mohrdieck", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7027, + "callsign": "KELNER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FKL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "V. Kelner Pilatus Center", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7028, + "callsign": "KELNER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FKL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kelner Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7029, + "callsign": "KUMBA", + "codeHub": "HRE", + "codeIataAirline": "", + "codeIcaoAirline": "FKZ", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Kumba", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7030, + "callsign": "SU AIR", + "codeHub": "OTP", + "codeIataAirline": "", + "codeIcaoAirline": "FLA", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly 365 Aviation", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7031, + "callsign": "PALM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midway Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7032, + "callsign": "FLIGHT CHECK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FINFO Flight Inspection Aircraft", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7033, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLD", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Falcon", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7034, + "callsign": "FLORIDIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLD", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Empresa Floridian", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7035, + "callsign": "FLIGHT EAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight East", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7036, + "callsign": "FRIEND AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLF", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Friendship Airlines", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7037, + "callsign": "FLAG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "American Flag Flying", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7038, + "callsign": "MILE HIGH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Bus", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7039, + "callsign": "MILE HIGH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Frontier Horizon", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7040, + "callsign": "", + "codeHub": "OXF", + "codeIataAirline": "", + "codeIcaoAirline": "FLJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flairjet", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7041, + "callsign": "FLYNOR JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLJ", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flynor", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7042, + "callsign": "", + "codeHub": "LECU", + "codeIataAirline": "", + "codeIcaoAirline": "FLK", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prestige Jet Spain", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7043, + "callsign": "FALCKAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLK", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Falcks Redningskorps Beldringe", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7044, + "callsign": "FLYLINK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLK", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FlyLink Express", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7045, + "callsign": "FEDERAL AIRLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLL", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Federal Airlines", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7046, + "callsign": "FLY WORLD", + "codeHub": "IST", + "codeIataAirline": "", + "codeIcaoAirline": "FLM", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Air", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7047, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flying Lamm", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7048, + "callsign": "BOX HAULER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Camair International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7049, + "callsign": "ILIAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLN", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flamingo Air-Line", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7050, + "callsign": "FAST LINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Line", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7051, + "callsign": "", + "codeHub": "FNI", + "codeIataAirline": "", + "codeIcaoAirline": "FLO", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Eco", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7052, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLO", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flycom", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7053, + "callsign": "FRENCH ECO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLO", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flyeco", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7054, + "callsign": "PARAPRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLP", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FL140 Parachutisme Bordeaux", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7055, + "callsign": "AEROCLUB FLAPS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLP", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroclub Flaps", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7056, + "callsign": "FLEETAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLR", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fleetair", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7057, + "callsign": "RUSHTON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Refuelling Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7058, + "callsign": "RAPIDOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flying Fast", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7059, + "callsign": "YELLOW FLYER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLU", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flugschule Basel", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7060, + "callsign": "BELOUGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7061, + "callsign": "QUICKFLOW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLW", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flowair Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7062, + "callsign": "FLIGHT EXPRESS", + "codeHub": "ORL", + "codeIataAirline": "", + "codeIcaoAirline": "FLX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7063, + "callsign": "FLEXAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Florida Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7064, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLX", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Express", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7065, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLY", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "I-Fly", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7066, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLY", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flygo", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7067, + "callsign": "AIR FLORIDA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FLZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Florida Airlines / Air Florida", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7068, + "callsign": "FOREMOST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FMA", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Foremost Aviation", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7069, + "callsign": "FAASA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FMA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fumigacion Aerea Andaluza", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7070, + "callsign": "CLAESSENS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FMC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Claessens International", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7071, + "callsign": "HUSKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FMG", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FMG Verkehrsfliegerschule Flughafen", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7072, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FMI", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Fret de Mauritanie", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7073, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FMJ", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Al Shohra Aviation", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7074, + "callsign": "FLAMINGO AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FMR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flamingo Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7075, + "callsign": "HADI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FMS", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hadison Aviation", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7076, + "callsign": "FRENCH ARMY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FMY", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Legere de L'armee de Terre", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7077, + "callsign": "", + "codeHub": "AEY", + "codeIataAirline": "", + "codeIcaoAirline": "FNA", + "codeIso2Country": "IS", + "founding": 2008, + "iataPrefixAccounting": "", + "nameAirline": "Norlandair", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7078, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norlandair", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7079, + "callsign": "FENNEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNA", + "codeIso2Country": "NE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fennec", + "nameCountry": "Niger", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7080, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNB", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FNA", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7081, + "callsign": "FARNAIR EUROPE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNE", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Farnair Europe", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7082, + "callsign": "FINNFORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNF", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Finnish Air Force", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 7083, + "callsign": "", + "codeHub": "HEL", + "codeIataAirline": "", + "codeIcaoAirline": "FNG", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Finnish Border Guard", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 7084, + "callsign": "FINNGUARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNG", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Frontier Guard", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 7085, + "callsign": "INCOM-PHOENIX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNH", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoenix", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7086, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNI", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Holland Offshore", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7087, + "callsign": "AURIKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Feniks Airline", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7088, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Feniks Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7089, + "callsign": "FINALAIR CONGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNL", + "codeIso2Country": "CG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Finalair Congo", + "nameCountry": "Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7090, + "callsign": "FINN FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNL", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oulun Tilauslento", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7091, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNM", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avionord", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7092, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7093, + "callsign": "RIAZOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNO", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroflota del Noroeste", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7094, + "callsign": "FINESSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Finesse Executive", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7095, + "callsign": "", + "codeHub": "PHF", + "codeIataAirline": "", + "codeIcaoAirline": "FNT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7096, + "callsign": "AVIALIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Finlight Airline", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7097, + "callsign": "FLIGHT INTERNATIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "L-3 Communications Flight International Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7098, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "FNV", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transavia Service", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7099, + "callsign": "TRANSAVIASERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNV", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transaviaservice", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7100, + "callsign": "FINEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Finair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7101, + "callsign": "AERO FENIX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNX", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Fenix", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7102, + "callsign": "SKYFAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNX", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fenix Airways", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7103, + "callsign": "FRENCH NAVY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FNY", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "France Marine Nationale", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7104, + "callsign": "FORTUNE AIR", + "codeHub": "HLA", + "codeIataAirline": "", + "codeIcaoAirline": "FOA", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fortune Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7105, + "callsign": "FIL ORIENT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FOA", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Filipinas Orient Airways", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7106, + "callsign": "FOCA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FOC", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Office Federal de Aviation Civile", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7107, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FOI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Ops International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7108, + "callsign": "FORESTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FOL", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Forest Airline South Africa", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7109, + "callsign": "", + "codeHub": "BPM", + "codeIataAirline": "", + "codeIcaoAirline": "FON", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flyington Freighters", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7110, + "callsign": "FONTANAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FON", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aer Sicilia", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7111, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FOP", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fokker Flight Operations", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7112, + "callsign": "", + "codeHub": "BQH", + "codeIataAirline": "", + "codeIcaoAirline": "FOR", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Formula 1 Management", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7113, + "callsign": "FORMULA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FOR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Formula One Management", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7114, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FOR", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fortune Aviation", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7115, + "callsign": "AVIFOTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FOT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviat Aviacion Y Trabajos Aereos", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7116, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FOW", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fliteport", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7117, + "callsign": "SPEEDFOX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FOX", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetair Aps", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7118, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FPA", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flygprestanda", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7119, + "callsign": "FINNPOWER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FPC", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lillbacka Jetair", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7120, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FPD", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroleasing (Deutschland)", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7121, + "callsign": "MIDCAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FPL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Precision", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7122, + "callsign": "FRENCH POST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FPO", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soci�t� Financiereale (S.F.A.)", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7123, + "callsign": "", + "codeHub": "SPLP", + "codeIataAirline": "", + "codeIcaoAirline": "FPR", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fuerza Aerea Del Peru", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 7124, + "callsign": "FLIGHTPASS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FPS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flightpass", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7125, + "callsign": "RUSHTON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FRA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cobham Aviation Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7126, + "callsign": "RUSHTON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FRA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FR Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7127, + "callsign": "RAKWAY", + "codeHub": "RKT", + "codeIataAirline": "", + "codeIcaoAirline": "FRB", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly RAK", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7128, + "callsign": "FRANCHE COMTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FRC", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Icare Franche Comte", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7129, + "callsign": "FORD", + "codeHub": "DTW", + "codeIataAirline": "", + "codeIcaoAirline": "FRD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ford Motor Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7130, + "callsign": "FAIRFLEET", + "codeHub": "BUD", + "codeIataAirline": "", + "codeIcaoAirline": "FRF", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fleet Air International", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7131, + "callsign": "AIRFRET AFRIQUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FRF", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Fret Afrique", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7132, + "callsign": "FREIGHT RUNNERS", + "codeHub": "MKE", + "codeIataAirline": "", + "codeIcaoAirline": "FRG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Freight Runners Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7133, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FRG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Freight Runners Express", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7134, + "callsign": "FREEAIR COPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FRH", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Freeair Helicopters", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7135, + "callsign": "", + "codeHub": "PRY", + "codeIataAirline": "", + "codeIcaoAirline": "FRI", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Freedom Air (South Africa)", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7136, + "callsign": "FREEFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FRI", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North East Charters", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7137, + "callsign": "", + "codeHub": "NBO", + "codeIataAirline": "", + "codeIcaoAirline": "FRK", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Afrika Aviation", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7138, + "callsign": "AFRIFAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FRK", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "893", + "nameAirline": "Africa Aviation Handlers", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7139, + "callsign": "FARELAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FRL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maria Elisa Gonzales Farelas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7140, + "callsign": "FEDARM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FRM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Federal Armored Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7141, + "callsign": "FARNED", + "codeHub": "RTM", + "codeIataAirline": "", + "codeIcaoAirline": "FRN", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Farnair Netherlands", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7142, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FRN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FirstNation Airways", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7143, + "callsign": "FROBISHER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FRO", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European Airlines", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7144, + "callsign": "CHARTER AFRIQUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FRQ", + "codeIso2Country": "CM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Afrique Chart'Air", + "nameCountry": "Cameroon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7145, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "FRR", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fresh Air (Nigeria)", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7146, + "callsign": "FRESH AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FRR", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fresh Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7147, + "callsign": "", + "codeHub": "MRS", + "codeIataAirline": "", + "codeIcaoAirline": "FRU", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Securite Civile", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 7148, + "callsign": "FRUYLEG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FRU", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportadora Fruyleg", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7149, + "callsign": "FRENCH RESCUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FRU", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Securite Civile Francaise", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7150, + "callsign": "", + "codeHub": "34AZ", + "codeIataAirline": "", + "codeIcaoAirline": "FRW", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Farwest Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7151, + "callsign": "FARWEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FRW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Farwest Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7152, + "callsign": "", + "codeHub": "VKO", + "codeIataAirline": "", + "codeIcaoAirline": "FRX", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fort Aero", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7153, + "callsign": "FORT AERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FRX", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fort Aero", + "nameCountry": "Estonia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7154, + "callsign": "FOSTER-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Foster Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7155, + "callsign": "FLINT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Services International", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7156, + "callsign": "SEABIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSB", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FSB Flugservice & Development", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7157, + "callsign": "FOUR STAR", + "codeHub": "SJU", + "codeIataAirline": "", + "codeIcaoAirline": "FSC", + "codeIso2Country": "VI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Four Star Aviation", + "nameCountry": "U.S. Virgin Islands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7158, + "callsign": "FLUGSERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSD", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EFS-Flugservice", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7159, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSD", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EFS Cargo", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7160, + "callsign": "FLASH", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "FSH", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flash Airlines", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7161, + "callsign": "FLIGHTWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSI", + "codeIso2Country": "SG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flightways Air Services", + "nameCountry": "Singapore", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7162, + "callsign": "FREE SKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Freesky Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7163, + "callsign": "AFRICAN SKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSK", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Africa Charter Airlines", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7164, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSK", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Africa Charter Airline", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7165, + "callsign": "FLIGHTSAFETY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Safety", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7166, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airpilot Escuela De Vuelo", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7167, + "callsign": "FASON AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSN", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fasons Air Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7168, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Plan Solutions", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7169, + "callsign": "SNAPSHOT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aperture Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7170, + "callsign": "", + "codeHub": "CMI", + "codeIataAirline": "", + "codeIcaoAirline": "FSR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flightstar", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7171, + "callsign": "FLIGHT STAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Link Charters", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7172, + "callsign": "FLIGHTSTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "The Flightstar", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7173, + "callsign": "", + "codeHub": "SEA", + "codeIataAirline": "", + "codeIcaoAirline": "FSS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Controls", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7174, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FST", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airtanker Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7175, + "callsign": "FLIGHTRON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FST", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Support", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7176, + "callsign": "FAST TRACK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FST", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeros Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7177, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSU", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Support Sweden", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7178, + "callsign": "FLAG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flagship Express Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7179, + "callsign": "FASSEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSY", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fassey Aviation", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7180, + "callsign": "FROSTY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FSY", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Algonquin Airlink", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7181, + "callsign": "AFFAIRES TCHAD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FTC", + "codeIso2Country": "TD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Affaires Tchad", + "nameCountry": "Chad", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7182, + "callsign": "FOTOGRAFIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FTE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fotografia F3", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7183, + "callsign": "FOTOGRAFICOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FTG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Y Fotograficos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7184, + "callsign": "TECHNOLOGY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FTG", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flying Technology Airline Limited", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7185, + "callsign": "FOOTHILLS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FTH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mountain Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7186, + "callsign": "FU TAI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FTJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fu Tai Business Jets", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7187, + "callsign": "", + "codeHub": "BCN", + "codeIataAirline": "", + "codeIcaoAirline": "FTL", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flightline (Spain)", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7188, + "callsign": "FLIGHT-AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FTL", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flightline", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7189, + "callsign": "FLYTEAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FTM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flyteam Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7190, + "callsign": "FORTUNE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FTN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Charter and Management", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7191, + "callsign": "FOOTPRINT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FTP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Keystone Aerial Surveys", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7192, + "callsign": "", + "codeHub": "BES", + "codeIataAirline": "", + "codeIcaoAirline": "FTR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Finistair", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7193, + "callsign": "FINISTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FTR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Finist'air", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7194, + "callsign": "AFRICAN TRANSAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FTS", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "African Transair", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7195, + "callsign": "FIRST SABRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FTS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "First Sabre", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7196, + "callsign": "FLIGHT TRAINING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FTT", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Track Training", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7197, + "callsign": "FLIGHT UNIVERSITY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FTU", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "China Civil Aviation Flight University", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7198, + "callsign": "FORT WORTH AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FTW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fort Worth Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7199, + "callsign": "FLY TYROL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FTY", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Tyrol", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7200, + "callsign": "", + "codeHub": "DAR", + "codeIataAirline": "", + "codeIcaoAirline": "FTZ", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly540 Tanzania", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7201, + "callsign": "FUMICAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FUC", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fumicar", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7202, + "callsign": "AVIASTAR-VOLGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FUE", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviastar", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7203, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FUF", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Fun Fly", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7204, + "callsign": "", + "codeHub": "FJR", + "codeIataAirline": "", + "codeIcaoAirline": "FUJ", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fujairah Aviation Academy", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7205, + "callsign": "FUJAIRAH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FUJ", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fujairah Aviation Centre", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7206, + "callsign": "", + "codeHub": "EBB", + "codeIataAirline": "", + "codeIcaoAirline": "FUL", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly540 Uganda", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7207, + "callsign": "ORANGE CRANE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FUL", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Five Forty Uganda", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7208, + "callsign": "FUNLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FUM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fuxion Line Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7209, + "callsign": "FOX AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FUP", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fuchs Und Partner", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7210, + "callsign": "FOX AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FUP", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Foxair GmbH", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7211, + "callsign": "FUTUROSCOPE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FUR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Poitiers", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7212, + "callsign": "FUMISOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FUS", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fumisol", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7213, + "callsign": "", + "codeHub": "LEJ", + "codeIataAirline": "", + "codeIcaoAirline": "FUT", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Futura Germany", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7214, + "callsign": "FUTURA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FUT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Futura Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7215, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FUT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerofuturo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7216, + "callsign": "AIR VIRGINIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FVA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cardinauair Virginia", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7217, + "callsign": "AIR VIRGINIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FVA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cardinal / Air Virginia", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7218, + "callsign": "FREVAG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FVG", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Frevag Airlines", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7219, + "callsign": "", + "codeHub": "PMI", + "codeIataAirline": "", + "codeIcaoAirline": "FWA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Wings", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 7220, + "callsign": "FAR WEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FWA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hillsboro Aviation Co.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7221, + "callsign": "FREEWAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FWC", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Freeway Air", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7222, + "callsign": "FAIR WIND", + "codeHub": "SUA", + "codeIataAirline": "", + "codeIcaoAirline": "FWD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fair Wind Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7223, + "callsign": "", + "codeHub": "KRYY", + "codeIataAirline": "", + "codeIcaoAirline": "FWK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flightworks", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7224, + "callsign": "FLIGHTAWARE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FWR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flightaware", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7225, + "callsign": "FAIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FWY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fairways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7226, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FWZ", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flugwerkzeuge Aviation Software", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7227, + "callsign": "", + "codeHub": "RTM", + "codeIataAirline": "", + "codeIcaoAirline": "FXA", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flexair", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7228, + "callsign": "AIR FUTURE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FXC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fortunair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7229, + "callsign": "FOX FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FXF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vip Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7230, + "callsign": "EUROFLEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FXJ", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flexjet Operations", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7231, + "callsign": "FLY EXCELLENT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FXL", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Excellent", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7232, + "callsign": "", + "codeHub": "VIE", + "codeIataAirline": "", + "codeIcaoAirline": "FXO", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flex Ops", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7233, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FXR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Foxair", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7234, + "callsign": "WILDFOX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FXR", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Foxair", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7235, + "callsign": "FLEXWING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FXW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Associated Aircraft Group", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7236, + "callsign": "FLEXY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FXY", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flexair", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7237, + "callsign": "", + "codeHub": "VIT", + "codeIataAirline": "", + "codeIcaoAirline": "FYA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Futura Cargo", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7238, + "callsign": "FLYANT", + "codeHub": "VIT", + "codeIataAirline": "", + "codeIcaoAirline": "FYA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flyant", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7239, + "callsign": "", + "codeHub": "VIT", + "codeIataAirline": "", + "codeIcaoAirline": "FYA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saicus Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7240, + "callsign": "CONTRAIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FYB", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Absolute Flight Services", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7241, + "callsign": "FLIGHTCAB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FYC", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flygcentrum I Stockholm", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7242, + "callsign": "FLYING DEVIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FYD", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flying Devil", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7243, + "callsign": "FLYME", + "codeHub": "ABV", + "codeIataAirline": "", + "codeIcaoAirline": "FYE", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Easy Link Aviation Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7244, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FYG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flying Service", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7245, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FYJ", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flyjet Air Charter & Management", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7246, + "callsign": "FLYINGLUX", + "codeHub": "LUX", + "codeIataAirline": "", + "codeIcaoAirline": "FYL", + "codeIso2Country": "LU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flying Group Luxembourg", + "nameCountry": "Luxembourg", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7247, + "callsign": "FLYNN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FYN", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comfort Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7248, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FYN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comfort Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7249, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FYR", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trabajos Aereos Fotografia Y Reportajes", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7250, + "callsign": "AMERICAN FLYERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FYS", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "American Flyers", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7251, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FYT", + "codeIso2Country": "AF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bakhtar Star Airlines", + "nameCountry": "Afghanistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7252, + "callsign": "MAISBRASIL", + "codeHub": "GIG", + "codeIataAirline": "", + "codeIcaoAirline": "FYW", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flyways", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7253, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FYW", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flyways Linhas Aereas", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7254, + "callsign": "FINNINGLEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FYY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Finningley FTU", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7255, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7256, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FZM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trabajos Aeroes de Cordoba", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7257, + "callsign": "FRESH EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "FZW", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fresh Air", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7258, + "callsign": "ATLANTIC AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7259, + "callsign": "GLOBAL AFRICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAA", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Africa Cargo", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7260, + "callsign": "GENDALL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gendall Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7261, + "callsign": "DREAM TEAM", + "codeHub": "LNZ", + "codeIataAirline": "", + "codeIcaoAirline": "GAC", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GlobeAir", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7262, + "callsign": "GENERAL CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAC", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "General Air Cargo G.A.C.", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7263, + "callsign": "SOUTHCOAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South Coast Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7264, + "callsign": "SOUTHCOAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South Coast Aviation (Bournemouth) Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7265, + "callsign": "", + "codeHub": "TOL", + "codeIataAirline": "", + "codeIcaoAirline": "GAE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tricoastal Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7266, + "callsign": "GRAND EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grand Aire Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7267, + "callsign": "", + "codeHub": "CGN", + "codeIataAirline": "", + "codeIcaoAirline": "GAF", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Luftwaffe", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 7268, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAF", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Luftwaffe", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7269, + "callsign": "GLOBAL AIRGROUP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAG", + "codeIso2Country": "KM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Air Leasing", + "nameCountry": "Comoros", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7270, + "callsign": "GAMHELICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAH", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ga-Ma Helicoptere", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7271, + "callsign": "", + "codeHub": "UUBW", + "codeIataAirline": "", + "codeIcaoAirline": "GAI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gromov Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7272, + "callsign": "GROMOV AIRLINE", + "codeHub": "UUBW", + "codeIataAirline": "", + "codeIcaoAirline": "GAI", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Moskovia Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7273, + "callsign": "GAMA JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gamma Charters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7274, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alianza Glancelot C.A.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7275, + "callsign": "GERMAN ARMY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAM", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "German Army", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7276, + "callsign": "GANAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAN", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gander Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7277, + "callsign": "", + "codeHub": "OER", + "codeIataAirline": "", + "codeIcaoAirline": "GAO", + "codeIso2Country": "SE", + "founding": 2007, + "iataPrefixAccounting": "", + "nameAirline": "Höga Kusten Flyg", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7278, + "callsign": "GOLFAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAQ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Golfe Air Quebec", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7279, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAR", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Commodore Aviation", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7280, + "callsign": "GALENA AIR SERIVCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Galena Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7281, + "callsign": "GULF TRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gulf Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7282, + "callsign": "AEROGAUCHO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAU", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerogaucho", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7283, + "callsign": "GRANAVI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAV", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Granada Aviacion", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7284, + "callsign": "SKYCRAWLER", + "codeHub": "WIL", + "codeIataAirline": "", + "codeIcaoAirline": "GAW", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Airlift", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7285, + "callsign": "GRAND AIRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Full Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7286, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GAZ", + "codeIso2Country": "SG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Aviation", + "nameCountry": "Singapore", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7287, + "callsign": "", + "codeHub": "AKL", + "codeIataAirline": "", + "codeIcaoAirline": "GBA", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Barrier Air", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7288, + "callsign": "", + "codeHub": "AKL", + "codeIataAirline": "", + "codeIcaoAirline": "GBA", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Great Barrier Airlines", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7289, + "callsign": "GULF BAHRAIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GBA", + "codeIso2Country": "BH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gulf Air Bahrain", + "nameCountry": "Bahrain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7290, + "callsign": "GEORGIAN BAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GBA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Georgian Bay Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7291, + "callsign": "GLOBE CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GBC", + "codeIso2Country": "AG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Globe Air Cargo", + "nameCountry": "Antigua and Barbuda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7292, + "callsign": "GABEX", + "codeHub": "LBV", + "codeIataAirline": "", + "codeIcaoAirline": "GBE", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gabon Express", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7293, + "callsign": "GICON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GBF", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7294, + "callsign": "OMEGA COPTERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GBG", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Omega Copters", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7295, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GBH", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Avia Handling", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7296, + "callsign": "GLOBAL JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GBJ", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "WM Aero Charter", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7297, + "callsign": "GLOBAL JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GBJ", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Business Charter", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7298, + "callsign": "GLOBAL THAI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GBJ", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RPS System", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7299, + "callsign": "AEREO GEE-BEE-EMM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GBM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GBM Aereo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7300, + "callsign": "ATLANTIC GABON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GBN", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Airlines", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7301, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GBO", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ogooue Air Cargo", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7302, + "callsign": "GREENBRIER AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GBR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rader Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7303, + "callsign": "GLOBAL SERVE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GBS", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Air Servies Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7304, + "callsign": "GOLDBELT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GBT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gold Belt Air Transport", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7305, + "callsign": "GLOBETROTTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GBT", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "A-Jet Aviation Aircraft Management", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7306, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GBU", + "codeIso2Country": "GW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linhas Aereas da Guine Bissau", + "nameCountry": "Guinea-Bissau", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7307, + "callsign": "TRANSBISSAU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GBU", + "codeIso2Country": "GW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transports A�riens de La Guinee-Bissau", + "nameCountry": "Guinea-Bissau", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7308, + "callsign": "ISLAND TIGER", + "codeHub": "FLL", + "codeIataAirline": "", + "codeIcaoAirline": "GBX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GB Airlink", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7309, + "callsign": "", + "codeHub": "DKR", + "codeIataAirline": "", + "codeIcaoAirline": "GCA", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Georgian Cargo Airlines", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7310, + "callsign": "GEORGIAN CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GCA", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Georgian Cargo Airlines", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7311, + "callsign": "GECAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GCC", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GECAS", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7312, + "callsign": "WEST GEORGIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GCD", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West Georgia", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7313, + "callsign": "EUROPA CANARIAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GCE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Europa Canarias Lineas Aereas S.A.U.", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7314, + "callsign": "AEROCARTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GCF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronor", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7315, + "callsign": "GAMA SWISS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GCH", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gama Aviation", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7316, + "callsign": "AEROGEM", + "codeHub": "ACC", + "codeIataAirline": "", + "codeIcaoAirline": "GCK", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerogem Cargo", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7317, + "callsign": "", + "codeHub": "ACC", + "codeIataAirline": "", + "codeIcaoAirline": "GCK", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AeroGEM Aviation", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7318, + "callsign": "GREENCLOSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GCL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Greenclose Aviation Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7319, + "callsign": "GLOBECOM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GCM", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comair Flight Services - CFS", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7320, + "callsign": "GULF CENTRAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GCN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gulf Central Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7321, + "callsign": "SPEEDCAT", + "codeHub": "STN", + "codeIataAirline": "", + "codeIcaoAirline": "GCR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cougar Leasing", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7322, + "callsign": "GALION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GCS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GCS Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7323, + "callsign": "GALION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GCS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Galion Crestline Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7324, + "callsign": "GULF COAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GCT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "G C Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7325, + "callsign": "GEE-BIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GCV", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "G-1 RT", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7326, + "callsign": "", + "codeHub": "HGU", + "codeIataAirline": "", + "codeIcaoAirline": "GCW", + "codeIso2Country": "PG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hevilift (PNG)", + "nameCountry": "Papua New Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7327, + "callsign": "GLOBALCREW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GCW", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Air Crew", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7328, + "callsign": "HELIBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GCY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CHC Global Operations International", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7329, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GCZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7330, + "callsign": "GOLDAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GDA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gold Air International", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7331, + "callsign": "BELGIAN GENDARMERIE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GDB", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gendarmerie Belge", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7332, + "callsign": "GOLDEN AIRLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GDD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Golden Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7333, + "callsign": "GADEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GDE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Gadel", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7334, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GDF", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DF Aviation", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7335, + "callsign": "GOLDEN GATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GDG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S.P. Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7336, + "callsign": "RISING SUN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GDH", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guneydogu Havacilik Isletmesi", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7337, + "callsign": "GOLDECK FLUG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GDK", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Goldeck-Flug", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7338, + "callsign": "AEROSERVIZI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GDM", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eas Aeroservizi", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7339, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GDN", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gerry's Dnata", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7340, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GDN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Golden Airline Cargo", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7341, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GDQ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lincoln, Ne Air National Guard", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 7342, + "callsign": "VALIKO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GDR", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GVG Airlines Company", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7343, + "callsign": "GOLDLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GDS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Golden Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7344, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GDW", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Goldwing Airlines", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7345, + "callsign": "GUARDIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GDY", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Australian Law Enforcement Agencies", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7346, + "callsign": "", + "codeHub": "SSG", + "codeIataAirline": "", + "codeIcaoAirline": "GEA", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinea Ecuatorial Airlines - GEASA", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7347, + "callsign": "", + "codeHub": "SSG", + "codeIataAirline": "", + "codeIcaoAirline": "GEA", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GEASA - Guinea Ecuatorial Airlines", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7348, + "callsign": "", + "codeHub": "TBS", + "codeIataAirline": "", + "codeIcaoAirline": "GEA", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caucasus Aeroservice", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7349, + "callsign": "GRASA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GEA", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinea Ecuatorial Airlines (GEASA)", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7350, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GEA", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GEASA", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7351, + "callsign": "ALAZANI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GEA", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caucasus Airways", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7352, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GEA", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caucasus Air Service", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7353, + "callsign": "GOLF-BRAVO AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GEB", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gee Bee Air", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7354, + "callsign": "LANGUEDOC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GED", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Europe Air Lines", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7355, + "callsign": "GEESEAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GEE", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Geeseair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7356, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GEE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero GE", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7357, + "callsign": "AIR GEFCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GEF", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Gefco", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7358, + "callsign": "GREENJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GEJ", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Green Jet Airlines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7359, + "callsign": "GOLDEN EAGLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GEL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Golden Eagle Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7360, + "callsign": "SAPPHIRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GEM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bristol BAe", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7361, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GEM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Africa International", + "nameCountry": "Tanzania, United Republic of", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7362, + "callsign": "", + "codeHub": "CGR", + "codeIataAirline": "", + "codeIcaoAirline": "GEN", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GENSA - General Servicos Aereos", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7363, + "callsign": "GENSA-BRASIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GEN", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GENSA - General Services Aviation", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7364, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GEN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MAM Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7365, + "callsign": "GENAVCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GEN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Westminster Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7366, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GEN", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GENSA", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7367, + "callsign": "", + "codeHub": "TBS", + "codeIataAirline": "", + "codeIcaoAirline": "GEO", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Karre Aviation Georgia", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7368, + "callsign": "TBILISI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GEO", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Georgian Air", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7369, + "callsign": "KARTULI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GEO", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Georgian", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7370, + "callsign": "", + "codeHub": "SCL", + "codeIataAirline": "", + "codeIcaoAirline": "GER", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Airlines (Chile)", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7371, + "callsign": "GERMAN WINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GER", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "German European Airlines", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7372, + "callsign": "", + "codeHub": "MAD", + "codeIataAirline": "", + "codeIcaoAirline": "GES", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gestair Private Jets", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7373, + "callsign": "GESTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GES", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gestair", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7374, + "callsign": "", + "codeHub": "SSG", + "codeIataAirline": "", + "codeIcaoAirline": "GET", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GETRA - Guinea Ecuatorial de Transportes Aereos", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7375, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GET", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinea Equatorial de Transportes Aereos (GETRA)", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7376, + "callsign": "AIR FLOW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GET", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Get High", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7377, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GET", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GETRA-Guinea Ecuatorial de Transportes A", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7378, + "callsign": "GETRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GET", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinea Ecuatorial de Transportes Aereos (GETRA)", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7379, + "callsign": "GESTAVI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GEV", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gestavi", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7380, + "callsign": "GAIL FORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GFC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gail Force Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7381, + "callsign": "GULF COAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GFC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gulf Coast Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7382, + "callsign": "KITE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GFD", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gesellschaft Fur Flugzieldarstellung", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7383, + "callsign": "GREENLEAF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GFE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Archer Daniels Midland", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7384, + "callsign": "GRIFFON AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GFF", + "codeIso2Country": "CY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Griffon Aviation (Cyprus)", + "nameCountry": "Cyprus", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7385, + "callsign": "GREMI", + "codeHub": "TBS", + "codeIataAirline": "", + "codeIcaoAirline": "GFG", + "codeIso2Country": "GE", + "founding": 1998, + "iataPrefixAccounting": "", + "nameAirline": "Sky Georgia", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7386, + "callsign": "GREMI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GFG", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bised", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7387, + "callsign": "GREEN FOREST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GFL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Green Forest Lumber", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7388, + "callsign": "GRIFFON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GFN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "The 955 Preservation Group", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7389, + "callsign": "AEROVIAS GOLFO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GFO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovias Del Golfo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7390, + "callsign": "", + "codeHub": "BNE", + "codeIataAirline": "", + "codeIcaoAirline": "GFR", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Air Australia", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7391, + "callsign": "APUSK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GFR", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia-Pusk", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7392, + "callsign": "GULFSTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GFS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gulfstream Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7393, + "callsign": "GRUPO- AFA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GFV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grupo Aeronautico AFA", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7394, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GFW", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GFW Aviation", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7395, + "callsign": "JAWJA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GGA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "First Flying Squadron", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7396, + "callsign": "ECUATO GUINEA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GGE", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gobierno de la Republica de Guinea Ecuatorial", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7397, + "callsign": "", + "codeHub": "DKR", + "codeIataAirline": "", + "codeIcaoAirline": "GGF", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GCAA - Georgian Cargo Airlines Africa", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7398, + "callsign": "GEORGIAN AFRICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GGF", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Georgian Cargo Airlines", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7399, + "callsign": "GEOCARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GGG", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cargo Georgia", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7400, + "callsign": "", + "codeHub": "LAD", + "codeIataAirline": "", + "codeIcaoAirline": "GGL", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gira Globo Aeronautica", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7401, + "callsign": "", + "codeHub": "LAD", + "codeIataAirline": "", + "codeIcaoAirline": "GGL", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronautica Gira Globo", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7402, + "callsign": "GIRA GLOBO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GGL", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gira Globo", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7403, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GGL", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gira Globo Ltda Aeronautica", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7404, + "callsign": "", + "codeHub": "HEL", + "codeIataAirline": "", + "codeIcaoAirline": "GGO", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Go! Aviation (Finland)", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7405, + "callsign": "AVIAL-GEORGIA", + "codeHub": "TBS", + "codeIataAirline": "", + "codeIcaoAirline": "GGO", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avial", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7406, + "callsign": "GO BIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GGO", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Go! Aviation", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7407, + "callsign": "GATSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GGS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GATSA General de Aerotransorte", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7408, + "callsign": "HELIVALLEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GGW", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Training Vallee", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7409, + "callsign": "", + "codeHub": "TBS", + "codeIataAirline": "", + "codeIcaoAirline": "GGZ", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Georgian Airways", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7410, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GHF", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ghana Air Force", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 7411, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GHI", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GH Stansted", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7412, + "callsign": "GOLDEN HAWK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GHK", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vintage Wings Of Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7413, + "callsign": "GUILIN ROTOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GHL", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guilin General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7414, + "callsign": "HANDLING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GHL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gatwick Handling", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7415, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GHM", + "codeIso2Country": "BO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Service Bolivia", + "nameCountry": "Bolivia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7416, + "callsign": "AIR GHANA", + "codeHub": "ACC", + "codeIataAirline": "", + "codeIcaoAirline": "GHN", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Ghana", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7417, + "callsign": "GRASSHOPPER EX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GHP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Colvin Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7418, + "callsign": "GATARI", + "codeHub": "HLP", + "codeIataAirline": "", + "codeIcaoAirline": "GHS", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gatari Air Service", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7419, + "callsign": "GATARI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GHS", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gatari Hutama Air Services", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7420, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GHT", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ghadames Air Transport", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7421, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GHT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ghadames Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7422, + "callsign": "GROUND HANDLING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GHV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ground Handling Service de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7423, + "callsign": "AIRSTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GHW", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airstar", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7424, + "callsign": "GERMAN SKY", + "codeHub": "DUS", + "codeIataAirline": "", + "codeIcaoAirline": "GHY", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "German Sky Airlines", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7425, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GHY", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "German Sky Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7426, + "callsign": "", + "codeHub": "CKY", + "codeIataAirline": "", + "codeIcaoAirline": "GIB", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GR Avia", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7427, + "callsign": "GRAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIB", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GR Air", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7428, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIB", + "codeIso2Country": "GW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GR Avia", + "nameCountry": "Guinea-Bissau", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7429, + "callsign": "CEBEGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIC", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compagnie de Bauxites de Guinee", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7430, + "callsign": "", + "codeHub": "CKY", + "codeIataAirline": "", + "codeIcaoAirline": "GID", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Galex Guinee Air", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7431, + "callsign": "SUD TRANSPORT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GID", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sud Air Transport", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7432, + "callsign": "INTECOM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GID", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grupo Integracion Comercializacion y Servicios", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7433, + "callsign": "", + "codeHub": "NSI", + "codeIataAirline": "", + "codeIcaoAirline": "GIE", + "codeIso2Country": "CM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elysian Airlines", + "nameCountry": "Cameroon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7434, + "callsign": "GUINEE INTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIE", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinee Inter Air", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7435, + "callsign": "EAGLEAIR GUINEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIF", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Air Guinee", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7436, + "callsign": "", + "codeHub": "CKY", + "codeIataAirline": "", + "codeIcaoAirline": "GIG", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Guinee Airlines", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7437, + "callsign": "GACELA AIR", + "codeHub": "MEX", + "codeIataAirline": "", + "codeIcaoAirline": "GIG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gacela Air Cargo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7438, + "callsign": "", + "codeHub": "CKY", + "codeIataAirline": "", + "codeIcaoAirline": "GIH", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UTA - Union des Transports Africains de Guinee", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7439, + "callsign": "TRANSPORT AFRICAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIH", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Union Des Transports Africains de Guinee", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7440, + "callsign": "GUINEE AIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIJ", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinee Airways", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7441, + "callsign": "GUINEA AIRTREANSPORT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIK", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinea Air Transport", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7442, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIK", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Konair", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7443, + "callsign": "AFRICAN TRANSPORT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIL", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "African International Transport", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7444, + "callsign": "", + "codeHub": "CKY", + "codeIataAirline": "", + "codeIcaoAirline": "GIM", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinee Express Aviation", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7445, + "callsign": "GUINEE EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIM", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinee Express Air", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7446, + "callsign": "AREDOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIN", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Assn. de Recherche Et D'exploitation de Diamant Et de L'or", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7447, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIN", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gianair", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7448, + "callsign": "GIO-AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIO", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gio", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7449, + "callsign": "GUIPAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIO", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinee Paramount Airlines", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7450, + "callsign": "", + "codeHub": "CKY", + "codeIataAirline": "", + "codeIcaoAirline": "GIQ", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinee Paramount Airlines", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7451, + "callsign": "GUINEE INTERNATIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIR", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Guinee International", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7452, + "callsign": "GUINEE UNION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIR", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinee Air Union", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7453, + "callsign": "GUINEE SOUTHRIVERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIS", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South Rivers Airlines", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7454, + "callsign": "GASS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIS", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinee Air Service", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7455, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIT", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Network Aviation Guinee", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7456, + "callsign": "SOTAG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIT", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soci�t� Des Transports A�riens de Guinee Sarl (SOTAG)", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7457, + "callsign": "MANO GUINEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIU", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mano River Airlines", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7458, + "callsign": "UNION GUINEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIU", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Union Guineene de Transports", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7459, + "callsign": "GRIVCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIV", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grivco Air", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7460, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIV", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grivco International", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7461, + "callsign": "", + "codeHub": "BEY", + "codeIataAirline": "", + "codeIcaoAirline": "GIW", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Sky Aviation (Lebanon)", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7462, + "callsign": "BRISEAIR GUINEE", + "codeHub": "CKY", + "codeIataAirline": "", + "codeIcaoAirline": "GIW", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brise Air", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7463, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIW", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Galex Guinea Air", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7464, + "callsign": "GALEX-GUINEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIX", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Galex-Guinee", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7465, + "callsign": "TRANSMAX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIX", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-Aeromax", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7466, + "callsign": "PROBIZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIY", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Probiuz Guinee", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7467, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GIZ", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Africa Airlines", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7468, + "callsign": "", + "codeHub": "BEY", + "codeIataAirline": "", + "codeIcaoAirline": "GJA", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GlobeJet Airlines", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7469, + "callsign": "SKY TRUCK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GJB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-Air-Link", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7470, + "callsign": "GLOBAL JETS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GJE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Air Charters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7471, + "callsign": "", + "codeHub": "CKY", + "codeIataAirline": "", + "codeIcaoAirline": "GJH", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinea Air Cargo", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7472, + "callsign": "GUINEE AIR", + "codeHub": "CKY", + "codeIataAirline": "", + "codeIcaoAirline": "GJH", + "codeIso2Country": "GN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinee Air Cargo", + "nameCountry": "Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7473, + "callsign": "GETJET", + "codeHub": "VNO", + "codeIataAirline": "", + "codeIcaoAirline": "GJT", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ORO Taksi", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7474, + "callsign": "GOLDEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GJZ", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Golden Air", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7475, + "callsign": "GOLDEN KNIGHTS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GKA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "U S Army Parachute Team", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7476, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GKV", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GKV-Avia", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7477, + "callsign": "", + "codeHub": "MIV", + "codeIataAirline": "", + "codeIcaoAirline": "GLB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Castle", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7478, + "callsign": "GLO-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GLB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Airways, California Airways, Global Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7479, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GLB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tranzglobal", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7480, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GLC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Galecor", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7481, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GLC", + "codeIso2Country": "BH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Aircargo", + "nameCountry": "Bahrain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7482, + "callsign": "GOLDEN STAR", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "GLD", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Golden Star Air Cargo", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7483, + "callsign": "GOLIAF AIR", + "codeHub": "TMS", + "codeIataAirline": "", + "codeIcaoAirline": "GLE", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Goliaf Air", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7484, + "callsign": "GULFSTREAM TEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GLF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gulfstream Aerospace", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7485, + "callsign": "GLEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GLH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gleneagle Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7486, + "callsign": "GALLIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GLI", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gallic Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7487, + "callsign": "GLOBAL AUSTRIA", + "codeHub": "VIE", + "codeIataAirline": "", + "codeIcaoAirline": "GLJ", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Jet Austria", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7488, + "callsign": "KAZAK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GLK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aspan Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7489, + "callsign": "TWINS", + "codeHub": "LAD", + "codeIataAirline": "", + "codeIcaoAirline": "GLL", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Gemini", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7490, + "callsign": "GLOBAL MALI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GLM", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Services Mali", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7491, + "callsign": "GALION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GLN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GCS Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7492, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GLO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gloria", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7493, + "callsign": "QUILADA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GLQ", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "El Quilada International Aviation", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7494, + "callsign": "GALS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GLS", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Galaircervis", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7495, + "callsign": "GASLIGHT", + "codeHub": "SUS", + "codeIataAirline": "", + "codeIcaoAirline": "GLT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Charter, Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7496, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GLT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "General Corporation For Light Air Transport And Technical Services, The", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7497, + "callsign": "GALATA CHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GLT", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Galata Aviacharter", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7498, + "callsign": "LAKES CARGO", + "codeHub": "EBB", + "codeIataAirline": "", + "codeIcaoAirline": "GLU", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Great Lakes Airways", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7499, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GLW", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Execujet Scandinavia", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7500, + "callsign": "GALAXY AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GLY", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Galaxy Aviation", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7501, + "callsign": "GAMA", + "codeHub": "FAB", + "codeIataAirline": "", + "codeIcaoAirline": "GMA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gama Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7502, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GMA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gama Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7503, + "callsign": "BERIEV-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GMB", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Beriev Aviation Scientific Technical Complex", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7504, + "callsign": "GENERAL MOTORS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GMC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "General Motors Corporation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7505, + "callsign": "GURUGE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GMD", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guruge Airlines", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7506, + "callsign": "MAYAN EAGLES", + "codeHub": "GUA", + "codeIataAirline": "", + "codeIcaoAirline": "GME", + "codeIso2Country": "GT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aguilas Mayas Internacional", + "nameCountry": "Guatemala", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7507, + "callsign": "HUGHES EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GMH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hughes Aircraft Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7508, + "callsign": "GAMISA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GMJ", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gamisa Aviacion", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7509, + "callsign": "GEEANDEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GML", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "G & L Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7510, + "callsign": "AEROGAUMUCHIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GMM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis Guamuchil", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7511, + "callsign": "GRAMPIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GMN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grampian Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7512, + "callsign": "EXPEDITOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GMR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gold Coast Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7513, + "callsign": "SERVICIOS GAMA", + "codeHub": "GDL", + "codeIataAirline": "", + "codeIcaoAirline": "GMS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicios Gama", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7514, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GMT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Magnicharters", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7515, + "callsign": "GRUPOMONTERREY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GMT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grupoaereo Monterrey", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7516, + "callsign": "GOLDEN MEXICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GMX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Golden Aviation de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7517, + "callsign": "SERVIGANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GNA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Gana", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7518, + "callsign": "GLOBAL AIRLINK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GNB", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Air Link", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7519, + "callsign": "GUINEA CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GNC", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinea Cargo", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7520, + "callsign": "GRAND VEGAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GND", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grand Airways Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7521, + "callsign": "ZODIAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GNI", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gemini", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7522, + "callsign": "GENERAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GNL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "General Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7523, + "callsign": "GENERAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GNL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "135 Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7524, + "callsign": "GANAMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GNM", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ganaman Airlines", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7525, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GNN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7526, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GNO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grand Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7527, + "callsign": "GENESIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GNS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastern Executive Air Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7528, + "callsign": "GINTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GNT", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gintarines Avialinous", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7529, + "callsign": "GENERAL AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GNV", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "General Avia", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7530, + "callsign": "AEROGENEX", + "codeHub": "MHP", + "codeIataAirline": "", + "codeIcaoAirline": "GNX", + "codeIso2Country": "BY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Genex", + "nameCountry": "Belarus", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7531, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GNX", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Genex", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7532, + "callsign": "GERMAN NAVY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GNY", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "German Navy", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7533, + "callsign": "GONZO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GNZ", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "General Aviation Services", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7534, + "callsign": "", + "codeHub": "YEG", + "codeIataAirline": "", + "codeIcaoAirline": "GOA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alberta Government Air Transportation Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 7535, + "callsign": "ALBERTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GOA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alberta Government", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7536, + "callsign": "PILGRIM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GOB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dash Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7537, + "callsign": "GOF-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GOF", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gof-Air", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7538, + "callsign": "GOLDWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GOG", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mframa Airlines", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7539, + "callsign": "GAMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GOG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gama Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7540, + "callsign": "SWISS HAWK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GOI", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gofir", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7541, + "callsign": "GO JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GOJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurojet Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7542, + "callsign": "ZHAYREM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GOK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zhayrem Gok", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7543, + "callsign": "AEREOGOLFO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GOL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Del Golfo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7544, + "callsign": "GOLDEN STATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GOL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Golden State Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7545, + "callsign": "GOMEL", + "codeHub": "GME", + "codeIataAirline": "", + "codeIcaoAirline": "GOM", + "codeIso2Country": "BY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gomelavia", + "nameCountry": "Belarus", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7546, + "callsign": "GONINI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GON", + "codeIso2Country": "SR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gonini Air Services", + "nameCountry": "Suriname", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7547, + "callsign": "GOSPA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GOP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gospa Air", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7548, + "callsign": "GORLITSA", + "codeHub": "IEV", + "codeIataAirline": "", + "codeIcaoAirline": "GOR", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gorlitsa Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7549, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GOS", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Goldfields Air Services", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7550, + "callsign": "GOTIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GOT", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Waltair Europe", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7551, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GOT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Waltair Europe", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7552, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GOV", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7553, + "callsign": "GOLD PAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GPA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Golden Pacific Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7554, + "callsign": "AIR GULFPEARL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GPC", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gulf Pearl Air Lines", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7555, + "callsign": "REGIONAL EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GPE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GP Express Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7556, + "callsign": "GERMAN POLAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GPL", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DLR Deutsche Forschungsanstalt Fur Luft Und Raumfahfit", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7557, + "callsign": "GRUPOMED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GPM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grup Air-Med", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7558, + "callsign": "GOOSEPOOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GPO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northern Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7559, + "callsign": "GPM AEROSERVICIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GPR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GPM Aeroservicio", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7560, + "callsign": "ALATAU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GPS", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ABS Avia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7561, + "callsign": "PROMODAL", + "codeHub": "GRU", + "codeIataAirline": "", + "codeIcaoAirline": "GPT", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Promodal Transportes Aereos", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7562, + "callsign": "GREAT AMERICAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GRA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Great American Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7563, + "callsign": "GRACE FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GRC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grace Flight Of America", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7564, + "callsign": "GRID", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GRD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Grid Co.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7565, + "callsign": "", + "codeHub": "GLA", + "codeIataAirline": "", + "codeIcaoAirline": "GRE", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Scotland", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 7566, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GRE", + "codeIso2Country": "GL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Greenlandcopter", + "nameCountry": "Greenland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7567, + "callsign": "AEROGRYF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GRF", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerogryf", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7568, + "callsign": "GREEN HILLS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GRH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Green Hills Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7569, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GRI", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cargo Center", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7570, + "callsign": "", + "codeHub": "ATH", + "codeIataAirline": "", + "codeIcaoAirline": "GRJ", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GreenJet Airlines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7571, + "callsign": "GREEN JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GRJ", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GreenJet", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7572, + "callsign": "", + "codeHub": "LPEV", + "codeIataAirline": "", + "codeIcaoAirline": "GRR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Agroar Carga Aerea", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7573, + "callsign": "AGROAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GRR", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Agroar - Trabalhos Aereos", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7574, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GRT", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gabon-Air-Transport", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7575, + "callsign": "", + "codeHub": "ATH", + "codeIataAirline": "", + "codeIcaoAirline": "GRV", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ver-Avia", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7576, + "callsign": "GROSVENOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GRV", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grosvenor Aviation Servcies", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7577, + "callsign": "NIGHT RIDER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GRV", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vernicos Aviation", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7578, + "callsign": "NIGHT RIDER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GRV", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Epsilon Aviation", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7579, + "callsign": "GRODNO", + "codeHub": "GNA", + "codeIataAirline": "", + "codeIcaoAirline": "GRX", + "codeIso2Country": "BY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircompany Grodno", + "nameCountry": "Belarus", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7580, + "callsign": "GRAY RIDER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GRY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "New York State Police", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7581, + "callsign": "COM FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GRZ", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Government of Zambia Communications Flight (Aircraft)", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 7582, + "callsign": "GARDEN STATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GSA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Garden State Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7583, + "callsign": "GOLDEN STATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GSC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Golden State Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7584, + "callsign": "", + "codeHub": "BOG", + "codeIataAirline": "", + "codeIcaoAirline": "GSE", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CV Cargo", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7585, + "callsign": "SAGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GSE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saga", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7586, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GSG", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GS Aviation (Gambia)", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7587, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GSH", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gambia air Shuttle", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7588, + "callsign": "GAMAMENA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GSH", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gama Aviation", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7589, + "callsign": "SLOVENIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GSI", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Government of the Republic of Slovenia", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 7590, + "callsign": "GROSSJET", + "codeHub": "PRG", + "codeIataAirline": "", + "codeIcaoAirline": "GSJ", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "G-Jet", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7591, + "callsign": "GROSSMANN", + "codeHub": "PRG", + "codeIataAirline": "", + "codeIcaoAirline": "GSJ", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grossmann Jet Service", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7592, + "callsign": "GROSSMANN", + "codeHub": "VIE", + "codeIataAirline": "", + "codeIcaoAirline": "GSJ", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grossmann Air Service", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7593, + "callsign": "GLOBAL SKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GSK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Sky Aircharter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7594, + "callsign": "SURVEY-CANADA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GSL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Geographic Air Surveys", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7595, + "callsign": "SKY WALKER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GSO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Flight Solutions", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7596, + "callsign": "GREEN SPEED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GSP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlift Alaska", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7597, + "callsign": "JET LIFT", + "codeHub": "STN", + "codeIataAirline": "", + "codeIcaoAirline": "GSS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Supply Systems", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7598, + "callsign": "GHANA SHUTTLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GST", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ghana Air Shuttle", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7599, + "callsign": "AGRAV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GSV", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Agrocentr-Avia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7600, + "callsign": "EIGER", + "codeHub": "ZRH", + "codeIataAirline": "", + "codeIcaoAirline": "GSW", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Germania Flug", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7601, + "callsign": "GUARD AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GSY", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guard Systems", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 7602, + "callsign": "GEETEE AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GTA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GT Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7603, + "callsign": "GOLDEN WINGS", + "codeHub": "IST", + "codeIataAirline": "", + "codeIcaoAirline": "GTC", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Golden International Airlines", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7604, + "callsign": "GATOR FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GTF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ELJ Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7605, + "callsign": "GOTHAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GTH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "General Aviation Flying Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7606, + "callsign": "MAGNO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GTM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grupo Turistico Magno", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7607, + "callsign": "GRUPOTAMPICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GTP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxi Grupo Tampico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7608, + "callsign": "", + "codeHub": "AUH", + "codeIataAirline": "", + "codeIcaoAirline": "GTS", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GATS Airlines", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7609, + "callsign": "", + "codeHub": "DKR", + "codeIataAirline": "", + "codeIcaoAirline": "GTS", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transair (Senegal)", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7610, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GTS", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Groupe Transair", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7611, + "callsign": "GATS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GTS", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GATS", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7612, + "callsign": "GATEWAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GTW", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gateway Aviation", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7613, + "callsign": "UNITED STATES OF AMERICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GTW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Multi-Aero", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7614, + "callsign": "UNITED STATES OF AMERICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GTW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "American Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7615, + "callsign": "BIG-DEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GTX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GTA Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7616, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GTY", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Aviation Company", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7617, + "callsign": "AGUASCALIENTES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GUA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis de Aguascalientes", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7618, + "callsign": "", + "codeHub": "HMO", + "codeIataAirline": "", + "codeIcaoAirline": "GUE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aereo Servicio Guerrero", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7619, + "callsign": "AERO GUERRERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GUE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Servicio Guerrero", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7620, + "callsign": "GULF AFRICAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GUF", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gulf African Airlines", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7621, + "callsign": "GULL-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GUL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gull Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7622, + "callsign": "GUM AIR", + "codeHub": "ORG", + "codeIataAirline": "", + "codeIcaoAirline": "GUM", + "codeIso2Country": "SR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gum Air", + "nameCountry": "Suriname", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7623, + "callsign": "", + "codeHub": "ANC", + "codeIataAirline": "", + "codeIcaoAirline": "GUN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grant Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7624, + "callsign": "GUJA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GUS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guja", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7625, + "callsign": "GRUPOVA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GVA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grupo Aeronautico Ova", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7626, + "callsign": "GAVAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GVA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gavinair", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7627, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GVB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "An-2", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7628, + "callsign": "BLUECRAFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GVG", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flygaktiebolaget Gota Vingar", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7629, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "GVI", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Victory Georgia", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7630, + "callsign": "", + "codeHub": "TBS", + "codeIataAirline": "", + "codeIcaoAirline": "GVI", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Victory Georgia", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7631, + "callsign": "GAVINA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GVN", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gavina", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7632, + "callsign": "GLOVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GVS", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Globus Avia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7633, + "callsign": "GEEVAX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GVX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Geevax", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7634, + "callsign": "G-W AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GWA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Great Western Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7635, + "callsign": "GULF WINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GWC", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gulf Wings", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7636, + "callsign": "JUPITER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GWH", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gulf Wing Aviation", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7637, + "callsign": "GWYN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GWN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gwyn Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7638, + "callsign": "GREAT WESTERN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GWS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Great Western Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7639, + "callsign": "", + "codeHub": "BSG", + "codeIataAirline": "", + "codeIcaoAirline": "GWX", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "General Work Aviacion", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7640, + "callsign": "SUN BURN", + "codeHub": "NAS", + "codeIataAirline": "", + "codeIcaoAirline": "GWZ", + "codeIso2Country": "BS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Golden Wings Charter", + "nameCountry": "Bahamas", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7641, + "callsign": "", + "codeHub": "KIV", + "codeIataAirline": "", + "codeIcaoAirline": "GXA", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grixona", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7642, + "callsign": "GULF EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GXA", + "codeIso2Country": "BH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gulf Express Aviation", + "nameCountry": "Bahrain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7643, + "callsign": "STARDUST", + "codeHub": "FRA", + "codeIataAirline": "", + "codeIcaoAirline": "GXL", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star XL German Airlines", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7644, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GXL", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "StarXL German Airlines", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7645, + "callsign": "GAZELLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GXY", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Galaxy Airways", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7646, + "callsign": "NATAKHTARI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GYG", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Serviceair", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7647, + "callsign": "", + "codeHub": "LWN", + "codeIataAirline": "", + "codeIcaoAirline": "GYM", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gyumri Airlines", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7648, + "callsign": "GYUMRU AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GYM", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gyumru Aviaughiner", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7649, + "callsign": "GYPSY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GYP", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7650, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GYR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gyrafrance", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7651, + "callsign": "", + "codeHub": "FMM", + "codeIataAirline": "", + "codeIcaoAirline": "GZA", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Excellent Air (Germany)", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7652, + "callsign": "GRENZLAND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GZA", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grenzland Air Service", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7653, + "callsign": "EXCELLENT AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GZA", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Excellent Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7654, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7655, + "callsign": "", + "codeHub": "UUBW", + "codeIataAirline": "", + "codeIcaoAirline": "GZD", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "V. Grizodubova Air Company", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7656, + "callsign": "GORIZONT AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "GZT", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gorizont Air", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7657, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "H1A", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helikopter Air Transport GmbH", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7658, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "H2P", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hawkins & Powers Aviation", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7659, + "callsign": "AGROFORESTAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAA", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopteros Agroforestal", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7660, + "callsign": "HARRISON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Harrison Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7661, + "callsign": "ASKHAB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAB", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ashab", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7662, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAC", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Henebury Aviation", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7663, + "callsign": "HELIANDES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAD", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopteros Andes", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7664, + "callsign": "HOLLAND AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kenmore Crew Leasing", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7665, + "callsign": "HELLENIC AIR FORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAF", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hellenic Air Force", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 7666, + "callsign": "HEARST AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAF", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hearst Air Service", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7667, + "callsign": "HAGELAND", + "codeHub": "KSM", + "codeIataAirline": "", + "codeIcaoAirline": "HAG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ravn Connect", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7668, + "callsign": "HANMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAH", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hanhwa Business Jet Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7669, + "callsign": "", + "codeHub": "HAN", + "codeIataAirline": "", + "codeIcaoAirline": "HAI", + "codeIso2Country": "VN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hai Au Aviation", + "nameCountry": "Vietnam", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7670, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAI", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Century Aviation International", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7671, + "callsign": "HAJVAIRY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAJ", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hajvairy Airlines", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7672, + "callsign": "DINGCHANG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zhoushan Avic Joy General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7673, + "callsign": "HARKAIR SERVICES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAK", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Harka Air Services Nig.", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7674, + "callsign": "HELIFALCON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAK", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pegasus Helicopters", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7675, + "callsign": "AIR HYANNIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hyannis Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7676, + "callsign": "HARTY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAO", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Harty Aviation", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7677, + "callsign": "HELIPERSONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopteros Aero Personal", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7678, + "callsign": "", + "codeHub": "LCE", + "codeIataAirline": "", + "codeIcaoAirline": "HAS", + "codeIso2Country": "HN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Caribe de Honduras", + "nameCountry": "Honduras", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7679, + "callsign": "HAROLDS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Harold's Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7680, + "callsign": "HONDURAS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAS", + "codeIso2Country": "HN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Honduras Airlines", + "nameCountry": "Honduras", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7681, + "callsign": "SKY RUNNER", + "codeHub": "ZAZ", + "codeIataAirline": "", + "codeIcaoAirline": "HAT", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Horizont", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7682, + "callsign": "TAXI BIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Taxi", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7683, + "callsign": "SKYHAUL", + "codeHub": "QRA", + "codeIataAirline": "", + "codeIcaoAirline": "HAU", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyhaul", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7684, + "callsign": "HAVILAH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAV", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Havilah Air Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7685, + "callsign": "HAV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAV", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hamlin Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7686, + "callsign": "CAMBRIDGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAW", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hawkair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7687, + "callsign": "SCOOP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAX", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Benair Norway", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7688, + "callsign": "SCOOP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HAX", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hangar 5 Air Services Norway", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7689, + "callsign": "HAMBURG AIRWAYS", + "codeHub": "HAM", + "codeIataAirline": "", + "codeIcaoAirline": "HAY", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hamburg Airways", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7690, + "callsign": "HARBOR AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HBA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Harbor Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7691, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HBB", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nimbus", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7692, + "callsign": "HALISA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HBC", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Haitian Aviation Line", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7693, + "callsign": "HUBBARDAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HBD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hubbardair Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7694, + "callsign": "HAMBURG AIRLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HBG", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hamburg Chile Airlines", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7695, + "callsign": "HELIBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HBI", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CHC Denmark APS", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7696, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HBL", + "codeIso2Country": "BM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "HKJ Bermuda", + "nameCountry": "Bermuda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7697, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HBM", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mali-tinbouctou Air Service (Malitas)", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7698, + "callsign": "HEBRIDEAN", + "codeHub": "EGPG", + "codeIataAirline": "", + "codeIcaoAirline": "HBR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hebridean Air Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7699, + "callsign": "HABICHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HBT", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polizeihubschrauberstaffel Thuringen", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7700, + "callsign": "KHARKIV UNIVERSAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HBU", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Universal Avia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7701, + "callsign": "HAVASU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HCA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lake Havasu Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7702, + "callsign": "HELEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HCB", + "codeIso2Country": "BB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helenair", + "nameCountry": "Barbados", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7703, + "callsign": "HELBEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HCC", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helbey Air Cargo", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7704, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HCG", + "codeIso2Country": "GT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopteros de Guatemala", + "nameCountry": "Guatemala", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7705, + "callsign": "HELICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HCH", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopteros del Caribe (HELICA)", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7706, + "callsign": "HELLISAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HCH", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hellis Avia Charter", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7707, + "callsign": "HELI-CHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HCK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli-Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7708, + "callsign": "HELENCORP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HCL", + "codeIso2Country": "LC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helenair Corporation", + "nameCountry": "Saint Lucia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7709, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HCN", + "codeIso2Country": "GW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Halcyon Air/Bissau Airways", + "nameCountry": "Guinea-Bissau", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7710, + "callsign": "HALCYON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HCN", + "codeIso2Country": "GW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Halcyon Air Bissau Airways", + "nameCountry": "Guinea-Bissau", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7711, + "callsign": "HARCO AIR", + "codeHub": "KAD", + "codeIataAirline": "", + "codeIcaoAirline": "HCO", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Harco Air Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7712, + "callsign": "HELI CZECH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HCP", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopter", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7713, + "callsign": "HELICRAFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HCR", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lifeflight", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7714, + "callsign": "HELIWALES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HCS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicharter Wales", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7715, + "callsign": "ROTORCAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HCT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CatHelicopters", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7716, + "callsign": "HERMIS CAPITAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HCW", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "HC Airways", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7717, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HCZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7718, + "callsign": "HELICATALUNA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HDC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopteros de Cataluna", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7719, + "callsign": "DINAMICOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HDI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hoteles Dinamicos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7720, + "callsign": "HENDELL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HDL", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hendell Aviation", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7721, + "callsign": "HOG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HDM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Harley Davidson", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7722, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HDQ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7723, + "callsign": "HELIDRIFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HDR", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helikopterdrift", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7724, + "callsign": "HELIAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEA", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heliavia-Transporte Aereo", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7725, + "callsign": "HELIBERNINA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEB", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Bernina", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7726, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEB", + "codeIso2Country": "FO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FaeroeCopter", + "nameCountry": "Faroe Islands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7727, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEC", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopter Corporation of India", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7728, + "callsign": "HELICAMPECHE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heliservicio Campeche", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7729, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heliservicio Campeche SA de CV", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7730, + "callsign": "FLAPJACK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HED", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heritage Aviation Developments", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7731, + "callsign": "HELI-EUROPE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEE", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Europe", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7732, + "callsign": "HELIEJECUTIVO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heliejecutivo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7733, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "HELIMAR - Helicopteros del Mare Nostrum", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7734, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEG", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "J.J. Gradin Aviacion", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7735, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEH", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helitrans AG", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7736, + "callsign": "AEROHEIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEI", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ricardo Hein B (Aerohein)", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7737, + "callsign": "HELICOL", + "codeHub": "BAQ", + "codeIataAirline": "", + "codeIcaoAirline": "HEL", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicol. Helicopteros Nacionales de Colombia", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7738, + "callsign": "HEMS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEM", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CHC Helicopters", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7739, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEM", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CHC Helicopters (Australia)", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7740, + "callsign": "HEMMETER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hemmeter Aviation", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7741, + "callsign": "HELINAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopteros Y Vehiculos Nacionales Aereos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7742, + "callsign": "GELAVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEO", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircompany Helios", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7743, + "callsign": "HELIOPOLIS", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "HEP", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heliopolis Airline", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7744, + "callsign": "HELIPOLICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEP", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oslo Politidistrikt, Helikoptertjenesten", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7745, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HES", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Harbour Air Malta", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7746, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HES", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Services", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7747, + "callsign": "HELITAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HET", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helitac Air Couriers", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7748, + "callsign": "HELITAF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HET", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAF Helicopters", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7749, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEU", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Highland European", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7750, + "callsign": "HELIJECUTIVO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopteros Ejecutivos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7751, + "callsign": "HELIWATER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEW", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ASA Heli-Water", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7752, + "callsign": "HATAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hatfield Executive Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7753, + "callsign": "HONIARA CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEX", + "codeIso2Country": "SB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Honiara Cargo Express", + "nameCountry": "Solomon Islands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7754, + "callsign": "ARROW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HEZ", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arrow Aviation", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7755, + "callsign": "TIBBET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HFD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hatfield BAe", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7756, + "callsign": "HIGHFIELD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HFD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BCA Charters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7757, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HFD", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue City Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7758, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HFI", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "HFIS - Happy Flight International Support", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7759, + "callsign": "PANGU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HFJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yifeng Business Jet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7760, + "callsign": "HELIFLYG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HFL", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heliflyg", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7761, + "callsign": "HANSEFLUG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HFL", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hanseflug", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7762, + "callsign": "MOONRAKER", + "codeHub": "MLA", + "codeIataAirline": "", + "codeIcaoAirline": "HFM", + "codeIso2Country": "MT", + "founding": 2013, + "iataPrefixAccounting": "", + "nameAirline": "Hi Fly Malta", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7763, + "callsign": "HELIFRANCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HFR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli France", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7764, + "callsign": "HOGAN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HGA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hogan Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7765, + "callsign": "", + "codeHub": "ULN", + "codeIataAirline": "", + "codeIcaoAirline": "HGD", + "codeIso2Country": "MN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hangard Airlines", + "nameCountry": "Mongolia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7766, + "callsign": "HANGARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HGD", + "codeIso2Country": "MN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hangard Aviation", + "nameCountry": "Mongolia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7767, + "callsign": "HOAGIE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HGE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Martins Famous Pastry Shoppe", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7768, + "callsign": "SALAAMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HGK", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fika Salaama Airlines", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7769, + "callsign": "MAHSURI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HGM", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prime Air", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7770, + "callsign": "HANG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HGR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hangar 8 Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7771, + "callsign": "HIGHTECH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HGT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GMJ Air Shuttle", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7772, + "callsign": "HELI HOLLAND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HHE", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli-holland", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7773, + "callsign": "HANERGY JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HHG", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hanergy Jet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7774, + "callsign": "HELICSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HHH", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicsa", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7775, + "callsign": "CORINIUM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HHH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "H H Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7776, + "callsign": "", + "codeHub": "HKG", + "codeIataAirline": "", + "codeIcaoAirline": "HHK", + "codeIso2Country": "HK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Shuttle Helicopters", + "nameCountry": "Hong Kong", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7777, + "callsign": "", + "codeHub": "HKG", + "codeIataAirline": "", + "codeIcaoAirline": "HHK", + "codeIso2Country": "HK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Express", + "nameCountry": "Hong Kong", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7778, + "callsign": "HELI HIRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HHL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopter Hire Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7779, + "callsign": "HOUSTON HELI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HHO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Houston Helicopters.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7780, + "callsign": "HELENIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HHP", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helenia Helicopter Service", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7781, + "callsign": "HIJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HHS", + "codeIso2Country": "SR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hi-Jet Helicopter Services", + "nameCountry": "Suriname", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7782, + "callsign": "HAIDA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HIA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canadian Eagle Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7783, + "callsign": "HELIBRAVO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HIB", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helibravo Aviacao", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7784, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HIC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopteros Insulares", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7785, + "callsign": "EJECUTIVA HIDALGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HID", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviacion Ejecutiva de Hildago", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7786, + "callsign": "HIFSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HIF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli-Iberica Fotogrametria", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7787, + "callsign": "INTER GUYANE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HIG", + "codeIso2Country": "GY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli-inter Guyane", + "nameCountry": "Guyana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7788, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HIJ", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DHC Corporation", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7789, + "callsign": "HOLDING GROUP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HIN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Holding International Group", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7790, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HIN", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Inter SA", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7791, + "callsign": "STARSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HIP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Starship", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7792, + "callsign": "HELITALIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HIT", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helitalia", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7793, + "callsign": "", + "codeHub": "PAP", + "codeIataAirline": "", + "codeIcaoAirline": "HJA", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Adeah Cargo", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7794, + "callsign": "AIR HAITI", + "codeHub": "PAP", + "codeIataAirline": "", + "codeIcaoAirline": "HJA", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Haiti", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7795, + "callsign": "RHIONAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HJC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heathrow Jet Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7796, + "callsign": "GOSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HJE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Ejecutivos Gosa", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7797, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HJI", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shiv Air", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7798, + "callsign": "BIZ JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HJL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hamlin Jet", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7799, + "callsign": "MAPI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HJS", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helijet", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7800, + "callsign": "", + "codeHub": "DXB", + "codeIataAirline": "", + "codeIcaoAirline": "HJT", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Al Rais Cargo Airlines", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7801, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HJT", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "790", + "nameAirline": "Al Rais Cargo", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7802, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HKA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Superior Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7803, + "callsign": "CLASSIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HKB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hawker Beechcraft", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7804, + "callsign": "", + "codeHub": "HKG", + "codeIataAirline": "", + "codeIcaoAirline": "HKG", + "codeIso2Country": "HK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GFS - Government Flying Service", + "nameCountry": "Hong Kong", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 7805, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HKG", + "codeIso2Country": "HK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Government flying Services of Hong Kong Special Administrative Region", + "nameCountry": "Hong Kong", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 7806, + "callsign": "HONGKONG GOVERNMENT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HKG", + "codeIso2Country": "HK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Government Flying Service of Hong Kong Special Administrative Region", + "nameCountry": "Hong Kong", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 7807, + "callsign": "HAWKHUNGARY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HKH", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air-Invest", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7808, + "callsign": "HAWKEYE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HKI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hawkaire", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7809, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HKI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hawkaire", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7810, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HKJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hong Kong Airlines Corporate Jet Management", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7811, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HKO", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helico ApS", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7812, + "callsign": "AIR HAW", + "codeHub": "AEP", + "codeIataAirline": "", + "codeIcaoAirline": "HKR", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hawk Air", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7813, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HKS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CHC Helikopter Service", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7814, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HKS", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CHC Helikopter Service A/S", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7815, + "callsign": "HELIBUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HKS", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CHC Helikopter Service", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7816, + "callsign": "", + "codeHub": "CBG", + "codeIataAirline": "", + "codeIcaoAirline": "HKT", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blu Halkin Jet", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7817, + "callsign": "HIGH-LINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "High-Line Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7818, + "callsign": "HELICAP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLC", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicap", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7819, + "callsign": "GRANITE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grampian Flight Centre", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7820, + "callsign": "HELIMED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UK HEMS", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7821, + "callsign": "HELIMED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "First Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7822, + "callsign": "HELOG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLG", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helog", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7823, + "callsign": "HALA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLH", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hala Air", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7824, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Securite", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7825, + "callsign": "ALL WEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "All Seasons Air Pacific", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7826, + "callsign": "HELI-LINK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLK", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli-link", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7827, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLL", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Holiday Airlines", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7828, + "callsign": "ELILIGURIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLL", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eliliguria", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7829, + "callsign": "HAVELET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Havelet Leasing", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7830, + "callsign": "HELIMIDWEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Midwest de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7831, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLN", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tayaran Alhilall Alnftti", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7832, + "callsign": "HALO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLO", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Samaritan Air Service", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7833, + "callsign": "HELIPISTAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLP", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helipistas", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7834, + "callsign": "HELI BULGARIA", + "codeHub": "SOF", + "codeIataAirline": "", + "codeIcaoAirline": "HLR", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Air Services", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7835, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLS", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Haiti Air Freight International", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7836, + "callsign": "", + "codeHub": "RML", + "codeIataAirline": "", + "codeIcaoAirline": "HLT", + "codeIso2Country": "LK", + "founding": 1972, + "iataPrefixAccounting": "", + "nameAirline": "Helitours", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7837, + "callsign": "HELI UNION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLU", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Union Heli Prestations", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7838, + "callsign": "SERVI HELI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heliservicio", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7839, + "callsign": "HELISERV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heliserv", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7840, + "callsign": "HELIWORKS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLW", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heliworks", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7841, + "callsign": "WHISPER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HLY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7842, + "callsign": "TAHOMA", + "codeHub": "LCK", + "codeIataAirline": "", + "codeIcaoAirline": "HMA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Tahoma, Inc", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7843, + "callsign": "HUMMINGBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HMB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CHC Global Operations", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7844, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HMB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CHC Global Operations Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7845, + "callsign": "HELIAMERICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HMC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heliamerica de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7846, + "callsign": "HAMMOND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HMD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Charlie Hammonds Flying Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7847, + "callsign": "AIR EXPRESS", + "codeHub": "HME", + "codeIataAirline": "", + "codeIcaoAirline": "HME", + "codeIso2Country": "DZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Express Algeria", + "nameCountry": "Algeria", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7848, + "callsign": "HERGO", + "codeHub": "MLA", + "codeIataAirline": "", + "codeIcaoAirline": "HME", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hermes Aviation", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7849, + "callsign": "LIFEGUARD SWEDEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HMF", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norrlandsflyg", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7850, + "callsign": "HAMRA", + "codeHub": "RKT", + "codeIataAirline": "", + "codeIcaoAirline": "HMM", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hamra Air", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7851, + "callsign": "PAPAIR TERMINAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HMP", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Papair Terminal", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7852, + "callsign": "HAMMER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HMR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North American Charters", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7853, + "callsign": "HAMILTON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HMT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Nova", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7854, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HMT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hemet Exploration", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7855, + "callsign": "", + "codeHub": "MEX", + "codeIataAirline": "", + "codeIcaoAirline": "HMX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helivan", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7856, + "callsign": "HAWK MEXICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HMX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hawk de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7857, + "callsign": "HAMZAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HMZ", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hamzair", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7858, + "callsign": "HAMZAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HMZ", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nigerian International Air Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7859, + "callsign": "HENSON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HNA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Henson, The Piedmont Regional Airline", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7860, + "callsign": "HENSON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HNA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Henson Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7861, + "callsign": "HELLENIC NAVY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HNA", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Greek Navy", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7862, + "callsign": "MAPLELEAF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HNL", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CHC Helicopters Netherlands", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7863, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HNN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7864, + "callsign": "HANAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HNR", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Haiti National Airlines (HANA)", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7865, + "callsign": "HIGHNESSES", + "codeHub": "EVN", + "codeIataAirline": "", + "codeIcaoAirline": "HNS", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Highnesses", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7866, + "callsign": "HELICOP INTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HNT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopteros Internacionales", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7867, + "callsign": "SUPERB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HNX", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hainan Aviation Academy", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7868, + "callsign": "HOMAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HOC", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Homac Aviation Services", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7869, + "callsign": "HODHOD", + "codeHub": "SAH", + "codeIataAirline": "", + "codeIcaoAirline": "HOD", + "codeIso2Country": "YE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alhodhod Airline", + "nameCountry": "Yemen", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7870, + "callsign": "HOGAN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HOG", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mahogany Air Charters", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7871, + "callsign": "HOG-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HOG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arkansas Traveler Airline", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7872, + "callsign": "HOLIDAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HOL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Holiday Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7873, + "callsign": "AERO HOMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HOM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Homex", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7874, + "callsign": "HONDA TEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HON", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Honda Aircraft", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7875, + "callsign": "ROCKHOPPER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HOP", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rockhopper", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7876, + "callsign": "SKYHOPPER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HOP", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyhopper", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7877, + "callsign": "HORIZON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HOR", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Horizon Air-Taxi", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7878, + "callsign": "HOT AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HOT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Broadland Balloon Flights", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7879, + "callsign": "HOT AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HOT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hot Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7880, + "callsign": "HORIZONTES AEREOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HOZ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Horizontes Aereos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7881, + "callsign": "PEARL AIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HPA", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pearl Airways Compagne Haitienne", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7882, + "callsign": "HOPA-JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HPJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hop-A-Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7883, + "callsign": "HOPSCOTCH AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HPK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hopscotch Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7884, + "callsign": "HELIPORTUGAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HPL", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heliportugal", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7885, + "callsign": "HARPOON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HPN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linear Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7886, + "callsign": "ALMRON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HPO", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Almron Aviation", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7887, + "callsign": "HELIPRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HPR", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rick Lucas Helicopters", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7888, + "callsign": "HIGH PLAINS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HPS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Crown Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7889, + "callsign": "HELI-PET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HPT", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli-pet", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7890, + "callsign": "HAPPY TRAVEL", + "codeHub": "HKT", + "codeIataAirline": "", + "codeIcaoAirline": "HPY", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Happy Air Travellers", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7891, + "callsign": "WILLY TRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HQA", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quick Air-Trans", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7892, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HQO", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avinor", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7893, + "callsign": "ERICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HRA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli-Iberica", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7894, + "callsign": "VERDINO", + "codeHub": "TFS", + "codeIataAirline": "", + "codeIcaoAirline": "HRC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South Atlantic Airways", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7895, + "callsign": "HART AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HRE", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FFH Sudwestdeutsche Verkehrsfliegerschule", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7896, + "callsign": "HERO-FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HRF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Veterans Airlift Command", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7897, + "callsign": "HELIRIM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HRI", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skraidybos Mokymo Centras", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7898, + "callsign": "HARLEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HRL", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Commander Flugdienst", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7899, + "callsign": "HERMENS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HRM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hermans Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7900, + "callsign": "HERMES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HRM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Helios", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7901, + "callsign": "CLANSMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HRN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airwork", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7902, + "callsign": "HERONAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HRN", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heron Luftfahrt", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7903, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HRS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helistar", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7904, + "callsign": "HELLAS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HRS", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hellas Air Service", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7905, + "callsign": "", + "codeHub": "YYZ", + "codeIataAirline": "", + "codeIcaoAirline": "HRT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chartright Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7906, + "callsign": "RIOPLATENSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HRT", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transporte Aereo Rioplatense", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7907, + "callsign": "", + "codeHub": "NDJ", + "codeIataAirline": "", + "codeIcaoAirline": "HRV", + "codeIso2Country": "TD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AirInter1", + "nameCountry": "Chad", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7908, + "callsign": "SAHARA-SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HRV", + "codeIso2Country": "TD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airinteri", + "nameCountry": "Chad", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7909, + "callsign": "SAHARA-SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HRV", + "codeIso2Country": "TD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sahara Aero Service", + "nameCountry": "Chad", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7910, + "callsign": "CROATIAN AIRFORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HRZ", + "codeIso2Country": "HR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Croatian Air Force", + "nameCountry": "Croatia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 7911, + "callsign": "CAR HIRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSA", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CHS Aviation", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7912, + "callsign": "SARBON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSB", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Szer-Bon RT", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7913, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSC", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Service", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7914, + "callsign": "HELISCAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSE", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heliscan", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7915, + "callsign": "HAN-SEO FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSF", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hanseo University", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7916, + "callsign": "SKY DOLPHIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSG", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hesnes Air", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7917, + "callsign": "HISPANICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSH", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "HASA - Hispanica de Aviacion", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7918, + "callsign": "HELISWISS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSI", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heliswiss International", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7919, + "callsign": "BAOSHENG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hebei Hongsheng Jet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7920, + "callsign": "HELISIRIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSL", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helisirio", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7921, + "callsign": "LIFESTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSM", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopter Service", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7922, + "callsign": "JAGUAR", + "codeHub": "DMK", + "codeIataAirline": "", + "codeIcaoAirline": "HSN", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "H.S. Aviation", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7923, + "callsign": "HELI SOUTHERN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7924, + "callsign": "HELIASTURIAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSO", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania Helicopteros de Transporte", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7925, + "callsign": "HELISERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSO", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Service International", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7926, + "callsign": "", + "codeHub": "JFK", + "codeIataAirline": "", + "codeIcaoAirline": "HSP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orbis", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7927, + "callsign": "", + "codeHub": "TUS", + "codeIataAirline": "", + "codeIcaoAirline": "HSP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Jet Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7928, + "callsign": "HOSPITAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "The Flying Hospital", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7929, + "callsign": "HELISTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSR", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helistar", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7930, + "callsign": "HOOSIER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Citylink Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7931, + "callsign": "", + "codeHub": "SVQ", + "codeIataAirline": "", + "codeIcaoAirline": "HSS", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAS - Transportes Aereos del Sur", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7932, + "callsign": "TAS HELICOPTEROS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSS", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania Transportes Aereos Del Sur", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7933, + "callsign": "HELIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSU", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helisul", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7934, + "callsign": "HIGHSWEDE", + "codeHub": "VBY", + "codeIataAirline": "", + "codeIcaoAirline": "HSV", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Direktflyg", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 7935, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSV", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heliservico", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7936, + "callsign": "IBERSWISS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSW", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocombi", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7937, + "callsign": "HELISKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HSY", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Helicopteros", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7938, + "callsign": "SCANBIRD", + "codeHub": "TRD", + "codeIataAirline": "", + "codeIcaoAirline": "HTA", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helitrans AS", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7939, + "callsign": "AIR RICHMOND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HTA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hawthorne Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7940, + "callsign": "HELIX-CRAFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HTB", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helix-Craft Aviation", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7941, + "callsign": "HAITI TRANSAIR", + "codeHub": "PAP", + "codeIataAirline": "", + "codeIcaoAirline": "HTC", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Haiti Trans Air", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7942, + "callsign": "HELICOPTERSMEXICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HTE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midwest Helicopters de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7943, + "callsign": "", + "codeHub": "VIE", + "codeIataAirline": "", + "codeIcaoAirline": "HTG", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grossmann Air Service", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7944, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HTG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grossman Air Service", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7945, + "callsign": "GROSSMANN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HTG", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grossman Air Serivce", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7946, + "callsign": "HUNTING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HTG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hunting Surveys Ltd", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7947, + "callsign": "HAITI INTERNATIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HTI", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Haiti International Air", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7948, + "callsign": "HOTLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HTL", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "My Fair Jet", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7949, + "callsign": "HELITRAVEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HTM", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "HTM Helicopter Travel", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7950, + "callsign": "HELITRAVEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HTM", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "HTM Jet Service", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7951, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HTN", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Haiti North Airline", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7952, + "callsign": "HELI TRIP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HTP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Trip", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7953, + "callsign": "HOLSTEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HTR", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Holstenair Lubeck, Luftverkehrsservice", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7954, + "callsign": "HELITRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HTS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helitrans Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7955, + "callsign": "HOTEL TANGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HTT", + "codeIso2Country": "TD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Tchad", + "nameCountry": "Chad", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7956, + "callsign": "HUMBER AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HUA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Humber Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7957, + "callsign": "HUB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HUB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hub Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7958, + "callsign": "LINEAS TEHUACAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HUC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas de Tehuacan", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7959, + "callsign": "HUD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HUD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Horizons Unlimited", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7960, + "callsign": "HUNGARIAN AIRFORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HUF", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hungarian Air Force", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 7961, + "callsign": "HUILANGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HUI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Huilango", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7962, + "callsign": "", + "codeHub": "BUD", + "codeIataAirline": "", + "codeIcaoAirline": "HUK", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "HUK Hungarian-Ukrainian Airlines", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7963, + "callsign": "BIG BIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HUK", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hungarian-Ukranian Airlines", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7964, + "callsign": "TRANS MALDIVIAN", + "codeHub": "MLE", + "codeIataAirline": "", + "codeIcaoAirline": "HUM", + "codeIso2Country": "MV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Maldivian Airways", + "nameCountry": "Maldives", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7965, + "callsign": "HUM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HUM", + "codeIso2Country": "MV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hummingbird Helicopters Maldives", + "nameCountry": "Maldives", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7966, + "callsign": "HUNGARIAN", + "codeHub": "BUD", + "codeIataAirline": "", + "codeIcaoAirline": "HUN", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Solyom Hungarian Airways", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7967, + "callsign": "HURRICANE CHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HUR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Miami Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7968, + "callsign": "HEUSSLER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HUS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heussler Air Service Corp", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7969, + "callsign": "AEROHUITZILIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HUT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotransportes Huitzilin", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7970, + "callsign": "", + "codeHub": "BUD", + "codeIataAirline": "", + "codeIcaoAirline": "HUV", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hunair", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7971, + "callsign": "SILVER EAGLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HUV", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hunair Hungarian Airlines", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7972, + "callsign": "AERO HUMAYA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HUY", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Transportes Del Humaya", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7973, + "callsign": "", + "codeHub": "YZF", + "codeIataAirline": "", + "codeIcaoAirline": "HV2", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Summit Air Charters", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7974, + "callsign": "HAVEN-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HVA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Newair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7975, + "callsign": "TURKISH AIRFORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HVK", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turkish Air Force", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 7976, + "callsign": "HEAVYFREIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HVL", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "HeavyLift International Airlines", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7977, + "callsign": "FLITEWISE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HWD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "HPM Investments Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7978, + "callsign": "SUNSEEKER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HWD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunseeker Sales", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7979, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HWG", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hawei Air", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7980, + "callsign": "HELIWORLD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HWH", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopter World", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7981, + "callsign": "HAWK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HWK", + "codeIso2Country": "SZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swazi Air Charter", + "nameCountry": "Swaziland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 7982, + "callsign": "HAWKRISE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HWK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hawkrise Air Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7983, + "callsign": "", + "codeHub": "BRU", + "codeIataAirline": "", + "codeIcaoAirline": "HXL", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BelgiumExel", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 7984, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HXL", + "codeIso2Country": "AN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DutchCaribbeanExel", + "nameCountry": "Netherlands Antilles", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7985, + "callsign": "HYACK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HYA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hyack Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7986, + "callsign": "", + "codeHub": "JNB", + "codeIataAirline": "", + "codeIcaoAirline": "HYC", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hydro Air Cargo", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7987, + "callsign": "HYDRO CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HYC", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hydro Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7988, + "callsign": "HYERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HYE", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hyeres Sero Service", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7989, + "callsign": "HELIHUNGARY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HYH", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Hungary", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7990, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HYO", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asturavia", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7991, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HYP", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hyperion Aviation", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7992, + "callsign": "HIGHFLYER", + "codeHub": "SNN", + "codeIataAirline": "", + "codeIcaoAirline": "HYR", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Private Sky", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 7993, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HYR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Private Sky", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7994, + "callsign": "QUICK AIR", + "codeHub": "HGH", + "codeIataAirline": "", + "codeIcaoAirline": "HYT", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "YTO Cargo Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 7995, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7996, + "callsign": "HUZIMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HZM", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Huzima", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7997, + "callsign": "HORIZ AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HZN", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Horizon Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7998, + "callsign": "HORIZON TOGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HZT", + "codeIso2Country": "TG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Horizon", + "nameCountry": "Togo", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 7999, + "callsign": "ZHONGXIN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "HZX", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CITIC General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8000, + "callsign": "INFINITY AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IAB", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Infinity Airlines", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8001, + "callsign": "INTERCHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IAC", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interaviation Charter", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8002, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IAE", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AC Insat-Aero", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8003, + "callsign": "INTERSTATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IAE", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interstate Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8004, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IAF", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Israeli Air Force", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 8005, + "callsign": "EPAG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IAG", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EPAG - Groupie Air France", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8006, + "callsign": "ALAKAI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IAH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Island Airlines Hawaii", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8007, + "callsign": "JARLAND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IAJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Islandair Jersey", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8008, + "callsign": "AIR CARGO EGYPT", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "IAK", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Air Cargo Corporation (IACC)", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8009, + "callsign": "", + "codeHub": "WIL", + "codeIataAirline": "", + "codeIcaoAirline": "IAL", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Imatong Airlines", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8010, + "callsign": "", + "codeHub": "CIA", + "codeIataAirline": "", + "codeIcaoAirline": "IAM", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronautica Militare Italiana", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 8011, + "callsign": "ARA-AMBULANCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IAM", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ARA Flugrettungs", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8012, + "callsign": "INTERANDES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IAN", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania Interandina de Aviacion", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8013, + "callsign": "INTERAV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IAN", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter Aviation", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8014, + "callsign": "ILIAMNA AIR", + "codeHub": "ILI", + "codeIataAirline": "", + "codeIcaoAirline": "IAR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Iliamna Air Taxi", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8015, + "callsign": "STARFLEET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IAS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Air Service Co.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8016, + "callsign": "ISLAND FLYER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IAV", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Island Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8017, + "callsign": "AVIAZUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IAV", + "codeIso2Country": "NC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviazur", + "nameCountry": "New Caledonia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8018, + "callsign": "", + "codeHub": "RKT", + "codeIataAirline": "", + "codeIcaoAirline": "IAX", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Air Services", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8019, + "callsign": "", + "codeHub": "YXX", + "codeIataAirline": "", + "codeIcaoAirline": "IAX", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Island Express Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8020, + "callsign": "INDEPENDENT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IAX", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Independent Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8021, + "callsign": "INTERAIR SERVICES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IAX", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Air Serivces", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8022, + "callsign": "IASON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IAY", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Daedalos Flugbetriebs", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8023, + "callsign": "", + "codeHub": "VRN", + "codeIataAirline": "", + "codeIcaoAirline": "IAZ", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Italiatour Airlines", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8024, + "callsign": "INDUSCHART", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IAZ", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Industries Air Charter - IAC", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8025, + "callsign": "AEROLAI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IBA", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas Iberoamericanas", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8026, + "callsign": "IBICENCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IBC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ibicenca Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8027, + "callsign": "IBEX CHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IBC", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ibex Air Charter", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8028, + "callsign": "ICE BRIDGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IBG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Springfield Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8029, + "callsign": "SPRINGFIELD AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IBG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ice Bridge", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8030, + "callsign": "IBERTAXI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IBJ", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Taxi & Charter International", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8031, + "callsign": "CATOVAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IBL", + "codeIso2Country": "MU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IBL Aviation", + "nameCountry": "Mauritius", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8032, + "callsign": "IBERTOUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IBR", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ibertour Servicios Aereos", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8033, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IBS", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flying Partner", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8034, + "callsign": "SPIDER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IBS", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IBIS", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8035, + "callsign": "IBERTRANS", + "codeHub": "MAD", + "codeIataAirline": "", + "codeIcaoAirline": "IBT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ibertrans Aerea", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8036, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IBT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ibertrans Aerea", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8037, + "callsign": "CENTRAL STAGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IBY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Business Aircraft", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8038, + "callsign": "", + "codeHub": "RNB", + "codeIataAirline": "", + "codeIcaoAirline": "IBZ", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IBA International Business Air", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8039, + "callsign": "", + "codeHub": "RNB", + "codeIataAirline": "", + "codeIcaoAirline": "IBZ", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerosynchro Aviation", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8040, + "callsign": "", + "codeHub": "FRL", + "codeIataAirline": "", + "codeIcaoAirline": "ICA", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Icaro Aero Taxi", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8041, + "callsign": "INTERCOASTAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intercoastal Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8042, + "callsign": "INTERCARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICA", + "codeIso2Country": "SZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IAL Cargo", + "nameCountry": "Swaziland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8043, + "callsign": "ICARFLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICA", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Icaro", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8044, + "callsign": "CARTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Instituto Cartografico de Cataluna", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8045, + "callsign": "INTERCARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICF", + "codeIso2Country": "UZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter-Cargo Service", + "nameCountry": "Uzbekistan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8046, + "callsign": "", + "codeHub": "RKV", + "codeIataAirline": "", + "codeIcaoAirline": "ICG", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Landhelgisgaezlan", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 8047, + "callsign": "ICELAND COAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICG", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Icelandic Coast Guard", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 8048, + "callsign": "ICEMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICI", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Viking International Airlines (VIA)", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8049, + "callsign": "ICEJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICJ", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Icejet", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8050, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kalair", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8051, + "callsign": "INTER-CAMEROON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICM", + "codeIso2Country": "CM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Inter Cameroon", + "nameCountry": "Cameroon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8052, + "callsign": "", + "codeHub": "KHI", + "codeIataAirline": "", + "codeIcaoAirline": "ICN", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Iconair", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8053, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ICAO", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8054, + "callsign": "CHOPER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICP", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intercopters", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8055, + "callsign": "ICARUS FLIGHTS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle Aero", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8056, + "callsign": "ICARO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICR", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ICARO Service", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8057, + "callsign": "INTERSERVI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Charter Services", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8058, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICS", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intercargo Service", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8059, + "callsign": "", + "codeHub": "BOG", + "codeIataAirline": "", + "codeIcaoAirline": "ICT", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter - Intercontinental de Aviacion", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8060, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICT", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter (Colombia)", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8061, + "callsign": "ASIA MEDICAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICU", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asia Air Medical (Beijing)", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8062, + "callsign": "ASIA MEDICAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICU", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Reignwood Asia Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8063, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICW", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Icaro Servicios Aereos", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8064, + "callsign": "INTEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Charter Xpress", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8065, + "callsign": "INTERCITY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICY", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intercity Air", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8066, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ICZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8067, + "callsign": "ISLAND DEV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IDC", + "codeIso2Country": "SC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Island Development Company", + "nameCountry": "Seychelles", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8068, + "callsign": "IRON DRAGON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IDF", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Iron Dragon-Fly", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8069, + "callsign": "INDIGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IDG", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "I.D.G. Technology Air", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8070, + "callsign": "IVA DOM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IDJ", + "codeIso2Country": "HR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Iva Dom", + "nameCountry": "Croatia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8071, + "callsign": "ILDEFONSO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IDL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ildefonso rodriguez", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8072, + "callsign": "INDEPENDENT", + "codeHub": "MEB", + "codeIataAirline": "", + "codeIcaoAirline": "IDP", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Independent Air Freighters", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8073, + "callsign": "", + "codeHub": "BUD", + "codeIataAirline": "", + "codeIcaoAirline": "IDR", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Indicator Aviation", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8074, + "callsign": "INDICATOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IDR", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Indicator Company", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8075, + "callsign": "IDOT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IDT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Illinois Department of Transportation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8076, + "callsign": "", + "codeHub": "GRO", + "codeIataAirline": "", + "codeIcaoAirline": "IEA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intermediacion Aerea", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8077, + "callsign": "INTERMED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IEA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intermediacion Aerea Compania Aerea", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8078, + "callsign": "INLAND EMPIRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IEA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inland Empire Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8079, + "callsign": "ITALIAN ARMY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IEI", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Esercito Italiano", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8080, + "callsign": "SWAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IEJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inflite", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8081, + "callsign": "INAER EUSKADI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IEK", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "INAER Euskadi", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8082, + "callsign": "ELIPIU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IEP", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elipiu", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8083, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IES", + "codeIso2Country": "BY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gomel Engineer's Institute of the Ministry for Emergency Situations", + "nameCountry": "Belarus", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8084, + "callsign": "FRANKEN-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IFA", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fai Airservice", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8085, + "callsign": "INTERFREIGHTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IFF", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interfreight Forwarding", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8086, + "callsign": "HELLAS LIFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IFI", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Lift", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8087, + "callsign": "HYPERION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IFI", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hyperion", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8088, + "callsign": "IFAJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IFJ", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IFA - Instituto de Formacao Aeronautica", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8089, + "callsign": "", + "codeHub": "PTK", + "codeIataAirline": "", + "codeIcaoAirline": "IFL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Express (USA)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8090, + "callsign": "EIFEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IFL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IFL Group", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8091, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IFL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IFL Group", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8092, + "callsign": "ICOPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IFM", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "iFly", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8093, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IFR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Flight Resources", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8094, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IFS", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flying Services", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8095, + "callsign": "INTERFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IFT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interflight", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8096, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IFT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interflight", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8097, + "callsign": "IFTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IFX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Flight Training Academy", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8098, + "callsign": "", + "codeHub": "WRO", + "codeIataAirline": "", + "codeIcaoAirline": "IGA", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8099, + "callsign": "", + "codeHub": "BGW", + "codeIataAirline": "", + "codeIcaoAirline": "IGC", + "codeIso2Country": "IQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Iraq Gate", + "nameCountry": "Iraq", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8100, + "callsign": "DIVINE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IGN", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interguide Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8101, + "callsign": "AIR IGAP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IGP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Igap", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8102, + "callsign": "ISLA GRANDE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IGS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Isle Grande Flying School", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8103, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IH7", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Island Helicopters", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8104, + "callsign": "INTERCOPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IHE", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interjet Helicopters", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8105, + "callsign": "", + "codeHub": "WIL", + "codeIataAirline": "", + "codeIcaoAirline": "IHO", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "748 Air Services", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8106, + "callsign": "SEFEAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IHO", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Seven Four Eight Air Services", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8107, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IHP", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "INAER Helicopter Portugal", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8108, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IHS", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thyrluthjonustan", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8109, + "callsign": "", + "codeHub": "CCS", + "codeIataAirline": "", + "codeIcaoAirline": "IIA", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interamericana Cargo", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8110, + "callsign": "INTERAMERICANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IIA", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interamericana de Aviacon", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8111, + "callsign": "INTER AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IIC", + "codeIso2Country": "BM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter Island Air Charter", + "nameCountry": "Bermuda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8112, + "callsign": "", + "codeHub": "TIP", + "codeIataAirline": "", + "codeIcaoAirline": "IIG", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aldawlyh Air", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8113, + "callsign": "ALDAWLYH AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IIG", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Company for Transport, Trade and Public Works", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8114, + "callsign": "INDIA INTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IIL", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "India International Airways", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8115, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IIN", + "codeIso2Country": "CV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter Island Airlines", + "nameCountry": "Cape Verde", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8116, + "callsign": "I-JET", + "codeHub": "APA", + "codeIataAirline": "", + "codeIcaoAirline": "IJA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Jet Aviation Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8117, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IJC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Jetclub", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8118, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IJE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avijet", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8119, + "callsign": "INTERNATIONAL JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IJE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Jet Aviation Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8120, + "callsign": "IVOIRE JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IJE", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ivoire Jet Express", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8121, + "callsign": "JET MANAGEMENT", + "codeHub": "VIE", + "codeIataAirline": "", + "codeIcaoAirline": "IJM", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Jet Management", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8122, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IJO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Jet Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8123, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IJS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silvair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8124, + "callsign": "JET WEST", + "codeHub": "TOL", + "codeIataAirline": "", + "codeIcaoAirline": "IJW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interjet West", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8125, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IJW", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "InterJet West", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8126, + "callsign": "IKIAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IKK", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IKI International Airlines", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8127, + "callsign": "EASY SHUTTLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IKM", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Survey Ltd", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8128, + "callsign": "EEKON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IKN", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ikon", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8129, + "callsign": "IKAROS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IKR", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ikaros DK", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8130, + "callsign": "SAKHA-AVIA", + "codeHub": "YKS", + "codeIataAirline": "", + "codeIcaoAirline": "IKT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sakha Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8131, + "callsign": "GENERAL SKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IKY", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intersky", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8132, + "callsign": "ISLENA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ILA", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Islena de Aviacion", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8133, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ILA", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elan Arad", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8134, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ILC", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ilas", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8135, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ILD", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ilerdair", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8136, + "callsign": "SAINT-TROPEZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ILE", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Saint-Tropez", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8137, + "callsign": "", + "codeHub": "FLL", + "codeIataAirline": "", + "codeIcaoAirline": "ILF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Island Air Charters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8138, + "callsign": "IL-COMPLEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ILF", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ilyushin, S.U., Aviation Complex", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8139, + "callsign": "INTERAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ILI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter City Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8140, + "callsign": "ILEK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ILK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Airline", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8141, + "callsign": "ILYICHAVIA", + "codeHub": "MPW", + "codeIataAirline": "", + "codeIcaoAirline": "ILL", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8142, + "callsign": "", + "codeHub": "MPW", + "codeIataAirline": "", + "codeIcaoAirline": "ILL", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ilyich Avia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8143, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ILL", + "codeIso2Country": "UA", + "founding": 2002, + "iataPrefixAccounting": "", + "nameAirline": "Ilyich-Avia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8144, + "callsign": "BIRDMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ILM", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetcapital Aviation", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8145, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ILP", + "codeIso2Country": "AW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ILPO Aruba Cargo", + "nameCountry": "Aruba", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8146, + "callsign": "SERVICIOS ILSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ILS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Ilsa", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8147, + "callsign": "ILLINI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ILU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "University of Illinois Institute of Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8148, + "callsign": "", + "codeHub": "UUBW", + "codeIataAirline": "", + "codeIcaoAirline": "ILV", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ilavia", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8149, + "callsign": "ILAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ILV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IL-Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8150, + "callsign": "INTER-MOUNTAIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IMA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter-Mountain Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8151, + "callsign": "MY CHARTER", + "codeHub": "KHI", + "codeIataAirline": "", + "codeIcaoAirline": "IMC", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IAMC", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8152, + "callsign": "JETBULL", + "codeHub": "MAD", + "codeIataAirline": "", + "codeIcaoAirline": "IMD", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IMD Airways", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8153, + "callsign": "AIRTIME", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IME", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airtime Charters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8154, + "callsign": "IMPERIAL AIRLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IMG", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Imperial Cargo Airlines", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8155, + "callsign": "IMAGINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IMG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Imagine Air Jet Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8156, + "callsign": "IMPERIALAEREO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IMI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Imperial Aerotransporte", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8157, + "callsign": "", + "codeHub": "BEY", + "codeIataAirline": "", + "codeIcaoAirline": "IMJ", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Imperial Jet", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8158, + "callsign": "MAL AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IML", + "codeIso2Country": "FJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Island Air", + "nameCountry": "Fiji", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8159, + "callsign": "TAXI CIMARRON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IMN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis Cimarron", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8160, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IMP", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Imperial Air", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8161, + "callsign": "IMAER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IMR", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Imaer", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8162, + "callsign": "IMAGES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IMS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Images", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8163, + "callsign": "IMTREC", + "codeHub": "PNH", + "codeIataAirline": "", + "codeIcaoAirline": "IMT", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Imtrec Aviation", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8164, + "callsign": "GRIFFON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8165, + "callsign": "INDI-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Indiana Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8166, + "callsign": "AERO-NACIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Internacional", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8167, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INB", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Instalbud", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8168, + "callsign": "INTERBUILD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INB", + "codeIso2Country": "TJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter Build", + "nameCountry": "Tajikistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8169, + "callsign": "INTERCHART", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INC", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Air Internacional Charters", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8170, + "callsign": "", + "codeHub": "FRU", + "codeIataAirline": "", + "codeIcaoAirline": "IND", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S Group International", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8171, + "callsign": "IONA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IND", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Iona National Airways", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8172, + "callsign": "AMERINTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interamericana", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8173, + "callsign": "INTERFIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INF", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter Flight", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8174, + "callsign": "OZONE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INF", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Infinity Aviation", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8175, + "callsign": "AEROINGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ING", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroingeniera", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8176, + "callsign": "INGUSH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ING", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ingush Aviation Lines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8177, + "callsign": "MARTINI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INI", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Martini Airfreight Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8178, + "callsign": "INJET", + "codeHub": "ATH", + "codeIataAirline": "", + "codeIcaoAirline": "INJ", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interjet", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8179, + "callsign": "", + "codeHub": "ATH", + "codeIataAirline": "", + "codeIcaoAirline": "INJ", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "InterJet Hellenic", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8180, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INJ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "InterJet Hellenic", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8181, + "callsign": "SINCOM AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INK", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sincom-Avia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8182, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "INL", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intal Air", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8183, + "callsign": "INTERTRADES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INL", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Morgan Intertrades", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8184, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INL", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intal Air", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8185, + "callsign": "INTENOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicios Integrados de Norte", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8186, + "callsign": "", + "codeHub": "SPLP", + "codeIataAirline": "", + "codeIcaoAirline": "INP", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicio Aeronaval de la Marina Peruana", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 8187, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INP", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "F A Naval Del Peru", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8188, + "callsign": "INAER HELICOPTEROS", + "codeHub": "ALC", + "codeIataAirline": "", + "codeIcaoAirline": "INR", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "INAER", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8189, + "callsign": "INTERAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INR", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter Air", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8190, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inflite The Jet Centre", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8191, + "callsign": "INSTONE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Instone Airline", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8192, + "callsign": "INTEGRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Integra Map & Geoinfomormacion Consulting", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8193, + "callsign": "INTAIRCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8194, + "callsign": "INSTRUCTOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INU", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flyguppdraget Backamo", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8195, + "callsign": "INVER", + "codeHub": "RIX", + "codeIataAirline": "", + "codeIcaoAirline": "INV", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inversia", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8196, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "INV", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inversia Air", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8197, + "callsign": "IOWA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IOA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Iowa Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8198, + "callsign": "ISLAND OIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IOE", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Island Oil Exploration", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8199, + "callsign": "INAER OFFSHORE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IOF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "INAER Helicopteros Off-Shore", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8200, + "callsign": "ATALMILANO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IOI", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atal Milano", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8201, + "callsign": "ISLE AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IOM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Island Aviation And Travel", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8202, + "callsign": "CALIOP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IOP", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caliop", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8203, + "callsign": "SCILLONIA", + "codeHub": "PZE", + "codeIataAirline": "", + "codeIcaoAirline": "IOS", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Isles Of Scilly Skybus", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8204, + "callsign": "IPEC", + "codeHub": "MEB", + "codeIataAirline": "", + "codeIcaoAirline": "IPA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IPEC Aviation.", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8205, + "callsign": "IMLALA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IPL", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Charter Services", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8206, + "callsign": "SHIPEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IPM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IPM Europe", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8207, + "callsign": "", + "codeHub": "HLP", + "codeIataAirline": "", + "codeIcaoAirline": "IPN", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nusantara Air Charter", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8208, + "callsign": "NUSANTATA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IPN", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Industri Pesawat Terbang Nusantara", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8209, + "callsign": "NURTANIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IPN", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Industri Pesawat Terbang Nurtanio", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8210, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IPO", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Proaviation", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8211, + "callsign": "INTERPORT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IPT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interport Corporation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8212, + "callsign": "SPEED PACK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IPX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Parcel Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8213, + "callsign": "IQRA PAKISTAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IQP", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Happy Landings (Flight Training)", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8214, + "callsign": "CARIBJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IQQ", + "codeIso2Country": "BB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caribbean Airways", + "nameCountry": "Barbados", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8215, + "callsign": "ARVAND", + "codeHub": "ABD", + "codeIataAirline": "", + "codeIcaoAirline": "IRD", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arvand Airlines", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8216, + "callsign": "PARIZAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IRE", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pariz Air", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8217, + "callsign": "TA-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IRF", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ta-Air Airline", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8218, + "callsign": "", + "codeHub": "AWZ", + "codeIataAirline": "", + "codeIcaoAirline": "IRG", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Iranian Air Transport", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8219, + "callsign": "ATLAS AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IRH", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlas Aviation Group", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8220, + "callsign": "NAVID", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IRI", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Navidtec", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8221, + "callsign": "BONYAD AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IRJ", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bonyad Airlines", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8222, + "callsign": "IRISH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IRL", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Irish Air Corps", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8223, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IRN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8224, + "callsign": "", + "codeHub": "IMT", + "codeIataAirline": "", + "codeIcaoAirline": "IRO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CSA Air Inc", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8225, + "callsign": "IRON AIR", + "codeHub": "IMT", + "codeIataAirline": "", + "codeIcaoAirline": "IRO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CSA Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8226, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IRO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CSA Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8227, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IRR", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tara Helicopter Company", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8228, + "callsign": "TARAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IRR", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tara Air Line", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8229, + "callsign": "", + "codeHub": "IFO", + "codeIataAirline": "", + "codeIcaoAirline": "IRS", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sirius Air Company", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8230, + "callsign": "SAHAND AIR", + "codeHub": "SYZ", + "codeIataAirline": "", + "codeIcaoAirline": "IRS", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sahand Airlines", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8231, + "callsign": "SIRIUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IRS", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sirius", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8232, + "callsign": "", + "codeHub": "THR", + "codeIataAirline": "", + "codeIcaoAirline": "IRU", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chabahar Airlines", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8233, + "callsign": "CHABAHAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IRU", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chabahar Airline", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8234, + "callsign": "", + "codeHub": "AZD", + "codeIataAirline": "", + "codeIcaoAirline": "IRV", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saffatt Airlines", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8235, + "callsign": "SAFAT AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IRV", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Safat Airlines", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8236, + "callsign": "ARAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IRW", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aram Airline", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8237, + "callsign": "ARIA", + "codeHub": "LRR", + "codeIataAirline": "", + "codeIcaoAirline": "IRX", + "codeIso2Country": "IR", + "founding": 1999, + "iataPrefixAccounting": "", + "nameAirline": "Aria Air", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8238, + "callsign": "ARIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IRX", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aria Tour", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8239, + "callsign": "ERAM AIR", + "codeHub": "TBZ", + "codeIataAirline": "", + "codeIcaoAirline": "IRY", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eram Air", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8240, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IRY", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eram Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8241, + "callsign": "ERAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IRY", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eram Airlines", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8242, + "callsign": "", + "codeHub": "IKA", + "codeIataAirline": "", + "codeIcaoAirline": "IRZ", + "codeIso2Country": "IR", + "founding": 1990, + "iataPrefixAccounting": "", + "nameAirline": "Saha Airlines", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8243, + "callsign": "", + "codeHub": "THR", + "codeIataAirline": "", + "codeIcaoAirline": "IRZ", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saha Air", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8244, + "callsign": "SAHA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IRZ", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saha Airlines Services", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8245, + "callsign": "BARRACUDA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ISC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Island Air Charters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8246, + "callsign": "ISDAVIA", + "codeHub": "DOK", + "codeIataAirline": "", + "codeIcaoAirline": "ISD", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ISD Avia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8247, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ISD", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Innovative Software Design", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8248, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ISF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Stabilisation Assistance Force", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8249, + "callsign": "IRINA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ISI", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Line", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8250, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ISM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AIST M Airclub", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8251, + "callsign": "STORK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ISM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AUO Aeroclub Aist-M", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8252, + "callsign": "TRI-BIRD", + "codeHub": "MNL", + "codeIataAirline": "", + "codeIcaoAirline": "ISN", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interisland Airlines", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8253, + "callsign": "SERIB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ISW", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Serib Wings", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8254, + "callsign": "CAFEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter-Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8255, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITC", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IACA", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8256, + "callsign": "AEROTAXI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITE", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxi", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8257, + "callsign": "INTERSTATAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interestatal de Aviacion", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8258, + "callsign": "AIR AVITA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITF", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avita-Servicos Aereos", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8259, + "callsign": "INTERLACE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITG", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interlace Airlines", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8260, + "callsign": "INTRANS NIGERIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITH", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Trans-Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8261, + "callsign": "ITAPEMIRIM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITI", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Itapemirim, Transportes Aereos Regionais", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8262, + "callsign": "MIKMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITL", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mikma", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8263, + "callsign": "INTER-ISLAND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "American Inter-Island", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8264, + "callsign": "ITALFLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITL", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Italfly", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8265, + "callsign": "TITANLUX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITN", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Industrias Titan", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8266, + "callsign": "AERO CITRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Citro", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8267, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Trip Planning Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8268, + "callsign": "TEEPEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITP", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Test Pilots School", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8269, + "callsign": "OUT BACK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Frontier Commuter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8270, + "callsign": "OUT BACK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ITR Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8271, + "callsign": "INTER-STATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter-State Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8272, + "callsign": "INTERSPACIAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronautica Interespacial", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8273, + "callsign": "", + "codeHub": "SOF", + "codeIataAirline": "", + "codeIcaoAirline": "ITT", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter Trans Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8274, + "callsign": "INTER TRANSAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITT", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter Trans Air", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8275, + "callsign": "INTERLOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITU", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intervuelos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8276, + "callsign": "INTERVUELO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intervuelo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8277, + "callsign": "INTER WINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ITW", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8278, + "callsign": "ICARUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IUS", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Icarus", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8279, + "callsign": "INNOTECH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IVA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Innotech Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8280, + "callsign": "COMPANY EXEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IVE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Executive", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8281, + "callsign": "INVADER JACK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IVJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8282, + "callsign": "", + "codeHub": "ABJ", + "codeIataAirline": "", + "codeIcaoAirline": "IVN", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ivoirienne de Transports Aeriens", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8283, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IVN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ivoirienne de Transports Aeriens", + "nameCountry": "cotedivoire", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8284, + "callsign": "IVANAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IVN", + "codeIso2Country": "HR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ivan-Air", + "nameCountry": "Croatia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8285, + "callsign": "RURUN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IVR", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Burundaiavia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8286, + "callsign": "IVOIRE AERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IVS", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ivoire Aero Services", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8287, + "callsign": "INTERAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IVT", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interaviatrans", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8288, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IWL", + "codeIso2Country": "BM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Island Wings", + "nameCountry": "Bermuda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8289, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IWS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviainvest", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8290, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IX", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "INAIR Panama", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8291, + "callsign": "X-BIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IXR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ixair", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8292, + "callsign": "IXTLAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IXT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas de Ixtlan", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8293, + "callsign": "ISLAND EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IXX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dolphin Express Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8294, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IZA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chavia", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8295, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8296, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "IZG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zagros Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8297, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "J5K", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoenix Air", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8298, + "callsign": "JET BUSINESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JAB", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Business Airlines", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8299, + "callsign": "JUAN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JAB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Juan Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8300, + "callsign": "AEROJAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JAD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerojal", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8301, + "callsign": "", + "codeHub": "VIE", + "codeIataAirline": "", + "codeIcaoAirline": "JAG", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetalliance", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8302, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JAG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetalliance Flugbetriebs", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8303, + "callsign": "JETAG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JAG", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetag", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8304, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "JAK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aral Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8305, + "callsign": "YANZAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JAK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jana-Arka", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8306, + "callsign": "SUNTRACK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JAM", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunline Airlines", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8307, + "callsign": "JANES", + "codeHub": "SEN", + "codeIataAirline": "", + "codeIcaoAirline": "JAN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Janes Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8308, + "callsign": "AIRLINK", + "codeHub": "SZG", + "codeIataAirline": "", + "codeIcaoAirline": "JAR", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlink", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8309, + "callsign": "JET SETTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JAS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Aviation Flight Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8310, + "callsign": "JACKSON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JAS", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kackson Air Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8311, + "callsign": "JAW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JAW", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jamahiriya Airways", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8312, + "callsign": "JANAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JAX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Janair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8313, + "callsign": "AFRIC ALLIANCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JAY", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "African Alliance Airlines", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8314, + "callsign": "JAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JAY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "J & J Air Charters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8315, + "callsign": "JAVAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JAZ", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jav-Avia", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8316, + "callsign": "SMARTBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JBD", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetbird Limited", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8317, + "callsign": "", + "codeHub": "HKG", + "codeIataAirline": "", + "codeIcaoAirline": "JBE", + "codeIso2Country": "HK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sino Jet Management", + "nameCountry": "Hong Kong", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8318, + "callsign": "JET BEAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JBE", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Bear", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8319, + "callsign": "SINO BEIJING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JBE", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sinojet Beijing", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8320, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JBE", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sino Jet (Beijing)", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8321, + "callsign": "JET SKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JBS", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Business", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8322, + "callsign": "JETJACO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JCA", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetcontact", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8323, + "callsign": "JETCOM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JCA", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetcom", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8324, + "callsign": "JAYCEEBEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JCB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "J C Bamford Excavators", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8325, + "callsign": "", + "codeHub": "BNE", + "codeIataAirline": "", + "codeIcaoAirline": "JCC", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Toll Aviation", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8326, + "callsign": "", + "codeHub": "YBAF", + "codeIataAirline": "", + "codeIcaoAirline": "JCC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetcraft Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8327, + "callsign": "JETCRAFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JCC", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetcraft Aviation", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8328, + "callsign": "JET CENTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JCF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Center Flight Training", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8329, + "callsign": "TRADING CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JCH", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trading Air Cargo", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8330, + "callsign": "", + "codeHub": "ADJ", + "codeIataAirline": "", + "codeIcaoAirline": "JCI", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jordan International Air Cargo", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8331, + "callsign": "JACKSON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JCK", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jackson Air Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8332, + "callsign": "", + "codeHub": "AMS", + "codeIataAirline": "", + "codeIcaoAirline": "JCL", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Cargo Liberia", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8333, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JCL", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Cargo-Liberia", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8334, + "callsign": "SECUREAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JCM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Secure Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8335, + "callsign": "JETCOPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JCP", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetcopter", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8336, + "callsign": "ROTTERDAM JETCENTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JCR", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rotterdam Jet Center", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8337, + "callsign": "JET CHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JCT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8338, + "callsign": "JET CONNECT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JCX", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Connection", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8339, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JCZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8340, + "callsign": "JAY DEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JDA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "J D Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8341, + "callsign": "JOHN DEERE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JDC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Deere And Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8342, + "callsign": "SPEEDY-JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JDE", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Med Jetoperations", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8343, + "callsign": "", + "codeHub": "WAW", + "codeIataAirline": "", + "codeIcaoAirline": "JDI", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Service Poland", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8344, + "callsign": "", + "codeHub": "WAW", + "codeIataAirline": "", + "codeIcaoAirline": "JDI", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Story", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8345, + "callsign": "JEDI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JDI", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Service", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8346, + "callsign": "JEDI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JDI", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Jet", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8347, + "callsign": "RED PELICAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JDP", + "codeIso2Country": "LU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JDP LUX", + "nameCountry": "Luxembourg", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8348, + "callsign": "RED PELICAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JDP", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JDP France", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8349, + "callsign": "VALENCIANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JDV", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "J D Valenciana de Aviacion", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8350, + "callsign": "JET EAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JED", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet East International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8351, + "callsign": "AMBJEK AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JEE", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ambjek Air Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8352, + "callsign": "JETFLITE", + "codeHub": "HEL", + "codeIataAirline": "", + "codeIcaoAirline": "JEF", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetflite", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8353, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JEF", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetflite", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8354, + "callsign": "JET EXECUTIVE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JEI", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Executive International Charter", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8355, + "callsign": "MEXJETS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JEJ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jets Ejecutivos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8356, + "callsign": "", + "codeHub": "TLV", + "codeIataAirline": "", + "codeIcaoAirline": "JEK", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Link (Israel)", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8357, + "callsign": "JET OPS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JEK", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Link", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8358, + "callsign": "JETEL", + "codeHub": "YYZ", + "codeIataAirline": "", + "codeIcaoAirline": "JEL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tal Air Charters", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8359, + "callsign": "AEROJELK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JEL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerojelk", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8360, + "callsign": "JEMAX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JEM", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jemax Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8361, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JEN", + "codeIso2Country": "CY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jenair", + "nameCountry": "Cyprus", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8362, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JEP", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jets Personales", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8363, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JES", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JS Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8364, + "callsign": "JES AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JES", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jes Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8365, + "callsign": "JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JET", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European Jet", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8366, + "callsign": "JETS EJEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JEV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jets Ejecutivos Y Servicios", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8367, + "callsign": "JANEX", + "codeHub": "ITM", + "codeIataAirline": "", + "codeIcaoAirline": "JEX", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JAL Express", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8368, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JEX", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JAL Express", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8369, + "callsign": "MOSQUITO", + "codeHub": "LUX", + "codeIataAirline": "", + "codeIcaoAirline": "JFA", + "codeIso2Country": "LU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetfly Aviation", + "nameCountry": "Luxembourg", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8370, + "callsign": "AVEJECUTIVOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JFA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviones Ejecutivos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8371, + "callsign": "JET-FLEET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JFC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LTV Jet Fleet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8372, + "callsign": "LINEFLYER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JFL", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetfly Airlines", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8373, + "callsign": "JAEMCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JFS", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Juanda Flying School", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8374, + "callsign": "YEOMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JFY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Foster Yeoman", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8375, + "callsign": "VICON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JFZ", + "codeIso2Country": "SZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ocean Air", + "nameCountry": "Swaziland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8376, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JGA", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Japan General Aviation Service", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8377, + "callsign": "JETGLOBAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JGB", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Jet Global", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8378, + "callsign": "JET GEE-AND-DEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JGD", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet G & D Aviation", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8379, + "callsign": "CHATTANOOGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JGF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chattanooga Jet Centre", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8380, + "callsign": "", + "codeHub": "BRN", + "codeIataAirline": "", + "codeIcaoAirline": "JGH", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Schweizer Luftwaffe", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 8381, + "callsign": "", + "codeHub": "HGH", + "codeIataAirline": "", + "codeIcaoAirline": "JGJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jinggong Global Jet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8382, + "callsign": "GLOBAL JINGGONG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JGJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jinggog Globaljet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8383, + "callsign": "GLOBAL JINGGONG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JGJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jinggong Jet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8384, + "callsign": "JAGSON", + "codeHub": "DEL", + "codeIataAirline": "", + "codeIcaoAirline": "JGL", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jagson Airlines", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8385, + "callsign": "SHENGLI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JHK", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Xi'an Aviation Base Jinsheng General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8386, + "callsign": "HERITAGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JHL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Heritage", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8387, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JHM", + "codeIso2Country": "CR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "J H M Cargo Expreso", + "nameCountry": "Costa Rica", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8388, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JHM", + "codeIso2Country": "CR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JHM Airlines Cargo", + "nameCountry": "Costa Rica", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8389, + "callsign": "AIR JOHNSON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JHN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Johnson Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8390, + "callsign": "JETSTREAM INTERNATIONAL", + "codeHub": "ERI", + "codeIataAirline": "", + "codeIcaoAirline": "JIA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetstream International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8391, + "callsign": "JIBAIRLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JIB", + "codeIso2Country": "DJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jibair", + "nameCountry": "Djibouti", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8392, + "callsign": "JIC-JET", + "codeHub": "BKK", + "codeIataAirline": "", + "codeIcaoAirline": "JIC", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JetGo International", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8393, + "callsign": "CONDAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JID", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Condal", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8394, + "callsign": "SARK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JIM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sark International Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8395, + "callsign": "JUPAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JIS", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Jupiter", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8396, + "callsign": "JIVAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JIV", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jivair", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8397, + "callsign": "GEODATA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JJM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Geodata Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8398, + "callsign": "JETWAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JJW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetway", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8399, + "callsign": "JACKET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JKA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Letiurneau University, School of Aeronautical Science", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8400, + "callsign": "FRUNZE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JKG", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Jet", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8401, + "callsign": "JETKONTOR", + "codeHub": "HAM", + "codeIataAirline": "", + "codeIcaoAirline": "JKH", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JK Jetkontor", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8402, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JKR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Empire Airways", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8403, + "callsign": "JOKER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JKR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Empire Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8404, + "callsign": "KAITAK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JKT", + "codeIso2Country": "HK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetstar Hong Kong Airways", + "nameCountry": "Hong Kong", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8405, + "callsign": "JOCKEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JKY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopter & Aviation Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8406, + "callsign": "JETAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JKZ", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet One JSC", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8407, + "callsign": "SALLINE", + "codeHub": "BBU", + "codeIataAirline": "", + "codeIcaoAirline": "JLA", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mia Airlines", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8408, + "callsign": "", + "codeHub": "RKT", + "codeIataAirline": "", + "codeIcaoAirline": "JLE", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetline", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8409, + "callsign": "EQUAJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JLE", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetline", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8410, + "callsign": "CAVALLO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JLF", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetline", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8411, + "callsign": "LOGISTICS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JLG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Logistics", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8412, + "callsign": "", + "codeHub": "AMS", + "codeIataAirline": "", + "codeIcaoAirline": "JLH", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Link Holland", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8413, + "callsign": "CESA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JLH", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centro de Servicio Aeronautico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8414, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JLH", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "712", + "nameAirline": "Jet Link Cargo Airline", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8415, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JLH", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetlink Holland", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8416, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JLK", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet-Link", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8417, + "callsign": "ATLANTIC GAMBIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JLM", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Express Airlines", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8418, + "callsign": "", + "codeHub": "MLA", + "codeIataAirline": "", + "codeIcaoAirline": "JLN", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurojet (Malta)", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8419, + "callsign": "JET LINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JLN", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurojet", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8420, + "callsign": "JET ALSACE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JLS", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Alsace", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8421, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JLS", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Line", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8422, + "callsign": "", + "codeHub": "MWZ", + "codeIataAirline": "", + "codeIcaoAirline": "JLT", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JetLink Express Tanzania", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8423, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JLT", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetlink Express", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8424, + "callsign": "JAMBOAFRICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JMB", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jambo Africa Airlines", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8425, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JME", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "EJME (Portugal) Aircraft Management", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8426, + "callsign": "JOHNSTON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JMJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Johnston Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8427, + "callsign": "", + "codeHub": "MLA", + "codeIataAirline": "", + "codeIcaoAirline": "JMK", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JetMagic", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8428, + "callsign": "JIMULCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JML", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taxi Aereo de Jimulco", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8429, + "callsign": "JOICOMAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JMM", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Joint Military Commission (JMC) Nuba Mountains", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 8430, + "callsign": "JUMP RUN", + "codeHub": "KSF", + "codeIataAirline": "", + "codeIcaoAirline": "JMP", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Wings", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8431, + "callsign": "ALEXANDAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JMR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alexandair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8432, + "callsign": "VISTA JET", + "codeHub": "SZG", + "codeIataAirline": "", + "codeIcaoAirline": "JMS", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VistaJet", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8433, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JMS", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arc en Ciel", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8434, + "callsign": "JOMARTAXI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JMT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jomartaxi Aereo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8435, + "callsign": "INTERCON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JMV", + "codeIso2Country": "SZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interflight", + "nameCountry": "Swaziland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8436, + "callsign": "NURMINENAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JNA", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "John Nurminen", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8437, + "callsign": "EASTAF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JND", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air East Africa", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8438, + "callsign": "JOURNEY JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JNJ", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Journey Jet", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8439, + "callsign": "JETNETHERLANDS", + "codeHub": "AMS", + "codeIataAirline": "", + "codeIcaoAirline": "JNL", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JetNetherlands", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8440, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JNN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8441, + "callsign": "JET NORTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JNR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Norte", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8442, + "callsign": "JOURNEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JNR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hamilton Aeroservices", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8443, + "callsign": "JET NOVA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JNV", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetnova", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8444, + "callsign": "ROCK BAND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JNY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Journey Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8445, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JNY", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Journey Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8446, + "callsign": "JENAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JNY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jenney Beechcraft", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8447, + "callsign": "JOBENI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JOB", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerojobeni", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8448, + "callsign": "JET-EUROPE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JOE", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet-Ops Europe", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8449, + "callsign": "JOHNSONSAIR", + "codeHub": "ACC", + "codeIataAirline": "", + "codeIcaoAirline": "JON", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Johnsons Air", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8450, + "callsign": "", + "codeHub": "UME", + "codeIataAirline": "", + "codeIcaoAirline": "JON", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jonair", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8451, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JON", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jonair", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8452, + "callsign": "J-PAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JPA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Operational Support Airlift Command (OSACOM)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8453, + "callsign": "PALMBEACH JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JPB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ACP Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8454, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JPH", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetport SPB", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8455, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JPK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Port Region", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8456, + "callsign": "ATLASFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JPL", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlas Airlines", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8457, + "callsign": "JETPLAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JPN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Memrykord", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8458, + "callsign": "JETPLAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JPN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jeppesen UK Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8459, + "callsign": "JETPRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JPO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetpro", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8460, + "callsign": "JETT PAQUETERIA", + "codeHub": "SLP", + "codeIataAirline": "", + "codeIcaoAirline": "JPQ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jett Paqueteria", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8461, + "callsign": "JET PRIVADO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JPR", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inversiones Ayacucho (Jet Privaido)", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8462, + "callsign": "JASPER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JPR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerosmith Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8463, + "callsign": "JETPLUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JPS", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air National Corporate", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8464, + "callsign": "JUPITER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JPT", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jupiter-Avia", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8465, + "callsign": "PRIMETIME", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JPT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prime Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8466, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JQI", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetstar International", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8467, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JRF", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "First Air Transport", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8468, + "callsign": "JOOLY ROGER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JRG", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Freight On Wings", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8469, + "callsign": "BLUETIP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JRH", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Halsteds Aviation Corporation", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8470, + "callsign": "JETRIDER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JRI", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetrider International", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8471, + "callsign": "JET RENT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JRN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Rent", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8472, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JRO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetaerofuels", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8473, + "callsign": "JET AERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JRO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Aero", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8474, + "callsign": "SIMURG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JRP", + "codeIso2Country": "UZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Simurg Radio Electronic Plant", + "nameCountry": "Uzbekistan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8475, + "callsign": "JET READY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JRY", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Ready", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8476, + "callsign": "AIRSTAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JSC", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airstan", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8477, + "callsign": "SERVIJETS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JSE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jets Y Servicios Ejecutivos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8478, + "callsign": "STREAM AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JSH", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet-Stream", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8479, + "callsign": "STREAM-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JSH", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetstream Air", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8480, + "callsign": "", + "codeHub": "SVO", + "codeIataAirline": "", + "codeIcaoAirline": "JSI", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PremierAvia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8481, + "callsign": "SISTEMA", + "codeHub": "SVO", + "codeIataAirline": "", + "codeIcaoAirline": "JSI", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Air Group", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8482, + "callsign": "JS CHARTER", + "codeHub": "KHI", + "codeIataAirline": "", + "codeIcaoAirline": "JSJ", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JS Air", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8483, + "callsign": "SELECTJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JSL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SelectJet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8484, + "callsign": "", + "codeHub": "KIV", + "codeIataAirline": "", + "codeIcaoAirline": "JSM", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Stream Airlines", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8485, + "callsign": "JET STREAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JSM", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Stream", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8486, + "callsign": "JETSUN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JSN", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Suncor Energy", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8487, + "callsign": "JET SOUTH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JSO", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetalliance South", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8488, + "callsign": "", + "codeHub": "DXB", + "codeIataAirline": "", + "codeIcaoAirline": "JSP", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Palm Aviation", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8489, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JSP", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Serve International", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8490, + "callsign": "JETSPEED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JSP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Enterprise Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8491, + "callsign": "PALMER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JSP", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Palmer Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8492, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JSS", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetstream International", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8493, + "callsign": "J-STAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JST", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Japan Universal System Transport", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8494, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JST", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JUST Japan Universal System Transport", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8495, + "callsign": "SU JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JSU", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jiangsu Jet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8496, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JSV", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jomo Air Service", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8497, + "callsign": "JIGSAW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JSW", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jigsaw Project (Bristow Helicopters Ltd.)", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8498, + "callsign": "JUNG SKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JSY", + "codeIso2Country": "HR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jung Sky", + "nameCountry": "Croatia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8499, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JTB", + "codeIso2Country": "AN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Budget", + "nameCountry": "Netherlands Antilles", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8500, + "callsign": "CORPOJETS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JTC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jets Corporativos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8501, + "callsign": "JETRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JTC", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Trans Aviation", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8502, + "callsign": "JETEX", + "codeHub": "ADL", + "codeIataAirline": "", + "codeIcaoAirline": "JTE", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetex", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8503, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JTF", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Time Finland", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8504, + "callsign": "", + "codeHub": "BEY", + "codeIataAirline": "", + "codeIcaoAirline": "JTI", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cirrus Middle East", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8505, + "callsign": "JETCLIPPER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JTI", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Imperialjet Europe", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8506, + "callsign": "JETCLIPPER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JTI", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetair Flug", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8507, + "callsign": "JET LINX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JTL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Linx Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8508, + "callsign": "FIREFLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JTL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetall", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8509, + "callsign": "JET COAST", + "codeHub": "ESN", + "codeIataAirline": "", + "codeIcaoAirline": "JTM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East Coast Flight Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8510, + "callsign": "JET TIME", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JTM", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet-Time", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8511, + "callsign": "SKY MAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JTM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky International", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8512, + "callsign": "JET TEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JTN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Test and Transport", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8513, + "callsign": "JESTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JTR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Aviation Serviecs", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8514, + "callsign": "JETSWEDEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JTS", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Time Sweden", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8515, + "callsign": "AVIONESJETS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JTS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arrendamiento de Aviones Jets", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8516, + "callsign": "", + "codeHub": "VKO", + "codeIataAirline": "", + "codeIcaoAirline": "JTT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet 2000", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8517, + "callsign": "MOSCOW JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JTT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet-2000", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8518, + "callsign": "ZHETYSU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JTU", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zhetysu", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8519, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JTU", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zhetysu Aviakompania", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8520, + "callsign": "JUNIOR", + "codeHub": "MUC", + "codeIataAirline": "", + "codeIcaoAirline": "JTV", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Independence (Germany)", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8521, + "callsign": "JETWING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JTW", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Technics", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8522, + "callsign": "JET ASPEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JTX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Aspen Air Lines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8523, + "callsign": "JUPITER GAMBIA", + "codeHub": "BJL", + "codeIataAirline": "", + "codeIcaoAirline": "JUA", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jupiter Airlines", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8524, + "callsign": "", + "codeHub": "JUB", + "codeIataAirline": "", + "codeIcaoAirline": "JUA", + "codeIso2Country": "SS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South Supreme Airlines", + "nameCountry": "South Sudan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8525, + "callsign": "JUAREZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JUA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Juarez", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8526, + "callsign": "JUBBA", + "codeHub": "MGQ", + "codeIataAirline": "", + "codeIcaoAirline": "JUB", + "codeIso2Country": "SO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jubba Airways", + "nameCountry": "Somalia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8527, + "callsign": "", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "JUC", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Juba Air Cargo", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8528, + "callsign": "JUBA CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JUC", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Juba Cargo Services & Aviation", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8529, + "callsign": "JUSTICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JUD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "US Department Of Justice Prisoner & Alien Transportation Service (JPATS)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8530, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JUM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jump Aviation", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8531, + "callsign": "JUNKERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JUR", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ju-Air", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8532, + "callsign": "JUTLAND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JUT", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jutland Jets Air Taxi", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8533, + "callsign": "HURON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JVE", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jive Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8534, + "callsign": "ICELANDIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JVK", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jorvik", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8535, + "callsign": "JETWORLD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JWA", + "codeIso2Country": "AG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetworld Airways", + "nameCountry": "Antigua and Barbuda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8536, + "callsign": "JETWINGAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JWC", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetwing Airlines", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8537, + "callsign": "", + "codeHub": "HLP", + "codeIataAirline": "", + "codeIcaoAirline": "JWD", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jayawijaya Dirgantara", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8538, + "callsign": "JETWAY TEAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JWT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetway", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8539, + "callsign": "JETWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JWY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetways of Iowa", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8540, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JXA", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetex Aviation", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8541, + "callsign": "", + "codeHub": "CVT", + "codeIataAirline": "", + "codeIcaoAirline": "JXT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetstream Executive Travel", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8542, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JXX", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet X", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8543, + "callsign": "CORP-FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JYP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "J & P Corporate Flights", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8544, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "JZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8545, + "callsign": "AASCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KAA", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asia Aero Survey And Consulting Engineers", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8546, + "callsign": "AVIABALTIKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KAB", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviabaltika", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8547, + "callsign": "", + "codeHub": "KGO", + "codeIataAirline": "", + "codeIcaoAirline": "KAD", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kirovohradavia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8548, + "callsign": "AIR KIRVOVGRAD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KAD", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Kirovograd", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8549, + "callsign": "AK SHOUMKAR", + "codeHub": "FRU", + "codeIataAirline": "", + "codeIcaoAirline": "KAF", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kyrgyz Air", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8550, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KAF", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kafue International Air Services", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8551, + "callsign": "AVIATION COLLEGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KAG", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Korea Aviation College", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8552, + "callsign": "DEKAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KAH", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kent Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8553, + "callsign": "KAISER", + "codeHub": "OAK", + "codeIataAirline": "", + "codeIcaoAirline": "KAI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kaiser Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8554, + "callsign": "AVIATRACK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KAK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviatrack", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8555, + "callsign": "ICO-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KAM", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Mach", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8556, + "callsign": "KANAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KAN", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ak-Kanat", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8557, + "callsign": "KANSAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KAN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kansas Highway Patrol", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8558, + "callsign": "KAZAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KAO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kazan Aviation Production Association", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8559, + "callsign": "KINGSTON AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KAS", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kingston Air Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8560, + "callsign": "KATNS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KAT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Keeler Air Transport Service", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8561, + "callsign": "", + "codeHub": "AKF", + "codeIataAirline": "", + "codeIcaoAirline": "KAV", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Kufra", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8562, + "callsign": "", + "codeHub": "GUW", + "codeIataAirline": "", + "codeIcaoAirline": "KAW", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kazair West", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8563, + "callsign": "KAZWEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KAW", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kaz Air West", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8564, + "callsign": "", + "codeHub": "MUC", + "codeIataAirline": "", + "codeIcaoAirline": "KAY", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "K5-Aviation (Germany)", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8565, + "callsign": "KAYAK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KAY", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "K5-Aviation", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8566, + "callsign": "KABUL AIR", + "codeHub": "KBL", + "codeIataAirline": "", + "codeIcaoAirline": "KBL", + "codeIso2Country": "AF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kabul Air", + "nameCountry": "Afghanistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8567, + "callsign": "KABIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KBN", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sriracha Aviation", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8568, + "callsign": "TYNE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KBO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Tours", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8569, + "callsign": "KORAL BLUE", + "codeHub": "SSH", + "codeIataAirline": "", + "codeIcaoAirline": "KBR", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Koral Blue", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8570, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KBS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gamair", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8571, + "callsign": "", + "codeHub": "NYO", + "codeIataAirline": "", + "codeIcaoAirline": "KBV", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kustbevakningsflyget", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 8572, + "callsign": "SWECOAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KBV", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "General Tullstryrelsen", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8573, + "callsign": "SWECOAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KBV", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kustbevakningen", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8574, + "callsign": "SKYBEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KBX", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ibex-U.L.", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8575, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KCA", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-Kiev Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8576, + "callsign": "TRANS-KIEV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KCA", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-Kiev", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8577, + "callsign": "KAYCEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KCE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "K C Piper Sales", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8578, + "callsign": "KACEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KCE", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Irving Oil Transport", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8579, + "callsign": "AEROMECH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KCI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromech Commuter Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8580, + "callsign": "TARTAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KCL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jubilee Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8581, + "callsign": "", + "codeHub": "IGT", + "codeIataAirline": "", + "codeIcaoAirline": "KCM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Magas", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8582, + "callsign": "KOLOB", + "codeHub": "CDC", + "codeIataAirline": "", + "codeIcaoAirline": "KCR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kolob Canyons Air Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8583, + "callsign": "KOCOGLU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KCU", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyline", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8584, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KCZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8585, + "callsign": "KEY DEE", + "codeHub": "YPB", + "codeIataAirline": "", + "codeIcaoAirline": "KDC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "KD Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8586, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KDS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Makani Kai Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8587, + "callsign": "KAYDOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KDS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "K2 Del Aire", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8588, + "callsign": "KUDZU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KDZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flightworks", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8589, + "callsign": "KEYSTONE", + "codeHub": "YWG", + "codeIataAirline": "", + "codeIcaoAirline": "KEE", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Keystone Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8590, + "callsign": "KAZAIRJET", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "KEJ", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kaz Air Jet", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8591, + "callsign": "ARKHABAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KEK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arkhabay", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8592, + "callsign": "KELNER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KEL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kelner Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8593, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KEL", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kieler Business Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8594, + "callsign": "KERMAS", + "codeHub": "MLA", + "codeIataAirline": "", + "codeIcaoAirline": "KER", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kermas Aviation", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8595, + "callsign": "", + "codeHub": "TIP", + "codeIataAirline": "", + "codeIcaoAirline": "KES", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kallat Elsaker Air", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8596, + "callsign": "KALLAT EL SKER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KES", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kallat El-Saker Air Company", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8597, + "callsign": "CAT KARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KET", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cat Kargo Hava Tasima", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8598, + "callsign": "BLIZZARD", + "codeHub": "YWG", + "codeIataAirline": "", + "codeIcaoAirline": "KEW", + "codeIso2Country": "CA", + "founding": 1998, + "iataPrefixAccounting": "", + "nameAirline": "Kivalliq Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8599, + "callsign": "KEY AIR", + "codeHub": "SLC", + "codeIataAirline": "", + "codeIcaoAirline": "KEY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Key Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8600, + "callsign": "MISSION", + "codeHub": "SNA", + "codeIataAirline": "", + "codeIcaoAirline": "KFB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Superior Transportation Associates, Inc d/b/a STAjets", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8601, + "callsign": "KREMENCHUK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KFC", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kremenchuk Flight College", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8602, + "callsign": "SKYFREE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KFE", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyfree", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8603, + "callsign": "MORITO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KFE", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyfirst", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8604, + "callsign": "KRIFKA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KFK", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Charter Krifka", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8605, + "callsign": "KALITTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KFS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kalitta Flying Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8606, + "callsign": "KEMIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KGB", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kyrgyz General Aviation", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8607, + "callsign": "GOLDCREST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KGC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Peach Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8608, + "callsign": "CONCORDE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KGD", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Concorde", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8609, + "callsign": "KYRGYZ SKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KGK", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky KG Airlines", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8610, + "callsign": "KNIGHT-LINER", + "codeHub": "KAN", + "codeIataAirline": "", + "codeIcaoAirline": "KGT", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Knights Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8611, + "callsign": "BERMET", + "codeHub": "FRU", + "codeIataAirline": "", + "codeIcaoAirline": "KGZ", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kyrgyz Airlines", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8612, + "callsign": "CARGO HAWK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KHC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kitty Hawk Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8613, + "callsign": "KANFEY HAEMEK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KHE", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kanfey-Ha'emek Aviation", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8614, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KHH", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alexandria Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8615, + "callsign": "NESLI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KHN", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kazakhstan Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8616, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KHN", + "codeIso2Country": "MN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Khaan Airlines", + "nameCountry": "Mongolia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8617, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KHO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircompany KHORS", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8618, + "callsign": "", + "codeHub": "KBL", + "codeIataAirline": "", + "codeIcaoAirline": "KHP", + "codeIso2Country": "AF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Photros Air", + "nameCountry": "Afghanistan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8619, + "callsign": "PHOTROS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KHP", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Khozestan Photros Air Lines", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8620, + "callsign": "KHAZAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KHR", + "codeIso2Country": "TM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Khazar", + "nameCountry": "Turkmenistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8621, + "callsign": "KHATLON", + "codeHub": "DYU", + "codeIataAirline": "", + "codeIcaoAirline": "KHT", + "codeIso2Country": "TJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Khatlon Air", + "nameCountry": "Tajikistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8622, + "callsign": "", + "codeHub": "HRK", + "codeIataAirline": "", + "codeIcaoAirline": "KHV", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Kharkov", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8623, + "callsign": "AIR KHARKOV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KHV", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircompany Airlines Kharkov", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8624, + "callsign": "RIZZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KHX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Knighthawk Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8625, + "callsign": "KHYBER", + "codeHub": "JAA", + "codeIataAirline": "", + "codeIcaoAirline": "KHY", + "codeIso2Country": "AF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Khyber Afghan Airlines", + "nameCountry": "Afghanistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8626, + "callsign": "INTERCITY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KIA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter City Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8627, + "callsign": "TWEETY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KIE", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Afit", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8628, + "callsign": "SKIMAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KIM", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skimaster Guinea Ecuatorial", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8629, + "callsign": "KINLOSS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KIN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kinloss FTU", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8630, + "callsign": "KRAIAERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KIO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kraiaero", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8631, + "callsign": "KINNARPS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KIP", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kinnarps", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8632, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "KIR", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skiva Air", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8633, + "callsign": "SKIVA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KIR", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skiva Air", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8634, + "callsign": "KIWI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KIW", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal New Zealand Air Force", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 8635, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KIX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kiss Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8636, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KIZ", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kanaf-Arkia Airlines", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8637, + "callsign": "", + "codeHub": "LCA", + "codeIataAirline": "", + "codeIcaoAirline": "KJA", + "codeIso2Country": "CY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avistar Airlines Cyprus", + "nameCountry": "Cyprus", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8638, + "callsign": "AVIASTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KJA", + "codeIso2Country": "CY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avistar", + "nameCountry": "Cyprus", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8639, + "callsign": "ALGERIAN AIRFORCE", + "codeHub": "ALG", + "codeIataAirline": "", + "codeIcaoAirline": "KJD", + "codeIso2Country": "DZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Forces Aeriennes Algeriennes", + "nameCountry": "Algeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 8640, + "callsign": "SHANGHAI KINGJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KJT", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shanghai Kingjet General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8641, + "callsign": "", + "codeHub": "KZN", + "codeIataAirline": "", + "codeIcaoAirline": "KKA", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kazan Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8642, + "callsign": "KAKAAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KKA", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kazavia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8643, + "callsign": "KOLKOL AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KKL", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kol-Kol Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8644, + "callsign": "KOKSHE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KKS", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Salem", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8645, + "callsign": "TENGIZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KKU", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Akku Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8646, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KLA", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SKA SA Aircraft Leasing", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8647, + "callsign": "AIR KLAOPEDA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KLD", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Klaipeda", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8648, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KLE", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rusaero, Center For Civil Aviation Services", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8649, + "callsign": "KARLOG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KLG", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Karlog Air", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8650, + "callsign": "KLM HELI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KLH", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "KLM Helicopter", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8651, + "callsign": "KOLYMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KLI", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kolyma-Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8652, + "callsign": "CLASS LINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KLJ", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "KlasJet", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8653, + "callsign": "KALININGRAD AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KLN", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kaliningrad Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8654, + "callsign": "KLONDIKE", + "codeHub": "YYC", + "codeIataAirline": "", + "codeIcaoAirline": "KLO", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SkyXpress Airline", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8655, + "callsign": "KAY-LER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KLR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Columbus Air Transport", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8656, + "callsign": "CARACAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KLS", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolynx", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8657, + "callsign": "KELIX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KLX", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kelix Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8658, + "callsign": "LYPSO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KLY", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Calypso", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8659, + "callsign": "AEROKALUZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KLZ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerokaluz", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8660, + "callsign": "KEMBLEJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KMB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Deltaq Engineering Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8661, + "callsign": "", + "codeHub": "DAR", + "codeIataAirline": "", + "codeIcaoAirline": "KMC", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kahama Mining", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8662, + "callsign": "KAHAMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KMC", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kahama Mining Corporation", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8663, + "callsign": "", + "codeHub": "BEG", + "codeIataAirline": "", + "codeIcaoAirline": "KMG", + "codeIso2Country": "RS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kosmas Air", + "nameCountry": "Serbia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8664, + "callsign": "KOSMAS CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KMG", + "codeIso2Country": "BA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kosmas Air", + "nameCountry": "Bosnia and Herzegovina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8665, + "callsign": "SILK ROAD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KMS", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silk Road Airline", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8666, + "callsign": "", + "codeHub": "KMW", + "codeIataAirline": "", + "codeIcaoAirline": "KMW", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kostroma Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8667, + "callsign": "KIAMPEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KMX", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kiampex, Association", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8668, + "callsign": "KNIGHTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KNA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Knight Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8669, + "callsign": "KING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KNG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "King Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8670, + "callsign": "", + "codeHub": "KXK", + "codeIataAirline": "", + "codeIcaoAirline": "KNM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "KNAAPO", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "supplier" + }, + { + "ageFleet": 0.0, + "airlineId": 8671, + "callsign": "KNAAPO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KNM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Komsomolsk-On-Amur Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8672, + "callsign": "KINGDOM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KNM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "G B Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8673, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KNN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8674, + "callsign": "KINSHASA AIRWAYS", + "codeHub": "FIH", + "codeIataAirline": "", + "codeIcaoAirline": "KNS", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "kinshasa Airways", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8675, + "callsign": "KENUZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KNS", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kenuz Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8676, + "callsign": "KNIGHTWAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KNT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Knightair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8677, + "callsign": "KINZE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KNZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Travel Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8678, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KOA", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euro-Flite Oy", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8679, + "callsign": "AUTOFLEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KOB", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kobo-Coop - 96 KFT", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8680, + "callsign": "KOKEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KOE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northland Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8681, + "callsign": "KOKO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KOK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Horizon Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8682, + "callsign": "BLACKEAGLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KOM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cosmo Airlines", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8683, + "callsign": "COMJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KOM", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kom Activity", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8684, + "callsign": "BRALA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KON", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bars", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8685, + "callsign": "COPTERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KOP", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Copters", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8686, + "callsign": "KOSOVA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KOS", + "codeIso2Country": "YU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kosovaair", + "nameCountry": "Yugoslavia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8687, + "callsign": "SEVER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KOT", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8688, + "callsign": "ORLAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KOV", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orlan-2000", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8689, + "callsign": "RODEO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KOW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baker Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8690, + "callsign": "ALEKS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KOY", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Araiavia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8691, + "callsign": "KUN PENG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KPA", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kun Peng Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8692, + "callsign": "KAMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KPH", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kazan Plant Of Helicopters", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8693, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KPJ", + "codeIso2Country": "TN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Karthago Private Jet", + "nameCountry": "Tunisia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8694, + "callsign": "", + "codeHub": "KIV", + "codeIataAirline": "", + "codeIcaoAirline": "KPM", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SkyPrimAir", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8695, + "callsign": "AIR KAPA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KPR", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kapa Air", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8696, + "callsign": "CRYSTAL THAI", + "codeHub": "BKK", + "codeIataAirline": "", + "codeIcaoAirline": "KPS", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Crystal Thai Airlines", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8697, + "callsign": "BALADO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KPT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kapital Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8698, + "callsign": "KRAKEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KRA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kraken Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8699, + "callsign": "REGATA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KRA", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transcontinental Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8700, + "callsign": "MARAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KRA", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Krial-Air", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8701, + "callsign": "KARIBU AIR", + "codeHub": "DAR", + "codeIataAirline": "", + "codeIcaoAirline": "KRB", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Karibu Airways", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8702, + "callsign": "KIWI RESCUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KRC", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "New Zealand Air Defence Force", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8703, + "callsign": "KITTYHAWK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KRF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UK Royal / VIP Flights", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8704, + "callsign": "AVIAMONTAG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KRG", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Krimaviamontag", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8705, + "callsign": "SPARROWHAWK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KRH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UK Royal / VIP Flights", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8706, + "callsign": "", + "codeHub": "HLZ", + "codeIataAirline": "", + "codeIcaoAirline": "KRL", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kiwi Regional Airlines", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8707, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KRL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kiwi Regional Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8708, + "callsign": "CITADEL AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KRL", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kryla", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8709, + "callsign": "TRANS UNIVERSAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KRM", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Crimea Universal Avia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8710, + "callsign": "ANTOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KRN", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kaz Agros Avia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8711, + "callsign": "", + "codeHub": "IEV", + "codeIataAirline": "", + "codeIcaoAirline": "KRO", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kroonk Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8712, + "callsign": "KROONK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KRO", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kroonk, Air Agency", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8713, + "callsign": "KORSAR AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KRS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Korsar", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8714, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KRS", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rosen Aviation", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8715, + "callsign": "KOKTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KRT", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kokshetau Airline", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8716, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KRT", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kokshetau Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8717, + "callsign": "KHORIV-AVIA", + "codeHub": "IEV", + "codeIataAirline": "", + "codeIcaoAirline": "KRV", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Khoriv-Avia, State Enterprise", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8718, + "callsign": "SKY CAMEL", + "codeHub": "RIX", + "codeIataAirline": "", + "codeIcaoAirline": "KSA", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "KS Avia", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8719, + "callsign": "SUDCARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KSA", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sud Aerocargo", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8720, + "callsign": "SUNLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KSH", + "codeIso2Country": "SY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan Mediterranean Aviation", + "nameCountry": "Syria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8721, + "callsign": "KISSARI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KSI", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Kissari", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8722, + "callsign": "KAY-JETS", + "codeHub": "ATH", + "codeIataAirline": "", + "codeIcaoAirline": "KSJ", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "K2 SmartJets", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,private" + }, + { + "ageFleet": 0.0, + "airlineId": 8723, + "callsign": "", + "codeHub": "VKO", + "codeIataAirline": "", + "codeIcaoAirline": "KSM", + "codeIso2Country": "RU", + "founding": 1995, + "iataPrefixAccounting": "", + "nameAirline": "Kosmos Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8724, + "callsign": "KOSMOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KSM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kosmos", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8725, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KSM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kosmos Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8726, + "callsign": "", + "codeHub": "BOG", + "codeIataAirline": "", + "codeIcaoAirline": "KSP", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SAEP", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8727, + "callsign": "SEAP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KSP", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Especializados En Transportes Petroleros", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8728, + "callsign": "KAZAK SUNRISE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KSR", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sanrise", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8729, + "callsign": "KANSAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KSS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Raytheon Travel Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8730, + "callsign": "KING STAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KST", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PTL Luftfahrtunternehmen", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8731, + "callsign": "K-STATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KSU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kansas State University", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8732, + "callsign": "KOSFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KSV", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UN Humanitarian Relief Flights (Kosovo)", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8733, + "callsign": "", + "codeHub": "KVX", + "codeIataAirline": "", + "codeIcaoAirline": "KTA", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kirov Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8734, + "callsign": "VYATKA-AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KTA", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kirov State Avia Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8735, + "callsign": "TRANSBALTIKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KTB", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transaviabaltika", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8736, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KTB", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transaviabaltika Aviation", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8737, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KTB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TransAviaBaltika", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8738, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KTI", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kano Transport International", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8739, + "callsign": "KNOTTSBERRY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KTL", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "P & P Floss Pick Manufacturers", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8740, + "callsign": "AERONAVIGACIYA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KTN", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronavigaciya", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8741, + "callsign": "COPTER TRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KTR", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AB Flygtjanst F.J. Viklund", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8742, + "callsign": "KOTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KTS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transair-Gyrantiee", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8743, + "callsign": "KOTLAS AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KTS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kotlas Joint Civil Aviation Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8744, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KTS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kotlas Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8745, + "callsign": "TRANSPORT UNI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KTU", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Korea National University of Transportation", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8746, + "callsign": "", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "KTV", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kata Air", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8747, + "callsign": "KATAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KTV", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kata Transportation", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8748, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KTV", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kata Transportation Company", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8749, + "callsign": "TRANSPORTES KAUA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KUA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kaua Transportes Aereos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8750, + "callsign": "AIR KUDOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KUD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kudos Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8751, + "callsign": "KUDU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KUD", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kudu Air Services", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8752, + "callsign": "", + "codeHub": "KWI", + "codeIataAirline": "", + "codeIcaoAirline": "KUG", + "codeIso2Country": "KW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kuwait Air Force", + "nameCountry": "Kuwait", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 8753, + "callsign": "KUWAITI GOV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KUG", + "codeIso2Country": "KW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Government of Kuwait", + "nameCountry": "Kuwait", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 8754, + "callsign": "", + "codeHub": "JUB", + "codeIataAirline": "", + "codeIcaoAirline": "KUH", + "codeIso2Country": "SS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kush Air", + "nameCountry": "South Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8755, + "callsign": "KUSH AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KUH", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kush Aviation", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8756, + "callsign": "KUDLIK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KUK", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kudlik Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8757, + "callsign": "KAY-AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KUR", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kura Kura Aviation", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8758, + "callsign": "KURSK AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KUS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kursk State Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8759, + "callsign": "KUSWAG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KUS", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Airlines", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8760, + "callsign": "YAKUTSK", + "codeHub": "YKS", + "codeIataAirline": "", + "codeIcaoAirline": "KUT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yakutsk Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8761, + "callsign": "", + "codeHub": "TSE", + "codeIataAirline": "", + "codeIcaoAirline": "KUY", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kazairtrans", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8762, + "callsign": "KAIGA", + "codeHub": "TSE", + "codeIataAirline": "", + "codeIcaoAirline": "KUY", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kaz Air Trans", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8763, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KUY", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kaz TransAir", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8764, + "callsign": "CATATUMBO", + "codeHub": "MAR", + "codeIataAirline": "", + "codeIcaoAirline": "KVA", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kavok Airlines", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8765, + "callsign": "PONTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KVK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Olimp Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8766, + "callsign": "COMLEASE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KVM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rusaerolizing Airline", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8767, + "callsign": "KOREA AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KVN", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Korea Aviation", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8768, + "callsign": "KAZEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KVP", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Kazakhstan Express", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8769, + "callsign": "KAVAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KVR", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alliance Avia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8770, + "callsign": "KEVIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KVS", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kevis", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8771, + "callsign": "ALL AFRICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KVT", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "K5 Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8772, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KVZ", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Z-Aero Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8773, + "callsign": "VOZAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KWA", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vozdushnaya Academy", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8774, + "callsign": "KWENA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KWN", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kwena Air, South African Charter", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8775, + "callsign": "KAY DUB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KWX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Key West", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8776, + "callsign": "YANA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KYA", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yana Air Cargo", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8777, + "callsign": "SKY AIROPS", + "codeHub": "CIA", + "codeIataAirline": "", + "codeIcaoAirline": "KYB", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skybridge Airops", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8778, + "callsign": "DOLPHIN", + "codeHub": "FLL", + "codeIataAirline": "", + "codeIcaoAirline": "KYC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Av Atlantic", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8779, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "KYC", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SkyBird Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8780, + "callsign": "SKYAD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KYD", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Messaging", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8781, + "callsign": "CRIMEA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KYM", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "KRYM, Limited Partnership International Airline", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8782, + "callsign": "SKY AERONAUTICAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KYR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Aeronautical Services", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8783, + "callsign": "KAZAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KZA", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kazakhstan Airlines (Kazair)", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8784, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8785, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KZE", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euro-Asia Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8786, + "callsign": "KAZEUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KZE", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Euro-Asia Air International", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8787, + "callsign": "", + "codeHub": "DZN", + "codeIataAirline": "", + "codeIcaoAirline": "KZH", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zhezair", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8788, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KZH", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zhezair", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8789, + "callsign": "ULUTAU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KZH", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zhez Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8790, + "callsign": "CARZAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KZM", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoebus Apollo Zambia", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8791, + "callsign": "KAZANAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "KZN", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviaservis", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8792, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "KZS", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kazaviapas", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8793, + "callsign": "LOCKHEED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lockheed", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8794, + "callsign": "LADCO-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lebanon Airport Development", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8795, + "callsign": "LACOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAE", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas Colombianas", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8796, + "callsign": "LATVIAN AIR FORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAF", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Latvian Air Force", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 8797, + "callsign": "AEROLAGOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovias de Lagos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8798, + "callsign": "AVILEG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAG", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviaiton Legacy", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8799, + "callsign": "STAR SHIP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "L A Helicopter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8800, + "callsign": "", + "codeHub": "HLP", + "codeIataAirline": "", + "codeIcaoAirline": "LAI", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linus Airways", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8801, + "callsign": "", + "codeHub": "NBO", + "codeIataAirline": "", + "codeIcaoAirline": "LAK", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lennox Airlines", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8802, + "callsign": "REDLAKE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Red Wing Aeroplance Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8803, + "callsign": "LENNOX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAK", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lennox Airways", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8804, + "callsign": "LAWRENCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lawrence Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8805, + "callsign": "LEASA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAS", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Ecuatoguineanas de Aviacion (LEASA)", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8806, + "callsign": "LIONS HELICOPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAS", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skymedia AG", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8807, + "callsign": "LEBANESE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAT", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lebanese Air Transport", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8808, + "callsign": "SURAMERICANO", + "codeHub": "BOG", + "codeIataAirline": "", + "codeIcaoAirline": "LAU", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas Suramericanas", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8809, + "callsign": "", + "codeHub": "BOG", + "codeIataAirline": "", + "codeIcaoAirline": "LAU", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South American Air Lines Colombia", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8810, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAU", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas Suramericanas", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8811, + "callsign": "SHADOW", + "codeHub": "VIE", + "codeIataAirline": "", + "codeIcaoAirline": "LAV", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Luxe Aviation", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8812, + "callsign": "CAMBRIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAW", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cardiff Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8813, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAW", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Link Airways Of Australia", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8814, + "callsign": "ALPAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAX", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alp-Air Bern", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8815, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAX", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Laminar Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8816, + "callsign": "ALPAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAX", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alpar Flug-Und Flugplatzgesellschaft", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8817, + "callsign": "LAYANG", + "codeHub": "MYY", + "codeIataAirline": "", + "codeIcaoAirline": "LAY", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Layang-Layang Aerospace", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8818, + "callsign": "AEROLAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LAY", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlat", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8819, + "callsign": "LIBERIA AIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LBA", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Liberia Airways", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8820, + "callsign": "LIBYAN BLUEBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LBB", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Libyan Bluebird", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8821, + "callsign": "ELBEE AIRLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LBE", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elbee Airlines", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8822, + "callsign": "LIBYAN AIRFORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LBF", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Force of Libya", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 8823, + "callsign": "ALBISA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LBI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Albisa", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8824, + "callsign": "", + "codeHub": "MJI", + "codeIataAirline": "", + "codeIcaoAirline": "LBO", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Libo Air Cargo", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8825, + "callsign": "LABQUEST", + "codeHub": "LZU", + "codeIataAirline": "", + "codeIcaoAirline": "LBQ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quest Diagnostics", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8826, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LBQ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quest Diagnostics", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8827, + "callsign": "MOTION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LBR", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elbe Air Lufttransport", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8828, + "callsign": "LABSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LBS", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linea Aerea Bolivariana LABSA", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8829, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LBZ", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Angkasa Super Service", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8830, + "callsign": "LECONTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LCA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Leconte Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8831, + "callsign": "LANCAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LCC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "The Lancair Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8832, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LCE", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lance Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8833, + "callsign": "LYNCH AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LCH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lynch Flying Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8834, + "callsign": "NAKLAO", + "codeHub": "VTE", + "codeIataAirline": "", + "codeIcaoAirline": "LCI", + "codeIso2Country": "LA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lao Central Airlines", + "nameCountry": "Laos", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8835, + "callsign": "LOTSIYA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LCI", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lotsiya", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8836, + "callsign": "LENCON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LCL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mala Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8837, + "callsign": "LINEAS COMERCIALES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LCM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas Comerciales", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8838, + "callsign": "", + "codeHub": "CBB", + "codeIataAirline": "", + "codeIcaoAirline": "LCN", + "codeIso2Country": "BO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas Canedo - LAC", + "nameCountry": "Bolivia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8839, + "callsign": "", + "codeHub": "CBB", + "codeIataAirline": "", + "codeIcaoAirline": "LCN", + "codeIso2Country": "BO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas Canedo", + "nameCountry": "Bolivia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8840, + "callsign": "", + "codeHub": "TIP", + "codeIataAirline": "", + "codeIcaoAirline": "LCR", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Libyan Arab Air Cargo", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8841, + "callsign": "", + "codeHub": "TIP", + "codeIataAirline": "", + "codeIcaoAirline": "LCR", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Libyan Air Cargo", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8842, + "callsign": "LIBAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LCR", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Libyan Arab Company For Air Cargo", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8843, + "callsign": "LEUCHARS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LCS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Leuchars", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8844, + "callsign": "", + "codeHub": "MAD", + "codeIataAirline": "", + "codeIcaoAirline": "LCT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Stellair", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8845, + "callsign": "", + "codeHub": "QRO", + "codeIataAirline": "", + "codeIcaoAirline": "LCT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAR Aerolineas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8846, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LCT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAR Aerolineas", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8847, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LCT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Link Conexion Aerea", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8848, + "callsign": "CABO CAT", + "codeHub": "SID", + "codeIataAirline": "", + "codeIcaoAirline": "LCV", + "codeIso2Country": "CV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Smartlynx Airlines Cabo Verde", + "nameCountry": "Cape Verde", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8849, + "callsign": "LONDON CITY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LCY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "London City Airport Jet Centre", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8850, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LCZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8851, + "callsign": "LADA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LDB", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lada Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8852, + "callsign": "LADE", + "codeHub": "AEP", + "codeIataAirline": "", + "codeIcaoAirline": "LDE", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LADE", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8853, + "callsign": "DURANGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LDG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Aereas Ejecutivas de Durango", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8854, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LDL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerologic", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8855, + "callsign": "EXPERT", + "codeHub": "VIE", + "codeIataAirline": "", + "codeIcaoAirline": "LDM", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LaudaMotion", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8856, + "callsign": "ALDONAS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LDN", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Al-Donas Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8857, + "callsign": "ELISUSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LDO", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elisusa", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8858, + "callsign": "AEROLIDER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LDR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Lider", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8859, + "callsign": "", + "codeHub": "COR", + "codeIataAirline": "", + "codeIcaoAirline": "LDS", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas del Sur", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8860, + "callsign": "LINSUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LDS", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas del Sur S.A.", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8861, + "callsign": "LEADAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LEA", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Leadair Unijet", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8862, + "callsign": "LEBAP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LEB", + "codeIso2Country": "TM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lebap", + "nameCountry": "Turkmenistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8863, + "callsign": "ELICOMO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LEC", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elicomo", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8864, + "callsign": "LECA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LEC", + "codeIso2Country": "CF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linex", + "nameCountry": "Central African Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8865, + "callsign": "SWEEPER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LED", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fotonor", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8866, + "callsign": "JAVELIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LEE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Leeming FTU", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8867, + "callsign": "LEGACY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LEG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "The Army Aviation Heritage Foundation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8868, + "callsign": "PATHFINDER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LEH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Leeds Central Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8869, + "callsign": "LEASAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LEI", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Leasair International", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8870, + "callsign": "LEIPZIG FAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LEJ", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FSH Luftfahrtunternehmen", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8871, + "callsign": "LET-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LEK", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Let J.S.C.", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8872, + "callsign": "LEONAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LEL", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Leonesa de Aviacion", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8873, + "callsign": "", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "LEM", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alim Airlines", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8874, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LEM", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aleem", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8875, + "callsign": "LENTINI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LEN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lentini Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8876, + "callsign": "SUN-OLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LEO", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunair Air One", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8877, + "callsign": "LEOPAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LEO", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Leopair", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8878, + "callsign": "SRI-LION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LEO", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lion Air", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8879, + "callsign": "LAUGHLIN EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LEP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Laughlin Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8880, + "callsign": "SEAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LES", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Automotores Salta", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8881, + "callsign": "", + "codeHub": "TLC", + "codeIataAirline": "", + "codeIcaoAirline": "LET", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Ejecutivas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8882, + "callsign": "MEXALE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LET", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerouneas Ejecutivas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8883, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LET", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Ejecutivas", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8884, + "callsign": "LIONSAIR", + "codeHub": "ZRH", + "codeIataAirline": "", + "codeIcaoAirline": "LEU", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lions-Air", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8885, + "callsign": "", + "codeHub": "TLV", + "codeIataAirline": "", + "codeIcaoAirline": "LEV", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LeadAir", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8886, + "callsign": "SKY LEADAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LEV", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Leadair Ltd Israel Airlines", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8887, + "callsign": "LEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LEX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "L'express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8888, + "callsign": "LIFE FLIGHT CANADA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LFC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Control Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8889, + "callsign": "LUX EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LFE", + "codeIso2Country": "LU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Luxflight Executive", + "nameCountry": "Luxembourg", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8890, + "callsign": "HISTRIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LFH", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alfa Histria", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8891, + "callsign": "AEROMED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LFI", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Airways Corporation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8892, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LFK", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linkopings Flygklubb", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8893, + "callsign": "LIFE FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LFL", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Air", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8894, + "callsign": "", + "codeHub": "OBF", + "codeIataAirline": "", + "codeIcaoAirline": "LFO", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DLR Flugbetriebe", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8895, + "callsign": "LUFO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LFO", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DLR Deutsches Zentrum Fur Luft-Und Raumfahrt E.V.", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8896, + "callsign": "ALFA-SPACE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LFP", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alfa Aerospace", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8897, + "callsign": "LANFREIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LFR", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Airfreight Aviation", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8898, + "callsign": "LOUELLA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LFS", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Louella Freight Services", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8899, + "callsign": "", + "codeHub": "HLA", + "codeIataAirline": "", + "codeIcaoAirline": "LFT", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolift", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8900, + "callsign": "AEROLIFTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LFT", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolift Philippines", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8901, + "callsign": "LIFTCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LFT", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolift", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8902, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LFX", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flynext Luftverkehrs", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8903, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LGA", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elgaz", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8904, + "callsign": "", + "codeHub": "HLA", + "codeIataAirline": "", + "codeIcaoAirline": "LGE", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "African Airline Investments", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8905, + "callsign": "LEGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LGE", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lego", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8906, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LGE", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Allegiance Airways Gabon", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8907, + "callsign": "ELL-GEE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LGI", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LG International Corporation", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8908, + "callsign": "", + "codeHub": "RKV", + "codeIataAirline": "", + "codeIcaoAirline": "LGJ", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Icejet", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8909, + "callsign": "SKYTRAINER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LGM", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LGM Fuftfahrtgellschaft", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8910, + "callsign": "ALTA ARGENTINA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LGN", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alta", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8911, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LGS", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LOT Ground Service", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8912, + "callsign": "LONGTAIL", + "codeHub": "BDA", + "codeIataAirline": "", + "codeIcaoAirline": "LGT", + "codeIso2Country": "BM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Longtail Aviation", + "nameCountry": "Bermuda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8913, + "callsign": "LAGUNA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LGU", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Ejecutivos de La Laguna", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8914, + "callsign": "ARNA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LGZ", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intergaz", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8915, + "callsign": "", + "codeHub": "HII", + "codeIataAirline": "", + "codeIcaoAirline": "LHA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Havasu Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8916, + "callsign": "FAMILY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LHB", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Liebherr-Aviation", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8917, + "callsign": "FAMILY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LHB", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Liebherr Geschaeftreiseflugzeug", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8918, + "callsign": "MUSTANG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LHC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BIH (Onshore)", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8919, + "callsign": "AIR LEADER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LHG", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Leader General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8920, + "callsign": "LAHAK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LHK", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lahak Aviation", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8921, + "callsign": "FAMILY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LHR", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Liebherr Geschaertreiseflugzeug", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8922, + "callsign": "AL AHRAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LHR", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Al Ahram Aviation", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8923, + "callsign": "ENTERPRISE LUHANSK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LHS", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Luhansk, Aviation Enterprise", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8924, + "callsign": "LUFTHANSA TECHNIK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LHT", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lufthansa Technik", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8925, + "callsign": "ALIDA", + "codeHub": "FOG", + "codeIataAirline": "", + "codeIcaoAirline": "LID", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alidaunia", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8926, + "callsign": "", + "codeHub": "OST", + "codeIataAirline": "", + "codeIcaoAirline": "LIE", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Al-Dawood Air", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8927, + "callsign": "AL-DAWOOD AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIE", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Al-Dawood Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8928, + "callsign": "LIFECARE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rocky Mountain", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8929, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIH", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lifeflight", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8930, + "callsign": "GROMOV AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LII", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Research Institute, M. Gromov", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8931, + "callsign": "LINEAS JOSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIJ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas San Jose", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8932, + "callsign": "GIASIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ghiatsint-Rahat", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8933, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Limitless Airways", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8934, + "callsign": "LIMO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIM", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BVBA Lucorp", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8935, + "callsign": "LINAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIN", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linair", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8936, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIO", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Charter", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8937, + "callsign": "LIPIZAN", + "codeHub": "POW", + "codeIataAirline": "", + "codeIcaoAirline": "LIP", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lipican Aer", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8938, + "callsign": "LIPETSK-AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "State Lipetsk Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8939, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lipetsk Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8940, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIQ", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lid Air", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8941, + "callsign": "LAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIR", + "codeIso2Country": "LU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lionair", + "nameCountry": "Luxembourg", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8942, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heli Air", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8943, + "callsign": "LISLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIR", + "codeIso2Country": "BY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Minsk Aircraft Overhaul Plant", + "nameCountry": "Belarus", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8944, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "LIS", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastern Express (Kazakhstan)", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8945, + "callsign": "LARISA", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "LIS", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastern Express", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8946, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "LIS", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Luk Aero", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8947, + "callsign": "LISAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIS", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlis", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8948, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Luk Aero", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8949, + "callsign": "LARISA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIS", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Luk Aero Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8950, + "callsign": "LIVONIA", + "codeHub": "EPU", + "codeIataAirline": "", + "codeIcaoAirline": "LIV", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Livonia", + "nameCountry": "Estonia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8951, + "callsign": "", + "codeHub": "LJU", + "codeIataAirline": "", + "codeIcaoAirline": "LIX", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linxair Business Airlines", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8952, + "callsign": "LIT EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIX", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Littoral Express", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8953, + "callsign": "REPIDLINX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIX", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linxair", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8954, + "callsign": "", + "codeHub": "YQB", + "codeIataAirline": "", + "codeIcaoAirline": "LIZ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyjet Aviation (Canada)", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8955, + "callsign": "LIZAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LIZ", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Liz Air", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8956, + "callsign": "AIR JAMAHIRIYA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LJA", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Jamahiriya Company", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8957, + "callsign": "", + "codeHub": "AZI", + "codeIataAirline": "", + "codeIcaoAirline": "LJB", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Al Jaber Aviation", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8958, + "callsign": "AL JABEER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LJB", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Al Jabeer", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8959, + "callsign": "COOL RUNNINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LJM", + "codeIso2Country": "JM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Link", + "nameCountry": "Jamaica", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8960, + "callsign": "HELLAS WINGS", + "codeHub": "ATH", + "codeIataAirline": "", + "codeIcaoAirline": "LJR", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hellas Wings", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8961, + "callsign": "LIFEJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LJT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taxijet", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8962, + "callsign": "ELJAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LJY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "L J Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8963, + "callsign": "", + "codeHub": "VTE", + "codeIataAirline": "", + "codeIcaoAirline": "LKA", + "codeIso2Country": "LA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phongsavanh Airlines", + "nameCountry": "Laos", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8964, + "callsign": "ALKAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LKA", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alkair", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8965, + "callsign": "LATCHAD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LKD", + "codeIso2Country": "TD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LAT", + "nameCountry": "Chad", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8966, + "callsign": "LAKE FRONT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LKF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Advisor", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8967, + "callsign": "LAKELAND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LKL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lakeland Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8968, + "callsign": "LAKE POWELL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LKP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "American Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8969, + "callsign": "AIRLIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LKS", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlink Solutions", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8970, + "callsign": "", + "codeHub": "PKV", + "codeIataAirline": "", + "codeIcaoAirline": "LKV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lukiaviatrans", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8971, + "callsign": "", + "codeHub": "HLP", + "codeIataAirline": "", + "codeIcaoAirline": "LKW", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Top Air (Indonesia)", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 8972, + "callsign": "LUCKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LKY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Solutions", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8973, + "callsign": "LEO LOPEZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LLA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicio Leo Lopez", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8974, + "callsign": "FLYLAL CHARTERS", + "codeHub": "VNO", + "codeIataAirline": "", + "codeIcaoAirline": "LLC", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FlyLAL Charters", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8975, + "callsign": "LANKALINK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LLC", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lankalink Aircargo", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8976, + "callsign": "AVIA LLOYD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LLD", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lloyd Aviation", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8977, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LLH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airport Handling", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8978, + "callsign": "MAYBOUNE JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LLJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Beijing Mayboune General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8979, + "callsign": "AIR LIFE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LLK", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Life Line Aviation", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8980, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LLL", + "codeIso2Country": "LA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lao Air", + "nameCountry": "Laos", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8981, + "callsign": "APOLLO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LLO", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Operation Enduring Freedom", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8982, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LLO", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eliadamello", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8983, + "callsign": "", + "codeHub": "WAW", + "codeIataAirline": "", + "codeIcaoAirline": "LLP", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FlyLAL Charters Polska", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8984, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LLP", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FlyLAL Charters Polksa", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8985, + "callsign": "SERVIESTRELLA", + "codeHub": "TLC", + "codeIataAirline": "", + "codeIcaoAirline": "LLS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Estrella", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 8986, + "callsign": "CLASSIC JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LLT", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Classic Jet", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8987, + "callsign": "GERMANJET", + "codeHub": "SXF", + "codeIataAirline": "", + "codeIcaoAirline": "LLX", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Small Planet Airlines", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8988, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LLX", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Small Planet Airlines Germany", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8989, + "callsign": "", + "codeHub": "BCN", + "codeIataAirline": "", + "codeIcaoAirline": "LLY", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Let's Fly", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 8990, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LLY", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Let's Fly", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8991, + "callsign": "LETSY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LLY", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Let's Fly", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8992, + "callsign": "AEROLIMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LMA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolima", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8993, + "callsign": "AVIAKOMI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LMB", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviakomi", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8994, + "callsign": "", + "codeHub": "MTY", + "codeIataAirline": "", + "codeIcaoAirline": "LMC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LAMCASA Carga", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 8995, + "callsign": "LINEA DECARGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LMC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linea Aerea Mexicana de Carga", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8996, + "callsign": "LAMIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LMD", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lamia", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8997, + "callsign": "LIMAIR EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LME", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lignes Mauritaniennes Air Express", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 8998, + "callsign": "SOUTH AFRICAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LMG", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South African Air Force", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 8999, + "callsign": "", + "codeHub": "LIS", + "codeIataAirline": "", + "codeIcaoAirline": "LMJ", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Masterjet Aviacao Executiva", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9000, + "callsign": "LANDMARK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LMK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grantex Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9001, + "callsign": "ALAMIA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LML", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alamia Air", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9002, + "callsign": "LINEAS MONARCA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LMN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas Monarca", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9003, + "callsign": "SKY LIMO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LMO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Limo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9004, + "callsign": "SKY HOLDINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LMO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Privaira", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9005, + "callsign": "AIR FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LMP", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Bus", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9006, + "callsign": "LEMANAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LMR", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lemanair", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9007, + "callsign": "LAMAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LMR", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lamra", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9008, + "callsign": "LOMAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LMS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lomas Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9009, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LMT", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Almaty Avia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9010, + "callsign": "LINEAS MEXICANAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LMX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Mexicanas J.S.", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9011, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "LMZ", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "StarLine", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9012, + "callsign": "ALUNK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LMZ", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Starline KZ", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9013, + "callsign": "ELNAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LNA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LNAir Air Services", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9014, + "callsign": "LANDAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LND", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hawaii Landair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9015, + "callsign": "LIGHTNING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LNG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lockheed Martin Aeronautics Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9016, + "callsign": "LASA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LNH", + "codeIso2Country": "HN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linea Aerea Nacional de Honduras", + "nameCountry": "Honduras", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9017, + "callsign": "AIR LINK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LNK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Link Corporation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9018, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LNN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9019, + "callsign": "FASTLINK", + "codeHub": "HUY", + "codeIataAirline": "", + "codeIcaoAirline": "LNQ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linksair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9020, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LNQ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Links Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9021, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LNQ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Varsity Express", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9022, + "callsign": "LINERSERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LNR", + "codeIso2Country": "SR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Liners Air Services", + "nameCountry": "Suriname", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9023, + "callsign": "LANTUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LNR", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania Lineas Aereas Nacionales turisticas (LANTUR)", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9024, + "callsign": "LANSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LNS", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas Nacionales (LANSA)", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9025, + "callsign": "SRI-LION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LNS", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lion Air", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9026, + "callsign": "LONEX", + "codeHub": "EGSG", + "codeIataAirline": "", + "codeIcaoAirline": "LNX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "London Executive Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9027, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LNX", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "London Executive Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9028, + "callsign": "LINZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LNZ", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Litag KG", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9029, + "callsign": "", + "codeHub": "ROB", + "codeIataAirline": "", + "codeIcaoAirline": "LOA", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lone Star Airways", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9030, + "callsign": "LOREKSI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LOA", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sukhumi Airways", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9031, + "callsign": "LONEAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LOA", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lonestar Airways", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9032, + "callsign": "LOCAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LOC", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Locavia 49", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9033, + "callsign": "LOGIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LOD", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Malmoe Air Taxi", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9034, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LOE", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Loeser, Lliftfahritgesellschaft", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9035, + "callsign": "WATERSKI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LOF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Resort Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9036, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LOJ", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lojy Air", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9037, + "callsign": "ALOK AIR", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "LOK", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alok Air", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9038, + "callsign": "LOLA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LOL", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "L.O.S.", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9039, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LOM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sertel (Servicios Telereservacios", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9040, + "callsign": "AVILOND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LON", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avilond Airline", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9041, + "callsign": "LINTON ON OUSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LOP", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linton-On-Ouse FTU", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9042, + "callsign": "", + "codeHub": "GPT", + "codeIataAirline": "", + "codeIcaoAirline": "LOR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lorair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9043, + "callsign": "LEO CHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LOR", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Leo-Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9044, + "callsign": "LOSSIE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LOS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lossiemouth FTU", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9045, + "callsign": "AIR SAINT LOUIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LOU", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Saint Louis", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9046, + "callsign": "LOYDS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LOY", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Loyd's Aviation Group", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9047, + "callsign": "LINEASPAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LPA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pal Aerolineas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9048, + "callsign": "NETSTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LPC", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alpine Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9049, + "callsign": "LEOPARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LPD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UK Royal / H.R.H. Duke of York", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9050, + "callsign": "LEASE-A-PLANE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LPL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lease-A-Plane International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9051, + "callsign": "", + "codeHub": "LJU", + "codeIataAirline": "", + "codeIcaoAirline": "LPS", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9052, + "callsign": "ALPS", + "codeHub": "LJU", + "codeIataAirline": "", + "codeIcaoAirline": "LPS", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alpe Air", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9053, + "callsign": "EUROSTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LPU", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Provence Charter", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9054, + "callsign": "ALPAV", + "codeHub": "INN", + "codeIataAirline": "", + "codeIcaoAirline": "LPV", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Alps Aviation", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9055, + "callsign": "LEQUIOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LQS", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lequios Airlines", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9056, + "callsign": "LITTLE RED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LRA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Little Red Air Service", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9057, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LRA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nor-Alta Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9058, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LRB", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LR Airlines", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9059, + "callsign": "LADY RACINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LRB", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "L R Airlines", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9060, + "callsign": "LAREDO AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LRD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Laredo Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9061, + "callsign": "", + "codeHub": "TBS", + "codeIataAirline": "", + "codeIcaoAirline": "LRE", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lasare Air", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9062, + "callsign": "AERO LASARE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LRE", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lasare Airline", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9063, + "callsign": "SOLAER LAGUNA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LRG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soluciones Aereas de la Laguna", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9064, + "callsign": "SKYLARK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LRK", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyjet Aviation Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9065, + "callsign": "FRENCH LINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LRK", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "L.Air", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9066, + "callsign": "", + "codeHub": "CGK", + "codeIataAirline": "", + "codeIcaoAirline": "LRN", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lorena Air", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9067, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LRN", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LRC - Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9068, + "callsign": "", + "codeHub": "UUBW", + "codeIataAirline": "", + "codeIcaoAirline": "LRO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alrosa-Avia", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9069, + "callsign": "ALROSA", + "codeHub": "VKO", + "codeIataAirline": "", + "codeIcaoAirline": "LRO", + "codeIso2Country": "RU", + "founding": 1992, + "iataPrefixAccounting": "", + "nameAirline": "Alrosa Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9070, + "callsign": "LORRAINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LRR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lorraine Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9071, + "callsign": "LIBERTY JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LRT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Liberty Jet Management", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9072, + "callsign": "AL RIDA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LRW", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Al Rida Airways", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9073, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LSA", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Leader", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9074, + "callsign": "INTERNACIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LSA", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LANSA", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9075, + "callsign": "LENSIBAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LSB", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lensibavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9076, + "callsign": "CEDROS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LSC", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Los Cedros Aviacion", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9077, + "callsign": "", + "codeHub": "SCL", + "codeIataAirline": "", + "codeIcaoAirline": "LSE", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LASSA - Linea de Aeroservicios", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9078, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LSE", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linea de Aeroservicios", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9079, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LSE", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linea se Aeroservicios", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9080, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LSF", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airailes", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9081, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LSH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lott Ship Agency", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9082, + "callsign": "AURELA", + "codeHub": "VNO", + "codeIataAirline": "", + "codeIcaoAirline": "LSK", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aurela", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9083, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LSM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerobusinessservice", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9084, + "callsign": "SILESIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LSN", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silesian Air", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9085, + "callsign": "SERVIANL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LSN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VL Servicios Nacionales", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9086, + "callsign": "LINEAS SOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LSO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Del Sol", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9087, + "callsign": "AIR TONY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LSP", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Spectrum Aviation Incorporated", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9088, + "callsign": "ALSAIR", + "codeHub": "CMR", + "codeIataAirline": "", + "codeIcaoAirline": "LSR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alsace Air Service - Alsair,", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9089, + "callsign": "LESORTEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LST", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lesortec", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9090, + "callsign": "LONG JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LST", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Long-Star", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9091, + "callsign": "", + "codeHub": "ZAG", + "codeIataAirline": "", + "codeIcaoAirline": "LSU", + "codeIso2Country": "HR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Laus Air", + "nameCountry": "Croatia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9092, + "callsign": "LAUS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LSU", + "codeIso2Country": "HR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Laus", + "nameCountry": "Croatia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9093, + "callsign": "ALASOV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LSV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alak", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9094, + "callsign": "SLOVENIAN AIRFORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LSV", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Slovenian Ministry of Defence", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9095, + "callsign": "ATLAS EXEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LSX", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlas Executive Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9096, + "callsign": "LINDSAY AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LSY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lindsay Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9097, + "callsign": "LANTRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LTA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Atlantis", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9098, + "callsign": "SKY BEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LTB", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baltic Express Line", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9099, + "callsign": "CHARTER JETS", + "codeHub": "VNO", + "codeIataAirline": "", + "codeIcaoAirline": "LTC", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chater JETS", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9100, + "callsign": "LATINCARGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LTC", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Latin Carga", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9101, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LTE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Asturias", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9102, + "callsign": "", + "codeHub": "VCP", + "codeIataAirline": "", + "codeIcaoAirline": "LTG", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LATAM Cargo Brasil", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9103, + "callsign": "TAMCARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LTG", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAM Cargo", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9104, + "callsign": "LATGALE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LTG", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Latgales Avio", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9105, + "callsign": "STEALTH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LTH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Stealth Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9106, + "callsign": "LATINO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LTI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis Latinoamericanos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9107, + "callsign": "LATAVIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LTL", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Latvian Airlines", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9108, + "callsign": "LATAMERICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LTM", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Latinoamerican Airline (Latair)", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9109, + "callsign": "LATINAS", + "codeHub": "CCS", + "codeIataAirline": "", + "codeIcaoAirline": "LTN", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Latinas", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9110, + "callsign": "LATPASS", + "codeHub": "RIX", + "codeIataAirline": "", + "codeIcaoAirline": "LTP", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LATPASS Airlines", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9111, + "callsign": "LUFT TRANSPORT", + "codeHub": "TOS", + "codeIataAirline": "", + "codeIcaoAirline": "LTR", + "codeIso2Country": "NO", + "founding": 1971, + "iataPrefixAccounting": "", + "nameAirline": "Lufttransport", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9112, + "callsign": "", + "codeHub": "BKA", + "codeIataAirline": "", + "codeIcaoAirline": "LTS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Specavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 9113, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LTS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Inspections & Systems JSC - Spets", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9114, + "callsign": "LITCOM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LTT", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Baltic Aviation Systems", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9115, + "callsign": "TWENTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LTW", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Luchtvaartmaatschappii Twente", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9116, + "callsign": "LEO TAXI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LTX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Leo Taxi Aereo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9117, + "callsign": "SKYDECK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LTY", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Liberty Air", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9118, + "callsign": "LOTOS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LTZ", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lotos Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9119, + "callsign": "LUSITANIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LUA", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lusitania Airways", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9120, + "callsign": "STEF", + "codeHub": "GVA", + "codeIataAirline": "", + "codeIcaoAirline": "LUC", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Albinati Aeronautics", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9121, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LUE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroclub De Alicante", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9122, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LUG", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "E-Aviation Swiss SAGL", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9123, + "callsign": "LUKOIL", + "codeHub": "SVO", + "codeIataAirline": "", + "codeIcaoAirline": "LUK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lukoil-Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9124, + "callsign": "", + "codeHub": "SVO", + "codeIataAirline": "", + "codeIcaoAirline": "LUK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lukoil Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9125, + "callsign": "LUPENGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LUP", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lupenga Air Charters", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9126, + "callsign": "LATUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LUR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas Latur", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9127, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LUS", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lusitanair - Transportes A�reos Comerciais", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9128, + "callsign": "LOTMORE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LUS", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lotus International Air", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9129, + "callsign": "LUGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LUT", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Luft Cargo", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9130, + "callsign": "AIRSING", + "codeHub": "HKT", + "codeIataAirline": "", + "codeIcaoAirline": "LUV", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Singhara", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9131, + "callsign": "LUX RESCUE", + "codeHub": "LUX", + "codeIataAirline": "", + "codeIcaoAirline": "LUV", + "codeIso2Country": "LU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Luxembourg Air Rescue", + "nameCountry": "Luxembourg", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9132, + "callsign": "FREEBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LUX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lincoln Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9133, + "callsign": "LISBON JET", + "codeHub": "LIS", + "codeIataAirline": "", + "codeIcaoAirline": "LUZ", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Luzair", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9134, + "callsign": "AIR SANTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LVD", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LVD Luftfahrzeug-Vermietungs-Dienst Gesellscgraft", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9135, + "callsign": "SALVI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LVI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Salvi", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9136, + "callsign": "DANIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LVL", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Livian Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9137, + "callsign": "ALIVEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LVN", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aliven", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9138, + "callsign": "LOVO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LVO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lovaux Limited", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9139, + "callsign": "AVIAILSA", + "codeHub": "VNO", + "codeIataAirline": "", + "codeIcaoAirline": "LVR", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviavilsa", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9140, + "callsign": "SIGNIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LVS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Insignia Aviacion", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9141, + "callsign": "TAXIVALENCIANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LVT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LA Valenciana Taxi Aereo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9142, + "callsign": "TRANSACA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LWC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos de Acapulco", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9143, + "callsign": "LUXWING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LWG", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Luxwing", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9144, + "callsign": "CUB DRIVER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LWL", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lowlevel", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9145, + "callsign": "RED LION", + "codeHub": "LUX", + "codeIataAirline": "", + "codeIcaoAirline": "LXA", + "codeIso2Country": "LU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Luxaviation", + "nameCountry": "Luxembourg", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9146, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LXA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Luxaviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9147, + "callsign": "LUXVAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LXC", + "codeIso2Country": "LU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CAE Aviation", + "nameCountry": "Luxembourg", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9148, + "callsign": "LYNX FLIGHT", + "codeHub": "FXE", + "codeIataAirline": "", + "codeIcaoAirline": "LXF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lynx Air International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9149, + "callsign": "LUX AVIATION", + "codeHub": "PAD", + "codeIataAirline": "", + "codeIcaoAirline": "LXG", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Luxaviation Germany", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9150, + "callsign": "FLEXJET", + "codeHub": "DAL", + "codeIataAirline": "", + "codeIcaoAirline": "LXJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flexjet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9151, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LXJ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flexjet", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9152, + "callsign": "LUXLINER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LXL", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Wings", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9153, + "callsign": "", + "codeHub": "ASW", + "codeIataAirline": "", + "codeIcaoAirline": "LXO", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Luxor Air", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9154, + "callsign": "LYNX SERVICIOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LXS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lynx Servicios Aereos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9155, + "callsign": "LIBYANEXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LXX", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Libyan Express for Air Transport", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9156, + "callsign": "LYONAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LYA", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lyon Air", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9157, + "callsign": "LYDDAIR", + "codeHub": "LYX", + "codeIataAirline": "", + "codeIcaoAirline": "LYD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lydd Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9158, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LYD", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LyddAir", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9159, + "callsign": "LITHUANIAN AIRFORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LYF", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lithuanian Air Force Safety Department", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 9160, + "callsign": "HELIGUYANE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LYH", + "codeIso2Country": "GY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yankee Lima Helicopteres", + "nameCountry": "Guyana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9161, + "callsign": "LYNTON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LYN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lynton Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9162, + "callsign": "", + "codeHub": "KUN", + "codeIataAirline": "", + "codeIcaoAirline": "LYT", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Apatas", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9163, + "callsign": "APATAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LYT", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Apatas Air", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9164, + "callsign": "LIBYAN AIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LYW", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Libyan Airways", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9165, + "callsign": "", + "codeHub": "KHI", + "codeIataAirline": "", + "codeIcaoAirline": "LYX", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lynx Aviation (Pakistan)", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9166, + "callsign": "LYNX AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LYX", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lynx Aviation", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9167, + "callsign": "AEROLANZA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LZA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lanza Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9168, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9169, + "callsign": "DOC AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LZP", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Ban", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9170, + "callsign": "LAZUR GEE-BEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LZR", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Lazur", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9171, + "callsign": "BARAKA", + "codeHub": "LPA", + "codeIataAirline": "", + "codeIcaoAirline": "LZT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lanzarote Aerocargo", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9172, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "LZZ", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Biz Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9173, + "callsign": "", + "codeHub": "GSO", + "codeIataAirline": "", + "codeIcaoAirline": "M5F", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mid-Atlantic Freight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9174, + "callsign": "MILLARDAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Millardair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9175, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAD", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "M.A.S.H. Service", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9176, + "callsign": "MAPLE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAD", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maple Air Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9177, + "callsign": "MALI AIREXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAE", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mali Air Luftverkehr Gesellschaft", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9178, + "callsign": "MAERSKCOMMUTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAE", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maersk Commuter", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9179, + "callsign": "MISSI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAF", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mission Aviation Fellowship (MAF)", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9180, + "callsign": "MERID AIR", + "codeHub": "ACC", + "codeIataAirline": "", + "codeIcaoAirline": "MAG", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "667", + "nameAirline": "Meridan Airways", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9181, + "callsign": "AGATA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAG", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Margarita", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9182, + "callsign": "MORAVIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAI", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Moravia", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9183, + "callsign": "ME TACK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAJ", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mitsubishi Aircraft Corporation", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9184, + "callsign": "MAGIC AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Majestic Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9185, + "callsign": "MORINGSTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Morningstar Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9186, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Morningstar Air Express", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9187, + "callsign": "AEROMAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerodromo de La Mancha", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9188, + "callsign": "MANNION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mannion Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9189, + "callsign": "MAYO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mayo Clinic", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9190, + "callsign": "MATAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Matair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9191, + "callsign": "MAPPING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Oceanic & Atmospheric Administration", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9192, + "callsign": "MAC AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAQ", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MAC Aviation", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9193, + "callsign": "MARCH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "March Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9194, + "callsign": "", + "codeHub": "PWM", + "codeIataAirline": "", + "codeIcaoAirline": "MAT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maine Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9195, + "callsign": "MAINE-AV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maine Aviation Corporation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9196, + "callsign": "MAINE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maine Air Transport", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9197, + "callsign": "MINOAN", + "codeHub": "HER", + "codeIataAirline": "", + "codeIcaoAirline": "MAV", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Minoan Air", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9198, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAV", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Marina Aeroservice", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9199, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAV", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Minoan Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9200, + "callsign": "MAVERICK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Chaparral", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9201, + "callsign": "MUSTIQUE", + "codeHub": "SVD", + "codeIataAirline": "", + "codeIcaoAirline": "MAW", + "codeIso2Country": "VC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mustique Airways", + "nameCountry": "Saint Vincent and the Grenadines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9202, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAX", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Max Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9203, + "callsign": "", + "codeHub": "VIE", + "codeIataAirline": "", + "codeIcaoAirline": "MAY", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Majestic Executive Aviation", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9204, + "callsign": "MAYA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MAY", + "codeIso2Country": "BZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maya Airways", + "nameCountry": "Belize", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9205, + "callsign": "AVAG AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MBA", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Automobilvertriebs Aktiengesellschaft", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9206, + "callsign": "", + "codeHub": "LAD", + "codeIataAirline": "", + "codeIcaoAirline": "MBC", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AeroJet (Angola)", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9207, + "callsign": "", + "codeHub": "LAD", + "codeIataAirline": "", + "codeIcaoAirline": "MBC", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AeroJet", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9208, + "callsign": "MARTIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MBE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Martin-Baker", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9209, + "callsign": "MABE FLIGHTS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MBF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mabe Flights", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9210, + "callsign": "CHALGROVE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MBG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zephyr Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9211, + "callsign": "", + "codeHub": "BOI", + "codeIataAirline": "", + "codeIcaoAirline": "MBI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Salmon Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9212, + "callsign": "MOUNTAIN BIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MBI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mountian Bird", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9213, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MBJ", + "codeIso2Country": "MA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tafarayt Jet", + "nameCountry": "Morocco", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9214, + "callsign": "FIRST CITY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MBL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "First City Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9215, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "MBM", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Starjet", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9216, + "callsign": "MOBIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MBO", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mobil Oil", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9217, + "callsign": "BRAZILIAN NAVY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MBR", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brazilian Navy Aviation", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9218, + "callsign": "MBACHI AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MBS", + "codeIso2Country": "MW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mbachi Air/Ground Services", + "nameCountry": "Malawi", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9219, + "callsign": "MANABITAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MBT", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vias Aereas Manabitas", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9220, + "callsign": "MANITOBA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MBT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Province of Manitoba, Air Services Branch", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9221, + "callsign": "", + "codeHub": "KIV", + "codeIataAirline": "", + "codeIcaoAirline": "MBV", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeriantur-M Airlines", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9222, + "callsign": "AEREM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MBV", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeriantur-M", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9223, + "callsign": "ZAMBIANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MBW", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zambia Airways", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9224, + "callsign": "CALSON", + "codeHub": "ARN", + "codeIataAirline": "", + "codeIcaoAirline": "MCA", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MCA Airlines", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9225, + "callsign": "CONTINAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midcontinent Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9226, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCB", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tbilisi State Aviation", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9227, + "callsign": "WESTMID", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Mercia", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9228, + "callsign": "", + "codeHub": "KIV", + "codeIataAirline": "", + "codeIcaoAirline": "MCC", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocom", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9229, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCC", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MCC Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9230, + "callsign": "AIR MED", + "codeHub": "OXF", + "codeIataAirline": "", + "codeIcaoAirline": "MCD", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Med", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9231, + "callsign": "MARSHALL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Marshall Of Cambridge", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9232, + "callsign": "MAC FOTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "M.A.C. Fotografica", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9233, + "callsign": "MEDICOPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCG", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SOS Helikoptern Gotland", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9234, + "callsign": "MACLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "McAlpine Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9235, + "callsign": "MOROCCO-AIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCI", + "codeIso2Country": "MA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Morocco Airways", + "nameCountry": "Morocco", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9236, + "callsign": "MAYACARGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maya Carga Internacional", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9237, + "callsign": "JETMAC", + "codeHub": "AEP", + "codeIataAirline": "", + "codeIcaoAirline": "MCJ", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Macair Jet", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9238, + "callsign": "MCCAULEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "McCauley Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9239, + "callsign": "MEDIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Medical Aviation Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9240, + "callsign": "MAC DAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mac Dan Aviation Corporation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9241, + "callsign": "MARCOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Marcos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9242, + "callsign": "MARCOPOLO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCP", + "codeIso2Country": "AF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Marcopolo Airways", + "nameCountry": "Afghanistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9243, + "callsign": "MONACAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCR", + "codeIso2Country": "MC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Monacair", + "nameCountry": "Monaco", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9244, + "callsign": "MACAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCS", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Macedonian Airlines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9245, + "callsign": "TRANS CORTES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportacion Aerea del Mar de Cortes", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9246, + "callsign": "MTC AVIACION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MTC Aviacion", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9247, + "callsign": "", + "codeHub": "NDJ", + "codeIataAirline": "", + "codeIcaoAirline": "MCW", + "codeIso2Country": "TD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircraft Machinery Works Tchad", + "nameCountry": "Chad", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9248, + "callsign": "MACHINE WORKS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCW", + "codeIso2Country": "CF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Machine Works - Centrafrique (AMW-Centrafrique)", + "nameCountry": "Central African Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9249, + "callsign": "MAURICARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCX", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cargo Express", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9250, + "callsign": "MERCY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCY", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ambulance Air Africa", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9251, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MCZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9252, + "callsign": "MONDEAIR CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Monde Air Charters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9253, + "callsign": "", + "codeHub": "GSO", + "codeIataAirline": "", + "codeIcaoAirline": "MDC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mid-Atlantic Freight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9254, + "callsign": "NIGHT SHIP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Aero And Mid-Atlantic Freight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9255, + "callsign": "AIR MARYLAND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Maryland", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9256, + "callsign": "DONLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDD", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MDA Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9257, + "callsign": "MAURI-TRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDE", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mauritanienne de Transport Aerien", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9258, + "callsign": "MED-FREIGHT", + "codeHub": "ATH", + "codeIataAirline": "", + "codeIcaoAirline": "MDF", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mediterranean Air Freight", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9259, + "callsign": "MED-FREIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDF", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swiftair Hellas", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9260, + "callsign": "", + "codeHub": "MJI", + "codeIataAirline": "", + "codeIcaoAirline": "MDH", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Madina Air", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9261, + "callsign": "MEDOPS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDI", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IAS Medical", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9262, + "callsign": "MADIKWE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDK", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Madikwe Charter", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9263, + "callsign": "AIR DOC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDK", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Medic Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9264, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDM", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Medavia - Mediterranean Aviation", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9265, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDN", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meridian+, NP AGP, LLC", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9266, + "callsign": "MERIDIANA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDN", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Universair", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9267, + "callsign": "VARTY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDO", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Varty Pacific Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9268, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shervbery", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9269, + "callsign": "", + "codeHub": "BBU", + "codeIataAirline": "", + "codeIcaoAirline": "MDP", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Medallion Air", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9270, + "callsign": "AEROPLANOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania Mexicana de Aeroplanos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9271, + "callsign": "", + "codeHub": "AWM", + "codeIataAirline": "", + "codeIcaoAirline": "MDS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "McNeeley Charter Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9272, + "callsign": "MID-SOUTH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "McNeely Charter Serivces", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9273, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "McNeely Charter Service", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9274, + "callsign": "MIDNIGHT", + "codeHub": "OSL", + "codeIataAirline": "", + "codeIcaoAirline": "MDT", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sundt Air", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9275, + "callsign": "AIR MEDITER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Mediterranee Compagnie", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9276, + "callsign": "MEDAIR", + "codeHub": "HLA", + "codeIataAirline": "", + "codeIcaoAirline": "MDX", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Medair Charter", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9277, + "callsign": "MEDAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDX", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerosud Charter", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9278, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDY", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mediterranean Airways", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9279, + "callsign": "MIDANES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MDZ", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mid Airlines", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9280, + "callsign": "", + "codeHub": "BEY", + "codeIataAirline": "", + "codeIcaoAirline": "MED", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Med Airways", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9281, + "callsign": "MEDICAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MED", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ontario Ministry Of Health", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9282, + "callsign": "ELIMEDITERRANEA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MEE", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elimediterranea", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9283, + "callsign": "MEDITERRANEAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MEE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mediterranean Express", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9284, + "callsign": "EMPENNAGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MEF", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Meridian", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9285, + "callsign": "MEGALINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MEG", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mega Airlines", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9286, + "callsign": "MEGAMICRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MEG", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Megamicro", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9287, + "callsign": "GREENMALEV", + "codeHub": "BUD", + "codeIataAirline": "", + "codeIcaoAirline": "MEH", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Malev Express", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9288, + "callsign": "AVALON", + "codeHub": "BIL", + "codeIataAirline": "", + "codeIcaoAirline": "MEI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Merlin Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9289, + "callsign": "", + "codeHub": "SAN", + "codeIataAirline": "", + "codeIcaoAirline": "MEI", + "codeIso2Country": "UM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Merlin Airways", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9290, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MEI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Merlin Airways", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9291, + "callsign": "AVALON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MEI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Merlin Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9292, + "callsign": "", + "codeHub": "BHM", + "codeIataAirline": "", + "codeIcaoAirline": "MEJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airmed International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9293, + "callsign": "MEDJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MEJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Medjet International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9294, + "callsign": "MED-TRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MEK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Med-Trans Of Florida", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9295, + "callsign": "", + "codeHub": "ADJ", + "codeIataAirline": "", + "codeIcaoAirline": "MEL", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meelad Air", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9296, + "callsign": "MINSTREL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MEL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BAe Civil Division Warton", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9297, + "callsign": "", + "codeHub": "MRS", + "codeIataAirline": "", + "codeIcaoAirline": "MEM", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ICAR - International Cargo Airline", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9298, + "callsign": "MEDITAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MEM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mediterranean Air Ambulance", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9299, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MEM", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meridian", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9300, + "callsign": "MERIDIAN CHERRY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MEM", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meridian Ltd", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9301, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MEM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ICAR", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9302, + "callsign": "", + "codeHub": "BAH", + "codeIataAirline": "", + "codeIcaoAirline": "MEN", + "codeIso2Country": "BH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MAE Aircraft Management", + "nameCountry": "Bahrain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9303, + "callsign": "RAHAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MEN", + "codeIso2Country": "BH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mena Aerospace", + "nameCountry": "Bahrain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9304, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MEN", + "codeIso2Country": "BH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mena Aerospace Cargo", + "nameCountry": "Bahrain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9305, + "callsign": "METHOW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MER", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Methow Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9306, + "callsign": "METMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MET", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meteorological Research Flight", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9307, + "callsign": "EAGLE EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MEX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Metro Express 11", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9308, + "callsign": "MELODY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MEY", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Justair Scandinavia", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9309, + "callsign": "SEAHORSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MFA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Martyn Fiddler Associates", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9310, + "callsign": "MOUNTAINHELI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MFB", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mountain Flyers 80", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9311, + "callsign": "EAST WIND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MFC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Moncton Flying Club", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9312, + "callsign": "EAST WIND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MFC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canlink Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9313, + "callsign": "FREIGHT DOG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MFD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Monarch Air Group", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9314, + "callsign": "MCFLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MFL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Mcfly", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9315, + "callsign": "FOREST RANGER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MFP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maine Forest Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9316, + "callsign": "MIDLINE FREIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MFR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midline Air Freight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9317, + "callsign": "MILLER TIME", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MFS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Miller Flying Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9318, + "callsign": "YORKAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MFT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Multiflight", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9319, + "callsign": "MEDIFLY MEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MFY", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Medifly", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9320, + "callsign": "MOFAZ AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MFZ", + "codeIso2Country": "MW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mofaz Air", + "nameCountry": "Malawi", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9321, + "callsign": "MAG AVIACION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MGA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "M G Aviacion", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9322, + "callsign": "MOCKINGBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MGB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cranfield Flight Training", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9323, + "callsign": "", + "codeHub": "TBS", + "codeIataAirline": "", + "codeIcaoAirline": "MGC", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Way", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9324, + "callsign": "MONGOLIA CARGO", + "codeHub": "ULN", + "codeIataAirline": "", + "codeIcaoAirline": "MGC", + "codeIso2Country": "MN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cargo Mongolia", + "nameCountry": "Mongolia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9325, + "callsign": "MAGEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MGC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Magec Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9326, + "callsign": "MAGAERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MGG", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Magadanaeroruz", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9327, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MGG", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "El Magal Aviation", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9328, + "callsign": "MGH GLOBAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MGH", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MGH Global Airlines", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9329, + "callsign": "MARGHI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MGI", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Marghi Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9330, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "MGK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mega Aircompany", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9331, + "callsign": "MEGLA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MGK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mega", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9332, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MGK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Omega Aircompany", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9333, + "callsign": "MARIE GALANTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MGM", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Marie Galante Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9334, + "callsign": "MORGAN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MGN", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Morgan Aviation Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9335, + "callsign": "MANGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MGO", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mango MG Bird SA", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9336, + "callsign": "MAGPIE", + "codeHub": "DAC", + "codeIataAirline": "", + "codeIcaoAirline": "MGP", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arirang Aviation", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9337, + "callsign": "MAGNA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MGR", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Magna Air", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9338, + "callsign": "AEROMAGAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MGS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromagar", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9339, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MGT", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Margate Air Services", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9340, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MGV", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Megido Aviation", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9341, + "callsign": "", + "codeHub": "BKI", + "codeIataAirline": "", + "codeIcaoAirline": "MH1", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MASwings", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9342, + "callsign": "MOUNTAIN HIGH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MHA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mountain High Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9343, + "callsign": "ANGLIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MHA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Anglian Air Taxis", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9344, + "callsign": "AERO JOMACHA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MHC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Jomacha", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9345, + "callsign": "", + "codeHub": "THR", + "codeIataAirline": "", + "codeIcaoAirline": "MHD", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yas Air", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9346, + "callsign": "YAS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MHD", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yas Air Kish", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9347, + "callsign": "AIR MARITIME", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MHF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maritime Helicopters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9348, + "callsign": "HASSIMAIR", + "codeHub": "KAN", + "codeIataAirline": "", + "codeIcaoAirline": "MHL", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meridian Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9349, + "callsign": "MANHATTAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MHN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Manhattan Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9350, + "callsign": "HELICARE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MHQ", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skargardshavets Helikoptertjanst", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9351, + "callsign": "AIR MEMPHIS", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "MHS", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Memphis", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9352, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "MHU", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Memphis (Uganda)", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9353, + "callsign": "MEMPHIS UGANDA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MHU", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Memphis", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9354, + "callsign": "SNOWCAP", + "codeHub": "MUC", + "codeIataAirline": "", + "codeIcaoAirline": "MHV", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MHS Aviation", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9355, + "callsign": "MAURIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MIA", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mauria, Soci�t� Mauritanienne D'aviation", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9356, + "callsign": "MICHOACAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MIC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas de Michoacan", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9357, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MID", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midland Airport Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9358, + "callsign": "MIDCOAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MID", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Waters-Aero Marine", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9359, + "callsign": "AEROPREMIER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MIE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Premier de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9360, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "MIF", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Miras Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9361, + "callsign": "MIRAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MIF", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Miras", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9362, + "callsign": "MIG AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MIG", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Russian Aircraft Corporation - MIG, Federal Unitary Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9363, + "callsign": "MASSYLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MIH", + "codeIso2Country": "NE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Massy Airlines", + "nameCountry": "Niger", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9364, + "callsign": "MEERBLICK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MIK", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meerblick", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9365, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MIL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9366, + "callsign": "MIMINO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MIM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mimino", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9367, + "callsign": "MINSTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MIN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business European Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9368, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MIN", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Minor Aviation", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9369, + "callsign": "MICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MIO", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midas Airlines", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9370, + "callsign": "MIRAMICHI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MIR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Miramichi Air Service", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9371, + "callsign": "AEROMIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MIR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aeroes Mira", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9372, + "callsign": "MIDSTATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MIS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midstate Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9373, + "callsign": "MATCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MIT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Line", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9374, + "callsign": "MIAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MIV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mi-avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9375, + "callsign": "MASIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MIX", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Masisavia", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9376, + "callsign": "MILAZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MIZ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Desarrollo Milaz", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9377, + "callsign": "MAJARA", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "MJA", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Almajara Aviation", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9378, + "callsign": "", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "MJA", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9379, + "callsign": "", + "codeHub": "RTM", + "codeIataAirline": "", + "codeIcaoAirline": "MJB", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Magic Blue Airlines", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9380, + "callsign": "MAGIC BLUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MJB", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Magic Blue", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9381, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MJC", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mandarin Air", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9382, + "callsign": "MAJESTIC JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MJI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Majestic Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9383, + "callsign": "MOLDJET", + "codeHub": "KIV", + "codeIataAirline": "", + "codeIcaoAirline": "MJL", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Line International", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9384, + "callsign": "ELCO ETI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MJM", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ETI 2000", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9385, + "callsign": "MAJAN", + "codeHub": "MCT", + "codeIataAirline": "", + "codeIcaoAirline": "MJN", + "codeIso2Country": "OM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Air Force Of Oman", + "nameCountry": "Oman", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 9386, + "callsign": "", + "codeHub": "SPZA", + "codeIataAirline": "", + "codeIcaoAirline": "MJP", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Majoro", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9387, + "callsign": "AIR MAJORO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MJP", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Majoro", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9388, + "callsign": "MAJOR", + "codeHub": "OWB", + "codeIataAirline": "", + "codeIcaoAirline": "MJR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midamerica Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9389, + "callsign": "MEDICAL JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MJS", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "WWW-Bedarfsluftfahrts", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9390, + "callsign": "", + "codeHub": "MEX", + "codeIataAirline": "", + "codeIcaoAirline": "MJT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VigoJet", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9391, + "callsign": "MEJETS", + "codeHub": "MEX", + "codeIataAirline": "", + "codeIcaoAirline": "MJT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mex-Jet", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9392, + "callsign": "MADJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MJT", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Madjet-Tranportes Aereos", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9393, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MJT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vigo Jet", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9394, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MKC", + "codeIso2Country": "MK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mak-Air", + "nameCountry": "Macedonia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9395, + "callsign": "MATAIRWAYS", + "codeHub": "SKP", + "codeIataAirline": "", + "codeIcaoAirline": "MKD", + "codeIso2Country": "MK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MAT Airways", + "nameCountry": "Macedonia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9396, + "callsign": "AIR MARRAKECH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MKH", + "codeIso2Country": "MA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Marrakech Service", + "nameCountry": "Morocco", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9397, + "callsign": "KILO ICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MKI", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MK Flugfelagið", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9398, + "callsign": "KILO ICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MKI", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mk Flugfielagid EHF", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9399, + "callsign": "AEROKEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MKK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Malaya Aviatsia Dona", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9400, + "callsign": "MCCALL", + "codeHub": "MYL", + "codeIataAirline": "", + "codeIcaoAirline": "MKL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "McCall Air / Salmon Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9401, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MKM", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mediterranean Express", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9402, + "callsign": "GOSHAWK", + "codeHub": "BQH", + "codeIataAirline": "", + "codeIcaoAirline": "MKO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Markoss Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9403, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MKO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Makung Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9404, + "callsign": "ADYGEYA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MKP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Adygeya-Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9405, + "callsign": "MIKISEW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MKS", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pimichikamac Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9406, + "callsign": "LUBER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MKV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Michkov Air Services", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9407, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MKV", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MAK Aviation Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9408, + "callsign": "MONKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MKY", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Monky Aerotaxis", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9409, + "callsign": "MANAF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLB", + "codeIso2Country": "BI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Manaf International Airways", + "nameCountry": "Burundi", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9410, + "callsign": "", + "codeHub": "NLO", + "codeIataAirline": "", + "codeIcaoAirline": "MLC", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Malift Air", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9411, + "callsign": "MALILA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLC", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Malila Airlift", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9412, + "callsign": "MOLDAERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLE", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Moldaeroservice", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9413, + "callsign": "AMAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLF", + "codeIso2Country": "DJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amal Airlines", + "nameCountry": "Djibouti", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9414, + "callsign": "", + "codeHub": "TNR", + "codeIataAirline": "", + "codeIcaoAirline": "MLG", + "codeIso2Country": "MG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Malagasy Airlines", + "nameCountry": "Madagascar", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9415, + "callsign": "MAHALO", + "codeHub": "HNL", + "codeIataAirline": "", + "codeIcaoAirline": "MLH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mahalo Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9416, + "callsign": "DEMAIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLI", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mais Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9417, + "callsign": "NIGERJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLK", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Millennium Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9418, + "callsign": "MALLORCA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLL", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroclub de Mallorca", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9419, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLM", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comlux Malta", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9420, + "callsign": "MILLENNIUM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLM", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Millennium Air Corporation", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9421, + "callsign": "AIR MADELEINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLN", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Madeleine", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9422, + "callsign": "MILLENNIUM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9423, + "callsign": "WIZARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Merlin Air Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9424, + "callsign": "MILENIO", + "codeHub": "MEX", + "codeIataAirline": "", + "codeIcaoAirline": "MLO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Milenio", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9425, + "callsign": "MALAY PACIFIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLP", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asia Pacific Airlines", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9426, + "callsign": "MIDLINER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLR", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midair", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9427, + "callsign": "MALL-AIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mall Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9428, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maleth Aero", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9429, + "callsign": "MOLDTRANSAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLT", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Moldtransavia", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9430, + "callsign": "MARITAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLT", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maritalia", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9431, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLU", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Montlucon Air Service - MAS", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9432, + "callsign": "", + "codeHub": "ATH", + "codeIataAirline": "", + "codeIcaoAirline": "MLW", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meelad Air (Greece)", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9433, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLW", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meelad Air", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9434, + "callsign": "MALAWI EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLX", + "codeIso2Country": "MW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Malawi Express", + "nameCountry": "Malawi", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9435, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLZ", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meteologic", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9436, + "callsign": "MAGLEASE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MLZ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Magadanavialising", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9437, + "callsign": "MONDAIR", + "codeHub": "AGA", + "codeIataAirline": "", + "codeIcaoAirline": "MMA", + "codeIso2Country": "MA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mondair", + "nameCountry": "Morocco", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9438, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MMA", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Metro Manila Airways International", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9439, + "callsign": "AERMARCHE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MMC", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aermarche", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9440, + "callsign": "MAJESTIC AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MME", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mega", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9441, + "callsign": "RUTA MAYA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MMG", + "codeIso2Country": "GT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aereo Ruta Maya", + "nameCountry": "Guatemala", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9442, + "callsign": "NIGHT RIDER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MMH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "McMahon Helicopter Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9443, + "callsign": "MIKROMATIKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MMH", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mikromatika Air Cargo", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9444, + "callsign": "ITALIAN NAVY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MMI", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Marina Militare Italiana", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9445, + "callsign": "MACAUJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MMJ", + "codeIso2Country": "MO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Macau Jet International", + "nameCountry": "Macao", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9446, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MMJ", + "codeIso2Country": "NE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Inter Afrique", + "nameCountry": "Niger", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9447, + "callsign": "", + "codeHub": "ACC", + "codeIataAirline": "", + "codeIcaoAirline": "MMM", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meridian Airways", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9448, + "callsign": "", + "codeHub": "VKO", + "codeIataAirline": "", + "codeIcaoAirline": "MMM", + "codeIso2Country": "RU", + "founding": 1992, + "iataPrefixAccounting": "", + "nameAirline": "Meridian Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9449, + "callsign": "AVIAMERIDIAN", + "codeHub": "VKO", + "codeIataAirline": "", + "codeIcaoAirline": "MMM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meridian Air", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9450, + "callsign": "MINUTEMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MMN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pro Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9451, + "callsign": "AMP-INC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MMP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AMP Incorporated", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9452, + "callsign": "MONAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MMR", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Monair", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9453, + "callsign": "MUSAAD AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MMS", + "codeIso2Country": "KY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saad (A320)", + "nameCountry": "Cayman Islands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9454, + "callsign": "", + "codeHub": "BKO", + "codeIataAirline": "", + "codeIcaoAirline": "MMT", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SAM Intercontinental", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9455, + "callsign": "SAM INTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MMT", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SAM Intercontinental Group", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9456, + "callsign": "", + "codeHub": "LIM", + "codeIataAirline": "", + "codeIcaoAirline": "MMX", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airmax Cargo", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9457, + "callsign": "PERUMAX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MMX", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airmax", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9458, + "callsign": "MARMOT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MMY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IASCO Flight Training", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9459, + "callsign": "MERPATI", + "codeHub": "CGK", + "codeIataAirline": "", + "codeIcaoAirline": "MNA", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Merpati", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9460, + "callsign": "MUNCIE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MNC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "M I T Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9461, + "callsign": "AIR MADINA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MND", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Madina", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9462, + "callsign": "", + "codeHub": "TLC", + "codeIataAirline": "", + "codeIcaoAirline": "MNE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroamanacer", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9463, + "callsign": "AEROAMANECER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MNE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Amanecer", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9464, + "callsign": "RINGWAY", + "codeHub": "MAN", + "codeIataAirline": "", + "codeIcaoAirline": "MNF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AV8 Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 9465, + "callsign": "PENNINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MNF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Man-air.com Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9466, + "callsign": "MAGNITKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MNG", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Magnitogorsk Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9467, + "callsign": "MONARCH AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MNH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Monarch Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9468, + "callsign": "MAINA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MNI", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maina Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9469, + "callsign": "AEROMIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MNI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aermilenio", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9470, + "callsign": "ARCTICA AIR", + "codeHub": "MMK", + "codeIataAirline": "", + "codeIcaoAirline": "MNK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Murmansk Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9471, + "callsign": "MINILINER", + "codeHub": "BGY", + "codeIataAirline": "", + "codeIcaoAirline": "MNL", + "codeIso2Country": "IT", + "founding": 1982, + "iataPrefixAccounting": "", + "nameAirline": "MiniLiner", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9472, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MNL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MiniLiner", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9473, + "callsign": "NINO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MNM", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Adjaria", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9474, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MNN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9475, + "callsign": "MANGINO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MNO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos Mangino", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9476, + "callsign": "MONAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MNR", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Monair Executive", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9477, + "callsign": "TEEMOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MNR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mann Air Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9478, + "callsign": "MONARA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MNR", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Monara Air", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9479, + "callsign": "MANUNGGAL", + "codeHub": "HLP", + "codeIataAirline": "", + "codeIcaoAirline": "MNS", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Manunggal Air Service", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9480, + "callsign": "MINISTIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MNS", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ministic Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9481, + "callsign": "NAVALE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MNV", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maurtanienne Aerienne Et Navale", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9482, + "callsign": "", + "codeHub": "IOM", + "codeIataAirline": "", + "codeIcaoAirline": "MNX", + "codeIso2Country": "IM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Citywing", + "nameCountry": "Isle of Man", + "sizeAirline": 0, + "statusAirline": "active", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 9483, + "callsign": "MOONEY FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MNY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mooney", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9484, + "callsign": "", + "codeHub": "MMK", + "codeIataAirline": "", + "codeIcaoAirline": "MNZ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Murmanskoya", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9485, + "callsign": "MURMAN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MNZ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Murmansk Aircompany", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9486, + "callsign": "MORAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MOA", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Moravia Czech Charter Airline", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9487, + "callsign": "MOANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MOA", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Moana Airlines", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9488, + "callsign": "MONARCH CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MOC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Monacrch Cargo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9489, + "callsign": "MONDEGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MOD", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroclube de Coimbra", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9490, + "callsign": "MOST AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MOE", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mostarez Air", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9491, + "callsign": "MOGILEV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MOG", + "codeIso2Country": "BY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mogilevavia", + "nameCountry": "Belarus", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9492, + "callsign": "MOTH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MOH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tigerfly", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9493, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MOK", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Light Aircraft Association of The Czech Republic", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9494, + "callsign": "BAGDAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MOL", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shah Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9495, + "callsign": "MODERN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MOM", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Modern Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9496, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MOO", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Moonair", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9497, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MOP", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "APA - Aeropublicitaria de Angola", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9498, + "callsign": "MOREFLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MOR", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Morefly", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9499, + "callsign": "", + "codeHub": "ARN", + "codeIataAirline": "", + "codeIcaoAirline": "MOS", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swedish Moose", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9500, + "callsign": "", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "MOS", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Misr Overseas Airways", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9501, + "callsign": "BLACKADDER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MOU", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Anglo American Airmotive", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9502, + "callsign": "MOHAWK AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MOW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mohawk Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9503, + "callsign": "MOZART", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MOZ", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SalzburgJetAviation", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9504, + "callsign": "MOZART", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MOZ", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amadeus Air Luftfahrtgesellschaft", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9505, + "callsign": "MID PAC", + "codeHub": "HNL", + "codeIataAirline": "", + "codeIcaoAirline": "MPA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mid-Pacific Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9506, + "callsign": "MOUNTAIN PACIFIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MPC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mountain Pacific Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9507, + "callsign": "COMMON SKY", + "codeHub": "VIE", + "codeIataAirline": "", + "codeIcaoAirline": "MPF", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Common Sky", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9508, + "callsign": "EXECUTIVE WALTZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MPF", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MAP Executive Flight Service", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9509, + "callsign": "MOSPHIL", + "codeHub": "ZAM", + "codeIataAirline": "", + "codeIcaoAirline": "MPI", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mosphil Aero", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9510, + "callsign": "MAPJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MPJ", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MAP - Excutive Flightservice", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9511, + "callsign": "MAPJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MPJ", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MAP Management and Planning", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9512, + "callsign": "METRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MPL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Metropolitan Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9513, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MPL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Master Planner", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9514, + "callsign": "AMPARO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MPO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos Amparo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9515, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MPR", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "869", + "nameAirline": "Empire Aviation Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9516, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MPS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviajet", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9517, + "callsign": "SPECIAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MPS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Metropoliatn Police Air Support Unit", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9518, + "callsign": "", + "codeHub": "EVN", + "codeIataAirline": "", + "codeIcaoAirline": "MPT", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Miapet Avia", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9519, + "callsign": "AEROMEXPRESS", + "codeHub": "MEX", + "codeIataAirline": "", + "codeIcaoAirline": "MPX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AeroMexico Cargo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9520, + "callsign": "MUSKETEER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MQT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air ITM", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9521, + "callsign": "MARTEX", + "codeHub": "ADS", + "codeIataAirline": "", + "codeIcaoAirline": "MRA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Martinaire", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9522, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Martinaire", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9523, + "callsign": "TOMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRB", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Centre Pankh Kazakhstan", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9524, + "callsign": "AIRMARC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airmarc Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9525, + "callsign": "RESCUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Medical Air Rescue", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9526, + "callsign": "MARTRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Martin Companies", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9527, + "callsign": "MERIDIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meridian Air Cargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9528, + "callsign": "", + "codeHub": "ERS", + "codeIataAirline": "", + "codeIcaoAirline": "MRE", + "codeIso2Country": "NA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NCA - Namibia Commercial Aviation", + "nameCountry": "Namibia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9529, + "callsign": "MED RESCUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRE", + "codeIso2Country": "NA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Namibia Commercial Aviation", + "nameCountry": "Namibia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9530, + "callsign": "MAUR-FRET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRF", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mauritanienne Air Fret", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9531, + "callsign": "MANAG'AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRG", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Manag'Air", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9532, + "callsign": "MARHAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Marham FTU", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9533, + "callsign": "MORITANI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Moritani", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9534, + "callsign": "AEROMORELOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromorelos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9535, + "callsign": "MARITIME", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRM", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocharter", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9536, + "callsign": "MURMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Murmansk Aviation Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9537, + "callsign": "MARIANNE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRN", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Missions Gouvernementales Francaises", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9538, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRN", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Marne", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9539, + "callsign": "MORRISON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Morrison Flying Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9540, + "callsign": "ABAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRP", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ABAS", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9541, + "callsign": "MIRAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRV", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Miravia", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9542, + "callsign": "SPEEDMARK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hermen's Markair Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9543, + "callsign": "AIR MARINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRY", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Marine", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9544, + "callsign": "MURRAY CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Murray Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9545, + "callsign": "MARS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MRZ", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Medical Air Rescue Services (MARS)", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9546, + "callsign": "MID-SOUTH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mid-South Commuter Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9547, + "callsign": "LONG", + "codeHub": "KIV", + "codeIataAirline": "", + "codeIcaoAirline": "MSB", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Stork", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9548, + "callsign": "MOOSEHEAD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Coast Aircraft Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9549, + "callsign": "AIRMAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSE", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MAS Havacilik Ve Merkezi Pazarlama Tic.", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9550, + "callsign": "", + "codeHub": "SZX", + "codeIataAirline": "", + "codeIcaoAirline": "MSF", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Man Sang International General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9551, + "callsign": "MINSHENG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSF", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Minsheng International Jet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9552, + "callsign": "MAXESA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSF", + "codeIso2Country": "SV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Max Sea Food", + "nameCountry": "El Salvador", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9553, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSF", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Minsheng International Jet", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9554, + "callsign": "AVIAMOST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSG", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviamost", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9555, + "callsign": "MARSHALAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "U S Marshals Service, U.S. Department Of Justice", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9556, + "callsign": "MAGNUM AIR", + "codeHub": "MNL", + "codeIataAirline": "", + "codeIcaoAirline": "MSJ", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyjet", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9557, + "callsign": "AIR SPORT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSK", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Sport", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9558, + "callsign": "MARSLANDAIR", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "MSL", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Marsland Aviation", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9559, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircompany Mals", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9560, + "callsign": "AEROMAS EXPRESS", + "codeHub": "MVD", + "codeIataAirline": "", + "codeIcaoAirline": "MSM", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromas", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9561, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromas", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9562, + "callsign": "NARA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSN", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ABB", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9563, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Milenium Air Servicios Aereos Integrados", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9564, + "callsign": "MISIONAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSN", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Missionair", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9565, + "callsign": "SEGURIDAD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSP", + "codeIso2Country": "CR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicio de Vigilancia Aerea del Ministerio de Seguridad Pub.", + "nameCountry": "Costa Rica", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9566, + "callsign": "", + "codeHub": "BVB", + "codeIataAirline": "", + "codeIcaoAirline": "MSQ", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meta Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9567, + "callsign": "WASATCH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Morris Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9568, + "callsign": "", + "codeHub": "VCP", + "codeIataAirline": "", + "codeIcaoAirline": "MST", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Master Top Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9569, + "callsign": "AMISTAD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MST", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroamistad", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9570, + "callsign": "MASTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MST", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MTA Cargo", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9571, + "callsign": "AERAFKAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero-Kamov, Affiliated Company", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9572, + "callsign": "MOLDWEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSW", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South-West-Avia", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9573, + "callsign": "EGYPTAIR CARGO", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "MSX", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Egyptair Cargo", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9574, + "callsign": "MASSEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MSY", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Massey University School Of Aviation", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9575, + "callsign": "GAK AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gak/Mitchell Aero", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9576, + "callsign": "AEROMETROPOLIS", + "codeHub": "TLC", + "codeIataAirline": "", + "codeIcaoAirline": "MTB", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis Metropolitanos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9577, + "callsign": "AIR MINERVA", + "codeHub": "TRS", + "codeIataAirline": "", + "codeIcaoAirline": "MTC", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Minerva Airlines", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9578, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTD", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Macknight Airlines", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9579, + "callsign": "", + "codeHub": "SCL", + "codeIataAirline": "", + "codeIcaoAirline": "MTE", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromet", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9580, + "callsign": "AEROMET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTE", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromet Linea Aerea", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9581, + "callsign": "INTERJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTF", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interjet", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9582, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos M.T.T.", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9583, + "callsign": "RESEARCH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Massachusetts Institute Of Technology", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9584, + "callsign": "MARTINEZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arturo Rodriguez Martinez", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9585, + "callsign": "", + "codeHub": "HKG", + "codeIataAirline": "", + "codeIcaoAirline": "MTJ", + "codeIso2Country": "HK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Metrojet (Hong Kong)", + "nameCountry": "Hong Kong", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9586, + "callsign": "METROJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTJ", + "codeIso2Country": "HK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Metrojet", + "nameCountry": "Hong Kong", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9587, + "callsign": "AIRMETACK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTK", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Metack", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9588, + "callsign": "", + "codeHub": "RIX", + "codeIataAirline": "", + "codeIcaoAirline": "MTL", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RAF Avia", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9589, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RAF-Avia", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9590, + "callsign": "AVITRANS", + "codeHub": "MUC", + "codeIataAirline": "", + "codeIcaoAirline": "MTM", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MTM Aviation", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9591, + "callsign": "", + "codeHub": "ISO", + "codeIataAirline": "", + "codeIcaoAirline": "MTN", + "codeIso2Country": "UM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mountain Air Cargo", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9592, + "callsign": "MOUNTAIN", + "codeHub": "ISO", + "codeIataAirline": "", + "codeIcaoAirline": "MTN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mountain Air Cargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9593, + "callsign": "MANITOULIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTO", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Manitoulin Air Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9594, + "callsign": "METROCOPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Island Helicopters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9595, + "callsign": "METRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Metroflight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9596, + "callsign": "MANTRUST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTS", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mantrust Asahi Airways", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9597, + "callsign": "MEDSERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Rescue Air Ambulance", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9598, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTT", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orion", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9599, + "callsign": "BLUE MAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTT", + "codeIso2Country": "BA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mastair", + "nameCountry": "Bosnia and Herzegovina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9600, + "callsign": "MOUNTAIN VALLEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mountain Valley Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9601, + "callsign": "MAURITANIA AIRWAYS", + "codeHub": "NKC", + "codeIataAirline": "", + "codeIcaoAirline": "MTW", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mauritania Airways", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9602, + "callsign": "MULTITAXI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Multi Taxi", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9603, + "callsign": "MONTY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MTY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Montgomery", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9604, + "callsign": "MUGGAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MUG", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Muk Air", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9605, + "callsign": "MAUI", + "codeHub": "HNL", + "codeIataAirline": "", + "codeIcaoAirline": "MUI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Executive Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9606, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MUI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Air", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9607, + "callsign": "AEROMUNDO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MUN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromundo Ejecutivo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9608, + "callsign": "MURI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MUR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolinea Muri", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9609, + "callsign": "IGAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MUT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Azimut", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9610, + "callsign": "MULTIAERONAUTICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MUT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Multiservicios Aeronauticos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9611, + "callsign": "VALAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MVA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mississippi Valley Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9612, + "callsign": "MOLDOVA-STATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MVG", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Moldova", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9613, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MVI", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Metro Business Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9614, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MVI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Harrods Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9615, + "callsign": "MAVRIK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MVK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopter Training & Hire", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9616, + "callsign": "PEGASUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MVM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cargo America", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9617, + "callsign": "MARVIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MVN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Marvin", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9618, + "callsign": "AIR SENOK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MVS", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Senok Aviation", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9619, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MVY", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vim-Aviaservice", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9620, + "callsign": "MIDWEST AIRLINK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MWL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midwest Air Link", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9621, + "callsign": "MODERNAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MWM", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Modern Transporte Aereo De Carga", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9622, + "callsign": "MAX NIGER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MWN", + "codeIso2Country": "NE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Max Air", + "nameCountry": "Niger", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9623, + "callsign": "RASLAN", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "MWR", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Raslan Air Service", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9624, + "callsign": "MONGOLIAN AIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MWS", + "codeIso2Country": "MN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mongolian Airways", + "nameCountry": "Mongolia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9625, + "callsign": "MALTA WINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MWS", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Malta Wings", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9626, + "callsign": "MIDWEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MWT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midwest Aviation Division", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9627, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MWW", + "codeIso2Country": "CM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midwest Wings", + "nameCountry": "Cameroon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9628, + "callsign": "MAURITANIENNE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MWY", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mauritanienne Airways", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9629, + "callsign": "MEX BLUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MXB", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mex Blue", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9630, + "callsign": "", + "codeHub": "MPM", + "codeIataAirline": "", + "codeIcaoAirline": "MXE", + "codeIso2Country": "MZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Moçambique Expresso", + "nameCountry": "Mozambique", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9631, + "callsign": "", + "codeHub": "MPM", + "codeIataAirline": "", + "codeIcaoAirline": "MXE", + "codeIso2Country": "MZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MEX - Mocambique Expresso", + "nameCountry": "Mozambique", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9632, + "callsign": "MAXFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MXF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maximum Flight Advantages", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9633, + "callsign": "MAXIG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MXG", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Terrex Group", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9634, + "callsign": "", + "codeHub": "AUH", + "codeIataAirline": "", + "codeIcaoAirline": "MXM", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maximus Airlines", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9635, + "callsign": "MAXLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MXM", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maximus Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9636, + "callsign": "CARGO MAX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MXM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "87", + "nameAirline": "Maximus Air", + "nameCountry": "uae", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9637, + "callsign": "MEXAERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MXO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxi Mexicano", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9638, + "callsign": "BEECHNUT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MXP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "May Air Xpress", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9639, + "callsign": "MEXIQUENSES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MXQ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos Mexiquenses", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9640, + "callsign": "MERRIX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MXR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Merrix Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9641, + "callsign": "MAXIN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MXR", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maxin Air", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9642, + "callsign": "TRANSMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MXT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mexico Transportes Aereos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9643, + "callsign": "CARGO MAX", + "codeHub": "AUH", + "codeIataAirline": "", + "codeIcaoAirline": "MXU", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maximus Air Cargo", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9644, + "callsign": "", + "codeHub": "AUH", + "codeIataAirline": "", + "codeIcaoAirline": "MXU", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maximus Air", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9645, + "callsign": "MERCHANT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MXX", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Merchant Express Aviation", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9646, + "callsign": "MYJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MXY", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S.T.C. Aviation", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9647, + "callsign": "MYFLUG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MYA", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Myflug H.F.", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9648, + "callsign": "DELMAYAB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MYB", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Del Mayab", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9649, + "callsign": "MY FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MYF", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Myflight", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9650, + "callsign": "MYLIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MYK", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Beijing Mykylin General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9651, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MYK", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Multi Air Services (MAS)", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9652, + "callsign": "AEROMYL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MYL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromyl", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9653, + "callsign": "MAYORAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MYO", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dominguez Toledo (Grupo Mayoral)", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9654, + "callsign": "MIRIADAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MYR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Miriadair", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9655, + "callsign": "AERO YAQUI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MYS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Yaqui Mayo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9656, + "callsign": "LINEAS MAYAB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MYV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas AereasdDel Mayab", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9657, + "callsign": "TALLINN CAT", + "codeHub": "TLL", + "codeIataAirline": "", + "codeIcaoAirline": "MYX", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Smartlynx Airlines Estonia", + "nameCountry": "Estonia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9658, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MYX", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SmartLynx Airlines Estonia", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9659, + "callsign": "AIR ZORY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MZA", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Zory", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9660, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9661, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MZE", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zenith Aviation (Malta)", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9662, + "callsign": "MONTES AZULES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MZL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovias Montes Azules", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9663, + "callsign": "MAHFOOZ", + "codeHub": "JED", + "codeIataAirline": "", + "codeIcaoAirline": "MZS", + "codeIso2Country": "SA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mahfooz Aviation (Gambia)", + "nameCountry": "Saudi Arabia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9664, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MZS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mahfooz Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9665, + "callsign": "ZHONG TAI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "MZT", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "First Mandarin Business Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9666, + "callsign": "NOAA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Oceanic And Atmospheric Administration", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9667, + "callsign": "SEULAWAH", + "codeHub": "BTJ", + "codeIataAirline": "", + "codeIcaoAirline": "NAD", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Seulawah Nad Air", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9668, + "callsign": "NATIONS EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Miami Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9669, + "callsign": "", + "codeHub": "LBV", + "codeIataAirline": "", + "codeIcaoAirline": "NAG", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Regionale Transport", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9670, + "callsign": "STARDUST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAG", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northern Air Charter", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9671, + "callsign": "NAHANNI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAH", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nahanni Air Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9672, + "callsign": "", + "codeHub": "LDPV", + "codeIataAirline": "", + "codeIcaoAirline": "NAI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Adria Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9673, + "callsign": "NORTH-ADRIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAI", + "codeIso2Country": "HR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Adria Aviation", + "nameCountry": "Croatia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9674, + "callsign": "", + "codeHub": "CHS", + "codeIataAirline": "", + "codeIcaoAirline": "NAJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North American Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9675, + "callsign": "JET GROUP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North American Jet Charter Group", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9676, + "callsign": "ENACSCHOOL", + "codeHub": "TLS", + "codeIataAirline": "", + "codeIcaoAirline": "NAK", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ENAC", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 9677, + "callsign": "JANARK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "New Kazakstan Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9678, + "callsign": "NORTHWAY", + "codeHub": "CYAV", + "codeIataAirline": "", + "codeIcaoAirline": "NAL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northway Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9679, + "callsign": "NAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAM", + "codeIso2Country": "NA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Government Air Transport Services", + "nameCountry": "Namibia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 9680, + "callsign": "NAPIER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Napier Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9681, + "callsign": "NIGHT AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Continental", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9682, + "callsign": "NICA AIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAR", + "codeIso2Country": "NI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nicaragua Airways", + "nameCountry": "Nicaragua", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9683, + "callsign": "NASAIRWAYS", + "codeHub": "ASM", + "codeIataAirline": "", + "codeIcaoAirline": "NAS", + "codeIso2Country": "ER", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nasair Eritrea", + "nameCountry": "Eritrea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9684, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northeast Aviation Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9685, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NASA", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9686, + "callsign": "MASS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Atlantic Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9687, + "callsign": "DANAUS", + "codeHub": "QRO", + "codeIataAirline": "", + "codeIcaoAirline": "NAU", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Danaus Lineas Aereas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9688, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAU", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Danaus Airlines", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9689, + "callsign": "ANTANIK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAU", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Antanik-Air", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9690, + "callsign": "NAV DISPATCH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAV", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nav Flight Planning", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9691, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAW", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nass LLC", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9692, + "callsign": "SCANBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAX", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air-X", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9693, + "callsign": "NAZAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NAZ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Del Nazas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9694, + "callsign": "", + "codeHub": "CBB", + "codeIataAirline": "", + "codeIcaoAirline": "NBA", + "codeIso2Country": "BO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northeast Bolivian Airways", + "nameCountry": "Bolivia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9695, + "callsign": "NEBA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NBA", + "codeIso2Country": "BO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North East Bolivian Airways", + "nameCountry": "Bolivia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9696, + "callsign": "", + "codeHub": "OVB", + "codeIataAirline": "", + "codeIcaoAirline": "NBE", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Novosibirsk Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9697, + "callsign": "NAKAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NBE", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Novosibirsk Aviaenterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9698, + "callsign": "AL-AIR", + "codeHub": "ABV", + "codeIataAirline": "", + "codeIcaoAirline": "NBK", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Albarka Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9699, + "callsign": "NOBIL AIR", + "codeHub": "KIV", + "codeIataAirline": "", + "codeIcaoAirline": "NBL", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Classica Air", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9700, + "callsign": "TEESSAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NBN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North British Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9701, + "callsign": "NORBROOK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NBR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Haughey Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9702, + "callsign": "NIMBUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NBS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nimbus Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9703, + "callsign": "NORTH CARIBOU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Caribou Flying Service", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9704, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Cariboo Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9705, + "callsign": "NORTH COAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Coast Air Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9706, + "callsign": "TOP HAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northcoast Executive Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9707, + "callsign": "COUNTY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norfolk County Flight College", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9708, + "callsign": "NETHERLANDS COASTGUARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCG", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nederlandse Kustwacht/Netherlands Coastguard", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 9709, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCH", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chanchangi Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9710, + "callsign": "NORTH CENTRAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Central", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9711, + "callsign": "", + "codeHub": "LAD", + "codeIataAirline": "", + "codeIcaoAirline": "NCL", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guicango", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9712, + "callsign": "ANCARGO AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCL", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ACA-Ancargo Air Sociedade de Transporte de Carga", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9713, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Commuter Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9714, + "callsign": "COMMUTERBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Commuter Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9715, + "callsign": "NICON AIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCN", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nicon Airways", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9716, + "callsign": "NAVCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NAVCO", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9717, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCO", + "codeIso2Country": "CG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Natalco Airlines", + "nameCountry": "Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9718, + "callsign": "NATALCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCO", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Natalco Air Lines", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9719, + "callsign": "", + "codeHub": "ILR", + "codeIataAirline": "", + "codeIcaoAirline": "NCP", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Capital Airlines (Nigeria)", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9720, + "callsign": "COMMUTER CANADA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCS", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Simpson Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9721, + "callsign": "", + "codeHub": "GIG", + "codeIataAirline": "", + "codeIcaoAirline": "NCT", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nacional", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9722, + "callsign": "NATA TRANSPORTES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCT", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nacional Transportes Aereos", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9723, + "callsign": "HERMES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCY", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nancy Air Transport Executive", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9724, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NCZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9725, + "callsign": "NORTHERN DAKOTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NDA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northern Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9726, + "callsign": "NAMIBIAN AIRFORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NDF", + "codeIso2Country": "NA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Namibian Defence Force", + "nameCountry": "Namibia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9727, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NDI", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "KS Nordic Air", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9728, + "callsign": "NADYM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NDM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nadym Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9729, + "callsign": "", + "codeHub": "LIM", + "codeIataAirline": "", + "codeIcaoAirline": "NDN", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos Cielos Andinos", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9730, + "callsign": "ANDINAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NDN", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Andinas", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9731, + "callsign": "ANDESMAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NDR", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Andesmar Lineas Aereas", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9732, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NDS", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Normandie Air Services", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9733, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NDS", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nordstress", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9734, + "callsign": "ND AEROTAXIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NDT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ND Aerotaxis", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9735, + "callsign": "SIOUX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NDU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "University of North Dakota", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9736, + "callsign": "NORDEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NDX", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bac Aviation", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9737, + "callsign": "NEBRASKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NEB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dept. Of Aeronautics, State Of Nebraska", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9738, + "callsign": "NORTHEAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NEE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northeast Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9739, + "callsign": "NORTHEAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NEE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northeast Express Regional Airlines (Northwest Airlink)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9740, + "callsign": "", + "codeHub": "LLA", + "codeIataAirline": "", + "codeIcaoAirline": "NEF", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Barents Air Link", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9741, + "callsign": "NORDEX", + "codeHub": "NYO", + "codeIataAirline": "", + "codeIcaoAirline": "NEF", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nord-Flyg", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9742, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NEF", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Barents AirLink", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9743, + "callsign": "AGUAS NEGRAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NEG", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linea Aerea de Fung. Aguas Negras", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9744, + "callsign": "NET BUSINESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NEJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Netjets Business Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9745, + "callsign": "AEROLAREDO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NEL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Servicios de Nuevo Laredo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9746, + "callsign": "NORTHEAST SWAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NEN", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North-East Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9747, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NEO", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronautica del Principado", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9748, + "callsign": "WARISAN", + "codeHub": "KUL", + "codeIataAirline": "", + "codeIcaoAirline": "NEP", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Neptune Air", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9749, + "callsign": "NEUQUINOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NEQ", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos Neuguinos Sociedad Del Estado (T.A.N.S.E.)", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9750, + "callsign": "NEWAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NER", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Newark", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9751, + "callsign": "NETWORK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NET", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Network Aviation Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9752, + "callsign": "NEWPIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NEW", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hawarden BAE", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9753, + "callsign": "MEADOW FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NEW", + "codeIso2Country": "NA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northeaster Aviation Corporation", + "nameCountry": "Namibia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9754, + "callsign": "NEW CLIPPER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NEW", + "codeIso2Country": "CY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NCA Executive Express", + "nameCountry": "Cyprus", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9755, + "callsign": "NEATEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NEX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northern Executive Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9756, + "callsign": "", + "codeHub": "FJR", + "codeIataAirline": "", + "codeIcaoAirline": "NEY", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northeast Airlines (UAE)", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9757, + "callsign": "NORTHJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NEY", + "codeIso2Country": "SZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North East Airlines", + "nameCountry": "Swaziland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9758, + "callsign": "ENGAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NEZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "New England Air Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9759, + "callsign": "", + "codeHub": "OLA", + "codeIataAirline": "", + "codeIcaoAirline": "NFA", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Norway", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 9760, + "callsign": "VOYAGER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NFA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Florida Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9761, + "callsign": "NORTH ATLANTIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NFC", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Atlantic Cargo", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9762, + "callsign": "NORDIC BLUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NFE", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nordicflite", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9763, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NFF", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircraft Support and Services", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9764, + "callsign": "NIGHTFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NFG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nightflight", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9765, + "callsign": "GREAT LAKES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NFL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northaire Freight Lines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9766, + "callsign": "", + "codeHub": "DKR", + "codeIataAirline": "", + "codeIcaoAirline": "NFS", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Afrique Cargo Service Senegal", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9767, + "callsign": "", + "codeHub": "NFG", + "codeIataAirline": "", + "codeIcaoAirline": "NFT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nefteyugansk United Airline Transportation Company", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9768, + "callsign": "", + "codeHub": "NFG", + "codeIataAirline": "", + "codeIcaoAirline": "NFT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UTair Helicopter Services", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9769, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NFT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nefteyugansk Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9770, + "callsign": "NEFTEAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NFT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nefteyugansk Aviation Division", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9771, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NFX", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Navfix", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9772, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NGC", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Angoservice, Lda.", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9773, + "callsign": "ANGEL FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NGF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Charity Network", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9774, + "callsign": "ANGEL FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NGF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Angel Flight America", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9775, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NGF", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Angel Flight America", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9776, + "callsign": "AIR GROUP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NGG", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Trans NG Group", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9777, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "NGI", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nigerian Global Aviation", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9778, + "callsign": "AIR GLOBAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NGI", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nigerian Global", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9779, + "callsign": "", + "codeHub": "GOJ", + "codeIataAirline": "", + "codeIcaoAirline": "NGL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nizhny Novgorod Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9780, + "callsign": "", + "codeHub": "KAN", + "codeIataAirline": "", + "codeIcaoAirline": "NGL", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mangal Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9781, + "callsign": "NIZHNOVAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NGL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nizhegorodsky Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9782, + "callsign": "AIR ANGOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NGO", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air-Angol Sociedad Aeronautica", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9783, + "callsign": "NIGERIAN AIR FORCE", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "NGR", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nigerian Air Force", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 9784, + "callsign": "GENAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NGS", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "General Air Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9785, + "callsign": "NAGESA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NGS", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nagesa, Compania Aerea", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9786, + "callsign": "ANGOAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NGV", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Angoavia", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9787, + "callsign": "AIR GLOBAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NGX", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nigerian Global", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9788, + "callsign": "AIR NOVE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NHA", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Nove", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9789, + "callsign": "SHUTTLEFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NHA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nantucket Shuttle", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9790, + "callsign": "NORTHERN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NHC", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northern Helicopter", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9791, + "callsign": "", + "codeHub": "POA", + "codeIataAirline": "", + "codeIcaoAirline": "NHG", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Brava Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9792, + "callsign": "", + "codeHub": "OKC", + "codeIataAirline": "", + "codeIcaoAirline": "NHK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Federal Aviation Administration - FAA", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 9793, + "callsign": "NIGHTHAWK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NHK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Federal Aviation Administration", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9794, + "callsign": "NORTHUMBRIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NHL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northumbria Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9795, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NHN", + "codeIso2Country": "MN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mongolyn Alt Mak", + "nameCountry": "Mongolia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9796, + "callsign": "NUEVO HORIZONTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NHR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nuevo Morizonte Internacional", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9797, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NHS", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helisys Japan", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9798, + "callsign": "NEWHEIGHTS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NHT", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "New Heights 291", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9799, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NHV", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NHV Aviation", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9800, + "callsign": "EVO", + "codeHub": "OST", + "codeIataAirline": "", + "codeIcaoAirline": "NHX", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NHV - Noordzee Helikopters Vlaanderen", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9801, + "callsign": "NADA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NHZ", + "codeIso2Country": "TD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nada Air Service", + "nameCountry": "Chad", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9802, + "callsign": "NORDAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NIA", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nordavia", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9803, + "callsign": "ILLINOIS COMMUTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NIC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northern Illinois Commuter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9804, + "callsign": "AERONI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NID", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroni", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9805, + "callsign": "AERONIETO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NIE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroejecutiva Nieto", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9806, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NIH", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nippon Airship Corporation", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9807, + "callsign": "NIIS-AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NII", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ATP NIIS, State Aircompany", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9808, + "callsign": "NIK AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NIK", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Niko Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9809, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NIL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9810, + "callsign": "NIMJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NIM", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airnimbus", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9811, + "callsign": "", + "codeHub": "CGK", + "codeIataAirline": "", + "codeIcaoAirline": "NIN", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nurman Avia", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9812, + "callsign": "NURVINDO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NIN", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nurman Avia Indopura", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9813, + "callsign": "NORSEMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NIR", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norsk Flytjeneste", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9814, + "callsign": "", + "codeHub": "MGA", + "codeIataAirline": "", + "codeIcaoAirline": "NIS", + "codeIso2Country": "NI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "La Costena", + "nameCountry": "Nicaragua", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9815, + "callsign": "NICA", + "codeHub": "MGA", + "codeIataAirline": "", + "codeIcaoAirline": "NIS", + "codeIso2Country": "NI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nicaraguenses de Aviacion (NICA)", + "nameCountry": "Nicaragua", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9816, + "callsign": "NIGHTTRAIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NIT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Midwest Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9817, + "callsign": "NIUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NIU", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coral Air", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9818, + "callsign": "SHIN NIHON", + "codeHub": "KOJ", + "codeIataAirline": "", + "codeIcaoAirline": "NJA", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "New Japan Aviation", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9819, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NJA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Air Cargo Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9820, + "callsign": "NASHVILLE JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NJC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nashville Jet Charters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9821, + "callsign": "", + "codeHub": "LIS", + "codeIataAirline": "", + "codeIcaoAirline": "NJE", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NetJets Transportes Aereos", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9822, + "callsign": "FRACTION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NJE", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Netjets", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9823, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NJE", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NetJets Europe", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9824, + "callsign": "SUNJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NJF", + "codeIso2Country": "SA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Netjets Middle East", + "nameCountry": "Saudi Arabia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9825, + "callsign": "NORJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NJR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norjet", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9826, + "callsign": "", + "codeHub": "CMH", + "codeIataAirline": "", + "codeIcaoAirline": "NJT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NetJets Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9827, + "callsign": "NOVAJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NJT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Novajet", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9828, + "callsign": "NETJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NJT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Jet International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9829, + "callsign": "ANKA CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NKA", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Anka Aviation Cargo", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9830, + "callsign": "SUN EAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NKE", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Napkelet Airlines", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9831, + "callsign": "HELINOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NKH", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norsk Helikopterservice", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9832, + "callsign": "", + "codeHub": "DXB", + "codeIataAirline": "", + "codeIcaoAirline": "NKL", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nakheel Aviation", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9833, + "callsign": "NAKHEEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NKL", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Istithmar World Aviation", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9834, + "callsign": "ABAKAN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NKP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Abakan Air", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9835, + "callsign": "AIR NIKOLAEV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NKV", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nikolaev-Air, Airline of Special Purpose", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9836, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NKY", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromonky", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9837, + "callsign": "NOVOKUZNETSK", + "codeHub": "NOZ", + "codeIataAirline": "", + "codeIcaoAirline": "NKZ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerokuzbass", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9838, + "callsign": "NEILTOWN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NLA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Neiltown Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9839, + "callsign": "NELAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NLC", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nelair Charter", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9840, + "callsign": "NOVEMBER JULIETT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NLD", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Namakwaland Lugdiens", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9841, + "callsign": "NELLIE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NLE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FAA William J. Hughes Technical Center Shuttle", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9842, + "callsign": "SILVER STREAK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NLE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9843, + "callsign": "NELLIE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NLE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FAA - WJH Technical Center Air Shuttle Program", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9844, + "callsign": "NORTHERN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NLE", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northern Air Services", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9845, + "callsign": "NORTHERN LIFE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NLF", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Westair Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9846, + "callsign": "NELCARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NLG", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nel Cargo", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9847, + "callsign": "NORTH LINK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NLI", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northern Air Charter", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9848, + "callsign": "ELAVIA", + "codeHub": "NAL", + "codeIataAirline": "", + "codeIcaoAirline": "NLK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elbrus-Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9849, + "callsign": "", + "codeHub": "NLK", + "codeIataAirline": "", + "codeIcaoAirline": "NLK", + "codeIso2Country": "NF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norfolk Air", + "nameCountry": "Norfolk Island", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9850, + "callsign": "NORTHAFRICAN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NLL", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northafrican Air Transport", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9851, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NLM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "No Limits Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9852, + "callsign": "NORAV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NLP", + "codeIso2Country": "LA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northern Aviation", + "nameCountry": "Laos", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9853, + "callsign": "PANDER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NLS", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nationale Luchtvaartschool", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9854, + "callsign": "NALAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NLT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Newfoundland Labrador Air Transport", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9855, + "callsign": "NILE WINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NLW", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nile Wings Aviation Services", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9856, + "callsign": "NOMAD AIR", + "codeHub": "WDH", + "codeIataAirline": "", + "codeIcaoAirline": "NMD", + "codeIso2Country": "NA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bay Air Aviation", + "nameCountry": "Namibia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9857, + "callsign": "", + "codeHub": "BWA", + "codeIataAirline": "", + "codeIcaoAirline": "NME", + "codeIso2Country": "NP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Namaste Nepalese Air", + "nameCountry": "Nepal", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9858, + "callsign": "NAMASTE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NME", + "codeIso2Country": "NP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Namaste Air", + "nameCountry": "Nepal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9859, + "callsign": "", + "codeHub": "BJL", + "codeIataAirline": "", + "codeIcaoAirline": "NML", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gambia New Millenium Air", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9860, + "callsign": "NEWMILL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NML", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gambia New Millenniun Air", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9861, + "callsign": "E-MED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NMR", + "codeIso2Country": "NA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Namibia Rescue Services", + "nameCountry": "Namibia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9862, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9863, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9864, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9865, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NND", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9866, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNE", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9867, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNF", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9868, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9869, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNH", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9870, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9871, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNJ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9872, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNK", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9873, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9874, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9875, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9876, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9877, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNP", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9878, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNQ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9879, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9880, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9881, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9882, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNU", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9883, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNV", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9884, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNW", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9885, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNX", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9886, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNY", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9887, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NNZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9888, + "callsign": "NORONTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NOA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norontair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9889, + "callsign": "NORSCRAFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NOC", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ascor Flyservice", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9890, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NOC", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norcopter", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9891, + "callsign": "ADJARA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NOD", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Adjara", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9892, + "callsign": "FONNA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NOF", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fonnafly", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9893, + "callsign": "NORTHOLT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NOH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "32 (TR) Squadron", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9894, + "callsign": "NOVAJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NOJ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Novajet", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9895, + "callsign": "NAT AIRLINE", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "NOL", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Overseas Airlines Company", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9896, + "callsign": "MADON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NOM", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nomad Airways", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9897, + "callsign": "NOMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NOM", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Noman", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9898, + "callsign": "MIDNIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NOO", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nor Aviation", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9899, + "callsign": "NOVAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NOP", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Novair - Aviacao Geral", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9900, + "callsign": "NORVING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NOR", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norving", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9901, + "callsign": "NORSKE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NOR", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norsk Helikopter", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9902, + "callsign": "NORSPEED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NOS", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norway Airlines Charter", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9903, + "callsign": "COSTA NORTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NOT", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linea Aerea Costa Norte", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9904, + "callsign": "NORWEGIAN", + "codeHub": "OSL", + "codeIataAirline": "", + "codeIcaoAirline": "NOW", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Norwegian Air Force", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 9905, + "callsign": "NORTH EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NOX", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Express", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9906, + "callsign": "NOY AVIATION", + "codeHub": "TLV", + "codeIataAirline": "", + "codeIcaoAirline": "NOY", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Noy Aviation", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9907, + "callsign": "NORPAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NPC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Western Air Couriers", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9908, + "callsign": "", + "codeHub": "OVB", + "codeIataAirline": "", + "codeIcaoAirline": "NPO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NAPO-Aviatrans", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9909, + "callsign": "NOVSIB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NPO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Novosibirsk Aviation Production Association", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9910, + "callsign": "", + "codeHub": "LED", + "codeIataAirline": "", + "codeIcaoAirline": "NPP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NPP MIR Aviakompania", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9911, + "callsign": "MIR SCIENTIFIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NPP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MIR Scientific Industrial Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9912, + "callsign": "AIR NAPIER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NPR", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Napier", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9913, + "callsign": "", + "codeHub": "CVT", + "codeIataAirline": "", + "codeIcaoAirline": "NPT", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Airlines (UK)", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9914, + "callsign": "", + "codeHub": "CVT", + "codeIataAirline": "", + "codeIcaoAirline": "NPT", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West Atlantic (UK)", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9915, + "callsign": "", + "codeHub": "MMX", + "codeIataAirline": "", + "codeIcaoAirline": "NPT", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West Atlantic", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9916, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NPT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9917, + "callsign": "NEWPORT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NPT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Aviation Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9918, + "callsign": "NORTHEAST EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NPX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northeast Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9919, + "callsign": "NITRA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NRA", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nitra Air", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9920, + "callsign": "SANTI AIRLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NRA", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Santi Airlines", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9921, + "callsign": "AIRNOAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NRA", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Noar Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9922, + "callsign": "NORTH SEA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NRC", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Sea Airways", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9923, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NRC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Sea Airways", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9924, + "callsign": "NORD AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NRD", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nord Air", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9925, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NRD", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia Group Nord", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9926, + "callsign": "AVIONES ARE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NRE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviones Are", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9927, + "callsign": "ENERGY", + "codeHub": "ABQ", + "codeIataAirline": "", + "codeIcaoAirline": "NRG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ross Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 9928, + "callsign": "", + "codeHub": "LBV", + "codeIataAirline": "", + "codeIcaoAirline": "NRG", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nationale Regionale Transport", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9929, + "callsign": "", + "codeHub": "PRY", + "codeIataAirline": "", + "codeIcaoAirline": "NRK", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Naturelink Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9930, + "callsign": "NETHERLANDS NAVY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NRN", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Netherlands Navy", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9931, + "callsign": "AEROMASTER", + "codeHub": "VKO", + "codeIataAirline": "", + "codeIcaoAirline": "NRO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Rent", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9932, + "callsign": "", + "codeHub": "BZY", + "codeIataAirline": "", + "codeIcaoAirline": "NRP", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronord-Group", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 9933, + "callsign": "AERONORD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NRP", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronord-Grup", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9934, + "callsign": "NATUREAIR", + "codeHub": "SYQ", + "codeIataAirline": "", + "codeIcaoAirline": "NRR", + "codeIso2Country": "CR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nature Air", + "nameCountry": "Costa Rica", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9935, + "callsign": "NORTH SLOPE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NRS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Richfield Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9936, + "callsign": "NORESTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NRT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norestair", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9937, + "callsign": "HUMMEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NRW", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polizeifliegerstaffel Nordrhein-Westfalen", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9938, + "callsign": "NORSE AIR", + "codeHub": "HLA", + "codeIataAirline": "", + "codeIcaoAirline": "NRX", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norse Air Charter", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9939, + "callsign": "MONARREZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NRZ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Monarrez", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9940, + "callsign": "NILE SAFARIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NSA", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nile Safaris Aviation", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9941, + "callsign": "N", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NSB", + "codeIso2Country": "BJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nord-Sud Benin", + "nameCountry": "Benin", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9942, + "callsign": "TRANS-SOCIETE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NSC", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soci�t� de Transport Aerien de Mauritanie", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9943, + "callsign": "NORTON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NSF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northamptonshire School Of Flying", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9944, + "callsign": "NORTH-SHORE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NSH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DB Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9945, + "callsign": "NORSCOTTISH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NSH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Scottish Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9946, + "callsign": "NORTHERN SKIES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NSI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northern Skies Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9947, + "callsign": "NANSHAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NSJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nanshan Jet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9948, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NSJ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nanshan Jet", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9949, + "callsign": "INTERSALONIKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NSK", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Intersalonika", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9950, + "callsign": "NERICAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NSL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Neric", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9951, + "callsign": "THUNDERCLOUD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NSM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Jet Corporation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9952, + "callsign": "NARPAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NSP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Novosibirsk Aircraft Repair Plant", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9953, + "callsign": "ALL STAR", + "codeHub": "BKK", + "codeIataAirline": "", + "codeIcaoAirline": "NSR", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nine Star Airways", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9954, + "callsign": "", + "codeHub": "HLP", + "codeIataAirline": "", + "codeIcaoAirline": "NSR", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Air Charter (Indonesia)", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9955, + "callsign": "NASAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NSR", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Air Charter", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9956, + "callsign": "SUN AIRLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NSR", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Airlines", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9957, + "callsign": "NORTHSTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NSS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northstar Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9958, + "callsign": "AVINORESTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NST", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviacion Ejecutiva Del Noroeste", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9959, + "callsign": "NEWSOUTH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NSW", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ansett Airlines of New South Wales", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9960, + "callsign": "QUNYING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NSY", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shandong Nanshan International Flight", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9961, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NT1", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canarias Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9962, + "callsign": "", + "codeHub": "RAI", + "codeIataAirline": "", + "codeIcaoAirline": "NTB", + "codeIso2Country": "CV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Binter CV", + "nameCountry": "Cape Verde", + "sizeAirline": 0, + "statusAirline": "start_up", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9963, + "callsign": "MORABEZA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTB", + "codeIso2Country": "CV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Binter Cabo Verde", + "nameCountry": "Cape Verde", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9964, + "callsign": "SERVINORTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTB", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos del Notre", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9965, + "callsign": "", + "codeHub": "EAU", + "codeIataAirline": "", + "codeIcaoAirline": "NTC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heartland Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 9966, + "callsign": "NIGHT CHASE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gibson Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9967, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Norte", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9968, + "callsign": "INTERMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interaire", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9969, + "callsign": "NETFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTF", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Piper OK", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9970, + "callsign": "NETFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTF", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "OK Business Aircraft", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9971, + "callsign": "INTEGRALES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Integrales de Aviacion", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9972, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTH", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hokkaido Air System", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9973, + "callsign": "NATCA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Air Traffic Controllers Association (NATCA)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9974, + "callsign": "TUCKERNUCK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ocean Wings Commuter Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9975, + "callsign": "NORTHAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North American Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9976, + "callsign": "", + "codeHub": "HLA", + "codeIataAirline": "", + "codeIcaoAirline": "NTN", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NAC Charter", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9977, + "callsign": "NATCHAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTN", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Airlines", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9978, + "callsign": "CENTROAERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Centro", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9979, + "callsign": "NISTRANSAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTP", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nistransair", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9980, + "callsign": "NITRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TNT International Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9981, + "callsign": "NITE STAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cirrus Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9982, + "callsign": "INTER-TROPIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTT", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter Tropic Airlines", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9983, + "callsign": "CENTURION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTU", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Century Aviation", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9984, + "callsign": "INTER-IVOIRE", + "codeHub": "ABJ", + "codeIataAirline": "", + "codeIcaoAirline": "NTV", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Inter Ivoire", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 9985, + "callsign": "NORTAX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northern Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9986, + "callsign": "NORTAX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NTX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northern Jet Management", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9987, + "callsign": "VALLETTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NUB", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nomad Aviation (Europe)", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9988, + "callsign": "NANUCK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NUK", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Strait Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9989, + "callsign": "SERVICIOS NUEVOLEON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NUL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicios de Nuevo Leon", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9990, + "callsign": "BULLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NUM", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nomad Aviation", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9991, + "callsign": "NUNSAI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NUN", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nunasi-Central Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9992, + "callsign": "AVIA NUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NUR", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia-Nur", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9993, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NUR", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nawrs Air", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9994, + "callsign": "ENJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NUS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northern Illinois Flight Center", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9995, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NVA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroclub de Albacete", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9996, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NVA", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nile Valley Aviation Company", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9997, + "callsign": "NORDVIND", + "codeHub": "VNO", + "codeIataAirline": "", + "codeIcaoAirline": "NVD", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JSC Avion Express", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 9998, + "callsign": "SADKO AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NVG", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Novgorod Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 9999, + "callsign": "", + "codeHub": "DME", + "codeIataAirline": "", + "codeIcaoAirline": "NVI", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avial", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10000, + "callsign": "NEW AVIAL", + "codeHub": "DME", + "codeIataAirline": "", + "codeIcaoAirline": "NVI", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avial NV", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10001, + "callsign": "NOUVINTER", + "codeHub": "TUN", + "codeIataAirline": "", + "codeIcaoAirline": "NVJ", + "codeIso2Country": "TN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nouvelair International", + "nameCountry": "Tunisia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10002, + "callsign": "NOUVINTER", + "codeHub": "TUN", + "codeIataAirline": "", + "codeIcaoAirline": "NVJ", + "codeIso2Country": "TN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly International Airways", + "nameCountry": "Tunisia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10003, + "callsign": "", + "codeHub": "NBC", + "codeIataAirline": "", + "codeIcaoAirline": "NVK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nizhnevartovskavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10004, + "callsign": "VARTOVSKAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NVK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nizhnevartovsk Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10005, + "callsign": "", + "codeHub": "EVN", + "codeIataAirline": "", + "codeIcaoAirline": "NVL", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Navigator Airlines", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10006, + "callsign": "NAVCAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NVL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hunting Aviation Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10007, + "callsign": "NAVIERA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NVM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Naviera Mexicana", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10008, + "callsign": "ENVUELO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NVO", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Envuelo", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10009, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NVP", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Navegacao Aerea de Portugal, NAV, EP", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10010, + "callsign": "NATIVE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NVT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Native American Air Ambulance", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10011, + "callsign": "NAVY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NVY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Navy", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10012, + "callsign": "", + "codeHub": "NIM", + "codeIataAirline": "", + "codeIcaoAirline": "NWA", + "codeIso2Country": "NE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Niger Airways", + "nameCountry": "Niger", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10013, + "callsign": "NEWFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NWC", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "New ACS", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10014, + "callsign": "NORTHWEST SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NWD", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northwest Air Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10015, + "callsign": "NEW WORLD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NWD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "New World Jet Corporation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10016, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NWE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northwest Aero Associates", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10017, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NWF", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "New Air", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10018, + "callsign": "SECOND CITY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NWF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northwest Flyers", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10019, + "callsign": "NORWING", + "codeHub": "NTB", + "codeIataAirline": "", + "codeIcaoAirline": "NWG", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airwing AS", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10020, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NWG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AirWing", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10021, + "callsign": "", + "codeHub": "PER", + "codeIataAirline": "", + "codeIcaoAirline": "NWK", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Network Aviation", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10022, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NWK", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Network Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10023, + "callsign": "NORTHWINDS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NWN", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northwinds Northern", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10024, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NWO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northwood Headquarters (RAF)", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10025, + "callsign": "", + "codeHub": "CBL", + "codeIataAirline": "", + "codeIcaoAirline": "NWT", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comeravia", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10026, + "callsign": "HALANT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NWW", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Halant International", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10027, + "callsign": "FLAG SHIP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NWX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Northwest Airlink", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10028, + "callsign": "NOW FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NWX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Now Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10029, + "callsign": "NEXTFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NXF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nextflight Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10030, + "callsign": "NEXTON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NXN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nexton", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10031, + "callsign": "NEXUS AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NXS", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nexus Aviation", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10032, + "callsign": "NATIONAL FREIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NXT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10033, + "callsign": "NANYAH", + "codeHub": "SDV", + "codeIataAirline": "", + "codeIcaoAirline": "NYA", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nanyah Aviation", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10034, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NYA", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Noy Avia", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10035, + "callsign": "BELGIAN NAVY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NYB", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Force Navale Belge", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10036, + "callsign": "NEW YORK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NYH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "New York Helicopter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10037, + "callsign": "NILE", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "NYL", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mid Airlines", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10038, + "callsign": "", + "codeHub": "LLW", + "codeIataAirline": "", + "codeIcaoAirline": "NYS", + "codeIso2Country": "MW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ulendo Airlink", + "nameCountry": "Malawi", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10039, + "callsign": "NYASA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NYS", + "codeIso2Country": "MW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nyasa Express", + "nameCountry": "Malawi", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10040, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NYS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ulendo Airlink", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10041, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NZ3", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vincent Aviation Ltd.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10042, + "callsign": "NAYZAK AIR", + "codeHub": "MJI", + "codeIataAirline": "", + "codeIcaoAirline": "NZA", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nayzak Air Transport", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10043, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10044, + "callsign": "ZENITH AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NZE", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zenith Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10045, + "callsign": "", + "codeHub": "UUBW", + "codeIataAirline": "", + "codeIcaoAirline": "NZP", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alliance Avia", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10046, + "callsign": "ORBITA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NZP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ATC Alliance Avia Group", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10047, + "callsign": "NURIK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "NZR", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yanzar", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10048, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OAA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oxley Aviation", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10049, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OAB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Owners Abroad Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10050, + "callsign": "ORIENTAL AIR", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "OAC", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oriental Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10051, + "callsign": "ORSCOM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OAD", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orscom Tourist Installations Company", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10052, + "callsign": "AUSTRAIN AMBULANCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OAF", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Austrian Air Ambulance", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10053, + "callsign": "", + "codeHub": "CHR", + "codeIataAirline": "", + "codeIcaoAirline": "OAN", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerospace One", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10054, + "callsign": "", + "codeHub": "ARH", + "codeIataAirline": "", + "codeIcaoAirline": "OAO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Second Arkhangelsk Aviation Division", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10055, + "callsign": "COAPA", + "codeHub": "TLC", + "codeIataAirline": "", + "codeIcaoAirline": "OAP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coapa Air", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10056, + "callsign": "BOSS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OAR", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grupo One Air Aviacion", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10057, + "callsign": "TRANSOCEAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OAT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sogervair - Transoceanic Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10058, + "callsign": "ORAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OAU", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oriol Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10059, + "callsign": "OMNI", + "codeHub": "LIS", + "codeIataAirline": "", + "codeIcaoAirline": "OAV", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Omni - Aviacao E Tecnologia", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,private" + }, + { + "ageFleet": 0.0, + "airlineId": 10060, + "callsign": "ARABELLA", + "codeHub": "ZRH", + "codeIataAirline": "", + "codeIcaoAirline": "OAW", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Odette Airways", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10061, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OAX", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Operational Aviation Services", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10062, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OAZ", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Odessa Aircraft Plant", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10063, + "callsign": "AEROBANANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OBA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerobanana", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10064, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OBC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Olympic Broadcasting Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10065, + "callsign": "", + "codeHub": "OST", + "codeIataAirline": "", + "codeIcaoAirline": "OBI", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amed Air", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10066, + "callsign": "AMEDAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OBI", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amedair Nig.", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10067, + "callsign": "OBJETIVO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OBJ", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Comunicacion Global Objetivo", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10068, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "OBK", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amako Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10069, + "callsign": "AMAKO AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OBK", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Amako Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10070, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OBM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviaobshchemash", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10071, + "callsign": "OBSHEMASH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OBM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviaobshemash", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10072, + "callsign": "", + "codeHub": "OST", + "codeIataAirline": "", + "codeIcaoAirline": "OCC", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Occidental Airlines", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10073, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OCC", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Occidental Airlines", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10074, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OCC", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "German Forces Operations Control", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10075, + "callsign": "HELIOCEAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OCE", + "codeIso2Country": "NC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicocean", + "nameCountry": "New Caledonia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10076, + "callsign": "EXPLORER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OCF", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ocean Airlines", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10077, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "OCL", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Overnight Cargo Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10078, + "callsign": "OVERNIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OCL", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Overnight Cargo (Nigeria)", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10079, + "callsign": "OVERNIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OCL", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Over-night Cargo", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10080, + "callsign": "OCEANAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OCN", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oceanair - Transportes Aereos Regionals", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10081, + "callsign": "AIR COLLEGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OCO", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ostend Air College", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10082, + "callsign": "OCEAN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OCR", + "codeIso2Country": "MV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ocean Air PVT", + "nameCountry": "Maldives", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10083, + "callsign": "", + "codeHub": "MAN", + "codeIataAirline": "", + "codeIcaoAirline": "OCS", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ocean Sky", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10084, + "callsign": "OCEAN SKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OCS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ocean Sky Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10085, + "callsign": "OCTAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OCT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Octavia Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10086, + "callsign": "OCCIDENTAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OCT", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Occidental Airlines (Liberia)", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10087, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OCZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10088, + "callsign": "", + "codeHub": "ODS", + "codeIataAirline": "", + "codeIcaoAirline": "ODA", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Black Sea Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10089, + "callsign": "SERVAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ODB", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Service", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10090, + "callsign": "ODINN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ODI", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jonsson, H. Air Taxi", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10091, + "callsign": "JETAFRICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ODM", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan African Airways", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10092, + "callsign": "QUADRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ODR", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quadrotour Aero, Aircompany", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10093, + "callsign": "ODYSSEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ODY", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coval Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10094, + "callsign": "ORION CHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OED", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orion Air Charter", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10095, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OES", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Omega-Express Service", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10096, + "callsign": "ART AUSTRIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OES", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Art Aviation Flugbetriebs", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10097, + "callsign": "OFAVI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OFA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helitaxi Ofavi", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10098, + "callsign": "CHALLENGE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OFF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Challenge International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10099, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OFK", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "OFEK", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10100, + "callsign": "OPEN FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OFL", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Open Flight", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10101, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OFM", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oasis Flight Malta", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10102, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OFS", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Me", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10103, + "callsign": "AEROSOF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OFY", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Soffly", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10104, + "callsign": "OASIS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OGA", + "codeIso2Country": "NE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oasis Air", + "nameCountry": "Niger", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10105, + "callsign": "AEROGISA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OGI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerogisa", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10106, + "callsign": "", + "codeHub": "BGF", + "codeIataAirline": "", + "codeIcaoAirline": "OGJ", + "codeIso2Country": "CF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bako Air", + "nameCountry": "Central African Republic", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10107, + "callsign": "BAKO AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OGJ", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bako Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10108, + "callsign": "BAKO AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OGJ", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bakoji Airlines Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10109, + "callsign": "AIR ODON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OHA", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Odon", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10110, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OHA", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "O.H. Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10111, + "callsign": "OHIO-CHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OHC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Select", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10112, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "OHS", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Odengene Air Shuttle Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10113, + "callsign": "ODENGENE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OHS", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "OAS Helicopters", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10114, + "callsign": "SLOVAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OIR", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Slov Air", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10115, + "callsign": "ORIONX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OIX", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orion-X", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10116, + "callsign": "PEARL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OJA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oriental Pearl Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10117, + "callsign": "OCCITANIA", + "codeHub": "LBG", + "codeIataAirline": "", + "codeIcaoAirline": "OJF", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Occitania Jet Fleet", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10118, + "callsign": "OHJOH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OJO", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "OneJetOne Airways", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10119, + "callsign": "ORYSTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OJT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oryx Jet", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10120, + "callsign": "OHJAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OJY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Florida Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10121, + "callsign": "THUNDER WINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OKC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Private Jets", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10122, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OKC", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CZ Airlines", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10123, + "callsign": "OKADA AIR", + "codeHub": "BNI", + "codeIataAirline": "", + "codeIcaoAirline": "OKJ", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Okada Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10124, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OKJ", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Akada Air Service", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10125, + "callsign": "OKLAHOMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OKL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oklahoma Department of Public Safety, Troop (O)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10126, + "callsign": "SOKO AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OKT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soko Aviation", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10127, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OKW", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ok-Trans", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10128, + "callsign": "AIR ORENDA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OLD", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Beijing Orenda Tribe General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10129, + "callsign": "OPERADORA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OLE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Operadora de Lineas Ejecutivas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10130, + "callsign": "MINMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OLL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Operadora Llaminmex", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10131, + "callsign": "SOLO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OLO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soloflight", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10132, + "callsign": "COLAEREOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OLR", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Colaereos", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10133, + "callsign": "OLTRA", + "codeHub": "BRE", + "codeIataAirline": "", + "codeIcaoAirline": "OLT", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "OLT Express Germany", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10134, + "callsign": "OLIVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OLV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airstar", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10135, + "callsign": "OLVE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OLV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Olve", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10136, + "callsign": "OLIMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OLX", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Olimex", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10137, + "callsign": "ONTARIO METRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OMA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ontario Metro Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10138, + "callsign": "OMNIBLU", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "OMB", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Omniblu", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10139, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OME", + "codeIso2Country": "HN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Omega Air", + "nameCountry": "Honduras", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10140, + "callsign": "OMEGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OMG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromega", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10141, + "callsign": "MANBRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OML", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Organizacoes Mambra", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10142, + "callsign": "MAJAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OMN", + "codeIso2Country": "OM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sultan of Oman Air Force", + "nameCountry": "Oman", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 10143, + "callsign": "ORMINE", + "codeHub": "BGF", + "codeIataAirline": "", + "codeIcaoAirline": "OMR", + "codeIso2Country": "CF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Minair", + "nameCountry": "Central African Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10144, + "callsign": "OMSK", + "codeHub": "OMS", + "codeIataAirline": "", + "codeIcaoAirline": "OMS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Omsk Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10145, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OMT", + "codeIso2Country": "HN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Castillo Mourra", + "nameCountry": "Honduras", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10146, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OMT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CM Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10147, + "callsign": "CONDOMETT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OND", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Condomett", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10148, + "callsign": "SONNIG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ONG", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sonnig", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10149, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ONN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10150, + "callsign": "NORAERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ONO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronor", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10151, + "callsign": "EDER", + "codeHub": "MJI", + "codeIataAirline": "", + "codeIcaoAirline": "ONR", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air One Nine", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10152, + "callsign": "AIR DREAMS", + "codeHub": "SCL", + "codeIataAirline": "", + "codeIcaoAirline": "ONS", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "One Airlines", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10153, + "callsign": "ONTARIO GOVERNMENT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ONT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Government of Ontario", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 10154, + "callsign": "", + "codeHub": "ARN", + "codeIataAirline": "", + "codeIcaoAirline": "OOE", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Ops", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10155, + "callsign": "AIR OPS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OOE", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Operations of Europe", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10156, + "callsign": "OOTBAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OOT", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Out of the Blue Air Safaris", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10157, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OPA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Opal Air", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10158, + "callsign": "OPTIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OPC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Krystel Air Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10159, + "callsign": "PONTOISAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OPE", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soci�t� 3 S Aviation (Aerope)", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10160, + "callsign": "OPERA JET", + "codeHub": "BTS", + "codeIataAirline": "", + "codeIcaoAirline": "OPJ", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Opera Jet", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10161, + "callsign": "AIR OPALE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OPL", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cote D'opale", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10162, + "callsign": "OPTIMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OPM", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fireblade Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10163, + "callsign": "OPENAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OPN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "K&R Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10164, + "callsign": "AIR SKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OPN", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Open Sky", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10165, + "callsign": "OPTIONS", + "codeHub": "BGM", + "codeIataAirline": "", + "codeIcaoAirline": "OPT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight options", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10166, + "callsign": "OPTIONS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OPT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Wings", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10167, + "callsign": "OPTICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OPT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Edgley Aircraft Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10168, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OPT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Options", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10169, + "callsign": "LONG ISLAND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Long Island Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10170, + "callsign": "CORDIALE", + "codeHub": "MAN", + "codeIataAirline": "", + "codeIcaoAirline": "ORC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cordial", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10171, + "callsign": "ORDONEZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cap. P.A. Hernando R. Ordonez Gutierrez", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10172, + "callsign": "", + "codeHub": "TLV", + "codeIataAirline": "", + "codeIcaoAirline": "ORE", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orange Aviation", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10173, + "callsign": "REKOYA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORE", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Greendale Aviation Company", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10174, + "callsign": "ORIEGAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORG", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oriental Airlines", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10175, + "callsign": "", + "codeHub": "QSR", + "codeIataAirline": "", + "codeIcaoAirline": "ORI", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VolaSalerno", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 10176, + "callsign": "", + "codeHub": "SIN", + "codeIataAirline": "", + "codeIcaoAirline": "ORI", + "codeIso2Country": "SG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orion Air (Singapore)", + "nameCountry": "Singapore", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10177, + "callsign": "", + "codeHub": "VLC", + "codeIataAirline": "", + "codeIcaoAirline": "ORI", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "OrionAir (Spain)", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10178, + "callsign": "ORION AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORI", + "codeIso2Country": "SC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orion Air", + "nameCountry": "Seychelles", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10179, + "callsign": "RED GLOBE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORI", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orionair", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10180, + "callsign": "ORANGE SIERRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORJ", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orange Air", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10181, + "callsign": "ORANGECARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORJ", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orangecargo", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10182, + "callsign": "ORCA TAXI", + "codeHub": "SSH", + "codeIataAirline": "", + "codeIcaoAirline": "ORK", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orca Air", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10183, + "callsign": "", + "codeHub": "YVR", + "codeIataAirline": "", + "codeIcaoAirline": "ORK", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orca Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10184, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORK", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orca Airways", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10185, + "callsign": "ORKNEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Orkney", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10186, + "callsign": "ON AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "On Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10187, + "callsign": "ORPRISE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orel State Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10188, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orel Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10189, + "callsign": "ORIENT LINER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORN", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orient Airways", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10190, + "callsign": "CAPRI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORO", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "C N Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10191, + "callsign": "CAPRI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORO", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Clipper Jet", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10192, + "callsign": "CORPSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocorp", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10193, + "callsign": "TURISTICA AURORA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Operadora Turistica Aurora", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10194, + "callsign": "AVIATION SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORS", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Action Air", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10195, + "callsign": "AIR ORIENT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Orient", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10196, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORW", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orwex", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10197, + "callsign": "", + "codeHub": "IST", + "codeIataAirline": "", + "codeIcaoAirline": "ORX", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orex - Orbit Express", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10198, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORX", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oryx Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10199, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORX", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orex Orbit Express Airlines", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10200, + "callsign": "", + "codeHub": "ZAZ", + "codeIataAirline": "", + "codeIcaoAirline": "ORZ", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zorex Air Transport", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10201, + "callsign": "ZOREX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ORZ", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zorex", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10202, + "callsign": "ROSTRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OSA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Astra", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10203, + "callsign": "", + "codeHub": "MGQ", + "codeIataAirline": "", + "codeIcaoAirline": "OSB", + "codeIso2Country": "SO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Osab Air", + "nameCountry": "Somalia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10204, + "callsign": "OSOB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OSB", + "codeIso2Country": "SO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Osob Airlines", + "nameCountry": "Somalia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10205, + "callsign": "SECDEF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OSD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Airborne Operations Center, U.S. Strategic Command", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10206, + "callsign": "", + "codeHub": "OSS", + "codeIataAirline": "", + "codeIcaoAirline": "OSH", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Osh Avia", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10207, + "callsign": "AEROSI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OSI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerosi", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10208, + "callsign": "OSCARJET", + "codeHub": "KIV", + "codeIataAirline": "", + "codeIcaoAirline": "OSJ", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oscar Jet", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10209, + "callsign": "AEROSAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OSN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerosan", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10210, + "callsign": "AEROSORNO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OSO", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Artidoro Leal Cauntes (Aerosorno)", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10211, + "callsign": "NOTICIOSOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OSS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Noticiosos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10212, + "callsign": "OSTERMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OST", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ostermans Aero", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10213, + "callsign": "ALANIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OST", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alania, Leasing Airline", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10214, + "callsign": "ALANIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OST", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airline Alania", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10215, + "callsign": "SCARLET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OSU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ohio State University Flight Education Division", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10216, + "callsign": "", + "codeHub": "OGZ", + "codeIataAirline": "", + "codeIcaoAirline": "OSV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vladikavkaz Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10217, + "callsign": "IRAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OSV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vladikavkaz State Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10218, + "callsign": "BEVO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OSW", + "codeIso2Country": "SZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetafrica Swaziland", + "nameCountry": "Swaziland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10219, + "callsign": "", + "codeHub": "CKL", + "codeIataAirline": "", + "codeIcaoAirline": "OSY", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yuri A. Gagarin Cosmonaut Training Center", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 10220, + "callsign": "OPEN SKIES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OSY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Open Skies Consultative Commission (OSCC)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10221, + "callsign": "OUTLAW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OTA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Aviators", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10222, + "callsign": "ORGANIZACION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OTA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Organizacion de Transportes Aereos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10223, + "callsign": "TRANSPORTE CARGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OTC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero-Transportes de Carga", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10224, + "callsign": "OCTANE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OTE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BAe Military Division Warton", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 10225, + "callsign": "ON TRACK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OTK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "On-Track Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10226, + "callsign": "SOUTHLINE", + "codeHub": "ODS", + "codeIataAirline": "", + "codeIcaoAirline": "OTL", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10227, + "callsign": "ZEDTIME", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OTM", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Onetime Airlines Zambia", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10228, + "callsign": "OTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OTO", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovento", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10229, + "callsign": "OPERADORA AEREO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OTP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Operadora de Transportes Aereos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10230, + "callsign": "ORIENTROC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OTR", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orient Airlines", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10231, + "callsign": "SOTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OTS", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soci�t� de Taxis A�riens (SOTA)", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10232, + "callsign": "TRESALIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OTS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotresalia", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10233, + "callsign": "ZOTEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OTX", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotex", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10234, + "callsign": "QUEST AFRICAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OUA", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transport Aerien Ouest African", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10235, + "callsign": "ELEMENT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OUF", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Beijing Eofa International Jet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10236, + "callsign": "CITY EXPRESS", + "codeHub": "YTZ", + "codeIataAirline": "", + "codeIcaoAirline": "OUL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Atonabee", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10237, + "callsign": "MEXITOUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OUR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotour", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10238, + "callsign": "", + "codeHub": "VLC", + "codeIataAirline": "", + "codeIcaoAirline": "OVA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Europa Express", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10239, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OVA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronova", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10240, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OVC", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovic", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10241, + "callsign": "RUSSIA CORP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OVD", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "State ATM Corporation", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10242, + "callsign": "AEROMOVER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OVE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeromover", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10243, + "callsign": "VIAS EJECUTIVAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OVI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovias Ejecutivas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10244, + "callsign": "", + "codeHub": "DAM", + "codeIataAirline": "", + "codeIcaoAirline": "OVV", + "codeIso2Country": "SY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orient Air", + "nameCountry": "Syria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10245, + "callsign": "OWENAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OWE", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Owenair", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10246, + "callsign": "NIGHT OWL", + "codeHub": "MWO", + "codeIataAirline": "", + "codeIcaoAirline": "OWL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Miami Valley Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10247, + "callsign": "", + "codeHub": "LMM", + "codeIataAirline": "", + "codeIcaoAirline": "OWN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Owen", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10248, + "callsign": "OWENSAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OWN", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Owens Group", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10249, + "callsign": "AIR CROWN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OWR", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Crown Air", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10250, + "callsign": "BRASIL CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OWT", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "204", + "nameAirline": "TWO Taxi Aereo", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10251, + "callsign": "OXOE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OXE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oxaero", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10252, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OXE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gregg Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10253, + "callsign": "OXFORD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OXF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oxford Aviation Academy", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10254, + "callsign": "ORION MALTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OXM", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orion", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10255, + "callsign": "OXUS AIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OXS", + "codeIso2Country": "AF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oxus Airways", + "nameCountry": "Afghanistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10256, + "callsign": "", + "codeHub": "CDG", + "codeIataAirline": "", + "codeIcaoAirline": "OXY", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oxygene Airways", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10257, + "callsign": "KODA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OYE", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Koda International", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10258, + "callsign": "ZONA BLAVA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OZB", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zona Blava", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10259, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10260, + "callsign": "ZORI CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OZG", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zori Air Cargo", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10261, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "OZU", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Khozu-Avia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10262, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OZU", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Khozu Avia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10263, + "callsign": "HOZAVI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "OZU", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hozu-Avia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10264, + "callsign": "", + "codeHub": "LUK", + "codeIataAirline": "", + "codeIcaoAirline": "P12", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ultimate Air Shuttle", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10265, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "P3S", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Post", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10266, + "callsign": "AIR BOATS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Air Boats", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10267, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAB", + "codeIso2Country": "TJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silkline Air", + "nameCountry": "Tajikistan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10268, + "callsign": "PARAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAB", + "codeIso2Country": "TJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Parair", + "nameCountry": "Tajikistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10269, + "callsign": "AIR PROFESSIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Professional Express Courier Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10270, + "callsign": "PAISAJES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Paisajes Espanoles", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10271, + "callsign": "PACFIC AERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10272, + "callsign": "PANAF AIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAF", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Panaf Airways", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10273, + "callsign": "", + "codeHub": "YWG", + "codeIataAirline": "", + "codeIcaoAirline": "PAG", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Perimeter Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10274, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Perimeter Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10275, + "callsign": "LANI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Panorama Air Tour", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10276, + "callsign": "SEA RAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Paradise Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10277, + "callsign": "AIRPARMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAJ", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aliparma", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10278, + "callsign": "PACIFIC ALASKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Alaska Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10279, + "callsign": "PHOENIX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAM", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoenix Air Service", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10280, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MAP Linhas Aereas", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10281, + "callsign": "", + "codeHub": "UUD", + "codeIataAirline": "", + "codeIcaoAirline": "PAN", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PANH", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10282, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10283, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAP", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Angkasa Pura Perum", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10284, + "callsign": "PROFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAP", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Langtry Flying Group", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10285, + "callsign": "SOLPAC", + "codeHub": "BNE", + "codeIataAirline": "", + "codeIcaoAirline": "PAQ", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Air Express", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10286, + "callsign": "SPAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAR", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Spair Air Transport", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10287, + "callsign": "PACRIM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAR", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Rim Airways", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10288, + "callsign": "PARTNERAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAR", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Partnair", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10289, + "callsign": "PAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Department Of The Army, Priority Air Transport", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10290, + "callsign": "ADOUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAU", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Locavions Aero Services", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10291, + "callsign": "NICOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAV", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vip Avia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10292, + "callsign": "BRILLIANT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAV", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Proair Aviation", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10293, + "callsign": "ATORIE-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atorie Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10294, + "callsign": "", + "codeHub": "NC61", + "codeIataAirline": "", + "codeIcaoAirline": "PAW", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Presidential Airways", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10295, + "callsign": "POLONIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAW", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polonia Airways", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10296, + "callsign": "PANNEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10297, + "callsign": "ARPA", + "codeHub": "ASU", + "codeIataAirline": "", + "codeIcaoAirline": "PAY", + "codeIso2Country": "PY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ARPA Aerolineas Paraguayas", + "nameCountry": "Paraguay", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10298, + "callsign": "PAPA MIKE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PAZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "P M Air.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10299, + "callsign": "", + "codeHub": "YYR", + "codeIataAirline": "", + "codeIcaoAirline": "PB1", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Innu Mikun Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10300, + "callsign": "ADEBAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PBB", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polizeihubschrauberstaffel Brandenburg", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10301, + "callsign": "PABA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PBC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis Paba", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10302, + "callsign": "PENN-FOREST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PBF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pennsylvania Bureau of Forestry", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10303, + "callsign": "", + "codeHub": "CHC", + "codeIataAirline": "", + "codeIcaoAirline": "PBI", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Blue Airlines (NZ)", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10304, + "callsign": "BLUEBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PBI", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Blue International", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10305, + "callsign": "", + "codeHub": "APW", + "codeIataAirline": "", + "codeIcaoAirline": "PBL", + "codeIso2Country": "WS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polynesian Blue", + "nameCountry": "Samoa", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10306, + "callsign": "", + "codeHub": "APW", + "codeIataAirline": "", + "codeIcaoAirline": "PBL", + "codeIso2Country": "WS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Virgin Samoa", + "nameCountry": "Samoa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10307, + "callsign": "PELIKAN LINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PBL", + "codeIso2Country": "YU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pelikan Blue Line", + "nameCountry": "Yugoslavia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10308, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PBL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Virgin Samoa", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10309, + "callsign": "", + "codeHub": "CHC", + "codeIataAirline": "", + "codeIcaoAirline": "PBN", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Virgin Australia (NZ)", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10310, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PBN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Virgin Australia (NZ)", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10311, + "callsign": "BLUEBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PBN", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Virgin Australia Airlines (NZ) Ltd", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10312, + "callsign": "VECTIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PBN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pilatus Britten-Norman", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10313, + "callsign": "AERO CABOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PBO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Taxi de los Cabos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10314, + "callsign": "POLAR BEAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PBR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fast Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10315, + "callsign": "DI AIR", + "codeHub": "TGD", + "codeIataAirline": "", + "codeIcaoAirline": "PBS", + "codeIso2Country": "CS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DI Air", + "nameCountry": "Serbia and Montenegro", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,private" + }, + { + "ageFleet": 0.0, + "airlineId": 10316, + "callsign": "PARABAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PBT", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Parabat", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10317, + "callsign": "AIR BURUNDI", + "codeHub": "BJM", + "codeIataAirline": "", + "codeIcaoAirline": "PBU", + "codeIso2Country": "BI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Burundi", + "nameCountry": "Burundi", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10318, + "callsign": "BUSSARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PBW", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polizeihubschrauberstaffel Baden-Wurttemberg", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10319, + "callsign": "PEARL SERVICES", + "codeHub": "EBB", + "codeIataAirline": "", + "codeIcaoAirline": "PBY", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pearl Air Services", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10320, + "callsign": "", + "codeHub": "BKK", + "codeIataAirline": "", + "codeIcaoAirline": "PCA", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PC Air", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10321, + "callsign": "PAC VALLEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PCA", + "codeIso2Country": "UM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West Air", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10322, + "callsign": "PERFORADORA CENTRAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PCC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Perforadora Central", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10323, + "callsign": "PACIFIC EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PCF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Air Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10324, + "callsign": "", + "codeHub": "MEX", + "codeIataAirline": "", + "codeIcaoAirline": "PCG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Postal Cargo de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10325, + "callsign": "", + "codeHub": "QRO", + "codeIataAirline": "", + "codeIcaoAirline": "PCG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PCG de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10326, + "callsign": "POSTAL CARGO", + "codeHub": "QRO", + "codeIataAirline": "", + "codeIcaoAirline": "PCG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropostal Cargo de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10327, + "callsign": "", + "codeHub": "BXO", + "codeIataAirline": "", + "codeIcaoAirline": "PCH", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pilatus Aircraft", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "manufacturer" + }, + { + "ageFleet": 0.0, + "airlineId": 10328, + "callsign": "PILATUS WINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PCH", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pilatus Flugzeugwerke", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10329, + "callsign": "PROTEA COIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PCI", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coin Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10330, + "callsign": "PACIFIC JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PCJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10331, + "callsign": "PEACOCK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PCK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Peacock H.E. And Son", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10332, + "callsign": "PACIFIC CHILE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PCL", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Airlines Chile", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10333, + "callsign": "", + "codeHub": "FAT", + "codeIataAirline": "", + "codeIcaoAirline": "PCM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West Air (USA)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10334, + "callsign": "", + "codeHub": "LAS", + "codeIataAirline": "", + "codeIcaoAirline": "PCM", + "codeIso2Country": "US", + "founding": 1988, + "iataPrefixAccounting": "", + "nameAirline": "West Air, Inc.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10335, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PCM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West Air (USA)", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10336, + "callsign": "PAC VALLEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PCM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Westair Industries", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10337, + "callsign": "PRINCETON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PCN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Princeton Aviation Corporation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10338, + "callsign": "", + "codeHub": "SCL", + "codeIataAirline": "", + "codeIcaoAirline": "PCP", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolinea Principal", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10339, + "callsign": "PACAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PCR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Island Pacific Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10340, + "callsign": "PACAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PCR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pac Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10341, + "callsign": "AIR PALACE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PCS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Palace", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10342, + "callsign": "PEACEFUL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PCT", + "codeIso2Country": "TG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Peace Air Togo", + "nameCountry": "Togo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10343, + "callsign": "", + "codeHub": "SYD", + "codeIataAirline": "", + "codeIcaoAirline": "PCV", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PACAV - Pacific Aviation Charters", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10344, + "callsign": "PACAV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PCV", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Aviation", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10345, + "callsign": "PACIFIC ORIENT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PCW", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-Pacific Orient Airways", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10346, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PCX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Aviation Corporation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10347, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PCZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10348, + "callsign": "PODILIA", + "codeHub": "HMJ", + "codeIataAirline": "", + "codeIcaoAirline": "PDA", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Podilia-Avia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10349, + "callsign": "PADA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PDD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phillips Alaska", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10350, + "callsign": "OSPREY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PDG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PLM Dollar Group", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10351, + "callsign": "COKI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PDI", + "codeIso2Country": "PR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Paradise", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10352, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PDM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10353, + "callsign": "DISPATCH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PDQ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "P D C Air Charter.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10354, + "callsign": "ELICAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PDV", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elicar", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10355, + "callsign": "PACKAGE EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PDX", + "codeIso2Country": "BS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Package Delivery Xpress", + "nameCountry": "Bahamas", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10356, + "callsign": "PENDLEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PDY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pen-Avia", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10357, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PEA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan Europeenne Air Service", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10358, + "callsign": "PALEMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PEB", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Benders Air", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10359, + "callsign": "PAC-EAST CARGO", + "codeHub": "MNL", + "codeIataAirline": "", + "codeIcaoAirline": "PEC", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific East Asia Cargo Airlines", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10360, + "callsign": "PAREX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PED", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Paramount Executive", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10361, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PEF", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Perfect Aviaton", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10362, + "callsign": "PEGJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PEG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pegasus Elite Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10363, + "callsign": "PANAMEDIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PEI", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Panamedia", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10364, + "callsign": "PREMIER WINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PEJ", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Premier Executive Jet", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10365, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PEK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Peak Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10366, + "callsign": "NORSEMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PEN", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norsk Flytieneste", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10367, + "callsign": "PETRO AIR", + "codeHub": "MJI", + "codeIataAirline": "", + "codeIcaoAirline": "PEO", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Petro Air", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10368, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PEP", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PENTA", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10369, + "callsign": "PAS AIR", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "PER", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Petroleum Air Services", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10370, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PER", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pioneers", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10371, + "callsign": "PRINCESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PER", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Princess Airlines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10372, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PER", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Petroleum Air Services", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10373, + "callsign": "AEROPETREL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PET", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropetrel", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10374, + "callsign": "AEROPETRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PET", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotransporte Petrolero", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10375, + "callsign": "", + "codeHub": "CFU", + "codeIataAirline": "", + "codeIcaoAirline": "PEV", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AirSea Lines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10376, + "callsign": "PELICAN EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PEX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pelican Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10377, + "callsign": "PACIFIC SING", + "codeHub": "XSP", + "codeIataAirline": "", + "codeIcaoAirline": "PFA", + "codeIso2Country": "SG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Flight Services", + "nameCountry": "Singapore", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10378, + "callsign": "PATHFINDER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PFD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Peterborough", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10379, + "callsign": "PACIFICO CHIHUAHUA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PFI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Chihuahua Al Pacifico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10380, + "callsign": "", + "codeHub": "FIH", + "codeIataAirline": "", + "codeIcaoAirline": "PFN", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan African Express", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10381, + "callsign": "PANAFRICAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PFN", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan African Air Services", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10382, + "callsign": "POLICIA FEDERAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PFP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Policia Federal Preventiva", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10383, + "callsign": "PRAIRIE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PFS", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prairie Flying Service", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10384, + "callsign": "PARAGON FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PFT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Paragon Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10385, + "callsign": "PROFREIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PFT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cargo Express International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10386, + "callsign": "PFUNWA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PFU", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Pfunwa", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10387, + "callsign": "PELFLIGHT", + "codeHub": "SYD", + "codeIataAirline": "", + "codeIcaoAirline": "PFY", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pel-Air Aviation", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10388, + "callsign": "THAI FREIGHTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PGC", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thai Cargo Airline", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10389, + "callsign": "PRESTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PGE", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prestigeavia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10390, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PGF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Paragon Global Flight Support", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10391, + "callsign": "PRAGA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PGG", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Praga Aviation", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10392, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PGH", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pulkovo Aircraft Services", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10393, + "callsign": "UBER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PGJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Paragon Jets", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10394, + "callsign": "PREMIERE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PGL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PremiAir Aviation Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10395, + "callsign": "PERGRINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PGN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Volo Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10396, + "callsign": "PAN AIRLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PGO", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan Airlines Cargo Colombia", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10397, + "callsign": "PEGASUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PGS", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tauranga Aero Club", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10398, + "callsign": "AIR PRAGUE", + "codeHub": "PRG", + "codeIataAirline": "", + "codeIcaoAirline": "PGU", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Georgia Air Prague", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10399, + "callsign": "FLANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PGV", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pegase Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10400, + "callsign": "PARAGON EXPRESS", + "codeHub": "BNA", + "codeIataAirline": "", + "codeIcaoAirline": "PGX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Paragon Air Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10401, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PGY", + "codeIso2Country": "PY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporacion Paraguayana de Aeronautica", + "nameCountry": "Paraguay", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10402, + "callsign": "PHOEBUS", + "codeHub": "QRA", + "codeIataAirline": "", + "codeIcaoAirline": "PHB", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoebus Apollo Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10403, + "callsign": "HELICOPTERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PHC", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Petroleum Helicopters de Colombia", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10404, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PHC", + "codeIso2Country": "UM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoenix Air", + "nameCountry": "United States Minor Outlying Islands", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10405, + "callsign": "PANHANDLE", + "codeHub": "LNK", + "codeIataAirline": "", + "codeIcaoAirline": "PHD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Duncan Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10406, + "callsign": "PAWAN HANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PHE", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pawan Hans", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10407, + "callsign": "SHAN FENG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PHF", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shaanxi Phoenix International Flying College", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10408, + "callsign": "PHOENIX GROUP", + "codeHub": "FRU", + "codeIataAirline": "", + "codeIcaoAirline": "PHG", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoenix Aviation", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10409, + "callsign": "IBIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PHH", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polizeihubschrauberstaffel Hessen", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10410, + "callsign": "PHILAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PHI", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Philips Aviation Services", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10411, + "callsign": "PEACHJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PHJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10412, + "callsign": "PHILLIPS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PHL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phillips Michigan City Flying Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10413, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PHM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PHI Petroleum Helicopters Inc", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10414, + "callsign": "PETROLEUM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PHM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Petroleum Helicopters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10415, + "callsign": "", + "codeHub": "WIL", + "codeIataAirline": "", + "codeIcaoAirline": "PHN", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoenix Aviation (Kenya)", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10416, + "callsign": "PHOENIX BRASIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PHN", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoenix Air Lines", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10417, + "callsign": "PHOTOFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PHO", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "L&L Flygbildteknik", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10418, + "callsign": "SOUTHERN PHOENIX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PHO", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoenix Airways", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10419, + "callsign": "PANLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PHP", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pannon Airlines Air-transporting", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10420, + "callsign": "", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "PHR", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pharaoh Airlines", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10421, + "callsign": "PHARAOH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PHR", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Al Farana Airline", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10422, + "callsign": "PASSAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PHS", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polizeihubschrauberstaffel Sachsen", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10423, + "callsign": "PANANK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PHT", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PanJet", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10424, + "callsign": "PANNON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PHU", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pannon Air Service", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10425, + "callsign": "NEW BIRD", + "codeHub": "LEH", + "codeIataAirline": "", + "codeIcaoAirline": "PHV", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phenix Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10426, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "PHW", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoenix", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10427, + "callsign": "REBORN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PHX", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoenix 2000 Airtaxi", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10428, + "callsign": "PHOENIX ARMENIA", + "codeHub": "EVN", + "codeIataAirline": "", + "codeIcaoAirline": "PHY", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoenix Avia", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10429, + "callsign": "", + "codeHub": "UDYE", + "codeIataAirline": "", + "codeIcaoAirline": "PHY", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoenix Avia", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10430, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PIC", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "APISA Air Cargo", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10431, + "callsign": "PIRATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PIE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air South West", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10432, + "callsign": "AEROCALPA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PIF", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicios California Pacifico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10433, + "callsign": "POLICE IKARUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PIK", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polizeihubschrauberstaffel Sachsen-Anhalt", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10434, + "callsign": "PINNACLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PIL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canada Jet Charters", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10435, + "callsign": "PINFRAMAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PIM", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pinframat", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10436, + "callsign": "ROAD RUNNERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PIN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10437, + "callsign": "PIONEER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PIO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pioneer Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10438, + "callsign": "AEROKONCEPT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PIP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerokoncept", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10439, + "callsign": "THAI PLATINUM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PIP", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Platinum Airways", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10440, + "callsign": "PILOT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PIP", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pilot Flyskole", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10441, + "callsign": "", + "codeHub": "STM", + "codeIataAirline": "", + "codeIcaoAirline": "PIQ", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Piquiatuba Transportes Aereos", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10442, + "callsign": "PARSIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PIS", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Parsis", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10443, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PIT", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Panair International", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10444, + "callsign": "PRIMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PIU", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "43 Air School", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10445, + "callsign": "AEROSOKOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PIV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sokol", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10446, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PIW", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Panama International Air", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10447, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PIX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Metropix Ltd", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10448, + "callsign": "PHILINTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PIX", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Philippine International Airways", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10449, + "callsign": "PIZAZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PIZ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pizaz European", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10450, + "callsign": "PRIVATE FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PJA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Private Jet Management", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10451, + "callsign": "PITTSBURGH JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PJC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pittsburgh Jet Center", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10452, + "callsign": "PEE JAY", + "codeHub": "ATL", + "codeIataAirline": "", + "codeIcaoAirline": "PJE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Private Jet Expeditions", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10453, + "callsign": "PROJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PJF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Projet Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10454, + "callsign": "PRIVATE CAB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PJI", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Privatejet International", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10455, + "callsign": "ADVANTAGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PJJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airspeed Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10456, + "callsign": "PALMSPRINGS JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PJM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Desert Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10457, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PJM", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Primeair", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10458, + "callsign": "", + "codeHub": "KHI", + "codeIataAirline": "", + "codeIcaoAirline": "PJP", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Princely Airlines", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10459, + "callsign": "PRINCELY JETS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PJP", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Princely Jets", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10460, + "callsign": "", + "codeHub": "AZI", + "codeIataAirline": "", + "codeIcaoAirline": "PJR", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prestige Jet Rental", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10461, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PJR", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prestige Jets Rentals", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10462, + "callsign": "PROJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PJT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Projet International Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10463, + "callsign": "PAKISTAN AIRWAY", + "codeHub": "KHI", + "codeIataAirline": "", + "codeIcaoAirline": "PKA", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AST Pakistan Airways", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10464, + "callsign": "EQUATOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PKA", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Equator Airlines", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10465, + "callsign": "PIKES PEAK", + "codeHub": "COS", + "codeIataAirline": "", + "codeIcaoAirline": "PKP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mountain Air Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10466, + "callsign": "PAKKER AVIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PKR", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pakker Avio", + "nameCountry": "Estonia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10467, + "callsign": "PEKTRON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PKT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pektron", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10468, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PKW", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sierra West Airlines", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10469, + "callsign": "PRAVI", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "PKZ", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prime Aviation", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10470, + "callsign": "POLYAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polynesian Air-Ways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10471, + "callsign": "ANTEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLB", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polls, Center For Parachute And Expeditionary Works", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10472, + "callsign": "SPECIAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Police Aviation Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10473, + "callsign": "PASAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLE", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pas Airlines", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10474, + "callsign": "POLISH AIR FORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLF", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polish Air Force", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 10475, + "callsign": "PILGRIM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLG", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MBK-S", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10476, + "callsign": "", + "codeHub": "GRU", + "codeIataAirline": "", + "codeIcaoAirline": "PLJ", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Platinum Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10477, + "callsign": "PLATINUMJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLJ", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Platinum Air Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10478, + "callsign": "AIR PAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLL", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Pal Escuela de Pilotos", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10479, + "callsign": "PLATINUM EXEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Platinum Air Charter Executive 2000", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10480, + "callsign": "PLUM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "P.L.M. Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10481, + "callsign": "PLANAR", + "codeHub": "LAD", + "codeIataAirline": "", + "codeIcaoAirline": "PLN", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Planar", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10482, + "callsign": "POLNIPPON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLN", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polnippon", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10483, + "callsign": "PUMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLP", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoenix Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10484, + "callsign": "PLANETCAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLQ", + "codeIso2Country": "CM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Planet Airlines", + "nameCountry": "Cameroon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10485, + "callsign": "POLAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polar Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10486, + "callsign": "PALIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLS", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Palio Air Service", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10487, + "callsign": "PALMETTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South Carolina Aeronautics Commission", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10488, + "callsign": "PILATUS MEXICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLU", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pilatus PC-12 Center de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10489, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pool Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10490, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLY", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Puma Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10491, + "callsign": "", + "codeHub": "MCO", + "codeIataAirline": "", + "codeIcaoAirline": "PLZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Planet Airways (USA)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10492, + "callsign": "PLANET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PLZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Planet Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10493, + "callsign": "", + "codeHub": "SZB", + "codeIataAirline": "", + "codeIcaoAirline": "PMA", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan-Malaysian Air Transport", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10494, + "callsign": "PAN MALAYSIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PMA", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan Malaysian Air Transport", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10495, + "callsign": "PRIMAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PMC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Primac Courier", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10496, + "callsign": "ADUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PME", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Premair Flying Club", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10497, + "callsign": "AEREOPRIM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PMI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Primero Transportes Aereos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10498, + "callsign": "MAJESTIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PMJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Paramount Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10499, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PMK", + "codeIso2Country": "MK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Palair Macedonian", + "nameCountry": "Macedonia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10500, + "callsign": "MOVE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PML", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eliair", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10501, + "callsign": "", + "codeHub": "DME", + "codeIataAirline": "", + "codeIcaoAirline": "PMM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Primair (Russia)", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10502, + "callsign": "GAZELLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PMM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Paradigm Air Operators", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10503, + "callsign": "PRIMAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PMM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Primair", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10504, + "callsign": "SERVICIOS PREMIER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PMR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Premier", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10505, + "callsign": "PLANEMASTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PMS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Planemaster Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10506, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PMS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Planemasters Ltd", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10507, + "callsign": "MOTORPERM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PMT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Perm Motors", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10508, + "callsign": "PREMIUM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PMU", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Premium Aviation", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10509, + "callsign": "POLICE MERLIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PMV", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polizeihubschrauberstaffel Mecklenburg-Vorpommern", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10510, + "callsign": "PEMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PMX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Petroleos Mexicanos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10511, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PN7", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pink Aviation Services", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10512, + "callsign": "PACIFIC NORTHERN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PNA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Universal Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10513, + "callsign": "PANAIRSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PNC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pan-Air", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10514, + "callsign": "PRINCE AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PNC", + "codeIso2Country": "RS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prince Aviation", + "nameCountry": "Serbia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10515, + "callsign": "POND AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PND", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pond Air Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10516, + "callsign": "PENINTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PNE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Peninter Aerea", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10517, + "callsign": "ZEBEC", + "codeHub": "MLA", + "codeIataAirline": "", + "codeIcaoAirline": "PNF", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PanAfriqiyah", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10518, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PNG", + "codeIso2Country": "PR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Puerto Rico Air National Guard", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 10519, + "callsign": "KUBAN LIK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PNH", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Panh", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10520, + "callsign": "AERO PONIENTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PNI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovias de Poniente", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10521, + "callsign": "PAC JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PNJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Northwest", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10522, + "callsign": "AIR PINK", + "codeHub": "BEG", + "codeIataAirline": "", + "codeIcaoAirline": "PNK", + "codeIso2Country": "RS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Pink", + "nameCountry": "Serbia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10523, + "callsign": "AEROPERSONAL", + "codeHub": "MEX", + "codeIataAirline": "", + "codeIcaoAirline": "PNL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Personal", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10524, + "callsign": "PANORAMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PNM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Panorama", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10525, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PNN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10526, + "callsign": "", + "codeHub": "CGK", + "codeIataAirline": "", + "codeIcaoAirline": "PNS", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Penas Air", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10527, + "callsign": "PENAS", + "codeHub": "HLP", + "codeIataAirline": "", + "codeIcaoAirline": "PNS", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Survey Udara (Penas)", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10528, + "callsign": "PENAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PNS", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Survey Udara Penas", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10529, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PNT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Finlight Airline", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10530, + "callsign": "PORTNET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PNT", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Balmoral Central Contracts", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10531, + "callsign": "AERO PLATINUM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PNU", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Servicios Platinum", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10532, + "callsign": "PANAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PNV", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Panavia", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10533, + "callsign": "PALESTINIAN", + "codeHub": "GZA", + "codeIataAirline": "", + "codeIcaoAirline": "PNW", + "codeIso2Country": "PS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Palestinian Airlines", + "nameCountry": "Palestinian Territory", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10534, + "callsign": "PHOENIX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PNX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Imperial Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10535, + "callsign": "POLISH NAVY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PNY", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polish Navy", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10536, + "callsign": "PORTUGUESE ARMY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "POA", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Portuguese Army", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10537, + "callsign": "POBLANOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "POB", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Poblanos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10538, + "callsign": "POCONO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "POC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pocono Air Lines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10539, + "callsign": "FREIGHTDOGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "POD", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PACT Proair Charter Transport", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10540, + "callsign": "AIRPOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "POF", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Police Aux Frontiers", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10541, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "POI", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BGB Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10542, + "callsign": "POLAR AIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "POL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polar Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10543, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "POL", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rikspolisstyrelsen", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10544, + "callsign": "POLAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "POL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polar International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10545, + "callsign": "", + "codeHub": "DXB", + "codeIataAirline": "", + "codeIcaoAirline": "POM", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prompt Air GE", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10546, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "POM", + "codeIso2Country": "MC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prince Albert of Monaco", + "nameCountry": "Monaco", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10547, + "callsign": "PROMPTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "POM", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prompt Air", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10548, + "callsign": "POMPA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "POM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aurelio Y Gustavo Pompa Estrella", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10549, + "callsign": "PORTUGUESE NAVY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PON", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Portuguese Navy", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10550, + "callsign": "PORTEADORA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "POR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Porteadora de Cosola", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10551, + "callsign": "AIR POLTAVA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "POV", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Poltava Universal Avia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10552, + "callsign": "AIR POLTAVA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "POV", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meridian", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10553, + "callsign": "AIRNET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "POW", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hagondale", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10554, + "callsign": "APOYO AEREO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "POY", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Apoyo Aereo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10555, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PPA", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Pearl Airways", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10556, + "callsign": "AIR PROP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PPA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Propheter Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10557, + "callsign": "PALAU ASIAPAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PPC", + "codeIso2Country": "PW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Palau Asia Pacific Airlines", + "nameCountry": "Palau", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10558, + "callsign": "PERSONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PPD", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Personal Air Transport", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10559, + "callsign": "PAPAGO", + "codeHub": "PHX", + "codeIataAirline": "", + "codeIcaoAirline": "PPG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoenix Air Transport", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10560, + "callsign": "POLICE PHOENIX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PPH", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polizeihubschrauberstaffel Neidersachsen", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10561, + "callsign": "PELICAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PPK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ramp 66", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10562, + "callsign": "PACIFIC PEARL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PPM", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Pearl Airways Corporation", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10563, + "callsign": "PERSONASPAQ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PPQ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Personas Y Paquetes Por Aire", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10564, + "callsign": "PROPSTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PPR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Propstar Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10565, + "callsign": "PIPESTONE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PPS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Butte Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10566, + "callsign": "PROPATRIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PPT", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pro Patria Air", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10567, + "callsign": "PAPUGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PPU", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polish Air Navigation Services Agency", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10568, + "callsign": "PAVLOVSK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PPV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Petropavlovsk", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10569, + "callsign": "SAGE BRUSH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PQA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Coast Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10570, + "callsign": "CHIEFTAIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PQC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chieftain Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10571, + "callsign": "", + "codeHub": "THR", + "codeIataAirline": "", + "codeIcaoAirline": "PRA", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Parsair", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10572, + "callsign": "PRIMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRA", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flyair", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10573, + "callsign": "PRAMS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRB", + "codeIso2Country": "PR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Puerto Rico Air Management Services", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10574, + "callsign": "PACIFIC CHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10575, + "callsign": "PRESIDENTIAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Presidential Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10576, + "callsign": "PRESIDENTIAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Presidential Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10577, + "callsign": "PRECISION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Precision Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10578, + "callsign": "ASPAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRG", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Empresa Aero-Servicics Parrague", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10579, + "callsign": "AIR PRAGUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRG", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Prague", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10580, + "callsign": "PRONAIR", + "codeHub": "ABC", + "codeIataAirline": "", + "codeIcaoAirline": "PRJ", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pronair Airlines", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10581, + "callsign": "PROBAJIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRJ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Servicios Pro-Bajio", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10582, + "callsign": "PARACA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRK", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swallow Aviacion", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10583, + "callsign": "PEARL LINE", + "codeHub": "KHI", + "codeIataAirline": "", + "codeIcaoAirline": "PRL", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pearl Air", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10584, + "callsign": "PRIME AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prime Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10585, + "callsign": "PETRONORD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRN", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Petronord-Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10586, + "callsign": "PIRINAIR EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRN", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pirinair Express", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10587, + "callsign": "PRONTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRP", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PRT Aviation", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10588, + "callsign": "PARAMOUNT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRR", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Paramount Airlines", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10589, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PARS Systems", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10590, + "callsign": "PROMPT AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prompt Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10591, + "callsign": "COLORBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRU", + "codeIso2Country": "PR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prinair", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10592, + "callsign": "PROVINCAIL", + "codeHub": "YYT", + "codeIataAirline": "", + "codeIcaoAirline": "PRV", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Provincial Express", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10593, + "callsign": "EXPLORER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRV", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Premier Aviation Services", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10594, + "callsign": "PAREX", + "codeHub": "RIX", + "codeIataAirline": "", + "codeIcaoAirline": "PRX", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VIP Avia", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10595, + "callsign": "PRIORITY AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Priority Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10596, + "callsign": "AERONAUTIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PRZ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Performance Air", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10597, + "callsign": "SIPSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicio Sipse", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10598, + "callsign": "LIZARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Plymouth School Of Flying", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10599, + "callsign": "AVIONES ARE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviones Para Servirle", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10600, + "callsign": "PIER JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSG", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pier Seven Aviation", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10601, + "callsign": "PASSION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Red Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10602, + "callsign": "PONT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSI", + "codeIso2Country": "SR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pont International Airline Services", + "nameCountry": "Suriname", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10603, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSJ", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prestiget Jet - Jordan", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10604, + "callsign": "SUPPORT", + "codeHub": "TYS", + "codeIataAirline": "", + "codeIcaoAirline": "PSK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prescott Support Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10605, + "callsign": "CORSAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicios Corporativos de San Luis", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10606, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSL", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Professional Air System - PAS", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10607, + "callsign": "POTOSINA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Potosina Del Aire", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10608, + "callsign": "AEROPEGASO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis Pegaso", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10609, + "callsign": "PUBLISERVICIOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Publiservicios Aereos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10610, + "callsign": "SAINT-PIERRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSP", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air St. Pierre", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10611, + "callsign": "SERVIAVIONES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSQ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviones Para Serviale", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10612, + "callsign": "EXAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSR", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Express", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10613, + "callsign": "", + "codeHub": "KUF", + "codeIataAirline": "", + "codeIcaoAirline": "PSS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Progress TsSKB Aviakompania", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "supplier" + }, + { + "ageFleet": 0.0, + "airlineId": 10614, + "callsign": "PROGRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TSSKB-Progress, Air Company", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10615, + "callsign": "PROGRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RKC Progress, Air Company", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10616, + "callsign": "", + "codeHub": "AKL", + "codeIataAirline": "", + "codeIcaoAirline": "PST", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Post", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10617, + "callsign": "", + "codeHub": "PAC", + "codeIataAirline": "", + "codeIcaoAirline": "PST", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turismo Aereo", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10618, + "callsign": "AEROPENINSULAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSU", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropeninsular", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10619, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSU", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PHS Premium Aviation and Handling Services, Sociedada Unipessoal", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10620, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSV", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S.A.P.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10621, + "callsign": "", + "codeHub": "PKV", + "codeIataAirline": "", + "codeIcaoAirline": "PSW", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pskovavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10622, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSW", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pskovavia", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10623, + "callsign": "PSKOVAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSW", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pskov State Aviation Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10624, + "callsign": "SMILEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Southwest Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10625, + "callsign": "POP-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PSZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pro Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10626, + "callsign": "PONTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTA", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pontair", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10627, + "callsign": "PATRIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Patria Cargas Aereas", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10628, + "callsign": "MENTOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTC", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pilot Training College", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10629, + "callsign": "PITY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Servicio Tipy", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10630, + "callsign": "AERO-COP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Copter", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10631, + "callsign": "PREST-AFFAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTF", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prest'affair", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10632, + "callsign": "PETROFF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTF", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Petroff Air", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10633, + "callsign": "", + "codeHub": "DUS", + "codeIataAirline": "", + "codeIcaoAirline": "PTG", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PrivatAir (Germany)", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10634, + "callsign": "PATAGONIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTG", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Patagonia - Lineas Aereas del Sur", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10635, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PrivatAir Germany", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10636, + "callsign": "PRIVATJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTG", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Privatair GmbH", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10637, + "callsign": "PATRIOT TEAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airshows America \"The Patriots\"", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10638, + "callsign": "", + "codeHub": "PKC", + "codeIataAirline": "", + "codeIcaoAirline": "PTK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Petropavlovsk-Kamchatsky Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10639, + "callsign": "", + "codeHub": "PKC", + "codeIataAirline": "", + "codeIcaoAirline": "PTK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Petropavlovsk-Kamchatsky Airline", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10640, + "callsign": "PETROKAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Petropavlovsk-Kachatsk Air", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10641, + "callsign": "PLANTATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Providence Airline", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10642, + "callsign": "POSTMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southeastern Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10643, + "callsign": "PHOTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTO", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North West Geomatics", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10644, + "callsign": "TRANS PACIFIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTP", + "codeIso2Country": "PW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Palau Trans Pacific Airline", + "nameCountry": "Palau", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10645, + "callsign": "TOWNSEND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTQ", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Port Townsend Airways", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10646, + "callsign": "PATROL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nova Scotia Department Of Lands And Forests", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10647, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Arabia Jordan", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10648, + "callsign": "PENTRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Performance Transportacion", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10649, + "callsign": "POINTSCALL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Points Of Call Canada", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10650, + "callsign": "POINTSCALL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Points Of Call Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10651, + "callsign": "TOTOLAPA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Promotora Industra Totolapa", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10652, + "callsign": "AEROLUX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTU", + "codeIso2Country": "LU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Europe Air Charter", + "nameCountry": "Luxembourg", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10653, + "callsign": "PUNTAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTV", + "codeIso2Country": "DJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Puntavia Air Services", + "nameCountry": "Djibouti", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10654, + "callsign": "POSTALMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aereo Postal de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10655, + "callsign": "PRIVATEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTX", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Private X-press", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10656, + "callsign": "", + "codeHub": "GSO", + "codeIataAirline": "", + "codeIcaoAirline": "PTY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Petty Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10657, + "callsign": "PETTY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Petty Transport", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10658, + "callsign": "LESAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PTZ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North-West Air Forest Fire Center", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10659, + "callsign": "AEROPUBLIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PUB", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropublic", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10660, + "callsign": "PUELCHE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PUE", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropuelche", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10661, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PUL", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pul. Przedsiebiorstwo Uslug Lotniczych", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10662, + "callsign": "PULSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PUL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ornge Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10663, + "callsign": "PRACTISE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PUN", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Punitz Flugbetrieb", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10664, + "callsign": "PURDUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PUR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Purdue Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10665, + "callsign": "PURDUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PUR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Purdue Aeronautics Corp.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10666, + "callsign": "SPURWING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PUR", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Spurwing Airlines", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10667, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PUT", + "codeIso2Country": "YU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroput", + "nameCountry": "Yugoslavia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10668, + "callsign": "PUBLIVOO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PUV", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Publivoo, Publicidade E imagens Aereas Lda", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10669, + "callsign": "TRANSPRIVADO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PVA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotransportes Privados", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10670, + "callsign": "PLAN AERONAVES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PVE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Plan Aeronaves", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10671, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PVI", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pana Via", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10672, + "callsign": "", + "codeHub": "MLA", + "codeIataAirline": "", + "codeIcaoAirline": "PVJ", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Privajet", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10673, + "callsign": "BORIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PVK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Association of Private Pilots of Kazakhstan", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10674, + "callsign": "VOLARE", + "codeHub": "FRL", + "codeIataAirline": "", + "codeIcaoAirline": "PVL", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Professione Volare", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10675, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PVO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Privaira", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10676, + "callsign": "PROVOST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PVO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bearing Supplies", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10677, + "callsign": "PRIVATE ORANGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PVO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Privaira", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10678, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PVT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10679, + "callsign": "PRIESTER", + "codeHub": "PWK", + "codeIataAirline": "", + "codeIcaoAirline": "PWA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Priester Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10680, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PWA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Priester Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10681, + "callsign": "", + "codeHub": "YHU", + "codeIataAirline": "", + "codeIcaoAirline": "PWC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pratt & Whitney Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "supplier" + }, + { + "ageFleet": 0.0, + "airlineId": 10682, + "callsign": "PRATT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PWC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pratt And Whitney Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10683, + "callsign": "TENNANT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PWK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetstream Aircraft", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10684, + "callsign": "POWELL AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PWL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Powell Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10685, + "callsign": "", + "codeHub": "KIV", + "codeIataAirline": "", + "codeIcaoAirline": "PXA", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pecotox-Air", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10686, + "callsign": "PECOTOX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PXA", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pecotox Air", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10687, + "callsign": "PHOENIX BULGARIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PXB", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoenix Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10688, + "callsign": "PHOENIX GLOBAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PXG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aitheras Aviation Group", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10689, + "callsign": "PHOENIX JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PXJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Team", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10690, + "callsign": "PAK EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PXP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific air Transport", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10691, + "callsign": "PIXAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PXR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pixair Survey", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10692, + "callsign": "PANAM EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PXS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Boston-Maine Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10693, + "callsign": "PACK COAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PXT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Coast Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10694, + "callsign": "PINE STATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PXX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aroostook Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10695, + "callsign": "", + "codeHub": "HAM", + "codeIataAirline": "", + "codeIcaoAirline": "PYA", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Puya Airlines", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10696, + "callsign": "POUYA AIR LINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PYA", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pouya Air Lines", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10697, + "callsign": "AEROPYCSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PYC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropycsa", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10698, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PYL", + "codeIso2Country": "PY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolap Paraguay Airlines", + "nameCountry": "Paraguay", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10699, + "callsign": "POYSTON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PYN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Haverfordwest Air Charter Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10700, + "callsign": "PYAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PYR", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pyramid Air Lines", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10701, + "callsign": "PLAYERS AIR", + "codeHub": "PDK", + "codeIataAirline": "", + "codeIcaoAirline": "PYZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Players Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10702, + "callsign": "AEREO PARAZA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PZA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aereo Taxi Paraza", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10703, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10704, + "callsign": "SKYPOL-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PZL", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "PZL - Panstwowe Zaklady Lotnicze", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10705, + "callsign": "PHAZER", + "codeHub": "TTN", + "codeIataAirline": "", + "codeIcaoAirline": "PZR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Trek International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10706, + "callsign": "PYTHON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PZY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Performance Executive Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10707, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "PZY", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zapolyarye Airline", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10708, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QAA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10709, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QAB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10710, + "callsign": "QATAR CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QAC", + "codeIso2Country": "QA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Qatar Airways Cargo", + "nameCountry": "Qatar", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10711, + "callsign": "QATAR CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QAC", + "codeIso2Country": "QA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Qatar Air Cargo", + "nameCountry": "Qatar", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10712, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QAF", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Qatar Amiri Flight", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10713, + "callsign": "QUICK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QAH", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quick Airways Holland", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10714, + "callsign": "CHICKPEA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QAI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Conquest Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10715, + "callsign": "DAGOBERT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QAJ", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quick Air Jet Charter", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10716, + "callsign": "QURINEA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QAQ", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Qurinea Air Service", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10717, + "callsign": "QUISQUEYA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QAS", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quisqueya Airlines", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10718, + "callsign": "AIR QUASAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QAT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Taxi", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10719, + "callsign": "BILQIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QBA", + "codeIso2Country": "YE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Queen Bilqis Airways", + "nameCountry": "Yemen", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10720, + "callsign": "QUEBEC AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QBC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quebec Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10721, + "callsign": "", + "codeHub": "LGB", + "codeIataAirline": "", + "codeIcaoAirline": "QCC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Qwest Commuter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10722, + "callsign": "QWEST AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QCC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Qwest Commuter Corporation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10723, + "callsign": "ACLA", + "codeHub": "MVD", + "codeIataAirline": "", + "codeIcaoAirline": "QCL", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Class Lineas Aereas", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10724, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QCZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10725, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QDR", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quadrotur Aero", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10726, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QEA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Consultancy Office", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10727, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QFY", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quality Fly", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10728, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QFZ", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fars Qeshm Air Lines", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10729, + "callsign": "QUADRIGA", + "codeHub": "SXF", + "codeIataAirline": "", + "codeIcaoAirline": "QGA", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Windrose Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10730, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QGA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Windrose Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10731, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QIC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Quick", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10732, + "callsign": "QUID", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QID", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United States Air Force 100th Air Refueling Wing", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 10733, + "callsign": "QUICKJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QJA", + "codeIso2Country": "NA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quickjet Aviation", + "nameCountry": "Namibia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10734, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QJE", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cobham Aviation Services Australia", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10735, + "callsign": "JIU TIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QJT", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Qingdao Jiutian-Spartan International Flight Academy", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10736, + "callsign": "QUAKER CITY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QKC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Taxi Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10737, + "callsign": "QUEBEC LABRADOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QLA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Quebec Labrador", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10738, + "callsign": "QUEST MEXICANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QMX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quest Mexicana", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10739, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QNN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10740, + "callsign": "QUEEN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QNR", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Queen Air", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10741, + "callsign": "QANOT SHARQ", + "codeHub": "TAS", + "codeIataAirline": "", + "codeIcaoAirline": "QNT", + "codeIso2Country": "UZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Qanot Sharq", + "nameCountry": "Uzbekistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10742, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QNZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "81", + "nameAirline": "Jetconnect", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10743, + "callsign": "", + "codeHub": "DOH", + "codeIataAirline": "", + "codeIcaoAirline": "QQE", + "codeIso2Country": "QA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Qatar Executive", + "nameCountry": "Qatar", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10744, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QQQ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10745, + "callsign": "QUARTET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QRT", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "4D Air", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10746, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QTA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10747, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QTB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10748, + "callsign": "AIR QUANTEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QTX", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quantex Environmental", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10749, + "callsign": "QUASSAR", + "codeHub": "MEX", + "codeIataAirline": "", + "codeIcaoAirline": "QUA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quassar de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10750, + "callsign": "", + "codeHub": "YQB", + "codeIataAirline": "", + "codeIcaoAirline": "QUE", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quebec - Service Aerien Gouvernemental", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 10751, + "callsign": "QUEBEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QUE", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gouvernement Du Quebec, Service Aerien Gouvernemental", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10752, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QUE", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gouvernement Du Quebec", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10753, + "callsign": "QUIMMCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QUI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Quimmco", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10754, + "callsign": "QUICKNET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QUN", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quicknet Air", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10755, + "callsign": "", + "codeHub": "FRU", + "codeIataAirline": "", + "codeIcaoAirline": "QVR", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Quadrotour-Aero", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10756, + "callsign": "PEGASO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QVR", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kvadro Aero", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10757, + "callsign": "", + "codeHub": "HLA", + "codeIataAirline": "", + "codeIcaoAirline": "QWL", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Qwila Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10758, + "callsign": "HORIZON AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QXE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Horizon Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10759, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "QZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10760, + "callsign": "RYNES AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rynes Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10761, + "callsign": "RAYYAN INTERNATIONAL", + "codeHub": "ISB", + "codeIataAirline": "", + "codeIcaoAirline": "RAB", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rayyan Air", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10762, + "callsign": "RILA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAB", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rila Airlines", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10763, + "callsign": "", + "codeHub": "OKA", + "codeIataAirline": "", + "codeIcaoAirline": "RAC", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RAC - Ryukyu Air Commuter", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10764, + "callsign": "TUZLA AIR", + "codeHub": "TZL", + "codeIataAirline": "", + "codeIcaoAirline": "RAC", + "codeIso2Country": "BA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Icar Air", + "nameCountry": "Bosnia and Herzegovina", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10765, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ryukyu Air Commuter", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10766, + "callsign": "AIR ALADA", + "codeHub": "LAD", + "codeIataAirline": "", + "codeIcaoAirline": "RAD", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alada Empresa de Transportes Aereos", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10767, + "callsign": "NUGGET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RAE Farnborough", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10768, + "callsign": "FARNAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAF", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Farnas Aviation Services", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10769, + "callsign": "", + "codeHub": "FNB", + "codeIataAirline": "", + "codeIcaoAirline": "RAG", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regio-Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10770, + "callsign": "", + "codeHub": "YYZ", + "codeIataAirline": "", + "codeIcaoAirline": "RAG", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Glencore Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10771, + "callsign": "RAGLAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAG", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Xstrata Nickel", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10772, + "callsign": "GERMAN LINK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAG", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regio Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10773, + "callsign": "REGENT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAH", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regent Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10774, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAH", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Region Aero", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10775, + "callsign": "", + "codeHub": "DMB", + "codeIataAirline": "", + "codeIcaoAirline": "RAI", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotur Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10776, + "callsign": "ROMEO NOVEMBER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAI", + "codeIso2Country": "MA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Air Inter", + "nameCountry": "Morocco", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10777, + "callsign": "RAJI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAJ", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Raji Airlines", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10778, + "callsign": "", + "codeHub": "RIX", + "codeIataAirline": "", + "codeIcaoAirline": "RAK", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rigas Aeroklubs", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10779, + "callsign": "SPORT CLUB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAK", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Riga Airclub", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10780, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAK", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Riga Aeroclub", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10781, + "callsign": "ROSWELL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Roswell Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10782, + "callsign": "RANSOME", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ransome Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10783, + "callsign": "RENAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAN", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Renan", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10784, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAO", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Real Aerolub de Malaga", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10785, + "callsign": "REPTOR", + "codeHub": "FTW", + "codeIataAirline": "", + "codeIcaoAirline": "RAP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Center Helicopters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10786, + "callsign": "RAPIDAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAP", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rapid Air", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10787, + "callsign": "", + "codeHub": "DUS", + "codeIataAirline": "", + "codeIcaoAirline": "RAS", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rheinair", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 10788, + "callsign": "SHANHIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RAS", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10789, + "callsign": "", + "codeHub": "FRA", + "codeIataAirline": "", + "codeIcaoAirline": "RAT", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ratioflug", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10790, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAT", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ratioflug Luftfahfitunternehmen", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10791, + "callsign": "RIVERRAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAT", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chief Rat Flight Services", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10792, + "callsign": "UGANDA ROYAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAU", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Uganda Royal Airways", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10793, + "callsign": "ROLLINS", + "codeHub": "LCE", + "codeIataAirline": "", + "codeIcaoAirline": "RAV", + "codeIso2Country": "HN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rollins Air", + "nameCountry": "Honduras", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10794, + "callsign": "REED AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAV", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Reed Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10795, + "callsign": "", + "codeHub": "NBO", + "codeIataAirline": "", + "codeIcaoAirline": "RAW", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Air", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10796, + "callsign": "HONDO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Great Southwest Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10797, + "callsign": "AIR ROYAL", + "codeHub": "PTK", + "codeIataAirline": "", + "codeIcaoAirline": "RAX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Air Freight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10798, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAX", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rosenbalm Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10799, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAX", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Air Charter", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10800, + "callsign": "", + "codeHub": "TUS", + "codeIataAirline": "", + "codeIcaoAirline": "RAY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Raytheon", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "manufacturer" + }, + { + "ageFleet": 0.0, + "airlineId": 10801, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAY", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Real Aeroclub de Navarra", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10802, + "callsign": "REAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAY", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Air Services", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10803, + "callsign": "RIJNMOND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAZ", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rijnmond Air Services", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10804, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RAZ", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Real Aeroclub Zaragoza", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10805, + "callsign": "RABBIT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RBB", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rabbit-Air", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10806, + "callsign": "REPUBLICAIR", + "codeHub": "TLC", + "codeIataAirline": "", + "codeIcaoAirline": "RBC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Republicair", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10807, + "callsign": "", + "codeHub": "YVR", + "codeIataAirline": "", + "codeIcaoAirline": "RBD", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CHC Helicopters International", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10808, + "callsign": "REDBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RBD", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CHC Helicopters Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10809, + "callsign": "RED BIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RBD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans World Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10810, + "callsign": "REDBUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RBE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Redbus Executive Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10811, + "callsign": "RUM BENIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RBE", + "codeIso2Country": "BJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Rum Benin", + "nameCountry": "Benin", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10812, + "callsign": "CALYPSO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RBH", + "codeIso2Country": "BS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regal Bahamas International Airways", + "nameCountry": "Bahamas", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10813, + "callsign": "AIR BRIGHT", + "codeHub": "PDV", + "codeIataAirline": "", + "codeIcaoAirline": "RBI", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bright Flight", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10814, + "callsign": "AIRBRIGHT", + "codeHub": "PDV", + "codeIataAirline": "", + "codeIcaoAirline": "RBI", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Bright", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10815, + "callsign": "AEROBAJIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RBJ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicios Del Bajio", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10816, + "callsign": "", + "codeHub": "ANF", + "codeIataAirline": "", + "codeIcaoAirline": "RBK", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Rio Baker", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10817, + "callsign": "RIOBAKER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RBK", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rio Baker", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10818, + "callsign": "ROYAL BELAU", + "codeHub": "ROR", + "codeIataAirline": "", + "codeIcaoAirline": "RBL", + "codeIso2Country": "PW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Belau Airways", + "nameCountry": "Palau", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10819, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RBL", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Blanchard", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10820, + "callsign": "RED BULL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RBL", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skymedia AG", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10821, + "callsign": "RED BARON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RBN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Red Baron Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10822, + "callsign": "RACE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RBO", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rainbow Cargo Express", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10823, + "callsign": "SIAM AIRNET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RBR", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Siam Airnet", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10824, + "callsign": "ROBIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RBT", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Robinton Aereo", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10825, + "callsign": "AIR RABAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RBT", + "codeIso2Country": "MA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Rabat", + "nameCountry": "Morocco", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10826, + "callsign": "CORVETTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RBU", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airbus France", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10827, + "callsign": "AIR ROBERVAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RBV", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Roberval", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10828, + "callsign": "CAI HONG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RBW", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shandong Airlines Rainbow Jet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10829, + "callsign": "ARUBA", + "codeHub": "AUA", + "codeIataAirline": "", + "codeIcaoAirline": "RBX", + "codeIso2Country": "AW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ArubaExel", + "nameCountry": "Aruba", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10830, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RBX", + "codeIso2Country": "AW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aruba Exel", + "nameCountry": "Aruba", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10831, + "callsign": "RICHLAND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Richland Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10832, + "callsign": "BALEARES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCB", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Real Aero Club de Baleares", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10833, + "callsign": "RACER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCC", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Charters Eelde", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10834, + "callsign": "RACER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCC", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Charters Europe", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10835, + "callsign": "AEROCLUB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCD", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Real Aeroclub de Tenerife", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10836, + "callsign": "AEROCER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocer", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10837, + "callsign": "ROYAL CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCG", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Air Cargo", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10838, + "callsign": "RAINBOW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Resorts International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10839, + "callsign": "AIR CASSAI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCI", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cassai Lda.", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10840, + "callsign": "NEWPIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hawker Beechcraft", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10841, + "callsign": "NEWPIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Raytheon Corporate Jets", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10842, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCL", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Real Aeroclub de Valencia", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10843, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Racal Avionics", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10844, + "callsign": "AIRCAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircam Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10845, + "callsign": "CANNES AZUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCM", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cannes Mediterranee", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10846, + "callsign": "", + "codeHub": "ACC", + "codeIataAirline": "", + "codeIcaoAirline": "RCN", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Race Cargo Airlines", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10847, + "callsign": "SPEED CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCN", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Race Cargo Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10848, + "callsign": "AEROCOAHUILA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Renta de Coahuila", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10849, + "callsign": "AEROCORPSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocorp", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10850, + "callsign": "", + "codeHub": "QRO", + "codeIataAirline": "", + "codeIcaoAirline": "RCQ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Cargo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10851, + "callsign": "AERO-CROAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCR", + "codeIso2Country": "HR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircroatia", + "nameCountry": "Croatia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10852, + "callsign": "AEROCHAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Charter Los Cabos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10853, + "callsign": "AEROCONSUL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCS", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Consul", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10854, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rectimo Air Transport", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10855, + "callsign": "ARCTIC TRANSPORT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ryan Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10856, + "callsign": "AIR COURIER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCU", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10857, + "callsign": "AEROCANARIAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCV", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocanarias de Venezuela", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10858, + "callsign": "STRIMER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airclub Aviator", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10859, + "callsign": "SERVICE CENTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCX", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Service Center", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10860, + "callsign": "FLAG SHIP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Republic Express Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10861, + "callsign": "RACE CITY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Package Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10862, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCY", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Package Express, Inc.", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10863, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RCZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10864, + "callsign": "RADA", + "codeHub": "MHP", + "codeIataAirline": "", + "codeIcaoAirline": "RDA", + "codeIso2Country": "BY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rada Airlines", + "nameCountry": "Belarus", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10865, + "callsign": "REID-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Reid Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10866, + "callsign": "REDAIR GAMBIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDA", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Redair Gambia", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10867, + "callsign": "REWARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDA", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "T K Travel", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10868, + "callsign": "ORDA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDB", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ordabasy", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10869, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Del Centro", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10870, + "callsign": "", + "codeHub": "URKM", + "codeIataAirline": "", + "codeIcaoAirline": "RDD", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Adygheya Avia", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10871, + "callsign": "ADLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDD", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Adygeya Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10872, + "callsign": "FLIGHT RED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Woodbury Park, Flight Operations", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10873, + "callsign": "RED FOX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDF", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurocopter Deutschland", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10874, + "callsign": "IRISH TRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDK", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Irish Air Transport", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10875, + "callsign": "RED DUKE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Memorial Hermann Hospital System Life Flight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10876, + "callsign": "ROADAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Roadair Lines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10877, + "callsign": "AIR ADA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDM", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Ada", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10878, + "callsign": "", + "codeHub": "BBU", + "codeIataAirline": "", + "codeIcaoAirline": "RDP", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurojet Romania", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10879, + "callsign": "JET-ARROW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDP", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S.C. Euroject Romania", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10880, + "callsign": "JET-ARROW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDP", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S.C. Rompetrol Logistics", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10881, + "callsign": "RED STAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Goodridge", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10882, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10883, + "callsign": "RED AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDV", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rea Sea Aviation", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10884, + "callsign": "ROADWATCH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDW", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Valair AG", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10885, + "callsign": "RED SUN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airflite", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10886, + "callsign": "RODZE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RDZ", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rodze Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10887, + "callsign": "REBUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "REB", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rebus", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10888, + "callsign": "TRANS-RECO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "REC", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Reco", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10889, + "callsign": "RED CROSS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RED", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Red Cross", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10890, + "callsign": "REGENCY AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "REE", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regency Air", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10891, + "callsign": "AERORESVACIONES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "REE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Reservaciones Ejecutivas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10892, + "callsign": "REEF AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "REF", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Reef Air", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10893, + "callsign": "REGIONAL SERVICES", + "codeHub": "ARK", + "codeIataAirline": "", + "codeIcaoAirline": "REG", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Air", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10894, + "callsign": "REGOURD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "REG", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regourd Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10895, + "callsign": "REACHMED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "REH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Reach Air Medical Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10896, + "callsign": "RAY AVIATION", + "codeHub": "TLV", + "codeIataAirline": "", + "codeIcaoAirline": "REI", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ray Aviation", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10897, + "callsign": "REGIONAL LINK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "REJ", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SA Airlink Regional", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10898, + "callsign": "LONG TAIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "REJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Imperial Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10899, + "callsign": "RELIANCE AIR", + "codeHub": "FXE", + "codeIataAirline": "", + "codeIcaoAirline": "REL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Reliance Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10900, + "callsign": "ROSE", + "codeHub": "SOF", + "codeIataAirline": "", + "codeIcaoAirline": "REM", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rose Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10901, + "callsign": "RIECAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "REM", + "codeIso2Country": "HN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Riecam", + "nameCountry": "Honduras", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10902, + "callsign": "REM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "REM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "C & M Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10903, + "callsign": "ARENA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "REN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arena Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10904, + "callsign": "AERORENT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "REN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero-Rent", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10905, + "callsign": "RIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "REO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rio Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10906, + "callsign": "REPTRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "REP", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rep Trans Avia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10907, + "callsign": "REGAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RER", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicio Aereo Regional Regair", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10908, + "callsign": "RESORT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RES", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hawaiian Air Tours Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10909, + "callsign": "SEARCH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RES", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Australian Maritime Safety Authority (AMSA)", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10910, + "callsign": "RESTAURACIONES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RES", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Restauraciones Aeronauticas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10911, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RET", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10912, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "REU", + "codeIso2Country": "RE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Reunion Air Service", + "nameCountry": "Reunion", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10913, + "callsign": "ENDURANCE", + "codeHub": "EMA", + "codeIataAirline": "", + "codeIcaoAirline": "REV", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RVL Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10914, + "callsign": "REGIONAL WINGS", + "codeHub": "FMO", + "codeIataAirline": "", + "codeIcaoAirline": "REW", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Air Express", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10915, + "callsign": "RAM EXPRESS", + "codeHub": "RDU", + "codeIataAirline": "", + "codeIcaoAirline": "REX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ram Air Freight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10916, + "callsign": "AEROREY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "REY", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero-Rey", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10917, + "callsign": "CAL AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "REZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cal-West Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10918, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RFA", + "codeIso2Country": "IQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Al-Rafedain Falcon Air Cargo", + "nameCountry": "Iraq", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10919, + "callsign": "RALEIGH SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RFA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Raleigh Flying Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10920, + "callsign": "", + "codeHub": "JNB", + "codeIataAirline": "", + "codeIcaoAirline": "RFC", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Africa", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10921, + "callsign": "AERO AFRICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RFC", + "codeIso2Country": "SZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Africa", + "nameCountry": "Swaziland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10922, + "callsign": "RAFILHER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RFD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotransportes Rafilher", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10923, + "callsign": "AEROFE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RFE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Fe", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10924, + "callsign": "RUSSIAN EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RFE", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Express", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10925, + "callsign": "", + "codeHub": "CKL", + "codeIataAirline": "", + "codeIcaoAirline": "RFF", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Voyennaya Transportnaya Aviatsiya", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 10926, + "callsign": "RUSSIAN AIRFORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RFF", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Russian Federation Air Force", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 10927, + "callsign": "NUT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RFH", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yunnan Ruifeng General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10928, + "callsign": "SHERLOCK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RFI", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Air Traffic Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10929, + "callsign": "INFLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RFL", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Interfly", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10930, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RFO", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Foyal", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10931, + "callsign": "", + "codeHub": "ADE", + "codeIataAirline": "", + "codeIcaoAirline": "RFS", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "863", + "nameAirline": "Rossair Charter", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10932, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RFS", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rossair", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10933, + "callsign": "ROMANIAN ACADEMY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RFT", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Academia Romana de Aviatie", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10934, + "callsign": "REFLEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RFX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "J P Hunt, Inc., Air Carriers", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10935, + "callsign": "RAFFLES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RFZ", + "codeIso2Country": "SG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Singapore Flying College (Jet Operations)", + "nameCountry": "Singapore", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10936, + "callsign": "REGENCY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RGA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regency Aviation Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10937, + "callsign": "ROYAL GHANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RGA", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Ghanian Airlines", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10938, + "callsign": "REGIONAL BAHAMAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RGB", + "codeIso2Country": "BS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Air", + "nameCountry": "Bahamas", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10939, + "callsign": "", + "codeHub": "MTY", + "codeIataAirline": "", + "codeIcaoAirline": "RGC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Regiomontanos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10940, + "callsign": "REGIOMONTANO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RGC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aeroes Regiomontanos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10941, + "callsign": "KUWAIT CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RGD", + "codeIso2Country": "KW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "World Air Cargo Company (International Air Company)", + "nameCountry": "Kuwait", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10942, + "callsign": "REGIOEMPRESAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RGE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regioempresas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10943, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RGG", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Air (Gambia)", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10944, + "callsign": "GRANCA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RGK", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Real Aeroclub de Gran Canaria", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10945, + "callsign": "MAROC REGIONAL", + "codeHub": "CMN", + "codeIataAirline": "", + "codeIcaoAirline": "RGL", + "codeIso2Country": "MA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Air Lines", + "nameCountry": "Morocco", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10946, + "callsign": "REGAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RGL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regionalair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10947, + "callsign": "RANGEMILE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RGM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rangemile", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10948, + "callsign": "", + "codeHub": "MAD", + "codeIataAirline": "", + "codeIcaoAirline": "RGN", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cygnus Air (1998)", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10949, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RGN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cygnus Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10950, + "callsign": "ARGOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RGO", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Argo", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10951, + "callsign": "GARDEN CITY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RGP", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "River State Government of Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 10952, + "callsign": "REGIONAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RGR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Region Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10953, + "callsign": "RENOWN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RGS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Renown Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10954, + "callsign": "AIRGOAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RGT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airbourne School of Flying", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10955, + "callsign": "VOLON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RGV", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RG Aviation", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10956, + "callsign": "REGENCY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RGY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regency Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10957, + "callsign": "RHEIN HELI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RHB", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rhein Helikopter", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10958, + "callsign": "REDAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RHC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Redhill Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10959, + "callsign": "RED HEAD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RHD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bond Air Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10960, + "callsign": "REDHAWK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RHK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Concierge Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10961, + "callsign": "REDHAWK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RHK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sovereign Business Jets", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10962, + "callsign": "", + "codeHub": "PPT", + "codeIataAirline": "", + "codeIcaoAirline": "RHL", + "codeIso2Country": "PF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Archipels", + "nameCountry": "French Polynesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10963, + "callsign": "ARCHIPELS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RHL", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Archipels", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10964, + "callsign": "RHONAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RHN", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rhonavia", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10965, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RHT", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunlight Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10966, + "callsign": "RICHARDSON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RIC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Richardson's Airway", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10967, + "callsign": "", + "codeHub": "BOY", + "codeIataAirline": "", + "codeIcaoAirline": "RIE", + "codeIso2Country": "BF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ariella Airlines", + "nameCountry": "Burkina Faso", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10968, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RIE", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ariella Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10969, + "callsign": "ARIEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RIE", + "codeIso2Country": "BF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ariella", + "nameCountry": "Burkina Faso", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10970, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RIF", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ministry of Internal Affairs (Russia)", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 10971, + "callsign": "INTERMIN AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RIF", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Ministry of the Interior of the Russian Federation", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10972, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RIG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Riga Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10973, + "callsign": "RIGA LINER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RIG", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Riga Airlines", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10974, + "callsign": "RAHILA", + "codeHub": "MJI", + "codeIataAirline": "", + "codeIcaoAirline": "RIH", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rahila Airlines", + "nameCountry": "Libyan Arab Jamahiriya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10975, + "callsign": "RIKAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RIK", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurojet", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10976, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RIL", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Air", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10977, + "callsign": "RIMROCK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RIM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rimrock Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10978, + "callsign": "", + "codeHub": "KIV", + "codeIataAirline": "", + "codeIcaoAirline": "RIN", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airline Transport", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 10979, + "callsign": "AEROTITAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RIN", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airline Transport Incorporation", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10980, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RIO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rio Linhas Aereas", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10981, + "callsign": "ILFORD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RIP", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ilford-Riverton Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10982, + "callsign": "RONNAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RIR", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ronnair", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10983, + "callsign": "AIRIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RIS", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Services", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10984, + "callsign": "AERIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RIS", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeris Gestion", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10985, + "callsign": "RIAU AIR", + "codeHub": "PKU", + "codeIataAirline": "", + "codeIcaoAirline": "RIU", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Riau Airlines", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 10986, + "callsign": "RIVIERA", + "codeHub": "CDG", + "codeIataAirline": "", + "codeIcaoAirline": "RIV", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "APG Airlines", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 10987, + "callsign": "ASTANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RIV", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Vip", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10988, + "callsign": "RECTRIX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RIX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rectrix Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10989, + "callsign": "COLUMBIA JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RJC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Richmor Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10990, + "callsign": "REYNOLDS JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RJE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Reynolds Jet Management", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10991, + "callsign": "RUFIJI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RJK", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rufiji Airlines", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10992, + "callsign": "MILLEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RJM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "The Millen", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10993, + "callsign": "MELITA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RJR", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air CM Global", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10994, + "callsign": "ASERJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RJS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicios Jet", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10995, + "callsign": "RA JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RJT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RA Jet Aeroservicios", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 10996, + "callsign": "JORDAN AIR FORCE", + "codeHub": "ADJ", + "codeIataAirline": "", + "codeIcaoAirline": "RJZ", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Jordanian Air Force", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 10997, + "callsign": "DAS CONGO", + "codeHub": "FIH", + "codeIataAirline": "", + "codeIcaoAirline": "RKC", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Das Airlines", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 10998, + "callsign": "", + "codeHub": "RKT", + "codeIataAirline": "", + "codeIcaoAirline": "RKM", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Dana Executive Jets", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 10999, + "callsign": "KANION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RKN", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shakh Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11000, + "callsign": "AEROCLIP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RKP", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroclip", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11001, + "callsign": "ROCKAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RKR", + "codeIso2Country": "MG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rockair, Soci�t�", + "nameCountry": "Madagascar", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11002, + "callsign": "ROCKET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RKT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rotormotion", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11003, + "callsign": "ROCKWELL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RKW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rockwell Collins Avionics", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11004, + "callsign": "HIWAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Highland Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11005, + "callsign": "RUSHAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLC", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avial", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11006, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Real Aeroclub de Lleida", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11007, + "callsign": "ANJOU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLI", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "R Lines", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11008, + "callsign": "RELIANT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Reliant Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11009, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLK", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Nelson", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11010, + "callsign": "AEROLEONE", + "codeHub": "FNA", + "codeIataAirline": "", + "codeIcaoAirline": "RLL", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Leone", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11011, + "callsign": "ROYAL AMERICAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal American Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11012, + "callsign": "", + "codeHub": "CMB", + "codeIataAirline": "", + "codeIcaoAirline": "RLN", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lankan Cargo", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11013, + "callsign": "AERO LANKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLN", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Lanka", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11014, + "callsign": "RUSLAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLN", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ruslan Airline", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11015, + "callsign": "REVILO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLO", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Revilo Aerospace", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11016, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLP", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlinair", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11017, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AirNow", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11018, + "callsign": "RATTLER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Airfreight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11019, + "callsign": "", + "codeHub": "UUWM", + "codeIataAirline": "", + "codeIcaoAirline": "RLS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S-Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11020, + "callsign": "S-AIRLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S-Air", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11021, + "callsign": "RIGA INSTITUTWE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLS", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Riga Aeronatical Institute", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11022, + "callsign": "REAL TONGA", + "codeHub": "TBU", + "codeIataAirline": "", + "codeIcaoAirline": "RLT", + "codeIso2Country": "TO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Real Tonga Airline", + "nameCountry": "Tonga", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11023, + "callsign": "RELIANT", + "codeHub": "YIP", + "codeIataAirline": "", + "codeIcaoAirline": "RLT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Reliant Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11024, + "callsign": "REAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLV", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Real Aviation", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11025, + "callsign": "AEROLUX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLX", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolux Air Company", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11026, + "callsign": "LOYAUTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLY", + "codeIso2Country": "NC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Loyaute", + "nameCountry": "New Caledonia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11027, + "callsign": "YASI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLY", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Yasi", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11028, + "callsign": "ALIZE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RLZ", + "codeIso2Country": "NC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Alize", + "nameCountry": "New Caledonia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11029, + "callsign": "ROCKY MOUNTAIN", + "codeHub": "KDEN", + "codeIataAirline": "", + "codeIcaoAirline": "RMA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rocky Mountain Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11030, + "callsign": "READYMIX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RMC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RMC Group Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11031, + "callsign": "AIR AMDER", + "codeHub": "NKC", + "codeIataAirline": "", + "codeIcaoAirline": "RMD", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Amder", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11032, + "callsign": "ANGKASA", + "codeHub": "WMKF", + "codeIataAirline": "", + "codeIcaoAirline": "RMF", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Malaysian Air Force", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11033, + "callsign": "RUMUGU AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RMG", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rumugu Air & Space Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11034, + "callsign": "POINT AIRLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RMI", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Point Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11035, + "callsign": "SIMRIK AIR", + "codeHub": "KTM", + "codeIataAirline": "", + "codeIcaoAirline": "RMK", + "codeIso2Country": "NP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Simrik Airlines", + "nameCountry": "Nepal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11036, + "callsign": "RUSAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RMK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rusavia, International Aviatransport Corporation", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11037, + "callsign": "AIROM FLYER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RMM", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AiRom 2000", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11038, + "callsign": "ROMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RMN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RM Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11039, + "callsign": "RAINMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RMN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Classic Flight Training Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11040, + "callsign": "", + "codeHub": "RYB", + "codeIataAirline": "", + "codeIcaoAirline": "RMO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saturn Aviakompania", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11041, + "callsign": "RYBMOTORS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RMO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rybinsk Motors", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11042, + "callsign": "ARM-AERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RMO", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arm-Aero", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11043, + "callsign": "SERAMSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RMP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios de Rampa Y Mostrador", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11044, + "callsign": "AIRMORIQUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RMQ", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Armorique", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11045, + "callsign": "ROMAERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RMR", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Romaero", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11046, + "callsign": "TASS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RMS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAS Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11047, + "callsign": "RAM FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RMT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RAM Aircraft Corpration", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11048, + "callsign": "AIR-MAUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RMU", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "C.S.P., Societe", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11049, + "callsign": "AEROMAVIA", + "codeHub": "OTP", + "codeIataAirline": "", + "codeIcaoAirline": "RMV", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Romavia", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11050, + "callsign": "AEROMAX", + "codeHub": "PDV", + "codeIataAirline": "", + "codeIcaoAirline": "RMX", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Max", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11051, + "callsign": "ROSBALT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RNB", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rosneft-Baltika", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11052, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RNB", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rosneft Baltika", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11053, + "callsign": "RUTLAND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RND", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rutland Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11054, + "callsign": "ORANGE", + "codeHub": "AMS", + "codeIataAirline": "", + "codeIcaoAirline": "RNG", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orange Aircraft Leasing", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11055, + "callsign": "AERONEM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RNM", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronem, Air Cargo", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11056, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RNN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11057, + "callsign": "RUNNER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RNR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cargo Masters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11058, + "callsign": "SARA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RNS", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S.A.R. Avions Taxis", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11059, + "callsign": "RONSO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RNS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ronso", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11060, + "callsign": "RENTAVION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RNT", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rentavion", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11061, + "callsign": "ARMAVIA", + "codeHub": "EVN", + "codeIataAirline": "", + "codeIcaoAirline": "RNV", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Armavia", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11062, + "callsign": "NEXT TIME", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RNX", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronexus Corporate", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11063, + "callsign": "ATOMWAYS", + "codeHub": "OTP", + "codeIataAirline": "", + "codeIcaoAirline": "ROA", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atom Airways", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11064, + "callsign": "HIGHER GROUND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROB", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "African Inter. Airways", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11065, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rocky Mountain Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11066, + "callsign": "AERODAN", + "codeHub": "SLW", + "codeIataAirline": "", + "codeIcaoAirline": "ROD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerodan", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11067, + "callsign": "ROADRUNNER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Copper State Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11068, + "callsign": "ESTE-BOLIVIA", + "codeHub": "SRZ", + "codeIataAirline": "", + "codeIcaoAirline": "ROE", + "codeIso2Country": "BO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroeste", + "nameCountry": "Bolivia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11069, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROF", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AeroFrance", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11070, + "callsign": "ROMAF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROF", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Romanian Air Force", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11071, + "callsign": "REGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROG", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fundacion Rego", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11072, + "callsign": "ROGEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sergio Gonzales Rogel", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11073, + "callsign": "AEROGEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROH", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Gen", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11074, + "callsign": "RED ROCK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11075, + "callsign": "AEROEL", + "codeHub": "TLV", + "codeIataAirline": "", + "codeIcaoAirline": "ROL", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroel Airways", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11076, + "callsign": "AEROITALIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROO", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroitalia", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11077, + "callsign": "AERO RIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Roa", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11078, + "callsign": "", + "codeHub": "MCT", + "codeIataAirline": "", + "codeIcaoAirline": "ROP", + "codeIso2Country": "OM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Oman Police Aviation", + "nameCountry": "Oman", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11079, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROP", + "codeIso2Country": "OM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Oman Police", + "nameCountry": "Oman", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11080, + "callsign": "RORAIMA", + "codeHub": "OGL", + "codeIataAirline": "", + "codeIcaoAirline": "ROR", + "codeIso2Country": "GY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Roraima Airways", + "nameCountry": "Guyana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11081, + "callsign": "CATCHER", + "codeHub": "LEY", + "codeIataAirline": "", + "codeIcaoAirline": "ROS", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rossair Europe", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11082, + "callsign": "LINDOS AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROS", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "F.A.S. Rhodos Pilots Academy", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11083, + "callsign": "ROMAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROS", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ATS-Aviation Transport Services", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11084, + "callsign": "ROUTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROU", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Routair Flying Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11085, + "callsign": "ROBINSON CRUSOE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROU", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos I.R. Crusoe", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11086, + "callsign": "ROTORWING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROW", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nor Aviation", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11087, + "callsign": "SKY DIVE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROY", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Roy Ritter Sky Dive", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11088, + "callsign": "PAXROY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROY", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Royale Airways", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11089, + "callsign": "ROSE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ROZ", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rose Air", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11090, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RPA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Republic Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11091, + "callsign": "AIRPASS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RPA", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Provence Aero Service", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11092, + "callsign": "AEROPACSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RPC", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropacsa", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11093, + "callsign": "PARADISEAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RPI", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Paradise Air", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11094, + "callsign": "COBALT", + "codeHub": "TEB", + "codeIataAirline": "", + "codeIcaoAirline": "RPM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Polaris Aviation Solutions", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11095, + "callsign": "", + "codeHub": "CRP", + "codeIataAirline": "", + "codeIcaoAirline": "RPN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United States Department of Homeland Security", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11096, + "callsign": "REPATRIATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RPN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "US Immigration and Custom Enforcement", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11097, + "callsign": "AEROPOSTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RPO", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroposta", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11098, + "callsign": "AEROPAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RPR", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicios Paraguana C.A. Aeropar", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11099, + "callsign": "AEROPROFESIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RPR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Administracion Profesional de Aeronaves", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11100, + "callsign": "RESPONSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RPS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Response North", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11101, + "callsign": "RESPONSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RPS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11102, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RPT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11103, + "callsign": "RAPEX", + "codeHub": "LGW", + "codeIataAirline": "", + "codeIcaoAirline": "RPX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "HD Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11104, + "callsign": "RAPEX", + "codeHub": "LGW", + "codeIataAirline": "", + "codeIcaoAirline": "RPX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BAC Express Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11105, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RPX", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "hdair.com", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11106, + "callsign": "ROYALE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RQA", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royale Airlines International", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11107, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RQR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11108, + "callsign": "AIR QUEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RQT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airquest Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11109, + "callsign": "ROYAL RWANDA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RRA", + "codeIso2Country": "RW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Rwanda Airlines", + "nameCountry": "Rwanda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11110, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RRB", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Club de Castellon", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11111, + "callsign": "AEROROCA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RRC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Roca", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11112, + "callsign": "AERO TORREON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RRE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotransportes Internacionales de Torreon", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11113, + "callsign": "KITTY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RRF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UK Royal Positioning Flights", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11114, + "callsign": "RUFA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RRK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asia Continental Avialines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11115, + "callsign": "MERLIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RRL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rolls Royce", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11116, + "callsign": "", + "codeHub": "EVN", + "codeIataAirline": "", + "codeIcaoAirline": "RRN", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ararat International Airlines", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "restarting", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11117, + "callsign": "ARARAT AIRLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RRN", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ararat International Airline", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11118, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RRO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocredo", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11119, + "callsign": "ASCOT/KITTYHAWK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RRR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RAF-HQSTC (Air Transport)", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11120, + "callsign": "BLACKBOX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RRS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RAE Bedford (RRS)", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11121, + "callsign": "BLACKBOX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RRS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Boscombe Down DERA (Formation)", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11122, + "callsign": "SIERRA ALTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RRT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos Sierra Alta", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11123, + "callsign": "HELICIRRUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RRU", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cirrus", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11124, + "callsign": "SKYROVER", + "codeHub": "MBA", + "codeIataAirline": "", + "codeIcaoAirline": "RRV", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mombasa Air Safari", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11125, + "callsign": "ROYAL BENGAL", + "codeHub": "DAC", + "codeIataAirline": "", + "codeIcaoAirline": "RRY", + "codeIso2Country": "BD", + "founding": 2006, + "iataPrefixAccounting": "", + "nameAirline": "Royal Bengal Airways", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11126, + "callsign": "ROLLRIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RRZ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rollright Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11127, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSA", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Service Affaires", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11128, + "callsign": "ESRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSA", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elisra Airlines", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11129, + "callsign": "RUBYSTAR", + "codeHub": "MSQ", + "codeIataAirline": "", + "codeIcaoAirline": "RSB", + "codeIso2Country": "BY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rubystar", + "nameCountry": "Belarus", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11130, + "callsign": "TARASCAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Ejecutivas Tarascas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11131, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canarias Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11132, + "callsign": "", + "codeHub": "VKO", + "codeIataAirline": "", + "codeIcaoAirline": "RSD", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SLO Rossiya", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11133, + "callsign": "AIRSIDE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airside Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11134, + "callsign": "STATE AERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSD", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Special Detachment - Russia, Federal State Budget Institution", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11135, + "callsign": "RED SEA", + "codeHub": "RUH", + "codeIataAirline": "", + "codeIcaoAirline": "RSE", + "codeIso2Country": "SA", + "founding": 0, + "iataPrefixAccounting": "952", + "nameAirline": "SNAS Aviation", + "nameCountry": "Saudi Arabia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11136, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSE", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SNAS Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11137, + "callsign": "ARSAF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSF", + "codeIso2Country": "SA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Saudi Air Force", + "nameCountry": "Saudi Arabia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11138, + "callsign": "SERVO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSG", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Services", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11139, + "callsign": "RUSJET", + "codeHub": "VKO", + "codeIataAirline": "", + "codeIcaoAirline": "RSJ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rusjet", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11140, + "callsign": "REDSKIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DSWA", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11141, + "callsign": "PANAMA RENTAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSL", + "codeIso2Country": "PA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Panama Aircraft Rental and Sales", + "nameCountry": "Panama", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11142, + "callsign": "AIR SOMALIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSM", + "codeIso2Country": "SO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Somalia", + "nameCountry": "Somalia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11143, + "callsign": "", + "codeHub": "MTS", + "codeIataAirline": "", + "codeIcaoAirline": "RSN", + "codeIso2Country": "SZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Swazi National Airlines", + "nameCountry": "Swaziland", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11144, + "callsign": "RED STRIPE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetsuite Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11145, + "callsign": "RASPET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Raspet Flight Research Laboratory", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11146, + "callsign": "SKYMEDIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSQ", + "codeIso2Country": "NA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International SOS Windhoek", + "nameCountry": "Namibia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11147, + "callsign": "ROSS CHARTER", + "codeHub": "HLA", + "codeIataAirline": "", + "codeIcaoAirline": "RSS", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rossair", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11148, + "callsign": "RESORT AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RST", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Resort Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11149, + "callsign": "RED SKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSV", + "codeIso2Country": "NA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Red Sky Ventures", + "nameCountry": "Namibia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11150, + "callsign": "SERNOU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSV", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Services", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11151, + "callsign": "ROYAL SKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSW", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Skyways", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11152, + "callsign": "AIR SWITERLAND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSW", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Switzerland", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11153, + "callsign": "HUNSER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RSZ", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Service State Company", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11154, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RTA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11155, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RTC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11156, + "callsign": "", + "codeHub": "LGA", + "codeIataAirline": "", + "codeIcaoAirline": "RTD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "L-3 Communications", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11157, + "callsign": "RIPTIDE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RTD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "L-3 Communications Flight International Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11158, + "callsign": "", + "codeHub": "BGZ", + "codeIataAirline": "", + "codeIcaoAirline": "RTE", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronorte", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11159, + "callsign": "LUZAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RTE", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronorte - Transportes Aereos", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11160, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RTF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ruta", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11161, + "callsign": "REITAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RTG", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rely", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11162, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RTH", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rotorsun", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11163, + "callsign": "ROTORITALIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RTI", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rotor Italia S.A.S. Di Vanni Claudio E.C.", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11164, + "callsign": "ROTKO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RTK", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rotkopf Aviation Italia", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11165, + "callsign": "RAYTHEON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RTN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Raytheon Aircraft Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11166, + "callsign": "RACCOON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RTO", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rectimo Air Transports", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11167, + "callsign": "ARTOAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RTO", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Arhabaev Tourism Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11168, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RTP", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11169, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "RTR", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Trust (Kazakhstan)", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11170, + "callsign": "AIR TRUST", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "RTR", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Trust", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11171, + "callsign": "RELIEF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RTS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Relief Transport Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11172, + "callsign": "RUSTITAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RTT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Titan Aero Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11173, + "callsign": "AEROTUCAN", + "codeHub": "OAX", + "codeIataAirline": "", + "codeIcaoAirline": "RTU", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotucan", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11174, + "callsign": "TIC-TAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RTV", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nortavia", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11175, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RTX", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11176, + "callsign": "AEROTUZLA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RTZ", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Air Services", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11177, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RUA", + "codeIso2Country": "RW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rwanda Airlines", + "nameCountry": "Rwanda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11178, + "callsign": "OVERNIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RUA", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Russow Aviation", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11179, + "callsign": "", + "codeHub": "CBL", + "codeIataAirline": "", + "codeIcaoAirline": "RUC", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11180, + "callsign": "ANASTASIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RUD", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Anastasia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11181, + "callsign": "ROUGH RIDER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RUF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air 1st Aviation Companies of Oklahoma", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11182, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RUH", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rusich-T", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11183, + "callsign": "", + "codeHub": "AMM", + "codeIataAirline": "", + "codeIcaoAirline": "RUM", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Rum", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11184, + "callsign": "AIR RUM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RUM", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Rum", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11185, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RUR", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Russ Air Transport Company", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11186, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RUR", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RusAero", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11187, + "callsign": "RUSSTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RUR", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Russair", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11188, + "callsign": "", + "codeHub": "SCN", + "codeIataAirline": "", + "codeIcaoAirline": "RUS", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cirrus Aviation", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11189, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RUS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Atlas", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11190, + "callsign": "ROUTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RUT", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Routair Aviation Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11191, + "callsign": "YADID", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RUT", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Reut Airways", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11192, + "callsign": "ROSTUERTOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RUZ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rosuertol", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11193, + "callsign": "RAVEN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RVA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Raven Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11194, + "callsign": "RIVER CITY", + "codeHub": "MEM", + "codeIataAirline": "", + "codeIcaoAirline": "RVC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Richards Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11195, + "callsign": "AIRVENTURE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RVE", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airventure", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11196, + "callsign": "AERO VINA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RVG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotours La Vina", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11197, + "callsign": "AERO SERVICIOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RVI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Servicios", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11198, + "callsign": "RIVERS JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RVJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircraft Management Group", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11199, + "callsign": "RIVER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RVM", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "River Ministries Air Charter Services", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11200, + "callsign": "RAVEN U-S", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RVN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Raven Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11201, + "callsign": "REVA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RVQ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Jet International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11202, + "callsign": "RAVEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RVR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Raven Air Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11203, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RVS", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Service", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11204, + "callsign": "AIR-VET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RVT", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircompany Veteran", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11205, + "callsign": "ROSTVERTOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RVT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rostvertol-Avia Airline", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11206, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RVT", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Veteran Avia", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11207, + "callsign": "GEORGIAN BALLOON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RVU", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "First Aeronautic Club", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11208, + "callsign": "GEORGIAN BALLOON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RVU", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Travel", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11209, + "callsign": "RIVER VALLEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RVY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Clarksville Flying Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11210, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RWA", + "codeIso2Country": "RW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rwanda Airways", + "nameCountry": "Rwanda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11211, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RWB", + "codeIso2Country": "RW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alliance Express", + "nameCountry": "Rwanda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11212, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RWC", + "codeIso2Country": "RW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rwandair Cargo, Soci�t�", + "nameCountry": "Rwanda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11213, + "callsign": "ROYAL WEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RWE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal West Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11214, + "callsign": "", + "codeHub": "ELP", + "codeIataAirline": "", + "codeIcaoAirline": "RWG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "C & M Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11215, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RWG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "C & M Airways", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11216, + "callsign": "RED WING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RWG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "C & M Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11217, + "callsign": "AIRAWAK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RWK", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Tourisme Instruction Services", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11218, + "callsign": "RHEINTRAINER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RWL", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RWL", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11219, + "callsign": "ROHAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RWN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Red Wings", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11220, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RWS", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Whitsunday", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11221, + "callsign": "TYNWALD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RWY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerogroup", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11222, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RXA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Regional Express 2", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11223, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RXA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rex Regional Express", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11224, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RXC", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Federation of Red Cross And Red Crescent Societies (IFRC)", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11225, + "callsign": "REMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RXM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Remex", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11226, + "callsign": "ROY EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RXP", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Aviation Express", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11227, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RXP", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RAM Express", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11228, + "callsign": "EXPRESS MAROC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RXP", + "codeIso2Country": "MA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RAM Express", + "nameCountry": "Morocco", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11229, + "callsign": "AERO-EXTRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RXT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroxtra", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11230, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RXX", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "King Air Charter", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11231, + "callsign": "REX AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RXX", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Express Air Charter", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11232, + "callsign": "RYAN AIR", + "codeHub": "ANI", + "codeIataAirline": "", + "codeIcaoAirline": "RYA", + "codeIso2Country": "US", + "founding": 1953, + "iataPrefixAccounting": "", + "nameAirline": "Ryan Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11233, + "callsign": "ROYAL BAHRAIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RYB", + "codeIso2Country": "BH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Bahrain Airlines", + "nameCountry": "Bahrain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11234, + "callsign": "", + "codeHub": "AGP", + "codeIataAirline": "", + "codeIcaoAirline": "RYJ", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ryjet", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11235, + "callsign": "RYJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RYJ", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis del Mediterraneo", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11236, + "callsign": "RYMER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RYM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Express", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11237, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RYT", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Raya Jet", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11238, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RYT", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Jet", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11239, + "callsign": "RYAZAN", + "codeHub": "RZN", + "codeIataAirline": "", + "codeIcaoAirline": "RYZ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ryazanaviatrans", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11240, + "callsign": "", + "codeHub": "HRE", + "codeIataAirline": "", + "codeIcaoAirline": "RZA", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Zimbabwe Airlines", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "start_up", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11241, + "callsign": "RAZOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RZA", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Fighter Flights", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11242, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RZA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Zimbabwe Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11243, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11244, + "callsign": "ZANO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RZN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Zano", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11245, + "callsign": "RIZON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RZQ", + "codeIso2Country": "QA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rizon Qatar", + "nameCountry": "Qatar", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11246, + "callsign": "RECOVERY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RZR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zephyr Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11247, + "callsign": "RITZ JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RZT", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Ritz Jet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11248, + "callsign": "ZHERSU AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RZU", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zhersu Avia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11249, + "callsign": "RZHEVKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RZV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rzhevka", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11250, + "callsign": "", + "codeHub": "KANE", + "codeIataAirline": "", + "codeIcaoAirline": "RZZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Crossroads Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11251, + "callsign": "RED ZONE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "RZZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Anoka Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11252, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "S0P", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Presidential Airways", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11253, + "callsign": "", + "codeHub": "DXB", + "codeIataAirline": "", + "codeIcaoAirline": "SAB", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Way Air", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11254, + "callsign": "SKY WORKER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAB", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Way Air", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11255, + "callsign": "", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "SAC", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SASCO Air Lines", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11256, + "callsign": "SASCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAC", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sudanese Aeronautical Services", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11257, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAD", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos de La Capital", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11258, + "callsign": "INDASTRIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAD", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Spets Avia Indastria", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11259, + "callsign": "SAMPOERNA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAE", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sampoerna Air Nusantara", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11260, + "callsign": "TAMARA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAE", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tamara (Tana & Mara Aviation)", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11261, + "callsign": "SINGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAF", + "codeIso2Country": "SG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Republic Of Singapore Air Force", + "nameCountry": "Singapore", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11262, + "callsign": "MEDICAL AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAG", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SOS Flygambulans", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11263, + "callsign": "SMART JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAH", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Smart Aero Solutions", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11264, + "callsign": "SAJEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAJ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Golden Eagle Air Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11265, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAJ", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Success Aviation Services", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11266, + "callsign": "RED ARROWS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Red Arrows Display Squadron", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11267, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11268, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAL", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sociedad Aeronautica Peninsular", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11269, + "callsign": "SAM", + "codeHub": "EOH", + "codeIataAirline": "", + "codeIcaoAirline": "SAM", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SAM Colombia", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11270, + "callsign": "SAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United States Air Force 89th Airlift Wing", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11271, + "callsign": "SAVSER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAO", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sahel Aviation Service", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11272, + "callsign": "ASAP AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asap Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11273, + "callsign": "SARDAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAP", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sardairline", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11274, + "callsign": "SPRINGBANK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAQ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Springbank Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11275, + "callsign": "SPRINTAIR CARGO", + "codeHub": "WAW", + "codeIataAirline": "", + "codeIcaoAirline": "SAR", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SprintAir Cargo", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11276, + "callsign": "SAPEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAR", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Die Pilotos Ejecutivos", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11277, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sakhalin Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11278, + "callsign": "UNISERVE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAU", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United Aviation Services", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11279, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "SAV", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Samal Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11280, + "callsign": "SUNAIR", + "codeHub": "TRG", + "codeIataAirline": "", + "codeIcaoAirline": "SAV", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunair Aviation", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11281, + "callsign": "SANAIR LINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAV", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sanair", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11282, + "callsign": "SAWA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAW", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vilga-Aviaservise", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11283, + "callsign": "SABAH AIR", + "codeHub": "BKI", + "codeIataAirline": "", + "codeIcaoAirline": "SAX", + "codeIso2Country": "MY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sabah Air", + "nameCountry": "Malaysia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11284, + "callsign": "SUCKLING", + "codeHub": "CBG", + "codeIataAirline": "", + "codeIcaoAirline": "SAY", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ScotAirways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11285, + "callsign": "SWISS AMBULANCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SAZ", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swiss Air-Ambulance", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11286, + "callsign": "STA-MALI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBA", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S T A - Mali", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11287, + "callsign": "SBAER EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Steinman Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11288, + "callsign": "STARBORNE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBC", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Borne Chartering", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11289, + "callsign": "SIBIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBD", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sibia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11290, + "callsign": "STARBASE", + "codeHub": "EFD", + "codeIataAirline": "", + "codeIcaoAirline": "SBE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Starbase Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11291, + "callsign": "STARBASE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "World Class Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11292, + "callsign": "", + "codeHub": "DAL", + "codeIataAirline": "", + "codeIcaoAirline": "SBF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SB Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11293, + "callsign": "S-BAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Seven Bar Flying Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11294, + "callsign": "AEROSAAB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBH", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerosaab", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11295, + "callsign": "TRANS SAHARA", + "codeHub": "KAN", + "codeIataAirline": "", + "codeIcaoAirline": "SBJ", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Sahara Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11296, + "callsign": "", + "codeHub": "MBA", + "codeIataAirline": "", + "codeIcaoAirline": "SBK", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Sky Aviation Services (Kenya)", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11297, + "callsign": "", + "codeHub": "ULY", + "codeIataAirline": "", + "codeIcaoAirline": "SBK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Simbirsk-Aero", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11298, + "callsign": "MAWINGU", + "codeHub": "WIL", + "codeIataAirline": "", + "codeIcaoAirline": "SBK", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue sky Aviation Services", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11299, + "callsign": "", + "codeHub": "ACC", + "codeIataAirline": "", + "codeIcaoAirline": "SBL", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sobel Air", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11300, + "callsign": "SHORT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Short Brothers", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11301, + "callsign": "SUNKAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBM", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Syr Sunkary", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11302, + "callsign": "SKYBOSNIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBN", + "codeIso2Country": "BA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skybosnia", + "nameCountry": "Bosnia and Herzegovina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11303, + "callsign": "SABANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBN", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sabana Airlines", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11304, + "callsign": "SHAHIN BALL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBP", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shahin Ball Parvaz", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11305, + "callsign": "SKIBBLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBQ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Smithkline Beacham Clinical Labs", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11306, + "callsign": "FREIGHTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saber Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11307, + "callsign": "NARSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Barsa", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11308, + "callsign": "", + "codeHub": "THR", + "codeIataAirline": "", + "codeIcaoAirline": "SBT", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taftan Air Lines", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "restarting", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11309, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBT", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taftan Air", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11310, + "callsign": "TAFTAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBT", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taftan Airlines", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11311, + "callsign": "", + "codeHub": "SBH", + "codeIataAirline": "", + "codeIcaoAirline": "SBU", + "codeIso2Country": "BL", + "founding": 1995, + "iataPrefixAccounting": "", + "nameAirline": "Saint Barth Commuter", + "nameCountry": "Saint Barthelemy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11312, + "callsign": "BLACK FIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBU", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saint Barth Commuter", + "nameCountry": "St. Barthelemy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11313, + "callsign": "", + "codeHub": "EXT", + "codeIataAirline": "", + "codeIcaoAirline": "SBV", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyblue Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11314, + "callsign": "RIPPLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBV", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyblue Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11315, + "callsign": "SNOWMAN", + "codeHub": "HEL", + "codeIataAirline": "", + "codeIcaoAirline": "SBW", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Snowbird Airlines", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 11316, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBW", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Snowbird Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11317, + "callsign": "SKY BOX", + "codeHub": "MKE", + "codeIataAirline": "", + "codeIcaoAirline": "SBX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Star Air Cargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11318, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBX", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Star Air Cargo", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11319, + "callsign": "BRANDY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBY", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BFS Berliner Spezial Flug, Luftfahrtunternehen", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11320, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SBZ", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Scibe Airlift", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11321, + "callsign": "SEA-COASTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Seacoast Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11322, + "callsign": "SPACE CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCF", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Space Cargo", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11323, + "callsign": "SOCOFER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCF", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Socofer", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11324, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCG", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Carrier", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11325, + "callsign": "SITRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCG", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sitra Cargo System", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11326, + "callsign": "", + "codeHub": "SEZ", + "codeIataAirline": "", + "codeIcaoAirline": "SCH", + "codeIso2Country": "SC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Seychelles Airlines", + "nameCountry": "Seychelles", + "sizeAirline": 0, + "statusAirline": "start_up", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11327, + "callsign": "SHARE PLANE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCH", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Scenic Air", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11328, + "callsign": "SAN CRISTOBAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos San Cristobal", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11329, + "callsign": "SIAMJET", + "codeHub": "BKK", + "codeIataAirline": "", + "codeIcaoAirline": "SCJ", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SiamJet Airlines", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11330, + "callsign": "SCANJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCJ", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Business Jet Sweden", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11331, + "callsign": "SKYCAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCK", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Cam", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11332, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCK", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skycam Helicopteres Sarl", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11333, + "callsign": "SHELL CANADA", + "codeHub": "YYC", + "codeIataAirline": "", + "codeIcaoAirline": "SCL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shell Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11334, + "callsign": "SWIFTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swiftair Cargo", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11335, + "callsign": "SCREAMER", + "codeHub": "HOU", + "codeIataAirline": "", + "codeIcaoAirline": "SCM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "American Jet International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11336, + "callsign": "AEROCARGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Servicio de Carga Mexicana", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11337, + "callsign": "SOUTH AMERICAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCN", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South American Airlines", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11338, + "callsign": "SKY COPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCP", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopter.pl", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11339, + "callsign": "SCAVAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCQ", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BF Scandinavian Aviation Academy", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11340, + "callsign": "SILVER CLOUD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCR", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silver Cloud Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11341, + "callsign": "SICHART", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCR", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Si-Chang Flying Service", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11342, + "callsign": "SOUTHERN CHARTERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCS", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Charters (South African Non Schedules Airways", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11343, + "callsign": "", + "codeHub": "LPI", + "codeIataAirline": "", + "codeIcaoAirline": "SCT", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saab", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "manufacturer" + }, + { + "ageFleet": 0.0, + "airlineId": 11344, + "callsign": "SAAB-CRAFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCT", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saab-Scania", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11345, + "callsign": "SAAB-CRAFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCT", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saab-Aircraft", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11346, + "callsign": "SCORPIO UNIVERS", + "codeHub": "SOF", + "codeIataAirline": "", + "codeIcaoAirline": "SCU", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Scorpio", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11347, + "callsign": "", + "codeHub": "MEX", + "codeIataAirline": "", + "codeIcaoAirline": "SCV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos del Centro", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11348, + "callsign": "SACSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Del Centro.", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11349, + "callsign": "AIRSCAN", + "codeHub": "MAN", + "codeIataAirline": "", + "codeIcaoAirline": "SCY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Scandic", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11350, + "callsign": "", + "codeHub": "POG", + "codeIataAirline": "", + "codeIcaoAirline": "SCY", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SCD Aviation", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11351, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SCZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11352, + "callsign": "SAINT ANDREWS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "St. Andrews Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11353, + "callsign": "", + "codeHub": "BDR", + "codeIataAirline": "", + "codeIcaoAirline": "SDB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shoreline Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11354, + "callsign": "SU-CRAFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDB", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sukhoi Design Bureau Company", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11355, + "callsign": "SUNDANCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunrise Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11356, + "callsign": "SKY DANCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skymaster Air Taxi", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11357, + "callsign": "STAMPEDE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDE", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Partners Corp", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11358, + "callsign": "SUNDORPH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sundorph Aeronautical", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11359, + "callsign": "AEROSIERRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerosierra de Durango", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11360, + "callsign": "ARCOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDH", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicio de Helicopteros", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11361, + "callsign": "SERVI DINAMIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Dinamicos De Aviacion", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11362, + "callsign": "SPACEJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Club 328", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11363, + "callsign": "", + "codeHub": "VVC", + "codeIataAirline": "", + "codeIcaoAirline": "SDK", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SADELCA - Sociedad Aerea del Caqueta", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11364, + "callsign": "SADELCA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDK", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SADELCA Colombia - Sociedad Aerea Del Caqueta", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11365, + "callsign": "", + "codeHub": "ESH", + "codeIataAirline": "", + "codeIcaoAirline": "SDL", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skysouth", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11366, + "callsign": "", + "codeHub": "NWI", + "codeIataAirline": "", + "codeIcaoAirline": "SDL", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skydrift Air Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11367, + "callsign": "SKYDRIFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skydrift", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11368, + "callsign": "", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "SDN", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Spirit of Africa Airlines", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11369, + "callsign": "BLUE NILE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDN", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Spirt of Africa Airlines", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11370, + "callsign": "AERO DOMINGO", + "codeHub": "MDHE", + "codeIataAirline": "", + "codeIcaoAirline": "SDO", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Santo Domingo", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11371, + "callsign": "SUDPACIFICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Sudpacifico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11372, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDQ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicio y Mantenimiento Tecnico DQ", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11373, + "callsign": "SOUNDIAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soundair Express", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11374, + "callsign": "STANDARDS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CAA Training Standards", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11375, + "callsign": "TERRAIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Terrain Sdp", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11376, + "callsign": "SUD LINES", + "codeHub": "MRS", + "codeIataAirline": "", + "codeIcaoAirline": "SDU", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sud Airlines", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11377, + "callsign": "", + "codeHub": "VVC", + "codeIataAirline": "", + "codeIcaoAirline": "SDV", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SELVA - Servicios Aereos del Vaupes", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11378, + "callsign": "SELVA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDV", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Selva Colombia - Servicios Aereos Del Vaupes", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11379, + "callsign": "SERVICIO TECNICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicio Tecnico Aero de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11380, + "callsign": "", + "codeHub": "FLL", + "codeIataAirline": "", + "codeIcaoAirline": "SDY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Island Express Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11381, + "callsign": "SUDANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SDZ", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sudan Pezetel For Aviation", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11382, + "callsign": "SOUTHWEST AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southeast Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11383, + "callsign": "SERVILUCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEB", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Luce", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11384, + "callsign": "SECOAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South East College Of Air Training", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11385, + "callsign": "SEDONA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SED", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sedona Air Center", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11386, + "callsign": "SHAHEEN CARGO", + "codeHub": "ISB", + "codeIataAirline": "", + "codeIcaoAirline": "SEE", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "587", + "nameAirline": "Shaheen Air Cargo", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11387, + "callsign": "SERVIPACIFICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEF", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Servicios Ejecutivas Del Pacifico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11388, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEG", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyline", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11389, + "callsign": "SEN-EAGLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEG", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eagle International", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11390, + "callsign": "SEA HAWK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEH", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Waglisla Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11391, + "callsign": "TRANSORTE SIERRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aeros Sierra Madre", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11392, + "callsign": "", + "codeHub": "LIM", + "codeIataAirline": "", + "codeIcaoAirline": "SEJ", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SAE Cargo Peru", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11393, + "callsign": "EJECUTIVO PERU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEJ", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicio Aereo Ejecutivo (SAE)", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11394, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "SEK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyjet (Kazakhstan)", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11395, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Jet", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11396, + "callsign": "SECA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEK", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Societe SECA", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11397, + "callsign": "SELECTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Selectair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11398, + "callsign": "SENTEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sentel Corporation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11399, + "callsign": "SEMO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cape Central Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11400, + "callsign": "SENEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Senair Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11401, + "callsign": "SELCON AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEO", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Selcon Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11402, + "callsign": "SIERRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SER", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sierra West Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11403, + "callsign": "SERVISAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SES", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicio Aereo Saltillo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11404, + "callsign": "SERAIR", + "codeHub": "LPA", + "codeIataAirline": "", + "codeIcaoAirline": "SEV", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Serair", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11405, + "callsign": "CARGOPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEV", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Serair Transworld Press", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11406, + "callsign": "SEVAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEV", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servisair Belgium", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11407, + "callsign": "VEREYA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airvita", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11408, + "callsign": "SKYWARD EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEW", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyward Express", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11409, + "callsign": "SEC-CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SEZ", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicio Especializado de Carga Aerea (SEC)", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11410, + "callsign": "SEFA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFA", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ENAC", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11411, + "callsign": "SFERA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFA", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cirus Aero", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11412, + "callsign": "", + "codeHub": "LCA", + "codeIataAirline": "", + "codeIcaoAirline": "SFB", + "codeIso2Country": "CY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "FOS Logistics", + "nameCountry": "Cyprus", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11413, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFB", + "codeIso2Country": "BN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "His Majesty The Sultan's Flight", + "nameCountry": "Brunei", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11414, + "callsign": "SHUSWAP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shuswap Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11415, + "callsign": "DRACO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFD", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Speed Fly", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11416, + "callsign": "BLUE WATER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunsail", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11417, + "callsign": "SWIFTWINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Safewing Aviation Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11418, + "callsign": "", + "codeHub": "MIA", + "codeIataAirline": "", + "codeIcaoAirline": "SFG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "World Atlantic Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11419, + "callsign": "S�DFLUG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFG", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Suedflug S�ddeutsche Flugges", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11420, + "callsign": "STARFISH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North American Jet Charter Group", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11421, + "callsign": "SKY FRIEND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFI", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Freighters", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11422, + "callsign": "SPACE STAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Aerospace", + "nameCountry": "Korea, Republic of", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11423, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFK", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southair", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11424, + "callsign": "", + "codeHub": "BAH", + "codeIataAirline": "", + "codeIcaoAirline": "SFL", + "codeIso2Country": "BH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swiftair Bahrain", + "nameCountry": "Bahrain", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11425, + "callsign": "SOUTHFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFL", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southflight Aviation", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11426, + "callsign": "AIR SAFAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFM", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "A-Safar Air Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11427, + "callsign": "SAFIRAN", + "codeHub": "THR", + "codeIataAirline": "", + "codeIcaoAirline": "SFN", + "codeIso2Country": "IR", + "founding": 1988, + "iataPrefixAccounting": "", + "nameAirline": "Safiran Airlines", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11428, + "callsign": "SAFE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFP", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Safe Air International", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11429, + "callsign": "SOUTHERN FRONTIER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFS", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Frontier Air Transport", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11430, + "callsign": "TOPO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFS", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swiss Flight Services", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11431, + "callsign": "SKYFREIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyfreight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11432, + "callsign": "SAINTS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFU", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Solent Flight", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11433, + "callsign": "SAFE SERVICIOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Safe Servicios Aereos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11434, + "callsign": "SWAMP FOX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S.K. Logistics", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11435, + "callsign": "SKY FLITE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SFY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gulf Flite Center", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11436, + "callsign": "SKYFORCE", + "codeHub": "BWU", + "codeIataAirline": "", + "codeIcaoAirline": "SFZ", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyforce Aviation", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11437, + "callsign": "AIR SAIGON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGA", + "codeIso2Country": "VN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Saigon", + "nameCountry": "Vietnam", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11438, + "callsign": "SOL URUGUAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGA", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sol Lineas Aereas Uruguayas", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11439, + "callsign": "SOUTHERNRIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGC", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Right Air Charter", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11440, + "callsign": "SOUTH GATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGE", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Gateway", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11441, + "callsign": "STAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGF", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swiss Government Flights", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11442, + "callsign": "SERVISAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servisair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11443, + "callsign": "SERAGRI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGI", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Agricolas", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11444, + "callsign": "", + "codeHub": "AMM", + "codeIataAirline": "", + "codeIcaoAirline": "SGJ", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Gate International Aviation", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11445, + "callsign": "SKYGATE AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGJ", + "codeIso2Country": "SZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skygate International", + "nameCountry": "Swaziland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11446, + "callsign": "", + "codeHub": "FRU", + "codeIataAirline": "", + "codeIcaoAirline": "SGL", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S Group Aviation", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11447, + "callsign": "SENAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGL", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Senegalair", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11448, + "callsign": "SPACEGRAND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Spacegrand", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11449, + "callsign": "SUPREME", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGL", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Supreme Aviation", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11450, + "callsign": "SIGMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGM", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Aircraft Service", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11451, + "callsign": "SOVEREIGN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Imperial Air Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11452, + "callsign": "SPACE CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGO", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Space Cargo", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11453, + "callsign": "SAGOLAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGP", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sagolair Transportes Ejecutivos", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11454, + "callsign": "SASKATCHEWAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGS", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saskatchewan Government Executive Air Service", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11455, + "callsign": "", + "codeHub": "NAP", + "codeIataAirline": "", + "codeIcaoAirline": "SGT", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sagittair", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11456, + "callsign": "STARGATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGT", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Stargate Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11457, + "callsign": "SKYGATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGT", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skygate", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11458, + "callsign": "SOLPARAGUAYO", + "codeHub": "ASU", + "codeIataAirline": "", + "codeIcaoAirline": "SGU", + "codeIso2Country": "PY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sol del Paraguay", + "nameCountry": "Paraguay", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11459, + "callsign": "SAGU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGU", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios de Aerotransportacion de Aguascalientes", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11460, + "callsign": "RAUSHAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGU", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Samgau", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11461, + "callsign": "SEGOVIA", + "codeHub": "MGA", + "codeIataAirline": "", + "codeIcaoAirline": "SGV", + "codeIso2Country": "NI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerosegovia", + "nameCountry": "Nicaragua", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11462, + "callsign": "", + "codeHub": "DKR", + "codeIataAirline": "", + "codeIcaoAirline": "SGW", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Senegal Airways", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11463, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SGX", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saga Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11464, + "callsign": "SKY HARBOR CHEYENNE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Harbor Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11465, + "callsign": "SHELL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shell Aircraft", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11466, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHE", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shell Aircraft", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11467, + "callsign": "VORTEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Support Helicopter Force", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11468, + "callsign": "SHOP AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shoprite Group", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11469, + "callsign": "AIRSHARE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airshare", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11470, + "callsign": "SEOUL AIR", + "codeHub": "GMP", + "codeIataAirline": "", + "codeIcaoAirline": "SHI", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Seoul Air International", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11471, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "SHJ", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sharjah Ruler's Flight", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11472, + "callsign": "SHARJAH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHJ", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sharjah Ruler's Royal Flight", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11473, + "callsign": "SAMSON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Samson Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11474, + "callsign": "", + "codeHub": "PLZ", + "codeIataAirline": "", + "codeIcaoAirline": "SHM", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sheltam Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11475, + "callsign": "SHELTAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHM", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sheltam Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11476, + "callsign": "SUGAR ALFA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHN", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shaheen Airport Services", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11477, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sheremetyevo-Cargo", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11478, + "callsign": "SAF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHP", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SAF Helicopteres", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11479, + "callsign": "SAF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHP", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Service Aerien Francais", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11480, + "callsign": "SHOOTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shooter Air Courier", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11481, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Airways Shuttle", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11482, + "callsign": "SHUTTLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Airways Shuttle", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11483, + "callsign": "SHAVANO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shavano Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11484, + "callsign": "SHAWNEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shawnee Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11485, + "callsign": "SLIM AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHX", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Slim Aviation Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11486, + "callsign": "ROTABIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SHZ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Scotia Helicopter Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11487, + "callsign": "SIBAVIA", + "codeHub": "KJA", + "codeIataAirline": "", + "codeIcaoAirline": "SIB", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sibaviatrans", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11488, + "callsign": "", + "codeHub": "LJU", + "codeIataAirline": "", + "codeIcaoAirline": "SIB", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sea Air (Slovenia)", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11489, + "callsign": "SEA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIB", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sea Air", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11490, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIB", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Siba", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11491, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SID", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sideral Linhas Aereas", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11492, + "callsign": "SIDFIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SID", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sidfin Air", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11493, + "callsign": "SEREX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sierra Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11494, + "callsign": "SKYCY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIF", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skycy Freighters International", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11495, + "callsign": "SIGNATURE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Signature Aircraft Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11496, + "callsign": "ASEISA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SII", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Servicios Ejecutivos Internacionales", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11497, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIJ", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Seco International", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11498, + "callsign": "", + "codeHub": "MDZ", + "codeIataAirline": "", + "codeIcaoAirline": "SIK", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silver Sky Airlines", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11499, + "callsign": "ARMADORA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIK", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Armadora", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11500, + "callsign": "SERVICIOS INTERGRALES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aeronauticos Integrales", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11501, + "callsign": "SEAISLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sea Island Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11502, + "callsign": "", + "codeHub": "AMM", + "codeIataAirline": "", + "codeIcaoAirline": "SIM", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Air (Jordan)", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11503, + "callsign": "SIMFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Simulated Flight Training", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11504, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIM", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Air", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11505, + "callsign": "SANTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIN", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Santair", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11506, + "callsign": "INFRAROSSO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIN", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servizi Aerei Industriali", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11507, + "callsign": "SINAIRLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIN", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sinair", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11508, + "callsign": "SIRIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIO", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sirio", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11509, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sirio", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11510, + "callsign": "AIR SPIRIT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Spirit", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11511, + "callsign": "SCIENCE QUEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIQ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Center for Atmospheric Research", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11512, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Salair", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11513, + "callsign": "SALAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Salair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11514, + "callsign": "SISAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIS", + "codeIso2Country": "SC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Seychelles International", + "nameCountry": "Seychelles", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11515, + "callsign": "SILVER SPEED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silver Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11516, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIS", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saber Airlines", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11517, + "callsign": "SLOVENIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIV", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Slovenian Armed Forces", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11518, + "callsign": "SIRIO EXECUTIVE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIW", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sirio Executive", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11519, + "callsign": "DRIVE ORANGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sixt Rent A Car", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11520, + "callsign": "SIYUSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIY", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerosiyusa", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11521, + "callsign": "AEROSILZA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SIZ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Silza", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11522, + "callsign": "SERVICIOJAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SJA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Especiales de Jalisco", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11523, + "callsign": "SAN JUAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SJA", + "codeIso2Country": "PR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "San Juan Airlines", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11524, + "callsign": "SERVIEJECTIVO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SJC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Ejecutivos Continental", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11525, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SJC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southend Jet Centre", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11526, + "callsign": "SUNBIZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SJE", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunair 2001", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11527, + "callsign": "SUN JOURNEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SJE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Air Jets", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11528, + "callsign": "HARMATTAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SJF", + "codeIso2Country": "NE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Skyjet", + "nameCountry": "Niger", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11529, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SJG", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Jet Airlines", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11530, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SJI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Jet International Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11531, + "callsign": "SPIRIT JET", + "codeHub": "VNY", + "codeIataAirline": "", + "codeIcaoAirline": "SJJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Spirit Jets", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11532, + "callsign": "NUSANTARA", + "codeHub": "HLP", + "codeIataAirline": "", + "codeIcaoAirline": "SJK", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nusantara Air Charter", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11533, + "callsign": "SERVICIOS JALISCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SJL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Especiales del Pacifico Jalisco", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11534, + "callsign": "SINO SKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SJM", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sino Jet Management", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11535, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SJM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sino Jet", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11536, + "callsign": "SAJEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SJN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sajen Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11537, + "callsign": "SWISS JET", + "codeHub": "ZRH", + "codeIataAirline": "", + "codeIcaoAirline": "SJT", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swiss Jet", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11538, + "callsign": "SWEDEJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SJT", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet 2000", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11539, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SJU", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Jet", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11540, + "callsign": "RIO EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKA", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyjet Brasil", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11541, + "callsign": "SKEGAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skegair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11542, + "callsign": "RIO EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKA", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rio Air Express", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11543, + "callsign": "SKYBUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyfreighters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11544, + "callsign": "", + "codeHub": "MAO", + "codeIataAirline": "", + "codeIcaoAirline": "SKC", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skymaster Airlines", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11545, + "callsign": "SKYMASTER AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKC", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skymaster Air Lines", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11546, + "callsign": "SKYGUARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyguard", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11547, + "callsign": "SKY DWAG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Harbor Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11548, + "callsign": "SKYISLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Tours", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11549, + "callsign": "SKYCRAFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skycraft", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11550, + "callsign": "AIR SAKHA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKH", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sakha Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11551, + "callsign": "SKYNEWS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "British Sky Broadcasting Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11552, + "callsign": "SKYNET AIR", + "codeHub": "EVN", + "codeIataAirline": "", + "codeIcaoAirline": "SKJ", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Net Airline", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11553, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKJ", + "codeIso2Country": "AG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyjet", + "nameCountry": "Antigua and Barbuda", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11554, + "callsign": "SLOVAK JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKJ", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Seagle Jet", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11555, + "callsign": "SKYLANE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skylane Air Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11556, + "callsign": "SKYCHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skycharter", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11557, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skycharter", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11558, + "callsign": "SKYTEM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fayetteville Flying Service And Scheduled Skyways System", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11559, + "callsign": "SKYLINER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyline Aviation Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11560, + "callsign": "SKYWORK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Scottish Airways Flyers", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11561, + "callsign": "SKIPPER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKP", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero-North Aviation Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11562, + "callsign": "SKYLAB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKQ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Labcorp", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11563, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKQ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LabCorp", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11564, + "callsign": "SHONKAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKR", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shonkar", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11565, + "callsign": "SKYSCAPES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKR", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyscapes Air Charters", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11566, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKS", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Link Aviation Services", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11567, + "callsign": "SKY SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKS", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Service", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11568, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKS", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "abelog", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11569, + "callsign": "", + "codeHub": "BRU", + "codeIataAirline": "", + "codeIcaoAirline": "SKT", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyjet (Belgium)", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11570, + "callsign": "STAR-JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Services Aviation", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11571, + "callsign": "", + "codeHub": "EVN", + "codeIataAirline": "", + "codeIcaoAirline": "SKX", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alliance Air (Armenia)", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "start_up", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11572, + "callsign": "SKYSTORM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKX", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alliance Air Company", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11573, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKX", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alliance Airline", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "start_up", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11574, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SKY", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cooper Skybird Air Charters", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11575, + "callsign": "SKYWAY-INC", + "codeHub": "ISM", + "codeIataAirline": "", + "codeIcaoAirline": "SKZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SkyWay Enterprises", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11576, + "callsign": "SLOK AIR", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "SLB", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Slok Air", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11577, + "callsign": "", + "codeHub": "PAP", + "codeIataAirline": "", + "codeIcaoAirline": "SLC", + "codeIso2Country": "HT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SALSA d Haiti", + "nameCountry": "Haiti", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11578, + "callsign": "SWIFTLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLC", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swiftlines", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11579, + "callsign": "SOLID", + "codeHub": "PRG", + "codeIataAirline": "", + "codeIcaoAirline": "SLD", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silver Air", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11580, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLD", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silver Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11581, + "callsign": "SLIPSTREAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLE", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Streamline", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11582, + "callsign": "SILVER FOX", + "codeHub": "SCN", + "codeIataAirline": "", + "codeIcaoAirline": "SLF", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silver Bird Charterflug", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11583, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLF", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "StarFly", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11584, + "callsign": "SKYSHIP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLF", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyline Flights", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11585, + "callsign": "LIFEGUARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLG", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saskatchewan Government Air Ambulance Service", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11586, + "callsign": "", + "codeHub": "LNK", + "codeIataAirline": "", + "codeIcaoAirline": "SLH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silver Hawk Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11587, + "callsign": "SILVERHAWK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silverhawk Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11588, + "callsign": "SLAMAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLJ", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Slam Lavori Aerei", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11589, + "callsign": "SKYLARK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Independent Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11590, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skylink Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11591, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLL", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skylink Aviation", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11592, + "callsign": "SLOANE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sloane Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11593, + "callsign": "SLOANE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sloane Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11594, + "callsign": "SLOCUM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Slocum Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11595, + "callsign": "SLOW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Edgartown Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11596, + "callsign": "SALPA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLP", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Salpa Aviation", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11597, + "callsign": "SKYLINK", + "codeHub": "YYZ", + "codeIataAirline": "", + "codeIcaoAirline": "SLQ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skylink Express", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11598, + "callsign": "SINALOENSES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicios Ejecutivos Sinaloenses", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11599, + "callsign": "SERVICIOS SLAINTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Slainte", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11600, + "callsign": "", + "codeHub": "DXB", + "codeIataAirline": "", + "codeIcaoAirline": "SLT", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Starlight Airlines", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11601, + "callsign": "SALCHARTERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLT", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Salert Air Charters And Relief Services", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11602, + "callsign": "SALTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saltair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11603, + "callsign": "AVIO SLUZBE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLU", + "codeIso2Country": "YU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avio Sluzba", + "nameCountry": "Yugoslavia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11604, + "callsign": "AVISTELLA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLV", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Stella Aviation", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11605, + "callsign": "SULLIVAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Federal Carriers", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11606, + "callsign": "SLOVTRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLV", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Slovtrans Air", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11607, + "callsign": "SALMA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLW", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Salama Airlines Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11608, + "callsign": "SLATOUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLX", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Line Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11609, + "callsign": "SHUTTLE EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "American Aircraft International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11610, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLX", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SETE Linhas Aereas", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11611, + "callsign": "SKYCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLY", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Line For Air Services", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11612, + "callsign": "LUZA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SLZ", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Super Luza", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11613, + "callsign": "", + "codeHub": "KAN", + "codeIataAirline": "", + "codeIcaoAirline": "SMA", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SMA Cargo Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11614, + "callsign": "SESAME", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMA", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SMA Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11615, + "callsign": "SIMBAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMB", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Simba Air Cargo", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11616, + "callsign": "", + "codeHub": "KNO", + "codeIataAirline": "", + "codeIcaoAirline": "SMC", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S.M.A.C.", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11617, + "callsign": "SAMER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMC", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SMAC (Sabang Merauke Raya Air Charter), PT.", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11618, + "callsign": "SERVICIOS MARQUESA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos la Marquesa", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11619, + "callsign": "SMART AVIATION", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "SME", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Smart Aviation", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11620, + "callsign": "SEMICH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SME", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Semos", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11621, + "callsign": "GORDON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMF", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Smalandsflyg", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11622, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RAF St. Mawgan Search And Rescue", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11623, + "callsign": "SMITHAIR", + "codeHub": "LFI", + "codeIataAirline": "", + "codeIcaoAirline": "SMH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Smithair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11624, + "callsign": "SAMI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Sami", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11625, + "callsign": "AVAVIA", + "codeHub": "HRE", + "codeIataAirline": "", + "codeIcaoAirline": "SMJ", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avient Aviation", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11626, + "callsign": "", + "codeHub": "LGG", + "codeIataAirline": "", + "codeIcaoAirline": "SMJ", + "codeIso2Country": "GB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AV Cargo", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11627, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMJ", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "674", + "nameAirline": "United Arabian Co. Ltd.", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11628, + "callsign": "SMITH AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SML", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Smith Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11629, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SML", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meteor Aero", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11630, + "callsign": "SUMMIT-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Summit Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11631, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMN", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sama Air Transport", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11632, + "callsign": "ZAMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMN", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Zaman", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11633, + "callsign": "SERVIAUTOMOTRIZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Automotriz", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11634, + "callsign": "SEMPATI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMP", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sempati Air Transport", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11635, + "callsign": "SIMPLE JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMP", + "codeIso2Country": "LV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Simplejet LV", + "nameCountry": "Latvia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11636, + "callsign": "SAMAR AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMQ", + "codeIso2Country": "TJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Samar Air", + "nameCountry": "Tajikistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11637, + "callsign": "SAMARITAN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Samaritan Airevac", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11638, + "callsign": "", + "codeHub": "TMS", + "codeIataAirline": "", + "codeIcaoAirline": "SMS", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "LAS - Lineas Aereas Santomenses", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11639, + "callsign": "SERVIMEXICANAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aerolineas Mexicanas", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11640, + "callsign": "SANTOMENSES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMS", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linhas Aereas Santomenses", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11641, + "callsign": "", + "codeHub": "PHC", + "codeIataAirline": "", + "codeIcaoAirline": "SMT", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyline Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11642, + "callsign": "SKYLIMIT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMT", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyline", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11643, + "callsign": "SPRINGER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sanborn Map Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11644, + "callsign": "SMART AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMV", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Smart Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11645, + "callsign": "", + "codeHub": "TSR", + "codeIataAirline": "", + "codeIcaoAirline": "SMW", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Carpatair Flight Service", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11646, + "callsign": "SMART WINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMW", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Carpatair Flight Training", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11647, + "callsign": "SONMEZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SMZ", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sonmez Airlines", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11648, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Senator Aviation Charter", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11649, + "callsign": "SENATOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNA", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Senator Aviation Charter", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11650, + "callsign": "SONIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Apollo Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11651, + "callsign": "SNOWBIRD", + "codeHub": "SYD", + "codeIataAirline": "", + "codeIcaoAirline": "SND", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skytraders", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11652, + "callsign": "NURLAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SND", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SAN", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11653, + "callsign": "SANSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNE", + "codeIso2Country": "NI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos de Nicaragua", + "nameCountry": "Nicaragua", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11654, + "callsign": "SERVNORTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Norte Sur", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11655, + "callsign": "SHANS AIR", + "codeHub": "SVO", + "codeIataAirline": "", + "codeIcaoAirline": "SNF", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shans Air", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11656, + "callsign": "MATZADA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNF", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunair", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11657, + "callsign": "SNOW EAGLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNG", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Long Jiang Airlines", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11658, + "callsign": "SUNLINK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNH", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunshine Air", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11659, + "callsign": "SAVANAHLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNI", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Savanah Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11660, + "callsign": "", + "codeHub": "GPT", + "codeIataAirline": "", + "codeIcaoAirline": "SNK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southeast Airlines (USA)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11661, + "callsign": "SUN KING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southeast Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11662, + "callsign": "SOONAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soonair Lines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11663, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNM", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SNAM", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11664, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servizi Aerei", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11665, + "callsign": "SERVIZI AEREI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNM", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servizi Aerei", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11666, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11667, + "callsign": "SUN PACIFIC", + "codeHub": "TUS", + "codeIataAirline": "", + "codeIcaoAirline": "SNP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Pacific International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11668, + "callsign": "EXECU-QUEST", + "codeHub": "VNY", + "codeIataAirline": "", + "codeIcaoAirline": "SNQ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Quest Executive Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11669, + "callsign": "SUN GROUP", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "SNR", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Air", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11670, + "callsign": "AERO SOMORA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Sonora", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11671, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNS", + "codeIso2Country": "CF", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soci�t� Centrafricaine de Transport Aerien", + "nameCountry": "Central African Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11672, + "callsign": "SUNCOAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Suncoast Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11673, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNU", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Snunit Aviation", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11674, + "callsign": "SUDANESE", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "SNV", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sudanese States Aviation", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11675, + "callsign": "SERVICIO NORTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Servicio Del Norte", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11676, + "callsign": "SUN WEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun West Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11677, + "callsign": "SNOWFLAKE", + "codeHub": "ARN", + "codeIataAirline": "", + "codeIcaoAirline": "SNX", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Sweden", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11678, + "callsign": "SNOWFLAKE", + "codeHub": "ARN", + "codeIataAirline": "", + "codeIcaoAirline": "SNX", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Nordic Airways", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11679, + "callsign": "SUNEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNX", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Air Aviation Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11680, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNY", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aeronauticos de Nayarit", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11681, + "callsign": "AIR SANDY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNY", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Sandy", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11682, + "callsign": "SANTA CRUISE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNZ", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Santa Cruise Imperial Airlines", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11683, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SNZ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sansar Aviation International", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11684, + "callsign": "SKODA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOA", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skoda Air", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11685, + "callsign": "STABO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOB", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Stabo Freight", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11686, + "callsign": "SOCHI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOC", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SSA+", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11687, + "callsign": "ALSOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Sol", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11688, + "callsign": "AIR SOLEIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOE", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Soleil, Soci�t�", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11689, + "callsign": "SOLIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOF", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Solis Aviation", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11690, + "callsign": "", + "codeHub": "ACC", + "codeIataAirline": "", + "codeIcaoAirline": "SOG", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Solenta Aviation Ghana", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11691, + "callsign": "AEROSOGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOG", + "codeIso2Country": "GW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Soga", + "nameCountry": "Guinea-Bissau", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11692, + "callsign": "SPECIAL OLYMPICS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cessna", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11693, + "callsign": "SOUTHERN OHIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Ohio Aviation Sales", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11694, + "callsign": "SOAVAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOI", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Aviation", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11695, + "callsign": "SNOW SKI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S.A.C. Industries", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11696, + "callsign": "SOKOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOK", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SOKOL-ATSC", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11697, + "callsign": "AERO-SAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Salmon", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11698, + "callsign": "SUNSHINE TOURS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SON", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunshine Air Tours", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11699, + "callsign": "", + "codeHub": "POW", + "codeIataAirline": "", + "codeIcaoAirline": "SOP", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11700, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOP", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Solinair", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11701, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11702, + "callsign": "SOUTH COURIER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southeast Correct Craft", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11703, + "callsign": "SOUTHERN EXPRESS", + "codeHub": "ATL", + "codeIataAirline": "", + "codeIcaoAirline": "SOU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11704, + "callsign": "SOWIND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOW", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sowind Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11705, + "callsign": "SOLIDAIR", + "codeHub": "EIN", + "codeIataAirline": "", + "codeIcaoAirline": "SOX", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Solid Air", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11706, + "callsign": "", + "codeHub": "MNL", + "codeIataAirline": "", + "codeIcaoAirline": "SOY", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "A. Soriano Aviation", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11707, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOY", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Island Aviation Inc", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11708, + "callsign": "SORIANO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SOY", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soriano, A. Aviation", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11709, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "SOZ", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SAT Airlines (Kazakhstan)", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11710, + "callsign": "SATCO", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "SOZ", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11711, + "callsign": "SPRING CLASSIC", + "codeHub": "QRA", + "codeIataAirline": "", + "codeIcaoAirline": "SPB", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Springbok Classic Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11712, + "callsign": "PORT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyworld Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11713, + "callsign": "SPRAGUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sprague Electric Co.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11714, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "SPF", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Space World International Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11715, + "callsign": "SPACE WORLD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPF", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Space World Airline", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11716, + "callsign": "SPRING AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Springdale Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11717, + "callsign": "", + "codeHub": "GCJ", + "codeIataAirline": "", + "codeIcaoAirline": "SPH", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sapphire Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11718, + "callsign": "HELIBEIRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPH", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sociedade Portuguesa de Helicopteros", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11719, + "callsign": "SAPPHIRE-CHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPH", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sapphire Executive Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11720, + "callsign": "SOUTH PACIFIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South Pacific Island Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11721, + "callsign": "SOLSTAS LAB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Solstas Lab", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11722, + "callsign": "SPARKLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Diamond Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11723, + "callsign": "CORPORATIVOS LAGUNA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Corporativos Aereos de la Laguna", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11724, + "callsign": "SPURLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airspur Helicopters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11725, + "callsign": "", + "codeHub": "SOF", + "codeIataAirline": "", + "codeIcaoAirline": "SPN", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Scorpion Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11726, + "callsign": "AIR SKORPION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPN", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skorpion Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11727, + "callsign": "SPORAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPO", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sporavia", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11728, + "callsign": "EJECUTIV PACIFICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicios Ejecutivos Del Pacifico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11729, + "callsign": "SIPAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPP", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sipan", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11730, + "callsign": "SAPPHIRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sapphire Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11731, + "callsign": "SERVICIOS PALENQUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPQ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Palenque", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11732, + "callsign": "SPEEDAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastern Flying Service", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11733, + "callsign": "SALDUERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPS", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SPASA", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11734, + "callsign": "SPRINT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPT", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sprint Airlines", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11735, + "callsign": "SIM-ENTERPRISES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPT", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Simeron Enterprises", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11736, + "callsign": "SPUTTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southeast Airmotive", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11737, + "callsign": "SERVICIOS PRIVADOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Privados de Aviacion", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11738, + "callsign": "", + "codeHub": "REP", + "codeIataAirline": "", + "codeIcaoAirline": "SPW", + "codeIso2Country": "KH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Spirit Airlines", + "nameCountry": "Cambodia", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11739, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPW", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Speedwings", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11740, + "callsign": "SPEEDWING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPW", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Speedwings", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11741, + "callsign": "", + "codeHub": "APW", + "codeIataAirline": "", + "codeIcaoAirline": "SPX", + "codeIso2Country": "WS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South Pacific Express", + "nameCountry": "Samoa", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11742, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPX", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Service People Gesellschaft Fur Charter Und Service", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11743, + "callsign": "SPOOKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West Jets", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11744, + "callsign": "", + "codeHub": "PRY", + "codeIataAirline": "", + "codeIcaoAirline": "SPZ", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AirWorld South Africa", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11745, + "callsign": "SPEED SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SPZ", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airworld", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11746, + "callsign": "SLOVAK AEROCLUB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SQA", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Slovak National Aeroclub", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11747, + "callsign": "", + "codeHub": "SIN", + "codeIataAirline": "", + "codeIcaoAirline": "SQC", + "codeIso2Country": "SG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Singapore Airlines Cargo", + "nameCountry": "Singapore", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11748, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SQC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Singapore Airlines Cargo", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11749, + "callsign": "AERO SQUAD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SQD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tomorrow's Aeronautical Museum", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11750, + "callsign": "SLOVAK AIR FORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SQF", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Slovak Air Force", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11751, + "callsign": "SUSQUEHANNA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SQH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ford Aire", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11752, + "callsign": "SASQUATCH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SQH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alaska Juneau Aeronautics", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11753, + "callsign": "ALQUILER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SQL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios de Alouiler Aereo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11754, + "callsign": "SKWIM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SQM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Evergreen Express Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11755, + "callsign": "ALSAQER AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SQR", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alsaqer Aviation", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11756, + "callsign": "SKY QUEEN", + "codeHub": "HLP", + "codeIataAirline": "", + "codeIcaoAirline": "SQS", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Susi Air", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11757, + "callsign": "SEQUOIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SQU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bechtel Group", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11758, + "callsign": "REMUDO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SQU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AeroSpatialle", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11759, + "callsign": "COASTAL AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SQV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coastal Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11760, + "callsign": "SPRINTAIR KAUNUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRA", + "codeIso2Country": "LT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sprintair Kaunus", + "nameCountry": "Lithuania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11761, + "callsign": "SAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRA", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sair Aviation (FAA)", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11762, + "callsign": "", + "codeHub": "DMK", + "codeIataAirline": "", + "codeIcaoAirline": "SRB", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Solar Air", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11763, + "callsign": "AIR SERB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRB", + "codeIso2Country": "BA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Serb Air", + "nameCountry": "Bosnia and Herzegovina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11764, + "callsign": "SOLAR THAI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRB", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Solar Aviation", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11765, + "callsign": "SEARCA", + "codeHub": "MDE", + "codeIataAirline": "", + "codeIcaoAirline": "SRC", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Searca", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11766, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Search And Rescue 22", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11767, + "callsign": "SIMBA REGIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRE", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Simba Airlines", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11768, + "callsign": "STREAMJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRE", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Jetstream Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11769, + "callsign": "SERAMI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRE", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Serami", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11770, + "callsign": "SAN RAFAEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRF", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos San Rafael", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11771, + "callsign": "RESCUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Search And Rescue 202", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11772, + "callsign": "AIRSAFARI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRI", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Safaris And Services", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11773, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRI", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Safaris & Services (NZ)", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11774, + "callsign": "SURIJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRJ", + "codeIso2Country": "SR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SuriJet.com", + "nameCountry": "Suriname", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11775, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRM", + "codeIso2Country": "MV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flying Swiss Ambulance Maldives", + "nameCountry": "Maldives", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11776, + "callsign": "TARMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Stars de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11777, + "callsign": "", + "codeHub": "YKS", + "codeIataAirline": "", + "codeIcaoAirline": "SRN", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sir Aero", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11778, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sprint Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11779, + "callsign": "SERVINAUTICOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aeronauticos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11780, + "callsign": "SIRAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRN", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sirair", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11781, + "callsign": "SPERBER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRP", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bereitschaftpolizei Rheinland-Pfalz", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11782, + "callsign": "SEAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRQ", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Seair Incorporated", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11783, + "callsign": "PHOTO CHARLIE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRS", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Selkirk Remote Sensing", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11784, + "callsign": "SERVICORP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Servicio Corporativo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11785, + "callsign": "SERVEAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11786, + "callsign": "", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "SRW", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sarit Airlines", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11787, + "callsign": "SARIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRW", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sarit Air Lines", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11788, + "callsign": "SIERRA EX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sierra Expressway Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11789, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRY", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "As-Aero", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11790, + "callsign": "STRATO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SRZ", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Strato Air Services", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11791, + "callsign": "SISAV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSA", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sisav", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11792, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Of Asia", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11793, + "callsign": "CAL SEABOARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "California Seaboard Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11794, + "callsign": "SASAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sasair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11795, + "callsign": "SOUTHERN SKIES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Skies Commuter Co.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11796, + "callsign": "SOUTHERN SKIES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Seaplane", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11797, + "callsign": "STAR SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSD", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Service International", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11798, + "callsign": "SUNSET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Sunset", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11799, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSE", + "codeIso2Country": "CR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicio Carga Aerea", + "nameCountry": "Costa Rica", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11800, + "callsign": "SLOVAK GOVERNMENT", + "codeHub": "BTS", + "codeIataAirline": "", + "codeIcaoAirline": "SSG", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Slovak Government Flying Service", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11801, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Slovak Government Flying Service", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11802, + "callsign": "SNOWSHOE", + "codeHub": "BTV", + "codeIataAirline": "", + "codeIcaoAirline": "SSH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Heritage Flight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11803, + "callsign": "SUPER JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSI", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Superior International Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11804, + "callsign": "SKYSTAR", + "codeHub": "EWR", + "codeIataAirline": "", + "codeIcaoAirline": "SSK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skystar International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11805, + "callsign": "SIERRA SULTAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSL", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Sultan", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11806, + "callsign": "RAPID", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSM", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero 1 Prop-Jet", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11807, + "callsign": "SUNSTREAM", + "codeHub": "MBD", + "codeIataAirline": "", + "codeIcaoAirline": "SSN", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bop Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11808, + "callsign": "SUNSTREAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSN", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airquarius Air Charter", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11809, + "callsign": "SETOUCHI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSN", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Setouchi Seaplanes", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11810, + "callsign": "ORINOCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSO", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S&S Orinoco Aviation", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11811, + "callsign": "DOPE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Special Scope", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11812, + "callsign": "STARSPEED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSP", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Starspeed", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11813, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSQ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunstate Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11814, + "callsign": "SARDINIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSR", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sardinian Sky Service", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11815, + "callsign": "SAESA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSS", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania de Servicios Aereos (SAESA)", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11816, + "callsign": "SUNFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SST", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunwest Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11817, + "callsign": "STETSON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SST", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Royal Canadian Mounted Police", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11818, + "callsign": "SASCA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSU", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Sucre (SASCA)", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11819, + "callsign": "STREAMLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSW", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Streamline Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11820, + "callsign": "SHASTA", + "codeHub": "DEN", + "codeIataAirline": "", + "codeIcaoAirline": "SSX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lynx Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11821, + "callsign": "SUNSHINE EXEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSX", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Belgium Exel", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11822, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Excel Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11823, + "callsign": "SIERRA SKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSY", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Aviation", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11824, + "callsign": "SPECSAVERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SSZ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Specsavers Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11825, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "STA", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Aviation Services", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11826, + "callsign": "STAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11827, + "callsign": "STAERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STB", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Staero", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11828, + "callsign": "AIR JET", + "codeHub": "FDH", + "codeIataAirline": "", + "codeIcaoAirline": "STC", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skytaxi", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11829, + "callsign": "STADIUM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Stadium City", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11830, + "callsign": "AERO AGUASCALIENTES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicos de Aerotransportacion de Aquascalientes", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11831, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skytrak Aeronautical Systems", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11832, + "callsign": "SEMITRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Semitool Europe", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11833, + "callsign": "STEAMLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STE", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Agulhas 360", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11834, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STF", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SFT-Sudanese Flight", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11835, + "callsign": "STAGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sedalia, Marshall, Boonville Stage Line", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11836, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "STH", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South Airlines (Armenia)", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11837, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "STH", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South Airlines (Armenia)", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11838, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11839, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Starwings International", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11840, + "callsign": "SONTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STI", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sontair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11841, + "callsign": "STELLAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STJ", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Stella Aviation", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11842, + "callsign": "SAT PAK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropac", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11843, + "callsign": "STAPLEFORD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Stapleford Flight Centre", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11844, + "callsign": "", + "codeHub": "SKP", + "codeIataAirline": "", + "codeIcaoAirline": "STM", + "codeIso2Country": "MK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Airlines (Macedonia)", + "nameCountry": "Macedonia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11845, + "callsign": "SAETURA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STM", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sociedad Anonima Empresa de Turismo Aerec", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11846, + "callsign": "STREAMLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Streamline Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11847, + "callsign": "STARMAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STM", + "codeIso2Country": "MK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Airlines", + "nameCountry": "Macedonia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11848, + "callsign": "SAINT ATHAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "St. Athan MU", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11849, + "callsign": "SLOPS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Streamline Ops", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11850, + "callsign": "AERO SANTOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Santos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11851, + "callsign": "SENEGAL-TRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STP", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Senegal Air Transport", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11852, + "callsign": "STAMPEDE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STP", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Holidair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11853, + "callsign": "SIBINTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STQ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Siberia-Interavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11854, + "callsign": "STARTREK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STQ", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Wings Dortmund", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11855, + "callsign": "", + "codeHub": "AMM", + "codeIataAirline": "", + "codeIcaoAirline": "STR", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Solitaire Air", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11856, + "callsign": "STERNA", + "codeHub": "BSB", + "codeIataAirline": "", + "codeIcaoAirline": "STR", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sterna Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11857, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "STR", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Red Star Aviation", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11858, + "callsign": "SOLITAIRE AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STR", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Solitaire Lil - Tayran", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11859, + "callsign": "STELLAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Stellair", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11860, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STS", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicos Auxiliaries de Transportes Aereos (SATA)", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11861, + "callsign": "", + "codeHub": "DXB", + "codeIataAirline": "", + "codeIcaoAirline": "STU", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star African Air", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11862, + "callsign": "LUXLINER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STU", + "codeIso2Country": "LU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Strategic Airlines", + "nameCountry": "Luxembourg", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11863, + "callsign": "STARSOM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STU", + "codeIso2Country": "SO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star African Air", + "nameCountry": "Somalia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11864, + "callsign": "SOUTHERN AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STV", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Aviation", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11865, + "callsign": "COM-STAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STW", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircompany Starway", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11866, + "callsign": "START CHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STW", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Start", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11867, + "callsign": "", + "codeHub": "CPT", + "codeIataAirline": "", + "codeIcaoAirline": "STX", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Stars Away Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11868, + "callsign": "STARS AWAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STX", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Stars Away International", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11869, + "callsign": "SKY TAXI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STX", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocharter", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11870, + "callsign": "ALTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Altius Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11871, + "callsign": "AIR SAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STZ", + "codeIso2Country": "BA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sat Air", + "nameCountry": "Bosnia and Herzegovina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11872, + "callsign": "STUDIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "STZ", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Studio 88 Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11873, + "callsign": "SUNBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastern Metro Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11874, + "callsign": "AIE SILESIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUA", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silesia Air", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11875, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUA", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silesia Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11876, + "callsign": "SUB AIR", + "codeHub": "OMA", + "codeIataAirline": "", + "codeIcaoAirline": "SUB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Suburban Air Freight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 11877, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Suburban Air Freight", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11878, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunfly", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11879, + "callsign": "SURCA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUC", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Suramericana de Aviacion (Surca)", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11880, + "callsign": "AEROSURESTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Del Sureste", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11881, + "callsign": "SUNU AIR", + "codeHub": "DKR", + "codeIataAirline": "", + "codeIcaoAirline": "SUG", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunu Air", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11882, + "callsign": "FIGTHER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUH", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sukhoi Civil Aviation (SCA)", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11883, + "callsign": "AIRFORCE SWITZERLAND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUI", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swiss Air Force", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11884, + "callsign": "SUNJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunjet Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11885, + "callsign": "SKYCARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUK", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Superior Aviation Services", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11886, + "callsign": "ASTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUL", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "America do Sul Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11887, + "callsign": "", + "codeHub": "UUBW", + "codeIataAirline": "", + "codeIcaoAirline": "SUM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MCHS Rossii", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11888, + "callsign": "SUMES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "State Unitary Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11889, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUN", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Antillana de Navegacion Aerea - Sun Airways", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11890, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUN", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Antillana de Navegacion Aerea", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11891, + "callsign": "SERVICIO SANLUIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicios de San Luis", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11892, + "callsign": "AIR DALLAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ABC Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11893, + "callsign": "AEROSUPER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerosuper", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11894, + "callsign": "SUN SPEED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronautical Charters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11895, + "callsign": "SUPERIOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUQ", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Superior Air", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11896, + "callsign": "", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "SUR", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Air (Egypt)", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11897, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUR", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Air", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11898, + "callsign": "SURREY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Surrey & Kent Flying Club", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11899, + "callsign": "SISTEMAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sistemas Aeronauticos 2000", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11900, + "callsign": "SUNSTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star West Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11901, + "callsign": "", + "codeHub": "CCS", + "codeIataAirline": "", + "codeIcaoAirline": "SUV", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sundance Air Venezuela", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11902, + "callsign": "DANCEAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUV", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sundance Air", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11903, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUV", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sudance Air Venezuela", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11904, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUV", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sundance Air (Venezuela)", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11905, + "callsign": "SURVEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUY", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerial Surveys", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11906, + "callsign": "SUZY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUZ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Premiair Charter", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11907, + "callsign": "SUZY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SUZ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "GeminAir", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11908, + "callsign": "", + "codeHub": "RUH", + "codeIataAirline": "", + "codeIcaoAirline": "SVA", + "codeIso2Country": "SA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SAUDIA - VIP Aircraft", + "nameCountry": "Saudi Arabia", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11909, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11910, + "callsign": "", + "codeHub": "SVD", + "codeIataAirline": "", + "codeIcaoAirline": "SVD", + "codeIso2Country": "VC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SVG Air", + "nameCountry": "Saint Vincent and the Grenadines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11911, + "callsign": "GRENADINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVD", + "codeIso2Country": "VC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "St. Vincent Grenadines Air", + "nameCountry": "Saint Vincent and the Grenadines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11912, + "callsign": "AEROESPECIAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Servicios Especializados", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11913, + "callsign": "", + "codeHub": "LPI", + "codeIataAirline": "", + "codeIcaoAirline": "SVF", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swedish Air Force", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11914, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVF", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swedish Air Force", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 11915, + "callsign": "SOLAVIA", + "codeHub": "LBV", + "codeIataAirline": "", + "codeIcaoAirline": "SVG", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Solenta Aviation Gabon", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11916, + "callsign": "EQUASERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVG", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Services Guinea Ecuatorial", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11917, + "callsign": "SILVERLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sterling Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11918, + "callsign": "", + "codeHub": "MEX", + "codeIataAirline": "", + "codeIcaoAirline": "SVI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SETRA", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11919, + "callsign": "SETRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios de Transporte Aerec", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11920, + "callsign": "", + "codeHub": "RKT", + "codeIataAirline": "", + "codeIcaoAirline": "SVJ", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silver Air (United Arab Emirates)", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11921, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVJ", + "codeIso2Country": "DJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silver Air", + "nameCountry": "Djibouti", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11922, + "callsign": "VISION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVK", + "codeIso2Country": "HR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Vision", + "nameCountry": "Croatia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11923, + "callsign": "SLOVAKIAN", + "codeHub": "BTS", + "codeIataAirline": "", + "codeIcaoAirline": "SVL", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Slovakian Airlines", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11924, + "callsign": "SEVAVIA", + "codeHub": "UKS", + "codeIataAirline": "", + "codeIcaoAirline": "SVL", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sevastopol-Avia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11925, + "callsign": "STAVROPOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saak", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11926, + "callsign": "SERVIMONTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicios Monterrey", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11927, + "callsign": "SAVANAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVN", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Savanair", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11928, + "callsign": "SERVIORIENTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aeronauticos de Oriente", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11929, + "callsign": "", + "codeHub": "MAA", + "codeIataAirline": "", + "codeIcaoAirline": "SVP", + "codeIso2Country": "IN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Aviation (India)", + "nameCountry": "India", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11930, + "callsign": "SAZAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saratov Aviation Plant", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11931, + "callsign": "AEREOS SAAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Saar", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11932, + "callsign": "SEVEN SEAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eastern Commuter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11933, + "callsign": "", + "codeHub": "FNA", + "codeIataAirline": "", + "codeIcaoAirline": "SVT", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Seven Four Eight Air Services", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11934, + "callsign": "AIR SAKHALIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sakhaviatrans", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11935, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVW", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Global Jet Luxembourg", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11936, + "callsign": "SECURITY AIR", + "codeHub": "ANC", + "codeIataAirline": "", + "codeIcaoAirline": "SVX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Security Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11937, + "callsign": "SURVEYOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cooper Aerial Surveys", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11938, + "callsign": "SERVICIOS VIZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SVZ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Ejecutivos Aereos Viz", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11939, + "callsign": "SWISSBOOGIE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWB", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swissboogie Parapro", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11940, + "callsign": "SWEDCOPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWC", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helair Sweden", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11941, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWC", + "codeIso2Country": "PG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South West Air", + "nameCountry": "Papua New Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11942, + "callsign": "SAINT CLAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South West Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11943, + "callsign": "SAWBLADE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trifly", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11944, + "callsign": "SWEDELINE", + "codeHub": "HUV", + "codeIataAirline": "", + "codeIcaoAirline": "SWE", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swedeways Air Lines", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11945, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWE", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Sweden", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11946, + "callsign": "GALAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Galair International", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11947, + "callsign": "AIR SWIFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Swift", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11948, + "callsign": "SHOCKWAVE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWH", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Adler Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11949, + "callsign": "SUNWORLD", + "codeHub": "CVG", + "codeIataAirline": "", + "codeIcaoAirline": "SWI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunworld International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11950, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWJ", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Wings Flight Support Services", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11951, + "callsign": "SKYWALKER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWK", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "General Aerospace", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11952, + "callsign": "SOUTH WINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWL", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southwings (Thailand)", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11953, + "callsign": "SIVA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWO", + "codeIso2Country": "SR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Suriname International Victory Airline", + "nameCountry": "Suriname", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11954, + "callsign": "STAR WORK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWP", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Work Sky", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11955, + "callsign": "SUNNY WEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunwest Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11956, + "callsign": "SWIFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Plaza Servicios Aereos", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11957, + "callsign": "", + "codeHub": "ZRH", + "codeIataAirline": "", + "codeIcaoAirline": "SWU", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swiss European Air Lines", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 11958, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWU", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swiss Global Air Lines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11959, + "callsign": "SWEDEMED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWV", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kommunalf�rbundet Ambulanshelikopter V�rmland-Dalarna", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11960, + "callsign": "WAY AERO", + "codeHub": "IEV", + "codeIataAirline": "", + "codeIcaoAirline": "SWW", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shovkoviy Shlyah Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11961, + "callsign": "WINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWW", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swedewings", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11962, + "callsign": "SUNWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWY", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunways Sweden", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11963, + "callsign": "SWISSLINK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWY", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Jet", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11964, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyway Business Travel", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11965, + "callsign": "", + "codeHub": "ZRH", + "codeIataAirline": "", + "codeIcaoAirline": "SWZ", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swiss Private Aviation", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11966, + "callsign": "SWISSBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SWZ", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servair, Private Charter", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11967, + "callsign": "FERRY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SXA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Cross Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11968, + "callsign": "SHANNONN EXEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SXA", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shannon Executive Aviation", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11969, + "callsign": "SKY EXEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SXC", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Exec Aviation Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11970, + "callsign": "DOGWOOD EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SXE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southeast Express Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11971, + "callsign": "GERMAN SUN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SXG", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sun Express Deutschland", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11972, + "callsign": "SOUTHERN CROSS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SXI", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southern Cross International", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11973, + "callsign": "BIG WING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SXJ", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shanxi Shenfei Jet", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11974, + "callsign": "AIR SALAMIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SXL", + "codeIso2Country": "CY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Salamis", + "nameCountry": "Cyprus", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11975, + "callsign": "SONIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SXL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyline Flight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11976, + "callsign": "SERVIMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SXM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Especializados Mexicanos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11977, + "callsign": "SAXON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SXN", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sal Luftverkehrs", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11978, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SXN", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "S�dwestflug", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11979, + "callsign": "SAXONAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SXN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saxon Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11980, + "callsign": "", + "codeHub": "WAW", + "codeIataAirline": "", + "codeIcaoAirline": "SXP", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Express (Poland)", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11981, + "callsign": "", + "codeHub": "WAW", + "codeIataAirline": "", + "codeIcaoAirline": "SXP", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SprintAir", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11982, + "callsign": "EXPRESS SKY", + "codeHub": "WAW", + "codeIataAirline": "", + "codeIcaoAirline": "SXP", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Direct Fly", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 11983, + "callsign": "EXPRESS SKY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SXP", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Express", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11984, + "callsign": "SERTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SXT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios de Taxi Aereo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11985, + "callsign": "SATELLITE EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SXX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Satellite Aero", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11986, + "callsign": "STAGECOACH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SXZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Great Circle Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11987, + "callsign": "", + "codeHub": "EZE", + "codeIataAirline": "", + "codeIcaoAirline": "SYA", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cardinal Lineas Aereas", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11988, + "callsign": "", + "codeHub": "EZE", + "codeIataAirline": "", + "codeIcaoAirline": "SYA", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyways (Argentina)", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 11989, + "callsign": "LINEAS CARDINAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYA", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyways", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11990, + "callsign": "", + "codeHub": "YYZ", + "codeIataAirline": "", + "codeIcaoAirline": "SYB", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyservice Business Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 11991, + "callsign": "SYMBOLAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYB", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Symbol Publicidad", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11992, + "callsign": "SYSTEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Systec 2000", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11993, + "callsign": "SKYDOCTOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYD", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerocare", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11994, + "callsign": "YENDIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYD", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Yendis", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11995, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYE", + "codeIso2Country": "YE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sheba Aviation", + "nameCountry": "Yemen", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11996, + "callsign": "SKY FIRST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky One Express Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11997, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYH", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Handling", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11998, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sonalysts", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 11999, + "callsign": "", + "codeHub": "YXL", + "codeIataAirline": "", + "codeIcaoAirline": "SYJ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Slate Falls Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12000, + "callsign": "AEROCAB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Satsair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12001, + "callsign": "", + "codeHub": "KGF", + "codeIataAirline": "", + "codeIcaoAirline": "SYM", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sayat Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12002, + "callsign": "GUINEA SKYMASTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYM", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skymasters", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12003, + "callsign": "SYNCRUDE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYN", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Syncrude Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12004, + "callsign": "SYERSTON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Syerston FTU", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12005, + "callsign": "SKY PLAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYP", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyplan East Africa", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12006, + "callsign": "SHAWBURY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shawbury FTU", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12007, + "callsign": "SKYTRACK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYT", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerosud Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12008, + "callsign": "SKY UNLIMITED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYU", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Unlimited", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12009, + "callsign": "SPECIAL SYSTEM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Special Aviation Systems", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12010, + "callsign": "", + "codeHub": "FASK", + "codeIataAirline": "", + "codeIcaoAirline": "SYY", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South African Historic Flight", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12011, + "callsign": "SKY COACH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYY", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South African Historic Flight", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12012, + "callsign": "SOUTHEND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SYZ", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Southend Cargo Airlines", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12013, + "callsign": "AIR ASTRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SZA", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shenzhen Astro General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12014, + "callsign": "AIR ASTRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SZA", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Astro Air", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12015, + "callsign": "", + "codeHub": "APW", + "codeIataAirline": "", + "codeIcaoAirline": "SZB", + "codeIso2Country": "WS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Samoa Air", + "nameCountry": "Samoa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12016, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12017, + "callsign": "SKYFORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SZF", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyforce Aviation", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12018, + "callsign": "STOTZ AGRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SZG", + "codeIso2Country": "BY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shtotz Agro Service", + "nameCountry": "Belarus", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12019, + "callsign": "SWAZILINK", + "codeHub": "SHO", + "codeIataAirline": "", + "codeIcaoAirline": "SZL", + "codeIso2Country": "SZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlink Swaziland", + "nameCountry": "Swaziland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12020, + "callsign": "", + "codeHub": "CJS", + "codeIataAirline": "", + "codeIcaoAirline": "SZT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aeronauticos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12021, + "callsign": "AERO ZEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "SZT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aeronauticos Z", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12022, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "T9Q", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TMK Air Commuter", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12023, + "callsign": "AERO COSTA", + "codeHub": "CLQ", + "codeIataAirline": "", + "codeIcaoAirline": "TAA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicios de la Costa", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12024, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropacifico - Aeroservicios de la Costa", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12025, + "callsign": "TAMATAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotamatan", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12026, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAB", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TABA - Transportes Aereos Da Bacia Amazonica", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12027, + "callsign": "TURBOT", + "codeHub": "DKR", + "codeIataAirline": "", + "codeIcaoAirline": "TAC", + "codeIso2Country": "SN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turbot Air Cargo", + "nameCountry": "Senegal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12028, + "callsign": "TRANS DOMINICAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAD", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transporte Aereo Dominicano", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12029, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAF", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerea Transportes Aereos del Pacifico", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12030, + "callsign": "ASIA WORLD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAF", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "THT Air Services", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12031, + "callsign": "TAG U-S", + "codeHub": "SFO", + "codeIataAirline": "", + "codeIcaoAirline": "TAG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAG Aviation USA", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12032, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAG Aviation USA", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12033, + "callsign": "TAGGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Orion Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12034, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAH", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Moorea", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12035, + "callsign": "TUNISAVIA", + "codeHub": "TUN", + "codeIataAirline": "", + "codeIcaoAirline": "TAJ", + "codeIso2Country": "TN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tunisavia", + "nameCountry": "Tunisia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12036, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAK", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transkei Airways", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12037, + "callsign": "TRANSAFRICAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAK", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transafrican Air", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12038, + "callsign": "TALAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAL", + "codeIso2Country": "PG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Talair", + "nameCountry": "Papua New Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12039, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAQ", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trabajos Aereos Publicitarios", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12040, + "callsign": "TAUNUSAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAQ", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taunus Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12041, + "callsign": "LOTUS FLOWER", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "TAS", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lotus Airline", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12042, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAS", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Alsace", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12043, + "callsign": "TACA-COSTARICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAT", + "codeIso2Country": "CR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TACA Costa Rica", + "nameCountry": "Costa Rica", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12044, + "callsign": "TRANSTAURO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAU", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos Tauro", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12045, + "callsign": "AERO ALTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAU", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Asociados Latinoamericanos de Transporte Aereo", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12046, + "callsign": "TAVISA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAV", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania de Servicios Aereos Tavisa", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12047, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAW", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transway Air Services", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12048, + "callsign": "TOP SPEED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tampa Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12049, + "callsign": "TIAN-SHAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAW", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tian-Shan Air Company", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12050, + "callsign": "TRAVELAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAX", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Travelair", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12051, + "callsign": "AMAZON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAZ", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transamazonica Colombia", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12052, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TAZ", + "codeIso2Country": "PK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Track Aviation Services Pakistan", + "nameCountry": "Pakistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12053, + "callsign": "IBERLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TBB", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Iberia", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12054, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TBB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Iberia", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12055, + "callsign": "BLADE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TBC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turbine Air Cargo UK Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12056, + "callsign": "TRANS-ABC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TBC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes ABC", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12057, + "callsign": "ORCA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TBD", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thunderbird Tours", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12058, + "callsign": "TAXI BAIE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TBE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taxi Aero Bae", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12059, + "callsign": "TAB INTERNATIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TBI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAB Express International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12060, + "callsign": "TAG JET", + "codeHub": "HKG", + "codeIataAirline": "", + "codeIcaoAirline": "TBJ", + "codeIso2Country": "HK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAG Aviation Asia", + "nameCountry": "Hong Kong", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12061, + "callsign": "AEROTREBOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TBL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotrebol", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12062, + "callsign": "", + "codeHub": "AMM", + "codeIataAirline": "", + "codeIcaoAirline": "TBN", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Teebah Airlines", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12063, + "callsign": "TURBINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TBN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turbine Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12064, + "callsign": "TAXIS CABORCA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TBO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taxis Aereos de Caborca", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12065, + "callsign": "AERO CABOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TBO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taxis Aereos de Los Cabos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12066, + "callsign": "", + "codeHub": "BDA", + "codeIataAirline": "", + "codeIcaoAirline": "TBQ", + "codeIso2Country": "BM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Triair Bermuda", + "nameCountry": "Bermuda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12067, + "callsign": "THRACIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TBR", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air BTR", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12068, + "callsign": "TUBELAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TBR", + "codeIso2Country": "TN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tubelair", + "nameCountry": "Tunisia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12069, + "callsign": "TRIBASA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TBS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Tribasa", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12070, + "callsign": "TIMBIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TBS", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Timbis Air Services", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12071, + "callsign": "TOMBOUCTOU AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TBT", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tombouctou Aviation", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12072, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TBZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ATA Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12073, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TCA", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tradecraft Air Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12074, + "callsign": "TRADECRAFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TCA", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tradecraft Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12075, + "callsign": "TROPICANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TCA", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tropican Air Services", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12076, + "callsign": "TRANSCARIBE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TCB", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transcaribe Colombia - Transporte Del Caribe", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12077, + "callsign": "TRANSCAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TCC", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Continental Airlines", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12078, + "callsign": "TCHADLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TCD", + "codeIso2Country": "TD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tchad Airlines", + "nameCountry": "Chad", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12079, + "callsign": "TRANS-COLORADO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TCE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Colorado Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12080, + "callsign": "TRANS GULF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TCH", + "codeIso2Country": "BH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transcontinental Air", + "nameCountry": "Bahrain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12081, + "callsign": "KERRMONT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TCI", + "codeIso2Country": "TC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turks & Caicos Airways", + "nameCountry": "Turks and Caicos Islands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12082, + "callsign": "CHARTER BRASIL", + "codeHub": "VCP", + "codeIataAirline": "", + "codeIcaoAirline": "TCJ", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TCB - Transportes Charter Do Brasil", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12083, + "callsign": "BUL TRUCKS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TCK", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Truks", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12084, + "callsign": "TRANS COASTAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TCL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Coastal Air Transport", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12085, + "callsign": "TELEDYN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TCM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Teledyne Continental Motors", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12086, + "callsign": "TRANSCON", + "codeHub": "YIP", + "codeIataAirline": "", + "codeIcaoAirline": "TCN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Continental Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12087, + "callsign": "TRANSCOLOMBIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TCO", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "826", + "nameAirline": "Aero Transcolombiana de Carga", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12088, + "callsign": "TRANSCORP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TCP", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transcorp Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12089, + "callsign": "TICOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TCR", + "codeIso2Country": "CR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Laneas Aereas Trans Costa Rica", + "nameCountry": "Costa Rica", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12090, + "callsign": "TRANSCAESA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TCS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes de Carga Aerea Especializada", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12091, + "callsign": "TECHSERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TCS", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ATS", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12092, + "callsign": "TRANS-CONT", + "codeHub": "MVD", + "codeIataAirline": "", + "codeIcaoAirline": "TCT", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transcontinental Sur", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12093, + "callsign": "TRANSGLOBAL", + "codeHub": "CRK", + "codeIataAirline": "", + "codeIcaoAirline": "TCU", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transglobal Airways", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12094, + "callsign": "TWIN CITY", + "codeHub": "LEW", + "codeIataAirline": "", + "codeIcaoAirline": "TCY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Twin Cities Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12095, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TCY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Travel City Direct", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12096, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TCZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12097, + "callsign": "TRANSCARGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TDA", + "codeIso2Country": "CR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transcarga", + "nameCountry": "Costa Rica", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12098, + "callsign": "TREND AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TDA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trend Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12099, + "callsign": "THUNDER BAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TDB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Welch Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12100, + "callsign": "", + "codeHub": "QSA", + "codeIataAirline": "", + "codeIcaoAirline": "TDC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tadair", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12101, + "callsign": "TADAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TDC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tadair", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12102, + "callsign": "TAXIEVORA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TDE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taxi Aereo Nacional Del Evora", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12103, + "callsign": "TURBO DOG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TDG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Cargo Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12104, + "callsign": "TRANSIXTLAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TDI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos de Ixtlan", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12105, + "callsign": "TRADO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TDO", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transporte Aereo Dominicano (TRADO)", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12106, + "callsign": "TRADERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TDS", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotraders", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12107, + "callsign": "TRIDENT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TDT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlas Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12108, + "callsign": "TAXI EVORA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TDV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taxi Aereo Nacional del Evora", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12109, + "callsign": "AIR TODAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TDY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Today", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12110, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TE1", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air East", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12111, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TE7", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tepper Aviation", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12112, + "callsign": "", + "codeHub": "HLA", + "codeIataAirline": "", + "codeIcaoAirline": "TEA", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Turbine Air Charter", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12113, + "callsign": "TRAVELMAX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEA", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Turbine Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12114, + "callsign": "TEE-DOBLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEA", + "codeIso2Country": "PE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "T Doble A, Empresa de Transportes Aerecs Andahuaylas", + "nameCountry": "Peru", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12115, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "TEB", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tenir Airlines", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12116, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEB", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tenir Airlines", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12117, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEB", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tecnoaviacion", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12118, + "callsign": "TECHJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ADI Shuttle Group", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12119, + "callsign": "TEAK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEC", + "codeIso2Country": "CY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TEA Cyprus", + "nameCountry": "Cyprus", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12120, + "callsign": "AEROAZTECA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TED", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Servicios Azteca", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12121, + "callsign": "TEEBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West Freugh DTEO", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12122, + "callsign": "TECFOTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEF", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tecnicas Fotograficas", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12123, + "callsign": "EUROLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEG", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TEA - Trans European Airlines", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12124, + "callsign": "TEMPELHOF", + "codeHub": "EDDI", + "codeIataAirline": "", + "codeIcaoAirline": "TEH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tempelhof Airways USA", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12125, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEJ", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Jet", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12126, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEJ", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AeroJet", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12127, + "callsign": "AIR TECHNIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEK", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Technic Nigeria", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12128, + "callsign": "TELFORD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Telford Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12129, + "callsign": "TECHMONT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEM", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tech-Mont Helicopter Company", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12130, + "callsign": "TENNESSEE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tennessee Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12131, + "callsign": "TRANSAEREO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEO", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transaereo 5074", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12132, + "callsign": "TERRI-AIRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TER", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Territorial Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12133, + "callsign": "", + "codeHub": "BKA", + "codeIataAirline": "", + "codeIcaoAirline": "TES", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Test", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12134, + "callsign": "TAES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TES", + "codeIso2Country": "SV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos de El Salvadorde Cal.", + "nameCountry": "El Salvador", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12135, + "callsign": "SKYTEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TES", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircompany Skytest", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12136, + "callsign": "", + "codeHub": "KIV", + "codeIataAirline": "", + "codeIcaoAirline": "TET", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tepavia Trans", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12137, + "callsign": "TEPAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TET", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tepavia-Trans Airline", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12138, + "callsign": "TEUTO AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEU", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Teuto Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12139, + "callsign": "CITYWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEU", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAG City Air", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12140, + "callsign": "TEAMWORK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEW", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airteam Charter", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12141, + "callsign": "CATEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEX", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "C.A.T.E.X. Compagnie A�rien de Transports Executives", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12142, + "callsign": "ANTEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEY", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Antey", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12143, + "callsign": "", + "codeHub": "FRU", + "codeIataAirline": "", + "codeIcaoAirline": "TEZ", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TezJet Airlines", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12144, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEZ", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TezJet Air Company", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12145, + "callsign": "TEZJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEZ", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tez Jet Airlines", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12146, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TEZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tez Jet", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12147, + "callsign": "", + "codeHub": "DAB", + "codeIataAirline": "", + "codeIcaoAirline": "TFA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TFA - Trans Florida Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12148, + "callsign": "", + "codeHub": "DAC", + "codeIataAirline": "", + "codeIcaoAirline": "TFA", + "codeIso2Country": "BD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "THT Air Services", + "nameCountry": "Bangladesh", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12149, + "callsign": "TRANS FLORIDA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TFA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-Florida Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12150, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TFC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12151, + "callsign": "TALON FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TFF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Talon Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12152, + "callsign": "TRAFALGAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TFG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mas Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12153, + "callsign": "TRAFALGAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TFG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bluestream Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12154, + "callsign": "THAI HELICOPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TFH", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thai Flying Helicopter Service", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12155, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TFI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transport Facilitators", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12156, + "callsign": "", + "codeHub": "LAD", + "codeIataAirline": "", + "codeIcaoAirline": "TFK", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transafrik International", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12157, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TFK", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transafrik International", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12158, + "callsign": "TEE-FLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TFL", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tronderfly Air Service", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12159, + "callsign": "SPIRIT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TFN", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Norwegian Aviation College", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12160, + "callsign": "", + "codeHub": "LMM", + "codeIataAirline": "", + "codeIcaoAirline": "TFO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeropacifico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12161, + "callsign": "TRANSPORTES PACIFICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TFO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos del Pacifico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12162, + "callsign": "TRAFAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TFR", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Africa Airways", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12163, + "callsign": "CAMPUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TFS", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TTF GmbH", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12164, + "callsign": "FAST TRANSPORT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TFS", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Freight Air Service Transport", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12165, + "callsign": "THAI FLYING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TFT", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thai Flying Service", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12166, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TFU", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "213 Flight Unit", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12167, + "callsign": "TAYSIDE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TFY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tayside Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12168, + "callsign": "THANET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TGC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TG Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12169, + "callsign": "TASA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TGE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TASA - Trabajos Aereos", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12170, + "callsign": "TAXIGOLFO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TGF", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis Del Golfo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12171, + "callsign": "TRANSPORTE REGIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TGI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos Regionales", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12172, + "callsign": "TRANS-ATLANTIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TGL", + "codeIso2Country": "GM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-Atlantic Airlines", + "nameCountry": "Gambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12173, + "callsign": "TAG ESPANA", + "codeHub": "TOJ", + "codeIataAirline": "", + "codeIcaoAirline": "TGM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAG Aviation Espana", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12174, + "callsign": "", + "codeHub": "YOW", + "codeIataAirline": "", + "codeIcaoAirline": "TGO", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transport Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 12175, + "callsign": "TRANSPORT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TGO", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canada - Transport Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12176, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TGO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transport Canada", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12177, + "callsign": "TROPICANA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TGP", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tropicana Airlines", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12178, + "callsign": "TAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TGR", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12179, + "callsign": "CARGUERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TGS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotranscargo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12180, + "callsign": "TARGET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TGT", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Saab Nyge Aero", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12181, + "callsign": "TRANSGABON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TGX", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transair Gabon", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12182, + "callsign": "TRANS GUYANA", + "codeHub": "OGL", + "codeIataAirline": "", + "codeIcaoAirline": "TGY", + "codeIso2Country": "GY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Guyana Airways", + "nameCountry": "Guyana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12183, + "callsign": "TAMAZI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TGZ", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Zena", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12184, + "callsign": "TARHEEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "THC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tar Heel Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12185, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "THC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tar Heel Aviation", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12186, + "callsign": "DONUT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "THD", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "611897 Alberta", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12187, + "callsign": "TCHAD AIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "THE", + "codeIso2Country": "TD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TChad Airways", + "nameCountry": "Chad", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12188, + "callsign": "TOMZAJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "THE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tomzajet", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12189, + "callsign": "TOURAINE HELICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "THF", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Touraine Helicoptre", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12190, + "callsign": "", + "codeHub": "DMK", + "codeIataAirline": "", + "codeIcaoAirline": "THJ", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thaijet", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12191, + "callsign": "HUR KUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "THK", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turk Hava Kurumu Hava Taksi Isletmesi", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12192, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "THL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Thanet", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12193, + "callsign": "TAHMID", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "THM", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tahmid Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12194, + "callsign": "ATHENA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "THN", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Security Assistance Force", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 12195, + "callsign": "LEMPIRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "THO", + "codeIso2Country": "HN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TACA de Honduras", + "nameCountry": "Honduras", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12196, + "callsign": "TEHRAN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "THR", + "codeIso2Country": "IR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tehran Airline", + "nameCountry": "Iran", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12197, + "callsign": "AIR THUNDER", + "codeHub": "YQT", + "codeIataAirline": "", + "codeIcaoAirline": "THU", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thunder Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12198, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "THU", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thunder Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12199, + "callsign": "LYON HELIJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "THZ", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Helicoptere Service", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12200, + "callsign": "TRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TIA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12201, + "callsign": "TRAVEL INTERNATIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TIC", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Travel International Air Charters", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12202, + "callsign": "TIME AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TIE", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Time Air", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12203, + "callsign": "TIFFANY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TIF", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tiffany Air Transport", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12204, + "callsign": "TIGA-AIR", + "codeHub": "EVN", + "codeIataAirline": "", + "codeIcaoAirline": "TIG", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tiga-Air", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12205, + "callsign": "TIGRIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TIG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tiger Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12206, + "callsign": "", + "codeHub": "OTP", + "codeIataAirline": "", + "codeIcaoAirline": "TIH", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tiriac Air", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12207, + "callsign": "TIRIAC AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TIH", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ion Tiriac", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12208, + "callsign": "AIRATI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TII", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircompany ATI", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12209, + "callsign": "TICAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TIK", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tic Air", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12210, + "callsign": "TIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TIL", + "codeIso2Country": "TJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tajikistan International Airlines", + "nameCountry": "Tajikistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12211, + "callsign": "", + "codeHub": "SDU", + "codeIataAirline": "", + "codeIcaoAirline": "TIM", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TEAM Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12212, + "callsign": "ASIA STAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TIM", + "codeIso2Country": "PH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Star Asia", + "nameCountry": "Philippines", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12213, + "callsign": "TEAM BRASIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TIM", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Team Transportes Aereos", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12214, + "callsign": "TAINO", + "codeHub": "SDQ", + "codeIataAirline": "", + "codeIcaoAirline": "TIN", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taino Airlines", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12215, + "callsign": "TRANSPAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TIP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "C And M Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12216, + "callsign": "ANTAIR", + "codeHub": "LOV", + "codeIataAirline": "", + "codeIcaoAirline": "TIR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Antair", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12217, + "callsign": "", + "codeHub": "ULY", + "codeIataAirline": "", + "codeIcaoAirline": "TIT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Titan Cargo", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12218, + "callsign": "THAI JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TIU", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thai Jet Intergroup", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12219, + "callsign": "", + "codeHub": "KYZ", + "codeIataAirline": "", + "codeIcaoAirline": "TIV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tuva Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12220, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TIV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alternative Air", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12221, + "callsign": "TRIAX", + "codeHub": "ENU", + "codeIataAirline": "", + "codeIcaoAirline": "TIX", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Triax Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12222, + "callsign": "RIMKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TJA", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taraz Zhana Elem", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12223, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TJC", + "codeIso2Country": "DO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TCA Jet Charters", + "nameCountry": "Dominican Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12224, + "callsign": "NERON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TJN", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tien-Shan", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12225, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TJS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tyrolean Jet Service", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12226, + "callsign": "", + "codeHub": "ESB", + "codeIataAirline": "", + "codeIcaoAirline": "TK1", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AnadoluJet", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12227, + "callsign": "TROIKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TKA", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Troika", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12228, + "callsign": "TOURLIZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TKA", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transliz Aviation", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12229, + "callsign": "TURKU AIR", + "codeHub": "TKU", + "codeIataAirline": "", + "codeIcaoAirline": "TKI", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turku Air", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12230, + "callsign": "TARKIM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TKJ", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tarkim Air", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12231, + "callsign": "TARKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TKK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Ways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12232, + "callsign": "SARISY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TKL", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taraz Air", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12233, + "callsign": "TACOMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TKM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "JM Family Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12234, + "callsign": "", + "codeHub": "UUMT", + "codeIataAirline": "", + "codeIcaoAirline": "TKO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tretyakovo Air Transport", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12235, + "callsign": "TRETYAKOVO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TKO", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tretyakovo", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12236, + "callsign": "TANKER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TKR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Canadian Interagency Forest Fire Centre", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12237, + "callsign": "UGATRANS", + "codeHub": "EBB", + "codeIataAirline": "", + "codeIcaoAirline": "TKU", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transafric Uganda", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12238, + "callsign": "", + "codeHub": "EBB", + "codeIataAirline": "", + "codeIcaoAirline": "TKU", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transafrik Uganda", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12239, + "callsign": "TECHWIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TKW", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Samsung Techwin", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12240, + "callsign": "TROPEXPRESS", + "codeHub": "SKB", + "codeIataAirline": "", + "codeIcaoAirline": "TKX", + "codeIso2Country": "KN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tropical International Airways", + "nameCountry": "Saint Kitts and Nevis", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12241, + "callsign": "TRIPLE ALPHA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TLA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "A-A-A Air Enterprises", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12242, + "callsign": "AEROCLA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TLA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aereotcla", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12243, + "callsign": "CARIB-X", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TLC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caribbean Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12244, + "callsign": "AERO AUTLAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TLD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Taxi Autlan", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12245, + "callsign": "AEROUTIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TLE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Util", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12246, + "callsign": "TRANA-LEONE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TLF", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transport Africa", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12247, + "callsign": "TALGAT", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "TLG", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "InvestAvia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12248, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TLG", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "InvestAvia Airline", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12249, + "callsign": "TWINLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TLI", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "European Air Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12250, + "callsign": "ATLANTIC LEONE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TLL", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Atlantic Airlines", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12251, + "callsign": "ATALTLAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TLN", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantigo Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12252, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TLN", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantico Linhas Aereas (ALA)", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12253, + "callsign": "TEALSY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TLS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TLC Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12254, + "callsign": "TURTLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TLT", + "codeIso2Country": "FJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turtle Airways", + "nameCountry": "Fiji", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12255, + "callsign": "AEROTOLUCA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TLU", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Toluca Internacicnal", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12256, + "callsign": "PAJAROS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TLV", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Travelair", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12257, + "callsign": "TRANSLUX", + "codeHub": "LUX", + "codeIataAirline": "", + "codeIcaoAirline": "TLX", + "codeIso2Country": "LU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Cargo Lion", + "nameCountry": "Luxembourg", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12258, + "callsign": "TELESIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TLX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Telesis Transair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12259, + "callsign": "", + "codeHub": "QSA", + "codeIataAirline": "", + "codeIcaoAirline": "TLY", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Top Fly", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12260, + "callsign": "TOPFLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TLY", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Top-Fly", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12261, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TLY", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Top Fly", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12262, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "TLZ", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transliz Aviation", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12263, + "callsign": "TRANSLIZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TLZ", + "codeIso2Country": "ST", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transliz Aviation (TMS)", + "nameCountry": "Sao Tome and Principe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12264, + "callsign": "", + "codeHub": "BEY", + "codeIataAirline": "", + "codeIcaoAirline": "TMA", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TMA Cargo", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12265, + "callsign": "SAFARI EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TMB", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "On Safari Airline", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12266, + "callsign": "TRAIL BLAER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TMC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Travel Management Company Ltd.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12267, + "callsign": "TARMAC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TMC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tarmac Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12268, + "callsign": "TRANSMANDU", + "codeHub": "CBL", + "codeIataAirline": "", + "codeIcaoAirline": "TMD", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transmandu", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12269, + "callsign": "TAXICENTRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TME", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Taxi Del Centro de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12270, + "callsign": "TAIMEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TME", + "codeIso2Country": "MN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thomas Air", + "nameCountry": "Mongolia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12271, + "callsign": "TRANSMANCHE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TMH", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transmanche Aviation", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12272, + "callsign": "TAMIRWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TMI", + "codeIso2Country": "IL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tamir Airways", + "nameCountry": "Israel", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12273, + "callsign": "TOMAHAWK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TMK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tomahawk Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12274, + "callsign": "WILLOW RUN", + "codeHub": "YIP", + "codeIataAirline": "", + "codeIcaoAirline": "TMM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TMC Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12275, + "callsign": "WILLOW RUN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TMM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Traffic Management Corporation (TMC) Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12276, + "callsign": "THAMES AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TMQ", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thames Air Services & Charter", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12277, + "callsign": "TRAM AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TMQ", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tram, Soci�t�", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12278, + "callsign": "TIMBER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TMR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Timberline Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12279, + "callsign": "TEMSCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TMS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Temsco Helicopters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12280, + "callsign": "TRANS MIDWEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TMT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Midwest Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12281, + "callsign": "TRANS MALDIVIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TMW", + "codeIso2Country": "MV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Maldivian Airways", + "nameCountry": "Maldives", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12282, + "callsign": "TRAMON", + "codeHub": "HLA", + "codeIataAirline": "", + "codeIcaoAirline": "TMX", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tramon Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12283, + "callsign": "TRAMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TMX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportacion Aerea Mexicana (TAM)", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12284, + "callsign": "MUNDO MAYA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TMY", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos Del Mundo Maya", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12285, + "callsign": "TRANS AMAZON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TMZ", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transporte Amazon Air", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12286, + "callsign": "TANAVCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNA", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tanavco Airways", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12287, + "callsign": "TRANSCANCUN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transcancun Services", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12288, + "callsign": "NATCOM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Aviation Consultants", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12289, + "callsign": "TAXIS CESSNA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TND", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Taxis Cessna", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12290, + "callsign": "TAXINOROESTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taxis Aereos Del Noroeste", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12291, + "callsign": "", + "codeHub": "OUA", + "codeIataAirline": "", + "codeIcaoAirline": "TNF", + "codeIso2Country": "BF", + "founding": 0, + "iataPrefixAccounting": "917", + "nameAirline": "Transafricaine", + "nameCountry": "Burkina Faso", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12292, + "callsign": "TATNEFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNF", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tatneftaero", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12293, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tennessee Air National Guard, 164th Airlift Group", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 12294, + "callsign": "TURNHOUSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turnhouse Flying Club", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12295, + "callsign": "INCA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Schwans Shared Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12296, + "callsign": "TRANSINTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNI", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transair International Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12297, + "callsign": "", + "codeHub": "VCV", + "codeIataAirline": "", + "codeIcaoAirline": "TNK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "10 Tanker Air Carrier", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12298, + "callsign": "TONKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airmax Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12299, + "callsign": "TENGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alfa Line", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12300, + "callsign": "", + "codeHub": "ULN", + "codeIataAirline": "", + "codeIcaoAirline": "TNL", + "codeIso2Country": "MN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Horse Aviation", + "nameCountry": "Mongolia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12301, + "callsign": "SKY HORSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNL", + "codeIso2Country": "MN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tengeriyn Ulaach Shine", + "nameCountry": "Mongolia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12302, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12303, + "callsign": "TRANSPED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNP", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transped Aviation", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12304, + "callsign": "TRANSALP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNP", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transalp", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12305, + "callsign": "TAN AIR", + "codeHub": "FAI", + "codeIataAirline": "", + "codeIcaoAirline": "TNR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tanana Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12306, + "callsign": "SAVA SERVICOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNS", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "SAVA", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12307, + "callsign": "SAVA SERVICOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNS", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicos Aereos Do Vale Amazonico", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12308, + "callsign": "TRANS NORTH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans North Turbo Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12309, + "callsign": "", + "codeHub": "ANC", + "codeIataAirline": "", + "codeIcaoAirline": "TNV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transnorthern", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12310, + "callsign": "TECNAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNV", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tecnavia", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12311, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNV", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TransNorthern", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12312, + "callsign": "TRANS-NATION", + "codeHub": "ADD", + "codeIataAirline": "", + "codeIcaoAirline": "TNW", + "codeIso2Country": "ET", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Nation Airways", + "nameCountry": "Ethiopia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12313, + "callsign": "TRAINER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TNX", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trener", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12314, + "callsign": "TROPICAL AIRLINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TOA", + "codeIso2Country": "JM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tropical Airlines", + "nameCountry": "Jamaica", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12315, + "callsign": "TOPCAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TOA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Helicopter Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12316, + "callsign": "TOBRUK AIR", + "codeHub": "TOB", + "codeIataAirline": "", + "codeIcaoAirline": "TOB", + "codeIso2Country": "LY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tobruk Air", + "nameCountry": "Libya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12317, + "callsign": "", + "codeHub": "CVJ", + "codeIataAirline": "", + "codeIcaoAirline": "TOC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Tropical", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12318, + "callsign": "TROPICMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TOC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotropical", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12319, + "callsign": "TOPCLIFFE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TOF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Topcliffe FTU", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12320, + "callsign": "", + "codeHub": "BEG", + "codeIataAirline": "", + "codeIcaoAirline": "TOH", + "codeIso2Country": "RS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Tomisko", + "nameCountry": "Serbia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12321, + "callsign": "TOJ AIRLINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TOJ", + "codeIso2Country": "TJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TOJ Airlines", + "nameCountry": "Tajikistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12322, + "callsign": "AEROTONALA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TON", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Tonala", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12323, + "callsign": "ALIEUROPE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TOO", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alieurope", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12324, + "callsign": "AIR TOP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TOP", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Top Air", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12325, + "callsign": "TOPFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TOP", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Topflight Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12326, + "callsign": "TORONTOAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TOR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Toronto Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12327, + "callsign": "ZAP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TOT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Titan Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12328, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TOT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Totavia - Aviation Information Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12329, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TOU", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Touchstone Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12330, + "callsign": "TOYOTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TOY", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Toyota Canada", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12331, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TOY", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Toyo Aviation", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12332, + "callsign": "AERO TROPICAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPB", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Tropical", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12333, + "callsign": "TOP SPEED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPD", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Top Speed", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12334, + "callsign": "PRESIDENTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPE", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAP - Transportes Aereos Presidente", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12335, + "callsign": "TRANSPEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Peninsulares Terrestres Aereos Y Maritimos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12336, + "callsign": "TAXIPACIFICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPF", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taxis Aereos Del Pacifico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12337, + "callsign": "TRANSPEGASO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos Pegaso", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12338, + "callsign": "TOPAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPI", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Topair", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12339, + "callsign": "TEMPUS JETS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tempus Jets", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12340, + "callsign": "", + "codeHub": "NDJ", + "codeIataAirline": "", + "codeIcaoAirline": "TPK", + "codeIso2Country": "TD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Horizon Africa", + "nameCountry": "Chad", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12341, + "callsign": "TCHAD-HORIZON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPK", + "codeIso2Country": "TD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Horizon", + "nameCountry": "Chad", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12342, + "callsign": "AEROPOOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turbopool", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12343, + "callsign": "INTERPILOT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPL", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tar Interpilot", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12344, + "callsign": "TRANSPIAS", + "codeHub": "MTY", + "codeIataAirline": "", + "codeIcaoAirline": "TPM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transpais Aereo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12345, + "callsign": "AEREA DELNORTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportacion Aerea Del Norte", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12346, + "callsign": "TAXI-POTOSI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Taxi Del Potosi", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12347, + "callsign": "TRANS EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPP", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transpax Expres", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12348, + "callsign": "TRANSPORT QUEBEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPQ", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gouvernement Du Quebec", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12349, + "callsign": "TAPOAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPR", + "codeIso2Country": "UZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tapoavia", + "nameCountry": "Uzbekistan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12350, + "callsign": "PYRENEEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avion Taxis Pyreneens", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12351, + "callsign": "TESTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Empire Test Pilots School", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12352, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPS", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAPSA Aviacion", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12353, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPS", + "codeIso2Country": "AR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAPSA - Transportes Aereos Petroleros", + "nameCountry": "Argentina", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12354, + "callsign": "TRANSPENTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPT", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Transpenta", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12355, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPV", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Temple Aviacion", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12356, + "callsign": "TRANSXALPA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos de Xalapa", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12357, + "callsign": "TRANS PROVINCIAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPY", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-Provincial Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12358, + "callsign": "TRANSPAZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TPZ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes La Paz", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12359, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TQ7", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroservicios Empresariales SA de CV", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12360, + "callsign": "TAXAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TQE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taxair Mexiquenses", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12361, + "callsign": "RAINBOW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TQF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UK Royal VIP Helicopter Flights", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12362, + "callsign": "TAQUAN", + "codeHub": "KTN", + "codeIataAirline": "", + "codeIcaoAirline": "TQN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taquan Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12363, + "callsign": "TRANSQUERETARO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TQR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportacion Aerea de Queretaro", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12364, + "callsign": "AEROTURQUESA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TQS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroturquesa", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12365, + "callsign": "TRANS CAB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12366, + "callsign": "KIROVTRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRB", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ukraine Transavia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12367, + "callsign": "AIR BRETAGNE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRB", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Air Bretagne - TAB", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12368, + "callsign": "TRACKER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12369, + "callsign": "TRANS ISLAND", + "codeHub": "BGI", + "codeIataAirline": "", + "codeIcaoAirline": "TRD", + "codeIso2Country": "BB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Island Air", + "nameCountry": "Barbados", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12370, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "TRE", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TRAST Aero Atlantic", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12371, + "callsign": "TRANS-EAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRE", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-Eastern Airlines", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12372, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRF", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taxi Air Fret", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12373, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRG", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tragsa", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12374, + "callsign": "TRANSTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airmark Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12375, + "callsign": "TURUKHAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRH", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turukhan Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12376, + "callsign": "", + "codeHub": "YAM", + "codeIataAirline": "", + "codeIcaoAirline": "TRI", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ontario MNR Aviation Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 12377, + "callsign": "FIRE FOX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tri State Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12378, + "callsign": "TRILLIUM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRI", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Flight Operations, Ontario Government", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 12379, + "callsign": "HIGH TIDE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Euro Air", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12380, + "callsign": "TURKISH REPUBLIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRK", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turkish Airlines General Aviation", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12381, + "callsign": "AIRTAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRM", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TAM Transports A�riens M�diterran�ens", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12382, + "callsign": "SOTRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRM", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transport Aerien de Mauritanie (TAM)", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12383, + "callsign": "", + "codeHub": "PVR", + "codeIataAirline": "", + "codeIcaoAirline": "TRN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotron", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12384, + "callsign": "AEROTRON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRN", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Corporativos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12385, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRN", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Theron Airways", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12386, + "callsign": "MOLOKAI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tropic Airlines-Air Molokai", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12387, + "callsign": "TROOPER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRP", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Maryland State Police", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12388, + "callsign": "TERRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRR", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North Aamerican Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12389, + "callsign": "TRAMSON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRR", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tramson", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12390, + "callsign": "TRANS ARABIAN", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "TRT", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Arabian Air Transport", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12391, + "callsign": "", + "codeHub": "EBB", + "codeIataAirline": "", + "codeIcaoAirline": "TRU", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Triangle Airlines", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12392, + "callsign": "TRI AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRU", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Triangle Airline", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12393, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRV", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transavia", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12394, + "callsign": "TRANS-WEST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TRW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transwestern Airlines Of Utah", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12395, + "callsign": "TERREX", + "codeHub": "PRG", + "codeIataAirline": "", + "codeIcaoAirline": "TRX", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Terrex", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12396, + "callsign": "TRISTAR AIR", + "codeHub": "LAS", + "codeIataAirline": "", + "codeIcaoAirline": "TRY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tristar Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12397, + "callsign": "TRANS-MERIDIAN", + "codeHub": "ATL", + "codeIataAirline": "", + "codeIcaoAirline": "TRZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transmeridian Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12398, + "callsign": "AIRTRAF", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TSA", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transair France", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12399, + "callsign": "AIR BENIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TSB", + "codeIso2Country": "BJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transports A�riens Du Benin (T.A.B.)", + "nameCountry": "Benin", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12400, + "callsign": "AFRICANWAY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TSF", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-African Airways", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12401, + "callsign": "", + "codeHub": "YYC", + "codeIataAirline": "", + "codeIcaoAirline": "TSH", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "R1 Airlines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12402, + "callsign": "TRANS-SAHEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TSH", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-Sahel", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12403, + "callsign": "TRANSPORTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TSI", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transport'air", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12404, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "TSJ", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TRAST Aero", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12405, + "callsign": "TARSIER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TSJ", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CPI Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12406, + "callsign": "TOMSK-AVIA", + "codeHub": "TOF", + "codeIataAirline": "", + "codeIcaoAirline": "TSK", + "codeIso2Country": "RU", + "founding": 1992, + "iataPrefixAccounting": "", + "nameAirline": "Tomsk Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12407, + "callsign": "TOMSK-AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TSK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tomsk State Aviation Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12408, + "callsign": "TRENT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TSL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trent Air Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12409, + "callsign": "", + "codeHub": "BKO", + "codeIataAirline": "", + "codeIcaoAirline": "TSM", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transair Mali", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12410, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TSM", + "codeIso2Country": "LB", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Sayegh Airport Services", + "nameCountry": "Lebanon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12411, + "callsign": "AIR TRANS", + "codeHub": "KAN", + "codeIataAirline": "", + "codeIcaoAirline": "TSN", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-Air Services", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12412, + "callsign": "TRANSPO-INTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TSP", + "codeIso2Country": "GT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aereos Inter", + "nameCountry": "Guatemala", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12413, + "callsign": "AIRTRA", + "codeHub": "HKD", + "codeIataAirline": "", + "codeIcaoAirline": "TSQ", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Transse", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12414, + "callsign": "", + "codeHub": "RMI", + "codeIataAirline": "", + "codeIcaoAirline": "TSR", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TJS San Marino", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12415, + "callsign": "TRANS SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TSR", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Service Airlift", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12416, + "callsign": "SAN MARINO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TSR", + "codeIso2Country": "SM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TJS San Marino", + "nameCountry": "San Marino", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12417, + "callsign": "TRI-STATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TSS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tri-State Aero", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12418, + "callsign": "TROPICAL SEA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TSS", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tropical Sea Airlines", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12419, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TST", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trast", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12420, + "callsign": "TRAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TST", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trast", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12421, + "callsign": "TRANS-AUTO", + "codeHub": "PTK", + "codeIataAirline": "", + "codeIcaoAirline": "TSU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Contract Air Cargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12422, + "callsign": "", + "codeHub": "PTK", + "codeIataAirline": "", + "codeIcaoAirline": "TSU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gulf & Caribbean Cargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12423, + "callsign": "TRANS-AUTO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TSU", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gulf and Caribbean Cargo", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12424, + "callsign": "TROPIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TSV", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tropair Airservices", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12425, + "callsign": "SWISSTRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TSW", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transwings", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12426, + "callsign": "TRANS-ASIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TSX", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-Asia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12427, + "callsign": "TRIPLE STAR", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "TSY", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tristar Air", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12428, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TSZ", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sky Handling", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12429, + "callsign": "KANIMANBO", + "codeHub": "MPM", + "codeIataAirline": "", + "codeIcaoAirline": "TTA", + "codeIso2Country": "MZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "STA - Sociedade de Transportes Aereos", + "nameCountry": "Mozambique", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12430, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTA", + "codeIso2Country": "MZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes E Trabalho Aero", + "nameCountry": "Mozambique", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12431, + "callsign": "TRANSAERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTA", + "codeIso2Country": "MZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TTA - Empresa Nacional de Transporte e Trabalho A�reo", + "nameCountry": "Mozambique", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12432, + "callsign": "AERO TURISTICAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTB", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Turisticas Del Caribe", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12433, + "callsign": "TRANSTECO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTC", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transteco", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12434, + "callsign": "INTERESTATALES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Interestatales", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12435, + "callsign": "", + "codeHub": "BOI", + "codeIataAirline": "", + "codeIcaoAirline": "TTE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avcenter Air Charters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12436, + "callsign": "TETON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avcenter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12437, + "callsign": "TRANSTASMAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTE", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Tasman Airlines", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12438, + "callsign": "CARGO UNIT", + "codeHub": "BZK", + "codeIataAirline": "", + "codeIcaoAirline": "TTF", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "224th Flight Unit", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 12439, + "callsign": "TRANSTEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTG", + "codeIso2Country": "TG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transtel", + "nameCountry": "Togo", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12440, + "callsign": "", + "codeHub": "IST", + "codeIataAirline": "", + "codeIcaoAirline": "TTH", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tarhan Air", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12441, + "callsign": "", + "codeHub": "IST", + "codeIataAirline": "", + "codeIcaoAirline": "TTH", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TT Airlines", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12442, + "callsign": "AERO ATTIE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Attie", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12443, + "callsign": "TATRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTJ", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tatra Jet", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12444, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTK", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TTM Korea", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12445, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Total Linhas Aereas", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12446, + "callsign": "TOUT-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTM", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soci�t� Tout Transport Mauritanien", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12447, + "callsign": "TITANIUM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTN", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Absolute Flight Services", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12448, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTN", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Highland Express", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12449, + "callsign": "ZAVOD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTN", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lip-Avia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12450, + "callsign": "TRANSPORT TRANSIT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTO", + "codeIso2Country": "MG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Transport & Transit Regional", + "nameCountry": "Madagascar", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12451, + "callsign": "MIGHTY WING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTP", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Triple O. Aviation", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12452, + "callsign": "TATRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTR", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tatra Air", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12453, + "callsign": "TRANSPORTACIONES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportaciones Y Servicios Aereos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12454, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTS", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "T.A.S.D. (Transporti Aerei Speciali)", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12455, + "callsign": "TECNICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transporte Aereo Techico Ejecutivo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12456, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12457, + "callsign": "VALDA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTU", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TTT Air", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12458, + "callsign": "SPARROW", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTX", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Den Sivile Flyskole", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12459, + "callsign": "TWISTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Alliance Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12460, + "callsign": "TRIPLE TOUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TTY", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Thai Tours And Trans Airways", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12461, + "callsign": "TURICHILE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TUC", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turismo Aereo de Chile", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12462, + "callsign": "TUNDRA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TUD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Alaska", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12463, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TUD", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yute Air Alaska", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12464, + "callsign": "TUFTYCLUB", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TUF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "American Aviation Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12465, + "callsign": "TURGAI AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TUG", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turgai Avia", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12466, + "callsign": "TAJA", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "TUJ", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tajouj Aviation", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12467, + "callsign": "TUCKERNUCK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TUK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ocean Wings Commuter Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12468, + "callsign": "URSAL", + "codeHub": "KZN", + "codeIataAirline": "", + "codeIcaoAirline": "TUL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tulpar", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12469, + "callsign": "", + "codeHub": "KZN", + "codeIataAirline": "", + "codeIcaoAirline": "TUL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tulpar Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12470, + "callsign": "", + "codeHub": "TJM", + "codeIataAirline": "", + "codeIcaoAirline": "TUM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tyumenspetsavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12471, + "callsign": "", + "codeHub": "TJM", + "codeIataAirline": "", + "codeIcaoAirline": "TUM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UTair-Cargo", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12472, + "callsign": "AIR-EM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TUM", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeriantur-M Airlines", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12473, + "callsign": "TUMTEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TUM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tyumenspecavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12474, + "callsign": "TUNISIAN AIRFORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TUN", + "codeIso2Country": "TN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tunisian Air Force", + "nameCountry": "Tunisia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 12475, + "callsign": "TURISTICO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TUO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taxi Aereo Turistico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12476, + "callsign": "", + "codeHub": "UUBW", + "codeIataAirline": "", + "codeIcaoAirline": "TUP", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tupolev-Aerotrans", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12477, + "callsign": "TUPOLEV AIR", + "codeHub": "UUBW", + "codeIataAirline": "", + "codeIcaoAirline": "TUP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviastar-TU", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12478, + "callsign": "AIR TURQUOISE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TUQ", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Turquoise", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12479, + "callsign": "AEROTUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TUR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotur", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12480, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TUR", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atur", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12481, + "callsign": "", + "codeHub": "CAI", + "codeIataAirline": "", + "codeIcaoAirline": "TUT", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "TUT Airlines", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12482, + "callsign": "TUR SERVICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TUU", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Compania Aerea de Servicios Tur Air", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12483, + "callsign": "TURAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TUV", + "codeIso2Country": "PL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turavia", + "nameCountry": "Poland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12484, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TUY", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Empressa Aerotuy", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12485, + "callsign": "TUNA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TUZ", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tuna Aero", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12486, + "callsign": "TRANS-AMERICA", + "codeHub": "LAX", + "codeIataAirline": "", + "codeIcaoAirline": "TVA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans America Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12487, + "callsign": "AEROFLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TVD", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroflight Academy of Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12488, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TVE", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tam Aviacao Executiva", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12489, + "callsign": "TRAVASA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TVH", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trabajos Aereos Vascongados", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12490, + "callsign": "TIRAMAVIA", + "codeHub": "KIV", + "codeIataAirline": "", + "codeIcaoAirline": "TVI", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tiramavia", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12491, + "callsign": "TRAVELAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TVL", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Travel Service", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12492, + "callsign": "TAVINA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TVN", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transcolombiana de Aviacion", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12493, + "callsign": "TRANS-BALLERIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TVO", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transavio", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12494, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TVO", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ditta Transavio di I. Ballero", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12495, + "callsign": "TRANSVIP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TVP", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transportes Aerovip", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12496, + "callsign": "TAVREY", + "codeHub": "ODS", + "codeIataAirline": "", + "codeIcaoAirline": "TVR", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tavrey Air Company", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12497, + "callsign": "TAXIS TOLUCA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TVT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taxis Aereos del Valle de Toluca", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12498, + "callsign": "TRANSAVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TVT", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transaviation", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12499, + "callsign": "", + "codeHub": "DMB", + "codeIataAirline": "", + "codeIcaoAirline": "TWC", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taraz Wings Aircompany", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12500, + "callsign": "TARAZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TWC", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taraz Wings", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12501, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "TWD", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wings Aviation (Nigeria)", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12502, + "callsign": "TRADEWINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TWD", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wings Aviation", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12503, + "callsign": "CLOUD RUNNER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TWF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "247 Jet Ltd", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12504, + "callsign": "TWIN-GOOSE", + "codeHub": "BWE", + "codeIataAirline": "", + "codeIcaoAirline": "TWG", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air-Taxi Europe", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12505, + "callsign": "TRANSWING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TWG", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Wing", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12506, + "callsign": "TWINJET", + "codeHub": "LTN", + "codeIataAirline": "", + "codeIcaoAirline": "TWJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Twinjet Aircraft Sales", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12507, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TWJ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Twinjet Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12508, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TWK", + "codeIso2Country": "TD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircraft Machine Works Chad (AMW)", + "nameCountry": "Chad", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12509, + "callsign": "TRADEWINDS CANADA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TWL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tradewinds Aviation", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12510, + "callsign": "", + "codeHub": "MPM", + "codeIataAirline": "", + "codeIcaoAirline": "TWM", + "codeIso2Country": "MZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transairways", + "nameCountry": "Mozambique", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12511, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TWM", + "codeIso2Country": "MZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kaya Airlines", + "nameCountry": "Mozambique", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12512, + "callsign": "COLIBRI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TWO", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Twente Airlines", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12513, + "callsign": "", + "codeHub": "AMM", + "codeIataAirline": "", + "codeIcaoAirline": "TWR", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transworld Aviation", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12514, + "callsign": "TRANSWORLD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TWR", + "codeIso2Country": "JO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transworld Airfreighters", + "nameCountry": "Jordan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12515, + "callsign": "SUPERIOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TWT", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transwest Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12516, + "callsign": "WELWITCHIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TWW", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Air Welwitchia", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12517, + "callsign": "TWLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TWY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Solaris Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12518, + "callsign": "OKAY AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TXA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Texair Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12519, + "callsign": "TRANSEXPORT", + "codeHub": "UMLI", + "codeIataAirline": "", + "codeIcaoAirline": "TXC", + "codeIso2Country": "BY", + "founding": 1992, + "iataPrefixAccounting": "", + "nameAirline": "Transaviaexport Cargo Airline", + "nameCountry": "Belarus", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12520, + "callsign": "TAXI OESTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TXD", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis Del Noroeste", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12521, + "callsign": "TAXI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TXE", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transaero Express", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12522, + "callsign": "ALFE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TXF", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis Alfe", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12523, + "callsign": "TEXTRON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TXH", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bell Helicopter", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12524, + "callsign": "AEREOTAXIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TXI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aereotaxis", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12525, + "callsign": "TAXILEO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TXL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aereo Taxi de Leon", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12526, + "callsign": "TAXI COZATL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TXL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taxi Aereo Cozatl", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12527, + "callsign": "TAXIMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TXM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taxi Aereo de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12528, + "callsign": "TEXAS NATIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TXN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Texas National Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12529, + "callsign": "MONSE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TXO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotax Monse", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12530, + "callsign": "TAXPA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TXP", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Linea Aerea Taxpa", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12531, + "callsign": "TAXIREY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TXR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taxirey", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12532, + "callsign": "TEXAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TXS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Texas Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12533, + "callsign": "TEXAS CHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TXT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Texas Air Charters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12534, + "callsign": "ATESA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TXU", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atesa Aerotaxis Ecuatorianos", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12535, + "callsign": "TAXIVALLARTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TXV", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Puerto Vallarta Taxi Aereo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12536, + "callsign": "", + "codeHub": "KDTO", + "codeIataAirline": "", + "codeIcaoAirline": "TXZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Texstar Air Freight", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12537, + "callsign": "TEX STAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TXZ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tex Star Air Freight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12538, + "callsign": "TRANSYLVANIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TYC", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transylvania International Airlines", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12539, + "callsign": "TAYFLITE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TYF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tayflite", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12540, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TYJ", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tyrolean Jet Service", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12541, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TYJ", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tyrolean Jet Services Malta", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12542, + "callsign": "", + "codeHub": "DAM", + "codeIataAirline": "", + "codeIcaoAirline": "TYL", + "codeIso2Country": "SY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Damascene Airways", + "nameCountry": "Syria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12543, + "callsign": "DAMASAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TYL", + "codeIso2Country": "SY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Damascene Airlines", + "nameCountry": "Syria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12544, + "callsign": "TRINITY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TYT", + "codeIso2Country": "IE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "National Flight Centre", + "nameCountry": "Ireland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12545, + "callsign": "TYROL AMBULANCE", + "codeHub": "INN", + "codeIataAirline": "", + "codeIcaoAirline": "TYW", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tyrol Air Ambulance", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12546, + "callsign": "TYROL AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TYW", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tyrolean Air Ambulance", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12547, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TYW", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tyrol Air Ambulance", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12548, + "callsign": "AERONAVES AZTECA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TZA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronaves Azteca", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12549, + "callsign": "AERO TOMZA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TZA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Tomza", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12550, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12551, + "callsign": "TRANSPORTE SAENZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TZE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transporte Aereo Ernesto Saenz", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12552, + "callsign": "TAJIKISTAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TZK", + "codeIso2Country": "TJ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tajikistan", + "nameCountry": "Tajikistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12553, + "callsign": "ZELIN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TZL", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tselina", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12554, + "callsign": "TAXI ATIZAPAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TZP", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxis de Atizapan", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12555, + "callsign": "", + "codeHub": "HRE", + "codeIataAirline": "", + "codeIcaoAirline": "TZR", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rainbow Airlines", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12556, + "callsign": "RAIN-BEE", + "codeHub": "PMV", + "codeIataAirline": "", + "codeIcaoAirline": "TZR", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rainbow Air", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12557, + "callsign": "AZTECA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TZS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotransportacion Azteca", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12558, + "callsign": "TAMAZULA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "TZU", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Tamazula", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12559, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "U1L", + "codeIso2Country": "BO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas Orientales", + "nameCountry": "Bolivia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12560, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UAS/AEF Leuchars", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12561, + "callsign": "UNITED ARABIAN", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "UAB", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United Arabian Airlines", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12562, + "callsign": "UNITAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAC", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United Air Charters", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12563, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UAS/AEF Colerne", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12564, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAD", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Univex", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12565, + "callsign": "UNIFORCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAF", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United Arab Emirates Air Force", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 12566, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UAS/AEF Cambridge", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12567, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UAS/AEF Newton", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12568, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAH", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AEF Cranwell", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12569, + "callsign": "UNAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAI", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Union Africaine Des Transports", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12570, + "callsign": "UNIAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAI", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Uni-Air International", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12571, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAJ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UAS/AEF Glasgow", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12572, + "callsign": "", + "codeHub": "UKKT", + "codeIataAirline": "", + "codeIcaoAirline": "UAK", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviant", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12573, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAK", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviant", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12574, + "callsign": "AVIATION PLANT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAK", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kiev Aviation Plant", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12575, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAM", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UAS/AEF Woodvale", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12576, + "callsign": "AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAN", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviaton", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12577, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAO", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UAS/AEF Benson", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12578, + "callsign": "", + "codeHub": "UKKM", + "codeIataAirline": "", + "codeIcaoAirline": "UAP", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Antonov Airtrack", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12579, + "callsign": "AIRTRACKER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAP", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Antonov Airtracker", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12580, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAQ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UAS/AEF Leeming", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12581, + "callsign": "AEROSTAR", + "codeHub": "KBP", + "codeIataAirline": "", + "codeIcaoAirline": "UAR", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerostar Airlnes", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12582, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Uni-Air", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12583, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UAS/AEF Belfast", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12584, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAS", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UAS Cranwell", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12585, + "callsign": "RIVERSIDE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Universal Air Transport", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12586, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAU", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UAS/AEF Boscombe Down", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12587, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAV", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UAS / AEF Wyton", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12588, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAW", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UAS/AEF St Athan", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12589, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAX", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UAS/AEF Church Fenton", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12590, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UAY", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UAS/AEF Cosford", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12591, + "callsign": "COMMUTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UCA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Commutair / US Airways Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12592, + "callsign": "EAGLE EYE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UCB", + "codeIso2Country": "CW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United Caribbean Airlines", + "nameCountry": "Curacao", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12593, + "callsign": "UGANDA CARGO", + "codeHub": "EBB", + "codeIataAirline": "", + "codeIcaoAirline": "UCC", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Uganda Air Cargo", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12594, + "callsign": "US CHARTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UCH", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "US Airports Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12595, + "callsign": "GALETA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UCK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "State Firefighting Service Of The Eastern Kazakhstan Region", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12596, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UCK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "East Kazakhstan Region Air Enterprise", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12597, + "callsign": "MULE FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UCM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "University of Central Missouri", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12598, + "callsign": "CHARTER UKRAINE", + "codeHub": "KBP", + "codeIataAirline": "", + "codeIcaoAirline": "UCR", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero-Charter", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12599, + "callsign": "UNITED CARRIERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UCS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United Carriers Systems", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12600, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UCV", + "codeIso2Country": "SA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United Company for Aviation Administration", + "nameCountry": "Saudi Arabia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12601, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UCZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12602, + "callsign": "UDARA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UDA", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pusdiklat Perhubungan Udara/Plp", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12603, + "callsign": "AIR L-A", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UED", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air L.A.", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12604, + "callsign": "", + "codeHub": "SUS", + "codeIataAirline": "", + "codeIcaoAirline": "UEJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetcorp", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12605, + "callsign": "JETCORP", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UEJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United Executive Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12606, + "callsign": "", + "codeHub": "DNK", + "codeIataAirline": "", + "codeIcaoAirline": "UES", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UES-Avia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12607, + "callsign": "AVIASYSTEM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UES", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ues-Avia Aircompany", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12608, + "callsign": "UNITED EUROPEAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UEU", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United European Airlines", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12609, + "callsign": "", + "codeHub": "KGO", + "codeIataAirline": "", + "codeIcaoAirline": "UFA", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "The State Flight Academy of Ukraine", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 12610, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UFA", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ukraine State Flight Academy", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12611, + "callsign": "FLIGHT ACADEMY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UFA", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "State Flight Academy Of Ukraine, The", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12612, + "callsign": "UMBRIA FLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UFI", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Umbria Fly", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12613, + "callsign": "UNIFLY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UFL", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Unifly", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12614, + "callsign": "UNITED AFRICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UFR", + "codeIso2Country": "LR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United Africa Airline (Liberia)", + "nameCountry": "Liberia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12615, + "callsign": "FEEDER FLIGHT", + "codeHub": "ORD", + "codeIataAirline": "", + "codeIcaoAirline": "UFS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UFS", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12616, + "callsign": "UGAWINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UGB", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Meridiana Africa Airlines (Uganda)", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12617, + "callsign": "URGEMER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UGC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Urgemer Canarias", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12618, + "callsign": "UGLY VAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UGL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Inter-Island Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12619, + "callsign": "", + "codeHub": "ALA", + "codeIataAirline": "", + "codeIcaoAirline": "UGN", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yuzhnaya Kazakhstan Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12620, + "callsign": "PLUTON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UGN", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yuzhnaya", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12621, + "callsign": "", + "codeHub": "OSF", + "codeIataAirline": "", + "codeIcaoAirline": "UGP", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shar Ink", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12622, + "callsign": "SHARNIK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UGP", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Shar Ink", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12623, + "callsign": "HANDLING COMPANY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UHC", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ukrainian Handling Company", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12624, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UHE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Unidad de Helicopteros de la Ertzaintza", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12625, + "callsign": "", + "codeHub": "ACC", + "codeIataAirline": "", + "codeIcaoAirline": "UHI", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Unicorn Air", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12626, + "callsign": "UKRAINE COPTERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UHL", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ukrainian Helicopters", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12627, + "callsign": "PILOT AIR", + "codeHub": "ULY", + "codeIataAirline": "", + "codeIcaoAirline": "UHS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ulyanovsk Higher Civil Aviation School", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 12628, + "callsign": "", + "codeHub": "BEG", + "codeIataAirline": "", + "codeIcaoAirline": "UIL", + "codeIso2Country": "RS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United International Airlines", + "nameCountry": "Serbia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12629, + "callsign": "UKRAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UIR", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ukrair, Aviacompany", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12630, + "callsign": "ARTIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UIT", + "codeIso2Country": "NO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Universitetet I Tromso", + "nameCountry": "Norway", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12631, + "callsign": "UNIVERSAL JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UJR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Universal Jet Rental de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12632, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UJS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurojet Service", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12633, + "callsign": "", + "codeHub": "BCT", + "codeIataAirline": "", + "codeIcaoAirline": "UJT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Universal Jet Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12634, + "callsign": "UNI-JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UJT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Universal Jet Aviation", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12635, + "callsign": "", + "codeHub": "KBP", + "codeIataAirline": "", + "codeIcaoAirline": "UKL", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ukraine Air Alliance", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12636, + "callsign": "", + "codeHub": "KBP", + "codeIataAirline": "", + "codeIcaoAirline": "UKL", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12637, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UKL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ukraine Air Alliance", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12638, + "callsign": "UKRAINE ALLIANCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UKL", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ukraine Airalliance", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12639, + "callsign": "ENTERPRISE UKRAINE", + "codeHub": "KBP", + "codeIataAirline": "", + "codeIcaoAirline": "UKN", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ukraine Air Enterprise", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12640, + "callsign": "", + "codeHub": "KBP", + "codeIataAirline": "", + "codeIcaoAirline": "UKN", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ukraina Air Enterprise", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 12641, + "callsign": "YUKOS BULGARIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UKO", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yukos", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12642, + "callsign": "NAFTEX BULGARIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UKO", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Naftex Bulgaria", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12643, + "callsign": "POLICE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UKP", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UK Home Office", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12644, + "callsign": "UKTUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UKT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UKTUS, Aircompany", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12645, + "callsign": "CLOUD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UKT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atlantic Bridge Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12646, + "callsign": "", + "codeHub": "SVX", + "codeIataAirline": "", + "codeIcaoAirline": "UKU", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Uktus Avia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12647, + "callsign": "", + "codeHub": "SVX", + "codeIataAirline": "", + "codeIcaoAirline": "UKU", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sverdlovsk 2nd Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12648, + "callsign": "PYSHMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UKU", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Second Sveridlovsk Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12649, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UKU", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sverdlovsk 2nd Aviation Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12650, + "callsign": "UKRAINE WEST", + "codeHub": "LWO", + "codeIataAirline": "", + "codeIcaoAirline": "UKW", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lviv Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12651, + "callsign": "ULTRAJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ULA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ultraair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12652, + "callsign": "USKAM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ULB", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ulba", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12653, + "callsign": "AIRLANKA CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ULC", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airlanka Cargo", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12654, + "callsign": "ALBI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ULC", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Albinati Aviation", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12655, + "callsign": "", + "codeHub": "BKK", + "codeIataAirline": "", + "codeIcaoAirline": "ULG", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "U Airlines", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12656, + "callsign": "ULTIMATE HELI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ULH", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ultimate Heli", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12657, + "callsign": "", + "codeHub": "IOM", + "codeIataAirline": "", + "codeIcaoAirline": "ULL", + "codeIso2Country": "IM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ULL 14", + "nameCountry": "Isle of Man", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12658, + "callsign": "", + "codeHub": "JUB", + "codeIataAirline": "", + "codeIcaoAirline": "ULR", + "codeIso2Country": "SS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ultimate Air", + "nameCountry": "South Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12659, + "callsign": "ULSTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "ULS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Carroll Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12660, + "callsign": "ULTRAIR", + "codeHub": "MQY", + "codeIataAirline": "", + "codeIcaoAirline": "ULT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ultrair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12661, + "callsign": "HUMAYA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UMA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lineas Aereas Del Humaya", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12662, + "callsign": "", + "codeHub": "PEG", + "codeIataAirline": "", + "codeIcaoAirline": "UMB", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airumbria", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12663, + "callsign": "AIR UMBRIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UMB", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Umbria, Societa", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12664, + "callsign": "YUZMASH", + "codeHub": "DNK", + "codeIataAirline": "", + "codeIcaoAirline": "UMK", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yuzmashavia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12665, + "callsign": "TOPAZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UMS", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Unitemp-M", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12666, + "callsign": "UNICOPTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UNC", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Uni-fly", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12667, + "callsign": "ATUNEROS UNIDOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UND", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Atuneros Linidos de California", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12668, + "callsign": "AEROUNE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UNE", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Universal", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12669, + "callsign": "UNION FLIGHTS", + "codeHub": "SMF", + "codeIataAirline": "", + "codeIcaoAirline": "UNF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Union Flights", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12670, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UNF", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Union Flights", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12671, + "callsign": "UNITAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UNI", + "codeIso2Country": "ZW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United Air Charters", + "nameCountry": "Zimbabwe", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12672, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UNI", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Universal Airlines", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12673, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UNN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12674, + "callsign": "UNITED NATIONS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UNO", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United Nations", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12675, + "callsign": "UNIQUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UNQ", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Unique Air Charter", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12676, + "callsign": "", + "codeHub": "RWN", + "codeIataAirline": "", + "codeIcaoAirline": "UNR", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12677, + "callsign": "RIVNE UNIVERSAL", + "codeHub": "RWN", + "codeIataAirline": "", + "codeIcaoAirline": "UNR", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rivne Universal Avia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12678, + "callsign": "", + "codeHub": "IST", + "codeIataAirline": "", + "codeIcaoAirline": "UNS", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UPS Uensped Paket Servisi", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12679, + "callsign": "UNSPED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UNS", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Unsped Paket Servisi", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12680, + "callsign": "UNIVERSITARIO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UNT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos Universitarios", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12681, + "callsign": "UNIEURO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UNU", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Unifly Servizi Aerei", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12682, + "callsign": "UKRAINE UNIVERSAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UNV", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ukraine Universal", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12683, + "callsign": "", + "codeHub": "CGH", + "codeIataAirline": "", + "codeIcaoAirline": "UNX", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Unex Airlines", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12684, + "callsign": "UNEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UNX", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Unex - Universal Express Linhas Aereas", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12685, + "callsign": "UNIVERSITY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UNY", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lund University School of Aviation, TFHS", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12686, + "callsign": "KRIS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UPB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Foyle Charters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12687, + "callsign": "CUTLASS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UPC", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Foyle Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12688, + "callsign": "BROADSWORD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UPD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Foyle Charter Airways", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12689, + "callsign": "", + "codeHub": "UKKJ", + "codeIataAirline": "", + "codeIcaoAirline": "UPL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ukrainian Pilot School", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12690, + "callsign": "PILOT SCHOOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UPL", + "codeIso2Country": "UA", + "founding": 1995, + "iataPrefixAccounting": "", + "nameAirline": "Ukrainian Pilot School", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12691, + "callsign": "ROSAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "URA", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircompany Rosavia", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12692, + "callsign": "SURFAIR", + "codeHub": "PAO", + "codeIataAirline": "", + "codeIcaoAirline": "URF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Surf Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12693, + "callsign": "EXECUTIVE EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "URF", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Executive Flight Services", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12694, + "callsign": "URI AIR", + "codeHub": "USN", + "codeIataAirline": "", + "codeIcaoAirline": "URI", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "uSKY AIR", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12695, + "callsign": "DJUMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "URK", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turkestan", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12696, + "callsign": "TURAN", + "codeHub": "GYD", + "codeIataAirline": "", + "codeIcaoAirline": "URN", + "codeIso2Country": "AZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turan Air", + "nameCountry": "Azerbaijan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12697, + "callsign": "AIR-ARP", + "codeHub": "IEV", + "codeIataAirline": "", + "codeIcaoAirline": "URP", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ARP 410 Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12698, + "callsign": "", + "codeHub": "KBP", + "codeIataAirline": "", + "codeIcaoAirline": "URP", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12699, + "callsign": "", + "codeHub": "LJU", + "codeIataAirline": "", + "codeIcaoAirline": "URR", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12700, + "callsign": "AIR AURORA", + "codeHub": "MBX", + "codeIataAirline": "", + "codeIcaoAirline": "URR", + "codeIso2Country": "SI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aurora Airlines", + "nameCountry": "Slovenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12701, + "callsign": "", + "codeHub": "UDYE", + "codeIataAirline": "", + "codeIcaoAirline": "URT", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia-Urartu", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12702, + "callsign": "URARTU AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "URT", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia-Urartu", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12703, + "callsign": "URAI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "URV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Uraiavia", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12704, + "callsign": "", + "codeHub": "TBS", + "codeIataAirline": "", + "codeIcaoAirline": "URX", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurex Cargo", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12705, + "callsign": "EUREX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "URX", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Eurex Airlines", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12706, + "callsign": "CENTURY AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "URY", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Century Aviation", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12707, + "callsign": "TUSHETI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "USB", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tusheti", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12708, + "callsign": "STAR CHECK", + "codeHub": "CMH", + "codeIataAirline": "", + "codeIcaoAirline": "USC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airnet Systems", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12709, + "callsign": "", + "codeHub": "LCK", + "codeIataAirline": "", + "codeIcaoAirline": "USC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AirNet Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12710, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "USC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AirNet", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12711, + "callsign": "STARCHECK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "USC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "US Check Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12712, + "callsign": "AFRICA EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "USF", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "USAfrica Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12713, + "callsign": "USJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "USJ", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "US Jet", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12714, + "callsign": "SKIF-AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "USK", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skif-Air", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12715, + "callsign": "US ARMY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "USR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "US Army Aeronautical Services Agency", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12716, + "callsign": "AUSTRO AEREO", + "codeHub": "CUE", + "codeIataAirline": "", + "codeIcaoAirline": "UST", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Austro Aereo", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12717, + "callsign": "AKSAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "USW", + "codeIso2Country": "UZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Special Aviation Works", + "nameCountry": "Uzbekistan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12718, + "callsign": "AIR EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "USX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "US Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12719, + "callsign": "UNIFORM ECHO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UTD", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "United Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12720, + "callsign": "", + "codeHub": "SSG", + "codeIataAirline": "", + "codeIcaoAirline": "UTG", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UTAGE - Union de Transporte Aereo de Guinea Ecuato", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12721, + "callsign": "UTAGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UTG", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Union de Transportes Aereo de Guinea Ecuatorial", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12722, + "callsign": "IRKUT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UTK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Irkutsk Aviation Industrail Association", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12723, + "callsign": "", + "codeHub": "BBU", + "codeIataAirline": "", + "codeIcaoAirline": "UTL", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviatia Utilitara Bucuresti", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12724, + "callsign": "AV UTIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UTL", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviatia Utilitara", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12725, + "callsign": "AVIATAPS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UTM", + "codeIso2Country": "UZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tapc Aviatrans Aircompany", + "nameCountry": "Uzbekistan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12726, + "callsign": "TRANS-ULGII", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UTN", + "codeIso2Country": "MN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans-Ulgii", + "nameCountry": "Mongolia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12727, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UTR", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UTair South Africa", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12728, + "callsign": "AGROAEROTRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UTR", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotrans", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12729, + "callsign": "", + "codeHub": "KHC", + "codeIataAirline": "", + "codeIcaoAirline": "UTS", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "UKSATSE - Ukrainian State Air Traffic Service Ente", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 12730, + "callsign": "AIRRUH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UTS", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "State Air Traffic Service Enterprise", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12731, + "callsign": "ARABIAN TRANSPORT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UTT", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transarabian Transportation Services", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12732, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UTU", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Urartu-Air", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12733, + "callsign": "UVAVEMEX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UVM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Uvavemex", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12734, + "callsign": "SENYARI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UVN", + "codeIso2Country": "KW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Gulf Aviation Services Group (United Aviation)", + "nameCountry": "Kuwait", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12735, + "callsign": "UNI-LEONE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UVS", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Universal", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12736, + "callsign": "AUVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UVT", + "codeIso2Country": "ID", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Auvia Air", + "nameCountry": "Indonesia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12737, + "callsign": "GRUMPY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UWA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "South East Aviation Holding", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12738, + "callsign": "", + "codeHub": "OZH", + "codeIataAirline": "", + "codeIcaoAirline": "UZA", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Constanta Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12739, + "callsign": "CONSTANTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UZA", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Constanta", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12740, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12741, + "callsign": "YUZHNOE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UZH", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yuzhnoye State Office", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12742, + "callsign": "UZAVIAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "UZL", + "codeIso2Country": "UZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Uzavialeasing", + "nameCountry": "Uzbekistan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12743, + "callsign": "VOLGA ATLANTIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VAA", + "codeIso2Country": "SZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Volga Atlantic Airlines", + "nameCountry": "Swaziland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12744, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VAA", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Venda Airways", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12745, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VAB", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Virtrans", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12746, + "callsign": "VACATIONAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VAC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vacationair", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12747, + "callsign": "VALLES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VAD", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxi Los Valles", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12748, + "callsign": "AIR-EVANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VAE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air-Evan's, Escuela de Pilotos Privados", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12749, + "callsign": "SEGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VAG", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vega", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12750, + "callsign": "AIR AVALAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VAI", + "codeIso2Country": "YU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avalair", + "nameCountry": "Yugoslavia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12751, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VAL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Voyageur Airways", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12752, + "callsign": "AMERAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VAM", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ameravia", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12753, + "callsign": "CAMEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VAN", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Caravan Air", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12754, + "callsign": "PHUKET AIR", + "codeHub": "BKK", + "codeIataAirline": "", + "codeIcaoAirline": "VAP", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phuket Airlines", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12755, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VAP", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phuket Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12756, + "callsign": "VAQUERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VAQ", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviacion Vap", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12757, + "callsign": "", + "codeHub": "DXB", + "codeIataAirline": "", + "codeIcaoAirline": "VAR", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air-Van Airlines", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12758, + "callsign": "", + "codeHub": "SAL", + "codeIataAirline": "", + "codeIcaoAirline": "VAR", + "codeIso2Country": "SV", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vuela Airlines", + "nameCountry": "El Salvador", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12759, + "callsign": "VANAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VAR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vanair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12760, + "callsign": "VAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VAR", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air-Van", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12761, + "callsign": "VANTAGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VAX", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Citizen Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12762, + "callsign": "NOVE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VBA", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AVB 2012", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12763, + "callsign": "AIR LUBO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VBB", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Lubo", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12764, + "callsign": "AIR VICTOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VBC", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AVB-2004", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12765, + "callsign": "", + "codeHub": "EVN", + "codeIataAirline": "", + "codeIcaoAirline": "VBD", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "V Bird Avia", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12766, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VBD", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "V Berd Avia", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12767, + "callsign": "", + "codeHub": "LED", + "codeIataAirline": "", + "codeIcaoAirline": "VBG", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vyborg", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12768, + "callsign": "VYBORG AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VBG", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "North-West Air Tranport Company", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12769, + "callsign": "BLUEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VBH", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Virgin Blue Holdings", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12770, + "callsign": "BLUEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VBI", + "codeIso2Country": "AU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pacific Blue", + "nameCountry": "Australia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12771, + "callsign": "", + "codeHub": "CGH", + "codeIataAirline": "", + "codeIcaoAirline": "VBR", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Via Brasil", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12772, + "callsign": "VIABRASIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VBR", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Club Transportes Aereos", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12773, + "callsign": "AVBASE", + "codeHub": "CLE", + "codeIataAirline": "", + "codeIcaoAirline": "VBS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avbase Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12774, + "callsign": "AIR LUBO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VBV", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AVB-2010", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12775, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VCA", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviacharter Assistance", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12776, + "callsign": "VICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VCA", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vica - Viacao Charter Aerea", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12777, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VCB", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Real Aero Club De Vizcaya", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12778, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VCC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Real Aero Club de Jerez", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12779, + "callsign": "", + "codeHub": "SHJ", + "codeIataAirline": "", + "codeIcaoAirline": "VCG", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "KNG Transavia Cargo", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12780, + "callsign": "THUNDER CAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VCG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Vectra", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12781, + "callsign": "CONSORCIO HELITEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VCH", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Consorcio Helitec", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12782, + "callsign": "CI-TOURS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VCI", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "CI-Tours", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12783, + "callsign": "OBELIX", + "codeHub": "MLA", + "codeIataAirline": "", + "codeIcaoAirline": "VCJ", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avcon Jet Malta", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12784, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VCL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vertical-Team Airline", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12785, + "callsign": "CARMEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VCM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Volare Air Charter Company", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12786, + "callsign": "", + "codeHub": "SXF", + "codeIataAirline": "", + "codeIcaoAirline": "VCN", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ExecuJet Europe (Germany)", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12787, + "callsign": "", + "codeHub": "ZRH", + "codeIataAirline": "", + "codeIcaoAirline": "VCN", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "ExecuJet Europe (Switzerland)", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12788, + "callsign": "AVCON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VCN", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Execujet Aviation", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12789, + "callsign": "AVCON", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VCN", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avcon, Aviation Consulting", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12790, + "callsign": "AVIACOL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VCO", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviacion Colombiana", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12791, + "callsign": "VISCOUNT AIR", + "codeHub": "TUS", + "codeIataAirline": "", + "codeIcaoAirline": "VCT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Viscount Air Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12792, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VCZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12793, + "callsign": "PRIVIUM", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VDC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Excelair", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12794, + "callsign": "VIAJES DON GOYO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VDG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Viajes Don Goyo", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12795, + "callsign": "VIDEO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VDO", + "codeIso2Country": "BE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Red Air", + "nameCountry": "Belgium", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12796, + "callsign": "", + "codeHub": "SKP", + "codeIataAirline": "", + "codeIcaoAirline": "VDR", + "codeIso2Country": "MK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Vardar", + "nameCountry": "Macedonia", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12797, + "callsign": "VARDAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VDR", + "codeIso2Country": "MK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air-Vardar", + "nameCountry": "Macedonia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12798, + "callsign": "VOLDIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VDR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Voldirect", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12799, + "callsign": "VEGA AIRLINES", + "codeHub": "PDV", + "codeIataAirline": "", + "codeIcaoAirline": "VEA", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vega Airlines", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12800, + "callsign": "VICTOR ECHO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VEE", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Victor Echo", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12801, + "callsign": "LADYBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VEF", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Virgin Express France", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12802, + "callsign": "AEROVEGA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VEG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovega", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12803, + "callsign": "", + "codeHub": "SVCS", + "codeIataAirline": "", + "codeIcaoAirline": "VEJ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroejecutivos", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12804, + "callsign": "VENEJECTUTIV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VEJ", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Ejecutivos", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12805, + "callsign": "ROTCEV", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VEK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vector", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12806, + "callsign": "VELVET", + "codeHub": "DUR", + "codeIataAirline": "", + "codeIcaoAirline": "VEL", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Velvet Sky", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12807, + "callsign": "VERAWAYS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VEL", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Veraways", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12808, + "callsign": "VICAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VEM", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Victoria Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12809, + "callsign": "VENTURE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VEN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hawaiian Sky Tours", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12810, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VEN", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transaven", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12811, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VEN", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Transaven Airlines", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12812, + "callsign": "VENTURE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VEN", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Capital Aviation Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12813, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VEP", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Vip", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12814, + "callsign": "EJECUTIVOS QUERETARO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VEQ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vuelos Ejecutivos de Queretaro", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12815, + "callsign": "AIR VERMONT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VER", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Vermont", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12816, + "callsign": "ALMAVER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VER", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Almaver", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12817, + "callsign": "POINSETT AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VET", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Venture Aviation Group", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12818, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VET", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovento", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12819, + "callsign": "FALCON ROYAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VFA", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Falcon Royal Air", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12820, + "callsign": "VIP FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VFI", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VIP-Flights", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12821, + "callsign": "VIFEMED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VFM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vifeomed", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12822, + "callsign": "VISION FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VFS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vision Flight Center", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12823, + "callsign": "ZETA FLIGHTS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VFT", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VZ Flights", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12824, + "callsign": "HONG XIANG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VGB", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Beijing Tianxinai General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12825, + "callsign": "VANGUARDIA COLIMA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VGC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vanguardia En Aviacion En Colima", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 12826, + "callsign": "AIR VOSGES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VGE", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Service Vosges", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12827, + "callsign": "VISTA GULF", + "codeHub": "DXB", + "codeIataAirline": "", + "codeIcaoAirline": "VGF", + "codeIso2Country": "AE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovista Gulf Express", + "nameCountry": "United Arab Emirates", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12828, + "callsign": "AVIAGE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VGG", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviage", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12829, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VGH", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ground Handling Control Center", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12830, + "callsign": "", + "codeHub": "LGW", + "codeIataAirline": "", + "codeIcaoAirline": "VGI", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Virgin Atlantic International", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12831, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VGI", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Virgin Atlantic International", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12832, + "callsign": "VIGO JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VGJ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vigo-Jet", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12833, + "callsign": "PREFECT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VGL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "RAF Gliding Squadron (SLG)", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12834, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "VGO", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "IAT Cargo Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12835, + "callsign": "VIRGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VGO", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "International Air Tours", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12836, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VGR", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia Group", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12837, + "callsign": "SMART", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VGS", + "codeIso2Country": "NL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Stichting Vliegschool 16Hoven", + "nameCountry": "Netherlands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12838, + "callsign": "", + "codeHub": "VGD", + "codeIataAirline": "", + "codeIcaoAirline": "VGV", + "codeIso2Country": "RU", + "founding": 1931, + "iataPrefixAccounting": "", + "nameAirline": "Vologda Air Enterprise", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12839, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VGV", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vologda Air Company", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12840, + "callsign": "VOLOGDA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VGV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vologda Air", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12841, + "callsign": "GALACTIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VGX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Virgin Galactic", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12842, + "callsign": "AIR V-H", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VHA", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VH-Air Industrie", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12843, + "callsign": "WILDCAT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VHC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VIH Cougar Helicopters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12844, + "callsign": "EARLY BIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VHM", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VHM Schul-Und Charterflug", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12845, + "callsign": "VALAIRHELI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VHS", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Valair", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12846, + "callsign": "VEGAS HEAT", + "codeHub": "LAS", + "codeIataAirline": "", + "codeIcaoAirline": "VHT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Corporate Flight International", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12847, + "callsign": "VITUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VIB", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vibroair", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12848, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VIB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vibro Air Flugservice", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12849, + "callsign": "VIP-EJECUTIVO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VIC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vip Servicios Aereos Ejecutivos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12850, + "callsign": "VIP EMPRESARIAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VIE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vip Empresarial", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12851, + "callsign": "VIENNA FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VIF", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VIF Luftfahrt", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12852, + "callsign": "", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "VIG", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vega Aviation", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12853, + "callsign": "VEGA AVIATION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VIG", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vega Aviation & Eng. Systems", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12854, + "callsign": "", + "codeHub": "KIV", + "codeIataAirline": "", + "codeIcaoAirline": "VIH", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vichi Air Company", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12855, + "callsign": "VICHI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VIH", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vichi", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12856, + "callsign": "AERO VIGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VIJ", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Club Aero Vigo", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12857, + "callsign": "VIKING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VIK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Viking International Airlines (VIA)", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12858, + "callsign": "VIKING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VIK", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Viking International Air Freight", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12859, + "callsign": "AVIALINER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VIL", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia Airlines", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12860, + "callsign": "VINAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VIN", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vinair - Helicopteros, Limitada", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12861, + "callsign": "AVIONIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VIO", + "codeIso2Country": "GR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avionic", + "nameCountry": "Greece", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12862, + "callsign": "VIAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VIP", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vipair Airlines", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12863, + "callsign": "AVIA-ASSIST", + "codeHub": "RKE", + "codeIataAirline": "", + "codeIcaoAirline": "VIS", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviation Assistance", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12864, + "callsign": "SERVISX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VIS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jet Servisx", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12865, + "callsign": "VICTORIA AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VIT", + "codeIso2Country": "GQ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Victoria Air", + "nameCountry": "Equatorial Guinea", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12866, + "callsign": "VIPAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VIT", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vip-Air", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12867, + "callsign": "", + "codeHub": "HAN", + "codeIataAirline": "", + "codeIcaoAirline": "VJC", + "codeIso2Country": "VN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VietJet AirAsia", + "nameCountry": "Vietnam", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12868, + "callsign": "AVIORIPRESE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VJG", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avioriprese Jet Executive", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12869, + "callsign": "VIAJES MEXICANOS", + "codeHub": "TLC", + "codeIataAirline": "", + "codeIcaoAirline": "VJM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Viajes Ejecutivos Mexicanos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12870, + "callsign": "", + "codeHub": "YYZ", + "codeIataAirline": "", + "codeIcaoAirline": "VJT", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VistaJet (Canada)", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12871, + "callsign": "VISTA MALTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VJT", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VistaJet", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12872, + "callsign": "VIKTORKA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VKA", + "codeIso2Country": "CZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intercom", + "nameCountry": "Czech Republic", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12873, + "callsign": "VEKEL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VKL", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovekel", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12874, + "callsign": "TRUE NORTH", + "codeHub": "YYJ", + "codeIataAirline": "", + "codeIcaoAirline": "VKN", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Viking Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "manufacturer" + }, + { + "ageFleet": 0.0, + "airlineId": 12875, + "callsign": "VALKYRIE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VKY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vent Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12876, + "callsign": "", + "codeHub": "QRA", + "codeIataAirline": "", + "codeIcaoAirline": "VLA", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Valan International Cargo Charter (South Africa)", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12877, + "callsign": "NALAU", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VLA", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Valan International Cargo Charter SA Pty Ltd.", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12878, + "callsign": "AKHTUBA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VLA", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Volga", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12879, + "callsign": "VOLTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VLB", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Volta", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12880, + "callsign": "AVALANCHE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VLC", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Albatros Aircraft Corp", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12881, + "callsign": "VALOR", + "codeHub": "MLA", + "codeIataAirline": "", + "codeIcaoAirline": "VLF", + "codeIso2Country": "MT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Valorfly", + "nameCountry": "Malta", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12882, + "callsign": "VOLANTE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VLF", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "D.F.S. UK", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12883, + "callsign": "TRANSVALEO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VLG", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Trans Air Valeologia", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12884, + "callsign": "VALAHIA", + "codeHub": "BBU", + "codeIataAirline": "", + "codeIcaoAirline": "VLH", + "codeIso2Country": "RO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Valahia Air", + "nameCountry": "Romania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12885, + "callsign": "VALJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VLJ", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Valljet", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12886, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VLL", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Valley SAR Training Unit", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12887, + "callsign": "VALAN", + "codeHub": "KIV", + "codeIataAirline": "", + "codeIcaoAirline": "VLN", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Valan", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12888, + "callsign": "VOLAX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VLR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Volare 22 X", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12889, + "callsign": "VILLAVERDE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VLR", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolineas Villaverde", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12890, + "callsign": "VIREL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VLS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Virel", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12891, + "callsign": "VERTICAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VLT", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vertical-T, Air Company", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12892, + "callsign": "VLADLIFT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VLV", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avialift Valdivostok", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12893, + "callsign": "AVOLAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VLX", + "codeIso2Country": "KG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Biz Jet Charter", + "nameCountry": "Kyrgyzstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12894, + "callsign": "VOLARE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VLZ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Volare Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12895, + "callsign": "VERO MONMOUTH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VMA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vero Monmouth Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12896, + "callsign": "AVIAMERICA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VME", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviacion Comercial de America", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12897, + "callsign": "", + "codeHub": "VLC", + "codeIataAirline": "", + "codeIcaoAirline": "VMM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vuelos Mediterraneo", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12898, + "callsign": "VUELOS MED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VMM", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Grupo Vuelos Mediterraneo", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12899, + "callsign": "VAMPIRE", + "codeHub": "RKE", + "codeIataAirline": "", + "codeIcaoAirline": "VMP", + "codeIso2Country": "DK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Execujet Scandinavia", + "nameCountry": "Denmark", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12900, + "callsign": "AERO VILAMOURA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VMR", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Vilamoura", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12901, + "callsign": "VICTOR MIKE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VMS", + "codeIso2Country": "TH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "H.R.H. The Crown Prince Maha Vajiralongkorn", + "nameCountry": "Thailand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12902, + "callsign": "VARMONTT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VMT", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Varmontt Air", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12903, + "callsign": "VENTA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VMX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeroventas De Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12904, + "callsign": "VEE NEAL FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VNA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vee Neal Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12905, + "callsign": "JETSTREAM INTERNATIONAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VNA", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Jetstream International Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12906, + "callsign": "EBBA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VNA", + "codeIso2Country": "UY", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Empresa Aviacion Interamericana", + "nameCountry": "Uruguay", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12907, + "callsign": "VUELOS NACIONALES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VNC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Intervuelos Nacionales", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12908, + "callsign": "AVINORD", + "codeHub": "LIN", + "codeIataAirline": "", + "codeIcaoAirline": "VND", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avionord", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12909, + "callsign": "VANGUARDIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VNG", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Servicios Vanguardia", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 12910, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VNK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vipport", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12911, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VNN", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12912, + "callsign": "AVANTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VNR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avantair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12913, + "callsign": "AEROVENA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VNS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovena", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12914, + "callsign": "AVIENT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VNT", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avient Air Zambia", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12915, + "callsign": "VANCE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VNX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Fly Advanced", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12916, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VNX", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Venexcargo", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12917, + "callsign": "TBILAVIA", + "codeHub": "TBS", + "codeIataAirline": "", + "codeIcaoAirline": "VNZ", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Tbilaviamsheni Georgia", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12918, + "callsign": "", + "codeHub": "KUF", + "codeIataAirline": "", + "codeIcaoAirline": "VOG", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovolga", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "merged", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12919, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VOL", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Volvo", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12920, + "callsign": "BLUE SPEED", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VOL", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blue Chip Jet", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12921, + "callsign": "FLIGHT CAL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VOR", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flight Calibration Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12922, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VOR", + "codeIso2Country": "IS", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunna Air", + "nameCountry": "Iceland", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12923, + "callsign": "", + "codeHub": "PRY", + "codeIataAirline": "", + "codeIcaoAirline": "VOS", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rovos Air", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12924, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VOY", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Volemos Servicios Aereos", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12925, + "callsign": "VIP TAXI", + "codeHub": "BTS", + "codeIataAirline": "", + "codeIcaoAirline": "VPA", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "DanubeWings", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12926, + "callsign": "", + "codeHub": "UKFY", + "codeIataAirline": "", + "codeIcaoAirline": "VPB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Veteran Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12927, + "callsign": "VETERAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VPB", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Veteran Air", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12928, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VPB", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Veteran Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12929, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VPB", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Veteran Air", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12930, + "callsign": "SOLAR", + "codeHub": "TLL", + "codeIataAirline": "", + "codeIcaoAirline": "VPC", + "codeIso2Country": "EE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Panaviatic", + "nameCountry": "Estonia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12931, + "callsign": "VIPER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VPR", + "codeIso2Country": "SE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Prime Airlines Of Sweden", + "nameCountry": "Sweden", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12932, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VPS", + "codeIso2Country": "EG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Petroleum Air Services", + "nameCountry": "Egypt", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12933, + "callsign": "", + "codeHub": "TBS", + "codeIataAirline": "", + "codeIcaoAirline": "VPV", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vip-Avia", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12934, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VPV", + "codeIso2Country": "GE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VIP Avia", + "nameCountry": "Georgia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12935, + "callsign": "TOPLUX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VPX", + "codeIso2Country": "LU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircraft VIP Services", + "nameCountry": "Luxembourg", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12936, + "callsign": "VIRAJ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VRA", + "codeIso2Country": "MD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Viraj-Avia", + "nameCountry": "Moldova", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12937, + "callsign": "SILVERBACK", + "codeHub": "KGL", + "codeIataAirline": "", + "codeIcaoAirline": "VRB", + "codeIso2Country": "RW", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Silverback Cargo Freighters", + "nameCountry": "Rwanda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12938, + "callsign": "VERACRUZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VRC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Taxi Aereo de Veracirliz", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12939, + "callsign": "", + "codeHub": "NLV", + "codeIataAirline": "", + "codeIcaoAirline": "VRE", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Volare Aircompany", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12940, + "callsign": "VARNA LINES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VRG", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Voyage Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12941, + "callsign": "VILLARICA", + "codeHub": "VER", + "codeIataAirline": "", + "codeIcaoAirline": "VRI", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerotaxi Villa Rica", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12942, + "callsign": "VR JET", + "codeHub": "BTS", + "codeIataAirline": "", + "codeIcaoAirline": "VRJ", + "codeIso2Country": "SK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VR Jet", + "nameCountry": "Slovakia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12943, + "callsign": "VOAR-LINHAS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VRL", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Voar", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12944, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VRN", + "codeIso2Country": "BR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VARIG", + "nameCountry": "Brazil", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12945, + "callsign": "AEROVITRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VRO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovitro", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12946, + "callsign": "VAIRSA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VRS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sirvair", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12947, + "callsign": "AVERITT", + "codeHub": "BNA", + "codeIataAirline": "", + "codeIcaoAirline": "VRT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Averitt Air Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12948, + "callsign": "VERITAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VRT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Veritair", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12949, + "callsign": "", + "codeHub": "UDYE", + "codeIataAirline": "", + "codeIcaoAirline": "VRZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vertir Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12950, + "callsign": "VERTIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VRZ", + "codeIso2Country": "AM", + "founding": 2009, + "iataPrefixAccounting": "", + "nameAirline": "Vertir", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12951, + "callsign": "AEROCRUZ", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VRZ", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Veracrhz", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12952, + "callsign": "STARBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VSA", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avstar Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12953, + "callsign": "VICKERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VSB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vickers", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12954, + "callsign": "VICKERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VSB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "BAe Systems Marine", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12955, + "callsign": "", + "codeHub": "BOG", + "codeIataAirline": "", + "codeIcaoAirline": "VSC", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avesca Colombia", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 12956, + "callsign": "AVESCA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VSC", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovias Especiales de Carga", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12957, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VSC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sociedad de Promocion y Gestion del Turismo Aragones", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12958, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VSC", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronautic de los Pirineos", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12959, + "callsign": "", + "codeHub": "MTY", + "codeIataAirline": "", + "codeIcaoAirline": "VSE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VARSA", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12960, + "callsign": "VASRE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VSE", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vuelos Asesorias Y Representaciones", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12961, + "callsign": "", + "codeHub": "LPA", + "codeIataAirline": "", + "codeIcaoAirline": "VSG", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AirClass Airways", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12962, + "callsign": "", + "codeHub": "LPA", + "codeIataAirline": "", + "codeIcaoAirline": "VSG", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Travel Service Espana", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12963, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VSG", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Travel Service Spain", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12964, + "callsign": "VISIG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VSG", + "codeIso2Country": "ES", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Visig", + "nameCountry": "Spain", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12965, + "callsign": "SKYVEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VSK", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Skyven Cielos de Venezuela", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12966, + "callsign": "VIETSTAR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VSM", + "codeIso2Country": "VN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vietstar Airlines", + "nameCountry": "Vietnam", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12967, + "callsign": "VISION", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VSN", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vision Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12968, + "callsign": "", + "codeHub": "SOF", + "codeIataAirline": "", + "codeIcaoAirline": "VSR", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviostart", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12969, + "callsign": "AVIOSTART", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VSR", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviostart AS", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12970, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VSR", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviostart", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12971, + "callsign": "WATERBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VSS", + "codeIso2Country": "VI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Virgin Islands Seaplane Shuttle", + "nameCountry": "U.S. Virgin Islands", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12972, + "callsign": "SOKUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VST", + "codeIso2Country": "KZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vesta", + "nameCountry": "Kazakhstan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12973, + "callsign": "VENAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VSU", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerolinea Aviasur", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12974, + "callsign": "VUELOS TOLLOCAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VTC", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vuelos Especializados Tollocan", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12975, + "callsign": "ATACARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VTG", + "codeIso2Country": "AO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviacao Transportes Aereos E Cargas", + "nameCountry": "Angola", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12976, + "callsign": "VUELOS TEHUACAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VTH", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vuelos Corporativos de Tehuacan", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12977, + "callsign": "AVIRCITI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VTI", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avirciti", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12978, + "callsign": "VOSTOK", + "codeHub": "KHV", + "codeIataAirline": "", + "codeIcaoAirline": "VTK", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vostok Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12979, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VTK", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vostok Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12980, + "callsign": "VITALA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VTL", + "codeIso2Country": "CL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Victor Tagle Larrain", + "nameCountry": "Chile", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12981, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VTM", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronaves TSM", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12982, + "callsign": "VECTOR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VTM", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vector-M Airlines", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12983, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VTP", + "codeIso2Country": "AM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "V.T.A. Group", + "nameCountry": "Armenia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12984, + "callsign": "VIATRANSPORT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VTT", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avia Trans Air Transport", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12985, + "callsign": "TURPIAL", + "codeHub": "VLN", + "codeIataAirline": "", + "codeIcaoAirline": "VTU", + "codeIso2Country": "VE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Turpial Airlines", + "nameCountry": "Venezuela", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12986, + "callsign": "AGROAVANTY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VTU", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avanty", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12987, + "callsign": "VERATAXIS", + "codeHub": "VER", + "codeIataAirline": "", + "codeIcaoAirline": "VTX", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Verataxis", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 12988, + "callsign": "", + "codeHub": "LOS", + "codeIataAirline": "", + "codeIcaoAirline": "VTY", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Midwest (Nigeria)", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "not_ready", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 12989, + "callsign": "VICTORY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VTY", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Midwest", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12990, + "callsign": "", + "codeHub": "DAR", + "codeIataAirline": "", + "codeIcaoAirline": "VTZ", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovista Tanzania", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "disabled", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 12991, + "callsign": "TAUSI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VTZ", + "codeIso2Country": "TZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovista", + "nameCountry": "Tanzania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12992, + "callsign": "FLIGHTVUE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VUE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AD Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12993, + "callsign": "VUKANI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VUK", + "codeIso2Country": "ZA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vukani Aviation", + "nameCountry": "South Africa", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12994, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VUK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Viking Airlines", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12995, + "callsign": "ELIOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VUL", + "codeIso2Country": "IT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Elios", + "nameCountry": "Italy", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12996, + "callsign": "AEROVUELOX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VUO", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovuelox", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12997, + "callsign": "VIPEC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VUR", + "codeIso2Country": "EC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vuelos Internos Privados (V.I.P.)", + "nameCountry": "Ecuador", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12998, + "callsign": "VUELA BUS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VUS", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vuela Bus", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 12999, + "callsign": "IALSI", + "codeHub": "DME", + "codeIataAirline": "", + "codeIcaoAirline": "VVA", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviast Air", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 13000, + "callsign": "VEE-TRANS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VVB", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VVB Aviation Charter Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 13001, + "callsign": "WORLDFOCUS", + "codeHub": "IST", + "codeIataAirline": "", + "codeIcaoAirline": "VVF", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "World Focus Airlines", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 13002, + "callsign": "WORLDFOCUS", + "codeHub": "IST", + "codeIataAirline": "", + "codeIcaoAirline": "VVF", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Anka Air", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 13003, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VVF", + "codeIso2Country": "TR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "World Focus Airways", + "nameCountry": "Turkey", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13004, + "callsign": "AEROVILLA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VVG", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aerovilla", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13005, + "callsign": "", + "codeHub": "SOF", + "codeIataAirline": "", + "codeIcaoAirline": "VVI", + "codeIso2Country": "BG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vivant Air", + "nameCountry": "Bulgaria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 13006, + "callsign": "AIR SALZBURG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VVP", + "codeIso2Country": "AT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vipjets Luftfahrtunternehmen", + "nameCountry": "Austria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13007, + "callsign": "VALAIRJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VVV", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Valair-Aviacao", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13008, + "callsign": "SEREOS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VWA", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Servicios Aereos", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13009, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VXG", + "codeIso2Country": "GA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avirex Gabon", + "nameCountry": "Gabon", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13010, + "callsign": "VIXEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VXN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sunset Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13011, + "callsign": "", + "codeHub": "BKO", + "codeIataAirline": "", + "codeIcaoAirline": "VXP", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Avion-Express", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "renamed", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 13012, + "callsign": "", + "codeHub": "BKO", + "codeIataAirline": "", + "codeIcaoAirline": "VXP", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mali Air Express", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 13013, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VXP", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Mali Air Express Train", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13014, + "callsign": "AVION EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VXP", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Soci�t� Avion Express (SAE)", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13015, + "callsign": "", + "codeHub": "IEV", + "codeIataAirline": "", + "codeIcaoAirline": "VXX", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviaekspress Airlines", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 13016, + "callsign": "", + "codeHub": "KBP", + "codeIataAirline": "", + "codeIcaoAirline": "VXX", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviaexpress Aircompany", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13017, + "callsign": "EXPRESSAVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VXX", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AviaExpress", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13018, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VYC", + "codeIso2Country": "NG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Yvic Airlines", + "nameCountry": "Nigeria", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13019, + "callsign": "ANGLESEY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VYT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Valley FTU", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13020, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VZC", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13021, + "callsign": "VZLYET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VZL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vzlyet", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13022, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VZL", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vzlet", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13023, + "callsign": ".", + "codeHub": "GEA", + "codeIataAirline": "", + "codeIcaoAirline": "VZR", + "codeIso2Country": "NC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Loyaute", + "nameCountry": "New Caledonia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled,charter" + }, + { + "ageFleet": 0.0, + "airlineId": 13024, + "callsign": "IAZUR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "VZR", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aviazur", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13025, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "W24", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Guinea Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13026, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "W5D", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Service Wildgruber", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13027, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "W9M", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Wemindji", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13028, + "callsign": "WESTAIR WINGS", + "codeHub": "ERS", + "codeIataAirline": "", + "codeIcaoAirline": "WAA", + "codeIso2Country": "NA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Westair Aviation", + "nameCountry": "Namibia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13029, + "callsign": "WABASH", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAB", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Industries", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13030, + "callsign": "WESTAF CARGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAC", + "codeIso2Country": "MR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West African Cargo Airlines", + "nameCountry": "Mauritania", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 13031, + "callsign": "WING ACE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAC", + "codeIso2Country": "JP", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "World Air Network", + "nameCountry": "Japan", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13032, + "callsign": "VULCAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Waddington FTU", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13033, + "callsign": "WESTERN EXPRESS", + "codeHub": "BOI", + "codeIataAirline": "", + "codeIcaoAirline": "WAE", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Western Air Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 13034, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAE", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Western Air Express", + "nameCountry": "United States of America", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13035, + "callsign": "", + "codeHub": "SIG", + "codeIataAirline": "", + "codeIcaoAirline": "WAF", + "codeIso2Country": "PR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Flamenco", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 13036, + "callsign": "FLAMENCO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAF", + "codeIso2Country": "PR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flamenco Airways", + "nameCountry": "Puerto Rico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13037, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wisconsin Air National Guard", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "government" + }, + { + "ageFleet": 0.0, + "airlineId": 13038, + "callsign": "", + "codeHub": "ABJ", + "codeIataAirline": "", + "codeIcaoAirline": "WAI", + "codeIso2Country": "CI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Westair Cargo Airlines", + "nameCountry": "Ivory Coast", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 13039, + "callsign": "BUSHWOOD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAI", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wings Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13040, + "callsign": "WESTERN ARCTIC", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAL", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Western Arctic Air", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13041, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "World Atlantic Airlines", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13042, + "callsign": "", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "WAM", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Taxi Sudan", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 13043, + "callsign": "", + "codeHub": "KRT", + "codeIataAirline": "", + "codeIcaoAirline": "WAM", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "unknown", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 13044, + "callsign": "WESTAIR MAIL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAM", + "codeIso2Country": "ML", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West African Air Services", + "nameCountry": "Mali", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13045, + "callsign": "WESTAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAM", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Westair de Mexico", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13046, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAM", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Taxi & Cargo", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 13047, + "callsign": "WANE KENYA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAN", + "codeIso2Country": "KE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wane Aviation", + "nameCountry": "Kenya", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13048, + "callsign": "WARBIRDS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAR", + "codeIso2Country": "NZ", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NZ Warbirds Association", + "nameCountry": "New Zealand", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13049, + "callsign": "WALSTEN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAS", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Walsten Air Services", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13050, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAS", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Walsten Air Service", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13051, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAT", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wings Air Transport", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13052, + "callsign": "VENTAIRE", + "codeHub": "FAI", + "codeIataAirline": "", + "codeIcaoAirline": "WAV", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Warbelow's Air Ventures", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 13053, + "callsign": "", + "codeHub": "HOU", + "codeIataAirline": "", + "codeIcaoAirline": "WAW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wing Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 13054, + "callsign": "WING SHUTTLE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAW", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wings Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13055, + "callsign": "CARGO BIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAX", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "World Air Cargo", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 13056, + "callsign": "WINGAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Bates Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13057, + "callsign": "GARONNE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WAY", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airways", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13058, + "callsign": "", + "codeHub": "HEL", + "codeIataAirline": "", + "codeIcaoAirline": "WBA", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "NORRA", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 13059, + "callsign": "ALBAJET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WBA", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Albatros", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13060, + "callsign": "WEST-LEONE", + "codeHub": "FNA", + "codeIataAirline": "", + "codeIcaoAirline": "WCA", + "codeIso2Country": "SL", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West Coast Airways", + "nameCountry": "Sierra Leone", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 13061, + "callsign": "WEST COAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WCC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West Coast Charters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 13062, + "callsign": "WEST COAST", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WCC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Sports Air Travel", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13063, + "callsign": "WHITE CLOUD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WCD", + "codeIso2Country": "KR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Kyungwoon University", + "nameCountry": "South Korea", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13064, + "callsign": "WHISKEY INDIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WCG", + "codeIso2Country": "GH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West Coast Airlines", + "nameCountry": "Ghana", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13065, + "callsign": "DRAKE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WCI", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Care", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13066, + "callsign": "COLUMBIA HELI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WCO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Columbia Helicopters", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 13067, + "callsign": "", + "codeHub": "EOH", + "codeIataAirline": "", + "codeIcaoAirline": "WCW", + "codeIso2Country": "CO", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West Caribbean Airways", + "nameCountry": "Colombia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 13068, + "callsign": "TITAN AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WCY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Viking Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13069, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WCZ", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Blocked", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13070, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WDA", + "codeIso2Country": "CD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "WDA - Wimbi Dira Airways", + "nameCountry": "Democratic Republic of the Congo", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13071, + "callsign": "WATCHDOG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WDG", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Ministry Of Agriculture Fisheries And Food", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13072, + "callsign": "WOODSTOCK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WDK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Capital Air Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13073, + "callsign": "WOODSTOCK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WDK", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Oxford Air Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13074, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WDL", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "WDL Aviation", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13075, + "callsign": "WIND RIDER", + "codeHub": "CMH", + "codeIataAirline": "", + "codeIcaoAirline": "WDR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Net Private Charter", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 13076, + "callsign": "WINDS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WDS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Four Winds Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13077, + "callsign": "WINDYCITY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WDY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Chicago Jet Group", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13078, + "callsign": "WINDYCITY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WDY", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Phoenix Airline Services", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13079, + "callsign": "AIRGO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WEC", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Universal Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13080, + "callsign": "WENDA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WED", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Anhui Sky-Aviation International Flight Academy", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13081, + "callsign": "VELES", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WEL", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Veles, Ukrainian Aviation Company", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13082, + "callsign": "WEST INDIAN", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WES", + "codeIso2Country": "VI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Rainbow International Airlines", + "nameCountry": "U.S. Virgin Islands", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 13083, + "callsign": "WEST EX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WES", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Western Express Air Lines", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13084, + "callsign": "AIRWET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WET", + "codeIso2Country": "MX", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Flywet", + "nameCountry": "Mexico", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13085, + "callsign": "VICTORIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WEV", + "codeIso2Country": "UG", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Victoria International Airways", + "nameCountry": "Uganda", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13086, + "callsign": "", + "codeHub": "YXE", + "codeIataAirline": "", + "codeIcaoAirline": "WEW", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pronto Airways", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "scheduled" + }, + { + "ageFleet": 0.0, + "airlineId": 13087, + "callsign": "", + "codeHub": "YXE", + "codeIataAirline": "", + "codeIcaoAirline": "WEW", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Express Air (Canada)", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "virtual" + }, + { + "ageFleet": 0.0, + "airlineId": 13088, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WEW", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Pronto Airways", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13089, + "callsign": "WINGS EXPRESS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WEX", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wings Express", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13090, + "callsign": "WEB ACADEMY", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WEY", + "codeIso2Country": "PT", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aeronautical Web Academy", + "nameCountry": "Portugal", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13091, + "callsign": "WESTFLUG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WFA", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Westflug", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13092, + "callsign": "SWIFTCOPTERS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WFC", + "codeIso2Country": "CH", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Swift Copters", + "nameCountry": "Switzerland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13093, + "callsign": "AVRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WFD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Woodford Flight Test", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13094, + "callsign": "AVRO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WFD", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Warton Large Aircraft Flight Operations", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13095, + "callsign": "WANFENG", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WFH", + "codeIso2Country": "CN", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wanfeng General Aviation", + "nameCountry": "China", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13096, + "callsign": "WILBURS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WFO", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wilbur's Flight Operations", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13097, + "callsign": "WORLD FLIGHT", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WFT", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aircharters Worldwide", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 13098, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WG1", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vacation Express Public Charter", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "charter" + }, + { + "ageFleet": 0.0, + "airlineId": 13099, + "callsign": "", + "codeHub": "IFO", + "codeIataAirline": "", + "codeIcaoAirline": "WGA", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vega Air Company", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 13100, + "callsign": "WEGA FRANKO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WGA", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Vega Air", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13101, + "callsign": "WESTERN GLOBAL", + "codeHub": "SRQ", + "codeIataAirline": "", + "codeIcaoAirline": "WGN", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Western Global Airlines", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 13102, + "callsign": "GRAND PRIX", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WGP", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Williams Grand Prix Engineering", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13103, + "callsign": "AIRWINGS", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WGS", + "codeIso2Country": "FI", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Airwings", + "nameCountry": "Finland", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13104, + "callsign": "", + "codeHub": "BWE", + "codeIataAirline": "", + "codeIcaoAirline": "WGT", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "VW Air Services", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 13105, + "callsign": "WORLDGATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WGT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Lion Air Services", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13106, + "callsign": "WORLDGATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WGT", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Volkswagen Air Service", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13107, + "callsign": "SKYE LINE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WHA", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Westhighland Aviation", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13108, + "callsign": "HOSHAM AIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WHB", + "codeIso2Country": "SD", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Forty Eight Aviation", + "nameCountry": "Sudan", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13109, + "callsign": "WESTLAND", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WHE", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "AgustaWestland Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13110, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WHH", + "codeIso2Country": "LK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Richy Slylark", + "nameCountry": "Sri Lanka", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13111, + "callsign": "WOODGATE", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WHL", + "codeIso2Country": "ZM", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Woodgate Air Services", + "nameCountry": "Zambia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13112, + "callsign": "WHIRLEYBIRD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WHR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hummingbird Helicopter Service", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 13113, + "callsign": "TANGI", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WHR", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Hummingbird Aviation", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13114, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WHS", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "WIKING Helicopter Service GmbH", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 13115, + "callsign": "WEEKING", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WHS", + "codeIso2Country": "DE", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wiking Helikopter Service", + "nameCountry": "Germany", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13116, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WHU", + "codeIso2Country": "HU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "West-Caravan", + "nameCountry": "Hungary", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13117, + "callsign": "AIR SOREL", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WHY", + "codeIso2Country": "CA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Air Sorel", + "nameCountry": "Canada", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13118, + "callsign": "SPELLCASTER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WHZ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Whizzard Helicopters", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13119, + "callsign": "WINDAERO", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WID", + "codeIso2Country": "RU", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wind Airline", + "nameCountry": "Russia", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13120, + "callsign": "WIGGINS AIRWAYS", + "codeHub": "MHT", + "codeIataAirline": "", + "codeIcaoAirline": "WIG", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wiggins Airways", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 13121, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WIG", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wiggins Airways", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13122, + "callsign": "", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WIK", + "codeIso2Country": "", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Waikato Apero Club", + "nameCountry": "", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13123, + "callsign": "", + "codeHub": "HIO", + "codeIataAirline": "", + "codeIcaoAirline": "WIL", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Aero Air", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "private" + }, + { + "ageFleet": 0.0, + "airlineId": 13124, + "callsign": "WINLINK", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WIN", + "codeIso2Country": "LC", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Winlink", + "nameCountry": "Saint Lucia", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13125, + "callsign": "WISCAIR", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WIS", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Paccair", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "cargo" + }, + { + "ageFleet": 0.0, + "airlineId": 13126, + "callsign": "STRIKER", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WIT", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wittering FTU", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13127, + "callsign": "VEE-AVIA", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WIW", + "codeIso2Country": "UA", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "V-Avia Airline", + "nameCountry": "Ukraine", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13128, + "callsign": "WIZARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WIZ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "MicroMatter Technology Solutions Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13129, + "callsign": "WIZARD", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WIZ", + "codeIso2Country": "UK", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Information Sciences (Scotland) Ltd.", + "nameCountry": "United Kingdom", + "sizeAirline": 0, + "statusAirline": "historical", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13130, + "callsign": "WINDSOR JET", + "codeHub": "", + "codeIataAirline": "", + "codeIcaoAirline": "WJM", + "codeIso2Country": "US", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Windsor Jet Management", + "nameCountry": "United States", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + }, + { + "ageFleet": 0.0, + "airlineId": 13131, + "callsign": "WIJET", + "codeHub": "LBG", + "codeIataAirline": "", + "codeIcaoAirline": "WJT", + "codeIso2Country": "FR", + "founding": 0, + "iataPrefixAccounting": "", + "nameAirline": "Wijet", + "nameCountry": "France", + "sizeAirline": 0, + "statusAirline": "active", + "type": "" + } +] \ No newline at end of file diff --git a/apps/api/data/airports.json b/apps/api/data/airports.json new file mode 100644 index 0000000..4a4382e --- /dev/null +++ b/apps/api/data/airports.json @@ -0,0 +1,154262 @@ +[ + { + "GMT": "-10", + "airportId": 1, + "codeIataAirport": "AAA", + "codeIataCity": "AAA", + "codeIcaoAirport": "NTGA", + "codeIso2Country": "PF", + "geonameId": "6947726", + "latitudeAirport": -17.05, + "longitudeAirport": -145.41667, + "nameAirport": "Anaa", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "10", + "airportId": 2, + "codeIataAirport": "AAB", + "codeIataCity": "AAB", + "codeIcaoAirport": "YARY", + "codeIso2Country": "AU", + "geonameId": "7730796", + "latitudeAirport": -26.7, + "longitudeAirport": 141.04167, + "nameAirport": "Arrabury", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "airportId": 3, + "codeIataAirport": "AAC", + "codeIataCity": "AAC", + "codeIcaoAirport": "HEAR", + "codeIso2Country": "EG", + "geonameId": "6297289", + "latitudeAirport": 31.133333, + "longitudeAirport": 33.75, + "nameAirport": "El Arish International Airport", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "1", + "airportId": 4, + "codeIataAirport": "AAE", + "codeIataCity": "AAE", + "codeIcaoAirport": "DABB", + "codeIso2Country": "DZ", + "geonameId": "2570559", + "latitudeAirport": 36.821392, + "longitudeAirport": 7.811857, + "nameAirport": "Les Salines", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-5", + "airportId": 5, + "codeIataAirport": "AAF", + "codeIataCity": "AAF", + "codeIcaoAirport": "KAAF", + "codeIso2Country": "US", + "geonameId": "4146153", + "latitudeAirport": 29.733334, + "longitudeAirport": -84.98333, + "nameAirport": "Apalachicola Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 6, + "codeIataAirport": "AAG", + "codeIataCity": "AAG", + "codeIcaoAirport": "SSYA", + "codeIso2Country": "BR", + "geonameId": "3471795", + "latitudeAirport": -24.103611, + "longitudeAirport": -49.79, + "nameAirport": "Arapoti", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 7, + "codeIataAirport": "AAH", + "codeIataCity": "AAH", + "codeIcaoAirport": "EDKA", + "codeIso2Country": "DE", + "geonameId": "3207669", + "latitudeAirport": 50.75, + "longitudeAirport": 6.133333, + "nameAirport": "Aachen/Merzbruck", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-3", + "airportId": 8, + "codeIataAirport": "AAI", + "codeIataCity": "AAI", + "codeIcaoAirport": "SWRA", + "codeIso2Country": "BR", + "geonameId": "7668483", + "latitudeAirport": -12.916667, + "longitudeAirport": -46.933334, + "nameAirport": "Arraias", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Araguaina" + }, + { + "GMT": "-3", + "airportId": 9, + "codeIataAirport": "AAJ", + "codeIataCity": "AAJ", + "codeIcaoAirport": "", + "codeIso2Country": "SR", + "geonameId": "0", + "latitudeAirport": 3.9, + "longitudeAirport": -55.36667, + "nameAirport": "Cayana Airstrip", + "nameCountry": "Suriname", + "phone": "", + "timezone": "America/Paramaribo" + }, + { + "GMT": "12", + "airportId": 10, + "codeIataAirport": "AAK", + "codeIataCity": "AAK", + "codeIcaoAirport": "NGUK", + "codeIso2Country": "KI", + "geonameId": "7521791", + "latitudeAirport": 0.166667, + "longitudeAirport": 173.58333, + "nameAirport": "Aranuka", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "1", + "airportId": 11, + "codeIataAirport": "AAL", + "codeIataCity": "AAL", + "codeIcaoAirport": "EKYT", + "codeIso2Country": "DK", + "geonameId": "2624887", + "latitudeAirport": 57.08655, + "longitudeAirport": 9.872241, + "nameAirport": "Aalborg", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "2", + "airportId": 12, + "codeIataAirport": "AAM", + "codeIataCity": "AAM", + "codeIcaoAirport": "FAMD", + "codeIso2Country": "ZA", + "geonameId": "7668229", + "latitudeAirport": -24.8, + "longitudeAirport": 31.533333, + "nameAirport": "Mala Mala", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "4", + "airportId": 13, + "codeIataAirport": "AAN", + "codeIataCity": "AAN", + "codeIcaoAirport": "OMAL", + "codeIso2Country": "AE", + "geonameId": "6300095", + "latitudeAirport": 24.260231, + "longitudeAirport": 55.616627, + "nameAirport": "Al Ain", + "nameCountry": "United Arab Emirates", + "phone": "", + "timezone": "Asia/Dubai" + }, + { + "GMT": "-4", + "airportId": 14, + "codeIataAirport": "AAO", + "codeIataCity": "AAO", + "codeIcaoAirport": "", + "codeIso2Country": "VE", + "geonameId": "3486270", + "latitudeAirport": 9.431944, + "longitudeAirport": -64.46389, + "nameAirport": "Anaco", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "3", + "airportId": 15, + "codeIataAirport": "AAQ", + "codeIataCity": "AAQ", + "codeIcaoAirport": "URKA", + "codeIso2Country": "RU", + "geonameId": "6300989", + "latitudeAirport": 44.9, + "longitudeAirport": 37.316666, + "nameAirport": "Anapa", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "airportId": 16, + "codeIataAirport": "AAR", + "codeIataCity": "AAR", + "codeIcaoAirport": "EKAH", + "codeIso2Country": "DK", + "geonameId": "2611665", + "latitudeAirport": 56.30823, + "longitudeAirport": 10.626351, + "nameAirport": "Aarhus Airport", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "9", + "airportId": 17, + "codeIataAirport": "AAS", + "codeIataCity": "AAS", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7730799", + "latitudeAirport": -3.916667, + "longitudeAirport": 139.25, + "nameAirport": "Apalapsili", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "airportId": 18, + "codeIataAirport": "AAT", + "codeIataCity": "AAT", + "codeIcaoAirport": "ZWAT", + "codeIso2Country": "CN", + "geonameId": "7910421", + "latitudeAirport": 47.750362, + "longitudeAirport": 88.08444, + "nameAirport": "Altay", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "13", + "airportId": 19, + "codeIataAirport": "AAU", + "codeIataCity": "AAU", + "codeIcaoAirport": "", + "codeIso2Country": "WS", + "geonameId": "7667905", + "latitudeAirport": -13.458333, + "longitudeAirport": -172.6, + "nameAirport": "Asau", + "nameCountry": "Samoa", + "phone": "", + "timezone": "Pacific/Apia" + }, + { + "GMT": "8", + "airportId": 20, + "codeIataAirport": "AAV", + "codeIataCity": "AAV", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "0", + "latitudeAirport": 6.333333, + "longitudeAirport": 124.76667, + "nameAirport": "Allah Valley", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "5", + "airportId": 21, + "codeIataAirport": "AAW", + "codeIataCity": "AAW", + "codeIcaoAirport": "", + "codeIso2Country": "PK", + "geonameId": "0", + "latitudeAirport": 34.2, + "longitudeAirport": 73.25, + "nameAirport": "Abbottabad", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-3", + "airportId": 22, + "codeIataAirport": "AAX", + "codeIataCity": "AAX", + "codeIcaoAirport": "SBAX", + "codeIso2Country": "BR", + "geonameId": "7668431", + "latitudeAirport": -19.568056, + "longitudeAirport": -46.92917, + "nameAirport": "Araxa", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "3", + "airportId": 23, + "codeIataAirport": "AAY", + "codeIataCity": "AAY", + "codeIcaoAirport": "OYGD", + "codeIso2Country": "YE", + "geonameId": "7668412", + "latitudeAirport": 16.19596, + "longitudeAirport": 52.173256, + "nameAirport": "Al Ghaydah", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "-6", + "airportId": 24, + "codeIataAirport": "AAZ", + "codeIataCity": "AAZ", + "codeIcaoAirport": "MGQZ", + "codeIso2Country": "GT", + "geonameId": "6299804", + "latitudeAirport": 14.87, + "longitudeAirport": -91.5, + "nameAirport": "Quetzaltenango", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "7", + "airportId": 25, + "codeIataAirport": "ABA", + "codeIataCity": "ABA", + "codeIcaoAirport": "UNAA", + "codeIso2Country": "RU", + "geonameId": "6300982", + "latitudeAirport": 53.716667, + "longitudeAirport": 91.5, + "nameAirport": "Abakan", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "1", + "airportId": 26, + "codeIataAirport": "ABB", + "codeIataCity": "ABB", + "codeIcaoAirport": "DNAS", + "codeIso2Country": "NG", + "geonameId": "7668214", + "latitudeAirport": 6.203333, + "longitudeAirport": 6.65888, + "nameAirport": "Asaba International", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "1", + "airportId": 27, + "codeIataAirport": "ABC", + "codeIataCity": "ABC", + "codeIcaoAirport": "LEAB", + "codeIso2Country": "ES", + "geonameId": "6299323", + "latitudeAirport": 38.948334, + "longitudeAirport": -1.863333, + "nameAirport": "Los Llanos", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "3.30", + "airportId": 28, + "codeIataAirport": "ABD", + "codeIataCity": "ABD", + "codeIcaoAirport": "OIAA", + "codeIso2Country": "IR", + "geonameId": "6300034", + "latitudeAirport": 30.363905, + "longitudeAirport": 48.226597, + "nameAirport": "Abadan", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-5", + "airportId": 29, + "codeIataAirport": "ABE", + "codeIataCity": "ABE", + "codeIcaoAirport": "KABE", + "codeIso2Country": "US", + "geonameId": "5200013", + "latitudeAirport": 40.651573, + "longitudeAirport": -75.434364, + "nameAirport": "Lehigh Valley International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "12", + "airportId": 30, + "codeIataAirport": "ABF", + "codeIataCity": "ABF", + "codeIcaoAirport": "", + "codeIso2Country": "KI", + "geonameId": "0", + "latitudeAirport": 1.670833, + "longitudeAirport": 173.30417, + "nameAirport": "Abaiang", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "10", + "airportId": 31, + "codeIataAirport": "ABG", + "codeIataCity": "ABG", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8288517", + "latitudeAirport": -17.666668, + "longitudeAirport": 143.2, + "nameAirport": "Abingdon", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 32, + "codeIataAirport": "ABH", + "codeIataCity": "ABH", + "codeIcaoAirport": "YAPH", + "codeIso2Country": "AU", + "geonameId": "7668679", + "latitudeAirport": -23.65, + "longitudeAirport": 146.63333, + "nameAirport": "Alpha", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "airportId": 33, + "codeIataAirport": "ABI", + "codeIataCity": "ABI", + "codeIcaoAirport": "KABI", + "codeIso2Country": "US", + "geonameId": "4669647", + "latitudeAirport": 32.409443, + "longitudeAirport": -99.679726, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 34, + "codeIataAirport": "ABJ", + "codeIataCity": "ABJ", + "codeIcaoAirport": "DIAP", + "codeIso2Country": "CI", + "geonameId": "6296433", + "latitudeAirport": 5.254879, + "longitudeAirport": -3.933015, + "nameAirport": "Felix Houphouet Boigny", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "3", + "airportId": 35, + "codeIataAirport": "ABK", + "codeIataCity": "ABK", + "codeIcaoAirport": "HADK", + "codeIso2Country": "ET", + "geonameId": "6297274", + "latitudeAirport": 6.733889, + "longitudeAirport": 44.26611, + "nameAirport": "Kabri Dar", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-9", + "airportId": 36, + "codeIataAirport": "ABL", + "codeIataCity": "ABL", + "codeIcaoAirport": "PAFM", + "codeIso2Country": "US", + "geonameId": "5879298", + "latitudeAirport": 67.0875, + "longitudeAirport": -157.84584, + "nameAirport": "Ambler", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 37, + "codeIataAirport": "ABM", + "codeIataCity": "ABM", + "codeIcaoAirport": "YBAM", + "codeIso2Country": "AU", + "geonameId": "7730800", + "latitudeAirport": -10.942619, + "longitudeAirport": 142.45033, + "nameAirport": "Bamaga Injinoo", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "airportId": 38, + "codeIataAirport": "ABN", + "codeIataCity": "ABN", + "codeIcaoAirport": "", + "codeIso2Country": "SR", + "geonameId": "3384792", + "latitudeAirport": 5.5, + "longitudeAirport": -54.083332, + "nameAirport": "Albina", + "nameCountry": "Suriname", + "phone": "", + "timezone": "America/Paramaribo" + }, + { + "GMT": "0", + "airportId": 39, + "codeIataAirport": "ABO", + "codeIataCity": "ABO", + "codeIcaoAirport": "DIAO", + "codeIso2Country": "CI", + "geonameId": "8260695", + "latitudeAirport": 5.433333, + "longitudeAirport": -3.216667, + "nameAirport": "Aboisso", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "10", + "airportId": 40, + "codeIataAirport": "ABP", + "codeIataCity": "ABP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299138", + "latitudeAirport": -6.066667, + "longitudeAirport": 141.1, + "nameAirport": "Atkamba", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "airportId": 41, + "codeIataAirport": "ABQ", + "codeIataCity": "ABQ", + "codeIcaoAirport": "KABQ", + "codeIso2Country": "US", + "geonameId": "5454724", + "latitudeAirport": 35.049625, + "longitudeAirport": -106.617195, + "nameAirport": "Albuquerque International", + "nameCountry": "United States", + "phone": "505-244-7700", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 42, + "codeIataAirport": "ABR", + "codeIataCity": "ABR", + "codeIcaoAirport": "KABR", + "codeIso2Country": "US", + "geonameId": "5225860", + "latitudeAirport": 45.4525, + "longitudeAirport": -98.42611, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 43, + "codeIataAirport": "ABS", + "codeIataCity": "ABS", + "codeIcaoAirport": "HEBL", + "codeIso2Country": "EG", + "geonameId": "6452622", + "latitudeAirport": 22.367567, + "longitudeAirport": 31.609774, + "nameAirport": "Abu Simbel", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "3", + "airportId": 44, + "codeIataAirport": "ABT", + "codeIataCity": "ABT", + "codeIcaoAirport": "OEBA", + "codeIso2Country": "SA", + "geonameId": "6300010", + "latitudeAirport": 20.29401, + "longitudeAirport": 41.64002, + "nameAirport": "Al-Aqiq", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "8", + "airportId": 45, + "codeIataAirport": "ABU", + "codeIataCity": "ABU", + "codeIcaoAirport": "WATA", + "codeIso2Country": "ID", + "geonameId": "7730801", + "latitudeAirport": -9.133333, + "longitudeAirport": 124.88333, + "nameAirport": "Atambua", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "1", + "airportId": 46, + "codeIataAirport": "ABV", + "codeIataCity": "ABV", + "codeIcaoAirport": "DNAA", + "codeIso2Country": "NG", + "geonameId": "7649170", + "latitudeAirport": 9.004614, + "longitudeAirport": 7.270447, + "nameAirport": "Nnamdi Azikiwe International Airport", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "10", + "airportId": 47, + "codeIataAirport": "ABW", + "codeIataCity": "ABW", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260696", + "latitudeAirport": -10.183333, + "longitudeAirport": 148.7, + "nameAirport": "Abau", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 48, + "codeIataAirport": "ABX", + "codeIataCity": "ABX", + "codeIcaoAirport": "YMAY", + "codeIso2Country": "AU", + "geonameId": "6301309", + "latitudeAirport": -36.069626, + "longitudeAirport": 146.95453, + "nameAirport": "Albury", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-5", + "airportId": 49, + "codeIataAirport": "ABY", + "codeIataCity": "ABY", + "codeIcaoAirport": "KABY", + "codeIso2Country": "US", + "geonameId": "4223821", + "latitudeAirport": 31.532223, + "longitudeAirport": -84.19611, + "nameAirport": "Dougherty County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 50, + "codeIataAirport": "ABZ", + "codeIataCity": "ABZ", + "codeIcaoAirport": "EGPD", + "codeIso2Country": "GB", + "geonameId": "6296624", + "latitudeAirport": 57.200253, + "longitudeAirport": -2.204186, + "nameAirport": "Dyce", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 51, + "codeIataAirport": "ACA", + "codeIataCity": "ACA", + "codeIcaoAirport": "MMAA", + "codeIso2Country": "MX", + "geonameId": "6299826", + "latitudeAirport": 16.762403, + "longitudeAirport": -99.75459, + "nameAirport": "General Juan N. Alvarez International", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-5", + "airportId": 52, + "codeIataAirport": "ACB", + "codeIataCity": "ACB", + "codeIcaoAirport": "KACB", + "codeIso2Country": "US", + "geonameId": "4985583", + "latitudeAirport": 44.983334, + "longitudeAirport": -85.21667, + "nameAirport": "Antrim County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "0", + "airportId": 53, + "codeIataAirport": "ACC", + "codeIataCity": "ACC", + "codeIcaoAirport": "DGAA", + "codeIso2Country": "GH", + "geonameId": "2306104", + "latitudeAirport": 5.60737, + "longitudeAirport": -0.171769, + "nameAirport": "Kotoka", + "nameCountry": "Ghana", + "phone": "", + "timezone": "Africa/Accra" + }, + { + "GMT": "-5", + "airportId": 54, + "codeIataAirport": "ACD", + "codeIataCity": "ACD", + "codeIcaoAirport": "SKAD", + "codeIso2Country": "CO", + "geonameId": "7668454", + "latitudeAirport": 8.516667, + "longitudeAirport": -77.3, + "nameAirport": "Acandi", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "0", + "airportId": 55, + "codeIataAirport": "ACE", + "codeIataCity": "ACE", + "codeIcaoAirport": "GCRR", + "codeIso2Country": "ES", + "geonameId": "6297189", + "latitudeAirport": 28.950668, + "longitudeAirport": -13.609059, + "nameAirport": "Lanzarote", + "nameCountry": "Spain", + "phone": "902 404 704", + "timezone": "Atlantic/Canary" + }, + { + "GMT": "1", + "airportId": 56, + "codeIataAirport": "ACH", + "codeIataCity": "ACH", + "codeIcaoAirport": "LSZR", + "codeIso2Country": "CH", + "geonameId": "6299723", + "latitudeAirport": 47.483334, + "longitudeAirport": 9.566667, + "nameAirport": "Altenrhein", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "0", + "airportId": 57, + "codeIataAirport": "ACI", + "codeIataCity": "ACI", + "codeIcaoAirport": "EGJA", + "codeIso2Country": "GG", + "geonameId": "6296593", + "latitudeAirport": 49.709347, + "longitudeAirport": -2.215369, + "nameAirport": "The Blaye", + "nameCountry": "Guernsey", + "phone": "", + "timezone": "Europe/Guernsey" + }, + { + "GMT": "5.30", + "airportId": 58, + "codeIataAirport": "ACJ", + "codeIataCity": "ACJ", + "codeIcaoAirport": "VCCA", + "codeIso2Country": "LK", + "geonameId": "1251081", + "latitudeAirport": 8.35, + "longitudeAirport": 80.38333, + "nameAirport": "Anuradhapura", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "-5", + "airportId": 59, + "codeIataAirport": "ACK", + "codeIataCity": "ACK", + "codeIcaoAirport": "KACK", + "codeIso2Country": "US", + "geonameId": "4944927", + "latitudeAirport": 41.256668, + "longitudeAirport": -70.05972, + "nameAirport": "Nantucket Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 60, + "codeIataAirport": "ACL", + "codeIataCity": "ACL", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 4.75, + "longitudeAirport": -73.0, + "nameAirport": "Aguaclara", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 61, + "codeIataAirport": "ACM", + "codeIataCity": "ACM", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8260724", + "latitudeAirport": -2.0, + "longitudeAirport": -71.833336, + "nameAirport": "Arica", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 62, + "codeIataAirport": "ACN", + "codeIataCity": "ACN", + "codeIcaoAirport": "MMCC", + "codeIso2Country": "MX", + "geonameId": "7668344", + "latitudeAirport": 29.3, + "longitudeAirport": -100.916664, + "nameAirport": "Ciudad Acuña International Airport", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Matamoros" + }, + { + "GMT": "3.30", + "airportId": 63, + "codeIataAirport": "ACP", + "codeIataCity": "ACP", + "codeIcaoAirport": "OITM", + "codeIso2Country": "IR", + "geonameId": "17839", + "latitudeAirport": 37.347244, + "longitudeAirport": 46.145115, + "nameAirport": "Sahand", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-5", + "airportId": 64, + "codeIataAirport": "ACR", + "codeIataCity": "ACR", + "codeIcaoAirport": "SKAC", + "codeIso2Country": "CO", + "geonameId": "7730802", + "latitudeAirport": -0.383333, + "longitudeAirport": -72.3, + "nameAirport": "Araracuara", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "7", + "airportId": 65, + "codeIataAirport": "ACS", + "codeIataCity": "ACS", + "codeIcaoAirport": "UNKS", + "codeIso2Country": "RU", + "geonameId": "7668523", + "latitudeAirport": 56.266666, + "longitudeAirport": 90.566666, + "nameAirport": "Achinsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "-6", + "airportId": 66, + "codeIataAirport": "ACT", + "codeIataCity": "ACT", + "codeIcaoAirport": "KACT", + "codeIso2Country": "US", + "geonameId": "4739545", + "latitudeAirport": 31.609133, + "longitudeAirport": -97.22321, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 67, + "codeIataAirport": "ACU", + "codeIataCity": "ACU", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "8299147", + "latitudeAirport": 9.576389, + "longitudeAirport": -79.72444, + "nameAirport": "Achutupo", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "-8", + "airportId": 68, + "codeIataAirport": "ACV", + "codeIataCity": "ACV", + "codeIcaoAirport": "KACV", + "codeIso2Country": "US", + "geonameId": "5558955", + "latitudeAirport": 40.970913, + "longitudeAirport": -124.106926, + "nameAirport": "Arcata", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 69, + "codeIataAirport": "ACX", + "codeIataCity": "ACX", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "7910487", + "latitudeAirport": 25.085556, + "longitudeAirport": 104.95944, + "nameAirport": "Xingyi", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 70, + "codeIataAirport": "ACY", + "codeIataCity": "AIY", + "codeIcaoAirport": "KACY", + "codeIso2Country": "US", + "geonameId": "4500551", + "latitudeAirport": 39.450703, + "longitudeAirport": -74.572235, + "nameAirport": "Atlantic City International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3.30", + "airportId": 71, + "codeIataAirport": "ACZ", + "codeIataCity": "ACZ", + "codeIcaoAirport": "OIZB", + "codeIso2Country": "IR", + "geonameId": "6300083", + "latitudeAirport": 31.087694, + "longitudeAirport": 61.542244, + "nameAirport": "Zabol Airport", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "3", + "airportId": 72, + "codeIataAirport": "ADA", + "codeIataCity": "ADA", + "codeIcaoAirport": "LTAF", + "codeIso2Country": "TR", + "geonameId": "6299727", + "latitudeAirport": 36.98503, + "longitudeAirport": 35.29736, + "nameAirport": "Adana", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3", + "airportId": 73, + "codeIataAirport": "ADB", + "codeIataCity": "IZM", + "codeIcaoAirport": "LTBJ", + "codeIso2Country": "TR", + "geonameId": "6299750", + "latitudeAirport": 38.294403, + "longitudeAirport": 27.147594, + "nameAirport": "Adnan Menderes Airport", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "10", + "airportId": 74, + "codeIataAirport": "ADC", + "codeIataCity": "ADC", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2100827", + "latitudeAirport": -7.133333, + "longitudeAirport": 145.73334, + "nameAirport": "Andakombe", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 75, + "codeIataAirport": "ADD", + "codeIataCity": "ADD", + "codeIcaoAirport": "HAAB", + "codeIso2Country": "ET", + "geonameId": "6297257", + "latitudeAirport": 8.983759, + "longitudeAirport": 38.7959, + "nameAirport": "Bole International", + "nameCountry": "Ethiopia", + "phone": "-425", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "3", + "airportId": 76, + "codeIataAirport": "ADE", + "codeIataCity": "ADE", + "codeIcaoAirport": "OYAA", + "codeIso2Country": "YE", + "geonameId": "6300134", + "latitudeAirport": 12.826116, + "longitudeAirport": 45.037537, + "nameAirport": "Aden International Airport", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "3", + "airportId": 77, + "codeIataAirport": "ADF", + "codeIataCity": "ADF", + "codeIcaoAirport": "LTCP", + "codeIso2Country": "TR", + "geonameId": "6457345", + "latitudeAirport": 37.75, + "longitudeAirport": 38.266666, + "nameAirport": "Adiyaman", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-5", + "airportId": 78, + "codeIataAirport": "ADG", + "codeIataCity": "ADG", + "codeIcaoAirport": "KADG", + "codeIso2Country": "US", + "geonameId": "4999082", + "latitudeAirport": 41.9, + "longitudeAirport": -84.03333, + "nameAirport": "Lenawee County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "9", + "airportId": 79, + "codeIataAirport": "ADH", + "codeIataCity": "ADH", + "codeIcaoAirport": "UEEA", + "codeIso2Country": "RU", + "geonameId": "7730803", + "latitudeAirport": 58.6, + "longitudeAirport": 125.4, + "nameAirport": "Aldan", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "2", + "airportId": 80, + "codeIataAirport": "ADI", + "codeIataCity": "ADI", + "codeIcaoAirport": "FYAR", + "codeIso2Country": "NA", + "geonameId": "7668263", + "latitudeAirport": -22.4, + "longitudeAirport": 15.0, + "nameAirport": "Arandis", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "2", + "airportId": 81, + "codeIataAirport": "ADJ", + "codeIataCity": "AMM", + "codeIcaoAirport": "OJAM", + "codeIso2Country": "JO", + "geonameId": "250437", + "latitudeAirport": 31.97533, + "longitudeAirport": 35.98277, + "nameAirport": "Marka International Airport", + "nameCountry": "Jordan", + "phone": "", + "timezone": "Asia/Amman" + }, + { + "GMT": "-10", + "airportId": 82, + "codeIataAirport": "ADK", + "codeIataCity": "ADK", + "codeIcaoAirport": "PADK", + "codeIso2Country": "US", + "geonameId": "6300161", + "latitudeAirport": 51.88278, + "longitudeAirport": -176.64473, + "nameAirport": "Adak Island Ns", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Adak" + }, + { + "GMT": "9.30", + "airportId": 83, + "codeIataAirport": "ADL", + "codeIataCity": "ADL", + "codeIcaoAirport": "YPAD", + "codeIso2Country": "AU", + "geonameId": "6301322", + "latitudeAirport": -34.938175, + "longitudeAirport": 138.53735, + "nameAirport": "Adelaide International Airport", + "nameCountry": "Australia", + "phone": "+61 8-8308-92", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-6", + "airportId": 84, + "codeIataAirport": "ADM", + "codeIataCity": "ADM", + "codeIcaoAirport": "KADM", + "codeIso2Country": "US", + "geonameId": "4529475", + "latitudeAirport": 34.303055, + "longitudeAirport": -97.01945, + "nameAirport": "Ardmore Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 85, + "codeIataAirport": "ADN", + "codeIataCity": "ADN", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8298748", + "latitudeAirport": 5.666667, + "longitudeAirport": -75.933334, + "nameAirport": "Andes", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "9.30", + "airportId": 86, + "codeIataAirport": "ADO", + "codeIataCity": "ADO", + "codeIcaoAirport": "YAMK", + "codeIso2Country": "AU", + "geonameId": "7730805", + "latitudeAirport": -31.016666, + "longitudeAirport": 137.15, + "nameAirport": "Andamooka", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "5.30", + "airportId": 87, + "codeIataAirport": "ADP", + "codeIataCity": "ADP", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "6301061", + "latitudeAirport": 7.336389, + "longitudeAirport": 81.625275, + "nameAirport": "Ampara", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "-9", + "airportId": 88, + "codeIataAirport": "ADQ", + "codeIataCity": "ADQ", + "codeIcaoAirport": "PADQ", + "codeIso2Country": "US", + "geonameId": "5866583", + "latitudeAirport": 57.755276, + "longitudeAirport": -152.51297, + "nameAirport": "Kodiak Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 89, + "codeIataAirport": "ADR", + "codeIataCity": "ADR", + "codeIcaoAirport": "KPHH", + "codeIso2Country": "US", + "geonameId": "4569376", + "latitudeAirport": 33.45, + "longitudeAirport": -79.566666, + "nameAirport": "Andrews", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 90, + "codeIataAirport": "ADS", + "codeIataCity": "DFW", + "codeIcaoAirport": "KADS", + "codeIso2Country": "US", + "geonameId": "4669829", + "latitudeAirport": 32.783333, + "longitudeAirport": -97.3, + "nameAirport": "Addison Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 91, + "codeIataAirport": "ADT", + "codeIataCity": "ADT", + "codeIcaoAirport": "KADH", + "codeIso2Country": "US", + "geonameId": "4529103", + "latitudeAirport": 34.8, + "longitudeAirport": -96.666664, + "nameAirport": "Ada Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3.30", + "airportId": 92, + "codeIataAirport": "ADU", + "codeIataCity": "ADU", + "codeIcaoAirport": "OITL", + "codeIso2Country": "IR", + "geonameId": "6300077", + "latitudeAirport": 38.323826, + "longitudeAirport": 48.42125, + "nameAirport": "Ardabil", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-5", + "airportId": 93, + "codeIataAirport": "ADW", + "codeIataCity": "ADW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.816666, + "longitudeAirport": -76.86667, + "nameAirport": "Andrews AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 94, + "codeIataAirport": "ADX", + "codeIataCity": "ADX", + "codeIcaoAirport": "EGQL", + "codeIso2Country": "GB", + "geonameId": "6296639", + "latitudeAirport": 56.36667, + "longitudeAirport": -2.866667, + "nameAirport": "Leuchars", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "airportId": 95, + "codeIataAirport": "ADY", + "codeIataCity": "ADY", + "codeIcaoAirport": "FAAL", + "codeIso2Country": "ZA", + "geonameId": "7668227", + "latitudeAirport": -22.666668, + "longitudeAirport": 29.05, + "nameAirport": "Alldays", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-5", + "airportId": 96, + "codeIataAirport": "ADZ", + "codeIataCity": "ADZ", + "codeIcaoAirport": "SKSP", + "codeIso2Country": "CO", + "geonameId": "6300759", + "latitudeAirport": 12.586047, + "longitudeAirport": -81.70221, + "nameAirport": "San Andres Island", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "12", + "airportId": 97, + "codeIataAirport": "AEA", + "codeIataCity": "AEA", + "codeIcaoAirport": "NGTB", + "codeIso2Country": "KI", + "geonameId": "7521789", + "latitudeAirport": 0.483333, + "longitudeAirport": 173.85, + "nameAirport": "Abemama Atoll", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "8", + "airportId": 98, + "codeIataAirport": "AEB", + "codeIataCity": "AEB", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "7910245", + "latitudeAirport": 23.71947, + "longitudeAirport": 106.96777, + "nameAirport": "Youjiang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-9", + "airportId": 99, + "codeIataAirport": "AED", + "codeIataCity": "AED", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5879155", + "latitudeAirport": 58.033333, + "longitudeAirport": -152.9, + "nameAirport": "Aleneva", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "airportId": 100, + "codeIataAirport": "AEE", + "codeIataCity": "AEE", + "codeIcaoAirport": "", + "codeIso2Country": "SS", + "geonameId": "8288524", + "latitudeAirport": 10.05667, + "longitudeAirport": 32.96096, + "nameAirport": "Adareil", + "nameCountry": "South Sudan", + "phone": "", + "timezone": "Africa/Juba" + }, + { + "GMT": "7", + "airportId": 101, + "codeIataAirport": "AEG", + "codeIataCity": "AEG", + "codeIcaoAirport": "WIME", + "codeIso2Country": "ID", + "geonameId": "8298724", + "latitudeAirport": 1.399722, + "longitudeAirport": 99.416664, + "nameAirport": "Aek Godang", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "1", + "airportId": 102, + "codeIataAirport": "AEH", + "codeIataCity": "AEH", + "codeIcaoAirport": "FTTC", + "codeIso2Country": "TD", + "geonameId": "245786", + "latitudeAirport": 13.851389, + "longitudeAirport": 20.850834, + "nameAirport": "Abéché", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "1", + "airportId": 103, + "codeIataAirport": "AEI", + "codeIataCity": "AEI", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "2522013", + "latitudeAirport": 36.1289, + "longitudeAirport": -5.441301, + "nameAirport": "Algeciras", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "10", + "airportId": 104, + "codeIataAirport": "AEK", + "codeIataCity": "AEK", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2100468", + "latitudeAirport": -7.366667, + "longitudeAirport": 146.28334, + "nameAirport": "Aseki", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 105, + "codeIataAirport": "AEL", + "codeIataCity": "AEL", + "codeIcaoAirport": "KAEL", + "codeIso2Country": "US", + "geonameId": "5016033", + "latitudeAirport": 43.65, + "longitudeAirport": -93.36667, + "nameAirport": "Albert Lea", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 106, + "codeIataAirport": "AEO", + "codeIataCity": "AEO", + "codeIcaoAirport": "GQNA", + "codeIso2Country": "MR", + "geonameId": "6297233", + "latitudeAirport": 16.709167, + "longitudeAirport": -9.635556, + "nameAirport": "Aioun El Atrouss", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "-3", + "airportId": 107, + "codeIataAirport": "AEP", + "codeIataCity": "BUE", + "codeIcaoAirport": "SABE", + "codeIso2Country": "AR", + "geonameId": "6301847", + "latitudeAirport": -34.55622, + "longitudeAirport": -58.41667, + "nameAirport": "Aeroparque Jorge Newbery", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "3", + "airportId": 108, + "codeIataAirport": "AER", + "codeIataCity": "AER", + "codeIcaoAirport": "URSS", + "codeIso2Country": "RU", + "geonameId": "6300995", + "latitudeAirport": 43.44884, + "longitudeAirport": 39.941105, + "nameAirport": "Sochi/Adler International Airport", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "airportId": 109, + "codeIataAirport": "AES", + "codeIataCity": "AES", + "codeIcaoAirport": "ENAL", + "codeIso2Country": "NO", + "geonameId": "6296719", + "latitudeAirport": 62.559643, + "longitudeAirport": 6.116605, + "nameAirport": "Vigra", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-9", + "airportId": 110, + "codeIataAirport": "AET", + "codeIataCity": "AET", + "codeIcaoAirport": "PFAL", + "codeIso2Country": "US", + "geonameId": "5879223", + "latitudeAirport": 66.56167, + "longitudeAirport": -152.65834, + "nameAirport": "Allakaket", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3.30", + "airportId": 111, + "codeIataAirport": "AEU", + "codeIataCity": "AEU", + "codeIcaoAirport": "OIBA", + "codeIso2Country": "IR", + "geonameId": "6300041", + "latitudeAirport": 25.8875, + "longitudeAirport": 55.041668, + "nameAirport": "Abu Musa", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-6", + "airportId": 112, + "codeIataAirport": "AEX", + "codeIataCity": "AEX", + "codeIcaoAirport": "KAEX", + "codeIso2Country": "US", + "geonameId": "8113669", + "latitudeAirport": 31.321268, + "longitudeAirport": -92.53958, + "nameAirport": "Alexandria International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 113, + "codeIataAirport": "AEY", + "codeIataCity": "AEY", + "codeIcaoAirport": "BIAR", + "codeIso2Country": "IS", + "geonameId": "6295706", + "latitudeAirport": 65.654564, + "longitudeAirport": -18.075068, + "nameAirport": "Akureyri", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-3", + "airportId": 114, + "codeIataAirport": "AFA", + "codeIataCity": "AFA", + "codeIcaoAirport": "SAMR", + "codeIso2Country": "AR", + "geonameId": "6300529", + "latitudeAirport": -34.58917, + "longitudeAirport": -68.40056, + "nameAirport": "San Rafael", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Mendoza" + }, + { + "GMT": "2", + "airportId": 115, + "codeIataAirport": "AFD", + "codeIataCity": "AFD", + "codeIcaoAirport": "FAPA", + "codeIso2Country": "ZA", + "geonameId": "964433", + "latitudeAirport": -33.583332, + "longitudeAirport": 26.883333, + "nameAirport": "Port Alfred", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-7", + "airportId": 116, + "codeIataAirport": "AFF", + "codeIataCity": "COS", + "codeIcaoAirport": "KAFF", + "codeIso2Country": "US", + "geonameId": "5442475", + "latitudeAirport": 38.833332, + "longitudeAirport": -104.7, + "nameAirport": "USAF Academy Airstrip", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 117, + "codeIataAirport": "AFI", + "codeIataCity": "AFI", + "codeIcaoAirport": "SKAM", + "codeIso2Country": "CO", + "geonameId": "7730806", + "latitudeAirport": 6.916667, + "longitudeAirport": -75.066666, + "nameAirport": "Amalfi", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "5.30", + "airportId": 118, + "codeIataAirport": "AFK", + "codeIataCity": "ADP", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "0", + "latitudeAirport": 40.668888, + "longitudeAirport": -96.00694, + "nameAirport": "Kondavattavan Tank", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "-4", + "airportId": 119, + "codeIataAirport": "AFL", + "codeIataCity": "AFL", + "codeIcaoAirport": "SBAT", + "codeIso2Country": "BR", + "geonameId": "6316343", + "latitudeAirport": -9.872456, + "longitudeAirport": -56.104767, + "nameAirport": "Alta Floresta", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-5", + "airportId": 120, + "codeIataAirport": "AFN", + "codeIataCity": "AFN", + "codeIcaoAirport": "KAFN", + "codeIso2Country": "US", + "geonameId": "5088066", + "latitudeAirport": 42.833332, + "longitudeAirport": -72.066666, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 121, + "codeIataAirport": "AFO", + "codeIataCity": "AFO", + "codeIcaoAirport": "KAFO", + "codeIso2Country": "US", + "geonameId": "5816866", + "latitudeAirport": 42.733334, + "longitudeAirport": -110.933334, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "airportId": 122, + "codeIataAirport": "AFR", + "codeIataCity": "AFR", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2101332", + "latitudeAirport": -9.133333, + "longitudeAirport": 148.38333, + "nameAirport": "Afore", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5", + "airportId": 123, + "codeIataAirport": "AFS", + "codeIataCity": "AFS", + "codeIcaoAirport": "UTSN", + "codeIso2Country": "UZ", + "geonameId": "7730807", + "latitudeAirport": 41.61361, + "longitudeAirport": 64.233055, + "nameAirport": "Zarafshan", + "nameCountry": "Uzbekistan", + "phone": "", + "timezone": "Asia/Samarkand" + }, + { + "GMT": "11", + "airportId": 124, + "codeIataAirport": "AFT", + "codeIataCity": "AFT", + "codeIcaoAirport": "AGAF", + "codeIso2Country": "SB", + "geonameId": "8298931", + "latitudeAirport": -9.2, + "longitudeAirport": 160.85, + "nameAirport": "Afutara Aerodrome", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-6", + "airportId": 125, + "codeIataAirport": "AFW", + "codeIataCity": "DFW", + "codeIcaoAirport": "KAFW", + "codeIso2Country": "US", + "geonameId": "4691932", + "latitudeAirport": 32.986668, + "longitudeAirport": -97.316666, + "nameAirport": "Fort Worth Alliance", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 126, + "codeIataAirport": "AFY", + "codeIataCity": "AFY", + "codeIcaoAirport": "LTAH", + "codeIso2Country": "TR", + "geonameId": "6299728", + "latitudeAirport": 38.733334, + "longitudeAirport": 30.6, + "nameAirport": "Afyon", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3.30", + "airportId": 127, + "codeIataAirport": "AFZ", + "codeIataCity": "AFZ", + "codeIcaoAirport": "OIMS", + "codeIso2Country": "IR", + "geonameId": "6300067", + "latitudeAirport": 36.171513, + "longitudeAirport": 57.60332, + "nameAirport": "Sabzevar", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "0", + "airportId": 128, + "codeIataAirport": "AGA", + "codeIataCity": "AGA", + "codeIcaoAirport": "GMAD", + "codeIso2Country": "MA", + "geonameId": "6297198", + "latitudeAirport": 30.378326, + "longitudeAirport": -9.555895, + "nameAirport": "Agadir Almassira", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "1", + "airportId": 129, + "codeIataAirport": "AGB", + "codeIataCity": "MUC", + "codeIcaoAirport": "EDMA", + "codeIso2Country": "DE", + "geonameId": "3208383", + "latitudeAirport": 48.425278, + "longitudeAirport": 10.931667, + "nameAirport": "Augsburg - Muehlhausen", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "airportId": 130, + "codeIataAirport": "AGC", + "codeIataCity": "PIT", + "codeIcaoAirport": "KAGC", + "codeIso2Country": "US", + "geonameId": "5178041", + "latitudeAirport": 40.35472, + "longitudeAirport": -79.93, + "nameAirport": "Allegheny County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "airportId": 131, + "codeIataAirport": "AGD", + "codeIataCity": "AGD", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7730808", + "latitudeAirport": -1.383333, + "longitudeAirport": 133.86667, + "nameAirport": "Anggi", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "airportId": 132, + "codeIataAirport": "AGE", + "codeIataCity": "AGE", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2814266", + "latitudeAirport": 53.783333, + "longitudeAirport": 7.916667, + "nameAirport": "Flugplatz", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 133, + "codeIataAirport": "AGF", + "codeIataCity": "AGF", + "codeIcaoAirport": "LFBA", + "codeIso2Country": "FR", + "geonameId": "6299365", + "latitudeAirport": 44.17361, + "longitudeAirport": 0.598611, + "nameAirport": "La Garenne", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "airportId": 134, + "codeIataAirport": "AGG", + "codeIataCity": "AGG", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2100765", + "latitudeAirport": -4.168611, + "longitudeAirport": 144.07388, + "nameAirport": "Angoram", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 135, + "codeIataAirport": "AGH", + "codeIataCity": "AGH", + "codeIcaoAirport": "ESDB", + "codeIso2Country": "SE", + "geonameId": "6452618", + "latitudeAirport": 56.293056, + "longitudeAirport": 12.8625, + "nameAirport": "Angelholm", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-3", + "airportId": 136, + "codeIataAirport": "AGI", + "codeIataCity": "AGI", + "codeIcaoAirport": "SMWA", + "codeIso2Country": "SR", + "geonameId": "7668468", + "latitudeAirport": 5.833333, + "longitudeAirport": -56.833332, + "nameAirport": "Wageningen", + "nameCountry": "Suriname", + "phone": "", + "timezone": "America/Paramaribo" + }, + { + "GMT": "9", + "airportId": 137, + "codeIataAirport": "AGJ", + "codeIataCity": "AGJ", + "codeIcaoAirport": "RORA", + "codeIso2Country": "JP", + "geonameId": "6300465", + "latitudeAirport": 26.589722, + "longitudeAirport": 127.23805, + "nameAirport": "Aguni", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "10", + "airportId": 138, + "codeIataAirport": "AGK", + "codeIataCity": "AGK", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2095091", + "latitudeAirport": -6.403333, + "longitudeAirport": 143.84666, + "nameAirport": "Kagua", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 139, + "codeIataAirport": "AGL", + "codeIataCity": "AGL", + "codeIcaoAirport": "AYWG", + "codeIso2Country": "PG", + "geonameId": "2132313", + "latitudeAirport": -9.340278, + "longitudeAirport": 149.15527, + "nameAirport": "Wanigela", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "airportId": 140, + "codeIataAirport": "AGM", + "codeIataCity": "AGM", + "codeIcaoAirport": "BGAM", + "codeIso2Country": "GL", + "geonameId": "3424607", + "latitudeAirport": 65.6, + "longitudeAirport": -37.683334, + "nameAirport": "Tasiilaq", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "-9", + "airportId": 141, + "codeIataAirport": "AGN", + "codeIataCity": "AGN", + "codeIcaoAirport": "PAGN", + "codeIso2Country": "US", + "geonameId": "5844374", + "latitudeAirport": 57.503887, + "longitudeAirport": -134.58333, + "nameAirport": "Angoon", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Juneau" + }, + { + "GMT": "-6", + "airportId": 142, + "codeIataAirport": "AGO", + "codeIataCity": "AGO", + "codeIcaoAirport": "KAGO", + "codeIso2Country": "US", + "geonameId": "4120332", + "latitudeAirport": 33.266666, + "longitudeAirport": -93.23333, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 143, + "codeIataAirport": "AGP", + "codeIataCity": "AGP", + "codeIcaoAirport": "LEMG", + "codeIso2Country": "ES", + "geonameId": "6299346", + "latitudeAirport": 36.675182, + "longitudeAirport": -4.489616, + "nameAirport": "Pablo Ruiz Picasso", + "nameCountry": "Spain", + "phone": "902 404 704", + "timezone": "Europe/Madrid" + }, + { + "GMT": "5.30", + "airportId": 144, + "codeIataAirport": "AGR", + "codeIataCity": "AGR", + "codeIcaoAirport": "VIAG", + "codeIso2Country": "IN", + "geonameId": "6301090", + "latitudeAirport": 27.158333, + "longitudeAirport": 77.962776, + "nameAirport": "Kheria", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "airportId": 145, + "codeIataAirport": "AGS", + "codeIataCity": "AGS", + "codeIcaoAirport": "KAGS", + "codeIso2Country": "US", + "geonameId": "4185424", + "latitudeAirport": 33.373665, + "longitudeAirport": -81.973434, + "nameAirport": "Bush Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "airportId": 146, + "codeIataAirport": "AGT", + "codeIataCity": "AGT", + "codeIcaoAirport": "SGES", + "codeIso2Country": "PY", + "geonameId": "6300730", + "latitudeAirport": -25.5, + "longitudeAirport": -54.833332, + "nameAirport": "Alejo Garcia", + "nameCountry": "Paraguay", + "phone": "", + "timezone": "America/Asuncion" + }, + { + "GMT": "-6", + "airportId": 147, + "codeIataAirport": "AGU", + "codeIataCity": "AGU", + "codeIcaoAirport": "MMAS", + "codeIso2Country": "MX", + "geonameId": "6299828", + "latitudeAirport": 21.701416, + "longitudeAirport": -102.31374, + "nameAirport": "Aguascalients", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-4", + "airportId": 148, + "codeIataAirport": "AGV", + "codeIataCity": "AGV", + "codeIcaoAirport": "SVAC", + "codeIso2Country": "VE", + "geonameId": "6300839", + "latitudeAirport": 9.552222, + "longitudeAirport": -69.23333, + "nameAirport": "Acarigua", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "10", + "airportId": 149, + "codeIataAirport": "AGW", + "codeIataCity": "AGW", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7730809", + "latitudeAirport": -12.15, + "longitudeAirport": 142.15, + "nameAirport": "Agnew", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5.30", + "airportId": 150, + "codeIataAirport": "AGX", + "codeIataCity": "AGX", + "codeIcaoAirport": "VOAT", + "codeIso2Country": "IN", + "geonameId": "7668633", + "latitudeAirport": 10.828967, + "longitudeAirport": 72.17987, + "nameAirport": "Agatti Island", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "2", + "airportId": 151, + "codeIataAirport": "AGZ", + "codeIataCity": "AGZ", + "codeIcaoAirport": "FAAG", + "codeIso2Country": "ZA", + "geonameId": "6453433", + "latitudeAirport": -29.05, + "longitudeAirport": 18.85, + "nameAirport": "Aggeneys", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "9", + "airportId": 152, + "codeIataAirport": "AHA", + "codeIataCity": "OKA", + "codeIcaoAirport": "", + "codeIso2Country": "JP", + "geonameId": "0", + "latitudeAirport": 26.2, + "longitudeAirport": 127.65, + "nameAirport": "Naha AFB", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "3", + "airportId": 153, + "codeIataAirport": "AHB", + "codeIataCity": "AHB", + "codeIcaoAirport": "OEAB", + "codeIso2Country": "SA", + "geonameId": "6300008", + "latitudeAirport": 18.23429, + "longitudeAirport": 42.657574, + "nameAirport": "Abha", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-8", + "airportId": 154, + "codeIataAirport": "AHC", + "codeIataCity": "AHC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5565015", + "latitudeAirport": 40.15, + "longitudeAirport": -120.13333, + "nameAirport": "Amedee AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 155, + "codeIataAirport": "AHD", + "codeIataCity": "ADM", + "codeIcaoAirport": "K1F0", + "codeIso2Country": "US", + "geonameId": "4529471", + "latitudeAirport": 34.166668, + "longitudeAirport": -97.13333, + "nameAirport": "Downtown", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-10", + "airportId": 156, + "codeIataAirport": "AHE", + "codeIataCity": "AHE", + "codeIcaoAirport": "NTHE", + "codeIso2Country": "PF", + "geonameId": "7668372", + "latitudeAirport": -14.428056, + "longitudeAirport": -146.25694, + "nameAirport": "Ahe Airport", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-6", + "airportId": 157, + "codeIataAirport": "AHF", + "codeIataCity": "AHF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5063104", + "latitudeAirport": 40.3, + "longitudeAirport": -99.9, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 158, + "codeIataAirport": "AHH", + "codeIataCity": "AHH", + "codeIcaoAirport": "KAHH", + "codeIso2Country": "US", + "geonameId": "5243875", + "latitudeAirport": 45.3, + "longitudeAirport": -92.35, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "airportId": 159, + "codeIataAirport": "AHI", + "codeIataCity": "AHI", + "codeIcaoAirport": "WAPA", + "codeIso2Country": "ID", + "geonameId": "6301199", + "latitudeAirport": -3.333333, + "longitudeAirport": 128.91667, + "nameAirport": "Amahai", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-4", + "airportId": 160, + "codeIataAirport": "AHL", + "codeIataCity": "AHL", + "codeIcaoAirport": "SYAH", + "codeIso2Country": "GY", + "geonameId": "7730810", + "latitudeAirport": 2.483333, + "longitudeAirport": -59.316666, + "nameAirport": "Aishalton", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "-8", + "airportId": 161, + "codeIataAirport": "AHM", + "codeIataCity": "AHM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Sumner Parker Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 162, + "codeIataAirport": "AHN", + "codeIataCity": "AHN", + "codeIcaoAirport": "KAHN", + "codeIso2Country": "US", + "geonameId": "4180419", + "latitudeAirport": 33.95195, + "longitudeAirport": -83.32472, + "nameAirport": "Athens-Ben Epps", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 163, + "codeIataAirport": "AHO", + "codeIataCity": "AHO", + "codeIcaoAirport": "LIEA", + "codeIso2Country": "IT", + "geonameId": "6299565", + "latitudeAirport": 40.630405, + "longitudeAirport": 8.295891, + "nameAirport": "Fertilia", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-6", + "airportId": 164, + "codeIataAirport": "AHS", + "codeIataCity": "AHS", + "codeIcaoAirport": "MHAH", + "codeIso2Country": "HN", + "geonameId": "7730656", + "latitudeAirport": 15.441667, + "longitudeAirport": -84.425, + "nameAirport": "Ahuas", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "0", + "airportId": 165, + "codeIataAirport": "AHU", + "codeIataCity": "AHU", + "codeIcaoAirport": "GMTA", + "codeIso2Country": "MA", + "geonameId": "6297218", + "latitudeAirport": 35.17972, + "longitudeAirport": -3.836944, + "nameAirport": "Charif Al Idrissi", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "4", + "airportId": 166, + "codeIataAirport": "AHW", + "codeIataCity": "AHW", + "codeIcaoAirport": "", + "codeIso2Country": "OM", + "geonameId": "8299030", + "latitudeAirport": 31.34292, + "longitudeAirport": 48.74668, + "nameAirport": "Saih Rawl", + "nameCountry": "Oman", + "phone": "", + "timezone": "Asia/Muscat" + }, + { + "GMT": "3", + "airportId": 167, + "codeIataAirport": "AHY", + "codeIataCity": "AHY", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "0", + "latitudeAirport": -20.016666, + "longitudeAirport": 45.533333, + "nameAirport": "Ambatolahy", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "1", + "airportId": 168, + "codeIataAirport": "AHZ", + "codeIataCity": "AHZ", + "codeIcaoAirport": "LFHU", + "codeIso2Country": "FR", + "geonameId": "6694609", + "latitudeAirport": 45.083332, + "longitudeAirport": 6.083333, + "nameAirport": "Alpe D Huez", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-7", + "airportId": 169, + "codeIataAirport": "AIA", + "codeIataCity": "AIA", + "codeIcaoAirport": "KAIA", + "codeIso2Country": "US", + "geonameId": "5693178", + "latitudeAirport": 42.051666, + "longitudeAirport": -102.80666, + "nameAirport": "Alliance", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "airportId": 170, + "codeIataAirport": "AIB", + "codeIataCity": "AIB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299096", + "latitudeAirport": 56.233334, + "longitudeAirport": -132.38333, + "nameAirport": "Anita Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "12", + "airportId": 171, + "codeIataAirport": "AIC", + "codeIataCity": "AIC", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 7.5, + "longitudeAirport": 170.83333, + "nameAirport": "Airok", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-5", + "airportId": 172, + "codeIataAirport": "AID", + "codeIataCity": "AID", + "codeIcaoAirport": "KAID", + "codeIso2Country": "US", + "geonameId": "4917602", + "latitudeAirport": 40.166668, + "longitudeAirport": -85.683334, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "10", + "airportId": 173, + "codeIataAirport": "AIE", + "codeIataCity": "AIE", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8224675", + "latitudeAirport": -5.166667, + "longitudeAirport": 144.66667, + "nameAirport": "Aiome", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "airportId": 174, + "codeIataAirport": "AIF", + "codeIataCity": "AIF", + "codeIcaoAirport": "SNAX", + "codeIso2Country": "BR", + "geonameId": "8298688", + "latitudeAirport": -22.666668, + "longitudeAirport": -50.416668, + "nameAirport": "Assis", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 175, + "codeIataAirport": "AIG", + "codeIataCity": "AIG", + "codeIcaoAirport": "FEFY", + "codeIso2Country": "CF", + "geonameId": "6296981", + "latitudeAirport": 6.516667, + "longitudeAirport": 23.25, + "nameAirport": "Yalinga", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "10", + "airportId": 176, + "codeIataAirport": "AIH", + "codeIataCity": "AIH", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2101258", + "latitudeAirport": -7.348611, + "longitudeAirport": 141.26639, + "nameAirport": "Aiambak", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 177, + "codeIataAirport": "AII", + "codeIataCity": "AII", + "codeIcaoAirport": "HDAS", + "codeIso2Country": "DJ", + "geonameId": "7730606", + "latitudeAirport": 11.15, + "longitudeAirport": 42.716667, + "nameAirport": "Alisabieh", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Djibouti" + }, + { + "GMT": "-5", + "airportId": 178, + "codeIataAirport": "AIK", + "codeIataCity": "AIK", + "codeIcaoAirport": "KAIK", + "codeIso2Country": "US", + "geonameId": "4569089", + "latitudeAirport": 33.566666, + "longitudeAirport": -81.71667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 179, + "codeIataAirport": "AIL", + "codeIataCity": "AIL", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "0", + "latitudeAirport": 9.25, + "longitudeAirport": -78.083336, + "nameAirport": "Ailigandi", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "12", + "airportId": 180, + "codeIataAirport": "AIM", + "codeIataCity": "AIM", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 10.2, + "longitudeAirport": 169.98334, + "nameAirport": "Ailuk Island", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-9", + "airportId": 181, + "codeIataAirport": "AIN", + "codeIataCity": "AIN", + "codeIcaoAirport": "PAWT", + "codeIso2Country": "US", + "geonameId": "5877544", + "latitudeAirport": 70.63333, + "longitudeAirport": -160.03334, + "nameAirport": "Wainwright", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 182, + "codeIataAirport": "AIO", + "codeIataCity": "AIO", + "codeIcaoAirport": "KAIO", + "codeIso2Country": "US", + "geonameId": "4847395", + "latitudeAirport": 41.4, + "longitudeAirport": -95.01667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "12", + "airportId": 183, + "codeIataAirport": "AIP", + "codeIataCity": "AIP", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 7.266667, + "longitudeAirport": 168.81667, + "nameAirport": "Ailinglapalap Island", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-4", + "airportId": 184, + "codeIataAirport": "AIR", + "codeIataCity": "AIR", + "codeIcaoAirport": "SWRP", + "codeIso2Country": "BR", + "geonameId": "7730811", + "latitudeAirport": -10.25, + "longitudeAirport": -59.38333, + "nameAirport": "Aripuana", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "12", + "airportId": 185, + "codeIataAirport": "AIS", + "codeIataCity": "AIS", + "codeIcaoAirport": "NGTR", + "codeIso2Country": "KI", + "geonameId": "6299955", + "latitudeAirport": -2.65, + "longitudeAirport": 176.83333, + "nameAirport": "Arorae Island", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "-10", + "airportId": 186, + "codeIataAirport": "AIT", + "codeIataCity": "AIT", + "codeIcaoAirport": "NCAI", + "codeIso2Country": "CK", + "geonameId": "0", + "latitudeAirport": -18.829443, + "longitudeAirport": -159.767, + "nameAirport": "Aitutaki", + "nameCountry": "Cook Islands", + "phone": "", + "timezone": "Pacific/Rarotonga" + }, + { + "GMT": "-10", + "airportId": 187, + "codeIataAirport": "AIU", + "codeIataCity": "AIU", + "codeIcaoAirport": "NCAT", + "codeIso2Country": "CK", + "geonameId": "7730684", + "latitudeAirport": -20.033333, + "longitudeAirport": -158.1, + "nameAirport": "Atiu Island", + "nameCountry": "Cook Islands", + "phone": "", + "timezone": "Pacific/Rarotonga" + }, + { + "GMT": "-6", + "airportId": 188, + "codeIataAirport": "AIV", + "codeIataCity": "AIV", + "codeIcaoAirport": "KAIV", + "codeIso2Country": "US", + "geonameId": "4829885", + "latitudeAirport": 33.13333, + "longitudeAirport": -88.15, + "nameAirport": "George Downer", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 189, + "codeIataAirport": "AIW", + "codeIataCity": "AIW", + "codeIcaoAirport": "", + "codeIso2Country": "NA", + "geonameId": "8260776", + "latitudeAirport": -27.983334, + "longitudeAirport": 17.583332, + "nameAirport": "Ai-ais", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-6", + "airportId": 190, + "codeIataAirport": "AIZ", + "codeIataCity": "AIZ", + "codeIcaoAirport": "KAIZ", + "codeIso2Country": "US", + "geonameId": "4394825", + "latitudeAirport": 38.09833, + "longitudeAirport": -92.54722, + "nameAirport": "Lee C Fine Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 191, + "codeIataAirport": "AJA", + "codeIataCity": "AJA", + "codeIcaoAirport": "LFKJ", + "codeIso2Country": "FR", + "geonameId": "6299395", + "latitudeAirport": 41.91987, + "longitudeAirport": 8.794013, + "nameAirport": "Campo Dell Oro", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "3", + "airportId": 192, + "codeIataAirport": "AJF", + "codeIataCity": "AJF", + "codeIcaoAirport": "OESK", + "codeIso2Country": "SA", + "geonameId": "399410", + "latitudeAirport": 29.788668, + "longitudeAirport": 40.101486, + "nameAirport": "Jouf", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "3", + "airportId": 193, + "codeIataAirport": "AJI", + "codeIataCity": "AJI", + "codeIcaoAirport": "LTCO", + "codeIso2Country": "TR", + "geonameId": "7668332", + "latitudeAirport": 39.65, + "longitudeAirport": 43.025, + "nameAirport": "Agri", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "0", + "airportId": 194, + "codeIataAirport": "AJJ", + "codeIataCity": "AJJ", + "codeIcaoAirport": "GQNJ", + "codeIso2Country": "MR", + "geonameId": "6297238", + "latitudeAirport": 19.730556, + "longitudeAirport": -14.374444, + "nameAirport": "Akjoujt", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "3.30", + "airportId": 195, + "codeIataAirport": "AJK", + "codeIataCity": "AJK", + "codeIcaoAirport": "OIHR", + "codeIso2Country": "IR", + "geonameId": "7431358", + "latitudeAirport": 34.13333, + "longitudeAirport": 49.833332, + "nameAirport": "Araak", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "5.30", + "airportId": 196, + "codeIataAirport": "AJL", + "codeIataCity": "AJL", + "codeIcaoAirport": "VEAZ", + "codeIso2Country": "IN", + "geonameId": "0", + "latitudeAirport": 23.838985, + "longitudeAirport": 92.62482, + "nameAirport": "Aizawl", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "3", + "airportId": 197, + "codeIataAirport": "AJN", + "codeIataCity": "AJN", + "codeIcaoAirport": "FMCV", + "codeIso2Country": "KM", + "geonameId": "6297032", + "latitudeAirport": -12.126389, + "longitudeAirport": 44.42972, + "nameAirport": "Ouani", + "nameCountry": "Comoros", + "phone": "", + "timezone": "Indian/Comoro" + }, + { + "GMT": "1", + "airportId": 198, + "codeIataAirport": "AJR", + "codeIataCity": "AJR", + "codeIcaoAirport": "ESNX", + "codeIso2Country": "SE", + "geonameId": "6452624", + "latitudeAirport": 65.59139, + "longitudeAirport": 19.285557, + "nameAirport": "Arvidsjaur", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-7", + "airportId": 199, + "codeIataAirport": "AJS", + "codeIataCity": "AJS", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "7730813", + "latitudeAirport": 26.833332, + "longitudeAirport": -113.666664, + "nameAirport": "Abreojos", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mazatlan" + }, + { + "GMT": "-3", + "airportId": 200, + "codeIataAirport": "AJU", + "codeIataCity": "AJU", + "codeIcaoAirport": "SBAR", + "codeIso2Country": "BR", + "geonameId": "6300597", + "latitudeAirport": -10.987206, + "longitudeAirport": -37.072792, + "nameAirport": "Santa Maria", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Maceio" + }, + { + "GMT": "1", + "airportId": 201, + "codeIataAirport": "AJY", + "codeIataCity": "AJY", + "codeIcaoAirport": "DRZA", + "codeIso2Country": "NE", + "geonameId": "6296458", + "latitudeAirport": 16.964167, + "longitudeAirport": 7.993056, + "nameAirport": "Agades", + "nameCountry": "Niger", + "phone": "", + "timezone": "Africa/Niamey" + }, + { + "GMT": "8", + "airportId": 202, + "codeIataAirport": "AKA", + "codeIataCity": "AKA", + "codeIcaoAirport": "ZLAK", + "codeIso2Country": "CN", + "geonameId": "7730814", + "latitudeAirport": 32.7091, + "longitudeAirport": 108.936, + "nameAirport": "Ankang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-10", + "airportId": 203, + "codeIataAirport": "AKB", + "codeIataCity": "AKB", + "codeIcaoAirport": "PAAK", + "codeIso2Country": "US", + "geonameId": "5879733", + "latitudeAirport": 52.21722, + "longitudeAirport": -174.20084, + "nameAirport": "Atka", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Adak" + }, + { + "GMT": "-5", + "airportId": 204, + "codeIataAirport": "AKC", + "codeIataCity": "CAK", + "codeIcaoAirport": "KAKR", + "codeIso2Country": "US", + "geonameId": "5145491", + "latitudeAirport": 41.04, + "longitudeAirport": -81.46778, + "nameAirport": "Fulton International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "5.30", + "airportId": 205, + "codeIataAirport": "AKD", + "codeIataCity": "AKD", + "codeIcaoAirport": "VAAK", + "codeIso2Country": "IN", + "geonameId": "6301030", + "latitudeAirport": 20.666668, + "longitudeAirport": 77.083336, + "nameAirport": "Akola", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "airportId": 206, + "codeIataAirport": "AKE", + "codeIataCity": "AKE", + "codeIcaoAirport": "", + "codeIso2Country": "GA", + "geonameId": "7730815", + "latitudeAirport": -1.172222, + "longitudeAirport": 13.916667, + "nameAirport": "Akieni", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "2", + "airportId": 207, + "codeIataAirport": "AKF", + "codeIataCity": "AKF", + "codeIcaoAirport": "HLKF", + "codeIso2Country": "LY", + "geonameId": "6297329", + "latitudeAirport": 24.2, + "longitudeAirport": 23.333332, + "nameAirport": "Kufrah", + "nameCountry": "Libya", + "phone": "", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "10", + "airportId": 208, + "codeIataAirport": "AKG", + "codeIataCity": "AKG", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7730816", + "latitudeAirport": -3.633333, + "longitudeAirport": 142.01666, + "nameAirport": "Anguganak", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 209, + "codeIataAirport": "AKH", + "codeIataCity": "AKH", + "codeIcaoAirport": "OEPS", + "codeIso2Country": "SA", + "geonameId": "7730740", + "latitudeAirport": 24.063334, + "longitudeAirport": 47.580555, + "nameAirport": "Prince Sultan Air Base", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-9", + "airportId": 210, + "codeIataAirport": "AKI", + "codeIataCity": "AKI", + "codeIcaoAirport": "PFAK", + "codeIso2Country": "US", + "geonameId": "5878993", + "latitudeAirport": 60.905556, + "longitudeAirport": -161.22333, + "nameAirport": "Akiak", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "9", + "airportId": 211, + "codeIataAirport": "AKJ", + "codeIataCity": "AKJ", + "codeIcaoAirport": "RJEC", + "codeIso2Country": "JP", + "geonameId": "6300340", + "latitudeAirport": 43.67109, + "longitudeAirport": 142.45454, + "nameAirport": "Asahikawa", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-9", + "airportId": 212, + "codeIataAirport": "AKK", + "codeIataCity": "AKK", + "codeIcaoAirport": "PAKH", + "codeIso2Country": "US", + "geonameId": "5878982", + "latitudeAirport": 56.944443, + "longitudeAirport": -154.16667, + "nameAirport": "Akhiok SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "12", + "airportId": 213, + "codeIataAirport": "AKL", + "codeIataCity": "AKL", + "codeIcaoAirport": "NZAA", + "codeIso2Country": "NZ", + "geonameId": "6232134", + "latitudeAirport": -37.004787, + "longitudeAirport": 174.78352, + "nameAirport": "Auckland International", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "1", + "airportId": 214, + "codeIataAirport": "AKM", + "codeIataCity": "AKM", + "codeIcaoAirport": "", + "codeIso2Country": "TD", + "geonameId": "2424121", + "latitudeAirport": 10.883333, + "longitudeAirport": 19.816668, + "nameAirport": "Zakouma", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "-9", + "airportId": 215, + "codeIataAirport": "AKN", + "codeIataCity": "AKN", + "codeIcaoAirport": "PAKN", + "codeIso2Country": "US", + "geonameId": "5866330", + "latitudeAirport": 58.68274, + "longitudeAirport": -156.66902, + "nameAirport": "King Salmon", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "airportId": 216, + "codeIataAirport": "AKO", + "codeIataCity": "AKO", + "codeIcaoAirport": "KAKO", + "codeIso2Country": "US", + "geonameId": "5574204", + "latitudeAirport": 40.166668, + "longitudeAirport": -103.21667, + "nameAirport": "Colorado Plains Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "airportId": 217, + "codeIataAirport": "AKP", + "codeIataCity": "AKP", + "codeIcaoAirport": "PAKP", + "codeIso2Country": "US", + "geonameId": "5879389", + "latitudeAirport": 68.1375, + "longitudeAirport": -151.74, + "nameAirport": "Anaktuvuk", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "airportId": 218, + "codeIataAirport": "AKQ", + "codeIataCity": "AKQ", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7730817", + "latitudeAirport": -4.616667, + "longitudeAirport": 105.23333, + "nameAirport": "Gunung Batin", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "1", + "airportId": 219, + "codeIataAirport": "AKR", + "codeIataCity": "AKR", + "codeIcaoAirport": "DNAK", + "codeIso2Country": "NG", + "geonameId": "7730064", + "latitudeAirport": 7.25, + "longitudeAirport": 5.083333, + "nameAirport": "Akure", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "11", + "airportId": 220, + "codeIataAirport": "AKS", + "codeIataCity": "AKS", + "codeIcaoAirport": "AGGA", + "codeIso2Country": "SB", + "geonameId": "7668064", + "latitudeAirport": -8.697778, + "longitudeAirport": 160.68083, + "nameAirport": "Gwaunaru'u", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "2", + "airportId": 221, + "codeIataAirport": "AKT", + "codeIataCity": "AKT", + "codeIcaoAirport": "LCRA", + "codeIso2Country": "CY", + "geonameId": "414605", + "latitudeAirport": 34.583332, + "longitudeAirport": 32.983334, + "nameAirport": "Raf Akrotiri", + "nameCountry": "Cyprus", + "phone": "", + "timezone": "Asia/Nicosia" + }, + { + "GMT": "8", + "airportId": 222, + "codeIataAirport": "AKU", + "codeIataCity": "AKU", + "codeIcaoAirport": "ZWAK", + "codeIso2Country": "CN", + "geonameId": "7668809", + "latitudeAirport": 41.259983, + "longitudeAirport": 80.29262, + "nameAirport": "Aksu", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 223, + "codeIataAirport": "AKV", + "codeIataCity": "AKV", + "codeIcaoAirport": "CYKO", + "codeIso2Country": "CA", + "geonameId": "6296219", + "latitudeAirport": 60.733334, + "longitudeAirport": -78.583336, + "nameAirport": "Akulivik", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "3.30", + "airportId": 224, + "codeIataAirport": "AKW", + "codeIataCity": "AKW", + "codeIcaoAirport": "", + "codeIso2Country": "IR", + "geonameId": "0", + "latitudeAirport": 30.75, + "longitudeAirport": 49.683334, + "nameAirport": "Aghajari", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "5", + "airportId": 225, + "codeIataAirport": "AKX", + "codeIataCity": "AKX", + "codeIcaoAirport": "UATT", + "codeIso2Country": "KZ", + "geonameId": "6300922", + "latitudeAirport": 50.249336, + "longitudeAirport": 57.211403, + "nameAirport": "Aktyubinsk", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Aqtobe" + }, + { + "GMT": "6.30", + "airportId": 226, + "codeIataAirport": "AKY", + "codeIataCity": "AKY", + "codeIcaoAirport": "VYSW", + "codeIso2Country": "MM", + "geonameId": "1329416", + "latitudeAirport": 20.130278, + "longitudeAirport": 92.88028, + "nameAirport": "Civil", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "6", + "airportId": 227, + "codeIataAirport": "ALA", + "codeIataCity": "ALA", + "codeIcaoAirport": "UAAA", + "codeIso2Country": "KZ", + "geonameId": "6300913", + "latitudeAirport": 43.346653, + "longitudeAirport": 77.01145, + "nameAirport": "Almaty", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-5", + "airportId": 228, + "codeIataAirport": "ALB", + "codeIataCity": "ALB", + "codeIcaoAirport": "KALB", + "codeIso2Country": "US", + "geonameId": "5106842", + "latitudeAirport": 42.745277, + "longitudeAirport": -73.809555, + "nameAirport": "Albany International", + "nameCountry": "United States", + "phone": "518-242-2200", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 229, + "codeIataAirport": "ALC", + "codeIataCity": "ALC", + "codeIcaoAirport": "LEAL", + "codeIso2Country": "ES", + "geonameId": "6255112", + "latitudeAirport": 38.287098, + "longitudeAirport": -0.557381, + "nameAirport": "Alicante El Altet", + "nameCountry": "Spain", + "phone": "902 404 704", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-5", + "airportId": 230, + "codeIataAirport": "ALD", + "codeIataCity": "ALD", + "codeIcaoAirport": "SPAR", + "codeIso2Country": "PE", + "geonameId": "6453428", + "latitudeAirport": -11.683333, + "longitudeAirport": -69.333336, + "nameAirport": "Alerta", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "-6", + "airportId": 231, + "codeIataAirport": "ALE", + "codeIataCity": "ALE", + "codeIcaoAirport": "KE38", + "codeIso2Country": "US", + "geonameId": "5516210", + "latitudeAirport": 30.416668, + "longitudeAirport": -103.75, + "nameAirport": "Alpine", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 232, + "codeIataAirport": "ALF", + "codeIataCity": "ALF", + "codeIcaoAirport": "ENAT", + "codeIso2Country": "NO", + "geonameId": "6296721", + "latitudeAirport": 69.977165, + "longitudeAirport": 23.355808, + "nameAirport": "Alta", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 233, + "codeIataAirport": "ALG", + "codeIataCity": "ALG", + "codeIcaoAirport": "DAAG", + "codeIso2Country": "DZ", + "geonameId": "6296363", + "latitudeAirport": 36.70058, + "longitudeAirport": 3.21167, + "nameAirport": "Houari Boumediene", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "8", + "airportId": 234, + "codeIataAirport": "ALH", + "codeIataCity": "ALH", + "codeIcaoAirport": "YABA", + "codeIso2Country": "AU", + "geonameId": "2078285", + "latitudeAirport": -34.944996, + "longitudeAirport": 117.804, + "nameAirport": "Albany", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "airportId": 235, + "codeIataAirport": "ALI", + "codeIataCity": "ALI", + "codeIcaoAirport": "KALI", + "codeIso2Country": "US", + "geonameId": "4670241", + "latitudeAirport": 27.75, + "longitudeAirport": -98.066666, + "nameAirport": "Alice International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 236, + "codeIataAirport": "ALJ", + "codeIataCity": "ALJ", + "codeIcaoAirport": "FAAB", + "codeIso2Country": "ZA", + "geonameId": "6296877", + "latitudeAirport": -28.567223, + "longitudeAirport": 16.536388, + "nameAirport": "Kortdoorn", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "3", + "airportId": 237, + "codeIataAirport": "ALK", + "codeIataCity": "ALK", + "codeIcaoAirport": "", + "codeIso2Country": "ET", + "geonameId": "8298815", + "latitudeAirport": 7.966667, + "longitudeAirport": 39.11667, + "nameAirport": "Asela", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "1", + "airportId": 238, + "codeIataAirport": "ALL", + "codeIataCity": "ALL", + "codeIcaoAirport": "LIMG", + "codeIso2Country": "IT", + "geonameId": "6299577", + "latitudeAirport": 44.05, + "longitudeAirport": 8.216667, + "nameAirport": "Albenga", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-7", + "airportId": 239, + "codeIataAirport": "ALM", + "codeIataCity": "ALM", + "codeIcaoAirport": "KALM", + "codeIso2Country": "US", + "geonameId": "5454632", + "latitudeAirport": 32.845833, + "longitudeAirport": -105.985275, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 240, + "codeIataAirport": "ALN", + "codeIataCity": "ALN", + "codeIcaoAirport": "KALN", + "codeIso2Country": "US", + "geonameId": "4248995", + "latitudeAirport": 38.891666, + "longitudeAirport": -90.04833, + "nameAirport": "Alton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 241, + "codeIataAirport": "ALO", + "codeIataCity": "ALO", + "codeIcaoAirport": "KALO", + "codeIso2Country": "US", + "geonameId": "4880900", + "latitudeAirport": 42.55611, + "longitudeAirport": -92.39972, + "nameAirport": "Waterloo", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 242, + "codeIataAirport": "ALP", + "codeIataCity": "ALP", + "codeIcaoAirport": "OSAP", + "codeIso2Country": "SY", + "geonameId": "6300127", + "latitudeAirport": 36.185352, + "longitudeAirport": 37.227074, + "nameAirport": "Nejrab", + "nameCountry": "Syria", + "phone": "", + "timezone": "Asia/Damascus" + }, + { + "GMT": "-3", + "airportId": 243, + "codeIataAirport": "ALQ", + "codeIataCity": "ALQ", + "codeIcaoAirport": "SSLT", + "codeIso2Country": "BR", + "geonameId": "8260983", + "latitudeAirport": -29.799723, + "longitudeAirport": -55.763332, + "nameAirport": "Federal", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "12", + "airportId": 244, + "codeIataAirport": "ALR", + "codeIataCity": "ALR", + "codeIcaoAirport": "NZLX", + "codeIso2Country": "NZ", + "geonameId": "6452626", + "latitudeAirport": -45.21389, + "longitudeAirport": 169.36945, + "nameAirport": "Alexandra", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-7", + "airportId": 245, + "codeIataAirport": "ALS", + "codeIataCity": "ALS", + "codeIcaoAirport": "KALS", + "codeIso2Country": "US", + "geonameId": "5437699", + "latitudeAirport": 37.43667, + "longitudeAirport": -105.86667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-3", + "airportId": 246, + "codeIataAirport": "ALT", + "codeIataCity": "ALT", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "3407980", + "latitudeAirport": -1.933333, + "longitudeAirport": -54.766666, + "nameAirport": "Alenquer", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Santarem" + }, + { + "GMT": "3", + "airportId": 247, + "codeIataAirport": "ALU", + "codeIataCity": "ALU", + "codeIcaoAirport": "HCMA", + "codeIso2Country": "SO", + "geonameId": "7730597", + "latitudeAirport": 11.966667, + "longitudeAirport": 50.8, + "nameAirport": "Alula", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-8", + "airportId": 248, + "codeIataAirport": "ALW", + "codeIataCity": "ALW", + "codeIcaoAirport": "KALW", + "codeIso2Country": "US", + "geonameId": "5814917", + "latitudeAirport": 46.094723, + "longitudeAirport": -118.291115, + "nameAirport": "Walla Walla", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 249, + "codeIataAirport": "ALX", + "codeIataCity": "ALX", + "codeIcaoAirport": "ALX_", + "codeIso2Country": "US", + "geonameId": "4829843", + "latitudeAirport": 32.933334, + "longitudeAirport": -85.95, + "nameAirport": "Thomas C Russell Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 250, + "codeIataAirport": "ALY", + "codeIataCity": "ALY", + "codeIcaoAirport": "HEAX", + "codeIso2Country": "EG", + "geonameId": "6297291", + "latitudeAirport": 31.192545, + "longitudeAirport": 29.953058, + "nameAirport": "El Nohza", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-9", + "airportId": 251, + "codeIataAirport": "ALZ", + "codeIataCity": "ALZ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5879209", + "latitudeAirport": 56.895832, + "longitudeAirport": -154.24583, + "nameAirport": "Alitak SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 252, + "codeIataAirport": "AMA", + "codeIataCity": "AMA", + "codeIcaoAirport": "KAMA", + "codeIso2Country": "US", + "geonameId": "5516243", + "latitudeAirport": 35.218273, + "longitudeAirport": -101.70513, + "nameAirport": "Rick Husband Amarillo International", + "nameCountry": "United States", + "phone": "806-335-1671", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 253, + "codeIataAirport": "AMB", + "codeIataCity": "AMB", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "0", + "latitudeAirport": -13.183333, + "longitudeAirport": 48.983334, + "nameAirport": "Ambilobe", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "1", + "airportId": 254, + "codeIataAirport": "AMC", + "codeIataCity": "AMC", + "codeIcaoAirport": "FTTN", + "codeIso2Country": "TD", + "geonameId": "6297099", + "latitudeAirport": 11.033333, + "longitudeAirport": 20.283333, + "nameAirport": "Am Timan", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "5.30", + "airportId": 255, + "codeIataAirport": "AMD", + "codeIataCity": "AMD", + "codeIcaoAirport": "VAAH", + "codeIso2Country": "IN", + "geonameId": "6301029", + "latitudeAirport": 23.06639, + "longitudeAirport": 72.62417, + "nameAirport": "Ahmedabad", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "2", + "airportId": 256, + "codeIataAirport": "AME", + "codeIataCity": "AME", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "0", + "latitudeAirport": -15.833333, + "longitudeAirport": 37.583332, + "nameAirport": "Alto Molocue", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "10", + "airportId": 257, + "codeIataAirport": "AMF", + "codeIataCity": "AMF", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2100991", + "latitudeAirport": -4.166667, + "longitudeAirport": 141.66667, + "nameAirport": "Ama", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 258, + "codeIataAirport": "AMG", + "codeIataCity": "AMG", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7910500", + "latitudeAirport": -4.616667, + "longitudeAirport": 143.7, + "nameAirport": "Amboin", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 259, + "codeIataAirport": "AMH", + "codeIataCity": "AMH", + "codeIcaoAirport": "HAAM", + "codeIso2Country": "ET", + "geonameId": "6297259", + "latitudeAirport": 6.036111, + "longitudeAirport": 37.576942, + "nameAirport": "Arba Mintch", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-3", + "airportId": 260, + "codeIataAirport": "AMJ", + "codeIataCity": "AMJ", + "codeIcaoAirport": "SNAR", + "codeIso2Country": "BR", + "geonameId": "7730821", + "latitudeAirport": -16.183332, + "longitudeAirport": -40.683334, + "nameAirport": "Almenara", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-7", + "airportId": 261, + "codeIataAirport": "AMK", + "codeIataCity": "DRO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5411873", + "latitudeAirport": 37.15, + "longitudeAirport": -107.75, + "nameAirport": "Animas Airpark", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "2", + "airportId": 262, + "codeIataAirport": "AMM", + "codeIataCity": "AMM", + "codeIcaoAirport": "OJAI", + "codeIso2Country": "JO", + "geonameId": "393598", + "latitudeAirport": 31.722534, + "longitudeAirport": 35.98932, + "nameAirport": "Queen Alia International", + "nameCountry": "Jordan", + "phone": "481", + "timezone": "Asia/Amman" + }, + { + "GMT": "-5", + "airportId": 263, + "codeIataAirport": "AMN", + "codeIataCity": "AMN", + "codeIcaoAirport": "KAMN", + "codeIso2Country": "US", + "geonameId": "4994536", + "latitudeAirport": 43.38333, + "longitudeAirport": -84.65, + "nameAirport": "Gratiot Community", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "1", + "airportId": 264, + "codeIataAirport": "AMO", + "codeIataCity": "AMO", + "codeIcaoAirport": "", + "codeIso2Country": "TD", + "geonameId": "2428394", + "latitudeAirport": 14.116667, + "longitudeAirport": 15.316667, + "nameAirport": "Mao", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "3", + "airportId": 265, + "codeIataAirport": "AMP", + "codeIataCity": "AMP", + "codeIcaoAirport": "FMSY", + "codeIso2Country": "MG", + "geonameId": "7730515", + "latitudeAirport": -24.7, + "longitudeAirport": 44.733334, + "nameAirport": "Ampanihy", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "9", + "airportId": 266, + "codeIataAirport": "AMQ", + "codeIataCity": "AMQ", + "codeIcaoAirport": "WAPP", + "codeIso2Country": "ID", + "geonameId": "6301203", + "latitudeAirport": -3.704996, + "longitudeAirport": 128.08888, + "nameAirport": "Pattimura", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "12", + "airportId": 267, + "codeIataAirport": "AMR", + "codeIataCity": "AMR", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 7.033333, + "longitudeAirport": 171.23334, + "nameAirport": "Arno", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "1", + "airportId": 268, + "codeIataAirport": "AMS", + "codeIataCity": "AMS", + "codeIcaoAirport": "EHAM", + "codeIso2Country": "NL", + "geonameId": "6296680", + "latitudeAirport": 52.30907, + "longitudeAirport": 4.763385, + "nameAirport": "Schiphol", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "9.30", + "airportId": 269, + "codeIataAirport": "AMT", + "codeIataCity": "AMT", + "codeIcaoAirport": "YAMT", + "codeIso2Country": "AU", + "geonameId": "7730823", + "latitudeAirport": -26.766666, + "longitudeAirport": 132.03334, + "nameAirport": "Amata", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "10", + "airportId": 270, + "codeIataAirport": "AMU", + "codeIataCity": "AMU", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2100976", + "latitudeAirport": -3.516667, + "longitudeAirport": 141.15, + "nameAirport": "Amanab", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 271, + "codeIataAirport": "AMV", + "codeIataCity": "AMV", + "codeIcaoAirport": "ULDD", + "codeIso2Country": "RU", + "geonameId": "7668515", + "latitudeAirport": 69.76667, + "longitudeAirport": 61.55, + "nameAirport": "Amderma", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "airportId": 272, + "codeIataAirport": "AMW", + "codeIataCity": "AMW", + "codeIcaoAirport": "KAMW", + "codeIso2Country": "US", + "geonameId": "4846850", + "latitudeAirport": 41.994167, + "longitudeAirport": -93.61833, + "nameAirport": "Ames", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9.30", + "airportId": 273, + "codeIataAirport": "AMX", + "codeIataCity": "AMX", + "codeIcaoAirport": "YAMM", + "codeIso2Country": "AU", + "geonameId": "7730824", + "latitudeAirport": -21.74, + "longitudeAirport": 135.24, + "nameAirport": "Ammaroo", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "3", + "airportId": 274, + "codeIataAirport": "AMY", + "codeIataCity": "AMY", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "8299261", + "latitudeAirport": -17.683332, + "longitudeAirport": 45.666668, + "nameAirport": "Ambatomainty", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "12", + "airportId": 275, + "codeIataAirport": "AMZ", + "codeIataCity": "AMZ", + "codeIcaoAirport": "NZAR", + "codeIso2Country": "NZ", + "geonameId": "7730139", + "latitudeAirport": -37.033333, + "longitudeAirport": 174.96666, + "nameAirport": "Ardmore", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-8", + "airportId": 276, + "codeIataAirport": "ANA", + "codeIataCity": "ANA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5323810", + "latitudeAirport": 33.816666, + "longitudeAirport": -117.933334, + "nameAirport": "John Wayne International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 277, + "codeIataAirport": "ANB", + "codeIataCity": "ANB", + "codeIcaoAirport": "KANB", + "codeIso2Country": "US", + "geonameId": "4830211", + "latitudeAirport": 33.59028, + "longitudeAirport": -85.855835, + "nameAirport": "Anniston Metropolitan", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 278, + "codeIataAirport": "ANC", + "codeIataCity": "ANC", + "codeIcaoAirport": "PANC", + "codeIso2Country": "US", + "geonameId": "5879400", + "latitudeAirport": 61.174442, + "longitudeAirport": -149.99638, + "nameAirport": "Ted Stevens Anchorage International Airport", + "nameCountry": "United States", + "phone": "907-266-2526", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 279, + "codeIataAirport": "AND", + "codeIataCity": "AND", + "codeIcaoAirport": "KAND", + "codeIso2Country": "US", + "geonameId": "4569314", + "latitudeAirport": 34.49361, + "longitudeAirport": -82.71, + "nameAirport": "Anderson", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 280, + "codeIataAirport": "ANE", + "codeIataCity": "ANE", + "codeIcaoAirport": "LFJR", + "codeIso2Country": "FR", + "geonameId": "6458614", + "latitudeAirport": 47.466667, + "longitudeAirport": -0.55, + "nameAirport": "Marce", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-4", + "airportId": 281, + "codeIataAirport": "ANF", + "codeIataCity": "ANF", + "codeIcaoAirport": "SCFA", + "codeIso2Country": "CL", + "geonameId": "3899539", + "latitudeAirport": -23.449, + "longitudeAirport": -70.44079, + "nameAirport": "Cerro Moreno", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "1", + "airportId": 282, + "codeIataAirport": "ANG", + "codeIataCity": "ANG", + "codeIcaoAirport": "LFBU", + "codeIso2Country": "FR", + "geonameId": "6694763", + "latitudeAirport": 45.733334, + "longitudeAirport": 0.216667, + "nameAirport": "Brie-Champniers", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-9", + "airportId": 283, + "codeIataAirport": "ANI", + "codeIataCity": "ANI", + "codeIcaoAirport": "PANI", + "codeIso2Country": "US", + "geonameId": "5879490", + "latitudeAirport": 61.574398, + "longitudeAirport": -159.53697, + "nameAirport": "Aniak", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 284, + "codeIataAirport": "ANJ", + "codeIataCity": "ANJ", + "codeIcaoAirport": "", + "codeIso2Country": "CG", + "geonameId": "2254814", + "latitudeAirport": -2.85, + "longitudeAirport": 13.833333, + "nameAirport": "Zanaga", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "3", + "airportId": 285, + "codeIataAirport": "ANK", + "codeIataCity": "ANK", + "codeIcaoAirport": "LTAD", + "codeIso2Country": "TR", + "geonameId": "6301794", + "latitudeAirport": 39.983334, + "longitudeAirport": 32.833332, + "nameAirport": "Etimesgut", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "1", + "airportId": 286, + "codeIataAirport": "ANL", + "codeIataCity": "ANL", + "codeIcaoAirport": "", + "codeIso2Country": "AO", + "geonameId": "8260993", + "latitudeAirport": -11.25, + "longitudeAirport": 17.25, + "nameAirport": "Andulo", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "3", + "airportId": 287, + "codeIataAirport": "ANM", + "codeIataCity": "ANM", + "codeIcaoAirport": "FMNH", + "codeIso2Country": "MG", + "geonameId": "6297045", + "latitudeAirport": -15.0, + "longitudeAirport": 50.316666, + "nameAirport": "Antsirabato", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-9", + "airportId": 288, + "codeIataAirport": "ANN", + "codeIataCity": "ANN", + "codeIcaoAirport": "PANT", + "codeIso2Country": "US", + "geonameId": "5557843", + "latitudeAirport": 55.036945, + "longitudeAirport": -131.57056, + "nameAirport": "Annette Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Metlakatla" + }, + { + "GMT": "2", + "airportId": 289, + "codeIataAirport": "ANO", + "codeIataCity": "ANO", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "0", + "latitudeAirport": -16.177778, + "longitudeAirport": 39.936943, + "nameAirport": "Angoche", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-5", + "airportId": 290, + "codeIataAirport": "ANP", + "codeIataCity": "ANP", + "codeIcaoAirport": "KANP", + "codeIso2Country": "US", + "geonameId": "4360491", + "latitudeAirport": 38.983334, + "longitudeAirport": -76.5, + "nameAirport": "Lee", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 291, + "codeIataAirport": "ANQ", + "codeIataCity": "ANQ", + "codeIcaoAirport": "KANQ", + "codeIso2Country": "US", + "geonameId": "4927311", + "latitudeAirport": 41.63333, + "longitudeAirport": -85.0, + "nameAirport": "Tri-State Steuben County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "1", + "airportId": 292, + "codeIataAirport": "ANR", + "codeIataCity": "ANR", + "codeIcaoAirport": "EBAW", + "codeIso2Country": "BE", + "geonameId": "6296483", + "latitudeAirport": 51.18916, + "longitudeAirport": 4.450672, + "nameAirport": "Deurne/ Antwerp Airport", + "nameCountry": "Belgium", + "phone": "", + "timezone": "Europe/Brussels" + }, + { + "GMT": "-5", + "airportId": 293, + "codeIataAirport": "ANS", + "codeIataCity": "ANS", + "codeIcaoAirport": "SPHY", + "codeIso2Country": "PE", + "geonameId": "6300804", + "latitudeAirport": -13.716667, + "longitudeAirport": -73.355835, + "nameAirport": "Andahuaylas", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "1", + "airportId": 294, + "codeIataAirport": "ANT", + "codeIataCity": "ANT", + "codeIcaoAirport": "", + "codeIso2Country": "AT", + "geonameId": "0", + "latitudeAirport": 47.15, + "longitudeAirport": 10.283333, + "nameAirport": "St Anton", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "-4", + "airportId": 295, + "codeIataAirport": "ANU", + "codeIataCity": "ANU", + "codeIcaoAirport": "TAPA", + "codeIso2Country": "AG", + "geonameId": "3575954", + "latitudeAirport": 17.108334, + "longitudeAirport": -61.76389, + "nameAirport": "V. C. Bird International", + "nameCountry": "Antigua and Barbuda", + "phone": "", + "timezone": "America/Antigua" + }, + { + "GMT": "-9", + "airportId": 296, + "codeIataAirport": "ANV", + "codeIataCity": "ANV", + "codeIcaoAirport": "PANV", + "codeIso2Country": "US", + "geonameId": "5879553", + "latitudeAirport": 62.647778, + "longitudeAirport": -160.18889, + "nameAirport": "Anvik", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 297, + "codeIataAirport": "ANW", + "codeIataCity": "ANW", + "codeIcaoAirport": "KANW", + "codeIso2Country": "US", + "geonameId": "5062776", + "latitudeAirport": 42.55, + "longitudeAirport": -99.86667, + "nameAirport": "Ainsworth", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 298, + "codeIataAirport": "ANX", + "codeIataCity": "ANX", + "codeIcaoAirport": "ENAN", + "codeIso2Country": "NO", + "geonameId": "3163146", + "latitudeAirport": 69.30492, + "longitudeAirport": 16.133326, + "nameAirport": "Andøya Lufthavn, Andenes", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "airportId": 299, + "codeIataAirport": "ANY", + "codeIataCity": "ANY", + "codeIcaoAirport": "KANY", + "codeIso2Country": "US", + "geonameId": "4267608", + "latitudeAirport": 37.15, + "longitudeAirport": -98.03333, + "nameAirport": "Anthony", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9.30", + "airportId": 300, + "codeIataAirport": "ANZ", + "codeIataCity": "ANZ", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298801", + "latitudeAirport": -25.083332, + "longitudeAirport": 132.16667, + "nameAirport": "Angus Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "10", + "airportId": 301, + "codeIataAirport": "AOB", + "codeIataCity": "AOB", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2100742", + "latitudeAirport": -4.916667, + "longitudeAirport": 144.65, + "nameAirport": "Annanberg", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 302, + "codeIataAirport": "AOC", + "codeIataCity": "AOC", + "codeIcaoAirport": "EDAC", + "codeIso2Country": "DE", + "geonameId": "6296505", + "latitudeAirport": 50.983334, + "longitudeAirport": 12.45, + "nameAirport": "Altenburg Nobitz", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 303, + "codeIataAirport": "AOD", + "codeIataCity": "AOD", + "codeIcaoAirport": "", + "codeIso2Country": "TD", + "geonameId": "0", + "latitudeAirport": 11.474722, + "longitudeAirport": 19.288889, + "nameAirport": "Abou Deia", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "3", + "airportId": 304, + "codeIataAirport": "AOE", + "codeIataCity": "ESK", + "codeIcaoAirport": "LTBY", + "codeIso2Country": "TR", + "geonameId": "7730326", + "latitudeAirport": 39.81, + "longitudeAirport": 30.519444, + "nameAirport": "Anadolu University", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "8", + "airportId": 305, + "codeIataAirport": "AOG", + "codeIataCity": "AOG", + "codeIcaoAirport": "ZYAS", + "codeIso2Country": "CN", + "geonameId": "7730825", + "latitudeAirport": 41.166668, + "longitudeAirport": 123.03333, + "nameAirport": "Anshan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 306, + "codeIataAirport": "AOH", + "codeIataCity": "AOH", + "codeIcaoAirport": "KAOH", + "codeIso2Country": "US", + "geonameId": "5160784", + "latitudeAirport": 40.766666, + "longitudeAirport": -84.1, + "nameAirport": "Allen County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 307, + "codeIataAirport": "AOI", + "codeIataCity": "AOI", + "codeIcaoAirport": "LIPY", + "codeIso2Country": "IT", + "geonameId": "6299602", + "latitudeAirport": 43.60691, + "longitudeAirport": 13.355723, + "nameAirport": "Falconara", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "9", + "airportId": 308, + "codeIataAirport": "AOJ", + "codeIataCity": "AOJ", + "codeIcaoAirport": "RJSA", + "codeIso2Country": "JP", + "geonameId": "6300388", + "latitudeAirport": 40.738758, + "longitudeAirport": 140.68922, + "nameAirport": "Aomori", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "2", + "airportId": 309, + "codeIataAirport": "AOK", + "codeIataCity": "AOK", + "codeIcaoAirport": "LGKP", + "codeIso2Country": "GR", + "geonameId": "6299494", + "latitudeAirport": 35.420685, + "longitudeAirport": 27.146729, + "nameAirport": "Karpathos", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "-3", + "airportId": 310, + "codeIataAirport": "AOL", + "codeIataCity": "AOL", + "codeIcaoAirport": "SARL", + "codeIso2Country": "AR", + "geonameId": "6300550", + "latitudeAirport": -29.683332, + "longitudeAirport": -57.15, + "nameAirport": "Paso De Los Libres", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "4", + "airportId": 311, + "codeIataAirport": "AOM", + "codeIataCity": "AOM", + "codeIcaoAirport": "", + "codeIso2Country": "OM", + "geonameId": "8298665", + "latitudeAirport": 40.738758, + "longitudeAirport": 140.68922, + "nameAirport": "Adam", + "nameCountry": "Oman", + "phone": "", + "timezone": "Asia/Muscat" + }, + { + "GMT": "10", + "airportId": 312, + "codeIataAirport": "AON", + "codeIataCity": "AON", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2100541", + "latitudeAirport": -6.333333, + "longitudeAirport": 146.0, + "nameAirport": "Arona", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 313, + "codeIataAirport": "AOO", + "codeIataCity": "AOO", + "codeIcaoAirport": "KAOO", + "codeIso2Country": "US", + "geonameId": "5200055", + "latitudeAirport": 40.297222, + "longitudeAirport": -78.32, + "nameAirport": "Martinsburg", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 314, + "codeIataAirport": "AOP", + "codeIataCity": "AOP", + "codeIcaoAirport": "", + "codeIso2Country": "PE", + "geonameId": "3699659", + "latitudeAirport": -2.90464, + "longitudeAirport": -76.40236, + "nameAirport": "Andoas", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "8", + "airportId": 315, + "codeIataAirport": "AOR", + "codeIataCity": "AOR", + "codeIcaoAirport": "WMKA", + "codeIso2Country": "MY", + "geonameId": "6452629", + "latitudeAirport": 6.201171, + "longitudeAirport": 100.405266, + "nameAirport": "Alor Setar", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "-9", + "airportId": 316, + "codeIataAirport": "AOS", + "codeIataCity": "AOS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5879326", + "latitudeAirport": 57.466667, + "longitudeAirport": -153.83333, + "nameAirport": "Amook", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 317, + "codeIataAirport": "AOT", + "codeIataCity": "AOT", + "codeIcaoAirport": "LIMW", + "codeIso2Country": "IT", + "geonameId": "7668320", + "latitudeAirport": 45.73861, + "longitudeAirport": 7.3625, + "nameAirport": "Corrado Gex", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "7", + "airportId": 318, + "codeIataAirport": "AOU", + "codeIataCity": "AOU", + "codeIcaoAirport": "VLAP", + "codeIso2Country": "LA", + "geonameId": "6301105", + "latitudeAirport": 14.8, + "longitudeAirport": 106.833336, + "nameAirport": "Attopeu", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-7", + "airportId": 319, + "codeIataAirport": "APA", + "codeIataCity": "DEN", + "codeIcaoAirport": "KAPA", + "codeIso2Country": "US", + "geonameId": "5412057", + "latitudeAirport": 39.733334, + "longitudeAirport": -104.98333, + "nameAirport": "Arapahoe Co", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-4", + "airportId": 320, + "codeIataAirport": "APB", + "codeIataCity": "APB", + "codeIcaoAirport": "SLAP", + "codeIso2Country": "BO", + "geonameId": "6300764", + "latitudeAirport": -14.716667, + "longitudeAirport": -68.51667, + "nameAirport": "Apolo", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-8", + "airportId": 321, + "codeIataAirport": "APC", + "codeIataCity": "APC", + "codeIcaoAirport": "KAPC", + "codeIso2Country": "US", + "geonameId": "5376102", + "latitudeAirport": 38.212223, + "longitudeAirport": -122.28, + "nameAirport": "Napa County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 322, + "codeIataAirport": "APE", + "codeIataCity": "APE", + "codeIcaoAirport": "", + "codeIso2Country": "PE", + "geonameId": "0", + "latitudeAirport": -11.933333, + "longitudeAirport": -69.083336, + "nameAirport": "San Juan Aposento", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "-5", + "airportId": 323, + "codeIataAirport": "APF", + "codeIataCity": "APF", + "codeIcaoAirport": "KAPF", + "codeIso2Country": "US", + "geonameId": "4165575", + "latitudeAirport": 26.152779, + "longitudeAirport": -81.775276, + "nameAirport": "Naples", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 324, + "codeIataAirport": "APG", + "codeIataCity": "APG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.5, + "longitudeAirport": -76.166664, + "nameAirport": "Phillips AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 325, + "codeIataAirport": "APH", + "codeIataCity": "APH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.05, + "longitudeAirport": -77.35, + "nameAirport": "Camp A P Hill", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 326, + "codeIataAirport": "API", + "codeIataCity": "API", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "3689790", + "latitudeAirport": 4.068889, + "longitudeAirport": -73.05194, + "nameAirport": "Apiay", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-10", + "airportId": 327, + "codeIataAirport": "APK", + "codeIataCity": "APK", + "codeIcaoAirport": "NTGD", + "codeIso2Country": "PF", + "geonameId": "7730695", + "latitudeAirport": -15.416667, + "longitudeAirport": -146.08333, + "nameAirport": "Apataki", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "2", + "airportId": 328, + "codeIataAirport": "APL", + "codeIataCity": "APL", + "codeIcaoAirport": "FQNP", + "codeIso2Country": "MZ", + "geonameId": "1092770", + "latitudeAirport": -15.101667, + "longitudeAirport": 39.287224, + "nameAirport": "Nampula", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-5", + "airportId": 329, + "codeIataAirport": "APN", + "codeIataCity": "APN", + "codeIcaoAirport": "KAPN", + "codeIso2Country": "US", + "geonameId": "4984078", + "latitudeAirport": 45.08167, + "longitudeAirport": -83.55583, + "nameAirport": "Alpena County Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-5", + "airportId": 330, + "codeIataAirport": "APO", + "codeIataCity": "APO", + "codeIcaoAirport": "SKLC", + "codeIso2Country": "CO", + "geonameId": "6300744", + "latitudeAirport": 7.817678, + "longitudeAirport": -76.71766, + "nameAirport": "Apartado", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "airportId": 331, + "codeIataAirport": "APP", + "codeIataCity": "APP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299073", + "latitudeAirport": -8.983333, + "longitudeAirport": 148.13333, + "nameAirport": "Asapa", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "airportId": 332, + "codeIataAirport": "APQ", + "codeIataCity": "APQ", + "codeIcaoAirport": "SNAL", + "codeIso2Country": "BR", + "geonameId": "7730827", + "latitudeAirport": -9.75, + "longitudeAirport": -36.65, + "nameAirport": "Arapiraca", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Maceio" + }, + { + "GMT": "10", + "airportId": 333, + "codeIataAirport": "APR", + "codeIataCity": "APR", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298703", + "latitudeAirport": -8.5, + "longitudeAirport": 145.0, + "nameAirport": "April River", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "airportId": 334, + "codeIataAirport": "APS", + "codeIataCity": "APS", + "codeIcaoAirport": "SBAN", + "codeIso2Country": "BR", + "geonameId": "6300596", + "latitudeAirport": -16.333332, + "longitudeAirport": -48.966667, + "nameAirport": "Anapolis", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "airportId": 335, + "codeIataAirport": "APT", + "codeIataCity": "APT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 35.066666, + "longitudeAirport": -85.5, + "nameAirport": "Marion County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 336, + "codeIataAirport": "APU", + "codeIataCity": "APU", + "codeIcaoAirport": "SSAP", + "codeIso2Country": "BR", + "geonameId": "7668471", + "latitudeAirport": -23.55, + "longitudeAirport": -51.483334, + "nameAirport": "Apucarana", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "airportId": 337, + "codeIataAirport": "APV", + "codeIataCity": "APV", + "codeIcaoAirport": "KAPV", + "codeIso2Country": "US", + "geonameId": "5324369", + "latitudeAirport": 34.52639, + "longitudeAirport": -117.212776, + "nameAirport": "Apple Valley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "13", + "airportId": 338, + "codeIataAirport": "APW", + "codeIataCity": "APW", + "codeIcaoAirport": "NSFA", + "codeIso2Country": "WS", + "geonameId": "6299961", + "latitudeAirport": -13.832793, + "longitudeAirport": -171.99724, + "nameAirport": "Faleolo", + "nameCountry": "Samoa", + "phone": "", + "timezone": "Pacific/Apia" + }, + { + "GMT": "-3", + "airportId": 339, + "codeIataAirport": "APX", + "codeIataCity": "APX", + "codeIcaoAirport": "SSOG", + "codeIso2Country": "BR", + "geonameId": "7668475", + "latitudeAirport": -23.483334, + "longitudeAirport": -51.466667, + "nameAirport": "Arapongas", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-3", + "airportId": 340, + "codeIataAirport": "APY", + "codeIataCity": "APY", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8260719", + "latitudeAirport": -9.133333, + "longitudeAirport": -45.933334, + "nameAirport": "Alto Parnaiba", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-3", + "airportId": 341, + "codeIataAirport": "APZ", + "codeIataCity": "APZ", + "codeIcaoAirport": "SAHZ", + "codeIso2Country": "AR", + "geonameId": "7730148", + "latitudeAirport": -38.916668, + "longitudeAirport": -70.083336, + "nameAirport": "Zapala", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-3", + "airportId": 342, + "codeIataAirport": "AQA", + "codeIataCity": "AQA", + "codeIcaoAirport": "SBAQ", + "codeIso2Country": "BR", + "geonameId": "7668428", + "latitudeAirport": -21.816668, + "longitudeAirport": -48.13333, + "nameAirport": "Araraquara", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "airportId": 343, + "codeIataAirport": "AQB", + "codeIataCity": "AQB", + "codeIcaoAirport": "MGQC", + "codeIso2Country": "GT", + "geonameId": "7730655", + "latitudeAirport": 15.01, + "longitudeAirport": -91.15, + "nameAirport": "Quiche Airport", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "8", + "airportId": 344, + "codeIataAirport": "AQG", + "codeIataCity": "AQG", + "codeIcaoAirport": "ZSAQ", + "codeIso2Country": "CN", + "geonameId": "7668802", + "latitudeAirport": 30.5825, + "longitudeAirport": 117.0509, + "nameAirport": "Anqing", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "airportId": 345, + "codeIataAirport": "AQI", + "codeIataCity": "AQI", + "codeIcaoAirport": "OEPA", + "codeIso2Country": "SA", + "geonameId": "0", + "latitudeAirport": 28.334408, + "longitudeAirport": 46.121315, + "nameAirport": "Qaisumah", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "2", + "airportId": 346, + "codeIataAirport": "AQJ", + "codeIataCity": "AQJ", + "codeIcaoAirport": "OJAQ", + "codeIso2Country": "JO", + "geonameId": "250774", + "latitudeAirport": 29.610073, + "longitudeAirport": 35.02151, + "nameAirport": "King Hussein International", + "nameCountry": "Jordan", + "phone": "", + "timezone": "Asia/Amman" + }, + { + "GMT": "-4", + "airportId": 347, + "codeIataAirport": "AQM", + "codeIataCity": "AQM", + "codeIcaoAirport": "SWNI", + "codeIso2Country": "BR", + "geonameId": "7730829", + "latitudeAirport": -9.933333, + "longitudeAirport": -63.066666, + "nameAirport": "Ariquemes", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Porto_Velho" + }, + { + "GMT": "-5", + "airportId": 348, + "codeIataAirport": "AQP", + "codeIataCity": "AQP", + "codeIcaoAirport": "SPQU", + "codeIso2Country": "PE", + "geonameId": "6300817", + "latitudeAirport": -16.344812, + "longitudeAirport": -71.56799, + "nameAirport": "Rodriguez Ballon", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "-9", + "airportId": 349, + "codeIataAirport": "AQY", + "codeIataCity": "AQY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5879267", + "latitudeAirport": 60.966667, + "longitudeAirport": -149.11667, + "nameAirport": "Alyeska", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 350, + "codeIataAirport": "ARA", + "codeIataCity": "ARA", + "codeIcaoAirport": "KARA", + "codeIso2Country": "US", + "geonameId": "4334971", + "latitudeAirport": 30.037779, + "longitudeAirport": -91.88389, + "nameAirport": "Acadiana Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 351, + "codeIataAirport": "ARB", + "codeIataCity": "ARB", + "codeIcaoAirport": "KARB", + "codeIso2Country": "US", + "geonameId": "4984248", + "latitudeAirport": 42.3, + "longitudeAirport": -83.75, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-9", + "airportId": 352, + "codeIataAirport": "ARC", + "codeIataCity": "ARC", + "codeIcaoAirport": "PARC", + "codeIso2Country": "US", + "geonameId": "5879636", + "latitudeAirport": 68.1375, + "longitudeAirport": -145.52444, + "nameAirport": "Arctic Village", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 353, + "codeIataAirport": "ARD", + "codeIataCity": "ARD", + "codeIcaoAirport": "WATM", + "codeIso2Country": "ID", + "geonameId": "7730830", + "latitudeAirport": -8.683333, + "longitudeAirport": 124.53333, + "nameAirport": "Alor Island", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-4", + "airportId": 354, + "codeIataAirport": "ARE", + "codeIataCity": "ARE", + "codeIcaoAirport": "TJAB", + "codeIso2Country": "PR", + "geonameId": "4562635", + "latitudeAirport": 18.45, + "longitudeAirport": -66.675835, + "nameAirport": "Arecibo", + "nameCountry": "Puerto Rico", + "phone": "", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "-5", + "airportId": 355, + "codeIataAirport": "ARF", + "codeIataCity": "ARF", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8299065", + "latitudeAirport": 0.533333, + "longitudeAirport": -70.13333, + "nameAirport": "Acaricuara", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 356, + "codeIataAirport": "ARG", + "codeIataCity": "ARG", + "codeIcaoAirport": "KARG", + "codeIso2Country": "US", + "geonameId": "4135213", + "latitudeAirport": 36.066666, + "longitudeAirport": -90.95, + "nameAirport": "Walnut Ridge", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 357, + "codeIataAirport": "ARH", + "codeIataCity": "ARH", + "codeIcaoAirport": "ULAA", + "codeIso2Country": "RU", + "geonameId": "6300969", + "latitudeAirport": 64.594795, + "longitudeAirport": 40.711903, + "nameAirport": "Arkhangelsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-4", + "airportId": 358, + "codeIataAirport": "ARI", + "codeIataCity": "ARI", + "codeIcaoAirport": "SCAR", + "codeIso2Country": "CL", + "geonameId": "6300689", + "latitudeAirport": -18.349766, + "longitudeAirport": -70.335556, + "nameAirport": "Chacalluta", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "9", + "airportId": 359, + "codeIataAirport": "ARJ", + "codeIataCity": "ARJ", + "codeIcaoAirport": "WAJA", + "codeIso2Country": "ID", + "geonameId": "7730831", + "latitudeAirport": -2.933333, + "longitudeAirport": 140.78334, + "nameAirport": "Arso", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "3", + "airportId": 360, + "codeIataAirport": "ARK", + "codeIataCity": "ARK", + "codeIcaoAirport": "HTAR", + "codeIso2Country": "TZ", + "geonameId": "6297351", + "latitudeAirport": -3.366667, + "longitudeAirport": 36.683334, + "nameAirport": "Arusha", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "0", + "airportId": 361, + "codeIataAirport": "ARL", + "codeIataCity": "ARL", + "codeIcaoAirport": "DFER", + "codeIso2Country": "BF", + "geonameId": "7730461", + "latitudeAirport": 11.6, + "longitudeAirport": 1.483333, + "nameAirport": "Arly", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "10", + "airportId": 362, + "codeIataAirport": "ARM", + "codeIataCity": "ARM", + "codeIcaoAirport": "YARM", + "codeIso2Country": "AU", + "geonameId": "7730238", + "latitudeAirport": -30.532297, + "longitudeAirport": 151.61493, + "nameAirport": "Armidale", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "airportId": 363, + "codeIataAirport": "ARN", + "codeIataCity": "STO", + "codeIcaoAirport": "ESSA", + "codeIso2Country": "SE", + "geonameId": "2725346", + "latitudeAirport": 59.64982, + "longitudeAirport": 17.930365, + "nameAirport": "Arlanda", + "nameCountry": "Sweden", + "phone": "+46 8-797-600", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "airportId": 364, + "codeIataAirport": "ARO", + "codeIataCity": "ARO", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8298702", + "latitudeAirport": 8.85, + "longitudeAirport": -76.433334, + "nameAirport": "Arboletas", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "airportId": 365, + "codeIataAirport": "ARP", + "codeIataCity": "ARP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8261057", + "latitudeAirport": -9.8, + "longitudeAirport": 149.5, + "nameAirport": "Aragip", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 366, + "codeIataAirport": "ARQ", + "codeIataCity": "ARQ", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "6195162", + "latitudeAirport": 7.033056, + "longitudeAirport": -71.43166, + "nameAirport": "Arauquita", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "airportId": 367, + "codeIataAirport": "ARR", + "codeIataCity": "ARR", + "codeIcaoAirport": "SAVR", + "codeIso2Country": "AR", + "geonameId": "7730773", + "latitudeAirport": -45.033333, + "longitudeAirport": -70.833336, + "nameAirport": "Alto Rio Senguerr", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "-3", + "airportId": 368, + "codeIataAirport": "ARS", + "codeIataCity": "ARS", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8299188", + "latitudeAirport": -15.9, + "longitudeAirport": -52.233334, + "nameAirport": "Aragarcas", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "airportId": 369, + "codeIataAirport": "ART", + "codeIataCity": "ART", + "codeIcaoAirport": "KART", + "codeIso2Country": "US", + "geonameId": "5143399", + "latitudeAirport": 43.990833, + "longitudeAirport": -76.021385, + "nameAirport": "Watertown", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 370, + "codeIataAirport": "ARU", + "codeIataCity": "ARU", + "codeIcaoAirport": "SBAU", + "codeIso2Country": "BR", + "geonameId": "7668429", + "latitudeAirport": -21.143612, + "longitudeAirport": -50.42611, + "nameAirport": "Aracatuba", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "airportId": 371, + "codeIataAirport": "ARV", + "codeIataCity": "ARV", + "codeIcaoAirport": "KARV", + "codeIso2Country": "US", + "geonameId": "5263156", + "latitudeAirport": 45.924168, + "longitudeAirport": -89.73222, + "nameAirport": "Noble F. Lee", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 372, + "codeIataAirport": "ARW", + "codeIataCity": "ARW", + "codeIcaoAirport": "LRAR", + "codeIso2Country": "RO", + "geonameId": "6299698", + "latitudeAirport": 46.183334, + "longitudeAirport": 21.266666, + "nameAirport": "Arad", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "10", + "airportId": 373, + "codeIataAirport": "ARY", + "codeIataCity": "ARY", + "codeIcaoAirport": "YARA", + "codeIso2Country": "AU", + "geonameId": "7668680", + "latitudeAirport": -37.316666, + "longitudeAirport": 143.0, + "nameAirport": "Ararat", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "1", + "airportId": 374, + "codeIataAirport": "ARZ", + "codeIataCity": "ARZ", + "codeIcaoAirport": "FNZE", + "codeIso2Country": "AO", + "geonameId": "7730521", + "latitudeAirport": -7.5, + "longitudeAirport": 13.5, + "nameAirport": "N'zeto", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "3", + "airportId": 375, + "codeIataAirport": "ASA", + "codeIataCity": "ASA", + "codeIcaoAirport": "HHSB", + "codeIso2Country": "ER", + "geonameId": "6453437", + "latitudeAirport": 13.07, + "longitudeAirport": 42.638332, + "nameAirport": "Assab International", + "nameCountry": "Eritrea", + "phone": "", + "timezone": "Africa/Asmara" + }, + { + "GMT": "5", + "airportId": 376, + "codeIataAirport": "ASB", + "codeIataCity": "ASB", + "codeIcaoAirport": "UTAA", + "codeIso2Country": "TM", + "geonameId": "6301005", + "latitudeAirport": 37.984184, + "longitudeAirport": 58.366978, + "nameAirport": "Ashgabat", + "nameCountry": "Turkmenistan", + "phone": "", + "timezone": "Asia/Ashgabat" + }, + { + "GMT": "-4", + "airportId": 377, + "codeIataAirport": "ASC", + "codeIataCity": "ASC", + "codeIcaoAirport": "SLAS", + "codeIso2Country": "BO", + "geonameId": "6300765", + "latitudeAirport": -15.916667, + "longitudeAirport": -63.15, + "nameAirport": "Ascension", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-5", + "airportId": 378, + "codeIataAirport": "ASD", + "codeIataCity": "ASD", + "codeIcaoAirport": "MYAF", + "codeIso2Country": "BS", + "geonameId": "3572906", + "latitudeAirport": 24.697779, + "longitudeAirport": -77.79611, + "nameAirport": "Andros Town", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-7", + "airportId": 379, + "codeIataAirport": "ASE", + "codeIataCity": "ASE", + "codeIcaoAirport": "KASE", + "codeIso2Country": "US", + "geonameId": "5412276", + "latitudeAirport": 39.219685, + "longitudeAirport": -106.864685, + "nameAirport": "Aspen", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "3", + "airportId": 380, + "codeIataAirport": "ASF", + "codeIataCity": "ASF", + "codeIcaoAirport": "URWA", + "codeIso2Country": "RU", + "geonameId": "6300996", + "latitudeAirport": 46.2877, + "longitudeAirport": 47.999977, + "nameAirport": "Astrakhan", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Volgograd" + }, + { + "GMT": "12", + "airportId": 381, + "codeIataAirport": "ASG", + "codeIataCity": "ASG", + "codeIcaoAirport": "NZAS", + "codeIso2Country": "NZ", + "geonameId": "7730727", + "latitudeAirport": -43.9, + "longitudeAirport": 171.78334, + "nameAirport": "Ashburton", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-5", + "airportId": 382, + "codeIataAirport": "ASH", + "codeIataCity": "ASH", + "codeIcaoAirport": "KASH", + "codeIso2Country": "US", + "geonameId": "5090046", + "latitudeAirport": 42.77889, + "longitudeAirport": -71.509445, + "nameAirport": "Boire Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 383, + "codeIataAirport": "ASI", + "codeIataCity": "ASI", + "codeIcaoAirport": "", + "codeIso2Country": "SH", + "geonameId": "6296983", + "latitudeAirport": -7.966667, + "longitudeAirport": -14.4, + "nameAirport": "Wideawake Field", + "nameCountry": "Saint Helena", + "phone": "", + "timezone": "Atlantic/St_Helena" + }, + { + "GMT": "9", + "airportId": 384, + "codeIataAirport": "ASJ", + "codeIataCity": "ASJ", + "codeIcaoAirport": "RJKA", + "codeIso2Country": "JP", + "geonameId": "6300360", + "latitudeAirport": 28.431522, + "longitudeAirport": 129.70793, + "nameAirport": "Amami", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "0", + "airportId": 385, + "codeIataAirport": "ASK", + "codeIataCity": "ASK", + "codeIcaoAirport": "DIYO", + "codeIso2Country": "CI", + "geonameId": "6296445", + "latitudeAirport": 6.816667, + "longitudeAirport": -5.283333, + "nameAirport": "Yamoussoukro", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "-6", + "airportId": 386, + "codeIataAirport": "ASL", + "codeIataCity": "ASL", + "codeIcaoAirport": "KASL", + "codeIso2Country": "US", + "geonameId": "4709272", + "latitudeAirport": 32.55, + "longitudeAirport": -94.38333, + "nameAirport": "Harrison County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 387, + "codeIataAirport": "ASM", + "codeIataCity": "ASM", + "codeIcaoAirport": "HHAS", + "codeIso2Country": "ER", + "geonameId": "6297302", + "latitudeAirport": 15.291111, + "longitudeAirport": 38.91028, + "nameAirport": "Yohannes IV", + "nameCountry": "Eritrea", + "phone": "", + "timezone": "Africa/Asmara" + }, + { + "GMT": "-6", + "airportId": 388, + "codeIataAirport": "ASN", + "codeIataCity": "ASN", + "codeIcaoAirport": "KASN", + "codeIso2Country": "US", + "geonameId": "4092812", + "latitudeAirport": 33.433334, + "longitudeAirport": -86.1, + "nameAirport": "Talladega", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 389, + "codeIataAirport": "ASO", + "codeIataCity": "ASO", + "codeIcaoAirport": "HASO", + "codeIso2Country": "ET", + "geonameId": "6297281", + "latitudeAirport": 10.047222, + "longitudeAirport": 34.536667, + "nameAirport": "Asosa", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "9.30", + "airportId": 390, + "codeIataAirport": "ASP", + "codeIataCity": "ASP", + "codeIcaoAirport": "YBAS", + "codeIso2Country": "AU", + "geonameId": "6301291", + "latitudeAirport": -23.80139, + "longitudeAirport": 133.90338, + "nameAirport": "Alice Springs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-8", + "airportId": 391, + "codeIataAirport": "ASQ", + "codeIataCity": "ASQ", + "codeIcaoAirport": "KTMT", + "codeIso2Country": "US", + "geonameId": "5499538", + "latitudeAirport": 39.466667, + "longitudeAirport": -117.166664, + "nameAirport": "Austin", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "airportId": 392, + "codeIataAirport": "ASR", + "codeIataCity": "ASR", + "codeIcaoAirport": "LTAU", + "codeIso2Country": "TR", + "geonameId": "6299738", + "latitudeAirport": 38.7742, + "longitudeAirport": 35.490707, + "nameAirport": "Erkilet International Airport", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-8", + "airportId": 393, + "codeIataAirport": "AST", + "codeIataCity": "AST", + "codeIcaoAirport": "KAST", + "codeIso2Country": "US", + "geonameId": "5719409", + "latitudeAirport": 46.15972, + "longitudeAirport": -123.88, + "nameAirport": "Astoria", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "airportId": 394, + "codeIataAirport": "ASU", + "codeIataCity": "ASU", + "codeIcaoAirport": "SGAS", + "codeIso2Country": "PY", + "geonameId": "6300727", + "latitudeAirport": -25.241795, + "longitudeAirport": -57.513794, + "nameAirport": "Silvio Pettirossi", + "nameCountry": "Paraguay", + "phone": "", + "timezone": "America/Asuncion" + }, + { + "GMT": "3", + "airportId": 395, + "codeIataAirport": "ASV", + "codeIataCity": "ASV", + "codeIcaoAirport": "HKAM", + "codeIso2Country": "KE", + "geonameId": "7730093", + "latitudeAirport": -2.633333, + "longitudeAirport": 37.25, + "nameAirport": "Amboseli", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "2", + "airportId": 396, + "codeIataAirport": "ASW", + "codeIataCity": "ASW", + "codeIcaoAirport": "HESN", + "codeIso2Country": "EG", + "geonameId": "6297299", + "latitudeAirport": 23.968021, + "longitudeAirport": 32.824818, + "nameAirport": "Aswan", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-6", + "airportId": 397, + "codeIataAirport": "ASX", + "codeIataCity": "ASX", + "codeIcaoAirport": "KASX", + "codeIso2Country": "US", + "geonameId": "5257948", + "latitudeAirport": 46.55, + "longitudeAirport": -90.916664, + "nameAirport": "Ashland", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 398, + "codeIataAirport": "ASY", + "codeIataCity": "ASY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 46.033333, + "longitudeAirport": -99.36667, + "nameAirport": "Ashley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 399, + "codeIataAirport": "ASZ", + "codeIataCity": "ASZ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298828", + "latitudeAirport": -5.866667, + "longitudeAirport": 150.36667, + "nameAirport": "Asirim", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 400, + "codeIataAirport": "ATA", + "codeIataCity": "ATA", + "codeIcaoAirport": "SPHZ", + "codeIso2Country": "PE", + "geonameId": "6300805", + "latitudeAirport": -9.347222, + "longitudeAirport": -77.6, + "nameAirport": "Anta", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "3", + "airportId": 401, + "codeIataAirport": "ATB", + "codeIataCity": "ATB", + "codeIcaoAirport": "HSAT", + "codeIso2Country": "SD", + "geonameId": "6297335", + "latitudeAirport": 17.716667, + "longitudeAirport": 34.016666, + "nameAirport": "Atbara", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "-5", + "airportId": 402, + "codeIataAirport": "ATC", + "codeIataCity": "ATC", + "codeIcaoAirport": "MYCA", + "codeIso2Country": "BS", + "geonameId": "3572898", + "latitudeAirport": 24.62861, + "longitudeAirport": -75.67139, + "nameAirport": "Arthur's Town", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "11", + "airportId": 403, + "codeIataAirport": "ATD", + "codeIataCity": "ATD", + "codeIcaoAirport": "AGAT", + "codeIso2Country": "SB", + "geonameId": "7730402", + "latitudeAirport": -8.866667, + "longitudeAirport": 161.03334, + "nameAirport": "Atoifi", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-6", + "airportId": 404, + "codeIataAirport": "ATE", + "codeIataCity": "ATE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4529419", + "latitudeAirport": 34.233334, + "longitudeAirport": -95.61667, + "nameAirport": "Antlers", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 405, + "codeIataAirport": "ATF", + "codeIataCity": "ATF", + "codeIcaoAirport": "SEAM", + "codeIso2Country": "EC", + "geonameId": "6300709", + "latitudeAirport": -1.083333, + "longitudeAirport": -78.7, + "nameAirport": "Chachoan", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "5", + "airportId": 406, + "codeIataAirport": "ATG", + "codeIataCity": "ATG", + "codeIcaoAirport": "", + "codeIso2Country": "PK", + "geonameId": "0", + "latitudeAirport": 33.9, + "longitudeAirport": 72.25, + "nameAirport": "Attock", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "2", + "airportId": 407, + "codeIataAirport": "ATH", + "codeIataCity": "ATH", + "codeIcaoAirport": "LGAV", + "codeIso2Country": "GR", + "geonameId": "6299484", + "latitudeAirport": 37.93635, + "longitudeAirport": 23.946486, + "nameAirport": "Athens International Airport \"Eleftherios Venizelos\"", + "nameCountry": "Greece", + "phone": "+30 210-35300", + "timezone": "Europe/Athens" + }, + { + "GMT": "-3", + "airportId": 408, + "codeIataAirport": "ATI", + "codeIataCity": "ATI", + "codeIcaoAirport": "SUAG", + "codeIso2Country": "UY", + "geonameId": "6300827", + "latitudeAirport": -30.4, + "longitudeAirport": -56.50833, + "nameAirport": "Artigas", + "nameCountry": "Uruguay", + "phone": "", + "timezone": "America/Montevideo" + }, + { + "GMT": "3", + "airportId": 409, + "codeIataAirport": "ATJ", + "codeIataCity": "ATJ", + "codeIcaoAirport": "FMME", + "codeIso2Country": "MG", + "geonameId": "1069186", + "latitudeAirport": -19.85, + "longitudeAirport": 47.016666, + "nameAirport": "Antsirabe", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-9", + "airportId": 410, + "codeIataAirport": "ATK", + "codeIataCity": "ATK", + "codeIcaoAirport": "PATQ", + "codeIso2Country": "US", + "geonameId": "5879756", + "latitudeAirport": 70.5, + "longitudeAirport": -157.33333, + "nameAirport": "Atqasuk", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 411, + "codeIataAirport": "ATL", + "codeIataCity": "ATL", + "codeIcaoAirport": "KATL", + "codeIso2Country": "US", + "geonameId": "4180439", + "latitudeAirport": 33.640068, + "longitudeAirport": -84.44403, + "nameAirport": "Hartsfield-jackson Atlanta International", + "nameCountry": "United States", + "phone": "800-897-1910", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 412, + "codeIataAirport": "ATM", + "codeIataCity": "ATM", + "codeIcaoAirport": "SBHT", + "codeIso2Country": "BR", + "geonameId": "6300631", + "latitudeAirport": -3.2, + "longitudeAirport": -52.216667, + "nameAirport": "Altamira", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Santarem" + }, + { + "GMT": "10", + "airportId": 413, + "codeIataAirport": "ATN", + "codeIataCity": "ATN", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298755", + "latitudeAirport": -3.666667, + "longitudeAirport": 152.46666, + "nameAirport": "Namatanai", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 414, + "codeIataAirport": "ATO", + "codeIataCity": "ATO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.333332, + "longitudeAirport": -82.1, + "nameAirport": "Ohio University", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 415, + "codeIataAirport": "ATP", + "codeIataCity": "ATP", + "codeIcaoAirport": "AYAI", + "codeIso2Country": "PG", + "geonameId": "7730832", + "latitudeAirport": -3.166667, + "longitudeAirport": 142.28334, + "nameAirport": "Airstrip", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5.30", + "airportId": 416, + "codeIataAirport": "ATQ", + "codeIataCity": "ATQ", + "codeIcaoAirport": "VIAR", + "codeIso2Country": "IN", + "geonameId": "6301092", + "latitudeAirport": 31.706741, + "longitudeAirport": 74.8073, + "nameAirport": "Raja Sansi International Airport", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "0", + "airportId": 417, + "codeIataAirport": "ATR", + "codeIataCity": "ATR", + "codeIcaoAirport": "GQPA", + "codeIso2Country": "MR", + "geonameId": "6297242", + "latitudeAirport": 20.499443, + "longitudeAirport": -13.046389, + "nameAirport": "Mouakchott", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "-7", + "airportId": 418, + "codeIataAirport": "ATS", + "codeIataCity": "ATS", + "codeIcaoAirport": "KATS", + "codeIso2Country": "US", + "geonameId": "5455805", + "latitudeAirport": 32.84833, + "longitudeAirport": -104.46694, + "nameAirport": "Artesia", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "airportId": 419, + "codeIataAirport": "ATT", + "codeIataCity": "ATT", + "codeIcaoAirport": "KATT", + "codeIso2Country": "US", + "geonameId": "5879750", + "latitudeAirport": 60.866943, + "longitudeAirport": -162.2675, + "nameAirport": "Atmautluak", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "1", + "airportId": 420, + "codeIataAirport": "ATV", + "codeIataCity": "ATV", + "codeIcaoAirport": "", + "codeIso2Country": "TD", + "geonameId": "2436400", + "latitudeAirport": 13.242222, + "longitudeAirport": 18.3075, + "nameAirport": "Ati", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "-6", + "airportId": 421, + "codeIataAirport": "ATW", + "codeIataCity": "ATW", + "codeIcaoAirport": "KATW", + "codeIso2Country": "US", + "geonameId": "5266045", + "latitudeAirport": 44.26011, + "longitudeAirport": -88.50994, + "nameAirport": "Outagamie County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "6", + "airportId": 422, + "codeIataAirport": "ATX", + "codeIataCity": "ATX", + "codeIcaoAirport": "", + "codeIso2Country": "KZ", + "geonameId": "7730833", + "latitudeAirport": 51.88333, + "longitudeAirport": 68.4, + "nameAirport": "Atbasar", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-6", + "airportId": 423, + "codeIataAirport": "ATY", + "codeIataCity": "ATY", + "codeIcaoAirport": "KATY", + "codeIso2Country": "US", + "geonameId": "5232744", + "latitudeAirport": 44.90889, + "longitudeAirport": -97.15417, + "nameAirport": "Watertown", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 424, + "codeIataAirport": "ATZ", + "codeIataCity": "ATZ", + "codeIcaoAirport": "HEAT", + "codeIso2Country": "EG", + "geonameId": "6297290", + "latitudeAirport": 27.033333, + "longitudeAirport": 31.0, + "nameAirport": "Assiut", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-4", + "airportId": 425, + "codeIataAirport": "AUA", + "codeIataCity": "AUA", + "codeIcaoAirport": "TNCA", + "codeIso2Country": "AW", + "geonameId": "3577126", + "latitudeAirport": 12.502222, + "longitudeAirport": -70.013885, + "nameAirport": "Reina Beatrix", + "nameCountry": "Aruba", + "phone": "", + "timezone": "America/Aruba" + }, + { + "GMT": "-4", + "airportId": 426, + "codeIataAirport": "AUB", + "codeIataCity": "AUB", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "0", + "latitudeAirport": -5.766667, + "longitudeAirport": -63.35, + "nameAirport": "Itauba", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-5", + "airportId": 427, + "codeIataAirport": "AUC", + "codeIataCity": "AUC", + "codeIcaoAirport": "SKUC", + "codeIso2Country": "CO", + "geonameId": "6195164", + "latitudeAirport": 7.071667, + "longitudeAirport": -70.7425, + "nameAirport": "Arauca", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "airportId": 428, + "codeIataAirport": "AUD", + "codeIataCity": "AUD", + "codeIcaoAirport": "YAGD", + "codeIso2Country": "AU", + "geonameId": "7730834", + "latitudeAirport": -18.506945, + "longitudeAirport": 139.88167, + "nameAirport": "Augustus Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "airportId": 429, + "codeIataAirport": "AUE", + "codeIataCity": "AUE", + "codeIcaoAirport": "", + "codeIso2Country": "EG", + "geonameId": "0", + "latitudeAirport": 28.9, + "longitudeAirport": 33.183334, + "nameAirport": "Abu Rudeis", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "1", + "airportId": 430, + "codeIataAirport": "AUF", + "codeIataCity": "AUF", + "codeIcaoAirport": "LFLA", + "codeIso2Country": "FR", + "geonameId": "6299397", + "latitudeAirport": 47.85, + "longitudeAirport": 3.5, + "nameAirport": "Auxerre Branches", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 431, + "codeIataAirport": "AUG", + "codeIataCity": "AUG", + "codeIcaoAirport": "KAUG", + "codeIso2Country": "US", + "geonameId": "4956999", + "latitudeAirport": 44.318054, + "longitudeAirport": -69.79667, + "nameAirport": "Augusta", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "4", + "airportId": 432, + "codeIataAirport": "AUH", + "codeIataCity": "AUH", + "codeIcaoAirport": "OMAA", + "codeIso2Country": "AE", + "geonameId": "6300092", + "latitudeAirport": 24.426912, + "longitudeAirport": 54.645973, + "nameAirport": "Abu Dhabi International", + "nameCountry": "United Arab Emirates", + "phone": "+971 (0) 2 57", + "timezone": "Asia/Dubai" + }, + { + "GMT": "10", + "airportId": 433, + "codeIataAirport": "AUI", + "codeIataCity": "AUI", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260725", + "latitudeAirport": -1.458333, + "longitudeAirport": 143.075, + "nameAirport": "Aua Island", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 434, + "codeIataAirport": "AUJ", + "codeIataCity": "AUJ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2100933", + "latitudeAirport": -4.25, + "longitudeAirport": 142.85, + "nameAirport": "Ambunti", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 435, + "codeIataAirport": "AUK", + "codeIataCity": "AUK", + "codeIcaoAirport": "PAUK", + "codeIso2Country": "US", + "geonameId": "5879057", + "latitudeAirport": 62.689167, + "longitudeAirport": -164.61084, + "nameAirport": "Alakanuk", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "12", + "airportId": 436, + "codeIataAirport": "AUL", + "codeIataCity": "AUL", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 8.133333, + "longitudeAirport": 171.16667, + "nameAirport": "Aur Island", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-6", + "airportId": 437, + "codeIataAirport": "AUM", + "codeIataCity": "AUM", + "codeIcaoAirport": "KAUM", + "codeIso2Country": "US", + "geonameId": "5016894", + "latitudeAirport": 43.666668, + "longitudeAirport": -92.98333, + "nameAirport": "Austin", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 438, + "codeIataAirport": "AUN", + "codeIataCity": "AUN", + "codeIcaoAirport": "KAUN", + "codeIso2Country": "US", + "geonameId": "5325232", + "latitudeAirport": 38.9, + "longitudeAirport": -121.066666, + "nameAirport": "Auburn", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 439, + "codeIataAirport": "AUO", + "codeIataCity": "AUO", + "codeIcaoAirport": "KAUO", + "codeIso2Country": "US", + "geonameId": "4830825", + "latitudeAirport": 32.63333, + "longitudeAirport": -85.5, + "nameAirport": "Auburn-Opelika", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 440, + "codeIataAirport": "AUP", + "codeIataCity": "AUP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260975", + "latitudeAirport": -9.983333, + "longitudeAirport": 149.58333, + "nameAirport": "Agaun", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9:30", + "airportId": 441, + "codeIataAirport": "AUQ", + "codeIataCity": "AUQ", + "codeIcaoAirport": "NTMN", + "codeIso2Country": "PF", + "geonameId": "4020109", + "latitudeAirport": -9.769324, + "longitudeAirport": -139.00978, + "nameAirport": "Atuona", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Marquesas" + }, + { + "GMT": "1", + "airportId": 442, + "codeIataAirport": "AUR", + "codeIataCity": "AUR", + "codeIcaoAirport": "LFLW", + "codeIso2Country": "FR", + "geonameId": "6299407", + "latitudeAirport": 44.8975, + "longitudeAirport": 2.418056, + "nameAirport": "Aurillac", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "airportId": 443, + "codeIataAirport": "AUS", + "codeIataCity": "AUS", + "codeIcaoAirport": "KAUS", + "codeIso2Country": "US", + "geonameId": "4673601", + "latitudeAirport": 30.202545, + "longitudeAirport": -97.66706, + "nameAirport": "Austin-bergstrom International", + "nameCountry": "United States", + "phone": "512-530-2242", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 444, + "codeIataAirport": "AUT", + "codeIataCity": "AUT", + "codeIcaoAirport": "WPAT", + "codeIso2Country": "ID", + "geonameId": "7730835", + "latitudeAirport": -8.216667, + "longitudeAirport": 125.583336, + "nameAirport": "Atauro", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "10", + "airportId": 445, + "codeIataAirport": "AUU", + "codeIataCity": "AUU", + "codeIcaoAirport": "YAUR", + "codeIso2Country": "AU", + "geonameId": "7668683", + "latitudeAirport": -13.166667, + "longitudeAirport": 142.25, + "nameAirport": "Aurukun Mission", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 446, + "codeIataAirport": "AUV", + "codeIataCity": "AUV", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260726", + "latitudeAirport": -5.716667, + "longitudeAirport": 148.43333, + "nameAirport": "Aumo", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 447, + "codeIataAirport": "AUW", + "codeIataCity": "AUW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5278133", + "latitudeAirport": 44.923332, + "longitudeAirport": -89.623055, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 448, + "codeIataAirport": "AUX", + "codeIataCity": "AUX", + "codeIcaoAirport": "SWGN", + "codeIso2Country": "BR", + "geonameId": "7668482", + "latitudeAirport": -7.2, + "longitudeAirport": -48.2, + "nameAirport": "Araguaina", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Araguaina" + }, + { + "GMT": "11", + "airportId": 449, + "codeIataAirport": "AUY", + "codeIataCity": "AUY", + "codeIcaoAirport": "NVVA", + "codeIso2Country": "VU", + "geonameId": "7668377", + "latitudeAirport": -20.333332, + "longitudeAirport": 169.66667, + "nameAirport": "Aneityum", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-6", + "airportId": 450, + "codeIataAirport": "AUZ", + "codeIataCity": "AUZ", + "codeIcaoAirport": "KARR", + "codeIso2Country": "US", + "geonameId": "4883831", + "latitudeAirport": 41.75, + "longitudeAirport": -88.316666, + "nameAirport": "Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 451, + "codeIataAirport": "AVA", + "codeIataCity": "AVA", + "codeIcaoAirport": "ZUAS", + "codeIso2Country": "CN", + "geonameId": "8260698", + "latitudeAirport": 26.257221, + "longitudeAirport": 105.87278, + "nameAirport": "An Shun/Huang Guo Shu", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 452, + "codeIataAirport": "AVB", + "codeIataCity": "AVB", + "codeIcaoAirport": "LIPA", + "codeIso2Country": "IT", + "geonameId": "3217059", + "latitudeAirport": 46.033333, + "longitudeAirport": 12.6, + "nameAirport": "Aviano", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "9.30", + "airportId": 453, + "codeIataAirport": "AVG", + "codeIataCity": "AVG", + "codeIcaoAirport": "YAUV", + "codeIso2Country": "AU", + "geonameId": "7730836", + "latitudeAirport": -15.65, + "longitudeAirport": 130.01666, + "nameAirport": "Auvergne", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-5", + "airportId": 454, + "codeIataAirport": "AVI", + "codeIataCity": "AVI", + "codeIcaoAirport": "MUCA", + "codeIso2Country": "CU", + "geonameId": "6299916", + "latitudeAirport": 22.025, + "longitudeAirport": -78.79139, + "nameAirport": "Maximo Gomez", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "8", + "airportId": 455, + "codeIataAirport": "AVK", + "codeIataCity": "AVK", + "codeIcaoAirport": "ZMAH", + "codeIso2Country": "MN", + "geonameId": "7730290", + "latitudeAirport": 46.266666, + "longitudeAirport": 102.78333, + "nameAirport": "Arvaikheer", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "-5", + "airportId": 456, + "codeIataAirport": "AVL", + "codeIataCity": "AVL", + "codeIcaoAirport": "KAVL", + "codeIso2Country": "US", + "geonameId": "4453066", + "latitudeAirport": 35.43508, + "longitudeAirport": -82.537315, + "nameAirport": "Asheville Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 457, + "codeIataAirport": "AVN", + "codeIataCity": "AVN", + "codeIcaoAirport": "LFMV", + "codeIso2Country": "FR", + "geonameId": "6694625", + "latitudeAirport": 43.9, + "longitudeAirport": 4.9, + "nameAirport": "Avignon-Caumont", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 458, + "codeIataAirport": "AVO", + "codeIataCity": "AVO", + "codeIcaoAirport": "KAVO", + "codeIso2Country": "US", + "geonameId": "4146444", + "latitudeAirport": 27.6, + "longitudeAirport": -81.51667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 459, + "codeIataAirport": "AVP", + "codeIataCity": "AVP", + "codeIcaoAirport": "KAVP", + "codeIso2Country": "US", + "geonameId": "5219496", + "latitudeAirport": 41.336697, + "longitudeAirport": -75.730644, + "nameAirport": "Wilkes-Barre/Scranton International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "11", + "airportId": 460, + "codeIataAirport": "AVU", + "codeIataCity": "AVU", + "codeIcaoAirport": "", + "codeIso2Country": "SB", + "geonameId": "2109675", + "latitudeAirport": -9.833333, + "longitudeAirport": 160.38333, + "nameAirport": "Avu Avu", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "10", + "airportId": 461, + "codeIataAirport": "AVV", + "codeIataCity": "MEL", + "codeIcaoAirport": "YMAV", + "codeIso2Country": "AU", + "geonameId": "6301308", + "latitudeAirport": -38.02637, + "longitudeAirport": 144.47308, + "nameAirport": "Avalon", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-7", + "airportId": 462, + "codeIataAirport": "AVW", + "codeIataCity": "TUS", + "codeIcaoAirport": "KAVQ", + "codeIso2Country": "US", + "geonameId": "5552752", + "latitudeAirport": 32.416668, + "longitudeAirport": -111.21667, + "nameAirport": "Avra Valley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "-8", + "airportId": 463, + "codeIataAirport": "AVX", + "codeIataCity": "AVX", + "codeIcaoAirport": "KAVX", + "codeIso2Country": "US", + "geonameId": "5334969", + "latitudeAirport": 33.341667, + "longitudeAirport": -118.31528, + "nameAirport": "Avalon Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "airportId": 464, + "codeIataAirport": "AWA", + "codeIataCity": "AWA", + "codeIcaoAirport": "HALA", + "codeIso2Country": "ET", + "geonameId": "6297275", + "latitudeAirport": 7.061111, + "longitudeAirport": 38.4875, + "nameAirport": "Awassa", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "10", + "airportId": 465, + "codeIataAirport": "AWB", + "codeIataCity": "AWB", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7730837", + "latitudeAirport": -8.016667, + "longitudeAirport": 142.75, + "nameAirport": "Awaba", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "11", + "airportId": 466, + "codeIataAirport": "AWD", + "codeIataCity": "AWD", + "codeIcaoAirport": "NVVB", + "codeIso2Country": "VU", + "geonameId": "7668378", + "latitudeAirport": -19.25, + "longitudeAirport": 169.5, + "nameAirport": "Aniwa", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "1", + "airportId": 467, + "codeIataAirport": "AWE", + "codeIataCity": "AWE", + "codeIcaoAirport": "", + "codeIso2Country": "GA", + "geonameId": "8298777", + "latitudeAirport": -0.75, + "longitudeAirport": 9.45, + "nameAirport": "Alowe", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "12", + "airportId": 468, + "codeIataAirport": "AWK", + "codeIataCity": "AWK", + "codeIcaoAirport": "PWAK", + "codeIso2Country": "UM", + "geonameId": "4041686", + "latitudeAirport": 19.283333, + "longitudeAirport": 166.63333, + "nameAirport": "Wake Island", + "nameCountry": "United States Minor Outlying Islands", + "phone": "", + "timezone": "Pacific/Wake" + }, + { + "GMT": "-6", + "airportId": 469, + "codeIataAirport": "AWM", + "codeIataCity": "AWM", + "codeIcaoAirport": "KAWM", + "codeIso2Country": "US", + "geonameId": "4135867", + "latitudeAirport": 35.13333, + "longitudeAirport": -90.183334, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9.30", + "airportId": 470, + "codeIataAirport": "AWN", + "codeIataCity": "AWN", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8299001", + "latitudeAirport": -26.25, + "longitudeAirport": 138.66667, + "nameAirport": "Alton Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "9.30", + "airportId": 471, + "codeIataAirport": "AWP", + "codeIataCity": "AWP", + "codeIcaoAirport": "YAUS", + "codeIso2Country": "AU", + "geonameId": "7730838", + "latitudeAirport": -20.5, + "longitudeAirport": 137.75, + "nameAirport": "Austral Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "3.30", + "airportId": 472, + "codeIataAirport": "AWZ", + "codeIataCity": "AWZ", + "codeIcaoAirport": "OIAW", + "codeIso2Country": "IR", + "geonameId": "6300040", + "latitudeAirport": 31.34292, + "longitudeAirport": 48.74668, + "nameAirport": "Ahwaz", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-4", + "airportId": 473, + "codeIataAirport": "AXA", + "codeIataCity": "AXA", + "codeIcaoAirport": "TQPF", + "codeIso2Country": "AI", + "geonameId": "3573371", + "latitudeAirport": 18.216667, + "longitudeAirport": -63.066666, + "nameAirport": "Wallblake", + "nameCountry": "Anguilla", + "phone": "", + "timezone": "America/Anguilla" + }, + { + "GMT": "-5", + "airportId": 474, + "codeIataAirport": "AXB", + "codeIataCity": "AXB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5106950", + "latitudeAirport": 44.2525, + "longitudeAirport": -75.90139, + "nameAirport": "Alexandria Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 475, + "codeIataAirport": "AXC", + "codeIataCity": "AXC", + "codeIcaoAirport": "YAMC", + "codeIso2Country": "AU", + "geonameId": "7730839", + "latitudeAirport": -22.958055, + "longitudeAirport": 145.2425, + "nameAirport": "Aramac", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "airportId": 476, + "codeIataAirport": "AXD", + "codeIataCity": "AXD", + "codeIcaoAirport": "LGAL", + "codeIso2Country": "GR", + "geonameId": "6299483", + "latitudeAirport": 40.856785, + "longitudeAirport": 25.944893, + "nameAirport": "Dimokritos", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "-3", + "airportId": 477, + "codeIataAirport": "AXE", + "codeIataCity": "AXE", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8298996", + "latitudeAirport": -26.883333, + "longitudeAirport": -52.38333, + "nameAirport": "Xanxere", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "airportId": 478, + "codeIataAirport": "AXG", + "codeIataCity": "AXG", + "codeIcaoAirport": "KAXA", + "codeIso2Country": "US", + "geonameId": "4846611", + "latitudeAirport": 43.066666, + "longitudeAirport": -94.23333, + "nameAirport": "Algona", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 479, + "codeIataAirport": "AXK", + "codeIataCity": "AXK", + "codeIcaoAirport": "ODAT", + "codeIso2Country": "YE", + "geonameId": "6300136", + "latitudeAirport": 13.866667, + "longitudeAirport": 46.3, + "nameAirport": "Ataq", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "9.30", + "airportId": 480, + "codeIataAirport": "AXL", + "codeIataCity": "AXL", + "codeIcaoAirport": "YALX", + "codeIso2Country": "AU", + "geonameId": "7730840", + "latitudeAirport": -19.083332, + "longitudeAirport": 136.66667, + "nameAirport": "Alexandria", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-5", + "airportId": 481, + "codeIataAirport": "AXM", + "codeIataCity": "AXM", + "codeIcaoAirport": "SKAR", + "codeIso2Country": "CO", + "geonameId": "6300733", + "latitudeAirport": 4.452869, + "longitudeAirport": -75.76804, + "nameAirport": "El Eden", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 482, + "codeIataAirport": "AXN", + "codeIataCity": "AXN", + "codeIcaoAirport": "KAXN", + "codeIso2Country": "US", + "geonameId": "5020871", + "latitudeAirport": 45.86722, + "longitudeAirport": -95.394165, + "nameAirport": "Alexandria", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 483, + "codeIataAirport": "AXP", + "codeIataCity": "AXP", + "codeIcaoAirport": "MYAP", + "codeIso2Country": "BS", + "geonameId": "7668362", + "latitudeAirport": 22.45, + "longitudeAirport": -73.96667, + "nameAirport": "Springpoint Airport", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-10", + "airportId": 484, + "codeIataAirport": "AXR", + "codeIataCity": "AXR", + "codeIcaoAirport": "NTGU", + "codeIso2Country": "PF", + "geonameId": "7730127", + "latitudeAirport": -15.25, + "longitudeAirport": -146.75, + "nameAirport": "Arutua", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-6", + "airportId": 485, + "codeIataAirport": "AXS", + "codeIataCity": "LTS", + "codeIcaoAirport": "KAXS", + "codeIso2Country": "US", + "geonameId": "4529300", + "latitudeAirport": 34.696667, + "longitudeAirport": -99.33806, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "airportId": 486, + "codeIataAirport": "AXT", + "codeIataCity": "AXT", + "codeIcaoAirport": "RJSK", + "codeIso2Country": "JP", + "geonameId": "6300394", + "latitudeAirport": 39.61177, + "longitudeAirport": 140.22015, + "nameAirport": "Akita", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "3", + "airportId": 487, + "codeIataAirport": "AXU", + "codeIataCity": "AXU", + "codeIcaoAirport": "HAAX", + "codeIso2Country": "ET", + "geonameId": "6297261", + "latitudeAirport": 14.120833, + "longitudeAirport": 38.716667, + "nameAirport": "Axum", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-5", + "airportId": 488, + "codeIataAirport": "AXV", + "codeIataCity": "AXV", + "codeIcaoAirport": "KAXV", + "codeIso2Country": "US", + "geonameId": "5175670", + "latitudeAirport": 40.566666, + "longitudeAirport": -84.2, + "nameAirport": "Neil Armstrong", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 489, + "codeIataAirport": "AXX", + "codeIataCity": "AXX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5455214", + "latitudeAirport": 36.416668, + "longitudeAirport": -105.28333, + "nameAirport": "Angel Fire", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 490, + "codeIataAirport": "AYA", + "codeIataCity": "AYA", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "3689381", + "latitudeAirport": 8.316667, + "longitudeAirport": -75.15, + "nameAirport": "Ayapel", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 491, + "codeIataAirport": "AYC", + "codeIataCity": "AYC", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8299174", + "latitudeAirport": 8.6, + "longitudeAirport": -73.61667, + "nameAirport": "Ayacucho", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "9.30", + "airportId": 492, + "codeIataAirport": "AYD", + "codeIataCity": "AYD", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7730841", + "latitudeAirport": -19.3, + "longitudeAirport": 135.95, + "nameAirport": "Alroy Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-5", + "airportId": 493, + "codeIataAirport": "AYG", + "codeIataCity": "AYG", + "codeIcaoAirport": "SKYA", + "codeIso2Country": "CO", + "geonameId": "7730842", + "latitudeAirport": 1.533333, + "longitudeAirport": -73.933334, + "nameAirport": "Yaguara", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 494, + "codeIataAirport": "AYI", + "codeIataCity": "AYI", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "3665757", + "latitudeAirport": -0.333333, + "longitudeAirport": -72.333336, + "nameAirport": "Yari", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "6", + "airportId": 495, + "codeIataAirport": "AYK", + "codeIataCity": "AYK", + "codeIcaoAirport": "UAUR", + "codeIso2Country": "KZ", + "geonameId": "7668495", + "latitudeAirport": 50.316666, + "longitudeAirport": 66.96667, + "nameAirport": "Arkalyk", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "9.30", + "airportId": 496, + "codeIataAirport": "AYL", + "codeIataCity": "AYL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7730843", + "latitudeAirport": -18.033333, + "longitudeAirport": 135.53334, + "nameAirport": "Anthony Lagoon", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "8", + "airportId": 497, + "codeIataAirport": "AYN", + "codeIataCity": "AYN", + "codeIcaoAirport": "ZHAY", + "codeIso2Country": "CN", + "geonameId": "7730844", + "latitudeAirport": 36.1, + "longitudeAirport": 114.35, + "nameAirport": "Anyang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-4", + "airportId": 498, + "codeIataAirport": "AYO", + "codeIataCity": "AYO", + "codeIcaoAirport": "", + "codeIso2Country": "PY", + "geonameId": "3439378", + "latitudeAirport": -27.366667, + "longitudeAirport": -56.85, + "nameAirport": "Ayolas", + "nameCountry": "Paraguay", + "phone": "", + "timezone": "America/Asuncion" + }, + { + "GMT": "-5", + "airportId": 499, + "codeIataAirport": "AYP", + "codeIataCity": "AYP", + "codeIcaoAirport": "SPHO", + "codeIso2Country": "PE", + "geonameId": "6300803", + "latitudeAirport": -13.197222, + "longitudeAirport": -74.24722, + "nameAirport": "Yanamilla", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "9.30", + "airportId": 500, + "codeIataAirport": "AYQ", + "codeIataCity": "AYQ", + "codeIcaoAirport": "YAYE", + "codeIso2Country": "AU", + "geonameId": "6301288", + "latitudeAirport": -25.190878, + "longitudeAirport": 130.97658, + "nameAirport": "Connellan", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "10", + "airportId": 501, + "codeIataAirport": "AYR", + "codeIataCity": "AYR", + "codeIcaoAirport": "YAYR", + "codeIso2Country": "AU", + "geonameId": "7730845", + "latitudeAirport": -19.596666, + "longitudeAirport": 147.32445, + "nameAirport": "Ayr", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 502, + "codeIataAirport": "AYS", + "codeIataCity": "AYS", + "codeIcaoAirport": "KAYS", + "codeIso2Country": "US", + "geonameId": "4229774", + "latitudeAirport": 31.248611, + "longitudeAirport": -82.39667, + "nameAirport": "Ware County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 503, + "codeIataAirport": "AYT", + "codeIataCity": "AYT", + "codeIcaoAirport": "LTAI", + "codeIso2Country": "TR", + "geonameId": "6299729", + "latitudeAirport": 36.89928, + "longitudeAirport": 30.80135, + "nameAirport": "Antalya", + "nameCountry": "Turkey", + "phone": "+90 (242) 444", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "10", + "airportId": 504, + "codeIataAirport": "AYU", + "codeIataCity": "AYU", + "codeIcaoAirport": "AYAY", + "codeIso2Country": "PG", + "geonameId": "8298987", + "latitudeAirport": -6.333333, + "longitudeAirport": 145.9, + "nameAirport": "Aiyura", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "airportId": 505, + "codeIataAirport": "AYW", + "codeIataCity": "AYW", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7730846", + "latitudeAirport": -1.2, + "longitudeAirport": 132.5, + "nameAirport": "Ayawasi", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "5.30", + "airportId": 506, + "codeIataAirport": "AYY", + "codeIataCity": "AYY", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "8298885", + "latitudeAirport": 6.855, + "longitudeAirport": 81.8311, + "nameAirport": "Arugam Bay SPB", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "-7", + "airportId": 507, + "codeIataAirport": "AZA", + "codeIataCity": "PHX", + "codeIcaoAirport": "KIWA", + "codeIso2Country": "US", + "geonameId": "5321107", + "latitudeAirport": 33.307777, + "longitudeAirport": -111.655556, + "nameAirport": "Williams Gateway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "10", + "airportId": 508, + "codeIataAirport": "AZB", + "codeIataCity": "AZB", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260720", + "latitudeAirport": -10.15, + "longitudeAirport": 148.81667, + "nameAirport": "Amazon Bay", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3.30", + "airportId": 509, + "codeIataAirport": "AZD", + "codeIataCity": "AZD", + "codeIcaoAirport": "OIYY", + "codeIso2Country": "IR", + "geonameId": "6300082", + "latitudeAirport": 31.903603, + "longitudeAirport": 54.283264, + "nameAirport": "Yazd", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-6", + "airportId": 510, + "codeIataAirport": "AZG", + "codeIataCity": "AZG", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "0", + "latitudeAirport": 19.068056, + "longitudeAirport": -102.352776, + "nameAirport": "Apatzingan", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "4", + "airportId": 511, + "codeIataAirport": "AZI", + "codeIataCity": "AUH", + "codeIcaoAirport": "OMAD", + "codeIso2Country": "AE", + "geonameId": "6300094", + "latitudeAirport": 24.419167, + "longitudeAirport": 54.451668, + "nameAirport": "Bateen", + "nameCountry": "United Arab Emirates", + "phone": "", + "timezone": "Asia/Dubai" + }, + { + "GMT": "-4", + "airportId": 512, + "codeIataAirport": "AZL", + "codeIataCity": "AZL", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8260711", + "latitudeAirport": -13.47, + "longitudeAirport": -58.85, + "nameAirport": "Fazenda Tucunare", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "5", + "airportId": 513, + "codeIataAirport": "AZN", + "codeIataCity": "AZN", + "codeIcaoAirport": "UTKA", + "codeIso2Country": "UZ", + "geonameId": "7668544", + "latitudeAirport": 40.733334, + "longitudeAirport": 72.3, + "nameAirport": "Andizhan", + "nameCountry": "Uzbekistan", + "phone": "", + "timezone": "Asia/Tashkent" + }, + { + "GMT": "-5", + "airportId": 514, + "codeIataAirport": "AZO", + "codeIataCity": "AZO", + "codeIcaoAirport": "KAZO", + "codeIso2Country": "US", + "geonameId": "4997799", + "latitudeAirport": 42.239964, + "longitudeAirport": -85.55656, + "nameAirport": "Kalamazoo/Battle Creek International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-6", + "airportId": 515, + "codeIataAirport": "AZP", + "codeIataCity": "MEX", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "0", + "latitudeAirport": 19.416668, + "longitudeAirport": -99.1, + "nameAirport": "Atizapan", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "1", + "airportId": 516, + "codeIataAirport": "AZR", + "codeIataCity": "AZR", + "codeIcaoAirport": "DAUA", + "codeIso2Country": "DZ", + "geonameId": "6296386", + "latitudeAirport": 27.883333, + "longitudeAirport": -0.283333, + "nameAirport": "Adrar", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-4", + "airportId": 517, + "codeIataAirport": "AZS", + "codeIataCity": "AZS", + "codeIcaoAirport": "MDZY", + "codeIso2Country": "DO", + "geonameId": "7175127", + "latitudeAirport": 19.270555, + "longitudeAirport": -69.736946, + "nameAirport": "Samaná El Catey International", + "nameCountry": "Dominican Republic", + "phone": "", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "-5", + "airportId": 518, + "codeIataAirport": "AZT", + "codeIataCity": "AZT", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "3665587", + "latitudeAirport": 6.866667, + "longitudeAirport": -73.25, + "nameAirport": "Zapatoca", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "airportId": 519, + "codeIataAirport": "AZZ", + "codeIataCity": "AZZ", + "codeIcaoAirport": "FNAM", + "codeIso2Country": "AO", + "geonameId": "7730516", + "latitudeAirport": -7.883333, + "longitudeAirport": 13.15, + "nameAirport": "Ambriz", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "10", + "airportId": 520, + "codeIataAirport": "BAA", + "codeIataCity": "BAA", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298852", + "latitudeAirport": -5.316667, + "longitudeAirport": 151.03334, + "nameAirport": "Bialla", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "airportId": 521, + "codeIataAirport": "BAB", + "codeIataCity": "MYV", + "codeIcaoAirport": "KBAB", + "codeIso2Country": "US", + "geonameId": "5355145", + "latitudeAirport": 39.15, + "longitudeAirport": -121.583336, + "nameAirport": "Beale AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 522, + "codeIataAirport": "BAC", + "codeIataCity": "BAC", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8299250", + "latitudeAirport": 4.583333, + "longitudeAirport": -72.96667, + "nameAirport": "Barranca De Upia", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 523, + "codeIataAirport": "BAD", + "codeIataCity": "SHV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.5, + "longitudeAirport": -93.666664, + "nameAirport": "Barksdale AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 524, + "codeIataAirport": "BAE", + "codeIataCity": "BAE", + "codeIcaoAirport": "LFMR", + "codeIso2Country": "FR", + "geonameId": "6694778", + "latitudeAirport": 44.38333, + "longitudeAirport": 6.666667, + "nameAirport": "Barcelonnette", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 525, + "codeIataAirport": "BAF", + "codeIataCity": "BAF", + "codeIcaoAirport": "KBAF", + "codeIso2Country": "US", + "geonameId": "4929766", + "latitudeAirport": 42.13333, + "longitudeAirport": -72.75, + "nameAirport": "Barnes", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 526, + "codeIataAirport": "BAG", + "codeIataCity": "BAG", + "codeIcaoAirport": "RPUB", + "codeIso2Country": "PH", + "geonameId": "6300480", + "latitudeAirport": 16.376667, + "longitudeAirport": 120.617775, + "nameAirport": "Loakan", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "3", + "airportId": 527, + "codeIataAirport": "BAH", + "codeIataCity": "BAH", + "codeIcaoAirport": "OBBI", + "codeIso2Country": "BH", + "geonameId": "290288", + "latitudeAirport": 26.26918, + "longitudeAirport": 50.62605, + "nameAirport": "Bahrain International", + "nameCountry": "Bahrain", + "phone": "17 325-555", + "timezone": "Asia/Bahrain" + }, + { + "GMT": "-6", + "airportId": 528, + "codeIataAirport": "BAI", + "codeIataCity": "BAI", + "codeIcaoAirport": "MRBA", + "codeIso2Country": "CR", + "geonameId": "7730109", + "latitudeAirport": 9.166667, + "longitudeAirport": -83.333336, + "nameAirport": "Buenos Aires", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "10", + "airportId": 529, + "codeIataAirport": "BAJ", + "codeIataCity": "BAJ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260727", + "latitudeAirport": -4.833333, + "longitudeAirport": 149.13333, + "nameAirport": "Bali", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 530, + "codeIataAirport": "BAL", + "codeIataCity": "BAL", + "codeIcaoAirport": "LTCJ", + "codeIso2Country": "TR", + "geonameId": "6299768", + "latitudeAirport": 37.916668, + "longitudeAirport": 41.083332, + "nameAirport": "Batman", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-8", + "airportId": 531, + "codeIataAirport": "BAM", + "codeIataCity": "BAM", + "codeIcaoAirport": "BAMB", + "codeIso2Country": "US", + "geonameId": "5705566", + "latitudeAirport": 40.63333, + "longitudeAirport": -116.933334, + "nameAirport": "Lander County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "airportId": 532, + "codeIataAirport": "BAN", + "codeIataCity": "BAN", + "codeIcaoAirport": "FZVR", + "codeIso2Country": "CD", + "geonameId": "7730574", + "latitudeAirport": -4.313333, + "longitudeAirport": 20.428057, + "nameAirport": "Basongo", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "7", + "airportId": 533, + "codeIataAirport": "BAO", + "codeIataCity": "BAO", + "codeIcaoAirport": "", + "codeIso2Country": "TH", + "geonameId": "0", + "latitudeAirport": 17.385, + "longitudeAirport": 102.79278, + "nameAirport": "Udorn", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-5", + "airportId": 534, + "codeIataAirport": "BAQ", + "codeIataCity": "BAQ", + "codeIcaoAirport": "SKBQ", + "codeIso2Country": "CO", + "geonameId": "3811824", + "latitudeAirport": 10.886398, + "longitudeAirport": -74.77618, + "nameAirport": "E Cortissoz", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-9", + "airportId": 535, + "codeIataAirport": "BAR", + "codeIataCity": "BAR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 55.333332, + "longitudeAirport": -133.6, + "nameAirport": "Baker AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "11", + "airportId": 536, + "codeIataAirport": "BAS", + "codeIataCity": "BAS", + "codeIcaoAirport": "AGGE", + "codeIso2Country": "SB", + "geonameId": "0", + "latitudeAirport": -6.983333, + "longitudeAirport": 155.88333, + "nameAirport": "Balalae", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-3", + "airportId": 537, + "codeIataAirport": "BAT", + "codeIataCity": "BAT", + "codeIcaoAirport": "SNBA", + "codeIso2Country": "BR", + "geonameId": "7730152", + "latitudeAirport": -20.55, + "longitudeAirport": -48.55, + "nameAirport": "Airport Chafei Amsei", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 538, + "codeIataAirport": "BAU", + "codeIataCity": "BRI", + "codeIcaoAirport": "SBBU", + "codeIso2Country": "IT", + "geonameId": "6300606", + "latitudeAirport": -22.343056, + "longitudeAirport": -49.0525, + "nameAirport": "Bauru", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "8", + "airportId": 539, + "codeIataAirport": "BAV", + "codeIataCity": "BAV", + "codeIcaoAirport": "ZBOW", + "codeIso2Country": "CN", + "geonameId": "7668790", + "latitudeAirport": 40.563328, + "longitudeAirport": 110.0009, + "nameAirport": "Baotou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 540, + "codeIataAirport": "BAW", + "codeIataCity": "BAW", + "codeIcaoAirport": "", + "codeIso2Country": "GA", + "geonameId": "8298779", + "latitudeAirport": -0.666667, + "longitudeAirport": 146.35, + "nameAirport": "Biawonque", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "6", + "airportId": 541, + "codeIataAirport": "BAX", + "codeIataCity": "BAX", + "codeIcaoAirport": "UNBB", + "codeIso2Country": "RU", + "geonameId": "6300983", + "latitudeAirport": 53.361088, + "longitudeAirport": 83.547646, + "nameAirport": "Barnaul", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Omsk" + }, + { + "GMT": "2", + "airportId": 542, + "codeIataAirport": "BAY", + "codeIataCity": "BAY", + "codeIcaoAirport": "LRBM", + "codeIso2Country": "RO", + "geonameId": "6299700", + "latitudeAirport": 47.65, + "longitudeAirport": 23.466667, + "nameAirport": "Baia Mare", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "-4", + "airportId": 543, + "codeIataAirport": "BAZ", + "codeIataCity": "BAZ", + "codeIcaoAirport": "SWBC", + "codeIso2Country": "BR", + "geonameId": "0", + "latitudeAirport": -0.966944, + "longitudeAirport": -62.933613, + "nameAirport": "Barbelos", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "-4", + "airportId": 544, + "codeIataAirport": "BBA", + "codeIataCity": "BBA", + "codeIcaoAirport": "SCBA", + "codeIso2Country": "CL", + "geonameId": "6300690", + "latitudeAirport": -45.916668, + "longitudeAirport": -71.695, + "nameAirport": "Teniente Vidal", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-6", + "airportId": 545, + "codeIataAirport": "BBB", + "codeIataCity": "BBB", + "codeIcaoAirport": "KBBB", + "codeIso2Country": "US", + "geonameId": "5017898", + "latitudeAirport": 45.316666, + "longitudeAirport": -95.6, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 546, + "codeIataAirport": "BBC", + "codeIataCity": "BBC", + "codeIcaoAirport": "KBYY", + "codeIso2Country": "US", + "geonameId": "4672665", + "latitudeAirport": 28.983334, + "longitudeAirport": -95.96667, + "nameAirport": "Bay City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 547, + "codeIataAirport": "BBD", + "codeIataCity": "BBD", + "codeIcaoAirport": "KBBD", + "codeIso2Country": "US", + "geonameId": "4684668", + "latitudeAirport": 31.133333, + "longitudeAirport": -99.333336, + "nameAirport": "Curtis Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 548, + "codeIataAirport": "BBF", + "codeIataCity": "BBF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.5, + "longitudeAirport": -71.183334, + "nameAirport": "Burlington", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "12", + "airportId": 549, + "codeIataAirport": "BBG", + "codeIataCity": "BBG", + "codeIcaoAirport": "NGTU", + "codeIso2Country": "KI", + "geonameId": "6299956", + "latitudeAirport": 3.166667, + "longitudeAirport": 172.75, + "nameAirport": "Butaritari", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "1", + "airportId": 550, + "codeIataAirport": "BBH", + "codeIataCity": "BBH", + "codeIcaoAirport": "EDBH", + "codeIso2Country": "DE", + "geonameId": "3209284", + "latitudeAirport": 54.33972, + "longitudeAirport": 12.711667, + "nameAirport": "Barth", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "5.30", + "airportId": 551, + "codeIataAirport": "BBI", + "codeIataCity": "BBI", + "codeIcaoAirport": "VEBS", + "codeIso2Country": "IN", + "geonameId": "6301068", + "latitudeAirport": 20.252853, + "longitudeAirport": 85.81738, + "nameAirport": "Bhubaneswar", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "airportId": 552, + "codeIataAirport": "BBJ", + "codeIataCity": "BBJ", + "codeIcaoAirport": "EDAB", + "codeIso2Country": "DE", + "geonameId": "3208843", + "latitudeAirport": 49.966667, + "longitudeAirport": 6.516667, + "nameAirport": "Bitburg Air Base", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "2", + "airportId": 553, + "codeIataAirport": "BBK", + "codeIataCity": "BBK", + "codeIcaoAirport": "FBKE", + "codeIso2Country": "BW", + "geonameId": "6296946", + "latitudeAirport": -17.816668, + "longitudeAirport": 25.15, + "nameAirport": "Kasane", + "nameCountry": "Botswana", + "phone": "", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "7", + "airportId": 554, + "codeIataAirport": "BBM", + "codeIataCity": "BBM", + "codeIcaoAirport": "VDBG", + "codeIso2Country": "KH", + "geonameId": "6453421", + "latitudeAirport": 13.116667, + "longitudeAirport": 103.2, + "nameAirport": "Battambang", + "nameCountry": "Cambodia", + "phone": "", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "8", + "airportId": 555, + "codeIataAirport": "BBN", + "codeIataCity": "BBN", + "codeIcaoAirport": "WBGZ", + "codeIso2Country": "MY", + "geonameId": "7730234", + "latitudeAirport": 3.683333, + "longitudeAirport": 115.46667, + "nameAirport": "Bario", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "3", + "airportId": 556, + "codeIataAirport": "BBO", + "codeIataCity": "BBO", + "codeIcaoAirport": "HCMI", + "codeIso2Country": "SO", + "geonameId": "6297285", + "latitudeAirport": 10.419444, + "longitudeAirport": 45.00639, + "nameAirport": "Berbera", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "0", + "airportId": 557, + "codeIataAirport": "BBP", + "codeIataCity": "BBP", + "codeIcaoAirport": "EGHJ", + "codeIso2Country": "GB", + "geonameId": "7668206", + "latitudeAirport": 50.683334, + "longitudeAirport": -1.083333, + "nameAirport": "Bembridge", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-4", + "airportId": 558, + "codeIataAirport": "BBQ", + "codeIataCity": "BBQ", + "codeIcaoAirport": "", + "codeIso2Country": "AG", + "geonameId": "0", + "latitudeAirport": 17.555555, + "longitudeAirport": -61.765, + "nameAirport": "Barbuda", + "nameCountry": "", + "phone": "", + "timezone": "America/Antigua" + }, + { + "GMT": "-4", + "airportId": 559, + "codeIataAirport": "BBR", + "codeIataCity": "BBR", + "codeIcaoAirport": "", + "codeIso2Country": "GP", + "geonameId": "0", + "latitudeAirport": 16.01639, + "longitudeAirport": -61.739445, + "nameAirport": "Baillif", + "nameCountry": "Guadeloupe", + "phone": "", + "timezone": "America/Guadeloupe" + }, + { + "GMT": "0", + "airportId": 560, + "codeIataAirport": "BBS", + "codeIataCity": "BBS", + "codeIcaoAirport": "EGLK", + "codeIso2Country": "GB", + "geonameId": "7668210", + "latitudeAirport": 51.333332, + "longitudeAirport": -0.85, + "nameAirport": "Blackbushe", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 561, + "codeIataAirport": "BBT", + "codeIataCity": "BBT", + "codeIcaoAirport": "FEFT", + "codeIso2Country": "CF", + "geonameId": "6296980", + "latitudeAirport": 4.219167, + "longitudeAirport": 15.788056, + "nameAirport": "Berberati", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "2", + "airportId": 562, + "codeIataAirport": "BBU", + "codeIataCity": "BUH", + "codeIcaoAirport": "LRBS", + "codeIso2Country": "RO", + "geonameId": "6299701", + "latitudeAirport": 44.495934, + "longitudeAirport": 26.080996, + "nameAirport": "Baneasa", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "0", + "airportId": 563, + "codeIataAirport": "BBV", + "codeIataCity": "BBV", + "codeIcaoAirport": "DIGN", + "codeIso2Country": "CI", + "geonameId": "8298909", + "latitudeAirport": 4.666667, + "longitudeAirport": -6.95, + "nameAirport": "Hkg", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "-6", + "airportId": 564, + "codeIataAirport": "BBW", + "codeIataCity": "BBW", + "codeIcaoAirport": "KBBW", + "codeIso2Country": "US", + "geonameId": "5064648", + "latitudeAirport": 41.4, + "longitudeAirport": -99.63333, + "nameAirport": "Broken Bow", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 565, + "codeIataAirport": "BBX", + "codeIataCity": "BBX", + "codeIcaoAirport": "KLOM", + "codeIso2Country": "US", + "geonameId": "5219791", + "latitudeAirport": 40.136665, + "longitudeAirport": -75.2675, + "nameAirport": "Wings Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 566, + "codeIataAirport": "BBY", + "codeIataCity": "BBY", + "codeIcaoAirport": "FEFM", + "codeIso2Country": "CF", + "geonameId": "6296975", + "latitudeAirport": 5.845833, + "longitudeAirport": 20.649721, + "nameAirport": "Bambari", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "2", + "airportId": 567, + "codeIataAirport": "BBZ", + "codeIataCity": "BBZ", + "codeIcaoAirport": "FLZB", + "codeIso2Country": "ZM", + "geonameId": "6297030", + "latitudeAirport": -13.537222, + "longitudeAirport": 23.11, + "nameAirport": "Zambezi", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-5", + "airportId": 568, + "codeIataAirport": "BCA", + "codeIataCity": "BCA", + "codeIcaoAirport": "MUBA", + "codeIso2Country": "CU", + "geonameId": "6299914", + "latitudeAirport": 20.35, + "longitudeAirport": -74.5, + "nameAirport": "Baracoa", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "-5", + "airportId": 569, + "codeIataAirport": "BCB", + "codeIataCity": "BCB", + "codeIcaoAirport": "KBCB", + "codeIso2Country": "US", + "geonameId": "4791348", + "latitudeAirport": 37.233334, + "longitudeAirport": -80.416664, + "nameAirport": "Virginia Tech", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 570, + "codeIataAirport": "BCC", + "codeIataCity": "BCC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5880392", + "latitudeAirport": 45.183334, + "longitudeAirport": -109.1, + "nameAirport": "Bear Creek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 571, + "codeIataAirport": "BCD", + "codeIataCity": "BCD", + "codeIcaoAirport": "RPVB", + "codeIso2Country": "PH", + "geonameId": "8298629", + "latitudeAirport": 10.644815, + "longitudeAirport": 122.93359, + "nameAirport": "Bacolod", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-7", + "airportId": 572, + "codeIataAirport": "BCE", + "codeIataCity": "BCE", + "codeIcaoAirport": "KBCE", + "codeIso2Country": "US", + "geonameId": "5535946", + "latitudeAirport": 37.70111, + "longitudeAirport": -112.13528, + "nameAirport": "Bryce", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 573, + "codeIataAirport": "BCF", + "codeIataCity": "BCF", + "codeIcaoAirport": "FEGU", + "codeIso2Country": "CF", + "geonameId": "7668239", + "latitudeAirport": 6.75, + "longitudeAirport": 18.416668, + "nameAirport": "Bouca", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "-4", + "airportId": 574, + "codeIataAirport": "BCG", + "codeIataCity": "BCG", + "codeIcaoAirport": "", + "codeIso2Country": "GY", + "geonameId": "7730848", + "latitudeAirport": 6.55, + "longitudeAirport": -58.55, + "nameAirport": "Bemichi", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "9", + "airportId": 575, + "codeIataAirport": "BCH", + "codeIataCity": "BCH", + "codeIcaoAirport": "WPEC", + "codeIso2Country": "TL", + "geonameId": "6301260", + "latitudeAirport": -8.491667, + "longitudeAirport": 126.39972, + "nameAirport": "Cakung International", + "nameCountry": "East Timor", + "phone": "", + "timezone": "Asia/Dili" + }, + { + "GMT": "10", + "airportId": 576, + "codeIataAirport": "BCI", + "codeIataCity": "BCI", + "codeIcaoAirport": "YBAR", + "codeIso2Country": "AU", + "geonameId": "7730239", + "latitudeAirport": -23.559168, + "longitudeAirport": 145.30194, + "nameAirport": "Barcaldine", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 577, + "codeIataAirport": "BCK", + "codeIataCity": "BCK", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7730849", + "latitudeAirport": -17.4, + "longitudeAirport": 144.16667, + "nameAirport": "Bolwarra", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "airportId": 578, + "codeIataAirport": "BCL", + "codeIataCity": "BCL", + "codeIcaoAirport": "MRBC", + "codeIso2Country": "CR", + "geonameId": "7668354", + "latitudeAirport": 10.833333, + "longitudeAirport": -82.96667, + "nameAirport": "Barra Colorado", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "2", + "airportId": 579, + "codeIataAirport": "BCM", + "codeIataCity": "BCM", + "codeIcaoAirport": "LRBC", + "codeIso2Country": "RO", + "geonameId": "6299699", + "latitudeAirport": 46.59861, + "longitudeAirport": 26.881945, + "nameAirport": "Bacau", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "1", + "airportId": 580, + "codeIataAirport": "BCN", + "codeIataCity": "BCN", + "codeIcaoAirport": "LEBL", + "codeIso2Country": "ES", + "geonameId": "3128760", + "latitudeAirport": 41.30303, + "longitudeAirport": 2.07593, + "nameAirport": "El Prat De Llobregat", + "nameCountry": "Spain", + "phone": "902 404 704", + "timezone": "Europe/Madrid" + }, + { + "GMT": "3", + "airportId": 581, + "codeIataAirport": "BCO", + "codeIataCity": "BCO", + "codeIcaoAirport": "HABC", + "codeIso2Country": "ET", + "geonameId": "8298865", + "latitudeAirport": 5.783333, + "longitudeAirport": 36.55, + "nameAirport": "Jinka", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "10", + "airportId": 582, + "codeIataAirport": "BCP", + "codeIataCity": "BCP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2099957", + "latitudeAirport": -5.85, + "longitudeAirport": 146.48334, + "nameAirport": "Bambu", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "airportId": 583, + "codeIataAirport": "BCQ", + "codeIataCity": "BCQ", + "codeIcaoAirport": "", + "codeIso2Country": "LY", + "geonameId": "7730317", + "latitudeAirport": 27.683332, + "longitudeAirport": 14.216667, + "nameAirport": "Brack", + "nameCountry": "Libya", + "phone": "", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "-4", + "airportId": 584, + "codeIataAirport": "BCR", + "codeIataCity": "BCR", + "codeIcaoAirport": "SWNK", + "codeIso2Country": "BR", + "geonameId": "7730850", + "latitudeAirport": -8.75, + "longitudeAirport": -67.38333, + "nameAirport": "Boca Do Acre", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "-6", + "airportId": 585, + "codeIataAirport": "BCS", + "codeIataCity": "BCS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4316329", + "latitudeAirport": 29.966667, + "longitudeAirport": -90.0, + "nameAirport": "Southern Seaplane", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 586, + "codeIataAirport": "BCT", + "codeIataCity": "BCT", + "codeIcaoAirport": "KBCT", + "codeIso2Country": "US", + "geonameId": "4148413", + "latitudeAirport": 26.35, + "longitudeAirport": -80.083336, + "nameAirport": "Public", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 587, + "codeIataAirport": "BCU", + "codeIataCity": "BCU", + "codeIcaoAirport": "", + "codeIso2Country": "NG", + "geonameId": "7730851", + "latitudeAirport": 10.366667, + "longitudeAirport": 9.8, + "nameAirport": "Bauchi", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-6", + "airportId": 588, + "codeIataAirport": "BCV", + "codeIataCity": "BCV", + "codeIcaoAirport": "", + "codeIso2Country": "BZ", + "geonameId": "3582672", + "latitudeAirport": 17.266666, + "longitudeAirport": -88.78333, + "nameAirport": "Belmopan", + "nameCountry": "Belize", + "phone": "", + "timezone": "America/Belize" + }, + { + "GMT": "2", + "airportId": 589, + "codeIataAirport": "BCW", + "codeIataCity": "BCW", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "7730315", + "latitudeAirport": -21.884722, + "longitudeAirport": 35.425, + "nameAirport": "Benguera Island", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "5", + "airportId": 590, + "codeIataAirport": "BCX", + "codeIataCity": "BCX", + "codeIcaoAirport": "UWUB", + "codeIso2Country": "RU", + "geonameId": "7730852", + "latitudeAirport": 53.933334, + "longitudeAirport": 58.333332, + "nameAirport": "Beloreck", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "3", + "airportId": 591, + "codeIataAirport": "BCY", + "codeIataCity": "BCY", + "codeIcaoAirport": "", + "codeIso2Country": "ET", + "geonameId": "8260966", + "latitudeAirport": 6.216667, + "longitudeAirport": 36.666668, + "nameAirport": "Bulchi", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "9.30", + "airportId": 592, + "codeIataAirport": "BCZ", + "codeIataCity": "BCZ", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -13.783333, + "longitudeAirport": 137.8, + "nameAirport": "Bickerton Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-4", + "airportId": 593, + "codeIataAirport": "BDA", + "codeIataCity": "BDA", + "codeIcaoAirport": "TXKF", + "codeIso2Country": "BM", + "geonameId": "3573197", + "latitudeAirport": 32.35994, + "longitudeAirport": -64.70115, + "nameAirport": "L. F. Wade International", + "nameCountry": "Bermuda", + "phone": "", + "timezone": "Atlantic/Bermuda" + }, + { + "GMT": "10", + "airportId": 594, + "codeIataAirport": "BDB", + "codeIataCity": "BDB", + "codeIcaoAirport": "YBUD", + "codeIso2Country": "AU", + "geonameId": "7668694", + "latitudeAirport": -24.898708, + "longitudeAirport": 152.32187, + "nameAirport": "Bundaberg", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "airportId": 595, + "codeIataAirport": "BDC", + "codeIataCity": "BDC", + "codeIcaoAirport": "SNBC", + "codeIso2Country": "BR", + "geonameId": "7730853", + "latitudeAirport": -5.466667, + "longitudeAirport": -45.266666, + "nameAirport": "Barra Do Corda", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "10", + "airportId": 596, + "codeIataAirport": "BDD", + "codeIataCity": "BDD", + "codeIcaoAirport": "YBAU", + "codeIso2Country": "AU", + "geonameId": "7730854", + "latitudeAirport": -10.148655, + "longitudeAirport": 142.17166, + "nameAirport": "Badu Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "airportId": 597, + "codeIataAirport": "BDE", + "codeIataCity": "BDE", + "codeIcaoAirport": "KBDE", + "codeIso2Country": "US", + "geonameId": "5017389", + "latitudeAirport": 48.72278, + "longitudeAirport": -94.60694, + "nameAirport": "Baudette", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 598, + "codeIataAirport": "BDF", + "codeIataCity": "BDF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.183334, + "longitudeAirport": -89.65, + "nameAirport": "Rinkenberger", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 599, + "codeIataAirport": "BDG", + "codeIataCity": "BDG", + "codeIcaoAirport": "KBDG", + "codeIso2Country": "US", + "geonameId": "5535491", + "latitudeAirport": 37.61667, + "longitudeAirport": -109.48333, + "nameAirport": "Blanding", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "3.30", + "airportId": 600, + "codeIataAirport": "BDH", + "codeIataCity": "BDH", + "codeIcaoAirport": "OIBL", + "codeIso2Country": "IR", + "geonameId": "6300044", + "latitudeAirport": 26.529486, + "longitudeAirport": 54.829147, + "nameAirport": "Bandar Lengeh", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "4", + "airportId": 601, + "codeIataAirport": "BDI", + "codeIataCity": "BDI", + "codeIcaoAirport": "FSSB", + "codeIso2Country": "SC", + "geonameId": "6354923", + "latitudeAirport": -3.716667, + "longitudeAirport": 55.216667, + "nameAirport": "Bird Island", + "nameCountry": "Seychelles", + "phone": "", + "timezone": "Indian/Mahe" + }, + { + "GMT": "8", + "airportId": 602, + "codeIataAirport": "BDJ", + "codeIataCity": "BDJ", + "codeIcaoAirport": "WRBB", + "codeIso2Country": "ID", + "geonameId": "6301262", + "latitudeAirport": -3.43804, + "longitudeAirport": 114.75425, + "nameAirport": "Sjamsudin Noor", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "0", + "airportId": 603, + "codeIataAirport": "BDK", + "codeIataCity": "BDK", + "codeIcaoAirport": "DIBU", + "codeIso2Country": "CI", + "geonameId": "6296435", + "latitudeAirport": 8.033333, + "longitudeAirport": -2.8, + "nameAirport": "Bondoukou", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "-5", + "airportId": 604, + "codeIataAirport": "BDL", + "codeIataCity": "BDL", + "codeIcaoAirport": "KBDL", + "codeIso2Country": "US", + "geonameId": "5282636", + "latitudeAirport": 41.92953, + "longitudeAirport": -72.6847, + "nameAirport": "Bradley International", + "nameCountry": "United States", + "phone": "860-292-2000", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 605, + "codeIataAirport": "BDM", + "codeIataCity": "BDM", + "codeIcaoAirport": "LTBG", + "codeIso2Country": "TR", + "geonameId": "6299747", + "latitudeAirport": 40.318333, + "longitudeAirport": 27.977222, + "nameAirport": "Bandirma", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "5", + "airportId": 606, + "codeIataAirport": "BDN", + "codeIataCity": "BDN", + "codeIcaoAirport": "OPTH", + "codeIso2Country": "PK", + "geonameId": "7730755", + "latitudeAirport": 24.633333, + "longitudeAirport": 68.9, + "nameAirport": "Talhar", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "7", + "airportId": 607, + "codeIataAirport": "BDO", + "codeIataCity": "BDO", + "codeIcaoAirport": "WIIB", + "codeIso2Country": "ID", + "geonameId": "6301223", + "latitudeAirport": -6.904648, + "longitudeAirport": 107.58178, + "nameAirport": "Husein Sastranegara", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "5.45", + "airportId": 608, + "codeIataAirport": "BDP", + "codeIataCity": "BDP", + "codeIcaoAirport": "VNCG", + "codeIso2Country": "NP", + "geonameId": "7668616", + "latitudeAirport": 26.533333, + "longitudeAirport": 88.083336, + "nameAirport": "Bhadrapur", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "5.30", + "airportId": 609, + "codeIataAirport": "BDQ", + "codeIataCity": "BDQ", + "codeIcaoAirport": "VABO", + "codeIso2Country": "IN", + "geonameId": "7668569", + "latitudeAirport": 22.329077, + "longitudeAirport": 73.2157, + "nameAirport": "Vadodara", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "airportId": 610, + "codeIataAirport": "BDR", + "codeIataCity": "BDR", + "codeIcaoAirport": "KBDR", + "codeIso2Country": "US", + "geonameId": "5282804", + "latitudeAirport": 41.164165, + "longitudeAirport": -73.12444, + "nameAirport": "Igor I. Sikorsky Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 611, + "codeIataAirport": "BDS", + "codeIataCity": "BDS", + "codeIcaoAirport": "LIBR", + "codeIso2Country": "IT", + "geonameId": "6299542", + "latitudeAirport": 40.657993, + "longitudeAirport": 17.939053, + "nameAirport": "Papola Casale", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "airportId": 612, + "codeIataAirport": "BDT", + "codeIataCity": "BDT", + "codeIcaoAirport": "FZFD", + "codeIso2Country": "CD", + "geonameId": "7668268", + "latitudeAirport": 4.083333, + "longitudeAirport": 22.45, + "nameAirport": "Gbadolite", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "1", + "airportId": 613, + "codeIataAirport": "BDU", + "codeIataCity": "BDU", + "codeIcaoAirport": "ENDU", + "codeIso2Country": "NO", + "geonameId": "6355182", + "latitudeAirport": 69.056114, + "longitudeAirport": 18.54, + "nameAirport": "Bardufoss", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "2", + "airportId": 614, + "codeIataAirport": "BDV", + "codeIataCity": "BDV", + "codeIcaoAirport": "FZRB", + "codeIso2Country": "CD", + "geonameId": "7730568", + "latitudeAirport": -7.0, + "longitudeAirport": 29.8, + "nameAirport": "Moba", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "8", + "airportId": 615, + "codeIataAirport": "BDW", + "codeIataCity": "BDW", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8261025", + "latitudeAirport": -17.3, + "longitudeAirport": 127.46667, + "nameAirport": "Bedford Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-7", + "airportId": 616, + "codeIataAirport": "BDX", + "codeIataCity": "BDX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5642048", + "latitudeAirport": 45.466667, + "longitudeAirport": -105.36667, + "nameAirport": "Broadus", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-8", + "airportId": 617, + "codeIataAirport": "BDY", + "codeIataCity": "BDY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 43.11667, + "longitudeAirport": -124.416664, + "nameAirport": "State", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 618, + "codeIataAirport": "BDZ", + "codeIataCity": "BDZ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298936", + "latitudeAirport": -6.333333, + "longitudeAirport": 146.95, + "nameAirport": "Baindoung", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 619, + "codeIataAirport": "BEB", + "codeIataCity": "BEB", + "codeIcaoAirport": "EGPL", + "codeIso2Country": "GB", + "geonameId": "6296630", + "latitudeAirport": 57.473415, + "longitudeAirport": -7.376028, + "nameAirport": "Benbecula", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 620, + "codeIataAirport": "BEC", + "codeIataCity": "ICT", + "codeIcaoAirport": "KBEC", + "codeIso2Country": "US", + "geonameId": "4268051", + "latitudeAirport": 37.683334, + "longitudeAirport": -97.333336, + "nameAirport": "Beech", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 621, + "codeIataAirport": "BED", + "codeIataCity": "BED", + "codeIcaoAirport": "KBED", + "codeIso2Country": "US", + "geonameId": "4941730", + "latitudeAirport": 42.470833, + "longitudeAirport": -71.29, + "nameAirport": "Hanscom Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 622, + "codeIataAirport": "BEE", + "codeIataCity": "BEE", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8299011", + "latitudeAirport": -16.966667, + "longitudeAirport": 122.666664, + "nameAirport": "Beagle Bay", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "airportId": 623, + "codeIataAirport": "BEF", + "codeIataCity": "BEF", + "codeIcaoAirport": "MNBL", + "codeIso2Country": "NI", + "geonameId": "6299887", + "latitudeAirport": 11.996944, + "longitudeAirport": -83.76861, + "nameAirport": "Bluefields", + "nameCountry": "Nicaragua", + "phone": "", + "timezone": "America/Managua" + }, + { + "GMT": "1", + "airportId": 624, + "codeIataAirport": "BEG", + "codeIataCity": "BEG", + "codeIcaoAirport": "LYBE", + "codeIso2Country": "RS", + "geonameId": "6299779", + "latitudeAirport": 44.819443, + "longitudeAirport": 20.306944, + "nameAirport": "Belgrade Nikola Tesla", + "nameCountry": "Serbia", + "phone": "", + "timezone": "Europe/Belgrade" + }, + { + "GMT": "-5", + "airportId": 625, + "codeIataAirport": "BEH", + "codeIataCity": "BEH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5007668", + "latitudeAirport": 42.127777, + "longitudeAirport": -86.42833, + "nameAirport": "Ross Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "3", + "airportId": 626, + "codeIataAirport": "BEI", + "codeIataCity": "BEI", + "codeIcaoAirport": "HABE", + "codeIso2Country": "ET", + "geonameId": "7730583", + "latitudeAirport": 9.391667, + "longitudeAirport": 34.533333, + "nameAirport": "Beica", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "8", + "airportId": 627, + "codeIataAirport": "BEJ", + "codeIataCity": "BEJ", + "codeIcaoAirport": "WALK", + "codeIso2Country": "ID", + "geonameId": "7668667", + "latitudeAirport": 2.166667, + "longitudeAirport": 117.7, + "nameAirport": "Kalimaru", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "5.30", + "airportId": 628, + "codeIataAirport": "BEK", + "codeIataCity": "BEK", + "codeIcaoAirport": "", + "codeIso2Country": "IN", + "geonameId": "1277005", + "latitudeAirport": 26.216667, + "longitudeAirport": 81.23333, + "nameAirport": "Bareli", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-3", + "airportId": 629, + "codeIataAirport": "BEL", + "codeIataCity": "BEL", + "codeIcaoAirport": "SBBE", + "codeIso2Country": "BR", + "geonameId": "6300600", + "latitudeAirport": -1.389865, + "longitudeAirport": -48.480003, + "nameAirport": "Val De Cans", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Belem" + }, + { + "GMT": "2", + "airportId": 630, + "codeIataAirport": "BEN", + "codeIataCity": "BEN", + "codeIcaoAirport": "HLLB", + "codeIso2Country": "LY", + "geonameId": "6297330", + "latitudeAirport": 32.085423, + "longitudeAirport": 20.26489, + "nameAirport": "Benina International", + "nameCountry": "Libya", + "phone": "", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "10", + "airportId": 631, + "codeIataAirport": "BEO", + "codeIataCity": "NTL", + "codeIcaoAirport": "YPEC", + "codeIso2Country": "AU", + "geonameId": "7668757", + "latitudeAirport": -33.033333, + "longitudeAirport": 151.66667, + "nameAirport": "Belmont", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "5.30", + "airportId": 632, + "codeIataAirport": "BEP", + "codeIataCity": "BEP", + "codeIcaoAirport": "VOBI", + "codeIso2Country": "IN", + "geonameId": "6301119", + "latitudeAirport": 15.183333, + "longitudeAirport": 76.9, + "nameAirport": "Bellary", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "0", + "airportId": 633, + "codeIataAirport": "BEQ", + "codeIataCity": "BEQ", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2654186", + "latitudeAirport": 52.35, + "longitudeAirport": 0.766667, + "nameAirport": "Honington", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 634, + "codeIataAirport": "BES", + "codeIataCity": "BES", + "codeIcaoAirport": "LFRB", + "codeIso2Country": "FR", + "geonameId": "6299451", + "latitudeAirport": 48.445374, + "longitudeAirport": -4.415827, + "nameAirport": "Brest Lesquin", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-9", + "airportId": 635, + "codeIataAirport": "BET", + "codeIataCity": "BET", + "codeIcaoAirport": "PABE", + "codeIso2Country": "US", + "geonameId": "5880572", + "latitudeAirport": 60.784443, + "longitudeAirport": -161.83139, + "nameAirport": "Bethel Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 636, + "codeIataAirport": "BEU", + "codeIataCity": "BEU", + "codeIcaoAirport": "YBIE", + "codeIso2Country": "AU", + "geonameId": "7730242", + "latitudeAirport": -24.23, + "longitudeAirport": 139.445, + "nameAirport": "Bedourie", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "airportId": 637, + "codeIataAirport": "BEV", + "codeIataCity": "BEV", + "codeIcaoAirport": "LLBS", + "codeIso2Country": "IL", + "geonameId": "6299657", + "latitudeAirport": 31.25, + "longitudeAirport": 34.8, + "nameAirport": "Beer Sheba", + "nameCountry": "Israel", + "phone": "", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "2", + "airportId": 638, + "codeIataAirport": "BEW", + "codeIataCity": "BEW", + "codeIcaoAirport": "FQBR", + "codeIso2Country": "MZ", + "geonameId": "1098915", + "latitudeAirport": -19.798805, + "longitudeAirport": 34.90192, + "nameAirport": "Beira", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "0", + "airportId": 639, + "codeIataAirport": "BEX", + "codeIataCity": "BEX", + "codeIcaoAirport": "EGUB", + "codeIso2Country": "GB", + "geonameId": "6296651", + "latitudeAirport": 51.63333, + "longitudeAirport": -1.083333, + "nameAirport": "Benson (RAF Station)", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "airportId": 640, + "codeIataAirport": "BEY", + "codeIataCity": "BEY", + "codeIcaoAirport": "OLBA", + "codeIso2Country": "LB", + "geonameId": "276781", + "latitudeAirport": 33.826073, + "longitudeAirport": 35.49308, + "nameAirport": "Beirut Rafic Hariri Airport", + "nameCountry": "Lebanon", + "phone": "", + "timezone": "Asia/Beirut" + }, + { + "GMT": "12", + "airportId": 641, + "codeIataAirport": "BEZ", + "codeIataCity": "BEZ", + "codeIcaoAirport": "NGBR", + "codeIso2Country": "KI", + "geonameId": "6299951", + "latitudeAirport": -1.333333, + "longitudeAirport": 176.0, + "nameAirport": "Beru", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "-4", + "airportId": 642, + "codeIataAirport": "BFA", + "codeIataCity": "BFA", + "codeIcaoAirport": "", + "codeIso2Country": "PY", + "geonameId": "7730857", + "latitudeAirport": -20.232779, + "longitudeAirport": -58.170277, + "nameAirport": "Bahia Negra", + "nameCountry": "Paraguay", + "phone": "", + "timezone": "America/Asuncion" + }, + { + "GMT": "-9", + "airportId": 643, + "codeIataAirport": "BFB", + "codeIataCity": "BFB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299094", + "latitudeAirport": 58.183334, + "longitudeAirport": -152.13333, + "nameAirport": "Blue Fox Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 644, + "codeIataAirport": "BFC", + "codeIataCity": "BFC", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7730858", + "latitudeAirport": -15.9, + "longitudeAirport": 145.33333, + "nameAirport": "Bloomfield", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 645, + "codeIataAirport": "BFD", + "codeIataCity": "BFD", + "codeIcaoAirport": "KBFD", + "codeIso2Country": "US", + "geonameId": "5181425", + "latitudeAirport": 41.802223, + "longitudeAirport": -78.63944, + "nameAirport": "Bradford", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 646, + "codeIataAirport": "BFE", + "codeIataCity": "BFE", + "codeIcaoAirport": "EDLI", + "codeIso2Country": "DE", + "geonameId": "2949186", + "latitudeAirport": 52.016666, + "longitudeAirport": 8.55, + "nameAirport": "Bielefeld", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-7", + "airportId": 647, + "codeIataAirport": "BFF", + "codeIataCity": "BFF", + "codeIcaoAirport": "KBFF", + "codeIso2Country": "US", + "geonameId": "5700615", + "latitudeAirport": 41.87528, + "longitudeAirport": -103.60111, + "nameAirport": "Western Neb. Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-7", + "airportId": 648, + "codeIataAirport": "BFG", + "codeIataCity": "BFG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5536135", + "latitudeAirport": 37.545834, + "longitudeAirport": -110.71333, + "nameAirport": "Bullfrog Basin", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-3", + "airportId": 649, + "codeIataAirport": "BFH", + "codeIataCity": "BFH", + "codeIcaoAirport": "SBBI", + "codeIso2Country": "BR", + "geonameId": "6300603", + "latitudeAirport": -25.4025, + "longitudeAirport": -49.23389, + "nameAirport": "Bacacheri", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "airportId": 650, + "codeIataAirport": "BFI", + "codeIataCity": "SEA", + "codeIcaoAirport": "KBFI", + "codeIso2Country": "US", + "geonameId": "5787710", + "latitudeAirport": 47.5371, + "longitudeAirport": -122.3037, + "nameAirport": "Boeing Field/King County International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-7", + "airportId": 651, + "codeIataAirport": "BFK", + "codeIataCity": "DEN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.733334, + "longitudeAirport": -104.86667, + "nameAirport": "Buffalo Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-8", + "airportId": 652, + "codeIataAirport": "BFL", + "codeIataCity": "BFL", + "codeIcaoAirport": "KBFL", + "codeIso2Country": "US", + "geonameId": "5371940", + "latitudeAirport": 35.429626, + "longitudeAirport": -119.04533, + "nameAirport": "Meadows Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 653, + "codeIataAirport": "BFM", + "codeIataCity": "MOB", + "codeIcaoAirport": "KBFM", + "codeIso2Country": "US", + "geonameId": "4051909", + "latitudeAirport": 30.683332, + "longitudeAirport": -88.23333, + "nameAirport": "Mobile Downtown", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 654, + "codeIataAirport": "BFN", + "codeIataCity": "BFN", + "codeIcaoAirport": "FABL", + "codeIso2Country": "ZA", + "geonameId": "1018725", + "latitudeAirport": -29.095854, + "longitudeAirport": 26.297516, + "nameAirport": "Bloemfontein", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "2", + "airportId": 655, + "codeIataAirport": "BFO", + "codeIataCity": "BFO", + "codeIcaoAirport": "FVCZ", + "codeIso2Country": "ZW", + "geonameId": "6297106", + "latitudeAirport": -21.009167, + "longitudeAirport": 31.579166, + "nameAirport": "Buffalo Range", + "nameCountry": "Zimbabwe", + "phone": "", + "timezone": "Africa/Harare" + }, + { + "GMT": "-5", + "airportId": 656, + "codeIataAirport": "BFP", + "codeIataCity": "BFP", + "codeIcaoAirport": "KBVI", + "codeIso2Country": "US", + "geonameId": "5179455", + "latitudeAirport": 40.766666, + "longitudeAirport": -80.4, + "nameAirport": "Beaver Falls", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 657, + "codeIataAirport": "BFQ", + "codeIataCity": "BFQ", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "7730859", + "latitudeAirport": 7.583333, + "longitudeAirport": -78.166664, + "nameAirport": "Bahia Pinas", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "-5", + "airportId": 658, + "codeIataAirport": "BFR", + "codeIataCity": "BFR", + "codeIcaoAirport": "KBFR", + "codeIso2Country": "US", + "geonameId": "4266314", + "latitudeAirport": 38.86667, + "longitudeAirport": -86.48333, + "nameAirport": "Virgil I Grissom Municipalcipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "0", + "airportId": 659, + "codeIataAirport": "BFS", + "codeIataCity": "BFS", + "codeIcaoAirport": "EGAA", + "codeIso2Country": "GB", + "geonameId": "6296569", + "latitudeAirport": 54.662395, + "longitudeAirport": -6.217616, + "nameAirport": "Aldergrove International Airport", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "airportId": 660, + "codeIataAirport": "BFT", + "codeIataCity": "BFT", + "codeIcaoAirport": "KBFT", + "codeIso2Country": "US", + "geonameId": "6298743", + "latitudeAirport": 32.41083, + "longitudeAirport": -80.635, + "nameAirport": "County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 661, + "codeIataAirport": "BFU", + "codeIataCity": "BFU", + "codeIcaoAirport": "ZSBB", + "codeIso2Country": "CN", + "geonameId": "1816440", + "latitudeAirport": 32.95, + "longitudeAirport": 117.333336, + "nameAirport": "Bengbu", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "7", + "airportId": 662, + "codeIataAirport": "BFV", + "codeIataCity": "BFV", + "codeIcaoAirport": "VTUO", + "codeIso2Country": "TH", + "geonameId": "7668646", + "latitudeAirport": 15.226944, + "longitudeAirport": 103.25528, + "nameAirport": "Buri Ram", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "1", + "airportId": 663, + "codeIataAirport": "BFW", + "codeIataCity": "BFW", + "codeIcaoAirport": "DAOS", + "codeIso2Country": "DZ", + "geonameId": "2570472", + "latitudeAirport": 35.171665, + "longitudeAirport": -0.589444, + "nameAirport": "Sidi Belabbes", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "1", + "airportId": 664, + "codeIataAirport": "BFX", + "codeIataCity": "BFX", + "codeIcaoAirport": "FKKU", + "codeIso2Country": "CM", + "geonameId": "7668242", + "latitudeAirport": 5.483333, + "longitudeAirport": 10.4, + "nameAirport": "Bafoussam", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "-5", + "airportId": 665, + "codeIataAirport": "BGA", + "codeIataCity": "BGA", + "codeIcaoAirport": "SKBG", + "codeIso2Country": "CO", + "geonameId": "6300735", + "latitudeAirport": 7.128045, + "longitudeAirport": -73.1814, + "nameAirport": "Palo Negro", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "airportId": 666, + "codeIataAirport": "BGB", + "codeIataCity": "BGB", + "codeIcaoAirport": "FOGB", + "codeIso2Country": "GA", + "geonameId": "7730522", + "latitudeAirport": -0.106667, + "longitudeAirport": 11.938889, + "nameAirport": "Booue", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "0", + "airportId": 667, + "codeIataAirport": "BGC", + "codeIataCity": "BGC", + "codeIcaoAirport": "LPBG", + "codeIso2Country": "PT", + "geonameId": "6299677", + "latitudeAirport": 41.816666, + "longitudeAirport": -6.75, + "nameAirport": "Braganca", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "-6", + "airportId": 668, + "codeIataAirport": "BGD", + "codeIataCity": "BGD", + "codeIcaoAirport": "KBGD", + "codeIso2Country": "US", + "geonameId": "5523631", + "latitudeAirport": 35.65, + "longitudeAirport": -101.4, + "nameAirport": "Borger", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 669, + "codeIataAirport": "BGE", + "codeIataCity": "BGE", + "codeIcaoAirport": "KBGE", + "codeIso2Country": "US", + "geonameId": "4191129", + "latitudeAirport": 30.916668, + "longitudeAirport": -84.583336, + "nameAirport": "Decatur County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 670, + "codeIataAirport": "BGF", + "codeIataCity": "BGF", + "codeIcaoAirport": "FEFF", + "codeIso2Country": "CF", + "geonameId": "6296971", + "latitudeAirport": 4.396111, + "longitudeAirport": 18.520279, + "nameAirport": "Bangui", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "3", + "airportId": 671, + "codeIataAirport": "BGG", + "codeIataCity": "BGG", + "codeIcaoAirport": "", + "codeIso2Country": "TR", + "geonameId": "8394054", + "latitudeAirport": 6.7, + "longitudeAirport": -4.25, + "nameAirport": "Bongouanou", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "0", + "airportId": 672, + "codeIataAirport": "BGH", + "codeIataCity": "BGH", + "codeIcaoAirport": "GQNE", + "codeIso2Country": "MR", + "geonameId": "7668284", + "latitudeAirport": 16.633333, + "longitudeAirport": -14.2, + "nameAirport": "Abbaye", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "-4", + "airportId": 673, + "codeIataAirport": "BGI", + "codeIataCity": "BGI", + "codeIcaoAirport": "TBPB", + "codeIso2Country": "BB", + "geonameId": "3374036", + "latitudeAirport": 13.080732, + "longitudeAirport": -59.487835, + "nameAirport": "Grantley Adams International", + "nameCountry": "Barbados", + "phone": "", + "timezone": "America/Barbados" + }, + { + "GMT": "0", + "airportId": 674, + "codeIataAirport": "BGJ", + "codeIataCity": "BGJ", + "codeIcaoAirport": "BIBF", + "codeIso2Country": "IS", + "geonameId": "7730421", + "latitudeAirport": 66.0, + "longitudeAirport": -14.5, + "nameAirport": "Borgarfjordur Eystri", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-6", + "airportId": 675, + "codeIataAirport": "BGK", + "codeIataCity": "BGK", + "codeIcaoAirport": "", + "codeIso2Country": "BZ", + "geonameId": "3582656", + "latitudeAirport": 16.516666, + "longitudeAirport": -88.4, + "nameAirport": "Big Creek", + "nameCountry": "Belize", + "phone": "", + "timezone": "America/Belize" + }, + { + "GMT": "5.45", + "airportId": 676, + "codeIataAirport": "BGL", + "codeIataCity": "BGL", + "codeIcaoAirport": "VNBL", + "codeIso2Country": "NP", + "geonameId": "7730860", + "latitudeAirport": 28.215279, + "longitudeAirport": 83.683334, + "nameAirport": "Baglung", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-5", + "airportId": 677, + "codeIataAirport": "BGM", + "codeIataCity": "BGM", + "codeIcaoAirport": "KBGM", + "codeIso2Country": "US", + "geonameId": "5109179", + "latitudeAirport": 42.208534, + "longitudeAirport": -75.98294, + "nameAirport": "Greater Binghamton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 678, + "codeIataAirport": "BGO", + "codeIataCity": "BGO", + "codeIcaoAirport": "ENBR", + "codeIso2Country": "NO", + "geonameId": "6296727", + "latitudeAirport": 60.289062, + "longitudeAirport": 5.228169, + "nameAirport": "Bergen Airport, Flesland", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 679, + "codeIataAirport": "BGP", + "codeIataCity": "BGP", + "codeIcaoAirport": "", + "codeIso2Country": "GA", + "geonameId": "8298721", + "latitudeAirport": -1.65, + "longitudeAirport": 13.433333, + "nameAirport": "Bongo", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-9", + "airportId": 680, + "codeIataAirport": "BGQ", + "codeIataCity": "BGQ", + "codeIcaoAirport": "PAGQ", + "codeIso2Country": "US", + "geonameId": "5880670", + "latitudeAirport": 31.2, + "longitudeAirport": -101.46667, + "nameAirport": "Big Lake", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 681, + "codeIataAirport": "BGR", + "codeIataCity": "BGR", + "codeIcaoAirport": "KBGR", + "codeIso2Country": "US", + "geonameId": "4957297", + "latitudeAirport": 44.812298, + "longitudeAirport": -68.82102, + "nameAirport": "Bangor International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 682, + "codeIataAirport": "BGS", + "codeIataCity": "HCA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.385555, + "longitudeAirport": -101.48333, + "nameAirport": "Webb AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 683, + "codeIataAirport": "BGT", + "codeIataCity": "BGT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5552590", + "latitudeAirport": 34.566666, + "longitudeAirport": -113.183334, + "nameAirport": "Bagdad", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "1", + "airportId": 684, + "codeIataAirport": "BGU", + "codeIataCity": "BGU", + "codeIcaoAirport": "FEFG", + "codeIso2Country": "CF", + "geonameId": "6296972", + "latitudeAirport": 4.786667, + "longitudeAirport": 22.784445, + "nameAirport": "Bangassou", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "-3", + "airportId": 685, + "codeIataAirport": "BGV", + "codeIataCity": "BGV", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8298946", + "latitudeAirport": -29.166668, + "longitudeAirport": -51.516666, + "nameAirport": "Bento Goncalves", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "3", + "airportId": 686, + "codeIataAirport": "BGW", + "codeIataCity": "BGW", + "codeIcaoAirport": "ORBI", + "codeIso2Country": "IQ", + "geonameId": "7603289", + "latitudeAirport": 33.255554, + "longitudeAirport": 44.225, + "nameAirport": "Baghdad International", + "nameCountry": "Iraq", + "phone": "", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "-3", + "airportId": 687, + "codeIataAirport": "BGX", + "codeIataCity": "BGX", + "codeIcaoAirport": "SBBG", + "codeIso2Country": "BR", + "geonameId": "6300601", + "latitudeAirport": -31.398611, + "longitudeAirport": -54.1125, + "nameAirport": "Airport Cmdt. Gustavo Kraemer", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 688, + "codeIataAirport": "BGY", + "codeIataCity": "MIL", + "codeIcaoAirport": "LIME", + "codeIso2Country": "IT", + "geonameId": "6299575", + "latitudeAirport": 45.665314, + "longitudeAirport": 9.698713, + "nameAirport": "Bergamo - Orio al Serio", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "0", + "airportId": 689, + "codeIataAirport": "BGZ", + "codeIataCity": "BGZ", + "codeIcaoAirport": "LPBR", + "codeIso2Country": "PT", + "geonameId": "7730100", + "latitudeAirport": 41.55, + "longitudeAirport": -8.433333, + "nameAirport": "Braga", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "-5", + "airportId": 690, + "codeIataAirport": "BHA", + "codeIataCity": "BHA", + "codeIcaoAirport": "SEBC", + "codeIso2Country": "EC", + "geonameId": "6300710", + "latitudeAirport": -0.6, + "longitudeAirport": -80.416664, + "nameAirport": "Bahia De Caraquez", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-5", + "airportId": 691, + "codeIataAirport": "BHB", + "codeIataCity": "BHB", + "codeIcaoAirport": "KBHB", + "codeIso2Country": "US", + "geonameId": "4966387", + "latitudeAirport": 44.44889, + "longitudeAirport": -68.361664, + "nameAirport": "Bar Harbor", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "5", + "airportId": 692, + "codeIataAirport": "BHC", + "codeIataCity": "BHC", + "codeIcaoAirport": "", + "codeIso2Country": "PK", + "geonameId": "0", + "latitudeAirport": 33.925, + "longitudeAirport": 73.433334, + "nameAirport": "Bhurban Heliport", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "0", + "airportId": 693, + "codeIataAirport": "BHD", + "codeIataCity": "BFS", + "codeIcaoAirport": "EGAC", + "codeIso2Country": "GB", + "geonameId": "6296570", + "latitudeAirport": 54.61452, + "longitudeAirport": -5.870215, + "nameAirport": "George Best Belfast City", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "12", + "airportId": 694, + "codeIataAirport": "BHE", + "codeIataCity": "BHE", + "codeIcaoAirport": "NZWB", + "codeIso2Country": "NZ", + "geonameId": "7534797", + "latitudeAirport": -41.513588, + "longitudeAirport": 173.86765, + "nameAirport": "Woodbourne Air Station", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-5", + "airportId": 695, + "codeIataAirport": "BHF", + "codeIataCity": "BHF", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8298982", + "latitudeAirport": 6.716667, + "longitudeAirport": -77.51667, + "nameAirport": "Bahia Cupica", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 696, + "codeIataAirport": "BHG", + "codeIataCity": "BHG", + "codeIcaoAirport": "MHBL", + "codeIso2Country": "HN", + "geonameId": "7730657", + "latitudeAirport": 15.734722, + "longitudeAirport": -84.543335, + "nameAirport": "Brus Laguna", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "3", + "airportId": 697, + "codeIataAirport": "BHH", + "codeIataCity": "BHH", + "codeIcaoAirport": "OEBH", + "codeIso2Country": "SA", + "geonameId": "6300011", + "latitudeAirport": 19.994509, + "longitudeAirport": 42.618484, + "nameAirport": "Bisha", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-3", + "airportId": 698, + "codeIataAirport": "BHI", + "codeIataCity": "BHI", + "codeIcaoAirport": "SAZB", + "codeIso2Country": "AR", + "geonameId": "6300580", + "latitudeAirport": -38.730556, + "longitudeAirport": -62.150555, + "nameAirport": "Comandante Espora", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "5.30", + "airportId": 699, + "codeIataAirport": "BHJ", + "codeIataCity": "BHJ", + "codeIcaoAirport": "VABJ", + "codeIso2Country": "IN", + "geonameId": "6301034", + "latitudeAirport": 23.2875, + "longitudeAirport": 69.670555, + "nameAirport": "Rudra Mata", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5", + "airportId": 700, + "codeIataAirport": "BHK", + "codeIataCity": "BHK", + "codeIcaoAirport": "UTSB", + "codeIso2Country": "UZ", + "geonameId": "7730203", + "latitudeAirport": 39.76037, + "longitudeAirport": 64.47479, + "nameAirport": "Bukhara", + "nameCountry": "Uzbekistan", + "phone": "", + "timezone": "Asia/Samarkand" + }, + { + "GMT": "-8", + "airportId": 701, + "codeIataAirport": "BHL", + "codeIataCity": "BHL", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "0", + "latitudeAirport": 28.95, + "longitudeAirport": -113.55, + "nameAirport": "Bahia Angeles", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Santa_Isabel" + }, + { + "GMT": "-6", + "airportId": 702, + "codeIataAirport": "BHM", + "codeIataCity": "BHM", + "codeIcaoAirport": "KBHM", + "codeIso2Country": "US", + "geonameId": "4049999", + "latitudeAirport": 33.560833, + "longitudeAirport": -86.75219, + "nameAirport": "Birmingham", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 703, + "codeIataAirport": "BHN", + "codeIataCity": "BHN", + "codeIcaoAirport": "OYBN", + "codeIso2Country": "YE", + "geonameId": "7730144", + "latitudeAirport": 14.783333, + "longitudeAirport": 45.733334, + "nameAirport": "Beihan", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "5.30", + "airportId": 704, + "codeIataAirport": "BHO", + "codeIataCity": "BHO", + "codeIcaoAirport": "VABP", + "codeIso2Country": "IN", + "geonameId": "6301036", + "latitudeAirport": 23.284761, + "longitudeAirport": 77.34177, + "nameAirport": "Bhopal", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.45", + "airportId": 705, + "codeIataAirport": "BHP", + "codeIataCity": "BHP", + "codeIcaoAirport": "VNBJ", + "codeIso2Country": "NP", + "geonameId": "7668613", + "latitudeAirport": 27.183332, + "longitudeAirport": 87.05, + "nameAirport": "Bhojpur", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "9.30", + "airportId": 706, + "codeIataAirport": "BHQ", + "codeIataCity": "BHQ", + "codeIcaoAirport": "YBHI", + "codeIso2Country": "AU", + "geonameId": "7668685", + "latitudeAirport": -31.998983, + "longitudeAirport": 141.46857, + "nameAirport": "Broken Hill", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Broken_Hill" + }, + { + "GMT": "5.45", + "airportId": 707, + "codeIataAirport": "BHR", + "codeIataCity": "BHR", + "codeIcaoAirport": "VNBP", + "codeIso2Country": "NP", + "geonameId": "7668614", + "latitudeAirport": 27.67639, + "longitudeAirport": 84.4325, + "nameAirport": "Bharatpur Airport", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "10", + "airportId": 708, + "codeIataAirport": "BHS", + "codeIataCity": "BHS", + "codeIcaoAirport": "YBTH", + "codeIso2Country": "AU", + "geonameId": "7730002", + "latitudeAirport": -33.41387, + "longitudeAirport": 149.65518, + "nameAirport": "Raglan", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "airportId": 709, + "codeIataAirport": "BHT", + "codeIataCity": "BHT", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298711", + "latitudeAirport": -23.366667, + "longitudeAirport": 141.56667, + "nameAirport": "Brighton Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5.30", + "airportId": 710, + "codeIataAirport": "BHU", + "codeIataCity": "BHU", + "codeIcaoAirport": "VABV", + "codeIso2Country": "IN", + "geonameId": "6301869", + "latitudeAirport": 21.755, + "longitudeAirport": 72.18444, + "nameAirport": "Bhavnagar", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5", + "airportId": 711, + "codeIataAirport": "BHV", + "codeIataCity": "BHV", + "codeIcaoAirport": "OPBW", + "codeIso2Country": "PK", + "geonameId": "7668393", + "latitudeAirport": 29.4, + "longitudeAirport": 71.683334, + "nameAirport": "Bahawalpur", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "5", + "airportId": 712, + "codeIataAirport": "BHW", + "codeIataCity": "SGI", + "codeIcaoAirport": "", + "codeIso2Country": "PK", + "geonameId": "0", + "latitudeAirport": 32.166668, + "longitudeAirport": 72.666664, + "nameAirport": "Bhagatanwala Airport", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "0", + "airportId": 713, + "codeIataAirport": "BHX", + "codeIataCity": "BHX", + "codeIcaoAirport": "EGBB", + "codeIso2Country": "GB", + "geonameId": "6296572", + "latitudeAirport": 52.45252, + "longitudeAirport": -1.733256, + "nameAirport": "Birmingham International Airport", + "nameCountry": "United Kingdom", + "phone": "+44 (0) 844 5", + "timezone": "Europe/London" + }, + { + "GMT": "8", + "airportId": 714, + "codeIataAirport": "BHY", + "codeIataCity": "BHY", + "codeIcaoAirport": "ZGBH", + "codeIso2Country": "CN", + "geonameId": "7730862", + "latitudeAirport": 21.540333, + "longitudeAirport": 109.28785, + "nameAirport": "Beihai", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 715, + "codeIataAirport": "BIA", + "codeIataCity": "BIA", + "codeIcaoAirport": "LFKB", + "codeIso2Country": "FR", + "geonameId": "6299392", + "latitudeAirport": 42.547615, + "longitudeAirport": 9.480124, + "nameAirport": "Poretta", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "3", + "airportId": 716, + "codeIataAirport": "BIB", + "codeIataCity": "BIB", + "codeIcaoAirport": "HCMB", + "codeIso2Country": "SO", + "geonameId": "7730598", + "latitudeAirport": 3.066667, + "longitudeAirport": 43.63333, + "nameAirport": "Baidoa", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-9", + "airportId": 717, + "codeIataAirport": "BIC", + "codeIataCity": "BIC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299340", + "latitudeAirport": 58.3, + "longitudeAirport": -157.51666, + "nameAirport": "Big Creek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "-5", + "airportId": 718, + "codeIataAirport": "BID", + "codeIataCity": "BID", + "codeIcaoAirport": "KBID", + "codeIso2Country": "US", + "geonameId": "6944260", + "latitudeAirport": 41.169434, + "longitudeAirport": -71.57961, + "nameAirport": "Block Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 719, + "codeIataAirport": "BIE", + "codeIataCity": "BIE", + "codeIcaoAirport": "BIES", + "codeIso2Country": "US", + "geonameId": "5063659", + "latitudeAirport": 40.3, + "longitudeAirport": -96.75, + "nameAirport": "Beatrice", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 720, + "codeIataAirport": "BIF", + "codeIataCity": "ELP", + "codeIcaoAirport": "KBIF", + "codeIso2Country": "US", + "geonameId": "5517110", + "latitudeAirport": 31.75, + "longitudeAirport": -106.48333, + "nameAirport": "Biggs AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "airportId": 721, + "codeIataAirport": "BIG", + "codeIataCity": "BIG", + "codeIcaoAirport": "PABI", + "codeIso2Country": "US", + "geonameId": "5880620", + "latitudeAirport": 64.06778, + "longitudeAirport": -145.73277, + "nameAirport": "Intermediate Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "airportId": 722, + "codeIataAirport": "BIH", + "codeIataCity": "BIH", + "codeIcaoAirport": "KBIH", + "codeIso2Country": "US", + "geonameId": "5328809", + "latitudeAirport": 37.373333, + "longitudeAirport": -118.365, + "nameAirport": "Bishop", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "12", + "airportId": 723, + "codeIataAirport": "BII", + "codeIataCity": "BII", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 11.525081, + "longitudeAirport": 165.56512, + "nameAirport": "Enyu Airfield", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "9", + "airportId": 724, + "codeIataAirport": "BIK", + "codeIataCity": "BIK", + "codeIcaoAirport": "WABB", + "codeIso2Country": "ID", + "geonameId": "6301180", + "latitudeAirport": -1.191919, + "longitudeAirport": 136.10582, + "nameAirport": "Frans Kaisepo", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-7", + "airportId": 725, + "codeIataAirport": "BIL", + "codeIataCity": "BIL", + "codeIcaoAirport": "KBIL", + "codeIso2Country": "US", + "geonameId": "5663220", + "latitudeAirport": 45.803417, + "longitudeAirport": -108.53723, + "nameAirport": "Billings", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 726, + "codeIataAirport": "BIM", + "codeIataCity": "BIM", + "codeIcaoAirport": "MYBS", + "codeIso2Country": "BS", + "geonameId": "6299936", + "latitudeAirport": 25.7, + "longitudeAirport": -79.28333, + "nameAirport": "South Bimini Airport", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "4.30", + "airportId": 727, + "codeIataAirport": "BIN", + "codeIataCity": "BIN", + "codeIcaoAirport": "OABN", + "codeIso2Country": "AF", + "geonameId": "7668387", + "latitudeAirport": 34.80417, + "longitudeAirport": 67.82361, + "nameAirport": "Bamiyan", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "1", + "airportId": 728, + "codeIataAirport": "BIO", + "codeIataCity": "BIO", + "codeIcaoAirport": "LEBB", + "codeIso2Country": "ES", + "geonameId": "6299328", + "latitudeAirport": 43.305534, + "longitudeAirport": -2.905808, + "nameAirport": "Bilbao", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "10", + "airportId": 729, + "codeIataAirport": "BIP", + "codeIataCity": "BIP", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2207247", + "latitudeAirport": -16.15, + "longitudeAirport": 143.75, + "nameAirport": "Bulimba", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "airportId": 730, + "codeIataAirport": "BIQ", + "codeIataCity": "BIQ", + "codeIcaoAirport": "LFBZ", + "codeIso2Country": "FR", + "geonameId": "6299382", + "latitudeAirport": 43.472416, + "longitudeAirport": -1.531242, + "nameAirport": "Biarritz Parme", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "5.45", + "airportId": 731, + "codeIataAirport": "BIR", + "codeIataCity": "BIR", + "codeIcaoAirport": "VNVT", + "codeIso2Country": "NP", + "geonameId": "6301117", + "latitudeAirport": 26.434723, + "longitudeAirport": 87.28333, + "nameAirport": "Biratnagar", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-6", + "airportId": 732, + "codeIataAirport": "BIS", + "codeIataCity": "BIS", + "codeIcaoAirport": "KBIS", + "codeIso2Country": "US", + "geonameId": "5688027", + "latitudeAirport": 46.77448, + "longitudeAirport": -100.75821, + "nameAirport": "Bismarck", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5.45", + "airportId": 733, + "codeIataAirport": "BIT", + "codeIataCity": "BIT", + "codeIcaoAirport": "VNBT", + "codeIso2Country": "NP", + "geonameId": "7730863", + "latitudeAirport": 29.0, + "longitudeAirport": 80.5, + "nameAirport": "Baitadi", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "0", + "airportId": 734, + "codeIataAirport": "BIU", + "codeIataCity": "BIU", + "codeIcaoAirport": "BIBD", + "codeIso2Country": "IS", + "geonameId": "7668100", + "latitudeAirport": 65.833336, + "longitudeAirport": -23.983334, + "nameAirport": "Bildudalur", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "1", + "airportId": 735, + "codeIataAirport": "BIV", + "codeIataCity": "BIV", + "codeIcaoAirport": "KBIV", + "codeIso2Country": "CF", + "geonameId": "6296978", + "latitudeAirport": 6.533333, + "longitudeAirport": 21.983334, + "nameAirport": "Bria", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "8", + "airportId": 736, + "codeIataAirport": "BIW", + "codeIataCity": "BIW", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298692", + "latitudeAirport": -19.566668, + "longitudeAirport": 127.166664, + "nameAirport": "Billiluna", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "airportId": 737, + "codeIataAirport": "BIX", + "codeIataCity": "BIX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.4, + "longitudeAirport": -88.88333, + "nameAirport": "Keesler AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 738, + "codeIataAirport": "BIY", + "codeIataCity": "BIY", + "codeIcaoAirport": "FABE", + "codeIso2Country": "ZA", + "geonameId": "7730071", + "latitudeAirport": -35.88333, + "longitudeAirport": 27.283333, + "nameAirport": "Bisho", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "1", + "airportId": 739, + "codeIataAirport": "BJA", + "codeIataCity": "BJA", + "codeIcaoAirport": "DAAE", + "codeIso2Country": "DZ", + "geonameId": "6296361", + "latitudeAirport": 36.75, + "longitudeAirport": 5.083333, + "nameAirport": "Bejaia", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "3.30", + "airportId": 740, + "codeIataAirport": "BJB", + "codeIataCity": "BJB", + "codeIcaoAirport": "OIMN", + "codeIso2Country": "IR", + "geonameId": "6300066", + "latitudeAirport": 37.48972, + "longitudeAirport": 57.30885, + "nameAirport": "Bojnord", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-7", + "airportId": 741, + "codeIataAirport": "BJC", + "codeIataCity": "BJC", + "codeIcaoAirport": "KBJC", + "codeIso2Country": "US", + "geonameId": "5426497", + "latitudeAirport": 39.933334, + "longitudeAirport": -105.066666, + "nameAirport": "Jeffco", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "0", + "airportId": 742, + "codeIataAirport": "BJD", + "codeIataCity": "BJD", + "codeIcaoAirport": "BIBK", + "codeIso2Country": "IS", + "geonameId": "7730422", + "latitudeAirport": 66.066666, + "longitudeAirport": -14.75, + "nameAirport": "Bakkafjordur", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "3", + "airportId": 743, + "codeIataAirport": "BJE", + "codeIataCity": "BJE", + "codeIcaoAirport": "", + "codeIso2Country": "SD", + "geonameId": "8260710", + "latitudeAirport": 11.21, + "longitudeAirport": 28.52, + "nameAirport": "Baleela", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "1", + "airportId": 744, + "codeIataAirport": "BJF", + "codeIataCity": "BJF", + "codeIcaoAirport": "ENBS", + "codeIso2Country": "NO", + "geonameId": "6296728", + "latitudeAirport": 70.6, + "longitudeAirport": 29.666668, + "nameAirport": "Batsfjord", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "8", + "airportId": 745, + "codeIataAirport": "BJG", + "codeIataCity": "BJG", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7730864", + "latitudeAirport": -0.95, + "longitudeAirport": 122.1, + "nameAirport": "Bolaang", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "5.45", + "airportId": 746, + "codeIataAirport": "BJH", + "codeIataCity": "BJH", + "codeIcaoAirport": "VNBG", + "codeIso2Country": "NP", + "geonameId": "7668612", + "latitudeAirport": 29.55, + "longitudeAirport": 81.25, + "nameAirport": "Bajhang", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-6", + "airportId": 747, + "codeIataAirport": "BJI", + "codeIataCity": "BJI", + "codeIcaoAirport": "KBJI", + "codeIso2Country": "US", + "geonameId": "5017827", + "latitudeAirport": 47.509724, + "longitudeAirport": -94.93472, + "nameAirport": "Bemidji", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 748, + "codeIataAirport": "BJJ", + "codeIataCity": "BJJ", + "codeIcaoAirport": "KBJJ", + "codeIso2Country": "US", + "geonameId": "5177358", + "latitudeAirport": 40.8, + "longitudeAirport": -81.933334, + "nameAirport": "Wayne County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "airportId": 749, + "codeIataAirport": "BJK", + "codeIataCity": "BJK", + "codeIcaoAirport": "WAPK", + "codeIso2Country": "ID", + "geonameId": "7730865", + "latitudeAirport": -6.083333, + "longitudeAirport": 134.25, + "nameAirport": "Benjina", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "0", + "airportId": 750, + "codeIataAirport": "BJL", + "codeIataCity": "BJL", + "codeIcaoAirport": "GBYD", + "codeIso2Country": "GM", + "geonameId": "2413876", + "latitudeAirport": 13.34406, + "longitudeAirport": -16.6522, + "nameAirport": "Yundum International", + "nameCountry": "Gambia", + "phone": "", + "timezone": "Africa/Banjul" + }, + { + "GMT": "2", + "airportId": 751, + "codeIataAirport": "BJM", + "codeIataCity": "BJM", + "codeIcaoAirport": "HBBA", + "codeIso2Country": "BI", + "geonameId": "425378", + "latitudeAirport": -3.383333, + "longitudeAirport": 29.366667, + "nameAirport": "Melchior Ndadaye International Airport", + "nameCountry": "Burundi", + "phone": "", + "timezone": "Africa/Bujumbura" + }, + { + "GMT": "2", + "airportId": 752, + "codeIataAirport": "BJN", + "codeIataCity": "BJN", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "1052636", + "latitudeAirport": -17.183332, + "longitudeAirport": 38.083332, + "nameAirport": "Bajone", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-4", + "airportId": 753, + "codeIataAirport": "BJO", + "codeIataCity": "BJO", + "codeIcaoAirport": "SLBJ", + "codeIso2Country": "BO", + "geonameId": "7668467", + "latitudeAirport": -22.866667, + "longitudeAirport": -64.333336, + "nameAirport": "Bermejo", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-3", + "airportId": 754, + "codeIataAirport": "BJP", + "codeIataCity": "BJP", + "codeIcaoAirport": "SBBP", + "codeIso2Country": "BR", + "geonameId": "8298897", + "latitudeAirport": -22.95, + "longitudeAirport": -46.566666, + "nameAirport": "Braganca Paulista", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "4", + "airportId": 755, + "codeIataAirport": "BJQ", + "codeIataCity": "BJQ", + "codeIcaoAirport": "", + "codeIso2Country": "OM", + "geonameId": "8260700", + "latitudeAirport": 19.875, + "longitudeAirport": 56.0619, + "nameAirport": "Bahja", + "nameCountry": "Oman", + "phone": "", + "timezone": "Asia/Muscat" + }, + { + "GMT": "3", + "airportId": 756, + "codeIataAirport": "BJR", + "codeIataCity": "BJR", + "codeIcaoAirport": "HABD", + "codeIso2Country": "ET", + "geonameId": "6297263", + "latitudeAirport": 11.603292, + "longitudeAirport": 37.32324, + "nameAirport": "Bahar Dar", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "5.30", + "airportId": 757, + "codeIataAirport": "BJT", + "codeIataCity": "BJT", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "0", + "latitudeAirport": 6.483333, + "longitudeAirport": 79.98333, + "nameAirport": "Bentota River", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "5.45", + "airportId": 758, + "codeIataAirport": "BJU", + "codeIataCity": "BJU", + "codeIcaoAirport": "VNBR", + "codeIso2Country": "NP", + "geonameId": "7668615", + "latitudeAirport": 29.366667, + "longitudeAirport": 81.333336, + "nameAirport": "Bajura Airport", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "3", + "airportId": 759, + "codeIataAirport": "BJV", + "codeIataCity": "BJV", + "codeIcaoAirport": "LTFE", + "codeIso2Country": "TR", + "geonameId": "6299771", + "latitudeAirport": 37.243954, + "longitudeAirport": 27.672781, + "nameAirport": "Milas", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "8", + "airportId": 760, + "codeIataAirport": "BJW", + "codeIataCity": "BJW", + "codeIcaoAirport": "WATB", + "codeIso2Country": "ID", + "geonameId": "8299216", + "latitudeAirport": -8.766667, + "longitudeAirport": 120.98333, + "nameAirport": "Bajawa", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-6", + "airportId": 761, + "codeIataAirport": "BJX", + "codeIataCity": "BJX", + "codeIcaoAirport": "MMLO", + "codeIso2Country": "MX", + "geonameId": "6299851", + "latitudeAirport": 20.985699, + "longitudeAirport": -101.479, + "nameAirport": "Del Bajío International", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "1", + "airportId": 762, + "codeIataAirport": "BJY", + "codeIataCity": "BEG", + "codeIcaoAirport": "LYBT", + "codeIso2Country": "RS", + "geonameId": "7668336", + "latitudeAirport": 44.93528, + "longitudeAirport": 20.2575, + "nameAirport": "Batajnica", + "nameCountry": "Serbia", + "phone": "", + "timezone": "Europe/Belgrade" + }, + { + "GMT": "1", + "airportId": 763, + "codeIataAirport": "BJZ", + "codeIataCity": "BJZ", + "codeIcaoAirport": "LEBZ", + "codeIso2Country": "ES", + "geonameId": "6299330", + "latitudeAirport": 38.891666, + "longitudeAirport": -6.82, + "nameAirport": "Talaveral La Real", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "5.30", + "airportId": 764, + "codeIataAirport": "BKB", + "codeIataCity": "BKB", + "codeIcaoAirport": "VIBK", + "codeIso2Country": "IN", + "geonameId": "7730216", + "latitudeAirport": 28.016666, + "longitudeAirport": 73.3, + "nameAirport": "Bikaner", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-9", + "airportId": 765, + "codeIataAirport": "BKC", + "codeIataCity": "BKC", + "codeIcaoAirport": "PABL", + "codeIso2Country": "US", + "geonameId": "5858173", + "latitudeAirport": 65.97889, + "longitudeAirport": -161.12666, + "nameAirport": "Buckland", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 766, + "codeIataAirport": "BKD", + "codeIataCity": "BKD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.75, + "longitudeAirport": -98.9, + "nameAirport": "Stephens County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 767, + "codeIataAirport": "BKE", + "codeIataCity": "BKE", + "codeIcaoAirport": "KBKE", + "codeIso2Country": "US", + "geonameId": "5712208", + "latitudeAirport": 44.838333, + "longitudeAirport": -117.81, + "nameAirport": "Baker", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-9", + "airportId": 768, + "codeIataAirport": "BKF", + "codeIataCity": "BKF", + "codeIcaoAirport": "KBKF", + "codeIso2Country": "US", + "geonameId": "5415293", + "latitudeAirport": 58.6, + "longitudeAirport": -156.23334, + "nameAirport": "Lake Brooks SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 769, + "codeIataAirport": "BKG", + "codeIataCity": "BKG", + "codeIcaoAirport": "KBBG", + "codeIso2Country": "US", + "geonameId": "4378226", + "latitudeAirport": 36.53208, + "longitudeAirport": -93.20055, + "nameAirport": "Branson", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-10", + "airportId": 770, + "codeIataAirport": "BKH", + "codeIataCity": "BKH", + "codeIcaoAirport": "PHBK", + "codeIso2Country": "US", + "geonameId": "6300268", + "latitudeAirport": 21.966667, + "longitudeAirport": -159.71666, + "nameAirport": "Barking Sands PMRF", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "8", + "airportId": 771, + "codeIataAirport": "BKI", + "codeIataCity": "BKI", + "codeIcaoAirport": "WBKK", + "codeIso2Country": "MY", + "geonameId": "1772439", + "latitudeAirport": 5.923961, + "longitudeAirport": 116.05075, + "nameAirport": "Kota-Kinabalu International Airport", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "0", + "airportId": 772, + "codeIataAirport": "BKJ", + "codeIataCity": "BKJ", + "codeIcaoAirport": "GUOK", + "codeIso2Country": "GN", + "geonameId": "6297253", + "latitudeAirport": 10.966667, + "longitudeAirport": -14.283333, + "nameAirport": "Boke", + "nameCountry": "Guinea", + "phone": "", + "timezone": "Africa/Conakry" + }, + { + "GMT": "7", + "airportId": 773, + "codeIataAirport": "BKK", + "codeIataCity": "BKK", + "codeIcaoAirport": "VTBS", + "codeIso2Country": "TH", + "geonameId": "6301137", + "latitudeAirport": 13.693062, + "longitudeAirport": 100.752045, + "nameAirport": "Suvarnabhumi International", + "nameCountry": "Thailand", + "phone": "02-132-1888", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-5", + "airportId": 774, + "codeIataAirport": "BKL", + "codeIataCity": "CLE", + "codeIcaoAirport": "KBKL", + "codeIso2Country": "US", + "geonameId": "5148736", + "latitudeAirport": 41.516945, + "longitudeAirport": -81.683334, + "nameAirport": "Burke Lakefront", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 775, + "codeIataAirport": "BKM", + "codeIataCity": "BKM", + "codeIcaoAirport": "WBGQ", + "codeIso2Country": "MY", + "geonameId": "7730866", + "latitudeAirport": 3.966667, + "longitudeAirport": 115.61667, + "nameAirport": "Bakalalan", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "0", + "airportId": 776, + "codeIataAirport": "BKO", + "codeIataCity": "BKO", + "codeIcaoAirport": "GABS", + "codeIso2Country": "ML", + "geonameId": "6297167", + "latitudeAirport": 12.540926, + "longitudeAirport": -7.947951, + "nameAirport": "Bamako", + "nameCountry": "Mali", + "phone": "", + "timezone": "Africa/Bamako" + }, + { + "GMT": "10", + "airportId": 777, + "codeIataAirport": "BKP", + "codeIataCity": "BKP", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298911", + "latitudeAirport": -20.5, + "longitudeAirport": 138.5, + "nameAirport": "Barkly Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 778, + "codeIataAirport": "BKQ", + "codeIataCity": "BKQ", + "codeIcaoAirport": "YBCK", + "codeIso2Country": "AU", + "geonameId": "7668684", + "latitudeAirport": -24.434168, + "longitudeAirport": 145.42833, + "nameAirport": "Blackall", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "airportId": 779, + "codeIataAirport": "BKR", + "codeIataCity": "BKR", + "codeIcaoAirport": "FTTK", + "codeIso2Country": "TD", + "geonameId": "2434986", + "latitudeAirport": 12.416667, + "longitudeAirport": 17.233334, + "nameAirport": "Bokoro", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "7", + "airportId": 780, + "codeIataAirport": "BKS", + "codeIataCity": "BKS", + "codeIcaoAirport": "WIPL", + "codeIso2Country": "ID", + "geonameId": "6301246", + "latitudeAirport": -3.866159, + "longitudeAirport": 102.34349, + "nameAirport": "Padangkemiling", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-5", + "airportId": 781, + "codeIataAirport": "BKT", + "codeIataCity": "BKT", + "codeIcaoAirport": "KBKT", + "codeIso2Country": "US", + "geonameId": "4747839", + "latitudeAirport": 37.066666, + "longitudeAirport": -78.0, + "nameAirport": "Blackstone AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 782, + "codeIataAirport": "BKU", + "codeIataCity": "BKU", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1066310", + "latitudeAirport": -23.732222, + "longitudeAirport": 44.39111, + "nameAirport": "Betioky", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-5", + "airportId": 783, + "codeIataAirport": "BKW", + "codeIataCity": "BKW", + "codeIcaoAirport": "KBKW", + "codeIso2Country": "US", + "geonameId": "4819314", + "latitudeAirport": 37.781944, + "longitudeAirport": -81.12417, + "nameAirport": "Beckley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 784, + "codeIataAirport": "BKX", + "codeIataCity": "BKX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5226540", + "latitudeAirport": 44.303333, + "longitudeAirport": -96.81111, + "nameAirport": "Brookings", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 785, + "codeIataAirport": "BKY", + "codeIataCity": "BKY", + "codeIcaoAirport": "FZMA", + "codeIso2Country": "CD", + "geonameId": "7668273", + "latitudeAirport": -2.3, + "longitudeAirport": 28.816668, + "nameAirport": "Kavumu", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "3", + "airportId": 786, + "codeIataAirport": "BKZ", + "codeIataCity": "BKZ", + "codeIcaoAirport": "HTBU", + "codeIso2Country": "TZ", + "geonameId": "6297352", + "latitudeAirport": -1.3, + "longitudeAirport": 31.8, + "nameAirport": "Bukoba", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-4", + "airportId": 787, + "codeIataAirport": "BLA", + "codeIataCity": "BLA", + "codeIcaoAirport": "SVBC", + "codeIso2Country": "VE", + "geonameId": "3648559", + "latitudeAirport": 10.107936, + "longitudeAirport": -64.68589, + "nameAirport": "Gen J A Anzoategui", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-5", + "airportId": 788, + "codeIataAirport": "BLB", + "codeIataCity": "BLB", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "3714426", + "latitudeAirport": 8.973056, + "longitudeAirport": -79.5575, + "nameAirport": "Balboa", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "1", + "airportId": 789, + "codeIataAirport": "BLC", + "codeIataCity": "BLC", + "codeIcaoAirport": "FKKG", + "codeIso2Country": "CM", + "geonameId": "2235029", + "latitudeAirport": 5.897222, + "longitudeAirport": 10.031667, + "nameAirport": "Bamenda", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "-8", + "airportId": 790, + "codeIataAirport": "BLD", + "codeIataCity": "LAS", + "codeIcaoAirport": "KBVU", + "codeIso2Country": "US", + "geonameId": "5500543", + "latitudeAirport": 35.983334, + "longitudeAirport": -114.833336, + "nameAirport": "Boulder City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 791, + "codeIataAirport": "BLE", + "codeIataCity": "BLE", + "codeIcaoAirport": "ESSD", + "codeIso2Country": "SE", + "geonameId": "2720384", + "latitudeAirport": 60.42973, + "longitudeAirport": 15.50826, + "nameAirport": "Dala Airport", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "airportId": 792, + "codeIataAirport": "BLF", + "codeIataCity": "BLF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4814466", + "latitudeAirport": 37.295834, + "longitudeAirport": -81.20805, + "nameAirport": "Princeton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 793, + "codeIataAirport": "BLG", + "codeIataCity": "BLG", + "codeIcaoAirport": "WBGC", + "codeIso2Country": "MY", + "geonameId": "7730867", + "latitudeAirport": 2.7, + "longitudeAirport": 113.78333, + "nameAirport": "Belaga", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-8", + "airportId": 794, + "codeIataAirport": "BLH", + "codeIataCity": "BLH", + "codeIcaoAirport": "KBLH", + "codeIso2Country": "US", + "geonameId": "5329650", + "latitudeAirport": 33.620834, + "longitudeAirport": -114.71889, + "nameAirport": "Blythe", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-8", + "airportId": 795, + "codeIataAirport": "BLI", + "codeIataCity": "BLI", + "codeIcaoAirport": "KBLI", + "codeIso2Country": "US", + "geonameId": "5786905", + "latitudeAirport": 48.795734, + "longitudeAirport": -122.53267, + "nameAirport": "Bellingham", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 796, + "codeIataAirport": "BLJ", + "codeIataCity": "BLJ", + "codeIcaoAirport": "DABT", + "codeIso2Country": "DZ", + "geonameId": "6296374", + "latitudeAirport": 35.566666, + "longitudeAirport": 6.183333, + "nameAirport": "Batna", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "0", + "airportId": 797, + "codeIataAirport": "BLK", + "codeIataCity": "BLK", + "codeIcaoAirport": "EGNH", + "codeIso2Country": "GB", + "geonameId": "6296605", + "latitudeAirport": 53.778385, + "longitudeAirport": -3.041985, + "nameAirport": "Blackpool Airport", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 798, + "codeIataAirport": "BLL", + "codeIataCity": "BLL", + "codeIcaoAirport": "EKBI", + "codeIso2Country": "DK", + "geonameId": "6296703", + "latitudeAirport": 55.747383, + "longitudeAirport": 9.147874, + "nameAirport": "Billund", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-5", + "airportId": 799, + "codeIataAirport": "BLM", + "codeIataCity": "BLM", + "codeIcaoAirport": "KBLM", + "codeIso2Country": "US", + "geonameId": "5095112", + "latitudeAirport": 40.183334, + "longitudeAirport": -74.01667, + "nameAirport": "Monmouth Executive Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 800, + "codeIataAirport": "BLN", + "codeIataCity": "BLN", + "codeIcaoAirport": "YBLA", + "codeIso2Country": "AU", + "geonameId": "7668687", + "latitudeAirport": -36.55, + "longitudeAirport": 145.98334, + "nameAirport": "Benalla", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "0", + "airportId": 801, + "codeIataAirport": "BLO", + "codeIataCity": "BLO", + "codeIcaoAirport": "BIBL", + "codeIso2Country": "IS", + "geonameId": "7730423", + "latitudeAirport": 65.666664, + "longitudeAirport": -20.3, + "nameAirport": "Blonduos", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-5", + "airportId": 802, + "codeIataAirport": "BLP", + "codeIataCity": "BLP", + "codeIcaoAirport": "SPBL", + "codeIso2Country": "PE", + "geonameId": "7730868", + "latitudeAirport": -16.583332, + "longitudeAirport": -69.416664, + "nameAirport": "Bellavista", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "1", + "airportId": 803, + "codeIataAirport": "BLQ", + "codeIataCity": "BLQ", + "codeIcaoAirport": "LIPE", + "codeIso2Country": "IT", + "geonameId": "6290247", + "latitudeAirport": 44.529266, + "longitudeAirport": 11.293289, + "nameAirport": "Guglielmo Marconi", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "5.30", + "airportId": 804, + "codeIataAirport": "BLR", + "codeIataCity": "BLR", + "codeIcaoAirport": "VOBL", + "codeIso2Country": "IN", + "geonameId": "7303386", + "latitudeAirport": 13.198889, + "longitudeAirport": 77.70556, + "nameAirport": "Bangalore International Airport", + "nameCountry": "India", + "phone": "080-6678-2425", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "airportId": 805, + "codeIataAirport": "BLS", + "codeIataCity": "BLS", + "codeIcaoAirport": "YBLL", + "codeIso2Country": "AU", + "geonameId": "7730869", + "latitudeAirport": -28.05, + "longitudeAirport": 147.48334, + "nameAirport": "Bollon", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 806, + "codeIataAirport": "BLT", + "codeIataCity": "BLT", + "codeIcaoAirport": "YBTR", + "codeIso2Country": "AU", + "geonameId": "7668693", + "latitudeAirport": -23.602184, + "longitudeAirport": 148.8084, + "nameAirport": "Blackwater", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-8", + "airportId": 807, + "codeIataAirport": "BLU", + "codeIataCity": "BLU", + "codeIcaoAirport": "KBLU", + "codeIso2Country": "US", + "geonameId": "5329473", + "latitudeAirport": 39.25, + "longitudeAirport": -120.71667, + "nameAirport": "Blue Canyon", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 808, + "codeIataAirport": "BLV", + "codeIataCity": "BLV", + "codeIcaoAirport": "KBLV", + "codeIso2Country": "US", + "geonameId": "4238794", + "latitudeAirport": 38.65178, + "longitudeAirport": -89.85183, + "nameAirport": "Belleville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 809, + "codeIataAirport": "BLX", + "codeIataCity": "BLX", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "3182210", + "latitudeAirport": 46.15, + "longitudeAirport": 12.216667, + "nameAirport": "Belluno", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "0", + "airportId": 810, + "codeIataAirport": "BLY", + "codeIataCity": "BLY", + "codeIcaoAirport": "EIBT", + "codeIso2Country": "IE", + "geonameId": "7668215", + "latitudeAirport": 54.233334, + "longitudeAirport": -10.0, + "nameAirport": "Belmullet", + "nameCountry": "Ireland", + "phone": "", + "timezone": "Europe/Dublin" + }, + { + "GMT": "2", + "airportId": 811, + "codeIataAirport": "BLZ", + "codeIataCity": "BLZ", + "codeIcaoAirport": "FWCL", + "codeIso2Country": "MW", + "geonameId": "931755", + "latitudeAirport": -15.674722, + "longitudeAirport": 34.970833, + "nameAirport": "Chileka", + "nameCountry": "Malawi", + "phone": "", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "1", + "airportId": 812, + "codeIataAirport": "BMA", + "codeIataCity": "STO", + "codeIcaoAirport": "ESSB", + "codeIso2Country": "SE", + "geonameId": "2719114", + "latitudeAirport": 59.35566, + "longitudeAirport": 17.94608, + "nameAirport": "Bromma", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 813, + "codeIataAirport": "BMB", + "codeIataCity": "BMB", + "codeIcaoAirport": "FZFU", + "codeIso2Country": "CD", + "geonameId": "7730561", + "latitudeAirport": 2.19, + "longitudeAirport": 22.473333, + "nameAirport": "Bumba", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "-7", + "airportId": 814, + "codeIataAirport": "BMC", + "codeIataCity": "BMC", + "codeIcaoAirport": "KBMC", + "codeIso2Country": "US", + "geonameId": "5771966", + "latitudeAirport": 41.549168, + "longitudeAirport": -112.062225, + "nameAirport": "Brigham City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "3", + "airportId": 815, + "codeIataAirport": "BMD", + "codeIataCity": "BMD", + "codeIcaoAirport": "FMML", + "codeIso2Country": "MG", + "geonameId": "1067532", + "latitudeAirport": -20.733334, + "longitudeAirport": 44.05, + "nameAirport": "Belo", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "8", + "airportId": 816, + "codeIataAirport": "BME", + "codeIataCity": "BME", + "codeIcaoAirport": "YBRM", + "codeIso2Country": "AU", + "geonameId": "6301303", + "latitudeAirport": -17.95264, + "longitudeAirport": 122.23429, + "nameAirport": "Broome", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "airportId": 817, + "codeIataAirport": "BMF", + "codeIataCity": "BMF", + "codeIcaoAirport": "FEGM", + "codeIso2Country": "CF", + "geonameId": "7668237", + "latitudeAirport": 5.733333, + "longitudeAirport": 22.8, + "nameAirport": "Bakouma", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "-5", + "airportId": 818, + "codeIataAirport": "BMG", + "codeIataCity": "BMG", + "codeIcaoAirport": "KBMG", + "codeIso2Country": "US", + "geonameId": "4261527", + "latitudeAirport": 39.14, + "longitudeAirport": -86.61472, + "nameAirport": "Bloomington", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "10", + "airportId": 819, + "codeIataAirport": "BMH", + "codeIataCity": "BMH", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298888", + "latitudeAirport": -6.416667, + "longitudeAirport": 144.58333, + "nameAirport": "Bomai", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 820, + "codeIataAirport": "BMI", + "codeIataCity": "BMI", + "codeIcaoAirport": "KBMI", + "codeIso2Country": "US", + "geonameId": "4885175", + "latitudeAirport": 40.48401, + "longitudeAirport": -88.91483, + "nameAirport": "Central Illinois Regional Airport at Bloomington-Normal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 821, + "codeIataAirport": "BMJ", + "codeIataCity": "BMJ", + "codeIcaoAirport": "SYBR", + "codeIso2Country": "GY", + "geonameId": "7730871", + "latitudeAirport": 6.75, + "longitudeAirport": -60.0, + "nameAirport": "Baramita", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "1", + "airportId": 822, + "codeIataAirport": "BMK", + "codeIataCity": "BMK", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2946206", + "latitudeAirport": 53.6, + "longitudeAirport": 6.7, + "nameAirport": "Borkum", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "airportId": 823, + "codeIataAirport": "BML", + "codeIataCity": "BML", + "codeIcaoAirport": "KBML", + "codeIso2Country": "US", + "geonameId": "5083333", + "latitudeAirport": 44.574722, + "longitudeAirport": -71.17639, + "nameAirport": "Berlin Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 824, + "codeIataAirport": "BMM", + "codeIataCity": "BMM", + "codeIcaoAirport": "FOOB", + "codeIso2Country": "GA", + "geonameId": "6297066", + "latitudeAirport": 2.075833, + "longitudeAirport": 11.490833, + "nameAirport": "Bitam", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "3", + "airportId": 825, + "codeIataAirport": "BMN", + "codeIataCity": "BMN", + "codeIcaoAirport": "", + "codeIso2Country": "IQ", + "geonameId": "8260953", + "latitudeAirport": 37.1, + "longitudeAirport": 43.266666, + "nameAirport": "Bamerny", + "nameCountry": "Iraq", + "phone": "", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "6.30", + "airportId": 826, + "codeIataAirport": "BMO", + "codeIataCity": "BMO", + "codeIcaoAirport": "VYBM", + "codeIso2Country": "MM", + "geonameId": "8260784", + "latitudeAirport": 24.27389, + "longitudeAirport": 97.25166, + "nameAirport": "Bhamo", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "10", + "airportId": 827, + "codeIataAirport": "BMP", + "codeIataCity": "BMP", + "codeIcaoAirport": "YBPI", + "codeIso2Country": "AU", + "geonameId": "7730872", + "latitudeAirport": -20.783333, + "longitudeAirport": 149.23334, + "nameAirport": "Brampton Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "airportId": 828, + "codeIataAirport": "BMQ", + "codeIataCity": "BMQ", + "codeIcaoAirport": "KBMQ", + "codeIso2Country": "KE", + "geonameId": "7730873", + "latitudeAirport": -4.5, + "longitudeAirport": 39.833332, + "nameAirport": "Bamburi", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "1", + "airportId": 829, + "codeIataAirport": "BMR", + "codeIataCity": "BMR", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2953006", + "latitudeAirport": 53.716667, + "longitudeAirport": 7.4, + "nameAirport": "Baltrum", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-3", + "airportId": 830, + "codeIataAirport": "BMS", + "codeIataCity": "BMS", + "codeIcaoAirport": "SNBU", + "codeIso2Country": "BR", + "geonameId": "7730874", + "latitudeAirport": -14.233333, + "longitudeAirport": -41.63333, + "nameAirport": "Brumado", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "-6", + "airportId": 831, + "codeIataAirport": "BMT", + "codeIataCity": "BPT", + "codeIcaoAirport": "KBMT", + "codeIso2Country": "US", + "geonameId": "4673007", + "latitudeAirport": 30.083332, + "longitudeAirport": -94.1, + "nameAirport": "Beaumont Municipalcipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 832, + "codeIataAirport": "BMU", + "codeIataCity": "BMU", + "codeIcaoAirport": "WRRB", + "codeIso2Country": "ID", + "geonameId": "6301280", + "latitudeAirport": -8.5, + "longitudeAirport": 118.916664, + "nameAirport": "Bima", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "7", + "airportId": 833, + "codeIataAirport": "BMV", + "codeIataCity": "BMV", + "codeIcaoAirport": "VVBM", + "codeIso2Country": "VN", + "geonameId": "7668649", + "latitudeAirport": 12.666667, + "longitudeAirport": 108.05, + "nameAirport": "Phung-Duc", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "1", + "airportId": 834, + "codeIataAirport": "BMW", + "codeIataCity": "BMW", + "codeIcaoAirport": "DATM", + "codeIso2Country": "DZ", + "geonameId": "6296385", + "latitudeAirport": 21.316668, + "longitudeAirport": 1.033333, + "nameAirport": "Bordj Badji Mokhtar", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-9", + "airportId": 835, + "codeIataAirport": "BMX", + "codeIataCity": "BMX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 59.361942, + "longitudeAirport": -155.25667, + "nameAirport": "Big Mountain", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "11", + "airportId": 836, + "codeIataAirport": "BMY", + "codeIataCity": "BMY", + "codeIcaoAirport": "NWWC", + "codeIso2Country": "NC", + "geonameId": "7730137", + "latitudeAirport": -19.75, + "longitudeAirport": 163.66667, + "nameAirport": "Belep Island", + "nameCountry": "New Caledonia", + "phone": "", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "10", + "airportId": 837, + "codeIataAirport": "BMZ", + "codeIataCity": "BMZ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298992", + "latitudeAirport": -7.833333, + "longitudeAirport": 143.23334, + "nameAirport": "Bamu", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 838, + "codeIataAirport": "BNA", + "codeIataCity": "BNA", + "codeIcaoAirport": "KBNA", + "codeIso2Country": "US", + "geonameId": "4644589", + "latitudeAirport": 36.13174, + "longitudeAirport": -86.668945, + "nameAirport": "Nashville International", + "nameCountry": "United States", + "phone": "615-275-1675", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 839, + "codeIataAirport": "BNB", + "codeIataCity": "BNB", + "codeIcaoAirport": "FZGN", + "codeIso2Country": "CD", + "geonameId": "6297148", + "latitudeAirport": -0.233056, + "longitudeAirport": 20.87, + "nameAirport": "Boende", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "2", + "airportId": 840, + "codeIataAirport": "BNC", + "codeIataCity": "BNC", + "codeIcaoAirport": "FZNP", + "codeIso2Country": "CD", + "geonameId": "219057", + "latitudeAirport": 0.566667, + "longitudeAirport": 29.466667, + "nameAirport": "Beni", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "3.30", + "airportId": 841, + "codeIataAirport": "BND", + "codeIataCity": "BND", + "codeIcaoAirport": "OIKB", + "codeIso2Country": "IR", + "geonameId": "6300059", + "latitudeAirport": 27.21059, + "longitudeAirport": 56.368385, + "nameAirport": "Bandar Abbas", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "10", + "airportId": 842, + "codeIataAirport": "BNE", + "codeIataCity": "BNE", + "codeIcaoAirport": "YBBN", + "codeIso2Country": "AU", + "geonameId": "6301292", + "latitudeAirport": -27.40303, + "longitudeAirport": 153.10905, + "nameAirport": "Brisbane International", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "airportId": 843, + "codeIataAirport": "BNF", + "codeIataCity": "BNF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5844535", + "latitudeAirport": 57.0, + "longitudeAirport": -135.0, + "nameAirport": "Warm Spring Bay SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "-8", + "airportId": 844, + "codeIataAirport": "BNG", + "codeIataCity": "BNG", + "codeIcaoAirport": "KBNG", + "codeIso2Country": "US", + "geonameId": "5326039", + "latitudeAirport": 33.933334, + "longitudeAirport": -116.86667, + "nameAirport": "Banning", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 845, + "codeIataAirport": "BNH", + "codeIataCity": "HFD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.766666, + "longitudeAirport": -72.683334, + "nameAirport": "Barnes", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 846, + "codeIataAirport": "BNI", + "codeIataCity": "BNI", + "codeIcaoAirport": "DNBE", + "codeIso2Country": "NG", + "geonameId": "2347283", + "latitudeAirport": 6.316943, + "longitudeAirport": 5.603863, + "nameAirport": "Benin City", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "10", + "airportId": 847, + "codeIataAirport": "BNK", + "codeIataCity": "BNK", + "codeIcaoAirport": "YBNA", + "codeIso2Country": "AU", + "geonameId": "7730243", + "latitudeAirport": -28.837606, + "longitudeAirport": 153.5564, + "nameAirport": "Ballina Byron Gateway", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-5", + "airportId": 848, + "codeIataAirport": "BNL", + "codeIataCity": "BNL", + "codeIcaoAirport": "KBNL", + "codeIso2Country": "US", + "geonameId": "4570021", + "latitudeAirport": 33.25, + "longitudeAirport": -81.38333, + "nameAirport": "Barnwell Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 849, + "codeIataAirport": "BNM", + "codeIataCity": "BNM", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2099296", + "latitudeAirport": -9.116667, + "longitudeAirport": 147.61667, + "nameAirport": "Bodinumu", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 850, + "codeIataAirport": "BNN", + "codeIataCity": "BNN", + "codeIcaoAirport": "ENBN", + "codeIso2Country": "NO", + "geonameId": "6296725", + "latitudeAirport": 65.4617, + "longitudeAirport": 12.215772, + "nameAirport": "Bronnoy", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-8", + "airportId": 851, + "codeIataAirport": "BNO", + "codeIataCity": "BNO", + "codeIcaoAirport": "KBNO", + "codeIso2Country": "US", + "geonameId": "5716842", + "latitudeAirport": 43.583332, + "longitudeAirport": -118.95, + "nameAirport": "Burns", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "5", + "airportId": 852, + "codeIataAirport": "BNP", + "codeIataCity": "BNP", + "codeIcaoAirport": "", + "codeIso2Country": "PK", + "geonameId": "0", + "latitudeAirport": 33.0, + "longitudeAirport": 70.666664, + "nameAirport": "Bannu", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "0", + "airportId": 853, + "codeIataAirport": "BNR", + "codeIataCity": "BNR", + "codeIcaoAirport": "DFOB", + "codeIso2Country": "BF", + "geonameId": "7730463", + "latitudeAirport": 10.666667, + "longitudeAirport": -4.666667, + "nameAirport": "Banfora", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-4", + "airportId": 854, + "codeIataAirport": "BNS", + "codeIataCity": "BNS", + "codeIcaoAirport": "SVBI", + "codeIso2Country": "VE", + "geonameId": "6300841", + "latitudeAirport": 8.618056, + "longitudeAirport": -70.22111, + "nameAirport": "Barinas", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "10", + "airportId": 855, + "codeIataAirport": "BNT", + "codeIataCity": "BNT", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2098818", + "latitudeAirport": -5.75, + "longitudeAirport": 145.45, + "nameAirport": "Bundi", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "airportId": 856, + "codeIataAirport": "BNU", + "codeIataCity": "BNU", + "codeIcaoAirport": "SSBL", + "codeIso2Country": "BR", + "geonameId": "7730875", + "latitudeAirport": -27.0, + "longitudeAirport": -49.0, + "nameAirport": "Blumenau", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "airportId": 857, + "codeIataAirport": "BNW", + "codeIataCity": "BNW", + "codeIcaoAirport": "KBNW", + "codeIso2Country": "US", + "geonameId": "4849071", + "latitudeAirport": 42.066666, + "longitudeAirport": -93.88333, + "nameAirport": "Boone", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 858, + "codeIataAirport": "BNX", + "codeIataCity": "BNX", + "codeIcaoAirport": "LQBK", + "codeIso2Country": "BA", + "geonameId": "6299693", + "latitudeAirport": 44.933334, + "longitudeAirport": 17.3, + "nameAirport": "Banja Luka", + "nameCountry": "Bosnia and Herzegovina", + "phone": "", + "timezone": "Europe/Sarajevo" + }, + { + "GMT": "11", + "airportId": 859, + "codeIataAirport": "BNY", + "codeIataCity": "BNY", + "codeIcaoAirport": "AGGB", + "codeIso2Country": "SB", + "geonameId": "8298647", + "latitudeAirport": -11.3, + "longitudeAirport": 159.81667, + "nameAirport": "Bellona", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "1", + "airportId": 860, + "codeIataAirport": "BOA", + "codeIataCity": "BOA", + "codeIcaoAirport": "FZAJ", + "codeIso2Country": "CD", + "geonameId": "7730552", + "latitudeAirport": -5.866667, + "longitudeAirport": 13.066667, + "nameAirport": "Boma", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "-10", + "airportId": 861, + "codeIataAirport": "BOB", + "codeIataCity": "BOB", + "codeIcaoAirport": "NTTB", + "codeIso2Country": "PF", + "geonameId": "6299965", + "latitudeAirport": -16.446207, + "longitudeAirport": -151.75447, + "nameAirport": "Motu Mute", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-5", + "airportId": 862, + "codeIataAirport": "BOC", + "codeIataCity": "BOC", + "codeIcaoAirport": "MPBO", + "codeIso2Country": "PA", + "geonameId": "6299894", + "latitudeAirport": 9.34, + "longitudeAirport": -82.251945, + "nameAirport": "Bocas Del Toro", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "1", + "airportId": 863, + "codeIataAirport": "BOD", + "codeIataCity": "BOD", + "codeIcaoAirport": "LFBD", + "codeIso2Country": "FR", + "geonameId": "6299367", + "latitudeAirport": 44.83102, + "longitudeAirport": -0.70217, + "nameAirport": "Mérignac", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 864, + "codeIataAirport": "BOE", + "codeIataCity": "BOE", + "codeIcaoAirport": "FCOB", + "codeIso2Country": "CG", + "geonameId": "7730499", + "latitudeAirport": -1.033333, + "longitudeAirport": 15.383333, + "nameAirport": "Boundji", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-5", + "airportId": 865, + "codeIataAirport": "BOF", + "codeIataCity": "WAS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.9, + "longitudeAirport": -77.03333, + "nameAirport": "Bolling AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 866, + "codeIataAirport": "BOG", + "codeIataCity": "BOG", + "codeIcaoAirport": "SKBO", + "codeIso2Country": "CO", + "geonameId": "6300736", + "latitudeAirport": 4.698602, + "longitudeAirport": -74.143135, + "nameAirport": "El Nuevo Dorado International", + "nameCountry": "Colombia", + "phone": " +57(0)91 425 1000", + "timezone": "America/Bogota" + }, + { + "GMT": "0", + "airportId": 867, + "codeIataAirport": "BOH", + "codeIataCity": "BOH", + "codeIcaoAirport": "EGHH", + "codeIso2Country": "GB", + "geonameId": "6296591", + "latitudeAirport": 50.77827, + "longitudeAirport": -1.832476, + "nameAirport": "Bournemouth International", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-7", + "airportId": 868, + "codeIataAirport": "BOI", + "codeIataCity": "BOI", + "codeIcaoAirport": "KBOI", + "codeIso2Country": "US", + "geonameId": "5586438", + "latitudeAirport": 43.569263, + "longitudeAirport": -116.22193, + "nameAirport": "Boise Air Terminal/Gowen Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Boise" + }, + { + "GMT": "2", + "airportId": 869, + "codeIataAirport": "BOJ", + "codeIataCity": "BOJ", + "codeIcaoAirport": "LBBG", + "codeIso2Country": "BG", + "geonameId": "6299305", + "latitudeAirport": 42.416668, + "longitudeAirport": 27.283333, + "nameAirport": "Bourgas", + "nameCountry": "Bulgaria", + "phone": "", + "timezone": "Europe/Sofia" + }, + { + "GMT": "-8", + "airportId": 870, + "codeIataAirport": "BOK", + "codeIataCity": "BOK", + "codeIcaoAirport": "KBOK", + "codeIso2Country": "US", + "geonameId": "5715909", + "latitudeAirport": 42.05, + "longitudeAirport": -124.28333, + "nameAirport": "Brookings State", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "0", + "airportId": 871, + "codeIataAirport": "BOL", + "codeIataCity": "BOL", + "codeIcaoAirport": "EGQB", + "codeIso2Country": "GB", + "geonameId": "7730474", + "latitudeAirport": 55.0, + "longitudeAirport": -7.0, + "nameAirport": "Ballykelly", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "5.30", + "airportId": 872, + "codeIataAirport": "BOM", + "codeIataCity": "BOM", + "codeIcaoAirport": "VABB", + "codeIso2Country": "IN", + "geonameId": "6301032", + "latitudeAirport": 19.095509, + "longitudeAirport": 72.87497, + "nameAirport": "Chhatrapati Shivaji International (Sahar International)", + "nameCountry": "India", + "phone": "(022) 2626-40", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-4", + "airportId": 873, + "codeIataAirport": "BON", + "codeIataCity": "BON", + "codeIcaoAirport": "TNCB", + "codeIso2Country": "BQ", + "geonameId": "3513745", + "latitudeAirport": 12.133403, + "longitudeAirport": -68.27687, + "nameAirport": "Flamingo International", + "nameCountry": "Bonaire, Saint Eustatius and Saba ", + "phone": "", + "timezone": "America/Kralendijk" + }, + { + "GMT": "1", + "airportId": 874, + "codeIataAirport": "BOO", + "codeIataCity": "BOO", + "codeIcaoAirport": "ENBO", + "codeIso2Country": "NO", + "geonameId": "6296726", + "latitudeAirport": 67.27262, + "longitudeAirport": 14.367839, + "nameAirport": "Bodo", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 875, + "codeIataAirport": "BOP", + "codeIataCity": "BOP", + "codeIcaoAirport": "FEFO", + "codeIso2Country": "CF", + "geonameId": "6296977", + "latitudeAirport": 6.0, + "longitudeAirport": 15.666667, + "nameAirport": "Bouar", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "-5", + "airportId": 876, + "codeIataAirport": "BOS", + "codeIataCity": "BOS", + "codeIcaoAirport": "KBOS", + "codeIso2Country": "US", + "geonameId": "4937646", + "latitudeAirport": 42.36646, + "longitudeAirport": -71.02018, + "nameAirport": "Logan International", + "nameCountry": "United States", + "phone": "1-800-23-LOGAN(56426)", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 877, + "codeIataAirport": "BOT", + "codeIataCity": "BOT", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2099079", + "latitudeAirport": -7.233333, + "longitudeAirport": 141.08333, + "nameAirport": "Boset", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 878, + "codeIataAirport": "BOU", + "codeIataCity": "BOU", + "codeIcaoAirport": "LFLD", + "codeIso2Country": "FR", + "geonameId": "6299400", + "latitudeAirport": 47.15, + "longitudeAirport": 2.416667, + "nameAirport": "Bourges", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "airportId": 879, + "codeIataAirport": "BOV", + "codeIataCity": "BOV", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298814", + "latitudeAirport": -3.366667, + "longitudeAirport": 153.33333, + "nameAirport": "Boang", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 880, + "codeIataAirport": "BOW", + "codeIataCity": "BOW", + "codeIcaoAirport": "KBOW", + "codeIso2Country": "US", + "geonameId": "4146730", + "latitudeAirport": 27.9, + "longitudeAirport": -81.833336, + "nameAirport": "Bartow", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9.30", + "airportId": 881, + "codeIataAirport": "BOX", + "codeIataCity": "BOX", + "codeIcaoAirport": "BOCH", + "codeIso2Country": "AU", + "geonameId": "7730876", + "latitudeAirport": -16.066668, + "longitudeAirport": 136.28334, + "nameAirport": "Borroloola", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "0", + "airportId": 882, + "codeIataAirport": "BOY", + "codeIataCity": "BOY", + "codeIcaoAirport": "DFOO", + "codeIso2Country": "BF", + "geonameId": "6296412", + "latitudeAirport": 11.163611, + "longitudeAirport": -4.324444, + "nameAirport": "Borgo", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "1", + "airportId": 883, + "codeIataAirport": "BOZ", + "codeIataCity": "BOZ", + "codeIcaoAirport": "FEGZ", + "codeIso2Country": "CF", + "geonameId": "7730502", + "latitudeAirport": 6.416667, + "longitudeAirport": 16.583332, + "nameAirport": "Bozoum", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "10", + "airportId": 884, + "codeIataAirport": "BPB", + "codeIataCity": "BPB", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2099116", + "latitudeAirport": -9.133333, + "longitudeAirport": 147.53334, + "nameAirport": "Boridi", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 885, + "codeIataAirport": "BPC", + "codeIataCity": "BPC", + "codeIcaoAirport": "FKKV", + "codeIso2Country": "CM", + "geonameId": "6297004", + "latitudeAirport": 5.916667, + "longitudeAirport": 10.15, + "nameAirport": "Bamenda", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "10", + "airportId": 886, + "codeIataAirport": "BPD", + "codeIataCity": "BPD", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260780", + "latitudeAirport": -7.75, + "longitudeAirport": 147.01666, + "nameAirport": "Bapi", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "6.30", + "airportId": 887, + "codeIataAirport": "BPE", + "codeIataCity": "BPE", + "codeIcaoAirport": "", + "codeIso2Country": "MM", + "geonameId": "0", + "latitudeAirport": 24.0, + "longitudeAirport": 96.0, + "nameAirport": "Bagan", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "11", + "airportId": 888, + "codeIataAirport": "BPF", + "codeIataCity": "BPF", + "codeIcaoAirport": "AGBT", + "codeIso2Country": "SB", + "geonameId": "8299145", + "latitudeAirport": -8.55, + "longitudeAirport": 158.11667, + "nameAirport": "Batuna Aerodrome", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-4", + "airportId": 889, + "codeIataAirport": "BPG", + "codeIataCity": "BPG", + "codeIcaoAirport": "SBBW", + "codeIso2Country": "BR", + "geonameId": "6300608", + "latitudeAirport": -15.85, + "longitudeAirport": -52.38333, + "nameAirport": "Barra Do Garcas", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "8", + "airportId": 890, + "codeIataAirport": "BPH", + "codeIataCity": "BPH", + "codeIcaoAirport": "RPMF", + "codeIso2Country": "PH", + "geonameId": "1724768", + "latitudeAirport": 8.196667, + "longitudeAirport": 126.32111, + "nameAirport": "Bislig", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-7", + "airportId": 891, + "codeIataAirport": "BPI", + "codeIataCity": "BPI", + "codeIcaoAirport": "KBPI", + "codeIso2Country": "US", + "geonameId": "5818709", + "latitudeAirport": 42.533333, + "longitudeAirport": -110.11667, + "nameAirport": "Big Piney-marbleton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "airportId": 892, + "codeIataAirport": "BPK", + "codeIataCity": "BPK", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "0", + "latitudeAirport": -5.529722, + "longitudeAirport": 141.74973, + "nameAirport": "Biangabip", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 893, + "codeIataAirport": "BPL", + "codeIataCity": "BPL", + "codeIcaoAirport": "ZWBL", + "codeIso2Country": "CN", + "geonameId": "8260766", + "latitudeAirport": 44.904232, + "longitudeAirport": 82.024185, + "nameAirport": "Alashankou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "5.30", + "airportId": 894, + "codeIataAirport": "BPM", + "codeIataCity": "HYD", + "codeIcaoAirport": "VOHY", + "codeIso2Country": "IN", + "geonameId": "6301124", + "latitudeAirport": 17.449114, + "longitudeAirport": 78.47183, + "nameAirport": "Begumpet", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "8", + "airportId": 895, + "codeIataAirport": "BPO", + "codeIataCity": "BPO", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Bo'ao Railway Station", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-3", + "airportId": 896, + "codeIataAirport": "BPS", + "codeIataCity": "BPS", + "codeIcaoAirport": "SBPS", + "codeIso2Country": "BR", + "geonameId": "6300659", + "latitudeAirport": -16.441158, + "longitudeAirport": -39.081097, + "nameAirport": "Porto Seguro", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "-6", + "airportId": 897, + "codeIataAirport": "BPT", + "codeIataCity": "BPT", + "codeIcaoAirport": "KBPT", + "codeIso2Country": "US", + "geonameId": "4700822", + "latitudeAirport": 29.950832, + "longitudeAirport": -94.02, + "nameAirport": "Jefferson County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "airportId": 898, + "codeIataAirport": "BPU", + "codeIataCity": "BPU", + "codeIcaoAirport": "", + "codeIso2Country": "JP", + "geonameId": "0", + "latitudeAirport": 33.25, + "longitudeAirport": 131.5, + "nameAirport": "Beppu", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "8", + "airportId": 899, + "codeIataAirport": "BPX", + "codeIataCity": "BPX", + "codeIcaoAirport": "ZUBD", + "codeIso2Country": "CN", + "geonameId": "7730300", + "latitudeAirport": 30.555834, + "longitudeAirport": 97.10667, + "nameAirport": "Bangda", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "airportId": 900, + "codeIataAirport": "BPY", + "codeIataCity": "BPY", + "codeIcaoAirport": "FMNQ", + "codeIso2Country": "MG", + "geonameId": "1066703", + "latitudeAirport": -16.75, + "longitudeAirport": 44.483334, + "nameAirport": "Besalampy", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "8", + "airportId": 901, + "codeIataAirport": "BQA", + "codeIataCity": "BQA", + "codeIcaoAirport": "RPUR", + "codeIso2Country": "PH", + "geonameId": "1728265", + "latitudeAirport": 15.0, + "longitudeAirport": 121.083336, + "nameAirport": "Baler", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "8", + "airportId": 902, + "codeIataAirport": "BQB", + "codeIataCity": "BQB", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7730187", + "latitudeAirport": -33.716667, + "longitudeAirport": 115.25, + "nameAirport": "Bussellton", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "0", + "airportId": 903, + "codeIataAirport": "BQE", + "codeIataCity": "BQE", + "codeIcaoAirport": "GGBU", + "codeIso2Country": "GW", + "geonameId": "7730579", + "latitudeAirport": 11.3, + "longitudeAirport": -15.85, + "nameAirport": "Bubaque", + "nameCountry": "Guinea-Bissau", + "phone": "", + "timezone": "Africa/Bissau" + }, + { + "GMT": "10", + "airportId": 904, + "codeIataAirport": "BQG", + "codeIataCity": "BQG", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "8260786", + "latitudeAirport": 52.378334, + "longitudeAirport": 140.44833, + "nameAirport": "Bogorodskoye", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Vladivostok" + }, + { + "GMT": "0", + "airportId": 905, + "codeIataAirport": "BQH", + "codeIataCity": "LON", + "codeIcaoAirport": "EGKB", + "codeIso2Country": "GB", + "geonameId": "6296597", + "latitudeAirport": 51.333332, + "longitudeAirport": 0.033333, + "nameAirport": "Biggin Hill", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "airportId": 906, + "codeIataAirport": "BQI", + "codeIataCity": "BQI", + "codeIcaoAirport": "", + "codeIso2Country": "NA", + "geonameId": "877349", + "latitudeAirport": -18.118055, + "longitudeAirport": 21.629723, + "nameAirport": "Bagani", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "10", + "airportId": 907, + "codeIataAirport": "BQJ", + "codeIataCity": "BQJ", + "codeIcaoAirport": "UEBB", + "codeIso2Country": "RU", + "geonameId": "0", + "latitudeAirport": 67.655, + "longitudeAirport": 134.641667, + "nameAirport": "Batagay", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Vladivostok" + }, + { + "GMT": "-5", + "airportId": 908, + "codeIataAirport": "BQK", + "codeIataCity": "SSI", + "codeIcaoAirport": "KBQK", + "codeIso2Country": "US", + "geonameId": "4197379", + "latitudeAirport": 31.166668, + "longitudeAirport": -81.48333, + "nameAirport": "Glynco Jetport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 909, + "codeIataAirport": "BQL", + "codeIataCity": "BQL", + "codeIcaoAirport": "YBOU", + "codeIso2Country": "AU", + "geonameId": "7730244", + "latitudeAirport": -22.9, + "longitudeAirport": 139.9, + "nameAirport": "Boulia", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-4", + "airportId": 910, + "codeIataAirport": "BQN", + "codeIataCity": "BQN", + "codeIcaoAirport": "TJBQ", + "codeIso2Country": "PR", + "geonameId": "4567576", + "latitudeAirport": 18.495832, + "longitudeAirport": -67.13, + "nameAirport": "Borinquen", + "nameCountry": "Puerto Rico", + "phone": "", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "0", + "airportId": 911, + "codeIataAirport": "BQO", + "codeIataCity": "BQO", + "codeIcaoAirport": "DIBN", + "codeIso2Country": "CI", + "geonameId": "7730467", + "latitudeAirport": 9.266667, + "longitudeAirport": -3.0, + "nameAirport": "Bouna", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "-3", + "airportId": 912, + "codeIataAirport": "BQQ", + "codeIataCity": "BQQ", + "codeIcaoAirport": "SNBX", + "codeIso2Country": "BR", + "geonameId": "6453436", + "latitudeAirport": -11.083333, + "longitudeAirport": -43.13333, + "nameAirport": "Barra", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "9", + "airportId": 913, + "codeIataAirport": "BQS", + "codeIataCity": "BQS", + "codeIcaoAirport": "UHBB", + "codeIso2Country": "RU", + "geonameId": "7668501", + "latitudeAirport": 50.416668, + "longitudeAirport": 127.4, + "nameAirport": "Blagoveschensk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "3", + "airportId": 914, + "codeIataAirport": "BQT", + "codeIataCity": "BQT", + "codeIcaoAirport": "UMBB", + "codeIso2Country": "BY", + "geonameId": "6300976", + "latitudeAirport": 52.11667, + "longitudeAirport": 23.883333, + "nameAirport": "Brest", + "nameCountry": "Belarus", + "phone": "", + "timezone": "Europe/Minsk" + }, + { + "GMT": "-4", + "airportId": 915, + "codeIataAirport": "BQU", + "codeIataCity": "BQU", + "codeIcaoAirport": "TVSB", + "codeIso2Country": "VC", + "geonameId": "6453419", + "latitudeAirport": 12.986667, + "longitudeAirport": -61.264168, + "nameAirport": "J. F. Mitchell", + "nameCountry": "Saint Vincent and the Grenadines", + "phone": "", + "timezone": "America/St_Vincent" + }, + { + "GMT": "-9", + "airportId": 916, + "codeIataAirport": "BQV", + "codeIataCity": "GST", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 58.416668, + "longitudeAirport": -135.73334, + "nameAirport": "Bartlett SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Juneau" + }, + { + "GMT": "8", + "airportId": 917, + "codeIataAirport": "BQW", + "codeIataCity": "BQW", + "codeIcaoAirport": "YBGO", + "codeIso2Country": "AU", + "geonameId": "7730877", + "latitudeAirport": -20.183332, + "longitudeAirport": 127.8, + "nameAirport": "Balgo Hills", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-3", + "airportId": 918, + "codeIataAirport": "BRA", + "codeIataCity": "BRA", + "codeIcaoAirport": "SNBR", + "codeIso2Country": "BR", + "geonameId": "7730878", + "latitudeAirport": -12.073056, + "longitudeAirport": -45.00833, + "nameAirport": "Barreiras", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "-3", + "airportId": 919, + "codeIataAirport": "BRB", + "codeIataCity": "BRB", + "codeIcaoAirport": "SBRR", + "codeIso2Country": "BR", + "geonameId": "7730879", + "latitudeAirport": -2.910626, + "longitudeAirport": -57.11111, + "nameAirport": "Barreirinhas", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-3", + "airportId": 920, + "codeIataAirport": "BRC", + "codeIataCity": "BRC", + "codeIcaoAirport": "SAZS", + "codeIso2Country": "AR", + "geonameId": "6300590", + "latitudeAirport": -41.145966, + "longitudeAirport": -71.16109, + "nameAirport": "San Carlos de Bariloche Airport", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-6", + "airportId": 921, + "codeIataAirport": "BRD", + "codeIataCity": "BRD", + "codeIcaoAirport": "KBRD", + "codeIso2Country": "US", + "geonameId": "5019123", + "latitudeAirport": 46.39722, + "longitudeAirport": -94.1375, + "nameAirport": "Brainerd Lakes Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 922, + "codeIataAirport": "BRE", + "codeIataCity": "BRE", + "codeIcaoAirport": "EDDW", + "codeIso2Country": "DE", + "geonameId": "3208171", + "latitudeAirport": 53.05297, + "longitudeAirport": 8.785352, + "nameAirport": "Bremen", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "0", + "airportId": 923, + "codeIataAirport": "BRF", + "codeIataCity": "LBA", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 53.8, + "longitudeAirport": -1.75, + "nameAirport": "Bradford", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "10", + "airportId": 924, + "codeIataAirport": "BRH", + "codeIataCity": "BRH", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299003", + "latitudeAirport": -5.7, + "longitudeAirport": 145.36667, + "nameAirport": "Brahman", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 925, + "codeIataAirport": "BRI", + "codeIataCity": "BRI", + "codeIcaoAirport": "LIBD", + "codeIso2Country": "IT", + "geonameId": "6299535", + "latitudeAirport": 41.13388, + "longitudeAirport": 16.76391, + "nameAirport": "Palese", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "10", + "airportId": 926, + "codeIataAirport": "BRJ", + "codeIataCity": "BRJ", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298890", + "latitudeAirport": -36.7, + "longitudeAirport": 146.93333, + "nameAirport": "Bright", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "10", + "airportId": 927, + "codeIataAirport": "BRK", + "codeIataCity": "BRK", + "codeIcaoAirport": "YBKE", + "codeIso2Country": "AU", + "geonameId": "7668686", + "latitudeAirport": -30.083332, + "longitudeAirport": 145.93333, + "nameAirport": "Bourke", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "airportId": 928, + "codeIataAirport": "BRL", + "codeIataCity": "BRL", + "codeIcaoAirport": "KBRL", + "codeIso2Country": "US", + "geonameId": "4849845", + "latitudeAirport": 40.78611, + "longitudeAirport": -91.12334, + "nameAirport": "Burlington", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 929, + "codeIataAirport": "BRM", + "codeIataCity": "BRM", + "codeIcaoAirport": "SVBM", + "codeIso2Country": "VE", + "geonameId": "6300842", + "latitudeAirport": 10.046267, + "longitudeAirport": -69.35984, + "nameAirport": "Barquisimeto", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "1", + "airportId": 930, + "codeIataAirport": "BRN", + "codeIataCity": "BRN", + "codeIcaoAirport": "LSZB", + "codeIso2Country": "CH", + "geonameId": "6299720", + "latitudeAirport": 46.911728, + "longitudeAirport": 7.50356, + "nameAirport": "Belp", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "-6", + "airportId": 931, + "codeIataAirport": "BRO", + "codeIataCity": "BRO", + "codeIcaoAirport": "KBRO", + "codeIso2Country": "US", + "geonameId": "4676748", + "latitudeAirport": 25.90889, + "longitudeAirport": -97.42333, + "nameAirport": "South Padre Is. International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 932, + "codeIataAirport": "BRP", + "codeIataCity": "BRP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299074", + "latitudeAirport": -7.533333, + "longitudeAirport": 146.7, + "nameAirport": "Biaru", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 933, + "codeIataAirport": "BRQ", + "codeIataCity": "BRQ", + "codeIcaoAirport": "LKTB", + "codeIso2Country": "CZ", + "geonameId": "6299656", + "latitudeAirport": 49.15, + "longitudeAirport": 16.7, + "nameAirport": "Turany", + "nameCountry": "Czech Republic", + "phone": "", + "timezone": "Europe/Prague" + }, + { + "GMT": "0", + "airportId": 934, + "codeIataAirport": "BRR", + "codeIataCity": "BRR", + "codeIcaoAirport": "EGPR", + "codeIso2Country": "GB", + "geonameId": "7670761", + "latitudeAirport": 57.023335, + "longitudeAirport": -7.440278, + "nameAirport": "North Bay", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 935, + "codeIataAirport": "BRS", + "codeIataCity": "BRS", + "codeIcaoAirport": "EGGD", + "codeIso2Country": "GB", + "geonameId": "6296587", + "latitudeAirport": 51.386757, + "longitudeAirport": -2.710659, + "nameAirport": "Bristol", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "9.30", + "airportId": 936, + "codeIataAirport": "BRT", + "codeIataCity": "BRT", + "codeIcaoAirport": "YBTI", + "codeIso2Country": "AU", + "geonameId": "7668692", + "latitudeAirport": -11.766667, + "longitudeAirport": 130.63333, + "nameAirport": "Bathurst Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "1", + "airportId": 937, + "codeIataAirport": "BRU", + "codeIataCity": "BRU", + "codeIcaoAirport": "EBBR", + "codeIso2Country": "BE", + "geonameId": "6296486", + "latitudeAirport": 50.89717, + "longitudeAirport": 4.483602, + "nameAirport": "Brussels Airport", + "nameCountry": "Belgium", + "phone": "", + "timezone": "Europe/Brussels" + }, + { + "GMT": "1", + "airportId": 938, + "codeIataAirport": "BRV", + "codeIataCity": "BRV", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2944368", + "latitudeAirport": 53.75, + "longitudeAirport": 8.916667, + "nameAirport": "Bremerhaven", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-9", + "airportId": 939, + "codeIataAirport": "BRW", + "codeIataCity": "BRW", + "codeIcaoAirport": "PABR", + "codeIso2Country": "US", + "geonameId": "5880054", + "latitudeAirport": 71.288574, + "longitudeAirport": -156.77579, + "nameAirport": "Wiley Post/W.Rogers M", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "airportId": 940, + "codeIataAirport": "BRX", + "codeIataCity": "BRX", + "codeIcaoAirport": "MDBH", + "codeIso2Country": "DO", + "geonameId": "6299792", + "latitudeAirport": 18.216667, + "longitudeAirport": -71.11667, + "nameAirport": "Barahona", + "nameCountry": "Dominican Republic", + "phone": "", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "-5", + "airportId": 941, + "codeIataAirport": "BRY", + "codeIataCity": "BRY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4283133", + "latitudeAirport": 37.816666, + "longitudeAirport": -85.46667, + "nameAirport": "Samuels Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 942, + "codeIataAirport": "BRZ", + "codeIataCity": "BRZ", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "3181554", + "latitudeAirport": 8.766667, + "longitudeAirport": -7.5, + "nameAirport": "Borotou", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "3", + "airportId": 943, + "codeIataAirport": "BSA", + "codeIataCity": "BSA", + "codeIcaoAirport": "HCMF", + "codeIso2Country": "SO", + "geonameId": "7668294", + "latitudeAirport": 11.283333, + "longitudeAirport": 49.15, + "nameAirport": "Bossaso", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-3", + "airportId": 944, + "codeIataAirport": "BSB", + "codeIataCity": "BSB", + "codeIcaoAirport": "SBBR", + "codeIso2Country": "BR", + "geonameId": "6300605", + "latitudeAirport": -15.869807, + "longitudeAirport": -47.921486, + "nameAirport": "Presidente Juscelino Kubitschek", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "airportId": 945, + "codeIataAirport": "BSC", + "codeIataCity": "BSC", + "codeIcaoAirport": "SKBS", + "codeIso2Country": "CO", + "geonameId": "7668455", + "latitudeAirport": 6.183333, + "longitudeAirport": -77.4, + "nameAirport": "Bahia Solano", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "8", + "airportId": 946, + "codeIataAirport": "BSD", + "codeIataCity": "BSD", + "codeIcaoAirport": "ZPBS", + "codeIso2Country": "CN", + "geonameId": "7910185", + "latitudeAirport": 25.055182, + "longitudeAirport": 99.16143, + "nameAirport": "Baoshan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 947, + "codeIataAirport": "BSE", + "codeIataCity": "BSE", + "codeIcaoAirport": "WBGN", + "codeIso2Country": "MY", + "geonameId": "7730880", + "latitudeAirport": 1.8, + "longitudeAirport": 109.76667, + "nameAirport": "Sematan", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-10", + "airportId": 948, + "codeIataAirport": "BSF", + "codeIataCity": "BSF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 21.383333, + "longitudeAirport": -157.75, + "nameAirport": "Bradshaw AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "1", + "airportId": 949, + "codeIataAirport": "BSG", + "codeIataCity": "BSG", + "codeIcaoAirport": "FGBT", + "codeIso2Country": "GQ", + "geonameId": "7668240", + "latitudeAirport": 1.906667, + "longitudeAirport": 9.802222, + "nameAirport": "Bata", + "nameCountry": "Equatorial Guinea", + "phone": "", + "timezone": "Africa/Malabo" + }, + { + "GMT": "0", + "airportId": 950, + "codeIataAirport": "BSH", + "codeIataCity": "BSH", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2654710", + "latitudeAirport": 50.816666, + "longitudeAirport": -0.116667, + "nameAirport": "Brighton", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "airportId": 951, + "codeIataAirport": "BSI", + "codeIataCity": "BSI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299248", + "latitudeAirport": 40.45, + "longitudeAirport": -79.28333, + "nameAirport": "Blairsville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 952, + "codeIataAirport": "BSJ", + "codeIataCity": "BSJ", + "codeIcaoAirport": "YBNS", + "codeIso2Country": "AU", + "geonameId": "7668688", + "latitudeAirport": -37.833332, + "longitudeAirport": 147.63333, + "nameAirport": "Bairnsdale", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "1", + "airportId": 953, + "codeIataAirport": "BSK", + "codeIataCity": "BSK", + "codeIcaoAirport": "DAUB", + "codeIso2Country": "DZ", + "geonameId": "6296387", + "latitudeAirport": 34.79333, + "longitudeAirport": 5.738056, + "nameAirport": "Mohamed Boudiaf", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "1", + "airportId": 954, + "codeIataAirport": "BSL", + "codeIataCity": "EAP", + "codeIcaoAirport": "_BSL", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 47.59961, + "longitudeAirport": 7.532604, + "nameAirport": "Euroairport Swiss", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "3.30", + "airportId": 955, + "codeIataAirport": "BSM", + "codeIataCity": "BSM", + "codeIcaoAirport": "OINJ", + "codeIso2Country": "IR", + "geonameId": "7730746", + "latitudeAirport": 36.65, + "longitudeAirport": 52.35, + "nameAirport": "Bishe-kola", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "1", + "airportId": 956, + "codeIataAirport": "BSN", + "codeIataCity": "BSN", + "codeIcaoAirport": "FEFS", + "codeIso2Country": "CF", + "geonameId": "6296979", + "latitudeAirport": 6.583333, + "longitudeAirport": 17.5, + "nameAirport": "Bossangoa", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "8", + "airportId": 957, + "codeIataAirport": "BSO", + "codeIataCity": "BSO", + "codeIcaoAirport": "RPUO", + "codeIso2Country": "PH", + "geonameId": "6300486", + "latitudeAirport": 20.453056, + "longitudeAirport": 121.977776, + "nameAirport": "Basco", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "10", + "airportId": 958, + "codeIataAirport": "BSP", + "codeIataCity": "BSP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260949", + "latitudeAirport": -8.333333, + "longitudeAirport": 141.08333, + "nameAirport": "Bensbach", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "airportId": 959, + "codeIataAirport": "BSQ", + "codeIataCity": "BSQ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5284913", + "latitudeAirport": 31.36389, + "longitudeAirport": -109.88111, + "nameAirport": "Bisbee Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "3", + "airportId": 960, + "codeIataAirport": "BSR", + "codeIataCity": "BSR", + "codeIcaoAirport": "ORMM", + "codeIso2Country": "IQ", + "geonameId": "6999872", + "latitudeAirport": 30.555555, + "longitudeAirport": 47.79139, + "nameAirport": "Basrah International Airport ", + "nameCountry": "Iraq", + "phone": "", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "-3", + "airportId": 961, + "codeIataAirport": "BSS", + "codeIataCity": "BSS", + "codeIcaoAirport": "SNBS", + "codeIso2Country": "BR", + "geonameId": "7730881", + "latitudeAirport": -7.516667, + "longitudeAirport": -46.05, + "nameAirport": "Balsas", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "4.30", + "airportId": 962, + "codeIataAirport": "BST", + "codeIataCity": "BST", + "codeIcaoAirport": "OABT", + "codeIso2Country": "AF", + "geonameId": "0", + "latitudeAirport": 31.55, + "longitudeAirport": 64.36667, + "nameAirport": "Bost", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "1", + "airportId": 963, + "codeIataAirport": "BSU", + "codeIataCity": "BSU", + "codeIcaoAirport": "FZEN", + "codeIso2Country": "CD", + "geonameId": "7668267", + "latitudeAirport": 1.221667, + "longitudeAirport": 19.788889, + "nameAirport": "Basankusu", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "3", + "airportId": 964, + "codeIataAirport": "BSV", + "codeIataCity": "BSV", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "8299242", + "latitudeAirport": -15.666667, + "longitudeAirport": 47.066666, + "nameAirport": "Besakoa", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-9", + "airportId": 965, + "codeIataAirport": "BSW", + "codeIataCity": "BSW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5857874", + "latitudeAirport": 60.4, + "longitudeAirport": -146.13333, + "nameAirport": "Boswell Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "6.30", + "airportId": 966, + "codeIataAirport": "BSX", + "codeIataCity": "BSX", + "codeIcaoAirport": "VYPN", + "codeIso2Country": "MM", + "geonameId": "7668662", + "latitudeAirport": 16.8, + "longitudeAirport": 94.78333, + "nameAirport": "Bassein", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "3", + "airportId": 967, + "codeIataAirport": "BSY", + "codeIataCity": "BSY", + "codeIcaoAirport": "HCMD", + "codeIso2Country": "SO", + "geonameId": "8261065", + "latitudeAirport": 2.35, + "longitudeAirport": 42.333332, + "nameAirport": "Bardera", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-9", + "airportId": 968, + "codeIataAirport": "BSZ", + "codeIataCity": "BSZ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5880068", + "latitudeAirport": 58.233612, + "longitudeAirport": -157.35028, + "nameAirport": "Bartletts", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 969, + "codeIataAirport": "BTA", + "codeIataCity": "BTA", + "codeIcaoAirport": "FKKO", + "codeIso2Country": "CM", + "geonameId": "7730505", + "latitudeAirport": 4.540833, + "longitudeAirport": 13.7275, + "nameAirport": "Yaoundé", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "1", + "airportId": 970, + "codeIataAirport": "BTB", + "codeIataCity": "BTB", + "codeIcaoAirport": "FCOT", + "codeIso2Country": "CG", + "geonameId": "7730500", + "latitudeAirport": 3.05, + "longitudeAirport": 18.5, + "nameAirport": "Betou", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "5.30", + "airportId": 971, + "codeIataAirport": "BTC", + "codeIataCity": "BTC", + "codeIcaoAirport": "VCCB", + "codeIso2Country": "LK", + "geonameId": "6301062", + "latitudeAirport": 7.703333, + "longitudeAirport": 81.67861, + "nameAirport": "Batticaloa", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "9.30", + "airportId": 972, + "codeIataAirport": "BTD", + "codeIataCity": "BTD", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298768", + "latitudeAirport": -18.666668, + "longitudeAirport": 135.91667, + "nameAirport": "Brunette Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "0", + "airportId": 973, + "codeIataAirport": "BTE", + "codeIataCity": "BTE", + "codeIcaoAirport": "GFBN", + "codeIso2Country": "SL", + "geonameId": "7668277", + "latitudeAirport": 7.0, + "longitudeAirport": -12.008333, + "nameAirport": "Bonthe", + "nameCountry": "Sierra Leone", + "phone": "", + "timezone": "Africa/Freetown" + }, + { + "GMT": "-7", + "airportId": 974, + "codeIataAirport": "BTF", + "codeIataCity": "BTF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.88333, + "longitudeAirport": -111.88333, + "nameAirport": "Salt Lake Skypark", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 975, + "codeIataAirport": "BTG", + "codeIataCity": "BTG", + "codeIcaoAirport": "FEGF", + "codeIso2Country": "CF", + "geonameId": "7668235", + "latitudeAirport": 7.416667, + "longitudeAirport": 18.333332, + "nameAirport": "Batangafo", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "7", + "airportId": 976, + "codeIataAirport": "BTH", + "codeIataCity": "BTH", + "codeIcaoAirport": "WIKB", + "codeIso2Country": "ID", + "geonameId": "6301230", + "latitudeAirport": 1.123627, + "longitudeAirport": 104.11528, + "nameAirport": "Hang Nadim", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-9", + "airportId": 977, + "codeIataAirport": "BTI", + "codeIataCity": "BTI", + "codeIcaoAirport": "PABA", + "codeIso2Country": "US", + "geonameId": "5880061", + "latitudeAirport": 70.13472, + "longitudeAirport": -143.57834, + "nameAirport": "Barter Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "airportId": 978, + "codeIataAirport": "BTJ", + "codeIataCity": "BTJ", + "codeIcaoAirport": "WITT", + "codeIso2Country": "ID", + "geonameId": "6301251", + "latitudeAirport": 5.518021, + "longitudeAirport": 95.41833, + "nameAirport": "Sultan Iskandarmuda Airport", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "8", + "airportId": 979, + "codeIataAirport": "BTK", + "codeIataCity": "BTK", + "codeIcaoAirport": "UIBB", + "codeIso2Country": "RU", + "geonameId": "6300944", + "latitudeAirport": 56.36667, + "longitudeAirport": 101.816666, + "nameAirport": "Bratsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Irkutsk" + }, + { + "GMT": "-5", + "airportId": 980, + "codeIataAirport": "BTL", + "codeIataCity": "BTL", + "codeIcaoAirport": "KBTL", + "codeIso2Country": "US", + "geonameId": "5013354", + "latitudeAirport": 42.37278, + "longitudeAirport": -85.26481, + "nameAirport": "WK Kellogg Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-7", + "airportId": 981, + "codeIataAirport": "BTM", + "codeIataCity": "BTM", + "codeIcaoAirport": "KBTM", + "codeIso2Country": "US", + "geonameId": "5642934", + "latitudeAirport": 45.95111, + "longitudeAirport": -112.49389, + "nameAirport": "Bert Mooney Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 982, + "codeIataAirport": "BTN", + "codeIataCity": "BTN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.61667, + "longitudeAirport": -79.683334, + "nameAirport": "Bennettsville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 983, + "codeIataAirport": "BTO", + "codeIataCity": "BTO", + "codeIcaoAirport": "", + "codeIso2Country": "SR", + "geonameId": "0", + "latitudeAirport": 4.25, + "longitudeAirport": -55.45, + "nameAirport": "Botopasie", + "nameCountry": "Suriname", + "phone": "", + "timezone": "America/Paramaribo" + }, + { + "GMT": "-5", + "airportId": 984, + "codeIataAirport": "BTP", + "codeIataCity": "BTP", + "codeIcaoAirport": "KBTP", + "codeIso2Country": "US", + "geonameId": "5182570", + "latitudeAirport": 40.85, + "longitudeAirport": -79.916664, + "nameAirport": "Butler County - Kenny Scholter Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 985, + "codeIataAirport": "BTQ", + "codeIataCity": "BTQ", + "codeIcaoAirport": "", + "codeIso2Country": "RW", + "geonameId": "203112", + "latitudeAirport": -2.6, + "longitudeAirport": 29.733334, + "nameAirport": "Butare", + "nameCountry": "Rwanda", + "phone": "", + "timezone": "Africa/Kigali" + }, + { + "GMT": "-6", + "airportId": 986, + "codeIataAirport": "BTR", + "codeIataCity": "BTR", + "codeIcaoAirport": "KBTR", + "codeIso2Country": "US", + "geonameId": "4315588", + "latitudeAirport": 30.532537, + "longitudeAirport": -91.156906, + "nameAirport": "Ryan", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 987, + "codeIataAirport": "BTS", + "codeIataCity": "BTS", + "codeIcaoAirport": "LZIB", + "codeIso2Country": "SK", + "geonameId": "6299784", + "latitudeAirport": 48.170017, + "longitudeAirport": 17.199799, + "nameAirport": "M. R. Štefánika", + "nameCountry": "Slovakia", + "phone": "", + "timezone": "Europe/Bratislava" + }, + { + "GMT": "-9", + "airportId": 988, + "codeIataAirport": "BTT", + "codeIataCity": "BTT", + "codeIcaoAirport": "PABT", + "codeIso2Country": "US", + "geonameId": "5880577", + "latitudeAirport": 66.915276, + "longitudeAirport": -151.52638, + "nameAirport": "Bettles", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 989, + "codeIataAirport": "BTU", + "codeIataCity": "BTU", + "codeIcaoAirport": "WBGB", + "codeIso2Country": "MY", + "geonameId": "6301209", + "latitudeAirport": 3.171772, + "longitudeAirport": 113.04346, + "nameAirport": "Bintulu", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-5", + "airportId": 990, + "codeIataAirport": "BTV", + "codeIataCity": "BTV", + "codeIcaoAirport": "KBTV", + "codeIso2Country": "US", + "geonameId": "5234381", + "latitudeAirport": 44.469013, + "longitudeAirport": -73.15527, + "nameAirport": "Burlington International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 991, + "codeIataAirport": "BTW", + "codeIataCity": "BTW", + "codeIcaoAirport": "WAOC", + "codeIso2Country": "ID", + "geonameId": "7730882", + "latitudeAirport": -3.0, + "longitudeAirport": 116.0, + "nameAirport": "Batu Licin", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "10", + "airportId": 992, + "codeIataAirport": "BTX", + "codeIataCity": "BTX", + "codeIcaoAirport": "YBEO", + "codeIso2Country": "AU", + "geonameId": "7730883", + "latitudeAirport": -25.7, + "longitudeAirport": 140.73334, + "nameAirport": "Betoota", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-8", + "airportId": 993, + "codeIataAirport": "BTY", + "codeIataCity": "BTY", + "codeIcaoAirport": "KBTY", + "codeIso2Country": "US", + "geonameId": "5550561", + "latitudeAirport": 36.9, + "longitudeAirport": -116.76667, + "nameAirport": "Beatty", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 994, + "codeIataAirport": "BUA", + "codeIataCity": "BUA", + "codeIcaoAirport": "AYBK", + "codeIso2Country": "PG", + "geonameId": "7668075", + "latitudeAirport": -5.422443, + "longitudeAirport": 154.67288, + "nameAirport": "Buka", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 995, + "codeIataAirport": "BUB", + "codeIataCity": "BUB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.783333, + "longitudeAirport": -99.13333, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 996, + "codeIataAirport": "BUC", + "codeIataCity": "BUC", + "codeIcaoAirport": "YBKT", + "codeIso2Country": "AU", + "geonameId": "7730884", + "latitudeAirport": -17.75, + "longitudeAirport": 139.53334, + "nameAirport": "Burketown", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "airportId": 997, + "codeIataAirport": "BUD", + "codeIataCity": "BUD", + "codeIcaoAirport": "LHBP", + "codeIso2Country": "HU", + "geonameId": "6299519", + "latitudeAirport": 47.433037, + "longitudeAirport": 19.261621, + "nameAirport": "Liszt Ferenc International", + "nameCountry": "Hungary", + "phone": "", + "timezone": "Europe/Budapest" + }, + { + "GMT": "-5", + "airportId": 998, + "codeIataAirport": "BUF", + "codeIataCity": "BUF", + "codeIcaoAirport": "KBUF", + "codeIso2Country": "US", + "geonameId": "5119245", + "latitudeAirport": 42.933826, + "longitudeAirport": -78.731804, + "nameAirport": "Buffalo Niagara International", + "nameCountry": "United States", + "phone": "1-716-630-600", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 999, + "codeIataAirport": "BUG", + "codeIataCity": "BUG", + "codeIcaoAirport": "FNBG", + "codeIso2Country": "AO", + "geonameId": "6297059", + "latitudeAirport": -12.606389, + "longitudeAirport": 13.405556, + "nameAirport": "Gen V Deslandes", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "9", + "airportId": 1000, + "codeIataAirport": "BUI", + "codeIataCity": "BUI", + "codeIcaoAirport": "WAJB", + "codeIso2Country": "ID", + "geonameId": "7730885", + "latitudeAirport": -2.0, + "longitudeAirport": 133.58333, + "nameAirport": "Bokondini", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "airportId": 1001, + "codeIataAirport": "BUJ", + "codeIataCity": "BUJ", + "codeIcaoAirport": "DAAD", + "codeIso2Country": "DZ", + "geonameId": "6296360", + "latitudeAirport": 35.166668, + "longitudeAirport": 4.15, + "nameAirport": "Ain Eddis", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "3", + "airportId": 1002, + "codeIataAirport": "BUK", + "codeIataCity": "BUK", + "codeIcaoAirport": "", + "codeIso2Country": "YE", + "geonameId": "8298717", + "latitudeAirport": 15.833333, + "longitudeAirport": 43.766666, + "nameAirport": "Albuq", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "10", + "airportId": 1003, + "codeIataAirport": "BUL", + "codeIataCity": "BUL", + "codeIcaoAirport": "AYBU", + "codeIso2Country": "PG", + "geonameId": "2098869", + "latitudeAirport": -7.189722, + "longitudeAirport": 146.64778, + "nameAirport": "Bulolo", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 1004, + "codeIataAirport": "BUM", + "codeIataCity": "BUM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.266666, + "longitudeAirport": -94.333336, + "nameAirport": "Butler", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 1005, + "codeIataAirport": "BUN", + "codeIataCity": "BUN", + "codeIcaoAirport": "SKBU", + "codeIso2Country": "CO", + "geonameId": "6300738", + "latitudeAirport": 3.825, + "longitudeAirport": -76.995834, + "nameAirport": "Buenaventura", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "airportId": 1006, + "codeIataAirport": "BUO", + "codeIataCity": "BUO", + "codeIcaoAirport": "HCMV", + "codeIso2Country": "SO", + "geonameId": "6297288", + "latitudeAirport": 9.5225, + "longitudeAirport": 45.55417, + "nameAirport": "Burao", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "5.30", + "airportId": 1007, + "codeIataAirport": "BUP", + "codeIataCity": "BUP", + "codeIcaoAirport": "VIBT", + "codeIso2Country": "IN", + "geonameId": "7730886", + "latitudeAirport": 30.166668, + "longitudeAirport": 74.96667, + "nameAirport": "Bhatinda", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "2", + "airportId": 1008, + "codeIataAirport": "BUQ", + "codeIataCity": "BUQ", + "codeIcaoAirport": "FVBU", + "codeIso2Country": "ZW", + "geonameId": "1105968", + "latitudeAirport": -20.014933, + "longitudeAirport": 28.622616, + "nameAirport": "Bulawayo", + "nameCountry": "Zimbabwe", + "phone": "", + "timezone": "Africa/Harare" + }, + { + "GMT": "-8", + "airportId": 1009, + "codeIataAirport": "BUR", + "codeIataCity": "BUR", + "codeIcaoAirport": "KBUR", + "codeIso2Country": "US", + "geonameId": "5331863", + "latitudeAirport": 34.19619, + "longitudeAirport": -118.35411, + "nameAirport": "Bob Hope", + "nameCountry": "United States", + "phone": "818-840-8840", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "4", + "airportId": 1010, + "codeIataAirport": "BUS", + "codeIataCity": "BUS", + "codeIcaoAirport": "UGSB", + "codeIso2Country": "GE", + "geonameId": "7668499", + "latitudeAirport": 41.610832, + "longitudeAirport": 41.600555, + "nameAirport": "Batum", + "nameCountry": "Georgia", + "phone": "", + "timezone": "Asia/Tbilisi" + }, + { + "GMT": "-3", + "airportId": 1011, + "codeIataAirport": "BUV", + "codeIataCity": "BUV", + "codeIcaoAirport": "", + "codeIso2Country": "UY", + "geonameId": "7730887", + "latitudeAirport": -30.333332, + "longitudeAirport": -57.083332, + "nameAirport": "Bella Union", + "nameCountry": "Uruguay", + "phone": "", + "timezone": "America/Montevideo" + }, + { + "GMT": "8", + "airportId": 1012, + "codeIataAirport": "BUW", + "codeIataCity": "BUW", + "codeIcaoAirport": "WAWB", + "codeIso2Country": "ID", + "geonameId": "6301178", + "latitudeAirport": -5.466667, + "longitudeAirport": 122.63333, + "nameAirport": "Baubau", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "2", + "airportId": 1013, + "codeIataAirport": "BUX", + "codeIataCity": "BUX", + "codeIcaoAirport": "FZKA", + "codeIso2Country": "CD", + "geonameId": "7668272", + "latitudeAirport": 1.571667, + "longitudeAirport": 30.212778, + "nameAirport": "Bunia", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "8", + "airportId": 1014, + "codeIataAirport": "BUY", + "codeIataCity": "BUY", + "codeIcaoAirport": "KBUY", + "codeIso2Country": "AU", + "geonameId": "7730888", + "latitudeAirport": -33.316666, + "longitudeAirport": 115.63333, + "nameAirport": "Bunbury", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "3.30", + "airportId": 1015, + "codeIataAirport": "BUZ", + "codeIataCity": "BUZ", + "codeIcaoAirport": "OIBB", + "codeIso2Country": "IR", + "geonameId": "6300042", + "latitudeAirport": 28.958284, + "longitudeAirport": 50.825424, + "nameAirport": "Bushehr", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "1", + "airportId": 1016, + "codeIataAirport": "BVA", + "codeIataCity": "PAR", + "codeIcaoAirport": "LFOB", + "codeIso2Country": "FR", + "geonameId": "6299427", + "latitudeAirport": 49.459488, + "longitudeAirport": 2.110815, + "nameAirport": "Beauvais-Tille", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-4", + "airportId": 1017, + "codeIataAirport": "BVB", + "codeIataCity": "BVB", + "codeIcaoAirport": "SBBV", + "codeIso2Country": "BR", + "geonameId": "6300607", + "latitudeAirport": 2.833333, + "longitudeAirport": -60.666668, + "nameAirport": "Boa Vista", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Boa_Vista" + }, + { + "GMT": "-1", + "airportId": 1018, + "codeIataAirport": "BVC", + "codeIataCity": "BVC", + "codeIcaoAirport": "GVBA", + "codeIso2Country": "CV", + "geonameId": "7175314", + "latitudeAirport": 16.083332, + "longitudeAirport": -22.833332, + "nameAirport": "Rabil", + "nameCountry": "Cape Verde", + "phone": "", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "-9", + "airportId": 1019, + "codeIataAirport": "BVD", + "codeIataCity": "BVD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 53.733334, + "longitudeAirport": -166.31667, + "nameAirport": "Sea Port", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "1", + "airportId": 1020, + "codeIataAirport": "BVE", + "codeIataCity": "BVE", + "codeIcaoAirport": "LFBV", + "codeIso2Country": "FR", + "geonameId": "7536124", + "latitudeAirport": 45.166668, + "longitudeAirport": 1.533333, + "nameAirport": "Laroche", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 1021, + "codeIataAirport": "BVG", + "codeIataCity": "BVG", + "codeIcaoAirport": "ENBV", + "codeIso2Country": "NO", + "geonameId": "6296729", + "latitudeAirport": 70.86667, + "longitudeAirport": 29.0, + "nameAirport": "Berlevag", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-4", + "airportId": 1022, + "codeIataAirport": "BVH", + "codeIataCity": "BVH", + "codeIcaoAirport": "SBVH", + "codeIso2Country": "BR", + "geonameId": "6300684", + "latitudeAirport": -12.716667, + "longitudeAirport": -60.11667, + "nameAirport": "Vilhena", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Porto_Velho" + }, + { + "GMT": "10", + "airportId": 1023, + "codeIataAirport": "BVI", + "codeIataCity": "BVI", + "codeIcaoAirport": "YBDV", + "codeIso2Country": "AU", + "geonameId": "7730240", + "latitudeAirport": -25.898333, + "longitudeAirport": 139.34334, + "nameAirport": "Birdsville", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-4", + "airportId": 1024, + "codeIataAirport": "BVK", + "codeIataCity": "BVK", + "codeIcaoAirport": "", + "codeIso2Country": "BO", + "geonameId": "3915079", + "latitudeAirport": -13.55, + "longitudeAirport": -63.75, + "nameAirport": "Huacaraje", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-4", + "airportId": 1025, + "codeIataAirport": "BVL", + "codeIataCity": "BVL", + "codeIcaoAirport": "", + "codeIso2Country": "BO", + "geonameId": "7730889", + "latitudeAirport": -13.583333, + "longitudeAirport": -63.583332, + "nameAirport": "Baures", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-3", + "airportId": 1026, + "codeIataAirport": "BVM", + "codeIataCity": "BVM", + "codeIcaoAirport": "SNBL", + "codeIso2Country": "BR", + "geonameId": "7730890", + "latitudeAirport": -15.833333, + "longitudeAirport": -38.916668, + "nameAirport": "Belmonte", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "-6", + "airportId": 1027, + "codeIataAirport": "BVO", + "codeIataCity": "BVO", + "codeIcaoAirport": "KBVO", + "codeIso2Country": "US", + "geonameId": "4529988", + "latitudeAirport": 36.7625, + "longitudeAirport": -96.01083, + "nameAirport": "Bartlesville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-1", + "airportId": 1028, + "codeIataAirport": "BVR", + "codeIataCity": "BVR", + "codeIcaoAirport": "", + "codeIso2Country": "CV", + "geonameId": "8299069", + "latitudeAirport": 14.866667, + "longitudeAirport": -24.733334, + "nameAirport": "Esperadinha", + "nameCountry": "Cape Verde", + "phone": "", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "-3", + "airportId": 1029, + "codeIataAirport": "BVS", + "codeIataCity": "BVS", + "codeIcaoAirport": "SNVS", + "codeIso2Country": "BR", + "geonameId": "7730891", + "latitudeAirport": -1.666667, + "longitudeAirport": -50.466667, + "nameAirport": "Breves", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Belem" + }, + { + "GMT": "-9", + "airportId": 1030, + "codeIataAirport": "BVU", + "codeIataCity": "BVU", + "codeIcaoAirport": "PABG", + "codeIso2Country": "US", + "geonameId": "5880474", + "latitudeAirport": 61.169445, + "longitudeAirport": -151.03612, + "nameAirport": "Beluga", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "11", + "airportId": 1031, + "codeIataAirport": "BVV", + "codeIataCity": "BVV", + "codeIcaoAirport": "UHSB", + "codeIso2Country": "RU", + "geonameId": "8030061", + "latitudeAirport": 44.928646, + "longitudeAirport": 147.61337, + "nameAirport": "Burevestnik AFB", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Magadan" + }, + { + "GMT": "-6", + "airportId": 1032, + "codeIataAirport": "BVX", + "codeIataCity": "BVX", + "codeIcaoAirport": "KBVX", + "codeIso2Country": "US", + "geonameId": "4100538", + "latitudeAirport": 35.766666, + "longitudeAirport": -91.65, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 1033, + "codeIataAirport": "BVY", + "codeIataCity": "BVY", + "codeIcaoAirport": "KBVY", + "codeIso2Country": "US", + "geonameId": "4930524", + "latitudeAirport": 42.55, + "longitudeAirport": -70.88333, + "nameAirport": "Beverly Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 1034, + "codeIataAirport": "BVZ", + "codeIataCity": "BVZ", + "codeIcaoAirport": "YBYS", + "codeIso2Country": "AU", + "geonameId": "7730893", + "latitudeAirport": -15.0, + "longitudeAirport": 124.0, + "nameAirport": "Beverley Springs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "5.45", + "airportId": 1035, + "codeIataAirport": "BWA", + "codeIataCity": "BWA", + "codeIcaoAirport": "VNBW", + "codeIso2Country": "NP", + "geonameId": "1283622", + "latitudeAirport": 27.504168, + "longitudeAirport": 83.42, + "nameAirport": "Bhairawa", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "8", + "airportId": 1036, + "codeIataAirport": "BWB", + "codeIataCity": "BWB", + "codeIcaoAirport": "YBWX", + "codeIso2Country": "AU", + "geonameId": "7730894", + "latitudeAirport": -20.783333, + "longitudeAirport": 115.416664, + "nameAirport": "Barrow Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-8", + "airportId": 1037, + "codeIataAirport": "BWC", + "codeIataCity": "BWC", + "codeIcaoAirport": "KBWC", + "codeIso2Country": "US", + "geonameId": "5330573", + "latitudeAirport": 32.983334, + "longitudeAirport": -115.51667, + "nameAirport": "Brawley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 1038, + "codeIataAirport": "BWD", + "codeIataCity": "BWD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4676768", + "latitudeAirport": 31.794722, + "longitudeAirport": -98.956665, + "nameAirport": "Brownwood", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 1039, + "codeIataAirport": "BWE", + "codeIataCity": "BWE", + "codeIcaoAirport": "EDVE", + "codeIso2Country": "DE", + "geonameId": "3208632", + "latitudeAirport": 52.266666, + "longitudeAirport": 10.533333, + "nameAirport": "Braunschweig", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "0", + "airportId": 1040, + "codeIataAirport": "BWF", + "codeIataCity": "BWF", + "codeIcaoAirport": "EGNL", + "codeIso2Country": "GB", + "geonameId": "6296607", + "latitudeAirport": 54.11667, + "longitudeAirport": -3.233333, + "nameAirport": "Walney Island", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 1041, + "codeIataAirport": "BWG", + "codeIataCity": "BWG", + "codeIcaoAirport": "KBWG", + "codeIso2Country": "US", + "geonameId": "4285270", + "latitudeAirport": 36.962223, + "longitudeAirport": -86.42222, + "nameAirport": "Warren County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 1042, + "codeIataAirport": "BWH", + "codeIataCity": "BWH", + "codeIcaoAirport": "WMKB", + "codeIso2Country": "MY", + "geonameId": "7668676", + "latitudeAirport": 5.466667, + "longitudeAirport": 100.3925, + "nameAirport": "Butterworth", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "-5", + "airportId": 1043, + "codeIataAirport": "BWI", + "codeIataCity": "BWI", + "codeIcaoAirport": "KBWI", + "codeIso2Country": "US", + "geonameId": "4347822", + "latitudeAirport": 39.179527, + "longitudeAirport": -76.66894, + "nameAirport": "Baltimore/Washington International Thurgood Marshall", + "nameCountry": "United States", + "phone": "410-859-7111", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 1044, + "codeIataAirport": "BWJ", + "codeIataCity": "BWJ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299082", + "latitudeAirport": -6.4, + "longitudeAirport": 146.9, + "nameAirport": "Bawan", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 1045, + "codeIataAirport": "BWK", + "codeIataCity": "BWK", + "codeIcaoAirport": "LDSB", + "codeIso2Country": "HR", + "geonameId": "6299320", + "latitudeAirport": 43.283333, + "longitudeAirport": 16.683332, + "nameAirport": "Brac", + "nameCountry": "Croatia", + "phone": "", + "timezone": "Europe/Zagreb" + }, + { + "GMT": "-6", + "airportId": 1046, + "codeIataAirport": "BWL", + "codeIataCity": "BWL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4535485", + "latitudeAirport": 36.8, + "longitudeAirport": -97.28333, + "nameAirport": "Blackwell", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 1047, + "codeIataAirport": "BWM", + "codeIataCity": "BWM", + "codeIcaoAirport": "KBPP", + "codeIso2Country": "US", + "geonameId": "5688131", + "latitudeAirport": 46.183334, + "longitudeAirport": -103.4, + "nameAirport": "Bowman", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Boise" + }, + { + "GMT": "8", + "airportId": 1048, + "codeIataAirport": "BWN", + "codeIataCity": "BWN", + "codeIcaoAirport": "WBSB", + "codeIso2Country": "BN", + "geonameId": "1820906", + "latitudeAirport": 4.945197, + "longitudeAirport": 114.93375, + "nameAirport": "Bandar Seri Begwan International Airport", + "nameCountry": "Brunei", + "phone": "", + "timezone": "Asia/Brunei" + }, + { + "GMT": "3", + "airportId": 1049, + "codeIataAirport": "BWO", + "codeIataCity": "BWO", + "codeIcaoAirport": "UWSB", + "codeIso2Country": "RU", + "geonameId": "7668565", + "latitudeAirport": 51.86667, + "longitudeAirport": 47.75, + "nameAirport": "Balakovo", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Volgograd" + }, + { + "GMT": "10", + "airportId": 1050, + "codeIataAirport": "BWP", + "codeIataCity": "BWP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2099579", + "latitudeAirport": -3.016667, + "longitudeAirport": 141.15, + "nameAirport": "Bewani", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 1051, + "codeIataAirport": "BWQ", + "codeIataCity": "BWQ", + "codeIcaoAirport": "YBRW", + "codeIso2Country": "AU", + "geonameId": "7668690", + "latitudeAirport": -29.95, + "longitudeAirport": 146.86667, + "nameAirport": "Brewarrina", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "airportId": 1052, + "codeIataAirport": "BWT", + "codeIataCity": "BWT", + "codeIcaoAirport": "YBUI", + "codeIso2Country": "AU", + "geonameId": "7668786", + "latitudeAirport": -40.993145, + "longitudeAirport": 145.72507, + "nameAirport": "Burnie Wynyard", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Hobart" + }, + { + "GMT": "10", + "airportId": 1053, + "codeIataAirport": "BWU", + "codeIataCity": "SYD", + "codeIcaoAirport": "YSBK", + "codeIso2Country": "AU", + "geonameId": "6301341", + "latitudeAirport": -33.916668, + "longitudeAirport": 151.03334, + "nameAirport": "Sydney Bankstown", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-5", + "airportId": 1054, + "codeIataAirport": "BWW", + "codeIataCity": "BWW", + "codeIcaoAirport": "MUBR", + "codeIso2Country": "CU", + "geonameId": "8298630", + "latitudeAirport": 22.62118, + "longitudeAirport": -79.14697, + "nameAirport": "Las Brujas", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "-6", + "airportId": 1055, + "codeIataAirport": "BXA", + "codeIataCity": "BXA", + "codeIcaoAirport": "KBXA", + "codeIso2Country": "US", + "geonameId": "4325598", + "latitudeAirport": 30.933332, + "longitudeAirport": -89.88333, + "nameAirport": "George R Carr", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "airportId": 1056, + "codeIataAirport": "BXB", + "codeIataCity": "BXB", + "codeIcaoAirport": "WASO", + "codeIso2Country": "ID", + "geonameId": "7730233", + "latitudeAirport": -2.55, + "longitudeAirport": 133.41667, + "nameAirport": "Babo", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-5", + "airportId": 1057, + "codeIataAirport": "BXC", + "codeIataCity": "BXC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.483334, + "longitudeAirport": -71.53333, + "nameAirport": "Boxborough", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "airportId": 1058, + "codeIataAirport": "BXD", + "codeIataCity": "BXD", + "codeIcaoAirport": "WAKE", + "codeIso2Country": "ID", + "geonameId": "7730895", + "latitudeAirport": -7.166667, + "longitudeAirport": 139.5, + "nameAirport": "Bade", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "0", + "airportId": 1059, + "codeIataAirport": "BXE", + "codeIataCity": "BXE", + "codeIcaoAirport": "", + "codeIso2Country": "SN", + "geonameId": "2254441", + "latitudeAirport": 14.841667, + "longitudeAirport": -12.467778, + "nameAirport": "Bakel", + "nameCountry": "Senegal", + "phone": "", + "timezone": "Africa/Dakar" + }, + { + "GMT": "8", + "airportId": 1060, + "codeIataAirport": "BXF", + "codeIataCity": "BXF", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298752", + "latitudeAirport": -17.545555, + "longitudeAirport": 128.30779, + "nameAirport": "Belburn", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "10", + "airportId": 1061, + "codeIataAirport": "BXG", + "codeIataCity": "BXG", + "codeIcaoAirport": "YBDG", + "codeIso2Country": "AU", + "geonameId": "2176187", + "latitudeAirport": -36.734722, + "longitudeAirport": 144.30194, + "nameAirport": "Bendigo", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "6", + "airportId": 1062, + "codeIataAirport": "BXH", + "codeIataCity": "BXH", + "codeIcaoAirport": "", + "codeIso2Country": "KZ", + "geonameId": "7668487", + "latitudeAirport": 46.88333, + "longitudeAirport": 75.01667, + "nameAirport": "Balhash", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "0", + "airportId": 1063, + "codeIataAirport": "BXI", + "codeIataCity": "BXI", + "codeIcaoAirport": "DIBI", + "codeIso2Country": "CI", + "geonameId": "7668183", + "latitudeAirport": 8.75, + "longitudeAirport": -6.5, + "nameAirport": "Boundiali", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "6", + "airportId": 1064, + "codeIataAirport": "BXJ", + "codeIataCity": "ALA", + "codeIcaoAirport": "UAAR", + "codeIso2Country": "KZ", + "geonameId": "7668486", + "latitudeAirport": 43.5, + "longitudeAirport": 76.95, + "nameAirport": "Burundai", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-7", + "airportId": 1065, + "codeIataAirport": "BXK", + "codeIataCity": "BXK", + "codeIcaoAirport": "KBXK", + "codeIso2Country": "US", + "geonameId": "5287280", + "latitudeAirport": 33.36667, + "longitudeAirport": -112.583336, + "nameAirport": "Buckeye Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "12", + "airportId": 1066, + "codeIataAirport": "BXL", + "codeIataCity": "BXL", + "codeIcaoAirport": "", + "codeIso2Country": "FJ", + "geonameId": "8299059", + "latitudeAirport": -16.75, + "longitudeAirport": 179.0, + "nameAirport": "Blue Lagoon", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "9", + "airportId": 1067, + "codeIataAirport": "BXM", + "codeIataCity": "BXM", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7730896", + "latitudeAirport": -4.116667, + "longitudeAirport": 140.85, + "nameAirport": "Batom", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "3", + "airportId": 1068, + "codeIataAirport": "BXN", + "codeIataCity": "BJV", + "codeIcaoAirport": "LTBV", + "codeIso2Country": "TR", + "geonameId": "6299759", + "latitudeAirport": 37.134724, + "longitudeAirport": 27.667221, + "nameAirport": "Imsik", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "1", + "airportId": 1069, + "codeIataAirport": "BXO", + "codeIataCity": "BXO", + "codeIcaoAirport": "LSZC", + "codeIso2Country": "CH", + "geonameId": "7730642", + "latitudeAirport": 46.966667, + "longitudeAirport": 8.383333, + "nameAirport": "Buochs", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 1070, + "codeIataAirport": "BXP", + "codeIataCity": "BXP", + "codeIcaoAirport": "EPBP", + "codeIso2Country": "PL", + "geonameId": "776176", + "latitudeAirport": 52.00551, + "longitudeAirport": 23.14542, + "nameAirport": "Biala Podlaska", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "3.30", + "airportId": 1071, + "codeIataAirport": "BXR", + "codeIataCity": "BXR", + "codeIcaoAirport": "OIKM", + "codeIso2Country": "IR", + "geonameId": "6300060", + "latitudeAirport": 29.080082, + "longitudeAirport": 58.449356, + "nameAirport": "Bam", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-8", + "airportId": 1072, + "codeIataAirport": "BXS", + "codeIataCity": "BXS", + "codeIcaoAirport": "KBXS", + "codeIso2Country": "US", + "geonameId": "5330155", + "latitudeAirport": 33.343334, + "longitudeAirport": -116.32778, + "nameAirport": "Borrego Springs", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 1073, + "codeIataAirport": "BXT", + "codeIataCity": "BXT", + "codeIcaoAirport": "WRLC", + "codeIso2Country": "ID", + "geonameId": "7730897", + "latitudeAirport": 0.166667, + "longitudeAirport": 117.5, + "nameAirport": "Bontang", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "8", + "airportId": 1074, + "codeIataAirport": "BXU", + "codeIataCity": "BXU", + "codeIcaoAirport": "RPWE", + "codeIso2Country": "PH", + "geonameId": "1727447", + "latitudeAirport": 8.947999, + "longitudeAirport": 125.48123, + "nameAirport": "Butuan", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "0", + "airportId": 1075, + "codeIataAirport": "BXV", + "codeIataCity": "BXV", + "codeIcaoAirport": "BIBV", + "codeIso2Country": "IS", + "geonameId": "7730425", + "latitudeAirport": 64.76667, + "longitudeAirport": -14.0, + "nameAirport": "Breiddalsvik", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "3", + "airportId": 1076, + "codeIataAirport": "BXX", + "codeIataCity": "BXX", + "codeIcaoAirport": "", + "codeIso2Country": "SO", + "geonameId": "7730898", + "latitudeAirport": 9.966667, + "longitudeAirport": 43.11667, + "nameAirport": "Borama International", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "10", + "airportId": 1077, + "codeIataAirport": "BXZ", + "codeIataCity": "BXZ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8261000", + "latitudeAirport": -5.716667, + "longitudeAirport": 147.86667, + "nameAirport": "Bunsil", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 1078, + "codeIataAirport": "BYA", + "codeIataCity": "BYA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5857950", + "latitudeAirport": 64.076385, + "longitudeAirport": -141.11444, + "nameAirport": "Boundary", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "4", + "airportId": 1079, + "codeIataAirport": "BYB", + "codeIataCity": "BYB", + "codeIcaoAirport": "", + "codeIso2Country": "OM", + "geonameId": "0", + "latitudeAirport": 25.583332, + "longitudeAirport": 56.25, + "nameAirport": "Dibaa", + "nameCountry": "Oman", + "phone": "", + "timezone": "Asia/Muscat" + }, + { + "GMT": "-4", + "airportId": 1080, + "codeIataAirport": "BYC", + "codeIataCity": "BYC", + "codeIcaoAirport": "SLYA", + "codeIso2Country": "BO", + "geonameId": "6300794", + "latitudeAirport": -21.95, + "longitudeAirport": -63.65, + "nameAirport": "Yacuiba", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "3", + "airportId": 1081, + "codeIataAirport": "BYD", + "codeIataCity": "BYD", + "codeIcaoAirport": "", + "codeIso2Country": "YE", + "geonameId": "8298904", + "latitudeAirport": 14.133333, + "longitudeAirport": 46.55, + "nameAirport": "Beidah", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "1", + "airportId": 1082, + "codeIataAirport": "BYF", + "codeIataCity": "BYF", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "3038271", + "latitudeAirport": 50.00091, + "longitudeAirport": 2.65096, + "nameAirport": "Bray", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-7", + "airportId": 1083, + "codeIataAirport": "BYG", + "codeIataCity": "BYG", + "codeIcaoAirport": "KBYG", + "codeIso2Country": "US", + "geonameId": "5828952", + "latitudeAirport": 44.35, + "longitudeAirport": -106.7, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 1084, + "codeIataAirport": "BYH", + "codeIataCity": "BYH", + "codeIcaoAirport": "KBYH", + "codeIso2Country": "US", + "geonameId": "8096400", + "latitudeAirport": 35.933334, + "longitudeAirport": -89.916664, + "nameAirport": "Blytheville AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 1085, + "codeIataAirport": "BYI", + "codeIataCity": "BYI", + "codeIcaoAirport": "KBYI", + "codeIso2Country": "US", + "geonameId": "5587385", + "latitudeAirport": 42.54139, + "longitudeAirport": -113.77417, + "nameAirport": "Rupert", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Boise" + }, + { + "GMT": "0", + "airportId": 1086, + "codeIataAirport": "BYJ", + "codeIataCity": "BYJ", + "codeIcaoAirport": "LPBJ", + "codeIso2Country": "PT", + "geonameId": "6299678", + "latitudeAirport": 38.0789, + "longitudeAirport": -7.9324, + "nameAirport": "Beja International", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "0", + "airportId": 1087, + "codeIataAirport": "BYK", + "codeIataCity": "BYK", + "codeIcaoAirport": "DIBK", + "codeIso2Country": "CI", + "geonameId": "6296434", + "latitudeAirport": 7.739444, + "longitudeAirport": -5.069167, + "nameAirport": "Bouake", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "0", + "airportId": 1088, + "codeIataAirport": "BYL", + "codeIataCity": "BYL", + "codeIcaoAirport": "", + "codeIso2Country": "LR", + "geonameId": "2278729", + "latitudeAirport": 7.366667, + "longitudeAirport": -10.0, + "nameAirport": "Bella Yella", + "nameCountry": "Liberia", + "phone": "", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-5", + "airportId": 1089, + "codeIataAirport": "BYM", + "codeIataCity": "BYM", + "codeIcaoAirport": "MUBY", + "codeIso2Country": "CU", + "geonameId": "3567598", + "latitudeAirport": 20.383333, + "longitudeAirport": -76.65, + "nameAirport": "C.M. de Cespedes", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "8", + "airportId": 1090, + "codeIataAirport": "BYN", + "codeIataCity": "BYN", + "codeIcaoAirport": "ZMBH", + "codeIso2Country": "MN", + "geonameId": "7668794", + "latitudeAirport": 46.1, + "longitudeAirport": 100.683334, + "nameAirport": "Bayankhongor", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "-4", + "airportId": 1091, + "codeIataAirport": "BYO", + "codeIataCity": "BYO", + "codeIcaoAirport": "SJDB", + "codeIso2Country": "BR", + "geonameId": "8260787", + "latitudeAirport": -21.229445, + "longitudeAirport": -56.456112, + "nameAirport": "Bonito Airport", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Campo_Grande" + }, + { + "GMT": "8", + "airportId": 1092, + "codeIataAirport": "BYQ", + "codeIataCity": "BYQ", + "codeIcaoAirport": "WALV", + "codeIso2Country": "ID", + "geonameId": "7730899", + "latitudeAirport": 3.583333, + "longitudeAirport": 117.833336, + "nameAirport": "Bunyu", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "1", + "airportId": 1093, + "codeIataAirport": "BYR", + "codeIataCity": "BYR", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 57.27756, + "longitudeAirport": 11.005083, + "nameAirport": "Laeso Airport", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-8", + "airportId": 1094, + "codeIataAirport": "BYS", + "codeIataCity": "BYS", + "codeIcaoAirport": "KBYS", + "codeIso2Country": "US", + "geonameId": "5350057", + "latitudeAirport": 35.266666, + "longitudeAirport": -116.566666, + "nameAirport": "Bicycle Lake AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "0", + "airportId": 1095, + "codeIataAirport": "BYT", + "codeIataCity": "BYT", + "codeIcaoAirport": "EIBN", + "codeIso2Country": "IE", + "geonameId": "7730478", + "latitudeAirport": 51.683334, + "longitudeAirport": -9.45, + "nameAirport": "Bantry", + "nameCountry": "Ireland", + "phone": "", + "timezone": "Europe/Dublin" + }, + { + "GMT": "1", + "airportId": 1096, + "codeIataAirport": "BYU", + "codeIataCity": "BYU", + "codeIcaoAirport": "EDQD", + "codeIso2Country": "DE", + "geonameId": "3207013", + "latitudeAirport": 49.985558, + "longitudeAirport": 11.64, + "nameAirport": "Bindlacher-Berg", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "5.30", + "airportId": 1097, + "codeIataAirport": "BYV", + "codeIataCity": "CMB", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "0", + "latitudeAirport": 6.927468, + "longitudeAirport": 79.848358, + "nameAirport": "Beira Lake SPB", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "-8", + "airportId": 1098, + "codeIataAirport": "BYW", + "codeIataCity": "BYW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5787494", + "latitudeAirport": 48.5, + "longitudeAirport": -123.0, + "nameAirport": "Blakely Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "airportId": 1099, + "codeIataAirport": "BYX", + "codeIataCity": "BYX", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7730900", + "latitudeAirport": -13.2, + "longitudeAirport": 136.23334, + "nameAirport": "Baniyala", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-6", + "airportId": 1100, + "codeIataAirport": "BZA", + "codeIataCity": "BZA", + "codeIcaoAirport": "MNBZ", + "codeIso2Country": "NI", + "geonameId": "7730669", + "latitudeAirport": 13.95, + "longitudeAirport": -84.6, + "nameAirport": "San Pedro", + "nameCountry": "Nicaragua", + "phone": "", + "timezone": "America/Managua" + }, + { + "GMT": "2", + "airportId": 1101, + "codeIataAirport": "BZB", + "codeIataCity": "BZB", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "7730321", + "latitudeAirport": -21.534721, + "longitudeAirport": 35.49167, + "nameAirport": "Bazaruto Island", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-3", + "airportId": 1102, + "codeIataAirport": "BZC", + "codeIataCity": "BZC", + "codeIcaoAirport": "SBBZ", + "codeIso2Country": "BR", + "geonameId": "7730153", + "latitudeAirport": -22.769444, + "longitudeAirport": -41.964443, + "nameAirport": "Buzios", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "airportId": 1103, + "codeIataAirport": "BZD", + "codeIataCity": "BZD", + "codeIcaoAirport": "YBRN", + "codeIso2Country": "AU", + "geonameId": "7668689", + "latitudeAirport": -34.61667, + "longitudeAirport": 143.61667, + "nameAirport": "Balranald", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "airportId": 1104, + "codeIataAirport": "BZE", + "codeIataCity": "BZE", + "codeIcaoAirport": "MZBZ", + "codeIso2Country": "BZ", + "geonameId": "3582677", + "latitudeAirport": 17.539167, + "longitudeAirport": -88.308334, + "nameAirport": "Philip S. W. Goldson International", + "nameCountry": "Belize", + "phone": "", + "timezone": "America/Belize" + }, + { + "GMT": "-8", + "airportId": 1105, + "codeIataAirport": "BZF", + "codeIataCity": "RDD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.5865396, + "longitudeAirport": -122.3916754, + "nameAirport": "Benton Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 1106, + "codeIataAirport": "BZG", + "codeIataCity": "BZG", + "codeIcaoAirport": "EPBY", + "codeIso2Country": "PL", + "geonameId": "7668225", + "latitudeAirport": 53.09667, + "longitudeAirport": 17.978611, + "nameAirport": "Bydgoszcz I. J. Paderewski Airport", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "2", + "airportId": 1107, + "codeIataAirport": "BZH", + "codeIataCity": "BZH", + "codeIcaoAirport": "", + "codeIso2Country": "ZW", + "geonameId": "894679", + "latitudeAirport": -16.816668, + "longitudeAirport": 28.35, + "nameAirport": "Bumi Hills", + "nameCountry": "Zimbabwe", + "phone": "", + "timezone": "Africa/Harare" + }, + { + "GMT": "3", + "airportId": 1108, + "codeIataAirport": "BZI", + "codeIataCity": "BZI", + "codeIcaoAirport": "LTBF", + "codeIso2Country": "TR", + "geonameId": "6299746", + "latitudeAirport": 39.61722, + "longitudeAirport": 27.927778, + "nameAirport": "Balikesir", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3", + "airportId": 1109, + "codeIataAirport": "BZK", + "codeIataCity": "BZK", + "codeIcaoAirport": "UUBP", + "codeIso2Country": "RU", + "geonameId": "6301014", + "latitudeAirport": 53.266666, + "longitudeAirport": 34.333332, + "nameAirport": "Briansk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "6", + "airportId": 1110, + "codeIataAirport": "BZL", + "codeIataCity": "BZL", + "codeIcaoAirport": "VGBR", + "codeIso2Country": "BD", + "geonameId": "7668599", + "latitudeAirport": 22.8, + "longitudeAirport": 90.3, + "nameAirport": "Barisal", + "nameCountry": "Bangladesh", + "phone": "", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "3", + "airportId": 1111, + "codeIataAirport": "BZM", + "codeIataCity": "BZM", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "8260376", + "latitudeAirport": 51.466667, + "longitudeAirport": 4.3, + "nameAirport": "Woensdrecht", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-7", + "airportId": 1112, + "codeIataAirport": "BZN", + "codeIataCity": "BZN", + "codeIcaoAirport": "KBZN", + "codeIso2Country": "US", + "geonameId": "5653636", + "latitudeAirport": 45.777687, + "longitudeAirport": -111.16033, + "nameAirport": "Gallatin Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 1113, + "codeIataAirport": "BZO", + "codeIataCity": "BZO", + "codeIcaoAirport": "LIPB", + "codeIso2Country": "IT", + "geonameId": "6299589", + "latitudeAirport": 46.462444, + "longitudeAirport": 11.330511, + "nameAirport": "Bolzano", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "10", + "airportId": 1114, + "codeIataAirport": "BZP", + "codeIataCity": "BZP", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8299051", + "latitudeAirport": -15.216667, + "longitudeAirport": 144.63333, + "nameAirport": "Bizant", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "airportId": 1115, + "codeIataAirport": "BZQ", + "codeIataCity": "BZO", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 46.4967153, + "longitudeAirport": 11.3580048, + "nameAirport": "Bolzano/Bozen Railway Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "airportId": 1116, + "codeIataAirport": "BZR", + "codeIataCity": "BZR", + "codeIcaoAirport": "LFMU", + "codeIso2Country": "FR", + "geonameId": "6299422", + "latitudeAirport": 43.324165, + "longitudeAirport": 3.354444, + "nameAirport": "Beziers Vias", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "airportId": 1117, + "codeIataAirport": "BZT", + "codeIataCity": "BZT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4676131", + "latitudeAirport": 29.05, + "longitudeAirport": -95.566666, + "nameAirport": "Hinkles Ferry", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 1118, + "codeIataAirport": "BZU", + "codeIataCity": "BZU", + "codeIcaoAirport": "FZKJ", + "codeIso2Country": "CD", + "geonameId": "7730084", + "latitudeAirport": 2.8, + "longitudeAirport": 24.733334, + "nameAirport": "Buta", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "1", + "airportId": 1119, + "codeIataAirport": "BZV", + "codeIataCity": "BZV", + "codeIcaoAirport": "FCBB", + "codeIso2Country": "CG", + "geonameId": "6296955", + "latitudeAirport": -4.258899, + "longitudeAirport": 15.251139, + "nameAirport": "Maya Maya", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "2", + "airportId": 1120, + "codeIataAirport": "BZY", + "codeIataCity": "BZY", + "codeIcaoAirport": "", + "codeIso2Country": "MD", + "geonameId": "6299774", + "latitudeAirport": 47.75, + "longitudeAirport": 27.933332, + "nameAirport": "Beltsy", + "nameCountry": "Moldova", + "phone": "", + "timezone": "Europe/Chisinau" + }, + { + "GMT": "0", + "airportId": 1121, + "codeIataAirport": "BZZ", + "codeIataCity": "BZZ", + "codeIcaoAirport": "EGVN", + "codeIso2Country": "GB", + "geonameId": "6296660", + "latitudeAirport": 51.75, + "longitudeAirport": -1.587093, + "nameAirport": "Raf Brize Norton", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 1122, + "codeIataAirport": "CAA", + "codeIataCity": "CAA", + "codeIcaoAirport": "", + "codeIso2Country": "HN", + "geonameId": "3613974", + "latitudeAirport": 14.830556, + "longitudeAirport": -85.89445, + "nameAirport": "Catacamas", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "1", + "airportId": 1123, + "codeIataAirport": "CAB", + "codeIataCity": "CAB", + "codeIcaoAirport": "FNCA", + "codeIso2Country": "AO", + "geonameId": "6297060", + "latitudeAirport": -5.583333, + "longitudeAirport": 12.2, + "nameAirport": "Cabinda", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-3", + "airportId": 1124, + "codeIataAirport": "CAC", + "codeIataCity": "CAC", + "codeIcaoAirport": "SBCA", + "codeIso2Country": "BR", + "geonameId": "7668432", + "latitudeAirport": -24.95, + "longitudeAirport": -53.466667, + "nameAirport": "Cascavel", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "airportId": 1125, + "codeIataAirport": "CAD", + "codeIataCity": "CAD", + "codeIcaoAirport": "KCAD", + "codeIso2Country": "US", + "geonameId": "5014730", + "latitudeAirport": 44.275833, + "longitudeAirport": -85.42222, + "nameAirport": "Cadillac", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-5", + "airportId": 1126, + "codeIataAirport": "CAE", + "codeIataCity": "CAE", + "codeIcaoAirport": "KCAE", + "codeIso2Country": "US", + "geonameId": "4575352", + "latitudeAirport": 33.946907, + "longitudeAirport": -81.12501, + "nameAirport": "Metropolitan Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "airportId": 1127, + "codeIataAirport": "CAF", + "codeIataCity": "CAF", + "codeIcaoAirport": "SWCA", + "codeIso2Country": "BR", + "geonameId": "7730901", + "latitudeAirport": -4.9, + "longitudeAirport": -66.916664, + "nameAirport": "Carauari", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "1", + "airportId": 1128, + "codeIataAirport": "CAG", + "codeIataCity": "CAG", + "codeIcaoAirport": "LIEE", + "codeIso2Country": "IT", + "geonameId": "6301780", + "latitudeAirport": 39.254333, + "longitudeAirport": 9.060673, + "nameAirport": "Elmas", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "7", + "airportId": 1129, + "codeIataAirport": "CAH", + "codeIataCity": "CAH", + "codeIcaoAirport": "VVCM", + "codeIso2Country": "VN", + "geonameId": "7910382", + "latitudeAirport": 9.175556, + "longitudeAirport": 105.17944, + "nameAirport": "Ca Mau", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "2", + "airportId": 1130, + "codeIataAirport": "CAI", + "codeIataCity": "CAI", + "codeIcaoAirport": "HECA", + "codeIso2Country": "EG", + "geonameId": "6297293", + "latitudeAirport": 30.120106, + "longitudeAirport": 31.40647, + "nameAirport": "Cairo International Airport", + "nameCountry": "Egypt", + "phone": "+20 2 2265-50", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-4", + "airportId": 1131, + "codeIataAirport": "CAJ", + "codeIataCity": "CAJ", + "codeIcaoAirport": "SVCN", + "codeIso2Country": "VE", + "geonameId": "7668480", + "latitudeAirport": 6.25, + "longitudeAirport": -62.833332, + "nameAirport": "Canaima", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-5", + "airportId": 1132, + "codeIataAirport": "CAK", + "codeIataCity": "CAK", + "codeIcaoAirport": "KCAK", + "codeIso2Country": "US", + "geonameId": "5145503", + "latitudeAirport": 40.914963, + "longitudeAirport": -81.43583, + "nameAirport": "Akron/canton Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 1133, + "codeIataAirport": "CAL", + "codeIataCity": "CAL", + "codeIcaoAirport": "EGEC", + "codeIso2Country": "GB", + "geonameId": "6296585", + "latitudeAirport": 55.43639, + "longitudeAirport": -5.686667, + "nameAirport": "Machrihanish", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-4", + "airportId": 1134, + "codeIataAirport": "CAM", + "codeIataCity": "CAM", + "codeIcaoAirport": "SLCA", + "codeIso2Country": "BO", + "geonameId": "6300766", + "latitudeAirport": -20.01111, + "longitudeAirport": -63.56111, + "nameAirport": "Camiri", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "8", + "airportId": 1135, + "codeIataAirport": "CAN", + "codeIataCity": "CAN", + "codeIcaoAirport": "ZGGG", + "codeIso2Country": "CN", + "geonameId": "6301359", + "latitudeAirport": 23.387861, + "longitudeAirport": 113.29734, + "nameAirport": "Guangzhou Baiyun International", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-7", + "airportId": 1136, + "codeIataAirport": "CAO", + "codeIataCity": "CAO", + "codeIcaoAirport": "KCAO", + "codeIso2Country": "US", + "geonameId": "5462285", + "latitudeAirport": 36.45, + "longitudeAirport": -103.183334, + "nameAirport": "Clayton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 1137, + "codeIataAirport": "CAP", + "codeIataCity": "CAP", + "codeIcaoAirport": "MTCH", + "codeIso2Country": "HT", + "geonameId": "6299913", + "latitudeAirport": 19.732779, + "longitudeAirport": -72.195, + "nameAirport": "Cap Haitien", + "nameCountry": "Haiti", + "phone": "", + "timezone": "America/Port-au-Prince" + }, + { + "GMT": "-5", + "airportId": 1138, + "codeIataAirport": "CAQ", + "codeIataCity": "CAQ", + "codeIcaoAirport": "SKCU", + "codeIso2Country": "CO", + "geonameId": "7668457", + "latitudeAirport": 7.6, + "longitudeAirport": -75.25, + "nameAirport": "Caucasia", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 1139, + "codeIataAirport": "CAR", + "codeIataCity": "CAR", + "codeIcaoAirport": "KCAR", + "codeIso2Country": "US", + "geonameId": "4960164", + "latitudeAirport": 46.86667, + "longitudeAirport": -68.01667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 1140, + "codeIataAirport": "CAS", + "codeIataCity": "CAS", + "codeIcaoAirport": "GMMC", + "codeIso2Country": "MA", + "geonameId": "6297207", + "latitudeAirport": 33.559723, + "longitudeAirport": -7.663056, + "nameAirport": "Anfa", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "-5", + "airportId": 1141, + "codeIataAirport": "CAT", + "codeIataCity": "CAT", + "codeIcaoAirport": "", + "codeIso2Country": "BS", + "geonameId": "0", + "latitudeAirport": 24.315, + "longitudeAirport": -75.45361, + "nameAirport": "New Bight", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-3", + "airportId": 1142, + "codeIataAirport": "CAU", + "codeIataCity": "CAU", + "codeIcaoAirport": "SNRU", + "codeIso2Country": "BR", + "geonameId": "7730902", + "latitudeAirport": -8.25, + "longitudeAirport": -35.916668, + "nameAirport": "Caruaru", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Recife" + }, + { + "GMT": "1", + "airportId": 1143, + "codeIataAirport": "CAV", + "codeIataCity": "CAV", + "codeIcaoAirport": "FNCZ", + "codeIso2Country": "AO", + "geonameId": "7730520", + "latitudeAirport": -11.9, + "longitudeAirport": 22.866667, + "nameAirport": "Cazombo", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-3", + "airportId": 1144, + "codeIataAirport": "CAW", + "codeIataCity": "CAW", + "codeIcaoAirport": "SBCP", + "codeIso2Country": "BR", + "geonameId": "6300614", + "latitudeAirport": -21.75, + "longitudeAirport": -41.3, + "nameAirport": "Bartolomeu Lisandro", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "0", + "airportId": 1145, + "codeIataAirport": "CAX", + "codeIataCity": "CAX", + "codeIcaoAirport": "EGNC", + "codeIso2Country": "GB", + "geonameId": "6296604", + "latitudeAirport": 54.93667, + "longitudeAirport": -2.809444, + "nameAirport": "Carlisle", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-3", + "airportId": 1146, + "codeIataAirport": "CAY", + "codeIataCity": "CAY", + "codeIcaoAirport": "SOCA", + "codeIso2Country": "GF", + "geonameId": "3382160", + "latitudeAirport": 4.816667, + "longitudeAirport": -52.36667, + "nameAirport": "Rochambeau", + "nameCountry": "French Guiana", + "phone": "", + "timezone": "America/Cayenne" + }, + { + "GMT": "10", + "airportId": 1147, + "codeIataAirport": "CAZ", + "codeIataCity": "CAZ", + "codeIcaoAirport": "YCBA", + "codeIso2Country": "AU", + "geonameId": "7668696", + "latitudeAirport": -31.535, + "longitudeAirport": 145.79333, + "nameAirport": "Cobar", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-9", + "airportId": 1148, + "codeIataAirport": "CBA", + "codeIataCity": "CBA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 57.716667, + "longitudeAirport": -135.2, + "nameAirport": "Corner Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "-4", + "airportId": 1149, + "codeIataAirport": "CBB", + "codeIataCity": "CBB", + "codeIcaoAirport": "SLCB", + "codeIso2Country": "BO", + "geonameId": "3919968", + "latitudeAirport": -17.413954, + "longitudeAirport": -66.178894, + "nameAirport": "J Wilsterman", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "8", + "airportId": 1150, + "codeIataAirport": "CBC", + "codeIataCity": "CBC", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298689", + "latitudeAirport": -18.916668, + "longitudeAirport": 125.55, + "nameAirport": "Cherrabun", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "5.30", + "airportId": 1151, + "codeIataAirport": "CBD", + "codeIataCity": "CBD", + "codeIcaoAirport": "", + "codeIso2Country": "IN", + "geonameId": "0", + "latitudeAirport": 9.15, + "longitudeAirport": 92.816666, + "nameAirport": "Car Nicobar", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "airportId": 1152, + "codeIataAirport": "CBE", + "codeIataCity": "CBE", + "codeIcaoAirport": "KCBE", + "codeIso2Country": "US", + "geonameId": "4803461", + "latitudeAirport": 39.614445, + "longitudeAirport": -78.76611, + "nameAirport": "Greater Cumberland Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 1153, + "codeIataAirport": "CBF", + "codeIataCity": "CBF", + "codeIcaoAirport": "KCBF", + "codeIso2Country": "US", + "geonameId": "4852841", + "latitudeAirport": 41.266666, + "longitudeAirport": -95.86667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 1154, + "codeIataAirport": "CBG", + "codeIataCity": "CBG", + "codeIcaoAirport": "EGSC", + "codeIso2Country": "GB", + "geonameId": "6296643", + "latitudeAirport": 52.2, + "longitudeAirport": 0.183333, + "nameAirport": "Cambridge", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 1155, + "codeIataAirport": "CBH", + "codeIataCity": "CBH", + "codeIcaoAirport": "DAOR", + "codeIso2Country": "DZ", + "geonameId": "6296382", + "latitudeAirport": 31.647778, + "longitudeAirport": -2.259722, + "nameAirport": "Leger", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "10", + "airportId": 1156, + "codeIataAirport": "CBI", + "codeIataCity": "CBI", + "codeIcaoAirport": "YCBN", + "codeIso2Country": "AU", + "geonameId": "7730903", + "latitudeAirport": -40.333332, + "longitudeAirport": 148.16667, + "nameAirport": "Cape Barren Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Hobart" + }, + { + "GMT": "-4", + "airportId": 1157, + "codeIataAirport": "CBJ", + "codeIataCity": "CBJ", + "codeIcaoAirport": "", + "codeIso2Country": "DO", + "geonameId": "3510888", + "latitudeAirport": 17.933332, + "longitudeAirport": -71.65, + "nameAirport": "Cabo Rojo", + "nameCountry": "Dominican Republic", + "phone": "", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "-6", + "airportId": 1158, + "codeIataAirport": "CBK", + "codeIataCity": "CBK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5445194", + "latitudeAirport": 39.4, + "longitudeAirport": -101.05, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 1159, + "codeIataAirport": "CBL", + "codeIataCity": "CBL", + "codeIcaoAirport": "SVCB", + "codeIso2Country": "VE", + "geonameId": "3645533", + "latitudeAirport": 8.128056, + "longitudeAirport": -63.5375, + "nameAirport": "Ciudad Bolivar", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-6", + "airportId": 1160, + "codeIataAirport": "CBM", + "codeIataCity": "UBS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.5, + "longitudeAirport": -88.416664, + "nameAirport": "Columbus AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "airportId": 1161, + "codeIataAirport": "CBN", + "codeIataCity": "CBN", + "codeIcaoAirport": "WICD", + "codeIso2Country": "ID", + "geonameId": "6785165", + "latitudeAirport": -6.75, + "longitudeAirport": 108.53333, + "nameAirport": "Penggung", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "8", + "airportId": 1162, + "codeIataAirport": "CBO", + "codeIataCity": "CBO", + "codeIcaoAirport": "RPWC", + "codeIso2Country": "PH", + "geonameId": "1716771", + "latitudeAirport": 7.161412, + "longitudeAirport": 124.21464, + "nameAirport": "Awang", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "0", + "airportId": 1163, + "codeIataAirport": "CBP", + "codeIataCity": "CBP", + "codeIcaoAirport": "LPCO", + "codeIso2Country": "PT", + "geonameId": "7730101", + "latitudeAirport": 40.2, + "longitudeAirport": -8.416667, + "nameAirport": "Coimbra", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "1", + "airportId": 1164, + "codeIataAirport": "CBQ", + "codeIataCity": "CBQ", + "codeIcaoAirport": "DNCA", + "codeIso2Country": "NG", + "geonameId": "2346229", + "latitudeAirport": 4.96889, + "longitudeAirport": 8.347415, + "nameAirport": "Calabar", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "10", + "airportId": 1165, + "codeIataAirport": "CBR", + "codeIataCity": "CBR", + "codeIcaoAirport": "YSCB", + "codeIso2Country": "AU", + "geonameId": "6301342", + "latitudeAirport": -35.30735, + "longitudeAirport": 149.19052, + "nameAirport": "Canberra", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-4", + "airportId": 1166, + "codeIataAirport": "CBS", + "codeIataCity": "CBS", + "codeIcaoAirport": "SVON", + "codeIso2Country": "VE", + "geonameId": "3647651", + "latitudeAirport": 10.383333, + "longitudeAirport": -71.416664, + "nameAirport": "Oro Negro", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "1", + "airportId": 1167, + "codeIataAirport": "CBT", + "codeIataCity": "CBT", + "codeIcaoAirport": "FNCM", + "codeIso2Country": "AO", + "geonameId": "7668246", + "latitudeAirport": -12.483333, + "longitudeAirport": 13.483333, + "nameAirport": "Catumbela", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "1", + "airportId": 1168, + "codeIataAirport": "CBU", + "codeIataCity": "CBU", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2939811", + "latitudeAirport": 51.77028, + "longitudeAirport": 14.299167, + "nameAirport": "Cottbus", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "airportId": 1169, + "codeIataAirport": "CBV", + "codeIataCity": "CBV", + "codeIcaoAirport": "MGCB", + "codeIso2Country": "GT", + "geonameId": "6299799", + "latitudeAirport": 15.471667, + "longitudeAirport": -90.409164, + "nameAirport": "Coban", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "-3", + "airportId": 1170, + "codeIataAirport": "CBW", + "codeIataCity": "CBW", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8298747", + "latitudeAirport": -24.001944, + "longitudeAirport": -52.356388, + "nameAirport": "Campo Mourao", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "airportId": 1171, + "codeIataAirport": "CBX", + "codeIataCity": "CBX", + "codeIcaoAirport": "YCDO", + "codeIso2Country": "AU", + "geonameId": "7730904", + "latitudeAirport": -33.86667, + "longitudeAirport": 148.25, + "nameAirport": "Condobolin", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "airportId": 1172, + "codeIataAirport": "CBY", + "codeIataCity": "CBY", + "codeIcaoAirport": "YCBE", + "codeIso2Country": "AU", + "geonameId": "7730905", + "latitudeAirport": -19.478611, + "longitudeAirport": 140.92612, + "nameAirport": "Canobie", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "airportId": 1173, + "codeIataAirport": "CBZ", + "codeIataCity": "CBZ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299180", + "latitudeAirport": 55.38333, + "longitudeAirport": -132.41667, + "nameAirport": "Cabin Creek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "-6", + "airportId": 1174, + "codeIataAirport": "CCA", + "codeIataCity": "CCA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4111433", + "latitudeAirport": 35.316666, + "longitudeAirport": -94.3, + "nameAirport": "Chaffee AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 1175, + "codeIataAirport": "CCB", + "codeIataCity": "CCB", + "codeIcaoAirport": "KCCB", + "codeIso2Country": "US", + "geonameId": "5404915", + "latitudeAirport": 34.113888, + "longitudeAirport": -117.68889, + "nameAirport": "Cable Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-8", + "airportId": 1176, + "codeIataAirport": "CCD", + "codeIataCity": "LAX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.066666, + "longitudeAirport": -118.26667, + "nameAirport": "Century City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "airportId": 1177, + "codeIataAirport": "CCE", + "codeIataCity": "SFG", + "codeIcaoAirport": "", + "codeIso2Country": "MF", + "geonameId": "0", + "latitudeAirport": 18.05, + "longitudeAirport": -63.11667, + "nameAirport": "Grand Case", + "nameCountry": "Saint Martin", + "phone": "", + "timezone": "America/Marigot" + }, + { + "GMT": "1", + "airportId": 1178, + "codeIataAirport": "CCF", + "codeIataCity": "CCF", + "codeIcaoAirport": "LFMK", + "codeIso2Country": "FR", + "geonameId": "6299416", + "latitudeAirport": 43.216667, + "longitudeAirport": 2.316667, + "nameAirport": "Salvaza", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "airportId": 1179, + "codeIataAirport": "CCG", + "codeIataCity": "CCG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5519650", + "latitudeAirport": 31.4, + "longitudeAirport": -102.35, + "nameAirport": "Crane County Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 1180, + "codeIataAirport": "CCH", + "codeIataCity": "CCH", + "codeIcaoAirport": "SCCC", + "codeIso2Country": "CL", + "geonameId": "6300691", + "latitudeAirport": -46.55, + "longitudeAirport": -71.7, + "nameAirport": "Chile Chico", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-3", + "airportId": 1181, + "codeIataAirport": "CCI", + "codeIataCity": "CCI", + "codeIcaoAirport": "SSCK", + "codeIso2Country": "BR", + "geonameId": "7668472", + "latitudeAirport": -27.181389, + "longitudeAirport": -52.050556, + "nameAirport": "Concordia", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "5.30", + "airportId": 1182, + "codeIataAirport": "CCJ", + "codeIataCity": "CCJ", + "codeIcaoAirport": "VOCL", + "codeIso2Country": "IN", + "geonameId": "7668634", + "latitudeAirport": 11.14025, + "longitudeAirport": 75.950584, + "nameAirport": "Kozhikode Airport", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "6.30", + "airportId": 1183, + "codeIataAirport": "CCK", + "codeIataCity": "CCK", + "codeIcaoAirport": "YPCC", + "codeIso2Country": "CC", + "geonameId": "6301324", + "latitudeAirport": -12.166667, + "longitudeAirport": 96.916664, + "nameAirport": "Cocos Islands", + "nameCountry": "Cocos Islands", + "phone": "", + "timezone": "Indian/Cocos" + }, + { + "GMT": "10", + "airportId": 1184, + "codeIataAirport": "CCL", + "codeIataCity": "CCL", + "codeIcaoAirport": "YCCA", + "codeIso2Country": "AU", + "geonameId": "7668698", + "latitudeAirport": -26.75, + "longitudeAirport": 150.63333, + "nameAirport": "Chinchilla", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "airportId": 1185, + "codeIataAirport": "CCM", + "codeIataCity": "CCM", + "codeIcaoAirport": "SBCM", + "codeIso2Country": "BR", + "geonameId": "7668435", + "latitudeAirport": -28.7, + "longitudeAirport": -49.36667, + "nameAirport": "Criciuma", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "4.30", + "airportId": 1186, + "codeIataAirport": "CCN", + "codeIataCity": "CCN", + "codeIcaoAirport": "OACC", + "codeIso2Country": "AF", + "geonameId": "7668388", + "latitudeAirport": 34.533333, + "longitudeAirport": 65.26667, + "nameAirport": "Chakcharan", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "-5", + "airportId": 1187, + "codeIataAirport": "CCO", + "codeIataCity": "CCO", + "codeIcaoAirport": "SKCI", + "codeIso2Country": "CO", + "geonameId": "7730906", + "latitudeAirport": 4.566667, + "longitudeAirport": -71.333336, + "nameAirport": "Carimagua", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-4", + "airportId": 1188, + "codeIataAirport": "CCP", + "codeIataCity": "CCP", + "codeIcaoAirport": "SCIE", + "codeIso2Country": "CL", + "geonameId": "6300702", + "latitudeAirport": -36.777122, + "longitudeAirport": -73.05944, + "nameAirport": "Carriel Sur", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-3", + "airportId": 1189, + "codeIataAirport": "CCQ", + "codeIataCity": "CCQ", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8298778", + "latitudeAirport": -12.6, + "longitudeAirport": -38.966667, + "nameAirport": "Cachoeira", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "-8", + "airportId": 1190, + "codeIataAirport": "CCR", + "codeIataCity": "CCR", + "codeIcaoAirport": "KCCR", + "codeIso2Country": "US", + "geonameId": "5339111", + "latitudeAirport": 37.988888, + "longitudeAirport": -122.05556, + "nameAirport": "Buchanan Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "airportId": 1191, + "codeIataAirport": "CCS", + "codeIataCity": "CCS", + "codeIcaoAirport": "SVMI", + "codeIso2Country": "VE", + "geonameId": "3646738", + "latitudeAirport": 10.596942, + "longitudeAirport": -67.00551, + "nameAirport": "Simon Bolivar International Airport", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "5.30", + "airportId": 1192, + "codeIataAirport": "CCU", + "codeIataCity": "CCU", + "codeIcaoAirport": "VECC", + "codeIso2Country": "IN", + "geonameId": "6301069", + "latitudeAirport": 22.64531, + "longitudeAirport": 88.43931, + "nameAirport": "Netaji Subhas Chandra", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "11", + "airportId": 1193, + "codeIataAirport": "CCV", + "codeIataCity": "CCV", + "codeIcaoAirport": "NVSF", + "codeIso2Country": "VU", + "geonameId": "7730709", + "latitudeAirport": -16.2, + "longitudeAirport": 167.5, + "nameAirport": "Craig Cove", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "9.30", + "airportId": 1194, + "codeIataAirport": "CCW", + "codeIataCity": "CCW", + "codeIcaoAirport": "YCWL", + "codeIso2Country": "AU", + "geonameId": "7730907", + "latitudeAirport": -33.63333, + "longitudeAirport": 136.83333, + "nameAirport": "Cowell", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-4", + "airportId": 1195, + "codeIataAirport": "CCX", + "codeIataCity": "CCX", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8298818", + "latitudeAirport": -16.066668, + "longitudeAirport": -57.7, + "nameAirport": "Caceres", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-6", + "airportId": 1196, + "codeIataAirport": "CCY", + "codeIataCity": "CCY", + "codeIcaoAirport": "KCCY", + "codeIso2Country": "US", + "geonameId": "4851170", + "latitudeAirport": 43.066666, + "longitudeAirport": -92.683334, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 1197, + "codeIataAirport": "CCZ", + "codeIataCity": "CCZ", + "codeIcaoAirport": "MYBC", + "codeIso2Country": "BS", + "geonameId": "0", + "latitudeAirport": 25.4175, + "longitudeAirport": -77.881386, + "nameAirport": "Chub Cay", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "9.30", + "airportId": 1198, + "codeIataAirport": "CDA", + "codeIataCity": "CDA", + "codeIcaoAirport": "YCOO", + "codeIso2Country": "AU", + "geonameId": "7730908", + "latitudeAirport": -12.905278, + "longitudeAirport": 132.5225, + "nameAirport": "Cooinda", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-9", + "airportId": 1199, + "codeIataAirport": "CDB", + "codeIataCity": "CDB", + "codeIcaoAirport": "PACD", + "codeIso2Country": "US", + "geonameId": "5859684", + "latitudeAirport": 55.20457, + "longitudeAirport": -162.71774, + "nameAirport": "Cold Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "-7", + "airportId": 1200, + "codeIataAirport": "CDC", + "codeIataCity": "CDC", + "codeIcaoAirport": "KCDC", + "codeIso2Country": "US", + "geonameId": "5536638", + "latitudeAirport": 37.7025, + "longitudeAirport": -113.09611, + "nameAirport": "Cedar City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 1201, + "codeIataAirport": "CDD", + "codeIataCity": "CDD", + "codeIcaoAirport": "MHCU", + "codeIso2Country": "HN", + "geonameId": "7730658", + "latitudeAirport": 15.322222, + "longitudeAirport": -83.602776, + "nameAirport": "Cauquira", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-5", + "airportId": 1202, + "codeIataAirport": "CDE", + "codeIataCity": "CDE", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "8299135", + "latitudeAirport": 8.333333, + "longitudeAirport": -77.55, + "nameAirport": "Caledonia", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "1", + "airportId": 1203, + "codeIataAirport": "CDG", + "codeIataCity": "PAR", + "codeIcaoAirport": "LFPG", + "codeIso2Country": "FR", + "geonameId": "6269554", + "latitudeAirport": 49.003197, + "longitudeAirport": 2.567023, + "nameAirport": "Charles De Gaulle", + "nameCountry": "France", + "phone": "(01) 4862 121", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "airportId": 1204, + "codeIataAirport": "CDH", + "codeIataCity": "CDH", + "codeIcaoAirport": "KCDH", + "codeIso2Country": "US", + "geonameId": "4113887", + "latitudeAirport": 33.583332, + "longitudeAirport": -92.833336, + "nameAirport": "Harrell Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 1205, + "codeIataAirport": "CDI", + "codeIataCity": "CDI", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "0", + "latitudeAirport": -20.836111, + "longitudeAirport": -41.186943, + "nameAirport": "Cachoeiro Itapemirim", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-3", + "airportId": 1206, + "codeIataAirport": "CDJ", + "codeIataCity": "CDJ", + "codeIcaoAirport": "SBAA", + "codeIso2Country": "BR", + "geonameId": "6300594", + "latitudeAirport": -8.233333, + "longitudeAirport": -49.283333, + "nameAirport": "Conceicao Do Araguaia", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Belem" + }, + { + "GMT": "-5", + "airportId": 1207, + "codeIataAirport": "CDK", + "codeIataCity": "CDK", + "codeIcaoAirport": "KCDK", + "codeIso2Country": "US", + "geonameId": "4156693", + "latitudeAirport": 29.133333, + "longitudeAirport": -83.03333, + "nameAirport": "Lewis", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 1208, + "codeIataAirport": "CDL", + "codeIataCity": "CDL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5858519", + "latitudeAirport": 65.90806, + "longitudeAirport": -161.93834, + "nameAirport": "Candle", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 1209, + "codeIataAirport": "CDN", + "codeIataCity": "CDN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4573209", + "latitudeAirport": 34.266666, + "longitudeAirport": -80.6, + "nameAirport": "Woodward Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 1210, + "codeIataAirport": "CDO", + "codeIataCity": "CDO", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "1012600", + "latitudeAirport": -32.13333, + "longitudeAirport": 25.6, + "nameAirport": "Cradock", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "5.30", + "airportId": 1211, + "codeIataAirport": "CDP", + "codeIataCity": "CDP", + "codeIcaoAirport": "VOCP", + "codeIso2Country": "IN", + "geonameId": "6301123", + "latitudeAirport": 14.516667, + "longitudeAirport": 78.78333, + "nameAirport": "Cuddapah", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "airportId": 1212, + "codeIataAirport": "CDQ", + "codeIataCity": "CDQ", + "codeIcaoAirport": "YCRY", + "codeIso2Country": "AU", + "geonameId": "7730909", + "latitudeAirport": -18.3, + "longitudeAirport": 142.25, + "nameAirport": "Croydon", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-7", + "airportId": 1213, + "codeIataAirport": "CDR", + "codeIataCity": "CDR", + "codeIcaoAirport": "KCDR", + "codeIso2Country": "US", + "geonameId": "5694177", + "latitudeAirport": 42.835, + "longitudeAirport": -103.09778, + "nameAirport": "Chadron", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 1214, + "codeIataAirport": "CDS", + "codeIataCity": "CDS", + "codeIcaoAirport": "KCDS", + "codeIso2Country": "US", + "geonameId": "5518765", + "latitudeAirport": 37.416668, + "longitudeAirport": -100.21667, + "nameAirport": "Childress", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 1215, + "codeIataAirport": "CDT", + "codeIataCity": "CDT", + "codeIcaoAirport": "LECN", + "codeIso2Country": "ES", + "geonameId": "8260997", + "latitudeAirport": 40.2097, + "longitudeAirport": 0.06972, + "nameAirport": "Castellon", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "10", + "airportId": 1216, + "codeIataAirport": "CDU", + "codeIataCity": "CDU", + "codeIcaoAirport": "YSCN", + "codeIso2Country": "AU", + "geonameId": "6301345", + "latitudeAirport": -15.45, + "longitudeAirport": 124.416664, + "nameAirport": "Camden", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-9", + "airportId": 1217, + "codeIataAirport": "CDV", + "codeIataCity": "CDV", + "codeIcaoAirport": "PACV", + "codeIso2Country": "US", + "geonameId": "5868732", + "latitudeAirport": 60.493057, + "longitudeAirport": -145.47, + "nameAirport": "Mudhole Smith", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 1218, + "codeIataAirport": "CDW", + "codeIataCity": "CDW", + "codeIcaoAirport": "KCDW", + "codeIso2Country": "US", + "geonameId": "5097708", + "latitudeAirport": 40.833332, + "longitudeAirport": -74.26667, + "nameAirport": "Caldwell Wright", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 1219, + "codeIataAirport": "CDY", + "codeIataCity": "CDY", + "codeIcaoAirport": "RPMU", + "codeIso2Country": "PH", + "geonameId": "7730761", + "latitudeAirport": 7.013611, + "longitudeAirport": 118.495, + "nameAirport": "Cagayan De Sulu", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "1", + "airportId": 1220, + "codeIataAirport": "CDZ", + "codeIataCity": "CDZ", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "2520600", + "latitudeAirport": 36.533333, + "longitudeAirport": -6.3, + "nameAirport": "Cadiz", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-6", + "airportId": 1221, + "codeIataAirport": "CEA", + "codeIataCity": "ICT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 37.7, + "longitudeAirport": -97.333336, + "nameAirport": "Cessna Aircraft Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 1222, + "codeIataAirport": "CEB", + "codeIataCity": "CEB", + "codeIcaoAirport": "RPMC", + "codeIso2Country": "PH", + "geonameId": "6452620", + "latitudeAirport": 10.313333, + "longitudeAirport": 123.98278, + "nameAirport": "Mactan-Cebu International", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-8", + "airportId": 1223, + "codeIataAirport": "CEC", + "codeIataCity": "CEC", + "codeIcaoAirport": "KCEC", + "codeIso2Country": "US", + "geonameId": "5562087", + "latitudeAirport": 41.78, + "longitudeAirport": -124.23583, + "nameAirport": "Mc Namara Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "airportId": 1224, + "codeIataAirport": "CED", + "codeIataCity": "CED", + "codeIcaoAirport": "YCDU", + "codeIso2Country": "AU", + "geonameId": "6301325", + "latitudeAirport": -32.12378, + "longitudeAirport": 133.70122, + "nameAirport": "Ceduna", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "3", + "airportId": 1225, + "codeIataAirport": "CEE", + "codeIataCity": "CEE", + "codeIcaoAirport": "ULBC", + "codeIso2Country": "RU", + "geonameId": "7730189", + "latitudeAirport": 59.283333, + "longitudeAirport": 38.066666, + "nameAirport": "Cherepovets", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-5", + "airportId": 1226, + "codeIataAirport": "CEF", + "codeIataCity": "CEF", + "codeIcaoAirport": "KCEF", + "codeIso2Country": "US", + "geonameId": "4955283", + "latitudeAirport": 42.183376, + "longitudeAirport": -72.55383, + "nameAirport": "Westover ARB/Metropolitan", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 1227, + "codeIataAirport": "CEG", + "codeIataCity": "CEG", + "codeIcaoAirport": "EGNR", + "codeIso2Country": "GB", + "geonameId": "6296609", + "latitudeAirport": 53.166668, + "longitudeAirport": -2.916667, + "nameAirport": "Chester", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "airportId": 1228, + "codeIataAirport": "CEH", + "codeIataCity": "CEH", + "codeIcaoAirport": "", + "codeIso2Country": "MW", + "geonameId": "8298734", + "latitudeAirport": -10.55, + "longitudeAirport": 33.8, + "nameAirport": "Chelinda", + "nameCountry": "Malawi", + "phone": "", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "7", + "airportId": 1229, + "codeIataAirport": "CEI", + "codeIataCity": "CEI", + "codeIcaoAirport": "VTCT", + "codeIso2Country": "TH", + "geonameId": "6452619", + "latitudeAirport": 19.954609, + "longitudeAirport": 99.878815, + "nameAirport": "Chiang Rai", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "5", + "airportId": 1230, + "codeIataAirport": "CEK", + "codeIataCity": "CEK", + "codeIcaoAirport": "USCC", + "codeIso2Country": "RU", + "geonameId": "6300999", + "latitudeAirport": 55.297504, + "longitudeAirport": 61.51235, + "nameAirport": "Chelyabinsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-9", + "airportId": 1231, + "codeIataAirport": "CEM", + "codeIataCity": "CEM", + "codeIcaoAirport": "PACE", + "codeIso2Country": "US", + "geonameId": "5858896", + "latitudeAirport": 65.57472, + "longitudeAirport": -144.78194, + "nameAirport": "Central", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "airportId": 1232, + "codeIataAirport": "CEN", + "codeIataCity": "CEN", + "codeIcaoAirport": "MMCN", + "codeIso2Country": "MX", + "geonameId": "6299834", + "latitudeAirport": 27.391945, + "longitudeAirport": -109.839165, + "nameAirport": "Ciudad Obregon", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Hermosillo" + }, + { + "GMT": "1", + "airportId": 1233, + "codeIataAirport": "CEO", + "codeIataCity": "CEO", + "codeIcaoAirport": "FNWK", + "codeIso2Country": "AO", + "geonameId": "8261051", + "latitudeAirport": 9.308333, + "longitudeAirport": 124.73055, + "nameAirport": "Waco Kungo", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-4", + "airportId": 1234, + "codeIataAirport": "CEP", + "codeIataCity": "CEP", + "codeIcaoAirport": "SLCP", + "codeIso2Country": "BO", + "geonameId": "6300770", + "latitudeAirport": -16.233334, + "longitudeAirport": -62.083332, + "nameAirport": "Concepcion", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "1", + "airportId": 1235, + "codeIataAirport": "CEQ", + "codeIataCity": "CEQ", + "codeIcaoAirport": "LFMD", + "codeIso2Country": "FR", + "geonameId": "6299412", + "latitudeAirport": 43.54639, + "longitudeAirport": 6.954167, + "nameAirport": "Mandelieu", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 1236, + "codeIataAirport": "CER", + "codeIataCity": "CER", + "codeIcaoAirport": "LFRC", + "codeIso2Country": "FR", + "geonameId": "6299452", + "latitudeAirport": 49.65111, + "longitudeAirport": -1.465278, + "nameAirport": "Maupertus", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "airportId": 1237, + "codeIataAirport": "CES", + "codeIataCity": "CES", + "codeIcaoAirport": "YCNK", + "codeIso2Country": "AU", + "geonameId": "7668703", + "latitudeAirport": -32.833332, + "longitudeAirport": 151.35, + "nameAirport": "Cessnock", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "airportId": 1238, + "codeIataAirport": "CET", + "codeIataCity": "CET", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "3025053", + "latitudeAirport": 47.066666, + "longitudeAirport": -0.866667, + "nameAirport": "Le Pontreau", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 1239, + "codeIataAirport": "CEU", + "codeIataCity": "CEU", + "codeIcaoAirport": "KCEU", + "codeIso2Country": "US", + "geonameId": "4574989", + "latitudeAirport": 34.683334, + "longitudeAirport": -82.833336, + "nameAirport": "Oconee County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 1240, + "codeIataAirport": "CEV", + "codeIataCity": "CEV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.65, + "longitudeAirport": -85.13333, + "nameAirport": "Mettle Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-6", + "airportId": 1241, + "codeIataAirport": "CEW", + "codeIataCity": "CEW", + "codeIcaoAirport": "KCEW", + "codeIso2Country": "US", + "geonameId": "4152311", + "latitudeAirport": 30.766666, + "longitudeAirport": -86.566666, + "nameAirport": "Bob Sikes", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 1242, + "codeIataAirport": "CEX", + "codeIataCity": "CEX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5859060", + "latitudeAirport": 65.05, + "longitudeAirport": -146.16667, + "nameAirport": "Chena Hot Springs", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 1243, + "codeIataAirport": "CEY", + "codeIataCity": "CEY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 36.61667, + "longitudeAirport": -88.316666, + "nameAirport": "Calloway County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 1244, + "codeIataAirport": "CEZ", + "codeIataCity": "CEZ", + "codeIcaoAirport": "KCEZ", + "codeIso2Country": "US", + "geonameId": "5418118", + "latitudeAirport": 37.302776, + "longitudeAirport": -108.62722, + "nameAirport": "Montezuma County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "airportId": 1245, + "codeIataAirport": "CFA", + "codeIataCity": "CFA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299203", + "latitudeAirport": 58.216667, + "longitudeAirport": -157.5, + "nameAirport": "Coffee Point", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "airportId": 1246, + "codeIataAirport": "CFB", + "codeIataCity": "CFB", + "codeIcaoAirport": "SBCB", + "codeIso2Country": "BR", + "geonameId": "7668433", + "latitudeAirport": -22.925, + "longitudeAirport": -42.07861, + "nameAirport": "Cabo Frio", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-3", + "airportId": 1247, + "codeIataAirport": "CFC", + "codeIataCity": "CFC", + "codeIcaoAirport": "SBCD", + "codeIso2Country": "BR", + "geonameId": "7910371", + "latitudeAirport": -26.790556, + "longitudeAirport": -50.941387, + "nameAirport": "Cacador", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "airportId": 1248, + "codeIataAirport": "CFD", + "codeIataCity": "CFD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4677008", + "latitudeAirport": 30.666668, + "longitudeAirport": -96.36667, + "nameAirport": "Coulter Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 1249, + "codeIataAirport": "CFE", + "codeIataCity": "CFE", + "codeIcaoAirport": "LFLC", + "codeIso2Country": "FR", + "geonameId": "6299399", + "latitudeAirport": 45.78032, + "longitudeAirport": 3.163893, + "nameAirport": "Clermont/Ferrand Auvergne International (Aulnat)", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 1250, + "codeIataAirport": "CFF", + "codeIataCity": "CFF", + "codeIcaoAirport": "FNCF", + "codeIso2Country": "AO", + "geonameId": "7768322", + "latitudeAirport": -8.766667, + "longitudeAirport": 18.0, + "nameAirport": "Cafunfo", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-5", + "airportId": 1251, + "codeIataAirport": "CFG", + "codeIataCity": "CFG", + "codeIcaoAirport": "MUCF", + "codeIso2Country": "CU", + "geonameId": "6299918", + "latitudeAirport": 22.15, + "longitudeAirport": -80.41417, + "nameAirport": "Cienfuegos", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "9.30", + "airportId": 1252, + "codeIataAirport": "CFH", + "codeIataCity": "CFH", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298823", + "latitudeAirport": -27.0, + "longitudeAirport": 139.0, + "nameAirport": "Clifton Hills", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "9.30", + "airportId": 1253, + "codeIataAirport": "CFI", + "codeIataCity": "CFI", + "codeIcaoAirport": "YCFD", + "codeIso2Country": "AU", + "geonameId": "7730911", + "latitudeAirport": -17.033333, + "longitudeAirport": 131.28334, + "nameAirport": "Camfield", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "1", + "airportId": 1254, + "codeIataAirport": "CFK", + "codeIataCity": "CFK", + "codeIcaoAirport": "DAOI", + "codeIso2Country": "DZ", + "geonameId": "6296379", + "latitudeAirport": 36.212223, + "longitudeAirport": 1.331667, + "nameAirport": "Aboubakr Belkaid", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "0", + "airportId": 1255, + "codeIataAirport": "CFN", + "codeIataCity": "CFN", + "codeIcaoAirport": "EIDL", + "codeIso2Country": "IE", + "geonameId": "7668216", + "latitudeAirport": 55.041668, + "longitudeAirport": -8.340278, + "nameAirport": "Donegal", + "nameCountry": "Ireland", + "phone": "", + "timezone": "Europe/Dublin" + }, + { + "GMT": "-4", + "airportId": 1256, + "codeIataAirport": "CFO", + "codeIataCity": "CFO", + "codeIcaoAirport": "SJHG", + "codeIso2Country": "BR", + "geonameId": "7730912", + "latitudeAirport": -10.633333, + "longitudeAirport": -51.566666, + "nameAirport": "Confreza", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "10", + "airportId": 1257, + "codeIataAirport": "CFP", + "codeIataCity": "CFP", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8299057", + "latitudeAirport": -18.783333, + "longitudeAirport": 144.35, + "nameAirport": "Carpentaria Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-7", + "airportId": 1258, + "codeIataAirport": "CFQ", + "codeIataCity": "CFQ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5932311", + "latitudeAirport": 49.036945, + "longitudeAirport": -116.49834, + "nameAirport": "Creston Valley Airport", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Creston" + }, + { + "GMT": "1", + "airportId": 1259, + "codeIataAirport": "CFR", + "codeIataCity": "CFR", + "codeIcaoAirport": "LFRK", + "codeIso2Country": "FR", + "geonameId": "6299456", + "latitudeAirport": 49.183437, + "longitudeAirport": -0.459276, + "nameAirport": "Carpiquet", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "airportId": 1260, + "codeIataAirport": "CFS", + "codeIataCity": "CFS", + "codeIcaoAirport": "YSCH", + "codeIso2Country": "AU", + "geonameId": "6301343", + "latitudeAirport": -30.322863, + "longitudeAirport": 153.1153, + "nameAirport": "Coffs Harbour", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-7", + "airportId": 1261, + "codeIataAirport": "CFT", + "codeIataCity": "CFT", + "codeIcaoAirport": "KCFT", + "codeIso2Country": "US", + "geonameId": "5296838", + "latitudeAirport": 33.05, + "longitudeAirport": -109.3, + "nameAirport": "Morenci", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "2", + "airportId": 1262, + "codeIataAirport": "CFU", + "codeIataCity": "CFU", + "codeIcaoAirport": "LGKR", + "codeIso2Country": "GR", + "geonameId": "6299495", + "latitudeAirport": 39.60784, + "longitudeAirport": 19.914644, + "nameAirport": "Ioannis Kapodistrias", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "-6", + "airportId": 1263, + "codeIataAirport": "CFV", + "codeIataCity": "CFV", + "codeIcaoAirport": "KCFV", + "codeIso2Country": "US", + "geonameId": "4269794", + "latitudeAirport": 37.033333, + "longitudeAirport": -95.61667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 1264, + "codeIataAirport": "CGA", + "codeIataCity": "CGA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5845548", + "latitudeAirport": 55.478382, + "longitudeAirport": -133.14616, + "nameAirport": "Craig SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "-4", + "airportId": 1265, + "codeIataAirport": "CGB", + "codeIataCity": "CGB", + "codeIcaoAirport": "SBCY", + "codeIso2Country": "BR", + "geonameId": "6300617", + "latitudeAirport": -15.651725, + "longitudeAirport": -56.120266, + "nameAirport": "International Airport Marechal Rondon", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "10", + "airportId": 1266, + "codeIataAirport": "CGC", + "codeIataCity": "CGC", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260790", + "latitudeAirport": -5.459167, + "longitudeAirport": 148.51584, + "nameAirport": "Cape Gloucester", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 1267, + "codeIataAirport": "CGD", + "codeIataCity": "CGD", + "codeIcaoAirport": "ZGCD", + "codeIso2Country": "CN", + "geonameId": "7730285", + "latitudeAirport": 28.924467, + "longitudeAirport": 111.63886, + "nameAirport": "Changde", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 1268, + "codeIataAirport": "CGE", + "codeIataCity": "CGE", + "codeIcaoAirport": "KCGE", + "codeIso2Country": "US", + "geonameId": "4350190", + "latitudeAirport": 38.566666, + "longitudeAirport": -76.083336, + "nameAirport": "Cambridge", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 1269, + "codeIataAirport": "CGF", + "codeIataCity": "CLE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.5525, + "longitudeAirport": -81.48389, + "nameAirport": "Cuyahoga County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 1270, + "codeIataAirport": "CGG", + "codeIataCity": "CGG", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "0", + "latitudeAirport": 16.083332, + "longitudeAirport": 122.01667, + "nameAirport": "Casiguran", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-3", + "airportId": 1271, + "codeIataAirport": "CGH", + "codeIataCity": "SAO", + "codeIcaoAirport": "SBSP", + "codeIso2Country": "BR", + "geonameId": "6301857", + "latitudeAirport": -23.626902, + "longitudeAirport": -46.659557, + "nameAirport": "Congonhas International Airport", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "airportId": 1272, + "codeIataAirport": "CGI", + "codeIataCity": "CGI", + "codeIcaoAirport": "KCGI", + "codeIso2Country": "US", + "geonameId": "4379969", + "latitudeAirport": 37.22361, + "longitudeAirport": -89.57167, + "nameAirport": "Cape Girardeau", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 1273, + "codeIataAirport": "CGJ", + "codeIataCity": "CGJ", + "codeIcaoAirport": "", + "codeIso2Country": "ZM", + "geonameId": "919009", + "latitudeAirport": -12.516667, + "longitudeAirport": 27.883333, + "nameAirport": "Chingola", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "7", + "airportId": 1274, + "codeIataAirport": "CGK", + "codeIataCity": "JKT", + "codeIcaoAirport": "WIII", + "codeIso2Country": "ID", + "geonameId": "6301878", + "latitudeAirport": -6.130643, + "longitudeAirport": 106.655525, + "nameAirport": "Soekarno-Hatta International", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "8", + "airportId": 1275, + "codeIataAirport": "CGM", + "codeIataCity": "CGM", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "0", + "latitudeAirport": 18.9, + "longitudeAirport": 121.916664, + "nameAirport": "Mambajao", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "1", + "airportId": 1276, + "codeIataAirport": "CGN", + "codeIataCity": "CGN", + "codeIcaoAirport": "EDDK", + "codeIso2Country": "DE", + "geonameId": "6296510", + "latitudeAirport": 50.878365, + "longitudeAirport": 7.122224, + "nameAirport": "Cologne/bonn", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "airportId": 1277, + "codeIataAirport": "CGO", + "codeIataCity": "CGO", + "codeIcaoAirport": "ZHCC", + "codeIso2Country": "CN", + "geonameId": "6301367", + "latitudeAirport": 34.52752, + "longitudeAirport": 113.84024, + "nameAirport": "Zhengzhou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "6", + "airportId": 1278, + "codeIataAirport": "CGP", + "codeIataCity": "CGP", + "codeIcaoAirport": "VGEG", + "codeIso2Country": "BD", + "geonameId": "6301082", + "latitudeAirport": 22.245201, + "longitudeAirport": 91.81516, + "nameAirport": "Patenga", + "nameCountry": "Bangladesh", + "phone": "", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "8", + "airportId": 1279, + "codeIataAirport": "CGQ", + "codeIataCity": "CGQ", + "codeIcaoAirport": "ZYCC", + "codeIso2Country": "CN", + "geonameId": "6301398", + "latitudeAirport": 43.902836, + "longitudeAirport": 125.217545, + "nameAirport": "Changchun", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-4", + "airportId": 1280, + "codeIataAirport": "CGR", + "codeIataCity": "CGR", + "codeIcaoAirport": "SBCG", + "codeIso2Country": "BR", + "geonameId": "6300610", + "latitudeAirport": -20.456991, + "longitudeAirport": -54.668873, + "nameAirport": "International Airport Campo Grande", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Campo_Grande" + }, + { + "GMT": "-5", + "airportId": 1281, + "codeIataAirport": "CGS", + "codeIataCity": "CGS", + "codeIcaoAirport": "KCGS", + "codeIso2Country": "US", + "geonameId": "4351978", + "latitudeAirport": 33.666668, + "longitudeAirport": -84.45, + "nameAirport": "College Park", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 1282, + "codeIataAirport": "CGT", + "codeIataCity": "CGT", + "codeIcaoAirport": "", + "codeIso2Country": "MR", + "geonameId": "8298770", + "latitudeAirport": 20.45, + "longitudeAirport": -12.366667, + "nameAirport": "Chinguitti", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "-4", + "airportId": 1283, + "codeIataAirport": "CGU", + "codeIataCity": "CGU", + "codeIcaoAirport": "", + "codeIso2Country": "VE", + "geonameId": "3645528", + "latitudeAirport": 8.305, + "longitudeAirport": -62.734444, + "nameAirport": "Ciudad Guayana", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "8.45", + "airportId": 1284, + "codeIataAirport": "CGV", + "codeIataCity": "CGV", + "codeIcaoAirport": "YCAG", + "codeIso2Country": "AU", + "geonameId": "7730914", + "latitudeAirport": -32.266666, + "longitudeAirport": 125.46667, + "nameAirport": "Caiguna", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Eucla" + }, + { + "GMT": "8", + "airportId": 1285, + "codeIataAirport": "CGY", + "codeIataCity": "CGY", + "codeIcaoAirport": "RPML", + "codeIso2Country": "PH", + "geonameId": "0", + "latitudeAirport": 8.407744, + "longitudeAirport": 124.61157, + "nameAirport": "Cagayan De Oro Domestic Airport", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-7", + "airportId": 1286, + "codeIataAirport": "CGZ", + "codeIataCity": "CGZ", + "codeIcaoAirport": "KCGZ", + "codeIso2Country": "US", + "geonameId": "5288645", + "latitudeAirport": 32.88333, + "longitudeAirport": -111.75, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "-5", + "airportId": 1287, + "codeIataAirport": "CHA", + "codeIataCity": "CHA", + "codeIcaoAirport": "KCHA", + "codeIso2Country": "US", + "geonameId": "4638375", + "latitudeAirport": 35.036926, + "longitudeAirport": -85.197784, + "nameAirport": "Lovell Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "5", + "airportId": 1288, + "codeIataAirport": "CHB", + "codeIataCity": "CHB", + "codeIcaoAirport": "", + "codeIso2Country": "PK", + "geonameId": "0", + "latitudeAirport": 35.416668, + "longitudeAirport": 74.083336, + "nameAirport": "Chilas", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "12", + "airportId": 1289, + "codeIataAirport": "CHC", + "codeIataCity": "CHC", + "codeIcaoAirport": "NZCH", + "codeIso2Country": "NZ", + "geonameId": "6220393", + "latitudeAirport": -43.488655, + "longitudeAirport": 172.5389, + "nameAirport": "Christchurch International", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "2", + "airportId": 1290, + "codeIataAirport": "CHE", + "codeIataCity": "TLL", + "codeIcaoAirport": "", + "codeIso2Country": "EE", + "geonameId": "0", + "latitudeAirport": 51.933334, + "longitudeAirport": -10.233333, + "nameAirport": "Reenroe", + "nameCountry": "Estonia", + "phone": "", + "timezone": "Europe/Tallinn" + }, + { + "GMT": "9", + "airportId": 1291, + "codeIataAirport": "CHF", + "codeIataCity": "CHF", + "codeIcaoAirport": "RKPE", + "codeIso2Country": "KR", + "geonameId": "7730760", + "latitudeAirport": 35.1375, + "longitudeAirport": 128.69778, + "nameAirport": "Jinhae", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "8", + "airportId": 1292, + "codeIataAirport": "CHG", + "codeIataCity": "CHG", + "codeIcaoAirport": "ZYCY", + "codeIso2Country": "CN", + "geonameId": "7730306", + "latitudeAirport": 41.545082, + "longitudeAirport": 120.4372, + "nameAirport": "Chaoyang Airport", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 1293, + "codeIataAirport": "CHH", + "codeIataCity": "CHH", + "codeIcaoAirport": "SPPY", + "codeIso2Country": "PE", + "geonameId": "6300815", + "latitudeAirport": -6.216667, + "longitudeAirport": -77.85, + "nameAirport": "Chachapoyas", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "-6", + "airportId": 1294, + "codeIataAirport": "CHI", + "codeIataCity": "CHI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4887398", + "latitudeAirport": 41.8781136, + "longitudeAirport": -87.6297982, + "nameAirport": "Chicago FSS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 1295, + "codeIataAirport": "CHJ", + "codeIataCity": "CHJ", + "codeIcaoAirport": "FVCH", + "codeIso2Country": "ZW", + "geonameId": "6297105", + "latitudeAirport": -20.2, + "longitudeAirport": 32.65, + "nameAirport": "Chipinge", + "nameCountry": "Zimbabwe", + "phone": "", + "timezone": "Africa/Harare" + }, + { + "GMT": "-6", + "airportId": 1296, + "codeIataAirport": "CHK", + "codeIataCity": "CHK", + "codeIcaoAirport": "KCHK", + "codeIso2Country": "US", + "geonameId": "4533031", + "latitudeAirport": 35.05, + "longitudeAirport": -97.96667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 1297, + "codeIataAirport": "CHL", + "codeIataCity": "CHL", + "codeIcaoAirport": "KLLJ", + "codeIso2Country": "US", + "geonameId": "5588525", + "latitudeAirport": 44.5, + "longitudeAirport": -114.25, + "nameAirport": "Challis", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Boise" + }, + { + "GMT": "-5", + "airportId": 1298, + "codeIataAirport": "CHM", + "codeIataCity": "CHM", + "codeIcaoAirport": "SPEO", + "codeIso2Country": "PE", + "geonameId": "3698306", + "latitudeAirport": -9.150556, + "longitudeAirport": -78.53111, + "nameAirport": "Chimbote", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "9", + "airportId": 1299, + "codeIataAirport": "CHN", + "codeIataCity": "CHN", + "codeIcaoAirport": "RKJU", + "codeIso2Country": "KR", + "geonameId": "7668417", + "latitudeAirport": 37.016945, + "longitudeAirport": 127.933334, + "nameAirport": "Jeonju", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "-5", + "airportId": 1300, + "codeIataAirport": "CHO", + "codeIataCity": "CHO", + "codeIcaoAirport": "KCHO", + "codeIso2Country": "US", + "geonameId": "4752044", + "latitudeAirport": 38.139416, + "longitudeAirport": -78.44928, + "nameAirport": "Albemarle", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 1301, + "codeIataAirport": "CHP", + "codeIataCity": "CHP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5859426", + "latitudeAirport": 65.46667, + "longitudeAirport": -144.58333, + "nameAirport": "Circle Hot Springs", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 1302, + "codeIataAirport": "CHQ", + "codeIataCity": "CHQ", + "codeIcaoAirport": "LGSA", + "codeIso2Country": "GR", + "geonameId": "6299507", + "latitudeAirport": 35.5402, + "longitudeAirport": 24.140373, + "nameAirport": "Souda", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "1", + "airportId": 1303, + "codeIataAirport": "CHR", + "codeIataCity": "CHR", + "codeIcaoAirport": "LFLX", + "codeIso2Country": "FR", + "geonameId": "6299408", + "latitudeAirport": 46.816666, + "longitudeAirport": 1.7, + "nameAirport": "Chateauroux", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 1304, + "codeIataAirport": "CHS", + "codeIataCity": "CHS", + "codeIcaoAirport": "KCHS", + "codeIso2Country": "US", + "geonameId": "4574342", + "latitudeAirport": 32.884354, + "longitudeAirport": -80.037155, + "nameAirport": "Charleston, AFB Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "12.45", + "airportId": 1305, + "codeIataAirport": "CHT", + "codeIataCity": "CHT", + "codeIcaoAirport": "NZCI", + "codeIso2Country": "NZ", + "geonameId": "6299982", + "latitudeAirport": -43.8, + "longitudeAirport": -176.35, + "nameAirport": "Karewa", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Chatham" + }, + { + "GMT": "-9", + "airportId": 1306, + "codeIataAirport": "CHU", + "codeIataCity": "CHU", + "codeIcaoAirport": "PACH", + "codeIso2Country": "US", + "geonameId": "5859358", + "latitudeAirport": 61.583435, + "longitudeAirport": -159.23882, + "nameAirport": "Chuathbaluk", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 1307, + "codeIataAirport": "CHV", + "codeIataCity": "CHV", + "codeIcaoAirport": "LPCH", + "codeIso2Country": "PT", + "geonameId": "7730639", + "latitudeAirport": 41.733334, + "longitudeAirport": -7.466667, + "nameAirport": "Chaves", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "8", + "airportId": 1308, + "codeIataAirport": "CHW", + "codeIataCity": "CHW", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 39.85, + "longitudeAirport": 98.416664, + "nameAirport": "Jiuhuang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 1309, + "codeIataAirport": "CHX", + "codeIataCity": "CHX", + "codeIcaoAirport": "MPCH", + "codeIso2Country": "PA", + "geonameId": "6299895", + "latitudeAirport": 9.45, + "longitudeAirport": -82.45, + "nameAirport": "Changuinola", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "11", + "airportId": 1310, + "codeIataAirport": "CHY", + "codeIataCity": "CHY", + "codeIcaoAirport": "AGGC", + "codeIso2Country": "SB", + "geonameId": "8261013", + "latitudeAirport": -6.713787, + "longitudeAirport": 156.39856, + "nameAirport": "Choiseul Bay", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-8", + "airportId": 1311, + "codeIataAirport": "CHZ", + "codeIataCity": "CHZ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5719022", + "latitudeAirport": 42.583332, + "longitudeAirport": -121.86667, + "nameAirport": "State", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 1312, + "codeIataAirport": "CIA", + "codeIataCity": "ROM", + "codeIcaoAirport": "LIRA", + "codeIso2Country": "IT", + "geonameId": "6299616", + "latitudeAirport": 41.799065, + "longitudeAirport": 12.590987, + "nameAirport": "Ciampino", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-8", + "airportId": 1313, + "codeIataAirport": "CIB", + "codeIataCity": "AVX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.406113, + "longitudeAirport": -118.41389, + "nameAirport": "Ap In The Sky", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-8", + "airportId": 1314, + "codeIataAirport": "CIC", + "codeIataCity": "CIC", + "codeIcaoAirport": "KCIC", + "codeIso2Country": "US", + "geonameId": "5336278", + "latitudeAirport": 39.795834, + "longitudeAirport": -121.85667, + "nameAirport": "Chico", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 1315, + "codeIataAirport": "CID", + "codeIataCity": "CID", + "codeIcaoAirport": "KCID", + "codeIso2Country": "US", + "geonameId": "4850762", + "latitudeAirport": 41.889423, + "longitudeAirport": -91.7003, + "nameAirport": "Eastern Iowa Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 1316, + "codeIataAirport": "CIE", + "codeIataCity": "CIE", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298882", + "latitudeAirport": -33.36667, + "longitudeAirport": 116.13333, + "nameAirport": "Collie", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "airportId": 1317, + "codeIataAirport": "CIF", + "codeIataCity": "CIF", + "codeIcaoAirport": "ZBCF", + "codeIso2Country": "CN", + "geonameId": "2048157", + "latitudeAirport": 42.237392, + "longitudeAirport": 118.91089, + "nameAirport": "Chifeng", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-7", + "airportId": 1318, + "codeIataAirport": "CIG", + "codeIataCity": "CIG", + "codeIcaoAirport": "KCAG", + "codeIso2Country": "US", + "geonameId": "5576076", + "latitudeAirport": 40.495556, + "longitudeAirport": -107.525, + "nameAirport": "Craig-Moffat", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "airportId": 1319, + "codeIataAirport": "CIH", + "codeIataCity": "CIH", + "codeIcaoAirport": "ZBCZ", + "codeIso2Country": "CN", + "geonameId": "7730917", + "latitudeAirport": 36.24588, + "longitudeAirport": 113.12158, + "nameAirport": "Changzhi", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "airportId": 1320, + "codeIataAirport": "CII", + "codeIataCity": "CII", + "codeIcaoAirport": "LTBD", + "codeIso2Country": "TR", + "geonameId": "8394055", + "latitudeAirport": 47.90278, + "longitudeAirport": -112.312225, + "nameAirport": "Cildir", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-4", + "airportId": 1321, + "codeIataAirport": "CIJ", + "codeIataCity": "CIJ", + "codeIcaoAirport": "SLCO", + "codeIso2Country": "BO", + "geonameId": "6300769", + "latitudeAirport": -11.026389, + "longitudeAirport": -68.75278, + "nameAirport": "Capitan Anibal Arab", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-9", + "airportId": 1322, + "codeIataAirport": "CIK", + "codeIataCity": "CIK", + "codeIcaoAirport": "PACI", + "codeIso2Country": "US", + "geonameId": "5858949", + "latitudeAirport": 66.648056, + "longitudeAirport": -143.72917, + "nameAirport": "Chalkyitsik", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 1323, + "codeIataAirport": "CIL", + "codeIataCity": "CIL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5859956", + "latitudeAirport": 64.90833, + "longitudeAirport": -163.73334, + "nameAirport": "Melsing Creek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "-5", + "airportId": 1324, + "codeIataAirport": "CIM", + "codeIataCity": "CIM", + "codeIcaoAirport": "SKCM", + "codeIso2Country": "CO", + "geonameId": "7730918", + "latitudeAirport": 6.483333, + "longitudeAirport": -74.11667, + "nameAirport": "Cimitarra", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 1325, + "codeIataAirport": "CIN", + "codeIataCity": "CIN", + "codeIcaoAirport": "KCIN", + "codeIso2Country": "US", + "geonameId": "4850478", + "latitudeAirport": 42.066666, + "longitudeAirport": -94.86667, + "nameAirport": "Carroll", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 1326, + "codeIataAirport": "CIO", + "codeIataCity": "CIO", + "codeIcaoAirport": "SGCO", + "codeIso2Country": "PY", + "geonameId": "6300728", + "latitudeAirport": -23.434444, + "longitudeAirport": -57.41833, + "nameAirport": "MCAL Lopez", + "nameCountry": "Paraguay", + "phone": "", + "timezone": "America/Asuncion" + }, + { + "GMT": "2", + "airportId": 1327, + "codeIataAirport": "CIP", + "codeIataCity": "CIP", + "codeIcaoAirport": "FLCP", + "codeIso2Country": "ZM", + "geonameId": "918706", + "latitudeAirport": -13.556944, + "longitudeAirport": 32.587223, + "nameAirport": "Chipata", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-6", + "airportId": 1328, + "codeIataAirport": "CIQ", + "codeIataCity": "CIQ", + "codeIcaoAirport": "", + "codeIso2Country": "GT", + "geonameId": "7730919", + "latitudeAirport": 14.85, + "longitudeAirport": -89.61667, + "nameAirport": "Chiquimula", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "-6", + "airportId": 1329, + "codeIataAirport": "CIR", + "codeIataCity": "CIR", + "codeIcaoAirport": "KCIR", + "codeIso2Country": "US", + "geonameId": "4234986", + "latitudeAirport": 37.0, + "longitudeAirport": -89.183334, + "nameAirport": "Cairo", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "13", + "airportId": 1330, + "codeIataAirport": "CIS", + "codeIataCity": "CIS", + "codeIcaoAirport": "PCIS", + "codeIso2Country": "KI", + "geonameId": "7521809", + "latitudeAirport": -2.833333, + "longitudeAirport": -171.66667, + "nameAirport": "Canton Island", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Enderbury" + }, + { + "GMT": "6", + "airportId": 1331, + "codeIataAirport": "CIT", + "codeIataCity": "CIT", + "codeIcaoAirport": "UAII", + "codeIso2Country": "KZ", + "geonameId": "6300916", + "latitudeAirport": 42.3, + "longitudeAirport": 69.6, + "nameAirport": "Shimkent", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-5", + "airportId": 1332, + "codeIataAirport": "CIU", + "codeIataCity": "SSM", + "codeIcaoAirport": "KCIU", + "codeIso2Country": "US", + "geonameId": "4988756", + "latitudeAirport": 46.5, + "longitudeAirport": -84.35, + "nameAirport": "Chippewa County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-9", + "airportId": 1333, + "codeIataAirport": "CIV", + "codeIataCity": "CIV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8298989", + "latitudeAirport": 55.216667, + "longitudeAirport": -132.21666, + "nameAirport": "Chomley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "-4", + "airportId": 1334, + "codeIataAirport": "CIW", + "codeIataCity": "CIW", + "codeIcaoAirport": "TVSC", + "codeIso2Country": "VC", + "geonameId": "7668484", + "latitudeAirport": 12.7, + "longitudeAirport": -61.316666, + "nameAirport": "Canouan Island", + "nameCountry": "Saint Vincent and the Grenadines", + "phone": "", + "timezone": "America/St_Vincent" + }, + { + "GMT": "-5", + "airportId": 1335, + "codeIataAirport": "CIX", + "codeIataCity": "CIX", + "codeIcaoAirport": "SPHI", + "codeIso2Country": "PE", + "geonameId": "3698352", + "latitudeAirport": -6.789722, + "longitudeAirport": -79.83222, + "nameAirport": "Cornel Ruiz", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "1", + "airportId": 1336, + "codeIataAirport": "CIY", + "codeIataCity": "CIY", + "codeIcaoAirport": "LICB", + "codeIso2Country": "IT", + "geonameId": "2524955", + "latitudeAirport": 36.99167, + "longitudeAirport": 14.606944, + "nameAirport": "Comiso", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-4", + "airportId": 1337, + "codeIataAirport": "CIZ", + "codeIataCity": "CIZ", + "codeIcaoAirport": "SWKO", + "codeIso2Country": "BR", + "geonameId": "7730920", + "latitudeAirport": -4.083333, + "longitudeAirport": -63.13333, + "nameAirport": "Coari", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "-5", + "airportId": 1338, + "codeIataAirport": "CJA", + "codeIataCity": "CJA", + "codeIcaoAirport": "SPJB", + "codeIso2Country": "PE", + "geonameId": "6300811", + "latitudeAirport": -7.133333, + "longitudeAirport": -78.5, + "nameAirport": "Cajamarca", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "5.30", + "airportId": 1339, + "codeIataAirport": "CJB", + "codeIataCity": "CJB", + "codeIcaoAirport": "VOCB", + "codeIso2Country": "IN", + "geonameId": "6301121", + "latitudeAirport": 11.031026, + "longitudeAirport": 77.03893, + "nameAirport": "Peelamedu", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-4", + "airportId": 1340, + "codeIataAirport": "CJC", + "codeIataCity": "CJC", + "codeIcaoAirport": "SCCF", + "codeIso2Country": "CL", + "geonameId": "3897347", + "latitudeAirport": -22.495085, + "longitudeAirport": -68.90843, + "nameAirport": "El Loa", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-5", + "airportId": 1341, + "codeIataAirport": "CJD", + "codeIataCity": "CJD", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 1.333333, + "longitudeAirport": -74.26667, + "nameAirport": "Candilejas", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-8", + "airportId": 1342, + "codeIataAirport": "CJH", + "codeIataCity": "CJH", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260795", + "latitudeAirport": 51.333332, + "longitudeAirport": -124.083336, + "nameAirport": "Chilko Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "9", + "airportId": 1343, + "codeIataAirport": "CJJ", + "codeIataCity": "CJJ", + "codeIcaoAirport": "RKTU", + "codeIso2Country": "KR", + "geonameId": "6300454", + "latitudeAirport": 36.7224, + "longitudeAirport": 127.49509, + "nameAirport": "Cheongju", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "5", + "airportId": 1344, + "codeIataAirport": "CJL", + "codeIataCity": "CJL", + "codeIcaoAirport": "OPCH", + "codeIso2Country": "PK", + "geonameId": "0", + "latitudeAirport": 35.886112, + "longitudeAirport": 71.79444, + "nameAirport": "Chitral", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "7", + "airportId": 1345, + "codeIataAirport": "CJM", + "codeIataCity": "CJM", + "codeIcaoAirport": "VTSE", + "codeIso2Country": "TH", + "geonameId": "7730222", + "latitudeAirport": 10.709722, + "longitudeAirport": 99.36389, + "nameAirport": "Chumphon Airport", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-8", + "airportId": 1346, + "codeIataAirport": "CJN", + "codeIataCity": "CJN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5345529", + "latitudeAirport": 32.8, + "longitudeAirport": -116.96667, + "nameAirport": "Gillespie Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-7", + "airportId": 1347, + "codeIataAirport": "CJS", + "codeIataCity": "CJS", + "codeIcaoAirport": "MMCS", + "codeIso2Country": "MX", + "geonameId": "7669055", + "latitudeAirport": 31.63593, + "longitudeAirport": -106.4361, + "nameAirport": "Abraham Gonzalez International", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Ojinaga" + }, + { + "GMT": "-6", + "airportId": 1348, + "codeIataAirport": "CJT", + "codeIataCity": "CJT", + "codeIcaoAirport": "MMCO", + "codeIso2Country": "MX", + "geonameId": "7730663", + "latitudeAirport": 16.166668, + "longitudeAirport": -92.05, + "nameAirport": "Copalar", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "9", + "airportId": 1349, + "codeIataAirport": "CJU", + "codeIataCity": "CJU", + "codeIcaoAirport": "RKPC", + "codeIso2Country": "KR", + "geonameId": "6194228", + "latitudeAirport": 33.5067, + "longitudeAirport": 126.49312, + "nameAirport": "Jeju Airport", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "-6", + "airportId": 1350, + "codeIataAirport": "CKA", + "codeIataCity": "CKA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 36.75, + "longitudeAirport": -98.35, + "nameAirport": "Kegelman Af", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 1351, + "codeIataAirport": "CKB", + "codeIataCity": "CKB", + "codeIcaoAirport": "KCKB", + "codeIso2Country": "US", + "geonameId": "4802316", + "latitudeAirport": 39.295555, + "longitudeAirport": -80.22945, + "nameAirport": "Benedum", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 1352, + "codeIataAirport": "CKC", + "codeIataCity": "CKC", + "codeIcaoAirport": "UKKE", + "codeIso2Country": "UA", + "geonameId": "6300959", + "latitudeAirport": 49.416668, + "longitudeAirport": 32.0, + "nameAirport": "Cherkassy", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-9", + "airportId": 1353, + "codeIataAirport": "CKD", + "codeIataCity": "CKD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5860123", + "latitudeAirport": 61.870834, + "longitudeAirport": -158.10083, + "nameAirport": "Crooked Creek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "airportId": 1354, + "codeIataAirport": "CKE", + "codeIataCity": "CKE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.934723, + "longitudeAirport": -122.62222, + "nameAirport": "Clear Lake", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 1355, + "codeIataAirport": "CKG", + "codeIataCity": "CKG", + "codeIcaoAirport": "ZUCK", + "codeIso2Country": "CN", + "geonameId": "6301390", + "latitudeAirport": 29.72034, + "longitudeAirport": 106.63408, + "nameAirport": "Chongqing Jiangbei International", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "11", + "airportId": 1356, + "codeIataAirport": "CKH", + "codeIataCity": "CKH", + "codeIcaoAirport": "UESO", + "codeIso2Country": "RU", + "geonameId": "7668497", + "latitudeAirport": 70.63333, + "longitudeAirport": 147.88333, + "nameAirport": "Chokurdah", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Magadan" + }, + { + "GMT": "9.30", + "airportId": 1357, + "codeIataAirport": "CKI", + "codeIataCity": "CKI", + "codeIcaoAirport": "YCKI", + "codeIso2Country": "AU", + "geonameId": "2078941", + "latitudeAirport": -11.2, + "longitudeAirport": 132.53334, + "nameAirport": "Croker Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-6", + "airportId": 1358, + "codeIataAirport": "CKK", + "codeIataCity": "CKK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 36.5, + "longitudeAirport": -91.86667, + "nameAirport": "Cherokee", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 1359, + "codeIataAirport": "CKL", + "codeIataCity": "CKL", + "codeIcaoAirport": "UUMU", + "codeIso2Country": "RU", + "geonameId": "8030055", + "latitudeAirport": 55.86667, + "longitudeAirport": 38.051945, + "nameAirport": "Chkalovsky", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "airportId": 1360, + "codeIataAirport": "CKM", + "codeIataCity": "CKM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4421935", + "latitudeAirport": 34.2, + "longitudeAirport": -90.583336, + "nameAirport": "Fletcher Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 1361, + "codeIataAirport": "CKN", + "codeIataCity": "CKN", + "codeIcaoAirport": "KCKN", + "codeIso2Country": "US", + "geonameId": "5023468", + "latitudeAirport": 47.783333, + "longitudeAirport": -96.61667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 1362, + "codeIataAirport": "CKO", + "codeIataCity": "CKO", + "codeIcaoAirport": "SSCP", + "codeIso2Country": "BR", + "geonameId": "7730921", + "latitudeAirport": -23.116667, + "longitudeAirport": -50.666668, + "nameAirport": "Cornelio Procopio", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "airportId": 1363, + "codeIataAirport": "CKR", + "codeIataCity": "CKR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 48.6, + "longitudeAirport": -123.0, + "nameAirport": "Crane Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "airportId": 1364, + "codeIataAirport": "CKS", + "codeIataCity": "CKS", + "codeIcaoAirport": "SBCJ", + "codeIso2Country": "BR", + "geonameId": "6300612", + "latitudeAirport": -6.114749, + "longitudeAirport": -50.001945, + "nameAirport": "Carajas", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Belem" + }, + { + "GMT": "3.30", + "airportId": 1365, + "codeIataAirport": "CKT", + "codeIataCity": "CKT", + "codeIcaoAirport": "OIMC", + "codeIso2Country": "IR", + "geonameId": "6300063", + "latitudeAirport": 36.488056, + "longitudeAirport": 61.07, + "nameAirport": "Sarakhs", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-9", + "airportId": 1366, + "codeIataAirport": "CKU", + "codeIataCity": "CDV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5859889", + "latitudeAirport": 60.55, + "longitudeAirport": -145.75, + "nameAirport": "City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 1367, + "codeIataAirport": "CKV", + "codeIataCity": "CKV", + "codeIcaoAirport": "KCKV", + "codeIso2Country": "US", + "geonameId": "4647512", + "latitudeAirport": 36.620834, + "longitudeAirport": -87.414444, + "nameAirport": "Outlaw Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 1368, + "codeIataAirport": "CKW", + "codeIataCity": "CKW", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": 52.430557, + "longitudeAirport": -108.74722, + "nameAirport": "Christmas Creek Mine", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-9", + "airportId": 1369, + "codeIataAirport": "CKX", + "codeIataCity": "CKX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5859163", + "latitudeAirport": 64.06778, + "longitudeAirport": -141.94917, + "nameAirport": "Chicken", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 1370, + "codeIataAirport": "CKY", + "codeIataCity": "CKY", + "codeIcaoAirport": "GUCY", + "codeIso2Country": "GN", + "geonameId": "6297246", + "latitudeAirport": 9.575655, + "longitudeAirport": -13.62017, + "nameAirport": "Conakry", + "nameCountry": "Guinea", + "phone": "", + "timezone": "Africa/Conakry" + }, + { + "GMT": "3", + "airportId": 1371, + "codeIataAirport": "CKZ", + "codeIataCity": "CKZ", + "codeIcaoAirport": "LTBH", + "codeIso2Country": "TR", + "geonameId": "6299748", + "latitudeAirport": 40.13333, + "longitudeAirport": 26.4, + "nameAirport": "Canakkale", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "6", + "airportId": 1372, + "codeIataAirport": "CLA", + "codeIataCity": "CLA", + "codeIcaoAirport": "VGCM", + "codeIso2Country": "BD", + "geonameId": "7730922", + "latitudeAirport": 23.4375, + "longitudeAirport": 91.19222, + "nameAirport": "Comilla", + "nameCountry": "Bangladesh", + "phone": "", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "-8", + "airportId": 1373, + "codeIataAirport": "CLD", + "codeIataCity": "SAN", + "codeIcaoAirport": "KCRQ", + "codeIso2Country": "US", + "geonameId": "5371378", + "latitudeAirport": 33.11667, + "longitudeAirport": -117.26667, + "nameAirport": "Mc Clellan-Palomar Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 1374, + "codeIataAirport": "CLE", + "codeIataCity": "CLE", + "codeIcaoAirport": "KCLE", + "codeIso2Country": "US", + "geonameId": "5150584", + "latitudeAirport": 41.410854, + "longitudeAirport": -81.83821, + "nameAirport": "Hopkins International", + "nameCountry": "United States", + "phone": "216-265-6000", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "airportId": 1375, + "codeIataAirport": "CLG", + "codeIataCity": "CLG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5338196", + "latitudeAirport": 36.15, + "longitudeAirport": -120.35, + "nameAirport": "Coalinga", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 1376, + "codeIataAirport": "CLH", + "codeIataCity": "CLH", + "codeIcaoAirport": "YCAH", + "codeIso2Country": "AU", + "geonameId": "7730923", + "latitudeAirport": -31.833332, + "longitudeAirport": 149.7, + "nameAirport": "Coolah", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "airportId": 1377, + "codeIataAirport": "CLI", + "codeIataCity": "CLI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.566666, + "longitudeAirport": -88.86667, + "nameAirport": "Clintonville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 1378, + "codeIataAirport": "CLJ", + "codeIataCity": "CLJ", + "codeIcaoAirport": "LRCL", + "codeIso2Country": "RO", + "geonameId": "6299703", + "latitudeAirport": 46.782063, + "longitudeAirport": 23.687014, + "nameAirport": "Cluj Napoca International Airport", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "-6", + "airportId": 1379, + "codeIataAirport": "CLK", + "codeIataCity": "CSM", + "codeIcaoAirport": "KCLK", + "codeIso2Country": "US", + "geonameId": "4533723", + "latitudeAirport": 35.538055, + "longitudeAirport": -98.9325, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 1380, + "codeIataAirport": "CLL", + "codeIataCity": "CLL", + "codeIcaoAirport": "KCLL", + "codeIso2Country": "US", + "geonameId": "4688057", + "latitudeAirport": 30.593842, + "longitudeAirport": -96.36682, + "nameAirport": "Easterwood Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 1381, + "codeIataAirport": "CLM", + "codeIataCity": "CLM", + "codeIcaoAirport": "KCLM", + "codeIso2Country": "US", + "geonameId": "5816094", + "latitudeAirport": 48.121883, + "longitudeAirport": -123.49511, + "nameAirport": "Fairchild International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "airportId": 1382, + "codeIataAirport": "CLN", + "codeIataCity": "CLN", + "codeIcaoAirport": "SBCI", + "codeIso2Country": "BR", + "geonameId": "6300611", + "latitudeAirport": -7.333333, + "longitudeAirport": -47.45, + "nameAirport": "Carolina", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-5", + "airportId": 1383, + "codeIataAirport": "CLO", + "codeIataCity": "CLO", + "codeIcaoAirport": "SKCL", + "codeIso2Country": "CO", + "geonameId": "6300741", + "latitudeAirport": 3.543056, + "longitudeAirport": -76.381386, + "nameAirport": "Alfonso B. Aragon", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-9", + "airportId": 1384, + "codeIataAirport": "CLP", + "codeIataCity": "CLP", + "codeIcaoAirport": "PFCL", + "codeIso2Country": "US", + "geonameId": "5859462", + "latitudeAirport": 58.843056, + "longitudeAirport": -158.54306, + "nameAirport": "Clarks Point", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 1385, + "codeIataAirport": "CLQ", + "codeIataCity": "CLQ", + "codeIcaoAirport": "MMIA", + "codeIso2Country": "MX", + "geonameId": "6299846", + "latitudeAirport": 19.3, + "longitudeAirport": -103.65, + "nameAirport": "Colima", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-8", + "airportId": 1386, + "codeIataAirport": "CLR", + "codeIataCity": "CLR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5332929", + "latitudeAirport": 33.13333, + "longitudeAirport": -115.51667, + "nameAirport": "Calipatria", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-8", + "airportId": 1387, + "codeIataAirport": "CLS", + "codeIataCity": "CLS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5789817", + "latitudeAirport": 46.67389, + "longitudeAirport": -122.98111, + "nameAirport": "Centralia", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 1388, + "codeIataAirport": "CLT", + "codeIataCity": "CLT", + "codeIcaoAirport": "KCLT", + "codeIso2Country": "US", + "geonameId": "4460310", + "latitudeAirport": 35.219166, + "longitudeAirport": -80.93584, + "nameAirport": "Charlotte Douglas", + "nameCountry": "United States", + "phone": "704-359-4000", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 1389, + "codeIataAirport": "CLU", + "codeIataCity": "CLU", + "codeIcaoAirport": "KBAK", + "codeIso2Country": "US", + "geonameId": "4256039", + "latitudeAirport": 39.216667, + "longitudeAirport": -85.916664, + "nameAirport": "Columbus Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-3", + "airportId": 1390, + "codeIataAirport": "CLV", + "codeIataCity": "CLV", + "codeIcaoAirport": "SBCN", + "codeIso2Country": "BR", + "geonameId": "7730779", + "latitudeAirport": -17.75, + "longitudeAirport": -48.63333, + "nameAirport": "Caldas Novas", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "airportId": 1391, + "codeIataAirport": "CLW", + "codeIataCity": "CLW", + "codeIcaoAirport": "KCLW", + "codeIso2Country": "US", + "geonameId": "4151317", + "latitudeAirport": 27.976667, + "longitudeAirport": -82.75861, + "nameAirport": "Executive", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 1392, + "codeIataAirport": "CLX", + "codeIataCity": "CLX", + "codeIcaoAirport": "", + "codeIso2Country": "AR", + "geonameId": "3435364", + "latitudeAirport": -25.333332, + "longitudeAirport": -57.666668, + "nameAirport": "Clorinda", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "1", + "airportId": 1393, + "codeIataAirport": "CLY", + "codeIataCity": "CLY", + "codeIcaoAirport": "LFKC", + "codeIso2Country": "FR", + "geonameId": "6299393", + "latitudeAirport": 42.52778, + "longitudeAirport": 8.791667, + "nameAirport": "Ste Catherine", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-4", + "airportId": 1394, + "codeIataAirport": "CLZ", + "codeIataCity": "CLZ", + "codeIcaoAirport": "SVCL", + "codeIso2Country": "VE", + "geonameId": "3647444", + "latitudeAirport": 8.933333, + "longitudeAirport": -67.433334, + "nameAirport": "Calabozo", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "10", + "airportId": 1395, + "codeIataAirport": "CMA", + "codeIataCity": "CMA", + "codeIcaoAirport": "YCMU", + "codeIso2Country": "AU", + "geonameId": "7730248", + "latitudeAirport": -28.03139, + "longitudeAirport": 145.6161, + "nameAirport": "Cunnamulla", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5.30", + "airportId": 1396, + "codeIataAirport": "CMB", + "codeIataCity": "CMB", + "codeIcaoAirport": "VCBI", + "codeIso2Country": "LK", + "geonameId": "6301060", + "latitudeAirport": 7.174112, + "longitudeAirport": 79.8865, + "nameAirport": "Bandaranaike International", + "nameCountry": "Sri Lanka", + "phone": "011-225-2861", + "timezone": "Asia/Colombo" + }, + { + "GMT": "-3", + "airportId": 1397, + "codeIataAirport": "CMC", + "codeIataCity": "CMC", + "codeIcaoAirport": "SNWC", + "codeIso2Country": "BR", + "geonameId": "7730925", + "latitudeAirport": -2.916667, + "longitudeAirport": -40.833332, + "nameAirport": "Camocim", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "10", + "airportId": 1398, + "codeIataAirport": "CMD", + "codeIataCity": "CMD", + "codeIcaoAirport": "YCTM", + "codeIso2Country": "AU", + "geonameId": "7668706", + "latitudeAirport": -34.628334, + "longitudeAirport": 148.04333, + "nameAirport": "Cootamundra", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "airportId": 1399, + "codeIataAirport": "CME", + "codeIataCity": "CME", + "codeIcaoAirport": "MMCE", + "codeIso2Country": "MX", + "geonameId": "6299831", + "latitudeAirport": 18.65103, + "longitudeAirport": -91.802734, + "nameAirport": "Ciudad Del Carmen", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Merida" + }, + { + "GMT": "1", + "airportId": 1400, + "codeIataAirport": "CMF", + "codeIataCity": "CMF", + "codeIcaoAirport": "LFLB", + "codeIso2Country": "FR", + "geonameId": "6299398", + "latitudeAirport": 45.637993, + "longitudeAirport": 5.88437, + "nameAirport": "Chambery", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-4", + "airportId": 1401, + "codeIataAirport": "CMG", + "codeIataCity": "CMG", + "codeIcaoAirport": "SBCR", + "codeIso2Country": "BR", + "geonameId": "6300615", + "latitudeAirport": -19.01111, + "longitudeAirport": -57.672222, + "nameAirport": "International Airport Corumba", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Campo_Grande" + }, + { + "GMT": "-5", + "airportId": 1402, + "codeIataAirport": "CMH", + "codeIataCity": "CMH", + "codeIcaoAirport": "KCMH", + "codeIso2Country": "US", + "geonameId": "4521777", + "latitudeAirport": 39.99818, + "longitudeAirport": -82.884964, + "nameAirport": "Port Columbus International", + "nameCountry": "United States", + "phone": "614-239-4000", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 1403, + "codeIataAirport": "CMI", + "codeIataCity": "CMI", + "codeIcaoAirport": "KCMI", + "codeIso2Country": "US", + "geonameId": "4914580", + "latitudeAirport": 40.039665, + "longitudeAirport": -88.26905, + "nameAirport": "University Of Illinois Willard", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 1404, + "codeIataAirport": "CMJ", + "codeIataCity": "CMJ", + "codeIcaoAirport": "RCCM", + "codeIso2Country": "TW", + "geonameId": "7668413", + "latitudeAirport": 23.25, + "longitudeAirport": 119.416664, + "nameAirport": "Chi Mei", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "2", + "airportId": 1405, + "codeIataAirport": "CMK", + "codeIataCity": "CMK", + "codeIcaoAirport": "FWCM", + "codeIso2Country": "MW", + "geonameId": "7730532", + "latitudeAirport": -14.3, + "longitudeAirport": 35.05, + "nameAirport": "Club Makokola", + "nameCountry": "Malawi", + "phone": "", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "10", + "airportId": 1406, + "codeIataAirport": "CML", + "codeIataCity": "CML", + "codeIcaoAirport": "YCMW", + "codeIso2Country": "AU", + "geonameId": "7730926", + "latitudeAirport": -19.933332, + "longitudeAirport": 138.11667, + "nameAirport": "Camooweal", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "airportId": 1407, + "codeIataAirport": "CMM", + "codeIataCity": "CMM", + "codeIcaoAirport": "MGCR", + "codeIso2Country": "GT", + "geonameId": "7730652", + "latitudeAirport": 17.458332, + "longitudeAirport": -90.05333, + "nameAirport": "Carmelita", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "0", + "airportId": 1408, + "codeIataAirport": "CMN", + "codeIataCity": "CAS", + "codeIcaoAirport": "GMMN", + "codeIso2Country": "MA", + "geonameId": "6297212", + "latitudeAirport": 33.36667, + "longitudeAirport": -7.586667, + "nameAirport": "Mohamed V", + "nameCountry": "Morocco", + "phone": "05 22 53 90 4", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "3", + "airportId": 1409, + "codeIataAirport": "CMO", + "codeIataCity": "CMO", + "codeIcaoAirport": "HCMO", + "codeIso2Country": "SO", + "geonameId": "7730602", + "latitudeAirport": 5.366667, + "longitudeAirport": 48.516666, + "nameAirport": "Obbia", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-3", + "airportId": 1410, + "codeIataAirport": "CMP", + "codeIataCity": "CMP", + "codeIcaoAirport": "SNKE", + "codeIso2Country": "BR", + "geonameId": "7730927", + "latitudeAirport": -9.8, + "longitudeAirport": -36.35, + "nameAirport": "Campo Alegre", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Belem" + }, + { + "GMT": "10", + "airportId": 1411, + "codeIataAirport": "CMQ", + "codeIataCity": "CMQ", + "codeIcaoAirport": "YCMT", + "codeIso2Country": "AU", + "geonameId": "7730247", + "latitudeAirport": -22.866667, + "longitudeAirport": 147.5, + "nameAirport": "Clermont", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "airportId": 1412, + "codeIataAirport": "CMR", + "codeIataCity": "CMR", + "codeIcaoAirport": "LFGA", + "codeIso2Country": "FR", + "geonameId": "6694671", + "latitudeAirport": 48.083332, + "longitudeAirport": 7.366667, + "nameAirport": "Colmar-houssen", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "3", + "airportId": 1413, + "codeIataAirport": "CMS", + "codeIataCity": "CMS", + "codeIcaoAirport": "HCMS", + "codeIso2Country": "SO", + "geonameId": "7730604", + "latitudeAirport": 10.3, + "longitudeAirport": 50.233334, + "nameAirport": "Scusciuban", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-3", + "airportId": 1414, + "codeIataAirport": "CMT", + "codeIataCity": "CMT", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8260789", + "latitudeAirport": -2.2, + "longitudeAirport": -49.5, + "nameAirport": "Cameta", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Belem" + }, + { + "GMT": "10", + "airportId": 1415, + "codeIataAirport": "CMU", + "codeIataCity": "CMU", + "codeIcaoAirport": "AYCH", + "codeIso2Country": "PG", + "geonameId": "7668076", + "latitudeAirport": -5.993889, + "longitudeAirport": 144.97444, + "nameAirport": "Chimbu", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "12", + "airportId": 1416, + "codeIataAirport": "CMV", + "codeIataCity": "CMV", + "codeIcaoAirport": "NZCX", + "codeIso2Country": "NZ", + "geonameId": "7668383", + "latitudeAirport": -37.0, + "longitudeAirport": 175.66667, + "nameAirport": "Coromandel", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-5", + "airportId": 1417, + "codeIataAirport": "CMW", + "codeIataCity": "CMW", + "codeIcaoAirport": "MUCM", + "codeIso2Country": "CU", + "geonameId": "6299920", + "latitudeAirport": 21.418612, + "longitudeAirport": -77.849724, + "nameAirport": "Ign Agramonte International", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "-5", + "airportId": 1418, + "codeIataAirport": "CMX", + "codeIataCity": "CMX", + "codeIcaoAirport": "KCMX", + "codeIso2Country": "US", + "geonameId": "4996574", + "latitudeAirport": 47.167778, + "longitudeAirport": -88.48639, + "nameAirport": "Houghton County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-6", + "airportId": 1419, + "codeIataAirport": "CMY", + "codeIataCity": "CMY", + "codeIcaoAirport": "KCMY", + "codeIso2Country": "US", + "geonameId": "5273937", + "latitudeAirport": 44.03347, + "longitudeAirport": -90.77897, + "nameAirport": "Fort Mccoy", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 1420, + "codeIataAirport": "CMZ", + "codeIataCity": "CMZ", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "0", + "latitudeAirport": -17.85, + "longitudeAirport": 35.4, + "nameAirport": "Caia", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-7", + "airportId": 1421, + "codeIataAirport": "CNA", + "codeIataCity": "CNA", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "4015700", + "latitudeAirport": 31.0, + "longitudeAirport": -110.333336, + "nameAirport": "Cananea", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Hermosillo" + }, + { + "GMT": "10", + "airportId": 1422, + "codeIataAirport": "CNB", + "codeIataCity": "CNB", + "codeIcaoAirport": "YCNM", + "codeIso2Country": "AU", + "geonameId": "7668702", + "latitudeAirport": -30.980833, + "longitudeAirport": 148.37833, + "nameAirport": "Coonamble", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "airportId": 1423, + "codeIataAirport": "CNC", + "codeIataCity": "CNC", + "codeIcaoAirport": "YCCT", + "codeIso2Country": "AU", + "geonameId": "7730928", + "latitudeAirport": -10.050179, + "longitudeAirport": 143.06659, + "nameAirport": "Coconut Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "airportId": 1424, + "codeIataAirport": "CND", + "codeIataCity": "CND", + "codeIcaoAirport": "LRCK", + "codeIso2Country": "RO", + "geonameId": "6299702", + "latitudeAirport": 44.35, + "longitudeAirport": 28.483334, + "nameAirport": "Kogalniceanu", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "-7", + "airportId": 1425, + "codeIataAirport": "CNE", + "codeIataCity": "CNE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.45, + "longitudeAirport": -105.23333, + "nameAirport": "Canon City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-3", + "airportId": 1426, + "codeIataAirport": "CNF", + "codeIataCity": "BHZ", + "codeIcaoAirport": "SBCF", + "codeIso2Country": "BR", + "geonameId": "6301851", + "latitudeAirport": -19.632418, + "longitudeAirport": -43.963215, + "nameAirport": "Tancredo Neves International Airport", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 1427, + "codeIataAirport": "CNG", + "codeIataCity": "CNG", + "codeIcaoAirport": "LFBG", + "codeIso2Country": "FR", + "geonameId": "6299370", + "latitudeAirport": 45.683334, + "longitudeAirport": -0.333333, + "nameAirport": "Parvaud", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 1428, + "codeIataAirport": "CNH", + "codeIataCity": "CNH", + "codeIcaoAirport": "KCNH", + "codeIso2Country": "US", + "geonameId": "5084634", + "latitudeAirport": 43.38333, + "longitudeAirport": -72.333336, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 1429, + "codeIataAirport": "CNI", + "codeIataCity": "CNI", + "codeIcaoAirport": "KCNI", + "codeIso2Country": "CN", + "geonameId": "8260794", + "latitudeAirport": 31.25, + "longitudeAirport": 121.433334, + "nameAirport": "Changhai", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "airportId": 1430, + "codeIataAirport": "CNJ", + "codeIataCity": "CNJ", + "codeIcaoAirport": "YCCY", + "codeIso2Country": "AU", + "geonameId": "7668699", + "latitudeAirport": -20.668905, + "longitudeAirport": 140.50851, + "nameAirport": "Cloncurry", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "airportId": 1431, + "codeIataAirport": "CNK", + "codeIataCity": "CNK", + "codeIcaoAirport": "KCNK", + "codeIso2Country": "US", + "geonameId": "4269872", + "latitudeAirport": 39.566666, + "longitudeAirport": -97.666664, + "nameAirport": "Blosser Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 1432, + "codeIataAirport": "CNL", + "codeIataCity": "CNL", + "codeIcaoAirport": "EKSN", + "codeIso2Country": "DK", + "geonameId": "2614011", + "latitudeAirport": 57.483334, + "longitudeAirport": 10.216667, + "nameAirport": "Sindal", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-7", + "airportId": 1433, + "codeIataAirport": "CNM", + "codeIataCity": "CNM", + "codeIcaoAirport": "KCNM", + "codeIso2Country": "US", + "geonameId": "5460834", + "latitudeAirport": 32.337223, + "longitudeAirport": -104.26278, + "nameAirport": "Carlsbad", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-8", + "airportId": 1434, + "codeIataAirport": "CNO", + "codeIataCity": "CNO", + "codeIcaoAirport": "KCNO", + "codeIso2Country": "US", + "geonameId": "5336537", + "latitudeAirport": 33.98083, + "longitudeAirport": -117.63917, + "nameAirport": "Chino", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-1", + "airportId": 1435, + "codeIataAirport": "CNP", + "codeIataCity": "CNP", + "codeIcaoAirport": "BGCO", + "codeIso2Country": "GL", + "geonameId": "6295691", + "latitudeAirport": 70.74306, + "longitudeAirport": -22.658333, + "nameAirport": "Neerlerit Inaat", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Scoresbysund" + }, + { + "GMT": "-3", + "airportId": 1436, + "codeIataAirport": "CNQ", + "codeIataCity": "CNQ", + "codeIcaoAirport": "SARC", + "codeIso2Country": "AR", + "geonameId": "6300546", + "latitudeAirport": -27.449722, + "longitudeAirport": -58.762222, + "nameAirport": "Camba Punta", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-4", + "airportId": 1437, + "codeIataAirport": "CNR", + "codeIataCity": "CNR", + "codeIcaoAirport": "SCRA", + "codeIso2Country": "CL", + "geonameId": "6300705", + "latitudeAirport": -26.329166, + "longitudeAirport": -70.604164, + "nameAirport": "Chanaral", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "10", + "airportId": 1438, + "codeIataAirport": "CNS", + "codeIataCity": "CNS", + "codeIcaoAirport": "YBCS", + "codeIso2Country": "AU", + "geonameId": "2207387", + "latitudeAirport": -16.876537, + "longitudeAirport": 145.75404, + "nameAirport": "Cairns", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "airportId": 1439, + "codeIataAirport": "CNT", + "codeIataCity": "CNT", + "codeIcaoAirport": "", + "codeIso2Country": "AR", + "geonameId": "7730929", + "latitudeAirport": -27.216667, + "longitudeAirport": -61.233334, + "nameAirport": "Charata", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-6", + "airportId": 1440, + "codeIataAirport": "CNU", + "codeIataCity": "CNU", + "codeIcaoAirport": "KCNU", + "codeIso2Country": "US", + "geonameId": "4269395", + "latitudeAirport": 37.683334, + "longitudeAirport": -95.45, + "nameAirport": "Martin Johnson", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 1441, + "codeIataAirport": "CNV", + "codeIataCity": "CNV", + "codeIcaoAirport": "SNED", + "codeIso2Country": "BR", + "geonameId": "7730930", + "latitudeAirport": -15.666667, + "longitudeAirport": -38.983334, + "nameAirport": "Canavieiras", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "-6", + "airportId": 1442, + "codeIataAirport": "CNW", + "codeIataCity": "ACT", + "codeIcaoAirport": "KCNW", + "codeIso2Country": "US", + "geonameId": "6326892", + "latitudeAirport": 31.916668, + "longitudeAirport": -97.13333, + "nameAirport": "TSTC Waco Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "airportId": 1443, + "codeIataAirport": "CNX", + "codeIataCity": "CNX", + "codeIcaoAirport": "VTCC", + "codeIso2Country": "TH", + "geonameId": "1116869", + "latitudeAirport": 18.769573, + "longitudeAirport": 98.96841, + "nameAirport": "Chiang Mai International", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-7", + "airportId": 1444, + "codeIataAirport": "CNY", + "codeIataCity": "CNY", + "codeIcaoAirport": "KCNY", + "codeIso2Country": "US", + "geonameId": "5543307", + "latitudeAirport": 38.759445, + "longitudeAirport": -109.74611, + "nameAirport": "Canyonlands Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 1445, + "codeIataAirport": "CNZ", + "codeIataCity": "CNZ", + "codeIcaoAirport": "", + "codeIso2Country": "AO", + "geonameId": "7730931", + "latitudeAirport": -11.5, + "longitudeAirport": 19.0, + "nameAirport": "Cangamba", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-8", + "airportId": 1446, + "codeIataAirport": "COA", + "codeIataCity": "COA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5338801", + "latitudeAirport": 38.02889, + "longitudeAirport": -120.41278, + "nameAirport": "Columbia", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "airportId": 1447, + "codeIataAirport": "COB", + "codeIataCity": "COB", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298691", + "latitudeAirport": -15.55, + "longitudeAirport": 130.93333, + "nameAirport": "Coolibah", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-3", + "airportId": 1448, + "codeIataAirport": "COC", + "codeIataCity": "COC", + "codeIcaoAirport": "SAAC", + "codeIso2Country": "AR", + "geonameId": "6300509", + "latitudeAirport": -31.297222, + "longitudeAirport": -57.996387, + "nameAirport": "Concordia", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-7", + "airportId": 1449, + "codeIataAirport": "COD", + "codeIataCity": "COD", + "codeIcaoAirport": "KCOD", + "codeIso2Country": "US", + "geonameId": "5843646", + "latitudeAirport": 44.515835, + "longitudeAirport": -109.0275, + "nameAirport": "Yellowstone Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-8", + "airportId": 1450, + "codeIataAirport": "COE", + "codeIataCity": "COE", + "codeIcaoAirport": "KCOE", + "codeIso2Country": "US", + "geonameId": "5589168", + "latitudeAirport": 47.683334, + "longitudeAirport": -116.76667, + "nameAirport": "Coeur D'Alene", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 1451, + "codeIataAirport": "COF", + "codeIataCity": "COI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 28.35, + "longitudeAirport": -80.73333, + "nameAirport": "Patrick AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 1452, + "codeIataAirport": "COG", + "codeIataCity": "COG", + "codeIcaoAirport": "SKCD", + "codeIso2Country": "CO", + "geonameId": "7730932", + "latitudeAirport": 5.079167, + "longitudeAirport": -76.66333, + "nameAirport": "Mandinga", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "5.30", + "airportId": 1453, + "codeIataAirport": "COH", + "codeIataCity": "COH", + "codeIcaoAirport": "VECO", + "codeIso2Country": "IN", + "geonameId": "7730933", + "latitudeAirport": 26.333332, + "longitudeAirport": 89.46667, + "nameAirport": "Cooch Behar", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "airportId": 1454, + "codeIataAirport": "COI", + "codeIataCity": "COI", + "codeIcaoAirport": "KCOI", + "codeIso2Country": "US", + "geonameId": "4164093", + "latitudeAirport": 28.316668, + "longitudeAirport": -80.6, + "nameAirport": "Merritt Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 1455, + "codeIataAirport": "COJ", + "codeIataCity": "COJ", + "codeIcaoAirport": "YCBB", + "codeIso2Country": "AU", + "geonameId": "7730245", + "latitudeAirport": -31.337221, + "longitudeAirport": 149.27194, + "nameAirport": "Coonabarabran", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "5.30", + "airportId": 1456, + "codeIataAirport": "COK", + "codeIataCity": "COK", + "codeIcaoAirport": "VOCI", + "codeIso2Country": "IN", + "geonameId": "7626292", + "latitudeAirport": 10.155644, + "longitudeAirport": 76.39053, + "nameAirport": "Cochin International", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "0", + "airportId": 1457, + "codeIataAirport": "COL", + "codeIataCity": "COL", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "7670762", + "latitudeAirport": 56.61667, + "longitudeAirport": -6.616667, + "nameAirport": "Isle Of Coll", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 1458, + "codeIataAirport": "COM", + "codeIataCity": "COM", + "codeIcaoAirport": "KCOM", + "codeIso2Country": "US", + "geonameId": "4682404", + "latitudeAirport": 31.833332, + "longitudeAirport": -99.433334, + "nameAirport": "Coleman", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 1459, + "codeIataAirport": "CON", + "codeIataCity": "CON", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5084879", + "latitudeAirport": 43.2, + "longitudeAirport": -71.53333, + "nameAirport": "Concord", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 1460, + "codeIataAirport": "COO", + "codeIataCity": "COO", + "codeIcaoAirport": "DBBB", + "codeIso2Country": "BJ", + "geonameId": "6296398", + "latitudeAirport": 6.353097, + "longitudeAirport": 2.385271, + "nameAirport": "Cotonou", + "nameCountry": "Benin", + "phone": "", + "timezone": "Africa/Porto-Novo" + }, + { + "GMT": "-5", + "airportId": 1461, + "codeIataAirport": "COP", + "codeIataCity": "COP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5113666", + "latitudeAirport": 42.7, + "longitudeAirport": -74.933334, + "nameAirport": "Cooperstown - Westville Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 1462, + "codeIataAirport": "COQ", + "codeIataCity": "COQ", + "codeIcaoAirport": "ZMCD", + "codeIso2Country": "MN", + "geonameId": "7730291", + "latitudeAirport": 48.13333, + "longitudeAirport": 114.9, + "nameAirport": "Choibalsan", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Choibalsan" + }, + { + "GMT": "-3", + "airportId": 1463, + "codeIataAirport": "COR", + "codeIataCity": "COR", + "codeIcaoAirport": "SACO", + "codeIso2Country": "AR", + "geonameId": "6300518", + "latitudeAirport": -31.31548, + "longitudeAirport": -64.21377, + "nameAirport": "Pajas Blancas", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-7", + "airportId": 1464, + "codeIataAirport": "COS", + "codeIataCity": "COS", + "codeIcaoAirport": "KCOS", + "codeIso2Country": "US", + "geonameId": "5417598", + "latitudeAirport": 38.79713, + "longitudeAirport": -104.70056, + "nameAirport": "Colorado Springs", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 1465, + "codeIataAirport": "COT", + "codeIataCity": "COT", + "codeIcaoAirport": "KCOT", + "codeIso2Country": "US", + "geonameId": "6297998", + "latitudeAirport": 28.433332, + "longitudeAirport": -99.23333, + "nameAirport": "Cotulla", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 1466, + "codeIataAirport": "COU", + "codeIataCity": "COU", + "codeIcaoAirport": "KCOU", + "codeIso2Country": "US", + "geonameId": "4381994", + "latitudeAirport": 38.81361, + "longitudeAirport": -92.21917, + "nameAirport": "Columbia Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 1467, + "codeIataAirport": "COV", + "codeIataCity": "COV", + "codeIcaoAirport": "LPCV", + "codeIso2Country": "PT", + "geonameId": "7730102", + "latitudeAirport": 40.283333, + "longitudeAirport": -7.5, + "nameAirport": "Covilha", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "-4", + "airportId": 1468, + "codeIataAirport": "COW", + "codeIataCity": "COW", + "codeIcaoAirport": "", + "codeIso2Country": "CL", + "geonameId": "3893629", + "latitudeAirport": -32.8, + "longitudeAirport": -70.63333, + "nameAirport": "Coquimbo", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-5", + "airportId": 1469, + "codeIataAirport": "COX", + "codeIataCity": "COX", + "codeIcaoAirport": "", + "codeIso2Country": "BS", + "geonameId": "3572603", + "latitudeAirport": 24.15, + "longitudeAirport": -77.583336, + "nameAirport": "Congo Town", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "8", + "airportId": 1470, + "codeIataAirport": "COY", + "codeIataCity": "COY", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298789", + "latitudeAirport": -21.85, + "longitudeAirport": 117.75, + "nameAirport": "Coolawanyah", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-4", + "airportId": 1471, + "codeIataAirport": "COZ", + "codeIataCity": "COZ", + "codeIcaoAirport": "", + "codeIso2Country": "DO", + "geonameId": "0", + "latitudeAirport": 18.9, + "longitudeAirport": -70.71667, + "nameAirport": "Constanza", + "nameCountry": "Dominican Republic", + "phone": "", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "0", + "airportId": 1472, + "codeIataAirport": "CPA", + "codeIataCity": "CPA", + "codeIcaoAirport": "GLCP", + "codeIso2Country": "LR", + "geonameId": "2276492", + "latitudeAirport": 4.376667, + "longitudeAirport": -7.695556, + "nameAirport": "A. Tubman", + "nameCountry": "Liberia", + "phone": "", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-5", + "airportId": 1473, + "codeIataAirport": "CPB", + "codeIataCity": "CPB", + "codeIcaoAirport": "SKCA", + "codeIso2Country": "CO", + "geonameId": "7730934", + "latitudeAirport": 8.633333, + "longitudeAirport": -77.333336, + "nameAirport": "Capurgana", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "airportId": 1474, + "codeIataAirport": "CPC", + "codeIataCity": "CPC", + "codeIcaoAirport": "SAZY", + "codeIso2Country": "AR", + "geonameId": "7603035", + "latitudeAirport": -40.066666, + "longitudeAirport": -71.13333, + "nameAirport": "Chapelco", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "9.30", + "airportId": 1475, + "codeIataAirport": "CPD", + "codeIataCity": "CPD", + "codeIcaoAirport": "YCBP", + "codeIso2Country": "AU", + "geonameId": "7668697", + "latitudeAirport": -29.044443, + "longitudeAirport": 134.75278, + "nameAirport": "Coober Pedy", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-6", + "airportId": 1476, + "codeIataAirport": "CPE", + "codeIataCity": "CPE", + "codeIcaoAirport": "MMCP", + "codeIso2Country": "MX", + "geonameId": "6299835", + "latitudeAirport": 19.835, + "longitudeAirport": -90.509445, + "nameAirport": "Campeche International", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Merida" + }, + { + "GMT": "7", + "airportId": 1477, + "codeIataAirport": "CPF", + "codeIataCity": "CPF", + "codeIcaoAirport": "WARC", + "codeIso2Country": "ID", + "geonameId": "7730935", + "latitudeAirport": -7.15, + "longitudeAirport": 111.583336, + "nameAirport": "Cepu", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-3", + "airportId": 1478, + "codeIataAirport": "CPG", + "codeIataCity": "CPG", + "codeIcaoAirport": "", + "codeIso2Country": "AR", + "geonameId": "0", + "latitudeAirport": -40.833332, + "longitudeAirport": -63.0, + "nameAirport": "Carmen De Patagones", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "1", + "airportId": 1479, + "codeIataAirport": "CPH", + "codeIataCity": "CPH", + "codeIcaoAirport": "EKCH", + "codeIso2Country": "DK", + "geonameId": "2619034", + "latitudeAirport": 55.62905, + "longitudeAirport": 12.647601, + "nameAirport": "Kastrup", + "nameCountry": "Denmark", + "phone": "+45 3231 3231", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "10", + "airportId": 1480, + "codeIataAirport": "CPI", + "codeIataCity": "CPI", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298874", + "latitudeAirport": -5.433333, + "longitudeAirport": 152.08333, + "nameAirport": "Cape Orford", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 1481, + "codeIataAirport": "CPL", + "codeIataCity": "CPL", + "codeIcaoAirport": "SKHA", + "codeIso2Country": "CO", + "geonameId": "7730936", + "latitudeAirport": 3.716667, + "longitudeAirport": -75.46667, + "nameAirport": "Chaparral", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-8", + "airportId": 1482, + "codeIataAirport": "CPM", + "codeIataCity": "CPM", + "codeIcaoAirport": "KCPM", + "codeIso2Country": "US", + "geonameId": "5339068", + "latitudeAirport": 33.894444, + "longitudeAirport": -118.24778, + "nameAirport": "Compton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 1483, + "codeIataAirport": "CPN", + "codeIataCity": "CPN", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260791", + "latitudeAirport": -10.183333, + "longitudeAirport": 148.36667, + "nameAirport": "Cape Rodney", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "airportId": 1484, + "codeIataAirport": "CPO", + "codeIataCity": "CPO", + "codeIcaoAirport": "SCHA", + "codeIso2Country": "CL", + "geonameId": "6300699", + "latitudeAirport": -27.29892, + "longitudeAirport": -70.414406, + "nameAirport": "Chamonate", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-3", + "airportId": 1485, + "codeIataAirport": "CPQ", + "codeIataCity": "CPQ", + "codeIcaoAirport": "SDAM", + "codeIso2Country": "BR", + "geonameId": "7730937", + "latitudeAirport": -22.856462, + "longitudeAirport": -47.111595, + "nameAirport": "Campo dos Amarais–Prefeito Francisco Amaral State Airport", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-7", + "airportId": 1486, + "codeIataAirport": "CPR", + "codeIataCity": "CPR", + "codeIcaoAirport": "KCPR", + "codeIso2Country": "US", + "geonameId": "5833225", + "latitudeAirport": 42.90861, + "longitudeAirport": -106.4625, + "nameAirport": "Natrona County International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 1487, + "codeIataAirport": "CPS", + "codeIataCity": "STL", + "codeIcaoAirport": "KCPS", + "codeIso2Country": "US", + "geonameId": "4248994", + "latitudeAirport": 38.576984, + "longitudeAirport": -90.158424, + "nameAirport": "St. Louis Downtown Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 1488, + "codeIataAirport": "CPT", + "codeIataCity": "CPT", + "codeIcaoAirport": "FACT", + "codeIso2Country": "ZA", + "geonameId": "3369157", + "latitudeAirport": -33.968906, + "longitudeAirport": 18.596489, + "nameAirport": "Cape Town International", + "nameCountry": "South Africa", + "phone": "+27 (021) 937", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-3", + "airportId": 1489, + "codeIataAirport": "CPU", + "codeIataCity": "CPU", + "codeIcaoAirport": "SNCU", + "codeIso2Country": "BR", + "geonameId": "7730938", + "latitudeAirport": -1.8, + "longitudeAirport": -44.86667, + "nameAirport": "Cururupu", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-3", + "airportId": 1490, + "codeIataAirport": "CPV", + "codeIataCity": "CPV", + "codeIcaoAirport": "SBKG", + "codeIso2Country": "BR", + "geonameId": "6300636", + "latitudeAirport": -7.266667, + "longitudeAirport": -35.9, + "nameAirport": "Joao Suassuna", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-4", + "airportId": 1491, + "codeIataAirport": "CPX", + "codeIataCity": "CPX", + "codeIcaoAirport": "TJCP", + "codeIso2Country": "PR", + "geonameId": "4564070", + "latitudeAirport": 18.3, + "longitudeAirport": -65.316666, + "nameAirport": "Culebra", + "nameCountry": "Puerto Rico", + "phone": "", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "-4", + "airportId": 1492, + "codeIataAirport": "CQA", + "codeIataCity": "CQA", + "codeIcaoAirport": "SWEK", + "codeIso2Country": "BR", + "geonameId": "7730939", + "latitudeAirport": -13.574167, + "longitudeAirport": -52.27028, + "nameAirport": "Canarana Airport", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "3.30", + "airportId": 1493, + "codeIataAirport": "CQD", + "codeIataCity": "CQD", + "codeIcaoAirport": "OIFS", + "codeIso2Country": "IR", + "geonameId": "7520711", + "latitudeAirport": 32.294453, + "longitudeAirport": 50.837536, + "nameAirport": "Shahre-kord", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "1", + "airportId": 1494, + "codeIataAirport": "CQF", + "codeIataCity": "CQF", + "codeIcaoAirport": "LFAC", + "codeIso2Country": "FR", + "geonameId": "6694425", + "latitudeAirport": 50.95, + "longitudeAirport": 1.933333, + "nameAirport": "Calais", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "airportId": 1495, + "codeIataAirport": "CQP", + "codeIataCity": "CQP", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7730940", + "latitudeAirport": -18.2, + "longitudeAirport": 147.5, + "nameAirport": "Cape Flattery", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-4", + "airportId": 1496, + "codeIataAirport": "CQS", + "codeIataCity": "CQS", + "codeIcaoAirport": "SWCQ", + "codeIso2Country": "BR", + "geonameId": "7730941", + "latitudeAirport": -12.416667, + "longitudeAirport": -64.25, + "nameAirport": "Costa Marques", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Porto_Velho" + }, + { + "GMT": "-5", + "airportId": 1497, + "codeIataAirport": "CQT", + "codeIataCity": "CQT", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8299004", + "latitudeAirport": 1.616667, + "longitudeAirport": -74.166664, + "nameAirport": "Caquetania", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "2", + "airportId": 1498, + "codeIataAirport": "CRA", + "codeIataCity": "CRA", + "codeIcaoAirport": "LRCV", + "codeIso2Country": "RO", + "geonameId": "6299705", + "latitudeAirport": 44.31889, + "longitudeAirport": 23.886389, + "nameAirport": "Craiova", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "10", + "airportId": 1499, + "codeIataAirport": "CRB", + "codeIataCity": "CRB", + "codeIcaoAirport": "YCBR", + "codeIso2Country": "AU", + "geonameId": "7730942", + "latitudeAirport": -29.55, + "longitudeAirport": 148.58333, + "nameAirport": "Collarenebri", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-5", + "airportId": 1500, + "codeIataAirport": "CRC", + "codeIataCity": "CRC", + "codeIcaoAirport": "SKGO", + "codeIso2Country": "CO", + "geonameId": "3687230", + "latitudeAirport": 4.766667, + "longitudeAirport": -75.933334, + "nameAirport": "Cartago", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "airportId": 1501, + "codeIataAirport": "CRD", + "codeIataCity": "CRD", + "codeIcaoAirport": "SAVC", + "codeIso2Country": "AR", + "geonameId": "6300563", + "latitudeAirport": -45.787224, + "longitudeAirport": -67.462776, + "nameAirport": "Comodoro Rivadavia", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "-5", + "airportId": 1502, + "codeIataAirport": "CRE", + "codeIataCity": "MYR", + "codeIcaoAirport": "KCRE", + "codeIso2Country": "US", + "geonameId": "4580248", + "latitudeAirport": 33.81139, + "longitudeAirport": -78.72444, + "nameAirport": "Grand Strand Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 1503, + "codeIataAirport": "CRF", + "codeIataCity": "CRF", + "codeIcaoAirport": "FEFC", + "codeIso2Country": "CF", + "geonameId": "7668232", + "latitudeAirport": 4.983333, + "longitudeAirport": 15.933333, + "nameAirport": "Carnot", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "-5", + "airportId": 1504, + "codeIataAirport": "CRG", + "codeIataCity": "JAX", + "codeIcaoAirport": "KCRG", + "codeIso2Country": "US", + "geonameId": "4152236", + "latitudeAirport": 30.5, + "longitudeAirport": -81.666664, + "nameAirport": "Craig Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 1505, + "codeIataAirport": "CRH", + "codeIataCity": "CRH", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8299227", + "latitudeAirport": -28.0, + "longitudeAirport": 152.16667, + "nameAirport": "Cherribah", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 1506, + "codeIataAirport": "CRI", + "codeIataCity": "CRI", + "codeIcaoAirport": "MYCI", + "codeIso2Country": "BS", + "geonameId": "0", + "latitudeAirport": 22.75, + "longitudeAirport": -74.15, + "nameAirport": "Crooked Island", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "9.30", + "airportId": 1507, + "codeIataAirport": "CRJ", + "codeIataCity": "CRJ", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7730944", + "latitudeAirport": -31.9, + "longitudeAirport": 132.3, + "nameAirport": "Coorabie", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "8", + "airportId": 1508, + "codeIataAirport": "CRK", + "codeIataCity": "NCP", + "codeIcaoAirport": "RPLC", + "codeIso2Country": "PH", + "geonameId": "6300472", + "latitudeAirport": 15.182571, + "longitudeAirport": 120.546486, + "nameAirport": "Diosdado Macapagal International (Clark International)", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "1", + "airportId": 1509, + "codeIataAirport": "CRL", + "codeIataCity": "BRU", + "codeIcaoAirport": "EBCI", + "codeIso2Country": "BE", + "geonameId": "6296489", + "latitudeAirport": 50.456696, + "longitudeAirport": 4.451703, + "nameAirport": "Charleroi Brussels South", + "nameCountry": "Belgium", + "phone": "", + "timezone": "Europe/Brussels" + }, + { + "GMT": "8", + "airportId": 1510, + "codeIataAirport": "CRM", + "codeIataCity": "CRM", + "codeIcaoAirport": "RPVF", + "codeIso2Country": "PH", + "geonameId": "1717932", + "latitudeAirport": 12.483333, + "longitudeAirport": 124.583336, + "nameAirport": "National", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-8", + "airportId": 1511, + "codeIataAirport": "CRO", + "codeIataCity": "CRO", + "codeIcaoAirport": "KCRO", + "codeIso2Country": "US", + "geonameId": "5339539", + "latitudeAirport": 36.1, + "longitudeAirport": -119.55, + "nameAirport": "Corcoran", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 1512, + "codeIataAirport": "CRP", + "codeIataCity": "CRP", + "codeIcaoAirport": "KCRP", + "codeIso2Country": "US", + "geonameId": "4683441", + "latitudeAirport": 27.774813, + "longitudeAirport": -97.50249, + "nameAirport": "Corpus Christi International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 1513, + "codeIataAirport": "CRQ", + "codeIataCity": "CRQ", + "codeIcaoAirport": "SBCV", + "codeIso2Country": "BR", + "geonameId": "6300616", + "latitudeAirport": -17.75, + "longitudeAirport": -39.25, + "nameAirport": "Caravelas", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "-3", + "airportId": 1514, + "codeIataAirport": "CRR", + "codeIataCity": "CRR", + "codeIcaoAirport": "SANW", + "codeIso2Country": "AR", + "geonameId": "6300539", + "latitudeAirport": -29.916668, + "longitudeAirport": -61.833332, + "nameAirport": "Ceres", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-6", + "airportId": 1515, + "codeIataAirport": "CRS", + "codeIataCity": "CRS", + "codeIcaoAirport": "KCRS", + "codeIso2Country": "US", + "geonameId": "4683462", + "latitudeAirport": 32.1, + "longitudeAirport": -96.46667, + "nameAirport": "Corsicana", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 1516, + "codeIataAirport": "CRT", + "codeIataCity": "CRT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4107198", + "latitudeAirport": 33.13333, + "longitudeAirport": -91.96667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 1517, + "codeIataAirport": "CRU", + "codeIataCity": "CRU", + "codeIcaoAirport": "", + "codeIso2Country": "GD", + "geonameId": "0", + "latitudeAirport": 12.475, + "longitudeAirport": -61.47222, + "nameAirport": "Carriacou Island", + "nameCountry": "", + "phone": "", + "timezone": "America/Grenada" + }, + { + "GMT": "1", + "airportId": 1518, + "codeIataAirport": "CRV", + "codeIataCity": "CRV", + "codeIcaoAirport": "LIBC", + "codeIso2Country": "IT", + "geonameId": "6299534", + "latitudeAirport": 39.0, + "longitudeAirport": 17.083332, + "nameAirport": "Crotone", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "airportId": 1519, + "codeIataAirport": "CRW", + "codeIataCity": "CRW", + "codeIcaoAirport": "KCRW", + "codeIso2Country": "US", + "geonameId": "4827897", + "latitudeAirport": 38.370342, + "longitudeAirport": -81.596504, + "nameAirport": "Yeager", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 1520, + "codeIataAirport": "CRX", + "codeIataCity": "CRX", + "codeIcaoAirport": "KCRX", + "codeIso2Country": "US", + "geonameId": "8113354", + "latitudeAirport": 34.9, + "longitudeAirport": -88.6, + "nameAirport": "Roscoe Turner", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 1521, + "codeIataAirport": "CRY", + "codeIataCity": "CRY", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7730945", + "latitudeAirport": -15.466667, + "longitudeAirport": 128.61667, + "nameAirport": "Carlton Hill", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "5", + "airportId": 1522, + "codeIataAirport": "CRZ", + "codeIataCity": "CRZ", + "codeIcaoAirport": "", + "codeIso2Country": "TM", + "geonameId": "7730201", + "latitudeAirport": 39.083332, + "longitudeAirport": 63.61667, + "nameAirport": "Turkmenabad", + "nameCountry": "Turkmenistan", + "phone": "", + "timezone": "Asia/Ashgabat" + }, + { + "GMT": "0", + "airportId": 1523, + "codeIataAirport": "CSA", + "codeIataCity": "CSA", + "codeIcaoAirport": "EGEY", + "codeIso2Country": "GB", + "geonameId": "7668203", + "latitudeAirport": 56.083332, + "longitudeAirport": -6.2, + "nameAirport": "Isle Of Colonsay", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "airportId": 1524, + "codeIataAirport": "CSB", + "codeIataCity": "CSB", + "codeIcaoAirport": "LRCS", + "codeIso2Country": "RO", + "geonameId": "6299704", + "latitudeAirport": 45.416668, + "longitudeAirport": 22.216667, + "nameAirport": "Caransebes", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "-6", + "airportId": 1525, + "codeIataAirport": "CSC", + "codeIataCity": "CSC", + "codeIcaoAirport": "MRCA", + "codeIso2Country": "CR", + "geonameId": "7730676", + "latitudeAirport": 10.766667, + "longitudeAirport": -85.48333, + "nameAirport": "Canas", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "9.30", + "airportId": 1526, + "codeIataAirport": "CSD", + "codeIataCity": "CSD", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7730946", + "latitudeAirport": -17.966667, + "longitudeAirport": 135.91667, + "nameAirport": "Cresswell Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-7", + "airportId": 1527, + "codeIataAirport": "CSE", + "codeIataCity": "CSE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5418523", + "latitudeAirport": 38.86667, + "longitudeAirport": -106.98333, + "nameAirport": "Crested Butte", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 1528, + "codeIataAirport": "CSF", + "codeIataCity": "CSF", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "3022610", + "latitudeAirport": 49.25, + "longitudeAirport": 2.483333, + "nameAirport": "Creil", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "3", + "airportId": 1529, + "codeIataAirport": "CSH", + "codeIataCity": "CSH", + "codeIcaoAirport": "ULAS", + "codeIso2Country": "RU", + "geonameId": "7668514", + "latitudeAirport": 65.02944, + "longitudeAirport": 35.733334, + "nameAirport": "Solovky", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "10", + "airportId": 1530, + "codeIataAirport": "CSI", + "codeIataCity": "CSI", + "codeIcaoAirport": "YCAS", + "codeIso2Country": "AU", + "geonameId": "7730947", + "latitudeAirport": -28.883333, + "longitudeAirport": 153.05833, + "nameAirport": "Casino", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "7", + "airportId": 1531, + "codeIataAirport": "CSJ", + "codeIataCity": "CSJ", + "codeIcaoAirport": "", + "codeIso2Country": "VN", + "geonameId": "0", + "latitudeAirport": 10.033333, + "longitudeAirport": 111.0, + "nameAirport": "Cape St Jacques", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "0", + "airportId": 1532, + "codeIataAirport": "CSK", + "codeIataCity": "CSK", + "codeIcaoAirport": "GOGS", + "codeIso2Country": "SN", + "geonameId": "7302183", + "latitudeAirport": 12.4, + "longitudeAirport": -16.75, + "nameAirport": "Cap Skirring", + "nameCountry": "Senegal", + "phone": "", + "timezone": "Africa/Dakar" + }, + { + "GMT": "-8", + "airportId": 1533, + "codeIataAirport": "CSL", + "codeIataCity": "CSL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5392323", + "latitudeAirport": 35.236668, + "longitudeAirport": -120.63917, + "nameAirport": "O Sullivan Army Air Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 1534, + "codeIataAirport": "CSM", + "codeIataCity": "CSM", + "codeIcaoAirport": "KCSM", + "codeIso2Country": "US", + "geonameId": "4533727", + "latitudeAirport": 35.539165, + "longitudeAirport": -96.933334, + "nameAirport": "Sherman", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 1535, + "codeIataAirport": "CSN", + "codeIataCity": "CSN", + "codeIcaoAirport": "KCXP", + "codeIso2Country": "US", + "geonameId": "5501375", + "latitudeAirport": 39.191666, + "longitudeAirport": -119.73472, + "nameAirport": "Carson City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 1536, + "codeIataAirport": "CSO", + "codeIataCity": "CSO", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2874545", + "latitudeAirport": 51.85, + "longitudeAirport": 11.416667, + "nameAirport": "Cochstedt", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-9", + "airportId": 1537, + "codeIataAirport": "CSP", + "codeIataCity": "CSP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Coast Guard Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Juneau" + }, + { + "GMT": "-6", + "airportId": 1538, + "codeIataAirport": "CSQ", + "codeIataCity": "CSQ", + "codeIcaoAirport": "KCSQ", + "codeIso2Country": "US", + "geonameId": "4853084", + "latitudeAirport": 41.066666, + "longitudeAirport": -94.36667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 1539, + "codeIataAirport": "CSR", + "codeIataCity": "CSR", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "3687070", + "latitudeAirport": 5.833333, + "longitudeAirport": -68.13333, + "nameAirport": "Casuarito", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-4", + "airportId": 1540, + "codeIataAirport": "CSS", + "codeIataCity": "CSS", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8260793", + "latitudeAirport": -18.983334, + "longitudeAirport": -51.983334, + "nameAirport": "Cassilandia", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Campo_Grande" + }, + { + "GMT": "12", + "airportId": 1541, + "codeIataAirport": "CST", + "codeIataCity": "CST", + "codeIcaoAirport": "", + "codeIso2Country": "FJ", + "geonameId": "0", + "latitudeAirport": -17.5, + "longitudeAirport": 177.5, + "nameAirport": "Castaway", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-3", + "airportId": 1542, + "codeIataAirport": "CSU", + "codeIataCity": "CSU", + "codeIcaoAirport": "SSSC", + "codeIso2Country": "BR", + "geonameId": "7730949", + "latitudeAirport": -29.683332, + "longitudeAirport": -52.416668, + "nameAirport": "Santa Cruz Do Sul", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "airportId": 1543, + "codeIataAirport": "CSV", + "codeIataCity": "CSV", + "codeIcaoAirport": "KCSV", + "codeIso2Country": "US", + "geonameId": "4616476", + "latitudeAirport": 35.95111, + "longitudeAirport": -85.084724, + "nameAirport": "Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 1544, + "codeIataAirport": "CSW", + "codeIataCity": "CSW", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8260798", + "latitudeAirport": -13.019444, + "longitudeAirport": -61.168056, + "nameAirport": "Colorado do Oeste", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Porto_Velho" + }, + { + "GMT": "8", + "airportId": 1545, + "codeIataAirport": "CSX", + "codeIataCity": "CSX", + "codeIcaoAirport": "ZGHA", + "codeIso2Country": "CN", + "geonameId": "6301360", + "latitudeAirport": 28.193336, + "longitudeAirport": 113.21459, + "nameAirport": "Changsha", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "airportId": 1546, + "codeIataAirport": "CSY", + "codeIataCity": "CSY", + "codeIcaoAirport": "UWKS", + "codeIso2Country": "RU", + "geonameId": "7668563", + "latitudeAirport": 56.13333, + "longitudeAirport": 47.266666, + "nameAirport": "Cheboksary", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-3", + "airportId": 1547, + "codeIataAirport": "CSZ", + "codeIataCity": "CSZ", + "codeIcaoAirport": "", + "codeIso2Country": "AR", + "geonameId": "8298887", + "latitudeAirport": -37.433334, + "longitudeAirport": -61.88333, + "nameAirport": "Brigadier Hector Ruiz", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "1", + "airportId": 1548, + "codeIataAirport": "CTA", + "codeIataCity": "CTA", + "codeIcaoAirport": "LICC", + "codeIso2Country": "IT", + "geonameId": "6290291", + "latitudeAirport": 37.47066, + "longitudeAirport": 15.065877, + "nameAirport": "Fontanarossa", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-7", + "airportId": 1549, + "codeIataAirport": "CTB", + "codeIataCity": "CTB", + "codeIcaoAirport": "KCTB", + "codeIso2Country": "US", + "geonameId": "5647484", + "latitudeAirport": 48.63333, + "longitudeAirport": -112.333336, + "nameAirport": "Cut Bank", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-3", + "airportId": 1550, + "codeIataAirport": "CTC", + "codeIataCity": "CTC", + "codeIcaoAirport": "SANC", + "codeIso2Country": "AR", + "geonameId": "6300532", + "latitudeAirport": -28.448334, + "longitudeAirport": -65.779724, + "nameAirport": "Catamarca", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "-5", + "airportId": 1551, + "codeIataAirport": "CTD", + "codeIataCity": "CTD", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "0", + "latitudeAirport": 7.966667, + "longitudeAirport": -80.433334, + "nameAirport": "Chitre", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "-5", + "airportId": 1552, + "codeIataAirport": "CTE", + "codeIataCity": "CTE", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "8299184", + "latitudeAirport": 8.833333, + "longitudeAirport": -80.833336, + "nameAirport": "Carti", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "-6", + "airportId": 1553, + "codeIataAirport": "CTF", + "codeIataCity": "CTF", + "codeIcaoAirport": "MGCT", + "codeIso2Country": "GT", + "geonameId": "8299192", + "latitudeAirport": 14.766667, + "longitudeAirport": -91.916664, + "nameAirport": "Coatepeque Airport", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "-5", + "airportId": 1554, + "codeIataAirport": "CTG", + "codeIataCity": "CTG", + "codeIcaoAirport": "SKCG", + "codeIso2Country": "CO", + "geonameId": "3687238", + "latitudeAirport": 10.445704, + "longitudeAirport": -75.51659, + "nameAirport": "Rafael Nunez", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 1555, + "codeIataAirport": "CTH", + "codeIataCity": "CTH", + "codeIcaoAirport": "KMQS", + "codeIso2Country": "US", + "geonameId": "4557247", + "latitudeAirport": 39.983334, + "longitudeAirport": -75.833336, + "nameAirport": "Chestercounty Carlson", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 1556, + "codeIataAirport": "CTI", + "codeIataCity": "CTI", + "codeIcaoAirport": "FNCV", + "codeIso2Country": "AO", + "geonameId": "7730518", + "latitudeAirport": -15.166667, + "longitudeAirport": 19.166668, + "nameAirport": "Cuito Cuanavale", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "1", + "airportId": 1557, + "codeIataAirport": "CTJ", + "codeIataCity": "CTJ", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "3179866", + "latitudeAirport": 33.76025, + "longitudeAirport": -85.1703, + "nameAirport": "Caserta Railway Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-6", + "airportId": 1558, + "codeIataAirport": "CTK", + "codeIataCity": "CTK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5226721", + "latitudeAirport": 43.3, + "longitudeAirport": -96.583336, + "nameAirport": "Canton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 1559, + "codeIataAirport": "CTL", + "codeIataCity": "CTL", + "codeIcaoAirport": "YBCV", + "codeIso2Country": "AU", + "geonameId": "6301295", + "latitudeAirport": -26.413334, + "longitudeAirport": 146.25842, + "nameAirport": "Charleville", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 1560, + "codeIataAirport": "CTM", + "codeIataCity": "CTM", + "codeIcaoAirport": "MMCM", + "codeIso2Country": "MX", + "geonameId": "3531023", + "latitudeAirport": 18.481943, + "longitudeAirport": -88.333336, + "nameAirport": "Chetumal", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Cancun" + }, + { + "GMT": "10", + "airportId": 1561, + "codeIataAirport": "CTN", + "codeIataCity": "CTN", + "codeIcaoAirport": "YCKN", + "codeIso2Country": "AU", + "geonameId": "7668701", + "latitudeAirport": -15.443333, + "longitudeAirport": 145.18333, + "nameAirport": "Cooktown", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 1562, + "codeIataAirport": "CTO", + "codeIataCity": "CTO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.63333, + "longitudeAirport": -77.683334, + "nameAirport": "Peconic River", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 1563, + "codeIataAirport": "CTP", + "codeIataCity": "CTP", + "codeIcaoAirport": "SNCP", + "codeIso2Country": "BR", + "geonameId": "7730950", + "latitudeAirport": -1.25, + "longitudeAirport": -46.016666, + "nameAirport": "Carutapera", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-3", + "airportId": 1564, + "codeIataAirport": "CTQ", + "codeIataCity": "CTQ", + "codeIcaoAirport": "SSVP", + "codeIso2Country": "BR", + "geonameId": "7730951", + "latitudeAirport": -18.85, + "longitudeAirport": -50.1, + "nameAirport": "Do Palmar", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "9.30", + "airportId": 1565, + "codeIataAirport": "CTR", + "codeIataCity": "CTR", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7730952", + "latitudeAirport": -17.583332, + "longitudeAirport": 131.0, + "nameAirport": "Cattle Creek", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "9", + "airportId": 1566, + "codeIataAirport": "CTS", + "codeIataCity": "SPK", + "codeIcaoAirport": "RJCC", + "codeIso2Country": "JP", + "geonameId": "6300322", + "latitudeAirport": 42.78728, + "longitudeAirport": 141.68134, + "nameAirport": "Chitose", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "airportId": 1567, + "codeIataAirport": "CTT", + "codeIataCity": "CTT", + "codeIcaoAirport": "LFMQ", + "codeIso2Country": "FR", + "geonameId": "6694623", + "latitudeAirport": 43.25, + "longitudeAirport": 5.783333, + "nameAirport": "Le Castellet", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "8", + "airportId": 1568, + "codeIataAirport": "CTU", + "codeIataCity": "CTU", + "codeIcaoAirport": "ZUUU", + "codeIso2Country": "CN", + "geonameId": "6301392", + "latitudeAirport": 30.581135, + "longitudeAirport": 103.9568, + "nameAirport": "Shuangliu", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-7", + "airportId": 1569, + "codeIataAirport": "CTW", + "codeIataCity": "CTW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5291035", + "latitudeAirport": 34.733334, + "longitudeAirport": -112.03333, + "nameAirport": "Cottonwood", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "-5", + "airportId": 1570, + "codeIataAirport": "CTX", + "codeIataCity": "CTX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.6, + "longitudeAirport": -76.183334, + "nameAirport": "Cortland", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 1571, + "codeIataAirport": "CTY", + "codeIataCity": "CTY", + "codeIcaoAirport": "KCTY", + "codeIso2Country": "US", + "geonameId": "4152395", + "latitudeAirport": 29.633333, + "longitudeAirport": -83.11667, + "nameAirport": "Cross City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 1572, + "codeIataAirport": "CTZ", + "codeIataCity": "CTZ", + "codeIcaoAirport": "KCTZ", + "codeIso2Country": "US", + "geonameId": "4490054", + "latitudeAirport": 35.0, + "longitudeAirport": -78.36667, + "nameAirport": "Sampson County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 1573, + "codeIataAirport": "CUA", + "codeIataCity": "CUA", + "codeIcaoAirport": "MMDA", + "codeIso2Country": "MX", + "geonameId": "7668346", + "latitudeAirport": 25.036943, + "longitudeAirport": -111.664444, + "nameAirport": "Ciudad Constitucion", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mazatlan" + }, + { + "GMT": "-5", + "airportId": 1574, + "codeIataAirport": "CUB", + "codeIataCity": "CAE", + "codeIcaoAirport": "KCUB", + "codeIso2Country": "US", + "geonameId": "4575333", + "latitudeAirport": 33.936943, + "longitudeAirport": -81.11528, + "nameAirport": "Owens Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 1575, + "codeIataAirport": "CUC", + "codeIataCity": "CUC", + "codeIcaoAirport": "SKCC", + "codeIso2Country": "CO", + "geonameId": "6300739", + "latitudeAirport": 7.927108, + "longitudeAirport": -72.50815, + "nameAirport": "Camilo Dazo", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "airportId": 1576, + "codeIataAirport": "CUD", + "codeIataCity": "CUD", + "codeIcaoAirport": "YCDR", + "codeIso2Country": "AU", + "geonameId": "7730953", + "latitudeAirport": -26.8, + "longitudeAirport": 153.15, + "nameAirport": "Caloundra", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 1577, + "codeIataAirport": "CUE", + "codeIataCity": "CUE", + "codeIcaoAirport": "SECU", + "codeIso2Country": "EC", + "geonameId": "6300711", + "latitudeAirport": -2.889343, + "longitudeAirport": -78.98689, + "nameAirport": "Cuenca", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "1", + "airportId": 1578, + "codeIataAirport": "CUF", + "codeIataCity": "CUF", + "codeIcaoAirport": "LIMZ", + "codeIso2Country": "IT", + "geonameId": "6299587", + "latitudeAirport": 44.53528, + "longitudeAirport": 7.6175, + "nameAirport": "Levaldigi", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "10", + "airportId": 1579, + "codeIataAirport": "CUG", + "codeIataCity": "CUG", + "codeIcaoAirport": "YCUA", + "codeIso2Country": "AU", + "geonameId": "7730954", + "latitudeAirport": -32.0, + "longitudeAirport": 151.0, + "nameAirport": "Cudal", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "airportId": 1580, + "codeIataAirport": "CUH", + "codeIataCity": "CUH", + "codeIcaoAirport": "KCUH", + "codeIso2Country": "US", + "geonameId": "4534668", + "latitudeAirport": 35.983334, + "longitudeAirport": -96.76667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 1581, + "codeIataAirport": "CUI", + "codeIataCity": "CUI", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8299193", + "latitudeAirport": 4.666667, + "longitudeAirport": -72.0, + "nameAirport": "Currillo", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "8", + "airportId": 1582, + "codeIataAirport": "CUJ", + "codeIataCity": "CUJ", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "1716526", + "latitudeAirport": 11.833333, + "longitudeAirport": 120.0, + "nameAirport": "Culion", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-6", + "airportId": 1583, + "codeIataAirport": "CUK", + "codeIataCity": "CUK", + "codeIcaoAirport": "", + "codeIso2Country": "BZ", + "geonameId": "7730330", + "latitudeAirport": 17.766666, + "longitudeAirport": -88.0, + "nameAirport": "Caye Caulker", + "nameCountry": "Belize", + "phone": "", + "timezone": "America/Belize" + }, + { + "GMT": "-7", + "airportId": 1584, + "codeIataAirport": "CUL", + "codeIataCity": "CUL", + "codeIcaoAirport": "MMCL", + "codeIso2Country": "MX", + "geonameId": "6299832", + "latitudeAirport": 24.76643, + "longitudeAirport": -107.46958, + "nameAirport": "Fedl De Bachigualato", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mazatlan" + }, + { + "GMT": "-4", + "airportId": 1585, + "codeIataAirport": "CUM", + "codeIataCity": "CUM", + "codeIcaoAirport": "SVCU", + "codeIso2Country": "VE", + "geonameId": "6300849", + "latitudeAirport": 10.447778, + "longitudeAirport": -64.19194, + "nameAirport": "Cumana", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-5", + "airportId": 1586, + "codeIataAirport": "CUN", + "codeIataCity": "CUN", + "codeIcaoAirport": "MMUN", + "codeIso2Country": "MX", + "geonameId": "6299880", + "latitudeAirport": 21.040457, + "longitudeAirport": -86.874435, + "nameAirport": "Cancún International", + "nameCountry": "Mexico", + "phone": "(998) 848-720", + "timezone": "America/Cancun" + }, + { + "GMT": "-5", + "airportId": 1587, + "codeIataAirport": "CUO", + "codeIataCity": "CUO", + "codeIcaoAirport": "SKCR", + "codeIso2Country": "CO", + "geonameId": "7730955", + "latitudeAirport": 1.033333, + "longitudeAirport": -71.23333, + "nameAirport": "Caruru", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-4", + "airportId": 1588, + "codeIataAirport": "CUP", + "codeIataCity": "CUP", + "codeIcaoAirport": "SVCP", + "codeIso2Country": "VE", + "geonameId": "6300846", + "latitudeAirport": 10.658889, + "longitudeAirport": -63.2625, + "nameAirport": "Carupano", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "10", + "airportId": 1589, + "codeIataAirport": "CUQ", + "codeIataCity": "CUQ", + "codeIcaoAirport": "YCOE", + "codeIso2Country": "AU", + "geonameId": "7730249", + "latitudeAirport": -13.763889, + "longitudeAirport": 143.11333, + "nameAirport": "Coen", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-4", + "airportId": 1590, + "codeIataAirport": "CUR", + "codeIataCity": "CUR", + "codeIcaoAirport": "TNCC", + "codeIso2Country": "CW", + "geonameId": "3513789", + "latitudeAirport": 12.184615, + "longitudeAirport": -68.95706, + "nameAirport": "Hato International Airport", + "nameCountry": "Curaçao", + "phone": "", + "timezone": "America/Curacao" + }, + { + "GMT": "-7", + "airportId": 1591, + "codeIataAirport": "CUS", + "codeIataCity": "CUS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 31.833332, + "longitudeAirport": -107.63333, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-3", + "airportId": 1592, + "codeIataAirport": "CUT", + "codeIataCity": "CUT", + "codeIcaoAirport": "SAZW", + "codeIso2Country": "AR", + "geonameId": "7730151", + "latitudeAirport": -38.9, + "longitudeAirport": -69.0, + "nameAirport": "Cutral", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-7", + "airportId": 1593, + "codeIataAirport": "CUU", + "codeIataCity": "CUU", + "codeIcaoAirport": "MMCU", + "codeIso2Country": "MX", + "geonameId": "4014338", + "latitudeAirport": 28.704048, + "longitudeAirport": -105.96952, + "nameAirport": "Gen Fierro Villalobos", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Chihuahua" + }, + { + "GMT": "-4", + "airportId": 1594, + "codeIataAirport": "CUV", + "codeIataCity": "CUV", + "codeIcaoAirport": "SVCG", + "codeIso2Country": "VE", + "geonameId": "7730956", + "latitudeAirport": 11.066667, + "longitudeAirport": -70.95, + "nameAirport": "Casigua", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-9", + "airportId": 1595, + "codeIataAirport": "CUW", + "codeIataCity": "CUW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299119", + "latitudeAirport": 57.941666, + "longitudeAirport": -134.75, + "nameAirport": "Cube Cove", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Juneau" + }, + { + "GMT": "-6", + "airportId": 1596, + "codeIataAirport": "CUX", + "codeIataCity": "CRP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 27.75, + "longitudeAirport": -97.33611, + "nameAirport": "Cuddihy Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 1597, + "codeIataAirport": "CUY", + "codeIataCity": "CUY", + "codeIcaoAirport": "YCUE", + "codeIso2Country": "AU", + "geonameId": "7730957", + "latitudeAirport": -27.45, + "longitudeAirport": 117.916664, + "nameAirport": "Cue", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "airportId": 1598, + "codeIataAirport": "CUZ", + "codeIataCity": "CUZ", + "codeIcaoAirport": "SPZO", + "codeIso2Country": "PE", + "geonameId": "6300825", + "latitudeAirport": -13.538429, + "longitudeAirport": -71.94371, + "nameAirport": "Velazco Astete", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "-5", + "airportId": 1599, + "codeIataAirport": "CVA", + "codeIataCity": "PIT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.496666, + "longitudeAirport": -80.23583, + "nameAirport": "Civic Ar Heli", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 1600, + "codeIataAirport": "CVB", + "codeIataCity": "CVB", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7730958", + "latitudeAirport": -4.8, + "longitudeAirport": 144.7, + "nameAirport": "Chungribu", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9.30", + "airportId": 1601, + "codeIataAirport": "CVC", + "codeIataCity": "CVC", + "codeIcaoAirport": "YCEE", + "codeIso2Country": "AU", + "geonameId": "7730246", + "latitudeAirport": -33.7, + "longitudeAirport": 136.5, + "nameAirport": "Cleve", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-5", + "airportId": 1602, + "codeIataAirport": "CVE", + "codeIataCity": "CVE", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 9.4, + "longitudeAirport": -75.73333, + "nameAirport": "Covenas", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "airportId": 1603, + "codeIataAirport": "CVF", + "codeIataCity": "CVF", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "3023065", + "latitudeAirport": 45.396667, + "longitudeAirport": 6.634722, + "nameAirport": "Courchevel", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 1604, + "codeIataAirport": "CVG", + "codeIataCity": "CVG", + "codeIcaoAirport": "KCVG", + "codeIso2Country": "US", + "geonameId": "4508722", + "latitudeAirport": 39.0555, + "longitudeAirport": -84.66145, + "nameAirport": "Cincinnati/Northern Kentucky", + "nameCountry": "United States", + "phone": "859-767-3144", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 1605, + "codeIataAirport": "CVH", + "codeIataCity": "CVH", + "codeIcaoAirport": "SAHE", + "codeIso2Country": "AR", + "geonameId": "7730764", + "latitudeAirport": -37.916668, + "longitudeAirport": -71.0, + "nameAirport": "Caviahue", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-3", + "airportId": 1606, + "codeIataAirport": "CVI", + "codeIataCity": "CVI", + "codeIcaoAirport": "", + "codeIso2Country": "AR", + "geonameId": "7730960", + "latitudeAirport": -46.416668, + "longitudeAirport": -67.416664, + "nameAirport": "Caleta Olivia", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "-6", + "airportId": 1607, + "codeIataAirport": "CVJ", + "codeIataCity": "CVJ", + "codeIcaoAirport": "MMCB", + "codeIso2Country": "MX", + "geonameId": "6299830", + "latitudeAirport": 18.916668, + "longitudeAirport": -99.25, + "nameAirport": "General Mariano Matamoros Airport", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "10", + "airportId": 1608, + "codeIataAirport": "CVL", + "codeIataCity": "CVL", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298886", + "latitudeAirport": -9.466667, + "longitudeAirport": 150.5, + "nameAirport": "Cape Vogel", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 1609, + "codeIataAirport": "CVM", + "codeIataCity": "CVM", + "codeIcaoAirport": "MMCV", + "codeIso2Country": "MX", + "geonameId": "6299839", + "latitudeAirport": 23.713888, + "longitudeAirport": -98.96528, + "nameAirport": "Ciudad Victoria", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Monterrey" + }, + { + "GMT": "-7", + "airportId": 1610, + "codeIataAirport": "CVN", + "codeIataCity": "CVN", + "codeIcaoAirport": "KCVN", + "codeIso2Country": "US", + "geonameId": "5462403", + "latitudeAirport": 34.427223, + "longitudeAirport": -103.07889, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-8", + "airportId": 1611, + "codeIataAirport": "CVO", + "codeIataCity": "CVO", + "codeIcaoAirport": "KCVO", + "codeIso2Country": "US", + "geonameId": "5720730", + "latitudeAirport": 44.63333, + "longitudeAirport": -123.11667, + "nameAirport": "Albany", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 1612, + "codeIataAirport": "CVQ", + "codeIataCity": "CVQ", + "codeIcaoAirport": "YCAR", + "codeIso2Country": "AU", + "geonameId": "7668695", + "latitudeAirport": -24.883429, + "longitudeAirport": 113.66358, + "nameAirport": "Carnarvon", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-7", + "airportId": 1613, + "codeIataAirport": "CVS", + "codeIataCity": "CVN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.38389, + "longitudeAirport": -103.316666, + "nameAirport": "Cannon AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "0", + "airportId": 1614, + "codeIataAirport": "CVT", + "codeIataCity": "CVT", + "codeIcaoAirport": "EGBE", + "codeIso2Country": "GB", + "geonameId": "6296573", + "latitudeAirport": 52.369167, + "longitudeAirport": -1.478611, + "nameAirport": "West Midlands International", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-1", + "airportId": 1615, + "codeIataAirport": "CVU", + "codeIataCity": "CVU", + "codeIcaoAirport": "LPCR", + "codeIso2Country": "PT", + "geonameId": "7668326", + "latitudeAirport": 39.7, + "longitudeAirport": -31.1, + "nameAirport": "Corvo Island", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Atlantic/Azores" + }, + { + "GMT": "-6", + "airportId": 1616, + "codeIataAirport": "CWA", + "codeIataCity": "AUW", + "codeIcaoAirport": "KCWA", + "codeIso2Country": "US", + "geonameId": "5248258", + "latitudeAirport": 44.78421, + "longitudeAirport": -89.67244, + "nameAirport": "Central Wisconsin", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 1617, + "codeIataAirport": "CWB", + "codeIataCity": "CWB", + "codeIcaoAirport": "SBCT", + "codeIso2Country": "BR", + "geonameId": "6301852", + "latitudeAirport": -25.5322, + "longitudeAirport": -49.176544, + "nameAirport": "Afonso Pena International Airport", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "2", + "airportId": 1618, + "codeIataAirport": "CWC", + "codeIataCity": "CWC", + "codeIcaoAirport": "UKLN", + "codeIso2Country": "UA", + "geonameId": "6300964", + "latitudeAirport": 48.266666, + "longitudeAirport": 25.966667, + "nameAirport": "Chernovtsy", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-6", + "airportId": 1619, + "codeIataAirport": "CWF", + "codeIataCity": "LCH", + "codeIcaoAirport": "KCWF", + "codeIso2Country": "US", + "geonameId": "4319736", + "latitudeAirport": 30.305918, + "longitudeAirport": -93.23189, + "nameAirport": "Chennault International.", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 1620, + "codeIataAirport": "CWG", + "codeIataCity": "CWG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.84028, + "longitudeAirport": -84.8825, + "nameAirport": "Callaway Gardens", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 1621, + "codeIataAirport": "CWI", + "codeIataCity": "CWI", + "codeIcaoAirport": "KCWI", + "codeIso2Country": "US", + "geonameId": "4852045", + "latitudeAirport": 41.829445, + "longitudeAirport": -90.33195, + "nameAirport": "Clinton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 1622, + "codeIataAirport": "CWL", + "codeIataCity": "CWL", + "codeIcaoAirport": "EGFF", + "codeIso2Country": "GB", + "geonameId": "3345295", + "latitudeAirport": 51.39877, + "longitudeAirport": -3.339075, + "nameAirport": "Cardiff", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 1623, + "codeIataAirport": "CWO", + "codeIataCity": "MWL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.8, + "longitudeAirport": -98.11667, + "nameAirport": "Ft Wolter AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5", + "airportId": 1624, + "codeIataAirport": "CWP", + "codeIataCity": "CWP", + "codeIcaoAirport": "", + "codeIso2Country": "PK", + "geonameId": "0", + "latitudeAirport": 33.766666, + "longitudeAirport": 72.433334, + "nameAirport": "Campbellpore", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "9.30", + "airportId": 1625, + "codeIataAirport": "CWR", + "codeIataCity": "CWR", + "codeIcaoAirport": "YCWI", + "codeIso2Country": "AU", + "geonameId": "7730963", + "latitudeAirport": -27.716667, + "longitudeAirport": 138.33333, + "nameAirport": "Cowarie", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-8", + "airportId": 1626, + "codeIataAirport": "CWS", + "codeIataCity": "CWS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 47.485, + "longitudeAirport": -122.83139, + "nameAirport": "Center Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 1627, + "codeIataAirport": "CWT", + "codeIataCity": "CWT", + "codeIcaoAirport": "YCWR", + "codeIso2Country": "AU", + "geonameId": "7668707", + "latitudeAirport": -33.855, + "longitudeAirport": 148.64667, + "nameAirport": "Cowra", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "airportId": 1628, + "codeIataAirport": "CWW", + "codeIataCity": "CWW", + "codeIcaoAirport": "YCOR", + "codeIso2Country": "AU", + "geonameId": "7668704", + "latitudeAirport": -35.966667, + "longitudeAirport": 146.35, + "nameAirport": "Corowa", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-7", + "airportId": 1629, + "codeIataAirport": "CWX", + "codeIataCity": "CWX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5321088", + "latitudeAirport": 32.25285, + "longitudeAirport": -109.83201, + "nameAirport": "Cochise County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "-4", + "airportId": 1630, + "codeIataAirport": "CXA", + "codeIataCity": "CXA", + "codeIcaoAirport": "SVCD", + "codeIso2Country": "VE", + "geonameId": "7730177", + "latitudeAirport": 7.533333, + "longitudeAirport": -66.15, + "nameAirport": "Caicara Del Orinoco", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "6", + "airportId": 1631, + "codeIataAirport": "CXB", + "codeIataCity": "CXB", + "codeIcaoAirport": "VGCB", + "codeIso2Country": "BD", + "geonameId": "6301081", + "latitudeAirport": 21.45, + "longitudeAirport": 91.96667, + "nameAirport": "Cox's Bazar", + "nameCountry": "Bangladesh", + "phone": "", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "-9", + "airportId": 1632, + "codeIataAirport": "CXC", + "codeIataCity": "CXC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5859304", + "latitudeAirport": 61.583332, + "longitudeAirport": -144.42778, + "nameAirport": "Chitina Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 1633, + "codeIataAirport": "CXF", + "codeIataCity": "CXF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5859692", + "latitudeAirport": 67.26667, + "longitudeAirport": -150.16667, + "nameAirport": "Coldfoot", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "airportId": 1634, + "codeIataAirport": "CXH", + "codeIataCity": "YVR", + "codeIcaoAirport": "CYHC", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 49.266666, + "longitudeAirport": -123.11667, + "nameAirport": "Coal Harbour", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "14", + "airportId": 1635, + "codeIataAirport": "CXI", + "codeIataCity": "CXI", + "codeIcaoAirport": "PLCH", + "codeIso2Country": "KI", + "geonameId": "6300284", + "latitudeAirport": 1.966667, + "longitudeAirport": -157.45, + "nameAirport": "Cassidy International Airport", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Kiritimati" + }, + { + "GMT": "-3", + "airportId": 1636, + "codeIataAirport": "CXJ", + "codeIataCity": "CXJ", + "codeIcaoAirport": "SBCX", + "codeIso2Country": "BR", + "geonameId": "7668436", + "latitudeAirport": -29.166668, + "longitudeAirport": -51.183334, + "nameAirport": "Campo Dos Bugres", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "airportId": 1637, + "codeIataAirport": "CXL", + "codeIataCity": "CXL", + "codeIcaoAirport": "KCXL", + "codeIso2Country": "US", + "geonameId": "5332698", + "latitudeAirport": 32.666668, + "longitudeAirport": -115.51667, + "nameAirport": "Calexico International Airport ", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "airportId": 1638, + "codeIataAirport": "CXN", + "codeIataCity": "CXN", + "codeIcaoAirport": "HCMC", + "codeIso2Country": "SO", + "geonameId": "7730599", + "latitudeAirport": 11.5, + "longitudeAirport": 49.916668, + "nameAirport": "Candala", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-6", + "airportId": 1639, + "codeIataAirport": "CXO", + "codeIataCity": "CXO", + "codeIcaoAirport": "KCXO", + "codeIso2Country": "US", + "geonameId": "4712042", + "latitudeAirport": 30.316668, + "longitudeAirport": -95.45, + "nameAirport": "Montgomery Co", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "airportId": 1640, + "codeIataAirport": "CXP", + "codeIataCity": "CXP", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "0", + "latitudeAirport": -7.733333, + "longitudeAirport": 109.0, + "nameAirport": "Tunggul Wulung", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "8", + "airportId": 1641, + "codeIataAirport": "CXQ", + "codeIataCity": "CXQ", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8261068", + "latitudeAirport": -18.866667, + "longitudeAirport": 125.916664, + "nameAirport": "Christmas Creek", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "7", + "airportId": 1642, + "codeIataAirport": "CXR", + "codeIataCity": "NHA", + "codeIcaoAirport": "VVCR", + "codeIso2Country": "VN", + "geonameId": "7732862", + "latitudeAirport": 11.993611, + "longitudeAirport": 109.225, + "nameAirport": "Cam Ranh", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "10", + "airportId": 1643, + "codeIataAirport": "CXT", + "codeIataCity": "CXT", + "codeIcaoAirport": "YCHT", + "codeIso2Country": "AU", + "geonameId": "7668700", + "latitudeAirport": -20.046667, + "longitudeAirport": 146.26917, + "nameAirport": "Charters Towers", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 1644, + "codeIataAirport": "CXY", + "codeIataCity": "CXY", + "codeIcaoAirport": "MYCC", + "codeIso2Country": "BS", + "geonameId": "7730681", + "latitudeAirport": 25.416668, + "longitudeAirport": -77.816666, + "nameAirport": "Cat Cays", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-5", + "airportId": 1645, + "codeIataAirport": "CYA", + "codeIataCity": "CYA", + "codeIcaoAirport": "", + "codeIso2Country": "HT", + "geonameId": "3728097", + "latitudeAirport": 18.269722, + "longitudeAirport": -73.78833, + "nameAirport": "Les Cayes", + "nameCountry": "Haiti", + "phone": "", + "timezone": "America/Port-au-Prince" + }, + { + "GMT": "-5", + "airportId": 1646, + "codeIataAirport": "CYB", + "codeIataCity": "CYB", + "codeIcaoAirport": "MWCB", + "codeIso2Country": "KY", + "geonameId": "3580660", + "latitudeAirport": 19.690191, + "longitudeAirport": -79.87941, + "nameAirport": "Gerrard-Smith", + "nameCountry": "Cayman Islands", + "phone": "", + "timezone": "America/Cayman" + }, + { + "GMT": "-6", + "airportId": 1647, + "codeIataAirport": "CYC", + "codeIataCity": "CYC", + "codeIcaoAirport": "", + "codeIso2Country": "BZ", + "geonameId": "3582432", + "latitudeAirport": 17.666668, + "longitudeAirport": -88.833336, + "nameAirport": "Caye Chapel", + "nameCountry": "Belize", + "phone": "", + "timezone": "America/Belize" + }, + { + "GMT": "-5", + "airportId": 1648, + "codeIataAirport": "CYE", + "codeIataCity": "CYE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.210278, + "longitudeAirport": -75.83222, + "nameAirport": "Crystal Lake", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 1649, + "codeIataAirport": "CYF", + "codeIataCity": "CYF", + "codeIcaoAirport": "PACK", + "codeIso2Country": "US", + "geonameId": "5859048", + "latitudeAirport": 60.216667, + "longitudeAirport": -164.2, + "nameAirport": "Chefornak SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "10", + "airportId": 1650, + "codeIataAirport": "CYG", + "codeIataCity": "CYG", + "codeIcaoAirport": "YCRG", + "codeIso2Country": "AU", + "geonameId": "7668705", + "latitudeAirport": -36.25, + "longitudeAirport": 147.9, + "nameAirport": "Corryong", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "8", + "airportId": 1651, + "codeIataAirport": "CYI", + "codeIataCity": "CYI", + "codeIcaoAirport": "RCKU", + "codeIso2Country": "TW", + "geonameId": "6300295", + "latitudeAirport": 23.466667, + "longitudeAirport": 120.38333, + "nameAirport": "Chiayi", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "-6", + "airportId": 1652, + "codeIataAirport": "CYL", + "codeIataCity": "CYL", + "codeIcaoAirport": "", + "codeIso2Country": "HN", + "geonameId": "8298916", + "latitudeAirport": 15.0, + "longitudeAirport": -86.5, + "nameAirport": "Coyoles", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-9", + "airportId": 1653, + "codeIataAirport": "CYM", + "codeIataCity": "CYM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5845284", + "latitudeAirport": 57.5, + "longitudeAirport": -135.0, + "nameAirport": "Chatham SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "-5", + "airportId": 1654, + "codeIataAirport": "CYO", + "codeIataCity": "CYO", + "codeIcaoAirport": "MUCL", + "codeIso2Country": "CU", + "geonameId": "6299919", + "latitudeAirport": 21.616667, + "longitudeAirport": -81.51667, + "nameAirport": "Cayo Largo Del Sur", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "8", + "airportId": 1655, + "codeIataAirport": "CYP", + "codeIataCity": "CYP", + "codeIcaoAirport": "RPVC", + "codeIso2Country": "PH", + "geonameId": "1720402", + "latitudeAirport": 12.075833, + "longitudeAirport": 124.54305, + "nameAirport": "Calbayog", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-3", + "airportId": 1656, + "codeIataAirport": "CYR", + "codeIataCity": "CYR", + "codeIcaoAirport": "", + "codeIso2Country": "UY", + "geonameId": "0", + "latitudeAirport": -34.166668, + "longitudeAirport": -57.5, + "nameAirport": "Laguna De Los Patos", + "nameCountry": "Uruguay", + "phone": "", + "timezone": "America/Montevideo" + }, + { + "GMT": "-7", + "airportId": 1657, + "codeIataAirport": "CYS", + "codeIataCity": "CYS", + "codeIcaoAirport": "KCYS", + "codeIso2Country": "US", + "geonameId": "5821087", + "latitudeAirport": 41.155834, + "longitudeAirport": -104.816666, + "nameAirport": "Cheyenne", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "airportId": 1658, + "codeIataAirport": "CYT", + "codeIataCity": "CYT", + "codeIcaoAirport": "PACY", + "codeIso2Country": "US", + "geonameId": "5878444", + "latitudeAirport": 60.08, + "longitudeAirport": -142.49445, + "nameAirport": "Intermediate", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 1659, + "codeIataAirport": "CYU", + "codeIataCity": "CYU", + "codeIcaoAirport": "RPLO", + "codeIso2Country": "PH", + "geonameId": "7668421", + "latitudeAirport": 10.883333, + "longitudeAirport": 121.0, + "nameAirport": "Cuyo", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-6", + "airportId": 1660, + "codeIataAirport": "CYW", + "codeIataCity": "CYW", + "codeIcaoAirport": "MMCY", + "codeIso2Country": "MX", + "geonameId": "7668345", + "latitudeAirport": 20.55, + "longitudeAirport": -100.9, + "nameAirport": "Celaya", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "11", + "airportId": 1661, + "codeIataAirport": "CYX", + "codeIataCity": "CYX", + "codeIcaoAirport": "UESS", + "codeIso2Country": "RU", + "geonameId": "7668498", + "latitudeAirport": 68.75, + "longitudeAirport": 161.35, + "nameAirport": "Cherskiy", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Magadan" + }, + { + "GMT": "8", + "airportId": 1662, + "codeIataAirport": "CYZ", + "codeIataCity": "CYZ", + "codeIcaoAirport": "RPUY", + "codeIso2Country": "PH", + "geonameId": "0", + "latitudeAirport": 16.93, + "longitudeAirport": 121.75584, + "nameAirport": "Cauayan", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-6", + "airportId": 1663, + "codeIataAirport": "CZA", + "codeIataCity": "CZA", + "codeIcaoAirport": "MMCT", + "codeIso2Country": "MX", + "geonameId": "6299837", + "latitudeAirport": 20.666668, + "longitudeAirport": -88.566666, + "nameAirport": "Chichen Itza", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Merida" + }, + { + "GMT": "-3", + "airportId": 1664, + "codeIataAirport": "CZB", + "codeIataCity": "CZB", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8298857", + "latitudeAirport": -28.641666, + "longitudeAirport": -53.558334, + "nameAirport": "Carlos Ruhl", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-9", + "airportId": 1665, + "codeIataAirport": "CZC", + "codeIataCity": "CZC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5859851", + "latitudeAirport": 61.966667, + "longitudeAirport": -145.3, + "nameAirport": "Copper Centre", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "airportId": 1666, + "codeIataAirport": "CZE", + "codeIataCity": "CZE", + "codeIcaoAirport": "SVCR", + "codeIso2Country": "VE", + "geonameId": "3645214", + "latitudeAirport": 11.415833, + "longitudeAirport": -69.681946, + "nameAirport": "Coro", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-9", + "airportId": 1667, + "codeIataAirport": "CZF", + "codeIataCity": "CZF", + "codeIcaoAirport": "PACZ", + "codeIso2Country": "US", + "geonameId": "5858627", + "latitudeAirport": 61.781113, + "longitudeAirport": -166.03639, + "nameAirport": "Cape Romanzof", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "-6", + "airportId": 1668, + "codeIataAirport": "CZH", + "codeIataCity": "CZH", + "codeIcaoAirport": "", + "codeIso2Country": "BZ", + "geonameId": "7910483", + "latitudeAirport": 18.383333, + "longitudeAirport": -88.416664, + "nameAirport": "Corozal", + "nameCountry": "Belize", + "phone": "", + "timezone": "America/Belize" + }, + { + "GMT": "-5", + "airportId": 1669, + "codeIataAirport": "CZJ", + "codeIataCity": "CZJ", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "8299161", + "latitudeAirport": 9.570556, + "longitudeAirport": -79.368614, + "nameAirport": "Corazon De Jesus", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "-8", + "airportId": 1670, + "codeIataAirport": "CZK", + "codeIataCity": "CZK", + "codeIcaoAirport": "KCZK", + "codeIso2Country": "US", + "geonameId": "5718136", + "latitudeAirport": 45.666668, + "longitudeAirport": -121.9, + "nameAirport": "Cascade Locks/Stevens", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 1671, + "codeIataAirport": "CZL", + "codeIataCity": "CZL", + "codeIcaoAirport": "DABC", + "codeIso2Country": "DZ", + "geonameId": "6296371", + "latitudeAirport": 36.286476, + "longitudeAirport": 6.618425, + "nameAirport": "Ain El Bey", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-5", + "airportId": 1672, + "codeIataAirport": "CZM", + "codeIataCity": "CZM", + "codeIcaoAirport": "MMCZ", + "codeIso2Country": "MX", + "geonameId": "6299840", + "latitudeAirport": 20.5112, + "longitudeAirport": -86.930466, + "nameAirport": "Cozumel", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Cancun" + }, + { + "GMT": "-9", + "airportId": 1673, + "codeIataAirport": "CZN", + "codeIataCity": "CZN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5859282", + "latitudeAirport": 62.07083, + "longitudeAirport": -142.05, + "nameAirport": "Chisana Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 1674, + "codeIataAirport": "CZO", + "codeIataCity": "CZO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5859295", + "latitudeAirport": 62.566666, + "longitudeAirport": -144.66667, + "nameAirport": "Chistochina", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 1675, + "codeIataAirport": "CZP", + "codeIataCity": "CZP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5845149", + "latitudeAirport": 55.966667, + "longitudeAirport": -133.78528, + "nameAirport": "Cape Pole", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "-5", + "airportId": 1676, + "codeIataAirport": "CZS", + "codeIataCity": "CZS", + "codeIcaoAirport": "SBCZ", + "codeIso2Country": "BR", + "geonameId": "6300618", + "latitudeAirport": -7.583333, + "longitudeAirport": -72.78333, + "nameAirport": "International Airport Cruzeiro Do Sul", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Rio_Branco" + }, + { + "GMT": "-6", + "airportId": 1677, + "codeIataAirport": "CZT", + "codeIataCity": "CZT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 28.516666, + "longitudeAirport": -99.86667, + "nameAirport": "Carrizo Springs", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 1678, + "codeIataAirport": "CZU", + "codeIataCity": "CZU", + "codeIcaoAirport": "SKCZ", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 9.3375, + "longitudeAirport": -75.282776, + "nameAirport": "Corozal", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "airportId": 1679, + "codeIataAirport": "CZW", + "codeIataCity": "CZW", + "codeIcaoAirport": "", + "codeIso2Country": "PL", + "geonameId": "3086755", + "latitudeAirport": 50.816666, + "longitudeAirport": 19.1, + "nameAirport": "Czestochowa", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "8", + "airportId": 1680, + "codeIataAirport": "CZX", + "codeIataCity": "CZX", + "codeIcaoAirport": "ZSCG", + "codeIso2Country": "CN", + "geonameId": "7668803", + "latitudeAirport": 31.914116, + "longitudeAirport": 119.77976, + "nameAirport": "Changzhou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "airportId": 1681, + "codeIataAirport": "CZY", + "codeIataCity": "CZY", + "codeIcaoAirport": "YUNY", + "codeIso2Country": "AU", + "geonameId": "7730964", + "latitudeAirport": -24.516666, + "longitudeAirport": 139.53334, + "nameAirport": "Cluny", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-8", + "airportId": 1682, + "codeIataAirport": "CZZ", + "codeIataCity": "CZZ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 37.1, + "longitudeAirport": -102.583336, + "nameAirport": "Campo", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 1683, + "codeIataAirport": "DAA", + "codeIataCity": "DAA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "7257902", + "latitudeAirport": 37.5, + "longitudeAirport": -78.75, + "nameAirport": "Davison AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 1684, + "codeIataAirport": "DAB", + "codeIataCity": "DAB", + "codeIcaoAirport": "KDAB", + "codeIso2Country": "US", + "geonameId": "4152880", + "latitudeAirport": 29.185192, + "longitudeAirport": -81.06083, + "nameAirport": "Daytona Beach International Airport", + "nameCountry": "United States", + "phone": "386-248-8030", + "timezone": "America/New_York" + }, + { + "GMT": "6", + "airportId": 1685, + "codeIataAirport": "DAC", + "codeIataCity": "DAC", + "codeIcaoAirport": "VGZR", + "codeIso2Country": "BD", + "geonameId": "6301871", + "latitudeAirport": 23.848648, + "longitudeAirport": 90.405876, + "nameAirport": "Zia International", + "nameCountry": "Bangladesh", + "phone": "", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "7", + "airportId": 1686, + "codeIataAirport": "DAD", + "codeIataCity": "DAD", + "codeIcaoAirport": "VVDN", + "codeIso2Country": "VN", + "geonameId": "6301169", + "latitudeAirport": 16.055399, + "longitudeAirport": 108.20298, + "nameAirport": "Da Nang", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "10", + "airportId": 1687, + "codeIataAirport": "DAF", + "codeIataCity": "DAF", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2098304", + "latitudeAirport": -4.733333, + "longitudeAirport": 144.95, + "nameAirport": "Daup", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "airportId": 1688, + "codeIataAirport": "DAG", + "codeIataCity": "DAG", + "codeIcaoAirport": "KDAG", + "codeIso2Country": "US", + "geonameId": "5341365", + "latitudeAirport": 34.25, + "longitudeAirport": -117.333336, + "nameAirport": "Barstow-Daggett", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "airportId": 1689, + "codeIataAirport": "DAH", + "codeIataCity": "DAH", + "codeIcaoAirport": "", + "codeIso2Country": "YE", + "geonameId": "8260996", + "latitudeAirport": 13.866667, + "longitudeAirport": 46.13333, + "nameAirport": "Dathina", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "10", + "airportId": 1690, + "codeIataAirport": "DAJ", + "codeIataCity": "DAJ", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -9.433333, + "longitudeAirport": 142.53334, + "nameAirport": "Dauan Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "airportId": 1691, + "codeIataAirport": "DAK", + "codeIataCity": "DAK", + "codeIcaoAirport": "HEDK", + "codeIso2Country": "EG", + "geonameId": "7730610", + "latitudeAirport": 25.414722, + "longitudeAirport": 28.999166, + "nameAirport": "Dakhla", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-6", + "airportId": 1692, + "codeIataAirport": "DAL", + "codeIataCity": "DFW", + "codeIcaoAirport": "KDAL", + "codeIso2Country": "US", + "geonameId": "4684922", + "latitudeAirport": 32.84391, + "longitudeAirport": -96.85, + "nameAirport": "Love Field", + "nameCountry": "United States", + "phone": "214-670-6080", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 1693, + "codeIataAirport": "DAM", + "codeIataCity": "DAM", + "codeIcaoAirport": "OSDI", + "codeIso2Country": "SY", + "geonameId": "6300128", + "latitudeAirport": 33.41117, + "longitudeAirport": 36.51249, + "nameAirport": "Damascus International Airport", + "nameCountry": "Syria", + "phone": "", + "timezone": "Asia/Damascus" + }, + { + "GMT": "-5", + "airportId": 1694, + "codeIataAirport": "DAN", + "codeIataCity": "DAN", + "codeIcaoAirport": "KDAN", + "codeIso2Country": "US", + "geonameId": "4755293", + "latitudeAirport": 36.573055, + "longitudeAirport": -79.335, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 1695, + "codeIataAirport": "DAO", + "codeIataCity": "DAO", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "0", + "latitudeAirport": -8.433056, + "longitudeAirport": 147.84944, + "nameAirport": "Dabo", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5.45", + "airportId": 1696, + "codeIataAirport": "DAP", + "codeIataCity": "DAP", + "codeIcaoAirport": "VNDL", + "codeIso2Country": "NP", + "geonameId": "7730965", + "latitudeAirport": 29.666668, + "longitudeAirport": 80.5, + "nameAirport": "Darchula", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "3", + "airportId": 1697, + "codeIataAirport": "DAR", + "codeIataCity": "DAR", + "codeIcaoAirport": "HTDA", + "codeIso2Country": "TZ", + "geonameId": "6297353", + "latitudeAirport": -6.873533, + "longitudeAirport": 39.20211, + "nameAirport": "Dar Es Salam International Airport", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-7", + "airportId": 1698, + "codeIataAirport": "DAS", + "codeIataCity": "DAS", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 66.70306, + "longitudeAirport": -119.712776, + "nameAirport": "Great Bear Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "8", + "airportId": 1699, + "codeIataAirport": "DAT", + "codeIataCity": "DAT", + "codeIcaoAirport": "ZBDT", + "codeIso2Country": "CN", + "geonameId": "7668788", + "latitudeAirport": 40.05554, + "longitudeAirport": 113.48136, + "nameAirport": "Datong", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "airportId": 1700, + "codeIataAirport": "DAU", + "codeIataCity": "DAU", + "codeIcaoAirport": "AYDU", + "codeIso2Country": "PG", + "geonameId": "7668077", + "latitudeAirport": -9.08351, + "longitudeAirport": 143.20605, + "nameAirport": "Daru", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 1701, + "codeIataAirport": "DAV", + "codeIataCity": "DAV", + "codeIcaoAirport": "MPDA", + "codeIso2Country": "PA", + "geonameId": "6299896", + "latitudeAirport": 8.383333, + "longitudeAirport": -82.433334, + "nameAirport": "Enrique Malek", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "8", + "airportId": 1702, + "codeIataAirport": "DAX", + "codeIataCity": "DAX", + "codeIcaoAirport": "ZUDX", + "codeIso2Country": "CN", + "geonameId": "7730966", + "latitudeAirport": 31.135012, + "longitudeAirport": 107.42689, + "nameAirport": "Daxian", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 1703, + "codeIataAirport": "DAY", + "codeIataCity": "DAY", + "codeIcaoAirport": "KDAY", + "codeIso2Country": "US", + "geonameId": "4515418", + "latitudeAirport": 39.898006, + "longitudeAirport": -84.220764, + "nameAirport": "James Cox Dayton International", + "nameCountry": "United States", + "phone": "937-454-8200", + "timezone": "America/New_York" + }, + { + "GMT": "4.30", + "airportId": 1704, + "codeIataAirport": "DAZ", + "codeIataCity": "DAZ", + "codeIcaoAirport": "OADZ", + "codeIso2Country": "AF", + "geonameId": "7730737", + "latitudeAirport": 38.466667, + "longitudeAirport": 70.88333, + "nameAirport": "Darwaz", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "5", + "airportId": 1705, + "codeIataAirport": "DBA", + "codeIataCity": "DBA", + "codeIcaoAirport": "OPDB", + "codeIso2Country": "PK", + "geonameId": "7668395", + "latitudeAirport": 28.883333, + "longitudeAirport": 64.416664, + "nameAirport": "Dalbandin", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "2", + "airportId": 1706, + "codeIataAirport": "DBB", + "codeIataCity": "DBB", + "codeIcaoAirport": "HEAL", + "codeIso2Country": "EG", + "geonameId": "7175913", + "latitudeAirport": 30.924444, + "longitudeAirport": 28.46139, + "nameAirport": "Alalamain International", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "5.30", + "airportId": 1707, + "codeIataAirport": "DBD", + "codeIataCity": "DBD", + "codeIcaoAirport": "VEDB", + "codeIso2Country": "IN", + "geonameId": "7730214", + "latitudeAirport": 23.783333, + "longitudeAirport": 86.45, + "nameAirport": "Dhanbad", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "3", + "airportId": 1708, + "codeIataAirport": "DBM", + "codeIataCity": "DBM", + "codeIcaoAirport": "HADM", + "codeIso2Country": "ET", + "geonameId": "6297265", + "latitudeAirport": 10.319444, + "longitudeAirport": 37.743057, + "nameAirport": "Debra Marcos", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-5", + "airportId": 1709, + "codeIataAirport": "DBN", + "codeIataCity": "DBN", + "codeIcaoAirport": "KDBN", + "codeIso2Country": "US", + "geonameId": "4228567", + "latitudeAirport": 32.561943, + "longitudeAirport": -82.986115, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 1710, + "codeIataAirport": "DBO", + "codeIataCity": "DBO", + "codeIcaoAirport": "YSDU", + "codeIso2Country": "AU", + "geonameId": "6301346", + "latitudeAirport": -32.218822, + "longitudeAirport": 148.56956, + "nameAirport": "Dubbo", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "airportId": 1711, + "codeIataAirport": "DBP", + "codeIataCity": "DBP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298913", + "latitudeAirport": -6.283333, + "longitudeAirport": 141.9, + "nameAirport": "Debepare", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 1712, + "codeIataAirport": "DBQ", + "codeIataCity": "DBQ", + "codeIcaoAirport": "KDBQ", + "codeIso2Country": "US", + "geonameId": "4854556", + "latitudeAirport": 42.41, + "longitudeAirport": -90.71083, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 1713, + "codeIataAirport": "DBS", + "codeIataCity": "DBS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5591646", + "latitudeAirport": 44.166668, + "longitudeAirport": -112.23333, + "nameAirport": "Dubois", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Boise" + }, + { + "GMT": "3", + "airportId": 1714, + "codeIataAirport": "DBT", + "codeIataCity": "DBT", + "codeIcaoAirport": "HADT", + "codeIso2Country": "ET", + "geonameId": "7730585", + "latitudeAirport": 11.968056, + "longitudeAirport": 38.025276, + "nameAirport": "Debra Tabor", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "5.30", + "airportId": 1715, + "codeIataAirport": "DBU", + "codeIataCity": "DBU", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "0", + "latitudeAirport": 7.86, + "longitudeAirport": 80.651665, + "nameAirport": "Dambulu Oya Tank", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "1", + "airportId": 1716, + "codeIataAirport": "DBV", + "codeIataCity": "DBV", + "codeIcaoAirport": "LDDU", + "codeIso2Country": "HR", + "geonameId": "6299314", + "latitudeAirport": 42.56072, + "longitudeAirport": 18.260616, + "nameAirport": "Dubrovnik", + "nameCountry": "Croatia", + "phone": "", + "timezone": "Europe/Zagreb" + }, + { + "GMT": "10", + "airportId": 1717, + "codeIataAirport": "DBY", + "codeIataCity": "DBY", + "codeIcaoAirport": "YDAY", + "codeIso2Country": "AU", + "geonameId": "7730969", + "latitudeAirport": -27.15, + "longitudeAirport": 151.26666, + "nameAirport": "Dalby", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 1718, + "codeIataAirport": "DCA", + "codeIataCity": "WAS", + "codeIcaoAirport": "KDCA", + "codeIso2Country": "US", + "geonameId": "4782828", + "latitudeAirport": 38.853436, + "longitudeAirport": -77.04346, + "nameAirport": "Ronald Reagan Washington National Airport", + "nameCountry": "United States", + "phone": "703-417-8000", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "airportId": 1719, + "codeIataAirport": "DCF", + "codeIataCity": "DOM", + "codeIcaoAirport": "TDCF", + "codeIso2Country": "DM", + "geonameId": "3575879", + "latitudeAirport": 15.5, + "longitudeAirport": -61.333332, + "nameAirport": "Cane Field", + "nameCountry": "Dominica", + "phone": "", + "timezone": "America/Dominica" + }, + { + "GMT": "4", + "airportId": 1720, + "codeIataAirport": "DCG", + "codeIataCity": "DXB", + "codeIcaoAirport": "", + "codeIso2Country": "AE", + "geonameId": "0", + "latitudeAirport": 25.2644444, + "longitudeAirport": 55.3116667, + "nameAirport": "Dubai Creek SPB", + "nameCountry": "United Arab Emirates", + "phone": "", + "timezone": "Asia/Dubai" + }, + { + "GMT": "1", + "airportId": 1721, + "codeIataAirport": "DCI", + "codeIataCity": "DCI", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "2524865", + "latitudeAirport": 39.35, + "longitudeAirport": 8.966667, + "nameAirport": "Rafsu Decimomannu", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-9", + "airportId": 1722, + "codeIataAirport": "DCK", + "codeIataCity": "DCK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 66.95, + "longitudeAirport": -156.9, + "nameAirport": "Dahl Creek Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 1723, + "codeIataAirport": "DCM", + "codeIataCity": "DCM", + "codeIcaoAirport": "LFCK", + "codeIso2Country": "FR", + "geonameId": "6694539", + "latitudeAirport": 43.555832, + "longitudeAirport": 2.284167, + "nameAirport": "Mazamet", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "8", + "airportId": 1724, + "codeIataAirport": "DCN", + "codeIataCity": "DRB", + "codeIcaoAirport": "YCIN", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -17.573702, + "longitudeAirport": 123.82323, + "nameAirport": "RAAF Curtin", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-8", + "airportId": 1725, + "codeIataAirport": "DCP", + "codeIataCity": "DCP", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Cabin Plant Heliport", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 1726, + "codeIataAirport": "DCT", + "codeIataCity": "DCT", + "codeIcaoAirport": "MYRD", + "codeIso2Country": "BS", + "geonameId": "7668363", + "latitudeAirport": 22.25, + "longitudeAirport": -75.75, + "nameAirport": "Duncan Town", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-6", + "airportId": 1727, + "codeIataAirport": "DCU", + "codeIataCity": "DCU", + "codeIcaoAirport": "KDCU", + "codeIso2Country": "US", + "geonameId": "4085120", + "latitudeAirport": 34.6, + "longitudeAirport": -86.98333, + "nameAirport": "Pyor", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 1728, + "codeIataAirport": "DCY", + "codeIataCity": "DCY", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "8410844", + "latitudeAirport": 38.70436, + "longitudeAirport": -87.24733, + "nameAirport": "Yading", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 1729, + "codeIataAirport": "DDB", + "codeIataCity": "XHO", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "CZ Bus Station", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 1730, + "codeIataAirport": "DDC", + "codeIataCity": "DDC", + "codeIcaoAirport": "KDDC", + "codeIso2Country": "US", + "geonameId": "5445298", + "latitudeAirport": 37.761665, + "longitudeAirport": -99.965, + "nameAirport": "Dodge City Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 1731, + "codeIataAirport": "DDG", + "codeIataCity": "DDG", + "codeIcaoAirport": "ZYDD", + "codeIso2Country": "CN", + "geonameId": "7730307", + "latitudeAirport": 40.032368, + "longitudeAirport": 124.28081, + "nameAirport": "Dandong", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "airportId": 1732, + "codeIataAirport": "DDI", + "codeIataCity": "DDI", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -20.266666, + "longitudeAirport": 148.81667, + "nameAirport": "Daydream Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 1733, + "codeIataAirport": "DDM", + "codeIataCity": "DDM", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298918", + "latitudeAirport": -8.483333, + "longitudeAirport": 145.16667, + "nameAirport": "Dodoima", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 1734, + "codeIataAirport": "DDN", + "codeIataCity": "DDN", + "codeIcaoAirport": "YDLT", + "codeIso2Country": "AU", + "geonameId": "7730970", + "latitudeAirport": -16.916668, + "longitudeAirport": 141.3, + "nameAirport": "Delta Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5", + "airportId": 1735, + "codeIataAirport": "DDU", + "codeIataCity": "DDU", + "codeIcaoAirport": "OP17", + "codeIso2Country": "PK", + "geonameId": "7730748", + "latitudeAirport": 26.75, + "longitudeAirport": 67.75, + "nameAirport": "Dadu", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "5", + "airportId": 1736, + "codeIataAirport": "DEA", + "codeIataCity": "DEA", + "codeIcaoAirport": "OPDG", + "codeIso2Country": "PK", + "geonameId": "7730142", + "latitudeAirport": 29.960556, + "longitudeAirport": 70.485275, + "nameAirport": "Dera Ghazi Khan", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "1", + "airportId": 1737, + "codeIataAirport": "DEB", + "codeIataCity": "DEB", + "codeIcaoAirport": "LHDC", + "codeIso2Country": "HU", + "geonameId": "6299520", + "latitudeAirport": 47.55, + "longitudeAirport": 21.7, + "nameAirport": "Debrecen", + "nameCountry": "Hungary", + "phone": "", + "timezone": "Europe/Budapest" + }, + { + "GMT": "-6", + "airportId": 1738, + "codeIataAirport": "DEC", + "codeIataCity": "DEC", + "codeIcaoAirport": "KDEC", + "codeIso2Country": "US", + "geonameId": "4236896", + "latitudeAirport": 39.834167, + "longitudeAirport": -88.868614, + "nameAirport": "Decatur Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5.30", + "airportId": 1739, + "codeIataAirport": "DED", + "codeIataCity": "DED", + "codeIcaoAirport": "VIDN", + "codeIso2Country": "IN", + "geonameId": "7668603", + "latitudeAirport": 30.316668, + "longitudeAirport": 78.03333, + "nameAirport": "Dehra Dun", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "11", + "airportId": 1740, + "codeIataAirport": "DEE", + "codeIataCity": "DEE", + "codeIcaoAirport": "UHSM", + "codeIso2Country": "RU", + "geonameId": "8260764", + "latitudeAirport": 43.9584, + "longitudeAirport": 145.683, + "nameAirport": "Mendeleyevo", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Sakhalin" + }, + { + "GMT": "3.30", + "airportId": 1741, + "codeIataAirport": "DEF", + "codeIataCity": "DEF", + "codeIcaoAirport": "OIAD", + "codeIso2Country": "IR", + "geonameId": "36617", + "latitudeAirport": 32.438828, + "longitudeAirport": 48.38468, + "nameAirport": "Dezful", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-6", + "airportId": 1742, + "codeIataAirport": "DEH", + "codeIataCity": "DEH", + "codeIcaoAirport": "KDEH", + "codeIso2Country": "US", + "geonameId": "4853618", + "latitudeAirport": 43.3, + "longitudeAirport": -91.8, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "4", + "airportId": 1743, + "codeIataAirport": "DEI", + "codeIataCity": "DEI", + "codeIcaoAirport": "FSSD", + "codeIso2Country": "SC", + "geonameId": "6354925", + "latitudeAirport": -3.8, + "longitudeAirport": 55.666668, + "nameAirport": "Denis Island", + "nameCountry": "Seychelles", + "phone": "", + "timezone": "Indian/Mahe" + }, + { + "GMT": "5.30", + "airportId": 1744, + "codeIataAirport": "DEL", + "codeIataCity": "DEL", + "codeIcaoAirport": "VIDP", + "codeIso2Country": "IN", + "geonameId": "6301872", + "latitudeAirport": 28.556555, + "longitudeAirport": 77.10079, + "nameAirport": "Indira Gandhi International", + "nameCountry": "India", + "phone": "-33793", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "3", + "airportId": 1745, + "codeIataAirport": "DEM", + "codeIataCity": "DEM", + "codeIcaoAirport": "HADD", + "codeIso2Country": "ET", + "geonameId": "7730584", + "latitudeAirport": 8.571111, + "longitudeAirport": 34.88333, + "nameAirport": "Dembidollo", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-7", + "airportId": 1746, + "codeIataAirport": "DEN", + "codeIataCity": "DEN", + "codeIcaoAirport": "KDEN", + "codeIso2Country": "US", + "geonameId": "5419401", + "latitudeAirport": 39.84939, + "longitudeAirport": -104.672844, + "nameAirport": "Denver International", + "nameCountry": "United States", + "phone": "303-342-2000", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 1747, + "codeIataAirport": "DEO", + "codeIataCity": "DEO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.3, + "longitudeAirport": -83.166664, + "nameAirport": "Hyatt Regency Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "5.30", + "airportId": 1748, + "codeIataAirport": "DEP", + "codeIataCity": "DEP", + "codeIcaoAirport": "VEDZ", + "codeIso2Country": "IN", + "geonameId": "7668589", + "latitudeAirport": 27.35, + "longitudeAirport": 94.0, + "nameAirport": "Deparizo", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "airportId": 1749, + "codeIataAirport": "DER", + "codeIataCity": "DER", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2098218", + "latitudeAirport": -6.1, + "longitudeAirport": 147.08333, + "nameAirport": "Derim", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "4", + "airportId": 1750, + "codeIataAirport": "DES", + "codeIataCity": "DES", + "codeIcaoAirport": "FSDR", + "codeIso2Country": "SC", + "geonameId": "6354926", + "latitudeAirport": -5.683333, + "longitudeAirport": 53.683334, + "nameAirport": "Desroches", + "nameCountry": "Seychelles", + "phone": "", + "timezone": "Indian/Mahe" + }, + { + "GMT": "-5", + "airportId": 1751, + "codeIataAirport": "DET", + "codeIataCity": "DTT", + "codeIcaoAirport": "KDET", + "codeIso2Country": "US", + "geonameId": "4990733", + "latitudeAirport": 42.416668, + "longitudeAirport": -83.01667, + "nameAirport": "Detroit City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "8", + "airportId": 1752, + "codeIataAirport": "DEY", + "codeIataCity": "DEY", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Deyang Bus Station", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "airportId": 1753, + "codeIataAirport": "DEZ", + "codeIataCity": "DEZ", + "codeIcaoAirport": "OSDZ", + "codeIso2Country": "SY", + "geonameId": "6300129", + "latitudeAirport": 35.28755, + "longitudeAirport": 40.186806, + "nameAirport": "Al Jafrah", + "nameCountry": "Syria", + "phone": "", + "timezone": "Asia/Damascus" + }, + { + "GMT": "-5", + "airportId": 1754, + "codeIataAirport": "DFI", + "codeIataCity": "DFI", + "codeIcaoAirport": "KDFI", + "codeIso2Country": "US", + "geonameId": "5151876", + "latitudeAirport": 41.283333, + "longitudeAirport": -84.36667, + "nameAirport": "Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 1755, + "codeIataAirport": "DFP", + "codeIataCity": "DFP", + "codeIcaoAirport": "YDDF", + "codeIso2Country": "AU", + "geonameId": "7730971", + "latitudeAirport": -16.0, + "longitudeAirport": 143.33333, + "nameAirport": "Drumduff", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "airportId": 1756, + "codeIataAirport": "DFW", + "codeIataCity": "DFW", + "codeIcaoAirport": "KDFW", + "codeIso2Country": "US", + "geonameId": "4684943", + "latitudeAirport": 32.89746, + "longitudeAirport": -97.036125, + "nameAirport": "Dallas/Fort Worth International", + "nameCountry": "United States", + "phone": "972-973-8888", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 1757, + "codeIataAirport": "DGA", + "codeIataCity": "DGA", + "codeIcaoAirport": "", + "codeIso2Country": "BZ", + "geonameId": "7730322", + "latitudeAirport": 17.183332, + "longitudeAirport": -88.566666, + "nameAirport": "Dangriga", + "nameCountry": "Belize", + "phone": "", + "timezone": "America/Belize" + }, + { + "GMT": "-9", + "airportId": 1758, + "codeIataAirport": "DGB", + "codeIataCity": "DGB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299110", + "latitudeAirport": 58.083332, + "longitudeAirport": -152.75, + "nameAirport": "Danger Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 1759, + "codeIataAirport": "DGD", + "codeIataCity": "DGD", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298742", + "latitudeAirport": -27.818056, + "longitudeAirport": 117.30139, + "nameAirport": "Dalgaranga", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "10", + "airportId": 1760, + "codeIataAirport": "DGE", + "codeIataCity": "DGE", + "codeIcaoAirport": "YMDG", + "codeIso2Country": "AU", + "geonameId": "7668740", + "latitudeAirport": -32.566666, + "longitudeAirport": 149.61667, + "nameAirport": "Mudgee", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-8", + "airportId": 1761, + "codeIataAirport": "DGF", + "codeIataCity": "DGF", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 50.166668, + "longitudeAirport": -120.183334, + "nameAirport": "Douglas Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "2", + "airportId": 1762, + "codeIataAirport": "DGK", + "codeIataCity": "DGK", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "8299134", + "latitudeAirport": -22.1772, + "longitudeAirport": 35.4233, + "nameAirport": "Dugong", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-7", + "airportId": 1763, + "codeIataAirport": "DGL", + "codeIataCity": "DUG", + "codeIcaoAirport": "KDGL", + "codeIso2Country": "US", + "geonameId": "5293089", + "latitudeAirport": 31.35, + "longitudeAirport": -109.566666, + "nameAirport": "Douglas Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "5.30", + "airportId": 1764, + "codeIataAirport": "DGM", + "codeIataCity": "DGM", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "0", + "latitudeAirport": 23.03, + "longitudeAirport": 113.74, + "nameAirport": "Dongguan", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "-5", + "airportId": 1765, + "codeIataAirport": "DGN", + "codeIataCity": "DGN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.2, + "longitudeAirport": -88.683334, + "nameAirport": "NAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 1766, + "codeIataAirport": "DGO", + "codeIataCity": "DGO", + "codeIcaoAirport": "MMDO", + "codeIso2Country": "MX", + "geonameId": "6299841", + "latitudeAirport": 24.125, + "longitudeAirport": -104.525, + "nameAirport": "Guadalupe Victoria", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Monterrey" + }, + { + "GMT": "2", + "airportId": 1767, + "codeIataAirport": "DGP", + "codeIataCity": "DGP", + "codeIcaoAirport": "EVDA", + "codeIso2Country": "LV", + "geonameId": "460413", + "latitudeAirport": 55.88333, + "longitudeAirport": 26.533333, + "nameAirport": "Daugavpils", + "nameCountry": "Latvia", + "phone": "", + "timezone": "Europe/Riga" + }, + { + "GMT": "12", + "airportId": 1768, + "codeIataAirport": "DGR", + "codeIataCity": "DGR", + "codeIcaoAirport": "NZDA", + "codeIso2Country": "NZ", + "geonameId": "7668384", + "latitudeAirport": -35.933334, + "longitudeAirport": 173.88333, + "nameAirport": "Dargaville", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "8", + "airportId": 1769, + "codeIataAirport": "DGT", + "codeIataCity": "DGT", + "codeIcaoAirport": "RPVD", + "codeIso2Country": "PH", + "geonameId": "6300493", + "latitudeAirport": 9.332543, + "longitudeAirport": 123.29601, + "nameAirport": "Dumaguete", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "0", + "airportId": 1770, + "codeIataAirport": "DGU", + "codeIataCity": "DGU", + "codeIcaoAirport": "DFOD", + "codeIso2Country": "BF", + "geonameId": "6296410", + "latitudeAirport": 12.466667, + "longitudeAirport": -3.483333, + "nameAirport": "Dedougou", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-7", + "airportId": 1771, + "codeIataAirport": "DGW", + "codeIataCity": "DGW", + "codeIcaoAirport": "KDGW", + "codeIso2Country": "US", + "geonameId": "5823516", + "latitudeAirport": 42.75, + "longitudeAirport": -105.4, + "nameAirport": "Converse County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "3", + "airportId": 1772, + "codeIataAirport": "DHA", + "codeIataCity": "DHA", + "codeIcaoAirport": "OEDR", + "codeIso2Country": "SA", + "geonameId": "392652", + "latitudeAirport": 26.39286, + "longitudeAirport": 50.17475, + "nameAirport": "King Abdulaziz AB", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-8", + "airportId": 1773, + "codeIataAirport": "DHB", + "codeIataCity": "DHB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "7910455", + "latitudeAirport": 48.618397, + "longitudeAirport": -123.00596, + "nameAirport": "Deer Harbor", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 1774, + "codeIataAirport": "DHD", + "codeIataCity": "DHD", + "codeIcaoAirport": "YDRH", + "codeIso2Country": "AU", + "geonameId": "7730972", + "latitudeAirport": -26.1, + "longitudeAirport": 149.08333, + "nameAirport": "Durham Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "4", + "airportId": 1775, + "codeIataAirport": "DHF", + "codeIataCity": "AUH", + "codeIcaoAirport": "", + "codeIso2Country": "AE", + "geonameId": "0", + "latitudeAirport": 24.433332, + "longitudeAirport": 54.65, + "nameAirport": "Al Dhafra Military Airport", + "nameCountry": "United Arab Emirates", + "phone": "", + "timezone": "Asia/Dubai" + }, + { + "GMT": "5.45", + "airportId": 1776, + "codeIataAirport": "DHI", + "codeIataCity": "DHI", + "codeIcaoAirport": "VNDH", + "codeIso2Country": "NP", + "geonameId": "7668618", + "latitudeAirport": 28.683332, + "longitudeAirport": 80.63333, + "nameAirport": "Dhangarhi", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "3", + "airportId": 1777, + "codeIataAirport": "DHL", + "codeIataCity": "DHL", + "codeIcaoAirport": "", + "codeIso2Country": "YE", + "geonameId": "8298720", + "latitudeAirport": 13.7375, + "longitudeAirport": 44.729168, + "nameAirport": "Dhala", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "5.30", + "airportId": 1778, + "codeIataAirport": "DHM", + "codeIataCity": "DHM", + "codeIcaoAirport": "VIGG", + "codeIso2Country": "IN", + "geonameId": "6453418", + "latitudeAirport": 32.3, + "longitudeAirport": 76.26667, + "nameAirport": "Gaggal Airport", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-6", + "airportId": 1779, + "codeIataAirport": "DHN", + "codeIataCity": "DHN", + "codeIcaoAirport": "KDHN", + "codeIso2Country": "US", + "geonameId": "4059103", + "latitudeAirport": 31.32, + "longitudeAirport": -85.44833, + "nameAirport": "Dothan Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 1780, + "codeIataAirport": "DHO", + "codeIataCity": "DHO", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Horn River", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "airportId": 1781, + "codeIataAirport": "DHR", + "codeIataCity": "DHR", + "codeIcaoAirport": "EHKD", + "codeIso2Country": "NL", + "geonameId": "6296687", + "latitudeAirport": 52.95, + "longitudeAirport": 4.75, + "nameAirport": "De Kooy/Den Helder Airport", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "-6", + "airportId": 1782, + "codeIataAirport": "DHT", + "codeIataCity": "DHT", + "codeIcaoAirport": "KDHT", + "codeIso2Country": "US", + "geonameId": "5519866", + "latitudeAirport": 36.066666, + "longitudeAirport": -102.51667, + "nameAirport": "Dalhart", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5.30", + "airportId": 1783, + "codeIataAirport": "DIB", + "codeIataCity": "DIB", + "codeIcaoAirport": "VEMN", + "codeIso2Country": "IN", + "geonameId": "6301077", + "latitudeAirport": 27.482908, + "longitudeAirport": 95.021065, + "nameAirport": "Dibrugarh", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "3", + "airportId": 1784, + "codeIataAirport": "DIE", + "codeIataCity": "DIE", + "codeIcaoAirport": "FMNA", + "codeIso2Country": "MG", + "geonameId": "1075634", + "latitudeAirport": -12.346111, + "longitudeAirport": 49.2925, + "nameAirport": "Antsiranana/Arrachart", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "8", + "airportId": 1785, + "codeIataAirport": "DIG", + "codeIataCity": "DIG", + "codeIcaoAirport": "ZPDQ", + "codeIso2Country": "CN", + "geonameId": "7730292", + "latitudeAirport": 27.789722, + "longitudeAirport": 99.67778, + "nameAirport": "Diqing", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 1786, + "codeIataAirport": "DIJ", + "codeIataCity": "DIJ", + "codeIcaoAirport": "LFSD", + "codeIso2Country": "FR", + "geonameId": "6299468", + "latitudeAirport": 47.270832, + "longitudeAirport": 5.088889, + "nameAirport": "Dijon", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-7", + "airportId": 1787, + "codeIataAirport": "DIK", + "codeIataCity": "DIK", + "codeIcaoAirport": "KDIK", + "codeIso2Country": "US", + "geonameId": "5688789", + "latitudeAirport": 46.833332, + "longitudeAirport": -102.9, + "nameAirport": "Dickinson", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Boise" + }, + { + "GMT": "9", + "airportId": 1788, + "codeIataAirport": "DIL", + "codeIataCity": "DIL", + "codeIcaoAirport": "WPDL", + "codeIso2Country": "TL", + "geonameId": "1942396", + "latitudeAirport": -8.549616, + "longitudeAirport": 125.525, + "nameAirport": "Presidente Nicolau Lobato International", + "nameCountry": "East Timor", + "phone": "", + "timezone": "Asia/Dili" + }, + { + "GMT": "0", + "airportId": 1789, + "codeIataAirport": "DIM", + "codeIataCity": "DIM", + "codeIcaoAirport": "DIDK", + "codeIso2Country": "CI", + "geonameId": "6296436", + "latitudeAirport": 6.75, + "longitudeAirport": -4.766667, + "nameAirport": "Dimbokro", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "7", + "airportId": 1790, + "codeIataAirport": "DIN", + "codeIataCity": "DIN", + "codeIcaoAirport": "VVDB", + "codeIso2Country": "VN", + "geonameId": "6453427", + "latitudeAirport": 21.383333, + "longitudeAirport": 103.0, + "nameAirport": "Dien Bien", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-9", + "airportId": 1791, + "codeIataAirport": "DIO", + "codeIataCity": "DIO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8261074", + "latitudeAirport": 65.75, + "longitudeAirport": -168.95, + "nameAirport": "Diomede Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "0", + "airportId": 1792, + "codeIataAirport": "DIP", + "codeIataCity": "DIP", + "codeIcaoAirport": "DFED", + "codeIso2Country": "BF", + "geonameId": "7668176", + "latitudeAirport": 12.033333, + "longitudeAirport": 2.033333, + "nameAirport": "Diapaga", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-3", + "airportId": 1793, + "codeIataAirport": "DIQ", + "codeIataCity": "DIQ", + "codeIcaoAirport": "SNDV", + "codeIso2Country": "BR", + "geonameId": "7730973", + "latitudeAirport": -20.181389, + "longitudeAirport": -44.869446, + "nameAirport": "Divinopolis", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "3", + "airportId": 1794, + "codeIataAirport": "DIR", + "codeIataCity": "DIR", + "codeIcaoAirport": "HADR", + "codeIso2Country": "ET", + "geonameId": "6297266", + "latitudeAirport": 9.61338, + "longitudeAirport": 41.857994, + "nameAirport": "Aba Tenna D Yilma", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "1", + "airportId": 1795, + "codeIataAirport": "DIS", + "codeIataCity": "DIS", + "codeIcaoAirport": "FCPL", + "codeIso2Country": "CG", + "geonameId": "2258261", + "latitudeAirport": -4.205556, + "longitudeAirport": 12.661389, + "nameAirport": "Loubomo", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "5.30", + "airportId": 1796, + "codeIataAirport": "DIU", + "codeIataCity": "DIU", + "codeIcaoAirport": "VA1P", + "codeIso2Country": "IN", + "geonameId": "7668568", + "latitudeAirport": 20.716667, + "longitudeAirport": 70.916664, + "nameAirport": "Diu", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "0", + "airportId": 1797, + "codeIataAirport": "DIV", + "codeIataCity": "DIV", + "codeIcaoAirport": "DIDV", + "codeIso2Country": "CI", + "geonameId": "2289887", + "latitudeAirport": 5.8, + "longitudeAirport": -5.25, + "nameAirport": "Divo", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "5.30", + "airportId": 1798, + "codeIataAirport": "DIW", + "codeIataCity": "DIW", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "0", + "latitudeAirport": 5.990751, + "longitudeAirport": 80.73323, + "nameAirport": "Mawella Lagoon", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "3", + "airportId": 1799, + "codeIataAirport": "DIY", + "codeIataCity": "DIY", + "codeIcaoAirport": "LTCC", + "codeIso2Country": "TR", + "geonameId": "6299761", + "latitudeAirport": 37.903873, + "longitudeAirport": 40.20458, + "nameAirport": "Diyarbakir", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "1", + "airportId": 1800, + "codeIataAirport": "DJA", + "codeIataCity": "DJA", + "codeIcaoAirport": "DBBD", + "codeIso2Country": "BJ", + "geonameId": "8298719", + "latitudeAirport": 9.7, + "longitudeAirport": 1.666667, + "nameAirport": "Djougou", + "nameCountry": "Benin", + "phone": "", + "timezone": "Africa/Porto-Novo" + }, + { + "GMT": "7", + "airportId": 1801, + "codeIataAirport": "DJB", + "codeIataCity": "DJB", + "codeIcaoAirport": "WIPA", + "codeIso2Country": "ID", + "geonameId": "6301244", + "latitudeAirport": -1.630432, + "longitudeAirport": 103.63936, + "nameAirport": "Sultan Taha Syarifudn", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "1", + "airportId": 1802, + "codeIataAirport": "DJE", + "codeIataCity": "DJE", + "codeIcaoAirport": "DTTJ", + "codeIso2Country": "TN", + "geonameId": "7911272", + "latitudeAirport": 33.87118, + "longitudeAirport": 10.775145, + "nameAirport": "Djerba-Zarzis", + "nameCountry": "Tunisia", + "phone": "", + "timezone": "Africa/Tunis" + }, + { + "GMT": "1", + "airportId": 1803, + "codeIataAirport": "DJG", + "codeIataCity": "DJG", + "codeIcaoAirport": "DAAJ", + "codeIso2Country": "DZ", + "geonameId": "6296364", + "latitudeAirport": 24.465279, + "longitudeAirport": 9.488889, + "nameAirport": "Inedbirenne", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "9", + "airportId": 1804, + "codeIataAirport": "DJJ", + "codeIataCity": "DJJ", + "codeIcaoAirport": "WAJJ", + "codeIso2Country": "ID", + "geonameId": "6301186", + "latitudeAirport": -2.569887, + "longitudeAirport": 140.51299, + "nameAirport": "Sentani", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "airportId": 1805, + "codeIataAirport": "DJM", + "codeIataCity": "DJM", + "codeIcaoAirport": "FCBD", + "codeIso2Country": "CG", + "geonameId": "6296956", + "latitudeAirport": -2.533333, + "longitudeAirport": 14.75, + "nameAirport": "Djambala", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-9", + "airportId": 1806, + "codeIataAirport": "DJN", + "codeIataCity": "DJN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5860525", + "latitudeAirport": 64.03333, + "longitudeAirport": -145.68333, + "nameAirport": "Delta Junction", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 1807, + "codeIataAirport": "DJO", + "codeIataCity": "DJO", + "codeIcaoAirport": "DIDL", + "codeIso2Country": "CI", + "geonameId": "6296437", + "latitudeAirport": 6.866944, + "longitudeAirport": -6.466667, + "nameAirport": "Daloa", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "0", + "airportId": 1808, + "codeIataAirport": "DJU", + "codeIataCity": "DJU", + "codeIcaoAirport": "BIDV", + "codeIso2Country": "IS", + "geonameId": "7730426", + "latitudeAirport": 64.650276, + "longitudeAirport": -14.268333, + "nameAirport": "Djupivogur", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "1", + "airportId": 1809, + "codeIataAirport": "DKA", + "codeIataCity": "DKA", + "codeIcaoAirport": "", + "codeIso2Country": "NG", + "geonameId": "8298806", + "latitudeAirport": 13.003712, + "longitudeAirport": 7.660803, + "nameAirport": "Katsina", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "10", + "airportId": 1810, + "codeIataAirport": "DKI", + "codeIataCity": "DKI", + "codeIcaoAirport": "YDKI", + "codeIso2Country": "AU", + "geonameId": "6354932", + "latitudeAirport": -17.941668, + "longitudeAirport": 146.13667, + "nameAirport": "Dunk Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 1811, + "codeIataAirport": "DKK", + "codeIataCity": "DKK", + "codeIcaoAirport": "KDKK", + "codeIso2Country": "US", + "geonameId": "5115495", + "latitudeAirport": 42.483334, + "longitudeAirport": -79.333336, + "nameAirport": "Dunkirk", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "airportId": 1812, + "codeIataAirport": "DKL", + "codeIataCity": "DKL", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Kiwigana Lodge", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "0", + "airportId": 1813, + "codeIataAirport": "DKR", + "codeIataCity": "DKR", + "codeIcaoAirport": "GOOY", + "codeIso2Country": "SN", + "geonameId": "2595702", + "latitudeAirport": 14.744975, + "longitudeAirport": -17.490194, + "nameAirport": "Dakar-Yoff-Léopold Sédar Senghor International", + "nameCountry": "Senegal", + "phone": "", + "timezone": "Africa/Dakar" + }, + { + "GMT": "7", + "airportId": 1814, + "codeIataAirport": "DKS", + "codeIataCity": "DKS", + "codeIcaoAirport": "UODD", + "codeIso2Country": "RU", + "geonameId": "7668527", + "latitudeAirport": 73.51667, + "longitudeAirport": 80.36667, + "nameAirport": "Dikson", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "9.30", + "airportId": 1815, + "codeIataAirport": "DKV", + "codeIataCity": "DKV", + "codeIcaoAirport": "YDVR", + "codeIso2Country": "AU", + "geonameId": "7730975", + "latitudeAirport": -24.866667, + "longitudeAirport": 129.08333, + "nameAirport": "Docker River", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "1", + "airportId": 1816, + "codeIataAirport": "DLA", + "codeIataCity": "DLA", + "codeIcaoAirport": "FKKD", + "codeIso2Country": "CM", + "geonameId": "6296998", + "latitudeAirport": 4.01346, + "longitudeAirport": 9.717018, + "nameAirport": "Douala", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "10", + "airportId": 1817, + "codeIataAirport": "DLB", + "codeIataCity": "DLB", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Dalbertis", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 1818, + "codeIataAirport": "DLC", + "codeIataCity": "DLC", + "codeIcaoAirport": "ZYTL", + "codeIso2Country": "CN", + "geonameId": "6301401", + "latitudeAirport": 38.96102, + "longitudeAirport": 121.53999, + "nameAirport": "Dalian", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 1819, + "codeIataAirport": "DLE", + "codeIataCity": "DLE", + "codeIcaoAirport": "LFGJ", + "codeIso2Country": "FR", + "geonameId": "6299388", + "latitudeAirport": 47.05, + "longitudeAirport": 5.433333, + "nameAirport": "Tavaux", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "airportId": 1820, + "codeIataAirport": "DLF", + "codeIataCity": "DRT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 29.366667, + "longitudeAirport": -100.9, + "nameAirport": "Laughlin AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 1821, + "codeIataAirport": "DLG", + "codeIataCity": "DLG", + "codeIcaoAirport": "PADL", + "codeIso2Country": "US", + "geonameId": "5860698", + "latitudeAirport": 59.04246, + "longitudeAirport": -158.51472, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 1822, + "codeIataAirport": "DLH", + "codeIataCity": "DLH", + "codeIcaoAirport": "KDLH", + "codeIso2Country": "US", + "geonameId": "5024726", + "latitudeAirport": 46.838974, + "longitudeAirport": -92.18019, + "nameAirport": "Duluth International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "airportId": 1823, + "codeIataAirport": "DLI", + "codeIataCity": "DLI", + "codeIcaoAirport": "VVDL", + "codeIso2Country": "VN", + "geonameId": "7668650", + "latitudeAirport": 11.749689, + "longitudeAirport": 108.37603, + "nameAirport": "Lienkhang", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "9.30", + "airportId": 1824, + "codeIataAirport": "DLK", + "codeIataCity": "DLK", + "codeIcaoAirport": "YDLK", + "codeIso2Country": "AU", + "geonameId": "7730976", + "latitudeAirport": -29.016666, + "longitudeAirport": 139.46666, + "nameAirport": "Dulkaninna", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-5", + "airportId": 1825, + "codeIataAirport": "DLL", + "codeIataCity": "DLL", + "codeIcaoAirport": "KDLC", + "codeIso2Country": "US", + "geonameId": "4576658", + "latitudeAirport": 34.416668, + "longitudeAirport": -79.36667, + "nameAirport": "Dillon", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 1826, + "codeIataAirport": "DLM", + "codeIataCity": "DLM", + "codeIcaoAirport": "LTBS", + "codeIso2Country": "TR", + "geonameId": "6299756", + "latitudeAirport": 36.716667, + "longitudeAirport": 28.783333, + "nameAirport": "Dalaman", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-7", + "airportId": 1827, + "codeIataAirport": "DLN", + "codeIataCity": "DLN", + "codeIcaoAirport": "KDLN", + "codeIso2Country": "US", + "geonameId": "5648657", + "latitudeAirport": 45.216667, + "longitudeAirport": -112.63333, + "nameAirport": "Dillon", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "airportId": 1828, + "codeIataAirport": "DLO", + "codeIataCity": "DLO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8298821", + "latitudeAirport": 55.122223, + "longitudeAirport": -132.05, + "nameAirport": "Dolomi", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "-8", + "airportId": 1829, + "codeIataAirport": "DLS", + "codeIataCity": "DLS", + "codeIcaoAirport": "KDLS", + "codeIso2Country": "US", + "geonameId": "5813291", + "latitudeAirport": 45.6, + "longitudeAirport": -121.166664, + "nameAirport": "Columbia Gorge Regional/The Dalles Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 1830, + "codeIataAirport": "DLU", + "codeIataCity": "DLU", + "codeIcaoAirport": "ZPDL", + "codeIso2Country": "CN", + "geonameId": "7668800", + "latitudeAirport": 25.65135, + "longitudeAirport": 100.32316, + "nameAirport": "Dali", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9.30", + "airportId": 1831, + "codeIataAirport": "DLV", + "codeIataCity": "DLV", + "codeIcaoAirport": "YDLV", + "codeIso2Country": "AU", + "geonameId": "7730977", + "latitudeAirport": -12.566667, + "longitudeAirport": 130.63333, + "nameAirport": "Delissaville", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "11", + "airportId": 1832, + "codeIataAirport": "DLY", + "codeIataCity": "DLY", + "codeIcaoAirport": "NVVD", + "codeIso2Country": "VU", + "geonameId": "7668379", + "latitudeAirport": -18.7, + "longitudeAirport": 169.15, + "nameAirport": "Dillons Bay", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "8", + "airportId": 1833, + "codeIataAirport": "DLZ", + "codeIataCity": "DLZ", + "codeIcaoAirport": "ZMDZ", + "codeIso2Country": "MN", + "geonameId": "7668797", + "latitudeAirport": 43.966667, + "longitudeAirport": 104.683334, + "nameAirport": "Dalanzadgad", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "-7", + "airportId": 1834, + "codeIataAirport": "DMA", + "codeIataCity": "TUS", + "codeIcaoAirport": "KDMA", + "codeIso2Country": "US", + "geonameId": "5551196", + "latitudeAirport": 32.166668, + "longitudeAirport": -110.88333, + "nameAirport": "Davis Monthan AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "6", + "airportId": 1835, + "codeIataAirport": "DMB", + "codeIataCity": "DMB", + "codeIcaoAirport": "UADD", + "codeIso2Country": "KZ", + "geonameId": "7668490", + "latitudeAirport": 42.9, + "longitudeAirport": 71.36667, + "nameAirport": "Zhambyl", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "10", + "airportId": 1836, + "codeIataAirport": "DMD", + "codeIataCity": "DMD", + "codeIcaoAirport": "YDMG", + "codeIso2Country": "AU", + "geonameId": "7730978", + "latitudeAirport": -17.939201, + "longitudeAirport": 138.8216, + "nameAirport": "Doomadgee", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "airportId": 1837, + "codeIataAirport": "DME", + "codeIataCity": "MOW", + "codeIcaoAirport": "UUDD", + "codeIso2Country": "RU", + "geonameId": "6301015", + "latitudeAirport": 55.414566, + "longitudeAirport": 37.899494, + "nameAirport": "Domodedovo", + "nameCountry": "Russia", + "phone": "495-933-6666", + "timezone": "Europe/Moscow" + }, + { + "GMT": "7", + "airportId": 1838, + "codeIataAirport": "DMK", + "codeIataCity": "BKK", + "codeIcaoAirport": "VTBD", + "codeIso2Country": "TH", + "geonameId": "1619461", + "latitudeAirport": 13.9125, + "longitudeAirport": 100.60667, + "nameAirport": "Don Muang", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "3", + "airportId": 1839, + "codeIataAirport": "DMM", + "codeIataCity": "DMM", + "codeIcaoAirport": "OEDF", + "codeIso2Country": "SA", + "geonameId": "6300012", + "latitudeAirport": 26.471111, + "longitudeAirport": 49.79778, + "nameAirport": "King Fahd International Airport", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-7", + "airportId": 1840, + "codeIataAirport": "DMN", + "codeIataCity": "DMN", + "codeIcaoAirport": "KDMN", + "codeIso2Country": "US", + "geonameId": "5464806", + "latitudeAirport": 32.266666, + "longitudeAirport": -107.75, + "nameAirport": "Deming", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 1841, + "codeIataAirport": "DMO", + "codeIataCity": "DMO", + "codeIcaoAirport": "KDMO", + "codeIso2Country": "US", + "geonameId": "4408000", + "latitudeAirport": 38.704166, + "longitudeAirport": -93.18056, + "nameAirport": "Sedalia", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 1842, + "codeIataAirport": "DMR", + "codeIataCity": "DMR", + "codeIcaoAirport": "", + "codeIso2Country": "YE", + "geonameId": "8261027", + "latitudeAirport": 14.533333, + "longitudeAirport": 44.433334, + "nameAirport": "Dhamar", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "3", + "airportId": 1843, + "codeIataAirport": "DMS", + "codeIataCity": "DMM", + "codeIcaoAirport": "", + "codeIso2Country": "SA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "SABTCO Bus Station", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-4", + "airportId": 1844, + "codeIataAirport": "DMT", + "codeIataCity": "DMT", + "codeIcaoAirport": "SWDM", + "codeIso2Country": "BR", + "geonameId": "7730979", + "latitudeAirport": -14.5, + "longitudeAirport": -56.5, + "nameAirport": "Diamantino", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "5.30", + "airportId": 1845, + "codeIataAirport": "DMU", + "codeIataCity": "DMU", + "codeIcaoAirport": "VEMR", + "codeIso2Country": "IN", + "geonameId": "7668593", + "latitudeAirport": 25.879816, + "longitudeAirport": 93.772865, + "nameAirport": "Dimapur", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "9", + "airportId": 1846, + "codeIataAirport": "DNA", + "codeIataCity": "OKA", + "codeIcaoAirport": "RODN", + "codeIso2Country": "JP", + "geonameId": "0", + "latitudeAirport": 26.35, + "longitudeAirport": 127.76667, + "nameAirport": "Kadena AB", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "10", + "airportId": 1847, + "codeIataAirport": "DNB", + "codeIataCity": "DNB", + "codeIcaoAirport": "YDBR", + "codeIso2Country": "AU", + "geonameId": "7730980", + "latitudeAirport": -16.010834, + "longitudeAirport": 142.39055, + "nameAirport": "Dunbar", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "0", + "airportId": 1848, + "codeIataAirport": "DND", + "codeIataCity": "DND", + "codeIcaoAirport": "EGPN", + "codeIso2Country": "GB", + "geonameId": "6296632", + "latitudeAirport": 56.45409, + "longitudeAirport": -3.014531, + "nameAirport": "Dundee", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 1849, + "codeIataAirport": "DNE", + "codeIataCity": "DFW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.75, + "longitudeAirport": -97.38333, + "nameAirport": "Dallas North Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 1850, + "codeIataAirport": "DNF", + "codeIataCity": "DNF", + "codeIcaoAirport": "", + "codeIso2Country": "LY", + "geonameId": "7730981", + "latitudeAirport": 32.55, + "longitudeAirport": 22.766666, + "nameAirport": "Martuba", + "nameCountry": "Libya", + "phone": "", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "8", + "airportId": 1851, + "codeIataAirport": "DNG", + "codeIataCity": "DNG", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298809", + "latitudeAirport": -15.383333, + "longitudeAirport": 126.3, + "nameAirport": "Doongan", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "airportId": 1852, + "codeIataAirport": "DNH", + "codeIataCity": "DNH", + "codeIcaoAirport": "ZLDH", + "codeIso2Country": "CN", + "geonameId": "7730287", + "latitudeAirport": 40.2, + "longitudeAirport": 94.683334, + "nameAirport": "Dunhuang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "airportId": 1853, + "codeIataAirport": "DNI", + "codeIataCity": "DNI", + "codeIcaoAirport": "", + "codeIso2Country": "SD", + "geonameId": "8260921", + "latitudeAirport": 14.393889, + "longitudeAirport": 33.543888, + "nameAirport": "Wad Medani", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "2", + "airportId": 1854, + "codeIataAirport": "DNK", + "codeIataCity": "DNK", + "codeIcaoAirport": "UKDD", + "codeIso2Country": "UA", + "geonameId": "6300954", + "latitudeAirport": 48.36874, + "longitudeAirport": 35.09446, + "nameAirport": "Dnepropetrovsk", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-5", + "airportId": 1855, + "codeIataAirport": "DNL", + "codeIataCity": "AGS", + "codeIcaoAirport": "KDNL", + "codeIso2Country": "US", + "geonameId": "4190665", + "latitudeAirport": 33.466667, + "longitudeAirport": -81.96667, + "nameAirport": "Daniel Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 1856, + "codeIataAirport": "DNM", + "codeIataCity": "DNM", + "codeIcaoAirport": "YSHK", + "codeIso2Country": "AU", + "geonameId": "7730274", + "latitudeAirport": -25.916668, + "longitudeAirport": 113.53333, + "nameAirport": "Denham", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "airportId": 1857, + "codeIataAirport": "DNN", + "codeIataCity": "DNN", + "codeIcaoAirport": "KDNN", + "codeIso2Country": "US", + "geonameId": "4190591", + "latitudeAirport": 34.766666, + "longitudeAirport": -84.96667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 1858, + "codeIataAirport": "DNO", + "codeIataCity": "DNO", + "codeIcaoAirport": "SWDN", + "codeIso2Country": "BR", + "geonameId": "7730982", + "latitudeAirport": -11.616667, + "longitudeAirport": -46.85, + "nameAirport": "Dianopolis", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Araguaina" + }, + { + "GMT": "5.45", + "airportId": 1859, + "codeIataAirport": "DNP", + "codeIataCity": "DNP", + "codeIcaoAirport": "VNDG", + "codeIso2Country": "NP", + "geonameId": "7668617", + "latitudeAirport": 28.116667, + "longitudeAirport": 82.316666, + "nameAirport": "Dang", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "10", + "airportId": 1860, + "codeIataAirport": "DNQ", + "codeIataCity": "DNQ", + "codeIcaoAirport": "YDLQ", + "codeIso2Country": "AU", + "geonameId": "2169068", + "latitudeAirport": -35.56, + "longitudeAirport": 144.95166, + "nameAirport": "Deniliquin", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "airportId": 1861, + "codeIataAirport": "DNR", + "codeIataCity": "DNR", + "codeIcaoAirport": "LFRD", + "codeIso2Country": "FR", + "geonameId": "6299453", + "latitudeAirport": 48.587776, + "longitudeAirport": -2.083611, + "nameAirport": "Pleurtuit", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "airportId": 1862, + "codeIataAirport": "DNS", + "codeIataCity": "DNS", + "codeIcaoAirport": "KDNS", + "codeIso2Country": "US", + "geonameId": "4853768", + "latitudeAirport": 42.016666, + "longitudeAirport": -95.35, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 1863, + "codeIataAirport": "DNT", + "codeIataCity": "SNA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.766666, + "longitudeAirport": -117.86667, + "nameAirport": "Downtown Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 1864, + "codeIataAirport": "DNU", + "codeIataCity": "DNU", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298847", + "latitudeAirport": -6.15, + "longitudeAirport": 146.66667, + "nameAirport": "Dinangat", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 1865, + "codeIataAirport": "DNV", + "codeIataCity": "DNV", + "codeIcaoAirport": "KDNV", + "codeIso2Country": "US", + "geonameId": "4914711", + "latitudeAirport": 40.197224, + "longitudeAirport": -87.59695, + "nameAirport": "Vermilion County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 1866, + "codeIataAirport": "DNX", + "codeIataCity": "DNX", + "codeIcaoAirport": "HSGG", + "codeIso2Country": "SD", + "geonameId": "7668300", + "latitudeAirport": 14.1, + "longitudeAirport": 33.066666, + "nameAirport": "Galegu", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "3", + "airportId": 1867, + "codeIataAirport": "DNZ", + "codeIataCity": "DNZ", + "codeIcaoAirport": "LTAY", + "codeIso2Country": "TR", + "geonameId": "6299741", + "latitudeAirport": 37.787224, + "longitudeAirport": 29.703333, + "nameAirport": "Cardak", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3", + "airportId": 1868, + "codeIataAirport": "DOA", + "codeIataCity": "DOA", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1065501", + "latitudeAirport": -14.366667, + "longitudeAirport": 49.5, + "nameAirport": "Doany", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "9", + "airportId": 1869, + "codeIataAirport": "DOB", + "codeIataCity": "DOB", + "codeIcaoAirport": "WAPD", + "codeIso2Country": "ID", + "geonameId": "7730983", + "latitudeAirport": -5.75, + "longitudeAirport": 134.0, + "nameAirport": "Dobo Airport", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "0", + "airportId": 1870, + "codeIataAirport": "DOC", + "codeIataCity": "DOC", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "7730984", + "latitudeAirport": 57.86667, + "longitudeAirport": -4.033333, + "nameAirport": "Dornoch", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "3", + "airportId": 1871, + "codeIataAirport": "DOD", + "codeIataCity": "DOD", + "codeIcaoAirport": "HTDO", + "codeIso2Country": "TZ", + "geonameId": "6297354", + "latitudeAirport": -6.166667, + "longitudeAirport": 35.75028, + "nameAirport": "Dodoma", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-3", + "airportId": 1872, + "codeIataAirport": "DOE", + "codeIataCity": "DOE", + "codeIcaoAirport": "", + "codeIso2Country": "SR", + "geonameId": "3384316", + "latitudeAirport": 4.016667, + "longitudeAirport": -55.483334, + "nameAirport": "Djoemoe", + "nameCountry": "Suriname", + "phone": "", + "timezone": "America/Paramaribo" + }, + { + "GMT": "-9", + "airportId": 1873, + "codeIataAirport": "DOF", + "codeIataCity": "DOF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5845812", + "latitudeAirport": 55.2125, + "longitudeAirport": -132.26666, + "nameAirport": "Dora Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "3", + "airportId": 1874, + "codeIataAirport": "DOG", + "codeIataCity": "DOG", + "codeIcaoAirport": "HSDN", + "codeIso2Country": "SD", + "geonameId": "6297336", + "latitudeAirport": 19.183332, + "longitudeAirport": 30.45, + "nameAirport": "Dongola", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "3", + "airportId": 1875, + "codeIataAirport": "DOH", + "codeIataCity": "DOH", + "codeIcaoAirport": "OTBD", + "codeIso2Country": "QA", + "geonameId": "6300133", + "latitudeAirport": 25.267569, + "longitudeAirport": 51.558067, + "nameAirport": "Doha International", + "nameCountry": "Qatar", + "phone": "+974 4465 666", + "timezone": "Asia/Qatar" + }, + { + "GMT": "10", + "airportId": 1876, + "codeIataAirport": "DOI", + "codeIataCity": "DOI", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298829", + "latitudeAirport": -10.716667, + "longitudeAirport": 150.71666, + "nameAirport": "Doini", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "airportId": 1877, + "codeIataAirport": "DOK", + "codeIataCity": "DOK", + "codeIcaoAirport": "UKCC", + "codeIso2Country": "UA", + "geonameId": "6300953", + "latitudeAirport": 48.083332, + "longitudeAirport": 37.75, + "nameAirport": "Donetsk International Airport", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "1", + "airportId": 1878, + "codeIataAirport": "DOL", + "codeIataCity": "DOL", + "codeIcaoAirport": "LFRG", + "codeIso2Country": "FR", + "geonameId": "3021668", + "latitudeAirport": 49.362778, + "longitudeAirport": 0.164167, + "nameAirport": "St Gatien", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-4", + "airportId": 1879, + "codeIataAirport": "DOM", + "codeIataCity": "DOM", + "codeIcaoAirport": "TDPD", + "codeIso2Country": "DM", + "geonameId": "6301865", + "latitudeAirport": 15.543056, + "longitudeAirport": -61.309166, + "nameAirport": "Melville Hall", + "nameCountry": "Dominica", + "phone": "", + "timezone": "America/Dominica" + }, + { + "GMT": "-6", + "airportId": 1880, + "codeIataAirport": "DON", + "codeIataCity": "DON", + "codeIcaoAirport": "", + "codeIso2Country": "GT", + "geonameId": "7730985", + "latitudeAirport": 17.633333, + "longitudeAirport": -89.666664, + "nameAirport": "Dos Lagunas", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "10", + "airportId": 1881, + "codeIataAirport": "DOO", + "codeIataCity": "DOO", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299062", + "latitudeAirport": -9.266667, + "longitudeAirport": 147.55, + "nameAirport": "Dorobisoro", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5.45", + "airportId": 1882, + "codeIataAirport": "DOP", + "codeIataCity": "DOP", + "codeIcaoAirport": "VNDP", + "codeIso2Country": "NP", + "geonameId": "7972352", + "latitudeAirport": 29.0, + "longitudeAirport": 82.816666, + "nameAirport": "Dolpa", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "0", + "airportId": 1883, + "codeIataAirport": "DOR", + "codeIataCity": "DOR", + "codeIcaoAirport": "DFEE", + "codeIso2Country": "BF", + "geonameId": "6296407", + "latitudeAirport": 14.033333, + "longitudeAirport": -0.033333, + "nameAirport": "Dori", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-4", + "airportId": 1884, + "codeIataAirport": "DOU", + "codeIataCity": "DOU", + "codeIcaoAirport": "SSDO", + "codeIso2Country": "BR", + "geonameId": "7730986", + "latitudeAirport": -22.202778, + "longitudeAirport": -54.925556, + "nameAirport": "Dourados", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Campo_Grande" + }, + { + "GMT": "-5", + "airportId": 1885, + "codeIataAirport": "DOV", + "codeIataCity": "DOV", + "codeIcaoAirport": "KDOV", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.128613, + "longitudeAirport": -75.464165, + "nameAirport": "Dover AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 1886, + "codeIataAirport": "DOX", + "codeIataCity": "DOX", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2072691", + "latitudeAirport": -29.25, + "longitudeAirport": 114.933334, + "nameAirport": "Dongara", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "airportId": 1887, + "codeIataAirport": "DOY", + "codeIataCity": "DOY", + "codeIcaoAirport": "ZSDY", + "codeIso2Country": "CN", + "geonameId": "7910226", + "latitudeAirport": 37.518333, + "longitudeAirport": 118.78778, + "nameAirport": "Dongying", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 1888, + "codeIataAirport": "DPA", + "codeIataCity": "CHI", + "codeIcaoAirport": "KDPA", + "codeIso2Country": "US", + "geonameId": "4890214", + "latitudeAirport": 41.914444, + "longitudeAirport": -88.24639, + "nameAirport": "Dupage County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 1889, + "codeIataAirport": "DPE", + "codeIataCity": "DPE", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "3021411", + "latitudeAirport": 49.961388, + "longitudeAirport": 1.241111, + "nameAirport": "Dieppe", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-7", + "airportId": 1890, + "codeIataAirport": "DPG", + "codeIataCity": "DPG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.233334, + "longitudeAirport": -112.75, + "nameAirport": "Michael AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "airportId": 1891, + "codeIataAirport": "DPL", + "codeIataCity": "DPL", + "codeIcaoAirport": "RPMG", + "codeIso2Country": "PH", + "geonameId": "7910165", + "latitudeAirport": 8.599978, + "longitudeAirport": 123.34418, + "nameAirport": "Dipolog", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "10", + "airportId": 1892, + "codeIataAirport": "DPO", + "codeIataCity": "DPO", + "codeIcaoAirport": "YDPO", + "codeIso2Country": "AU", + "geonameId": "7668708", + "latitudeAirport": -41.172054, + "longitudeAirport": 146.42754, + "nameAirport": "Devonport", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Hobart" + }, + { + "GMT": "8", + "airportId": 1893, + "codeIataAirport": "DPS", + "codeIataCity": "DPS", + "codeIcaoAirport": "WADD", + "codeIso2Country": "ID", + "geonameId": "6301281", + "latitudeAirport": -8.74446, + "longitudeAirport": 115.16331, + "nameAirport": "Ngurah Rai International", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "8", + "airportId": 1894, + "codeIataAirport": "DQA", + "codeIataCity": "DQA", + "codeIcaoAirport": "ZYDQ", + "codeIso2Country": "CN", + "geonameId": "7910478", + "latitudeAirport": 46.58736, + "longitudeAirport": 125.22841, + "nameAirport": "Sartu", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-8", + "airportId": 1895, + "codeIataAirport": "DRA", + "codeIataCity": "DRA", + "codeIcaoAirport": "KDRA", + "codeIso2Country": "US", + "geonameId": "5508158", + "latitudeAirport": 36.666668, + "longitudeAirport": -115.96667, + "nameAirport": "Desert Rock", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 1896, + "codeIataAirport": "DRB", + "codeIataCity": "DRB", + "codeIcaoAirport": "YDBY", + "codeIso2Country": "AU", + "geonameId": "7730252", + "latitudeAirport": -17.373333, + "longitudeAirport": 123.6525, + "nameAirport": "Derby", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "airportId": 1897, + "codeIataAirport": "DRC", + "codeIataCity": "DRC", + "codeIcaoAirport": "", + "codeIso2Country": "AO", + "geonameId": "7730987", + "latitudeAirport": -17.833332, + "longitudeAirport": 20.7, + "nameAirport": "Dirico", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "10", + "airportId": 1898, + "codeIataAirport": "DRD", + "codeIataCity": "DRD", + "codeIcaoAirport": "YDOR", + "codeIso2Country": "AU", + "geonameId": "7730988", + "latitudeAirport": -16.5, + "longitudeAirport": 142.33333, + "nameAirport": "Dorunda Station", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 1899, + "codeIataAirport": "DRE", + "codeIataCity": "DRE", + "codeIcaoAirport": "KDRM", + "codeIso2Country": "US", + "geonameId": "4991195", + "latitudeAirport": 46.016666, + "longitudeAirport": -83.75, + "nameAirport": "Drummond Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-9", + "airportId": 1900, + "codeIataAirport": "DRF", + "codeIataCity": "DRF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5860978", + "latitudeAirport": 60.583332, + "longitudeAirport": -152.15, + "nameAirport": "Drift River", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 1901, + "codeIataAirport": "DRG", + "codeIataCity": "DRG", + "codeIcaoAirport": "PADE", + "codeIso2Country": "US", + "geonameId": "5860513", + "latitudeAirport": 66.0712, + "longitudeAirport": -162.75989, + "nameAirport": "Deering", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "9", + "airportId": 1902, + "codeIataAirport": "DRH", + "codeIataCity": "DRH", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7730989", + "latitudeAirport": -3.25, + "longitudeAirport": 138.56667, + "nameAirport": "Dabra", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-6", + "airportId": 1903, + "codeIataAirport": "DRI", + "codeIataCity": "DRI", + "codeIcaoAirport": "KDRI", + "codeIso2Country": "US", + "geonameId": "4316113", + "latitudeAirport": 30.85, + "longitudeAirport": -93.28333, + "nameAirport": "Beauregard Parish", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 1904, + "codeIataAirport": "DRJ", + "codeIataCity": "DRJ", + "codeIcaoAirport": "", + "codeIso2Country": "SR", + "geonameId": "3384285", + "latitudeAirport": 4.116667, + "longitudeAirport": -54.666668, + "nameAirport": "Drietabbetje", + "nameCountry": "Suriname", + "phone": "", + "timezone": "America/Paramaribo" + }, + { + "GMT": "-6", + "airportId": 1905, + "codeIataAirport": "DRK", + "codeIataCity": "DRK", + "codeIcaoAirport": "MRDK", + "codeIso2Country": "CR", + "geonameId": "8014933", + "latitudeAirport": 8.71962, + "longitudeAirport": -83.6446, + "nameAirport": "Drake Bay", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "10", + "airportId": 1906, + "codeIataAirport": "DRN", + "codeIataCity": "DRN", + "codeIcaoAirport": "YDBI", + "codeIso2Country": "AU", + "geonameId": "7730251", + "latitudeAirport": -28.586666, + "longitudeAirport": 148.21527, + "nameAirport": "Dirranbandi", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-7", + "airportId": 1907, + "codeIataAirport": "DRO", + "codeIataCity": "DRO", + "codeIcaoAirport": "KDRO", + "codeIso2Country": "US", + "geonameId": "5420253", + "latitudeAirport": 37.15995, + "longitudeAirport": -107.751076, + "nameAirport": "La Plata", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "airportId": 1908, + "codeIataAirport": "DRR", + "codeIataCity": "DRR", + "codeIcaoAirport": "YDRI", + "codeIso2Country": "AU", + "geonameId": "7730990", + "latitudeAirport": -25.616667, + "longitudeAirport": 140.21666, + "nameAirport": "Durrie", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "airportId": 1909, + "codeIataAirport": "DRS", + "codeIataCity": "DRS", + "codeIcaoAirport": "EDDC", + "codeIso2Country": "DE", + "geonameId": "3209038", + "latitudeAirport": 51.124332, + "longitudeAirport": 13.766082, + "nameAirport": "Dresden Airport", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "airportId": 1910, + "codeIataAirport": "DRT", + "codeIataCity": "DRT", + "codeIcaoAirport": "KDRT", + "codeIso2Country": "US", + "geonameId": "5520078", + "latitudeAirport": 29.333332, + "longitudeAirport": -100.97833, + "nameAirport": "Del Rio International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 1911, + "codeIataAirport": "DRU", + "codeIataCity": "DRU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 46.666668, + "longitudeAirport": -113.15, + "nameAirport": "Drummond", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "5", + "airportId": 1912, + "codeIataAirport": "DRV", + "codeIataCity": "DRV", + "codeIcaoAirport": "", + "codeIso2Country": "MV", + "geonameId": "0", + "latitudeAirport": 5.156111, + "longitudeAirport": 73.13028, + "nameAirport": "Dharavandhoo Island", + "nameCountry": "Maldives", + "phone": "", + "timezone": "Indian/Maldives" + }, + { + "GMT": "9.30", + "airportId": 1913, + "codeIataAirport": "DRW", + "codeIataCity": "DRW", + "codeIcaoAirport": "YPDN", + "codeIso2Country": "AU", + "geonameId": "2079721", + "latitudeAirport": -12.407805, + "longitudeAirport": 130.87752, + "nameAirport": "Darwin", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "1", + "airportId": 1914, + "codeIataAirport": "DRX", + "codeIataCity": "DRS", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 51.13, + "longitudeAirport": 13.77, + "nameAirport": "Dresden Bus Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "airportId": 1915, + "codeIataAirport": "DRY", + "codeIataCity": "DRY", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298811", + "latitudeAirport": -15.666667, + "longitudeAirport": 126.416664, + "nameAirport": "Drysdale River", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "0", + "airportId": 1916, + "codeIataAirport": "DSA", + "codeIataCity": "DSA", + "codeIcaoAirport": "EGCN", + "codeIso2Country": "GB", + "geonameId": "6940270", + "latitudeAirport": 53.481003, + "longitudeAirport": -1.01155, + "nameAirport": "Robin Hood", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 1917, + "codeIataAirport": "DSC", + "codeIataCity": "DSC", + "codeIcaoAirport": "FKKS", + "codeIso2Country": "CM", + "geonameId": "7730506", + "latitudeAirport": 5.833333, + "longitudeAirport": 10.091667, + "nameAirport": "Dschang", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "-4", + "airportId": 1918, + "codeIataAirport": "DSD", + "codeIataCity": "DSD", + "codeIcaoAirport": "", + "codeIso2Country": "GP", + "geonameId": "0", + "latitudeAirport": 16.333332, + "longitudeAirport": -61.016666, + "nameAirport": "La Desirade", + "nameCountry": "Guadeloupe", + "phone": "", + "timezone": "America/Guadeloupe" + }, + { + "GMT": "3", + "airportId": 1919, + "codeIataAirport": "DSE", + "codeIataCity": "DSE", + "codeIcaoAirport": "HADC", + "codeIso2Country": "ET", + "geonameId": "6297264", + "latitudeAirport": 11.075, + "longitudeAirport": 39.71528, + "nameAirport": "Combolcha", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "8", + "airportId": 1920, + "codeIataAirport": "DSG", + "codeIataCity": "DSG", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "1714887", + "latitudeAirport": 14.0, + "longitudeAirport": 120.0, + "nameAirport": "Dilasag", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-6", + "airportId": 1921, + "codeIataAirport": "DSI", + "codeIataCity": "DSI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4153188", + "latitudeAirport": 30.383333, + "longitudeAirport": -86.5, + "nameAirport": "Destin-Fort Walton Beach Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5", + "airportId": 1922, + "codeIataAirport": "DSK", + "codeIataCity": "DSK", + "codeIcaoAirport": "OPDI", + "codeIso2Country": "PK", + "geonameId": "1453807", + "latitudeAirport": 31.916668, + "longitudeAirport": 70.9, + "nameAirport": "Dera Ismail Khan", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-6", + "airportId": 1923, + "codeIataAirport": "DSM", + "codeIataCity": "DSM", + "codeIcaoAirport": "KDSM", + "codeIso2Country": "US", + "geonameId": "4853851", + "latitudeAirport": 41.532433, + "longitudeAirport": -93.64809, + "nameAirport": "Des Moines International", + "nameCountry": "United States", + "phone": "515-256-5050", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 1924, + "codeIataAirport": "DSN", + "codeIataCity": "DSN", + "codeIcaoAirport": "ZBDS", + "codeIso2Country": "CN", + "geonameId": "7910180", + "latitudeAirport": 39.85, + "longitudeAirport": 110.03333, + "nameAirport": "Dongsheng", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8.30", + "airportId": 1925, + "codeIataAirport": "DSO", + "codeIataCity": "DSO", + "codeIcaoAirport": "", + "codeIso2Country": "KP", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Sondok", + "nameCountry": "North Korea", + "phone": "", + "timezone": "Asia/Pyongyang" + }, + { + "GMT": "-5", + "airportId": 1926, + "codeIataAirport": "DSV", + "codeIataCity": "DSV", + "codeIcaoAirport": "KDSV", + "codeIso2Country": "US", + "geonameId": "5114493", + "latitudeAirport": 42.566666, + "longitudeAirport": -77.7, + "nameAirport": "Dansville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 1927, + "codeIataAirport": "DTA", + "codeIataCity": "DTA", + "codeIcaoAirport": "KDTA", + "codeIso2Country": "US", + "geonameId": "5538086", + "latitudeAirport": 39.38333, + "longitudeAirport": -112.5, + "nameAirport": "Delta", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "airportId": 1928, + "codeIataAirport": "DTD", + "codeIataCity": "DTD", + "codeIcaoAirport": "WALJ", + "codeIso2Country": "ID", + "geonameId": "7668666", + "latitudeAirport": 0.621316, + "longitudeAirport": 116.60037, + "nameAirport": "Datadawai", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "8", + "airportId": 1929, + "codeIataAirport": "DTE", + "codeIataCity": "DTE", + "codeIcaoAirport": "RPUD", + "codeIso2Country": "PH", + "geonameId": "1716288", + "latitudeAirport": 14.133333, + "longitudeAirport": 122.98333, + "nameAirport": "Naga", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-8", + "airportId": 1930, + "codeIataAirport": "DTH", + "codeIataCity": "DTH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299204", + "latitudeAirport": 36.5, + "longitudeAirport": -117.0, + "nameAirport": "Death Valley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "airportId": 1931, + "codeIataAirport": "DTI", + "codeIataCity": "DTI", + "codeIcaoAirport": "SNDT", + "codeIso2Country": "BR", + "geonameId": "8260803", + "latitudeAirport": -18.230804, + "longitudeAirport": -43.647846, + "nameAirport": "Diamantina", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "airportId": 1932, + "codeIataAirport": "DTL", + "codeIataCity": "DTL", + "codeIcaoAirport": "KDTL", + "codeIso2Country": "US", + "geonameId": "5024238", + "latitudeAirport": 46.82639, + "longitudeAirport": -95.88611, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 1933, + "codeIataAirport": "DTM", + "codeIataCity": "DTM", + "codeIcaoAirport": "EDLW", + "codeIso2Country": "DE", + "geonameId": "6296520", + "latitudeAirport": 51.514828, + "longitudeAirport": 7.613139, + "nameAirport": "Dortmund", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "airportId": 1934, + "codeIataAirport": "DTN", + "codeIataCity": "SHV", + "codeIcaoAirport": "KDTN", + "codeIso2Country": "US", + "geonameId": "4341518", + "latitudeAirport": 32.539722, + "longitudeAirport": -93.744446, + "nameAirport": "Shreveport Downtown", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 1935, + "codeIataAirport": "DTR", + "codeIataCity": "DTR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 48.516666, + "longitudeAirport": -122.833336, + "nameAirport": "Decatur Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 1936, + "codeIataAirport": "DTW", + "codeIataCity": "DTT", + "codeIcaoAirport": "KDTW", + "codeIso2Country": "US", + "geonameId": "4990742", + "latitudeAirport": 42.20781, + "longitudeAirport": -83.35605, + "nameAirport": "Detroit Metropolitan Wayne County", + "nameCountry": "United States", + "phone": "734-247-7678", + "timezone": "America/Detroit" + }, + { + "GMT": "-6", + "airportId": 1937, + "codeIataAirport": "DUA", + "codeIataCity": "DUA", + "codeIcaoAirport": "KDUA", + "codeIso2Country": "US", + "geonameId": "4535476", + "latitudeAirport": 33.983334, + "longitudeAirport": -96.416664, + "nameAirport": "Eaker", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 1938, + "codeIataAirport": "DUB", + "codeIataCity": "DUB", + "codeIcaoAirport": "EIDW", + "codeIso2Country": "IE", + "geonameId": "6296697", + "latitudeAirport": 53.42728, + "longitudeAirport": -6.24357, + "nameAirport": "Dublin International", + "nameCountry": "Ireland", + "phone": "01/814-1111", + "timezone": "Europe/Dublin" + }, + { + "GMT": "-6", + "airportId": 1939, + "codeIataAirport": "DUC", + "codeIataCity": "DUC", + "codeIcaoAirport": "KDUC", + "codeIso2Country": "US", + "geonameId": "4538242", + "latitudeAirport": 34.47222, + "longitudeAirport": -97.959724, + "nameAirport": "Halliburton Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "12", + "airportId": 1940, + "codeIataAirport": "DUD", + "codeIataCity": "DUD", + "codeIcaoAirport": "NZDN", + "codeIso2Country": "NZ", + "geonameId": "6212232", + "latitudeAirport": -45.92387, + "longitudeAirport": 170.19905, + "nameAirport": "Dunedin International", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "1", + "airportId": 1941, + "codeIataAirport": "DUE", + "codeIataCity": "DUE", + "codeIcaoAirport": "FNDU", + "codeIso2Country": "AO", + "geonameId": "7668247", + "latitudeAirport": -7.4, + "longitudeAirport": 20.816668, + "nameAirport": "Dundo", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-5", + "airportId": 1942, + "codeIataAirport": "DUF", + "codeIataCity": "DUF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4483779", + "latitudeAirport": 36.25833, + "longitudeAirport": -75.78889, + "nameAirport": "Pine Island Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 1943, + "codeIataAirport": "DUG", + "codeIataCity": "DUG", + "codeIcaoAirport": "KDUG", + "codeIso2Country": "US", + "geonameId": "5293083", + "latitudeAirport": 31.46861, + "longitudeAirport": -109.603615, + "nameAirport": "Bisbee-Douglas International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "1", + "airportId": 1944, + "codeIataAirport": "DUI", + "codeIataCity": "DUI", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2934691", + "latitudeAirport": 51.43247, + "longitudeAirport": 6.76516, + "nameAirport": "Duisburg Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "airportId": 1945, + "codeIataAirport": "DUJ", + "codeIataCity": "DUJ", + "codeIcaoAirport": "KDUJ", + "codeIso2Country": "US", + "geonameId": "5187437", + "latitudeAirport": 41.178333, + "longitudeAirport": -78.89889, + "nameAirport": "Du Bois-Jefferson County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 1946, + "codeIataAirport": "DUK", + "codeIataCity": "DUK", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "0", + "latitudeAirport": -28.366667, + "longitudeAirport": 32.234165, + "nameAirport": "Dukuduk", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "7", + "airportId": 1947, + "codeIataAirport": "DUM", + "codeIataCity": "DUM", + "codeIcaoAirport": "WIBD", + "codeIso2Country": "ID", + "geonameId": "7668672", + "latitudeAirport": 1.583333, + "longitudeAirport": 101.46667, + "nameAirport": "Pinang Kampai", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-8", + "airportId": 1948, + "codeIataAirport": "DUQ", + "codeIataCity": "DUQ", + "codeIcaoAirport": "CAM3", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 48.783333, + "longitudeAirport": -123.7, + "nameAirport": "Duncan/Quam", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "2", + "airportId": 1949, + "codeIataAirport": "DUR", + "codeIataCity": "DUR", + "codeIcaoAirport": "FALE", + "codeIso2Country": "ZA", + "geonameId": "1007311", + "latitudeAirport": -29.614445, + "longitudeAirport": 31.116388, + "nameAirport": "Durban International", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "1", + "airportId": 1950, + "codeIataAirport": "DUS", + "codeIataCity": "DUS", + "codeIcaoAirport": "EDDL", + "codeIso2Country": "DE", + "geonameId": "3206096", + "latitudeAirport": 51.278328, + "longitudeAirport": 6.76558, + "nameAirport": "Düsseldorf International Airport", + "nameCountry": "Germany", + "phone": "+49 211-4210", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-9", + "airportId": 1951, + "codeIataAirport": "DUT", + "codeIataCity": "DUT", + "codeIcaoAirport": "PADU", + "codeIso2Country": "US", + "geonameId": "5877197", + "latitudeAirport": 53.89446, + "longitudeAirport": -166.54224, + "nameAirport": "Emergency Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "3", + "airportId": 1952, + "codeIataAirport": "DVD", + "codeIataCity": "DVD", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "8260679", + "latitudeAirport": -22.078333, + "longitudeAirport": 43.259167, + "nameAirport": "Andavadoaka", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-7", + "airportId": 1953, + "codeIataAirport": "DVK", + "codeIataCity": "DVK", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260739", + "latitudeAirport": 64.51139, + "longitudeAirport": -110.289444, + "nameAirport": "Diavik", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-6", + "airportId": 1954, + "codeIataAirport": "DVL", + "codeIataCity": "DVL", + "codeIcaoAirport": "KDVL", + "codeIso2Country": "US", + "geonameId": "5058871", + "latitudeAirport": 48.113056, + "longitudeAirport": -98.9075, + "nameAirport": "Devils Lake", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 1955, + "codeIataAirport": "DVN", + "codeIataCity": "DVN", + "codeIcaoAirport": "KDVN", + "codeIso2Country": "US", + "geonameId": "4853437", + "latitudeAirport": 41.610558, + "longitudeAirport": -90.58861, + "nameAirport": "Davenport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 1956, + "codeIataAirport": "DVO", + "codeIataCity": "DVO", + "codeIcaoAirport": "RPMD", + "codeIso2Country": "PH", + "geonameId": "6300474", + "latitudeAirport": 7.130696, + "longitudeAirport": 125.6447, + "nameAirport": "Francisco Bangoy International", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "10", + "airportId": 1957, + "codeIataAirport": "DVP", + "codeIataCity": "DVP", + "codeIcaoAirport": "YDPD", + "codeIso2Country": "AU", + "geonameId": "7730992", + "latitudeAirport": -24.133333, + "longitudeAirport": 141.11667, + "nameAirport": "Davenport Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "9.30", + "airportId": 1958, + "codeIataAirport": "DVR", + "codeIataCity": "DVR", + "codeIcaoAirport": "YDMN", + "codeIso2Country": "AU", + "geonameId": "7730993", + "latitudeAirport": -13.75, + "longitudeAirport": 130.68333, + "nameAirport": "Daly River", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-7", + "airportId": 1959, + "codeIataAirport": "DVT", + "codeIataCity": "PHX", + "codeIcaoAirport": "KDVT", + "codeIso2Country": "US", + "geonameId": "5308712", + "latitudeAirport": 33.683887, + "longitudeAirport": -112.083336, + "nameAirport": "Phoenix Deer Valley Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "2", + "airportId": 1960, + "codeIataAirport": "DWA", + "codeIataCity": "DWA", + "codeIcaoAirport": "KDWA", + "codeIso2Country": "MW", + "geonameId": "7730083", + "latitudeAirport": -13.0, + "longitudeAirport": 34.13333, + "nameAirport": "Dwangwa", + "nameCountry": "Malawi", + "phone": "", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "3", + "airportId": 1961, + "codeIataAirport": "DWB", + "codeIataCity": "DWB", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1056487", + "latitudeAirport": -16.1, + "longitudeAirport": 45.36667, + "nameAirport": "Soalala", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "4", + "airportId": 1962, + "codeIataAirport": "DWC", + "codeIataCity": "DXB", + "codeIcaoAirport": "", + "codeIso2Country": "AE", + "geonameId": "0", + "latitudeAirport": 24.918056, + "longitudeAirport": 55.175278, + "nameAirport": "Dubai World Central", + "nameCountry": "United Arab Emirates", + "phone": "", + "timezone": "Asia/Dubai" + }, + { + "GMT": "3", + "airportId": 1963, + "codeIataAirport": "DWD", + "codeIataCity": "DWD", + "codeIcaoAirport": "OEDW", + "codeIso2Country": "SA", + "geonameId": "6300013", + "latitudeAirport": 24.445545, + "longitudeAirport": 44.1287, + "nameAirport": "Dawadmi", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-6", + "airportId": 1964, + "codeIataAirport": "DWH", + "codeIataCity": "HOU", + "codeIcaoAirport": "KDWH", + "codeIso2Country": "US", + "geonameId": "4685320", + "latitudeAirport": 29.75, + "longitudeAirport": -95.416664, + "nameAirport": "David Wayne Hooks", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "4.30", + "airportId": 1965, + "codeIataAirport": "DWR", + "codeIataCity": "DWR", + "codeIcaoAirport": "", + "codeIso2Country": "AF", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Dwyer Air Base", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "4", + "airportId": 1966, + "codeIataAirport": "DXB", + "codeIataCity": "DXB", + "codeIcaoAirport": "OMDB", + "codeIso2Country": "AE", + "geonameId": "6300096", + "latitudeAirport": 25.248665, + "longitudeAirport": 55.352917, + "nameAirport": "Dubai", + "nameCountry": "United Arab Emirates", + "phone": " +971 4 224 5555", + "timezone": "Asia/Dubai" + }, + { + "GMT": "10", + "airportId": 1967, + "codeIataAirport": "DXD", + "codeIataCity": "DXD", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2168690", + "latitudeAirport": -15.166667, + "longitudeAirport": 143.66667, + "nameAirport": "Dixie", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 1968, + "codeIataAirport": "DXR", + "codeIataCity": "DXR", + "codeIcaoAirport": "KDXR", + "codeIso2Country": "US", + "geonameId": "4832375", + "latitudeAirport": 41.38333, + "longitudeAirport": -73.45, + "nameAirport": "Danbury Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 1969, + "codeIataAirport": "DYA", + "codeIataCity": "DYA", + "codeIcaoAirport": "YDYS", + "codeIso2Country": "AU", + "geonameId": "7730253", + "latitudeAirport": -23.5, + "longitudeAirport": 148.0, + "nameAirport": "Dysart", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "airportId": 1970, + "codeIataAirport": "DYG", + "codeIataCity": "DYG", + "codeIcaoAirport": "ZGDY", + "codeIso2Country": "CN", + "geonameId": "7730994", + "latitudeAirport": 29.10712, + "longitudeAirport": 110.44569, + "nameAirport": "Dayong", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 1971, + "codeIataAirport": "DYL", + "codeIataCity": "DYL", + "codeIcaoAirport": "KDYL", + "codeIso2Country": "US", + "geonameId": "5187250", + "latitudeAirport": 40.316666, + "longitudeAirport": -75.13333, + "nameAirport": "Doylestown", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 1972, + "codeIataAirport": "DYM", + "codeIataCity": "DYM", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7730995", + "latitudeAirport": -26.75, + "longitudeAirport": 139.16667, + "nameAirport": "Diamantina Lakes", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "12", + "airportId": 1973, + "codeIataAirport": "DYR", + "codeIataCity": "DYR", + "codeIcaoAirport": "UHMA", + "codeIso2Country": "RU", + "geonameId": "6300936", + "latitudeAirport": 64.73333, + "longitudeAirport": 177.75, + "nameAirport": "Anadyr", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Anadyr" + }, + { + "GMT": "-6", + "airportId": 1974, + "codeIataAirport": "DYS", + "codeIataCity": "ABI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.466667, + "longitudeAirport": -99.71667, + "nameAirport": "Dyess AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5", + "airportId": 1975, + "codeIataAirport": "DYU", + "codeIataCity": "DYU", + "codeIcaoAirport": "UTDD", + "codeIso2Country": "TJ", + "geonameId": "6301006", + "latitudeAirport": 38.54894, + "longitudeAirport": 68.81728, + "nameAirport": "Dushanbe", + "nameCountry": "Tajikistan", + "phone": "", + "timezone": "Asia/Dushanbe" + }, + { + "GMT": "9.30", + "airportId": 1976, + "codeIataAirport": "DYW", + "codeIataCity": "DYW", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8260800", + "latitudeAirport": -16.25, + "longitudeAirport": 133.4, + "nameAirport": "Daly Waters", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "3", + "airportId": 1977, + "codeIataAirport": "DZA", + "codeIataCity": "DZA", + "codeIcaoAirport": "FMCZ", + "codeIso2Country": "YT", + "geonameId": "6297033", + "latitudeAirport": -12.804901, + "longitudeAirport": 45.2821, + "nameAirport": "Dzaoudzi", + "nameCountry": "Mayotte", + "phone": "", + "timezone": "Indian/Mayotte" + }, + { + "GMT": "-5", + "airportId": 1978, + "codeIataAirport": "DZI", + "codeIataCity": "DZI", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "3686146", + "latitudeAirport": 10.016667, + "longitudeAirport": -73.25, + "nameAirport": "Codazzi", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "6", + "airportId": 1979, + "codeIataAirport": "DZN", + "codeIataCity": "DZN", + "codeIcaoAirport": "UAKD", + "codeIso2Country": "KZ", + "geonameId": "6457344", + "latitudeAirport": 47.7, + "longitudeAirport": 67.73333, + "nameAirport": "Zhezhazgan", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-3", + "airportId": 1980, + "codeIataAirport": "DZO", + "codeIataCity": "DZO", + "codeIcaoAirport": "SUDU", + "codeIso2Country": "UY", + "geonameId": "6300829", + "latitudeAirport": -33.416668, + "longitudeAirport": -56.516666, + "nameAirport": "Santa Bernardina", + "nameCountry": "Uruguay", + "phone": "", + "timezone": "America/Montevideo" + }, + { + "GMT": "8", + "airportId": 1981, + "codeIataAirport": "DZU", + "codeIataCity": "DZU", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "8261044", + "latitudeAirport": 29.7, + "longitudeAirport": 105.71667, + "nameAirport": "Dazu", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-9", + "airportId": 1982, + "codeIataAirport": "EAA", + "codeIataCity": "EAA", + "codeIcaoAirport": "PAEA", + "codeIso2Country": "US", + "geonameId": "5861127", + "latitudeAirport": 64.776665, + "longitudeAirport": -141.1486, + "nameAirport": "Eagle", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "airportId": 1983, + "codeIataAirport": "EAB", + "codeIataCity": "EAB", + "codeIcaoAirport": "OYAB", + "codeIso2Country": "YE", + "geonameId": "7730758", + "latitudeAirport": 14.583333, + "longitudeAirport": 43.5, + "nameAirport": "Abbse", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "11", + "airportId": 1984, + "codeIataAirport": "EAE", + "codeIataCity": "EAE", + "codeIcaoAirport": "NVSE", + "codeIso2Country": "VU", + "geonameId": "0", + "latitudeAirport": -17.166668, + "longitudeAirport": 168.41667, + "nameAirport": "Emae", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "12", + "airportId": 1985, + "codeIataAirport": "EAL", + "codeIataCity": "EAL", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 9.333333, + "longitudeAirport": 166.84723, + "nameAirport": "Elenak", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Kwajalein" + }, + { + "GMT": "3", + "airportId": 1986, + "codeIataAirport": "EAM", + "codeIataCity": "EAM", + "codeIcaoAirport": "OENG", + "codeIso2Country": "SA", + "geonameId": "6300023", + "latitudeAirport": 17.613281, + "longitudeAirport": 44.414646, + "nameAirport": "Nejran", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-7", + "airportId": 1987, + "codeIataAirport": "EAN", + "codeIataCity": "EAN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.05, + "longitudeAirport": -104.96667, + "nameAirport": "Phifer Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 1988, + "codeIataAirport": "EAR", + "codeIataCity": "EAR", + "codeIcaoAirport": "KEAR", + "codeIso2Country": "US", + "geonameId": "5071377", + "latitudeAirport": 40.728333, + "longitudeAirport": -98.998886, + "nameAirport": "Kearney", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 1989, + "codeIataAirport": "EAS", + "codeIataCity": "EAS", + "codeIcaoAirport": "LESO", + "codeIso2Country": "ES", + "geonameId": "6299355", + "latitudeAirport": 43.3564, + "longitudeAirport": -1.793538, + "nameAirport": "Donostia - San Sebastian", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-8", + "airportId": 1990, + "codeIataAirport": "EAT", + "codeIataCity": "EAT", + "codeIcaoAirport": "KEAT", + "codeIso2Country": "US", + "geonameId": "5815342", + "latitudeAirport": 47.399723, + "longitudeAirport": -120.20778, + "nameAirport": "Pangborn Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 1991, + "codeIataAirport": "EAU", + "codeIataCity": "EAU", + "codeIcaoAirport": "KEAU", + "codeIso2Country": "US", + "geonameId": "5251436", + "latitudeAirport": 44.864445, + "longitudeAirport": -91.48722, + "nameAirport": "Chippewa Valley Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 1992, + "codeIataAirport": "EBA", + "codeIataCity": "EBA", + "codeIcaoAirport": "LIRJ", + "codeIso2Country": "IT", + "geonameId": "6299623", + "latitudeAirport": 42.766666, + "longitudeAirport": 10.283333, + "nameAirport": "Marina Di Campo", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "3", + "airportId": 1993, + "codeIataAirport": "EBB", + "codeIataCity": "EBB", + "codeIcaoAirport": "HUEN", + "codeIso2Country": "UG", + "geonameId": "6297374", + "latitudeAirport": 0.045111, + "longitudeAirport": 32.443184, + "nameAirport": "Entebbe", + "nameCountry": "Uganda", + "phone": "", + "timezone": "Africa/Kampala" + }, + { + "GMT": "3", + "airportId": 1994, + "codeIataAirport": "EBD", + "codeIataCity": "EBD", + "codeIcaoAirport": "HSOB", + "codeIso2Country": "SD", + "geonameId": "6301556", + "latitudeAirport": 13.159722, + "longitudeAirport": 30.234167, + "nameAirport": "El Obeid", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "-5", + "airportId": 1995, + "codeIataAirport": "EBG", + "codeIataCity": "EBG", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "3684945", + "latitudeAirport": 7.616667, + "longitudeAirport": -74.816666, + "nameAirport": "El Bagre", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "airportId": 1996, + "codeIataAirport": "EBH", + "codeIataCity": "EBH", + "codeIcaoAirport": "DAOY", + "codeIso2Country": "DZ", + "geonameId": "2498543", + "latitudeAirport": 33.717804, + "longitudeAirport": 1.094105, + "nameAirport": "El Bayadh", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "1", + "airportId": 1997, + "codeIataAirport": "EBJ", + "codeIataCity": "EBJ", + "codeIcaoAirport": "EKEB", + "codeIso2Country": "DK", + "geonameId": "2622448", + "latitudeAirport": 55.52143, + "longitudeAirport": 8.549062, + "nameAirport": "Esbjerg", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "3", + "airportId": 1998, + "codeIataAirport": "EBL", + "codeIataCity": "EBL", + "codeIcaoAirport": "ORER", + "codeIso2Country": "IQ", + "geonameId": "7668411", + "latitudeAirport": 36.2375, + "longitudeAirport": 43.963055, + "nameAirport": "Erbil International (irbil Northwest)", + "nameCountry": "Iraq", + "phone": "", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "1", + "airportId": 1999, + "codeIataAirport": "EBM", + "codeIataCity": "EBM", + "codeIcaoAirport": "DTTR", + "codeIso2Country": "TN", + "geonameId": "6296474", + "latitudeAirport": 31.716667, + "longitudeAirport": 9.266667, + "nameAirport": "El Borma", + "nameCountry": "Tunisia", + "phone": "", + "timezone": "Africa/Tunis" + }, + { + "GMT": "12", + "airportId": 2000, + "codeIataAirport": "EBN", + "codeIataCity": "EBN", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "7304466", + "latitudeAirport": 9.333333, + "longitudeAirport": 166.8, + "nameAirport": "Ebadon", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Kwajalein" + }, + { + "GMT": "12", + "airportId": 2001, + "codeIataAirport": "EBO", + "codeIataCity": "EBO", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "7306512", + "latitudeAirport": 4.6, + "longitudeAirport": 168.75, + "nameAirport": "Ebon Airport", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-6", + "airportId": 2002, + "codeIataAirport": "EBR", + "codeIataCity": "BTR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.45, + "longitudeAirport": -91.183334, + "nameAirport": "Downtown", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 2003, + "codeIataAirport": "EBS", + "codeIataCity": "EBS", + "codeIcaoAirport": "KEBS", + "codeIso2Country": "US", + "geonameId": "4881106", + "latitudeAirport": 42.466667, + "longitudeAirport": -93.816666, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 2004, + "codeIataAirport": "EBU", + "codeIataCity": "EBU", + "codeIcaoAirport": "LFMH", + "codeIso2Country": "FR", + "geonameId": "6299414", + "latitudeAirport": 45.54139, + "longitudeAirport": 4.296944, + "nameAirport": "Boutheon", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 2005, + "codeIataAirport": "EBW", + "codeIataCity": "EBW", + "codeIcaoAirport": "FKKW", + "codeIso2Country": "CM", + "geonameId": "7668243", + "latitudeAirport": 2.916667, + "longitudeAirport": 11.166667, + "nameAirport": "Ebolowa", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "-5", + "airportId": 2006, + "codeIataAirport": "ECA", + "codeIataCity": "ECA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4991692", + "latitudeAirport": 44.266666, + "longitudeAirport": -83.48333, + "nameAirport": "Emmet County Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-5", + "airportId": 2007, + "codeIataAirport": "ECG", + "codeIataCity": "ECG", + "codeIcaoAirport": "KECG", + "codeIso2Country": "US", + "geonameId": "4465092", + "latitudeAirport": 36.259167, + "longitudeAirport": -76.17306, + "nameAirport": "Elizabeth City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 2008, + "codeIataAirport": "ECH", + "codeIataCity": "ECH", + "codeIcaoAirport": "YECH", + "codeIso2Country": "AU", + "geonameId": "7668709", + "latitudeAirport": -36.15, + "longitudeAirport": 144.75, + "nameAirport": "Echuca", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "2", + "airportId": 2009, + "codeIataAirport": "ECN", + "codeIataCity": "ECN", + "codeIcaoAirport": "LCEN", + "codeIso2Country": "CY", + "geonameId": "6299311", + "latitudeAirport": 35.15812, + "longitudeAirport": 33.50307, + "nameAirport": "Ercan", + "nameCountry": "Cyprus", + "phone": "", + "timezone": "Asia/Nicosia" + }, + { + "GMT": "-5", + "airportId": 2010, + "codeIataAirport": "ECO", + "codeIataCity": "ECO", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": -1.616667, + "longitudeAirport": -73.23333, + "nameAirport": "El Encanto", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 2011, + "codeIataAirport": "ECP", + "codeIataCity": "PFN", + "codeIcaoAirport": "KECP", + "codeIso2Country": "US", + "geonameId": "7602002", + "latitudeAirport": 30.357803, + "longitudeAirport": -85.79892, + "nameAirport": "NW Florida Beaches Int", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 2012, + "codeIataAirport": "ECR", + "codeIataCity": "ECR", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8260806", + "latitudeAirport": 2.5, + "longitudeAirport": -78.0, + "nameAirport": "El Charco", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-7", + "airportId": 2013, + "codeIataAirport": "ECS", + "codeIataCity": "ECS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 43.833332, + "longitudeAirport": -104.183334, + "nameAirport": "Mondell", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "airportId": 2014, + "codeIataAirport": "EDA", + "codeIataCity": "EDA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "7910271", + "latitudeAirport": 55.95, + "longitudeAirport": -133.66667, + "nameAirport": "Edna Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "3", + "airportId": 2015, + "codeIataAirport": "EDB", + "codeIataCity": "EDB", + "codeIcaoAirport": "HSDB", + "codeIso2Country": "SD", + "geonameId": "7668299", + "latitudeAirport": 18.283333, + "longitudeAirport": 30.833332, + "nameAirport": "Eldebba", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "9.30", + "airportId": 2016, + "codeIataAirport": "EDD", + "codeIataCity": "EDD", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7730998", + "latitudeAirport": -25.25, + "longitudeAirport": 133.2, + "nameAirport": "Erldunda", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-5", + "airportId": 2017, + "codeIataAirport": "EDE", + "codeIataCity": "EDE", + "codeIcaoAirport": "KEDE", + "codeIso2Country": "US", + "geonameId": "4464899", + "latitudeAirport": 36.066666, + "longitudeAirport": -76.65, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 2018, + "codeIataAirport": "EDF", + "codeIataCity": "ANC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 61.250557, + "longitudeAirport": -149.78473, + "nameAirport": "Elmendorf AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 2019, + "codeIataAirport": "EDG", + "codeIataCity": "EDG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.465668, + "longitudeAirport": -76.360916, + "nameAirport": "Weide AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 2020, + "codeIataAirport": "EDI", + "codeIataCity": "EDI", + "codeIcaoAirport": "EGPH", + "codeIso2Country": "GB", + "geonameId": "6296627", + "latitudeAirport": 55.948143, + "longitudeAirport": -3.364177, + "nameAirport": "Edinburgh", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 2021, + "codeIataAirport": "EDK", + "codeIataCity": "EDK", + "codeIcaoAirport": "KEQA", + "codeIso2Country": "US", + "geonameId": "4270869", + "latitudeAirport": 37.816666, + "longitudeAirport": -96.86667, + "nameAirport": "El Dorado", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 2022, + "codeIataAirport": "EDL", + "codeIataCity": "EDL", + "codeIcaoAirport": "HKED", + "codeIso2Country": "KE", + "geonameId": "6297303", + "latitudeAirport": 0.4054, + "longitudeAirport": 35.2236, + "nameAirport": "Eldoret", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "1", + "airportId": 2023, + "codeIataAirport": "EDM", + "codeIataCity": "EDM", + "codeIcaoAirport": "LFRI", + "codeIso2Country": "FR", + "geonameId": "6299454", + "latitudeAirport": 46.7, + "longitudeAirport": -1.383333, + "nameAirport": "Les Ajoncs", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "3", + "airportId": 2024, + "codeIataAirport": "EDO", + "codeIataCity": "EDO", + "codeIcaoAirport": "LTFD", + "codeIso2Country": "TR", + "geonameId": "7668333", + "latitudeAirport": 39.583332, + "longitudeAirport": 27.033333, + "nameAirport": "Edremit/korfez", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-6", + "airportId": 2025, + "codeIataAirport": "EDQ", + "codeIataCity": "EDQ", + "codeIcaoAirport": "", + "codeIso2Country": "HN", + "geonameId": "8260988", + "latitudeAirport": 14.233333, + "longitudeAirport": -88.416664, + "nameAirport": "Erandique", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "10", + "airportId": 2026, + "codeIataAirport": "EDR", + "codeIataCity": "EDR", + "codeIcaoAirport": "YPMP", + "codeIso2Country": "AU", + "geonameId": "7730999", + "latitudeAirport": -14.9, + "longitudeAirport": 141.61667, + "nameAirport": "Edward River", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-8", + "airportId": 2027, + "codeIataAirport": "EDW", + "codeIataCity": "EDW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 35.0, + "longitudeAirport": -117.916664, + "nameAirport": "Edwards AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-8", + "airportId": 2028, + "codeIataAirport": "EED", + "codeIataCity": "EED", + "codeIcaoAirport": "KEED", + "codeIso2Country": "US", + "geonameId": "5376358", + "latitudeAirport": 34.85, + "longitudeAirport": -114.61667, + "nameAirport": "Needles", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-9", + "airportId": 2029, + "codeIataAirport": "EEK", + "codeIataCity": "EEK", + "codeIcaoAirport": "PAEE", + "codeIso2Country": "US", + "geonameId": "5861404", + "latitudeAirport": 60.216667, + "longitudeAirport": -162.01666, + "nameAirport": "Eek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "1", + "airportId": 2030, + "codeIataAirport": "EEL", + "codeIataCity": "EEL", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "3107418", + "latitudeAirport": 53.120277, + "longitudeAirport": 6.575556, + "nameAirport": "Tudela Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 2031, + "codeIataAirport": "EEM", + "codeIataCity": "ABC", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 38.9976516, + "longitudeAirport": -1.8600701, + "nameAirport": "Albacete Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-5", + "airportId": 2032, + "codeIataAirport": "EEN", + "codeIataCity": "EEN", + "codeIcaoAirport": "KEEN", + "codeIso2Country": "US", + "geonameId": "5088262", + "latitudeAirport": 42.900833, + "longitudeAirport": -72.270836, + "nameAirport": "Dillant-Hopkins", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 2033, + "codeIataAirport": "EER", + "codeIataCity": "REU", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 41.1548179, + "longitudeAirport": 1.108676, + "nameAirport": "Reus Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 2034, + "codeIataAirport": "EEU", + "codeIataCity": "LEN", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 42.5998764, + "longitudeAirport": -5.571752, + "nameAirport": "Leon Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-9", + "airportId": 2035, + "codeIataAirport": "EFB", + "codeIataCity": "EFB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8298955", + "latitudeAirport": 58.0, + "longitudeAirport": -135.73334, + "nameAirport": "Eight Fathom Bight", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Juneau" + }, + { + "GMT": "-6", + "airportId": 2036, + "codeIataAirport": "EFD", + "codeIataCity": "HOU", + "codeIcaoAirport": "KEFD", + "codeIso2Country": "US", + "geonameId": "4688848", + "latitudeAirport": 29.6, + "longitudeAirport": -95.15, + "nameAirport": "Ellington Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 2037, + "codeIataAirport": "EFG", + "codeIataCity": "EFG", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299047", + "latitudeAirport": -9.15, + "longitudeAirport": 147.66667, + "nameAirport": "Efogi", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 2038, + "codeIataAirport": "EFK", + "codeIataCity": "EFK", + "codeIcaoAirport": "KEFK", + "codeIso2Country": "US", + "geonameId": "5239066", + "latitudeAirport": 44.889442, + "longitudeAirport": -72.23, + "nameAirport": "Newport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 2039, + "codeIataAirport": "EFL", + "codeIataCity": "EFL", + "codeIcaoAirport": "LGKF", + "codeIso2Country": "GR", + "geonameId": "6299491", + "latitudeAirport": 38.118057, + "longitudeAirport": 20.505556, + "nameAirport": "Kefalonia Istland International Airport", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "-9", + "airportId": 2040, + "codeIataAirport": "EFO", + "codeIataCity": "EFO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "East Fork", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "-6", + "airportId": 2041, + "codeIataAirport": "EFW", + "codeIataCity": "EFW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.016666, + "longitudeAirport": -94.38333, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 2042, + "codeIataAirport": "EGA", + "codeIataCity": "EGA", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299263", + "latitudeAirport": -6.916667, + "longitudeAirport": 146.1, + "nameAirport": "Engati", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 2043, + "codeIataAirport": "EGC", + "codeIataCity": "EGC", + "codeIcaoAirport": "LFBE", + "codeIso2Country": "FR", + "geonameId": "6299368", + "latitudeAirport": 44.85, + "longitudeAirport": 0.483333, + "nameAirport": "Roumanieres", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-7", + "airportId": 2044, + "codeIataAirport": "EGE", + "codeIataCity": "EGE", + "codeIcaoAirport": "KEGE", + "codeIso2Country": "US", + "geonameId": "5420334", + "latitudeAirport": 39.63988, + "longitudeAirport": -106.91347, + "nameAirport": "Eagle County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 2045, + "codeIataAirport": "EGI", + "codeIataCity": "VPS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.483334, + "longitudeAirport": -86.5, + "nameAirport": "Duke Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 2046, + "codeIataAirport": "EGL", + "codeIataCity": "EGL", + "codeIcaoAirport": "HANG", + "codeIso2Country": "ET", + "geonameId": "6297279", + "latitudeAirport": 5.283333, + "longitudeAirport": 39.716667, + "nameAirport": "Neghelli", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "11", + "airportId": 2047, + "codeIataAirport": "EGM", + "codeIataCity": "EGM", + "codeIcaoAirport": "AGGS", + "codeIso2Country": "SB", + "geonameId": "7668070", + "latitudeAirport": -8.577956, + "longitudeAirport": 157.87506, + "nameAirport": "Sege", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "3", + "airportId": 2048, + "codeIataAirport": "EGN", + "codeIataCity": "EGN", + "codeIcaoAirport": "HSGN", + "codeIso2Country": "SD", + "geonameId": "374985", + "latitudeAirport": 13.4875, + "longitudeAirport": 22.469444, + "nameAirport": "Geneina", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "3", + "airportId": 2049, + "codeIataAirport": "EGO", + "codeIataCity": "EGO", + "codeIcaoAirport": "UUOB", + "codeIso2Country": "RU", + "geonameId": "7730205", + "latitudeAirport": 50.63333, + "longitudeAirport": 36.65, + "nameAirport": "Belgorod", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "airportId": 2050, + "codeIataAirport": "EGP", + "codeIataCity": "EGP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "7647535", + "latitudeAirport": 28.702223, + "longitudeAirport": -100.48055, + "nameAirport": "Maverick Co", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 2051, + "codeIataAirport": "EGS", + "codeIataCity": "EGS", + "codeIcaoAirport": "BIEG", + "codeIso2Country": "IS", + "geonameId": "6295707", + "latitudeAirport": 65.27778, + "longitudeAirport": -14.402778, + "nameAirport": "Egilsstadir", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-6", + "airportId": 2052, + "codeIataAirport": "EGV", + "codeIataCity": "EGV", + "codeIcaoAirport": "KEGV", + "codeIso2Country": "US", + "geonameId": "5251175", + "latitudeAirport": 45.92917, + "longitudeAirport": -89.26583, + "nameAirport": "Eagle River", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 2053, + "codeIataAirport": "EGX", + "codeIataCity": "EGX", + "codeIcaoAirport": "PAII", + "codeIso2Country": "US", + "geonameId": "5861423", + "latitudeAirport": 58.20778, + "longitudeAirport": -157.37029, + "nameAirport": "Egegik", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "airportId": 2054, + "codeIataAirport": "EHL", + "codeIataCity": "EHL", + "codeIcaoAirport": "SAVB", + "codeIso2Country": "AR", + "geonameId": "6301850", + "latitudeAirport": -42.0, + "longitudeAirport": -71.75, + "nameAirport": "El Bolson", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-9", + "airportId": 2055, + "codeIataAirport": "EHM", + "codeIataCity": "EHM", + "codeIcaoAirport": "PAEH", + "codeIso2Country": "US", + "geonameId": "5858625", + "latitudeAirport": 58.64722, + "longitudeAirport": -162.06056, + "nameAirport": "Cape Newenham", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "-5", + "airportId": 2056, + "codeIataAirport": "EHT", + "codeIataCity": "EHT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.766666, + "longitudeAirport": -72.65, + "nameAirport": "Rentschler", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 2057, + "codeIataAirport": "EIA", + "codeIataCity": "EIA", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260699", + "latitudeAirport": -8.116667, + "longitudeAirport": 147.63333, + "nameAirport": "Popondetta", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 2058, + "codeIataAirport": "EIB", + "codeIataCity": "EIB", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 50.983334, + "longitudeAirport": 10.483333, + "nameAirport": "Eisenach", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "7", + "airportId": 2059, + "codeIataAirport": "EIE", + "codeIataCity": "EIE", + "codeIcaoAirport": "UNII", + "codeIso2Country": "RU", + "geonameId": "6300985", + "latitudeAirport": 58.466667, + "longitudeAirport": 92.11667, + "nameAirport": "Eniseysk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "10", + "airportId": 2060, + "codeIataAirport": "EIH", + "codeIataCity": "EIH", + "codeIcaoAirport": "YEIN", + "codeIso2Country": "AU", + "geonameId": "7731000", + "latitudeAirport": -18.5, + "longitudeAirport": 144.1, + "nameAirport": "Einasleigh", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "airportId": 2061, + "codeIataAirport": "EIK", + "codeIataCity": "EIK", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "8261058", + "latitudeAirport": 63.2, + "longitudeAirport": 38.21, + "nameAirport": "Yeysk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-9", + "airportId": 2062, + "codeIataAirport": "EIL", + "codeIataCity": "FAI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 64.85, + "longitudeAirport": -147.71666, + "nameAirport": "Eielson AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 2063, + "codeIataAirport": "EIN", + "codeIataCity": "EIN", + "codeIcaoAirport": "EHEH", + "codeIso2Country": "NL", + "geonameId": "6296684", + "latitudeAirport": 51.457954, + "longitudeAirport": 5.391795, + "nameAirport": "Eindhoven", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "-4", + "airportId": 2064, + "codeIataAirport": "EIS", + "codeIataCity": "EIS", + "codeIcaoAirport": "TUPJ", + "codeIso2Country": "VG", + "geonameId": "3577757", + "latitudeAirport": 18.44389, + "longitudeAirport": -64.54278, + "nameAirport": "Beef Island", + "nameCountry": "British Virgin Islands", + "phone": "", + "timezone": "America/Tortola" + }, + { + "GMT": "2", + "airportId": 2065, + "codeIataAirport": "EIY", + "codeIataCity": "EIY", + "codeIcaoAirport": "LLEY", + "codeIso2Country": "IL", + "geonameId": "7668322", + "latitudeAirport": 30.633333, + "longitudeAirport": 35.183334, + "nameAirport": "Ein Yahav", + "nameCountry": "Israel", + "phone": "", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "-5", + "airportId": 2066, + "codeIataAirport": "EJA", + "codeIataCity": "EJA", + "codeIcaoAirport": "SKEJ", + "codeIso2Country": "CO", + "geonameId": "6300742", + "latitudeAirport": 7.015833, + "longitudeAirport": -73.799164, + "nameAirport": "Variguies", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "airportId": 2067, + "codeIataAirport": "EJH", + "codeIataCity": "EJH", + "codeIcaoAirport": "OEWJ", + "codeIso2Country": "SA", + "geonameId": "6300032", + "latitudeAirport": 26.207716, + "longitudeAirport": 36.47481, + "nameAirport": "Wedjh", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "12", + "airportId": 2068, + "codeIataAirport": "EJT", + "codeIataCity": "EJT", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 6.083333, + "longitudeAirport": 171.95, + "nameAirport": "Enijet", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-8", + "airportId": 2069, + "codeIataAirport": "EKA", + "codeIataCity": "EKA", + "codeIcaoAirport": "KEKA", + "codeIso2Country": "US", + "geonameId": "5563400", + "latitudeAirport": 40.805, + "longitudeAirport": -124.115, + "nameAirport": "Murray Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "6", + "airportId": 2070, + "codeIataAirport": "EKB", + "codeIataCity": "EKB", + "codeIcaoAirport": "UASB", + "codeIso2Country": "KZ", + "geonameId": "7668492", + "latitudeAirport": 51.583332, + "longitudeAirport": 75.21667, + "nameAirport": "Ekibastuz", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "9.30", + "airportId": 2071, + "codeIataAirport": "EKD", + "codeIataCity": "EKD", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731001", + "latitudeAirport": -21.15, + "longitudeAirport": 135.55, + "nameAirport": "Elkedra", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-4", + "airportId": 2072, + "codeIataAirport": "EKE", + "codeIataCity": "EKE", + "codeIcaoAirport": "", + "codeIso2Country": "GY", + "geonameId": "3661366", + "latitudeAirport": 5.916667, + "longitudeAirport": -59.88333, + "nameAirport": "Ekereku", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "-5", + "airportId": 2073, + "codeIataAirport": "EKI", + "codeIataCity": "EKI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.72222, + "longitudeAirport": -85.992226, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-5", + "airportId": 2074, + "codeIataAirport": "EKN", + "codeIataCity": "EKN", + "codeIcaoAirport": "KEKN", + "codeIso2Country": "US", + "geonameId": "4810204", + "latitudeAirport": 38.889442, + "longitudeAirport": -79.85778, + "nameAirport": "Elkins", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "airportId": 2075, + "codeIataAirport": "EKO", + "codeIataCity": "EKO", + "codeIcaoAirport": "KEKO", + "codeIso2Country": "US", + "geonameId": "5703691", + "latitudeAirport": 40.82389, + "longitudeAirport": -115.78972, + "nameAirport": "Elko Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "11", + "airportId": 2076, + "codeIataAirport": "EKS", + "codeIataCity": "EKS", + "codeIcaoAirport": "KEKS", + "codeIso2Country": "RU", + "geonameId": "8260712", + "latitudeAirport": 45.267853, + "longitudeAirport": -111.65034, + "nameAirport": "Shakhtersk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Sakhalin" + }, + { + "GMT": "1", + "airportId": 2077, + "codeIataAirport": "EKT", + "codeIataCity": "EKT", + "codeIcaoAirport": "ESSU", + "codeIso2Country": "SE", + "geonameId": "2715954", + "latitudeAirport": 59.36667, + "longitudeAirport": 16.533333, + "nameAirport": "Eskilstuna", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "airportId": 2078, + "codeIataAirport": "EKX", + "codeIataCity": "EKX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4290988", + "latitudeAirport": 37.68889, + "longitudeAirport": -85.92778, + "nameAirport": "Elizabethtown", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 2079, + "codeIataAirport": "ELA", + "codeIataCity": "ELA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 29.583332, + "longitudeAirport": -96.333336, + "nameAirport": "Eagle Lake", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 2080, + "codeIataAirport": "ELB", + "codeIataCity": "ELB", + "codeIcaoAirport": "SKBC", + "codeIso2Country": "CO", + "geonameId": "3684927", + "latitudeAirport": 9.048889, + "longitudeAirport": -73.97417, + "nameAirport": "San Bernado", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "9.30", + "airportId": 2081, + "codeIataAirport": "ELC", + "codeIataCity": "ELC", + "codeIcaoAirport": "YELD", + "codeIso2Country": "AU", + "geonameId": "7730254", + "latitudeAirport": -12.019817, + "longitudeAirport": 135.5698, + "nameAirport": "Elcho Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-6", + "airportId": 2082, + "codeIataAirport": "ELD", + "codeIataCity": "ELD", + "codeIcaoAirport": "KELD", + "codeIso2Country": "US", + "geonameId": "4112593", + "latitudeAirport": 33.220554, + "longitudeAirport": -92.81472, + "nameAirport": "Goodwin Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 2083, + "codeIataAirport": "ELE", + "codeIataCity": "ELE", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "0", + "latitudeAirport": 8.166667, + "longitudeAirport": -77.833336, + "nameAirport": "El Real", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "3", + "airportId": 2084, + "codeIataAirport": "ELF", + "codeIataCity": "ELF", + "codeIcaoAirport": "HSFS", + "codeIso2Country": "SD", + "geonameId": "6297338", + "latitudeAirport": 13.616667, + "longitudeAirport": 25.316668, + "nameAirport": "El Fasher", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "1", + "airportId": 2085, + "codeIataAirport": "ELG", + "codeIataCity": "ELG", + "codeIcaoAirport": "DAUE", + "codeIso2Country": "DZ", + "geonameId": "6296388", + "latitudeAirport": 30.5675, + "longitudeAirport": 2.864722, + "nameAirport": "Djamet", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-5", + "airportId": 2086, + "codeIataAirport": "ELH", + "codeIataCity": "ELH", + "codeIcaoAirport": "MYEH", + "codeIso2Country": "BS", + "geonameId": "3571778", + "latitudeAirport": 25.476917, + "longitudeAirport": -76.68192, + "nameAirport": "North Eleuthera Airport", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-9", + "airportId": 2087, + "codeIataAirport": "ELI", + "codeIataCity": "ELI", + "codeIcaoAirport": "PFEL", + "codeIso2Country": "US", + "geonameId": "5861583", + "latitudeAirport": 64.61361, + "longitudeAirport": -162.27028, + "nameAirport": "Elim", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "-5", + "airportId": 2088, + "codeIataAirport": "ELJ", + "codeIataCity": "ELJ", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8298880", + "latitudeAirport": 2.0, + "longitudeAirport": -73.833336, + "nameAirport": "El Recreo", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 2089, + "codeIataAirport": "ELK", + "codeIataCity": "ELK", + "codeIcaoAirport": "KELK", + "codeIso2Country": "US", + "geonameId": "4535816", + "latitudeAirport": 35.416668, + "longitudeAirport": -99.416664, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 2090, + "codeIataAirport": "ELL", + "codeIataCity": "ELL", + "codeIcaoAirport": "FAER", + "codeIso2Country": "ZA", + "geonameId": "6296889", + "latitudeAirport": -23.716667, + "longitudeAirport": 27.683332, + "nameAirport": "Ellisras", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-5", + "airportId": 2091, + "codeIataAirport": "ELM", + "codeIataCity": "ELM", + "codeIcaoAirport": "KELM", + "codeIso2Country": "US", + "geonameId": "5116506", + "latitudeAirport": 42.16304, + "longitudeAirport": -76.89586, + "nameAirport": "Elmira Corning Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "airportId": 2092, + "codeIataAirport": "ELN", + "codeIataCity": "ELN", + "codeIcaoAirport": "KLEN", + "codeIso2Country": "US", + "geonameId": "5793639", + "latitudeAirport": 46.983334, + "longitudeAirport": -120.566666, + "nameAirport": "Bowers Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "airportId": 2093, + "codeIataAirport": "ELO", + "codeIataCity": "ELO", + "codeIcaoAirport": "SATD", + "codeIso2Country": "AR", + "geonameId": "7730768", + "latitudeAirport": -26.5, + "longitudeAirport": -54.733334, + "nameAirport": "Eldorado", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-7", + "airportId": 2094, + "codeIataAirport": "ELP", + "codeIataCity": "ELP", + "codeIcaoAirport": "KELP", + "codeIso2Country": "US", + "geonameId": "5521012", + "latitudeAirport": 31.798948, + "longitudeAirport": -106.396, + "nameAirport": "El Paso International Airport", + "nameCountry": "United States", + "phone": "915-780-4749", + "timezone": "America/Denver" + }, + { + "GMT": "3", + "airportId": 2095, + "codeIataAirport": "ELQ", + "codeIataCity": "ELQ", + "codeIcaoAirport": "OEGS", + "codeIso2Country": "SA", + "geonameId": "391198", + "latitudeAirport": 26.305029, + "longitudeAirport": 43.768177, + "nameAirport": "Gassim Regional Airport", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "9", + "airportId": 2096, + "codeIataAirport": "ELR", + "codeIataCity": "ELR", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "8298782", + "latitudeAirport": -3.816667, + "longitudeAirport": 140.06667, + "nameAirport": "Elelim", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "2", + "airportId": 2097, + "codeIataAirport": "ELS", + "codeIataCity": "ELS", + "codeIcaoAirport": "FAEL", + "codeIso2Country": "ZA", + "geonameId": "1020088", + "latitudeAirport": -33.038437, + "longitudeAirport": 27.82892, + "nameAirport": "East London", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "2", + "airportId": 2098, + "codeIataAirport": "ELT", + "codeIataCity": "ELT", + "codeIcaoAirport": "HETR", + "codeIso2Country": "EG", + "geonameId": "6297301", + "latitudeAirport": 28.216667, + "longitudeAirport": 33.63333, + "nameAirport": "Tour Sinai City", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "1", + "airportId": 2099, + "codeIataAirport": "ELU", + "codeIataCity": "ELU", + "codeIcaoAirport": "DAUO", + "codeIso2Country": "DZ", + "geonameId": "6296394", + "latitudeAirport": 33.516666, + "longitudeAirport": 6.783333, + "nameAirport": "Guemar", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-9", + "airportId": 2100, + "codeIataAirport": "ELV", + "codeIataCity": "ELV", + "codeIcaoAirport": "PAEL", + "codeIso2Country": "US", + "geonameId": "5845988", + "latitudeAirport": 58.183334, + "longitudeAirport": -136.31667, + "nameAirport": "Elfin Cove SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Juneau" + }, + { + "GMT": "-9", + "airportId": 2101, + "codeIataAirport": "ELW", + "codeIataCity": "ELW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5861603", + "latitudeAirport": 60.9, + "longitudeAirport": -146.23334, + "nameAirport": "Ellamar", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "airportId": 2102, + "codeIataAirport": "ELX", + "codeIataCity": "ELX", + "codeIcaoAirport": "", + "codeIso2Country": "VE", + "geonameId": "0", + "latitudeAirport": 8.883333, + "longitudeAirport": -64.26667, + "nameAirport": "El Tigre", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-8", + "airportId": 2103, + "codeIataAirport": "ELY", + "codeIataCity": "ELY", + "codeIcaoAirport": "KELY", + "codeIso2Country": "US", + "geonameId": "5503695", + "latitudeAirport": 39.301945, + "longitudeAirport": -114.84194, + "nameAirport": "Yelland", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 2104, + "codeIataAirport": "ELZ", + "codeIataCity": "ELZ", + "codeIcaoAirport": "KELZ", + "codeIso2Country": "US", + "geonameId": "5143588", + "latitudeAirport": 42.11667, + "longitudeAirport": -77.95, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 2105, + "codeIataAirport": "EMA", + "codeIataCity": "NQT", + "codeIcaoAirport": "EGNX", + "codeIso2Country": "GB", + "geonameId": "6296613", + "latitudeAirport": 52.82587, + "longitudeAirport": -1.330595, + "nameAirport": "East Midlands", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-8", + "airportId": 2106, + "codeIataAirport": "EMB", + "codeIataCity": "SFO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 37.62528, + "longitudeAirport": -122.375, + "nameAirport": "Embarkadero", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 2107, + "codeIataAirport": "EMD", + "codeIataCity": "EMD", + "codeIcaoAirport": "YEML", + "codeIso2Country": "AU", + "geonameId": "7668710", + "latitudeAirport": -23.56861, + "longitudeAirport": 148.1744, + "nameAirport": "Emerald", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "airportId": 2108, + "codeIataAirport": "EME", + "codeIataCity": "EME", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2930596", + "latitudeAirport": 53.36667, + "longitudeAirport": 7.2, + "nameAirport": "Emden", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "2", + "airportId": 2109, + "codeIataAirport": "EMG", + "codeIataCity": "EMG", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "1005544", + "latitudeAirport": -28.75, + "longitudeAirport": 31.9, + "nameAirport": "Empangeni", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "10", + "airportId": 2110, + "codeIataAirport": "EMI", + "codeIataCity": "EMI", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260807", + "latitudeAirport": -1.65, + "longitudeAirport": 149.98334, + "nameAirport": "Emirau", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 2111, + "codeIataAirport": "EMK", + "codeIataCity": "EMK", + "codeIcaoAirport": "PAEM", + "codeIso2Country": "US", + "geonameId": "5861669", + "latitudeAirport": 62.776943, + "longitudeAirport": -164.52083, + "nameAirport": "Emmonak", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "1", + "airportId": 2112, + "codeIataAirport": "EML", + "codeIataCity": "EML", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2660911", + "latitudeAirport": 47.0925, + "longitudeAirport": 8.304722, + "nameAirport": "Emmen", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "-7", + "airportId": 2113, + "codeIataAirport": "EMM", + "codeIataCity": "EMM", + "codeIcaoAirport": "KEMM", + "codeIso2Country": "US", + "geonameId": "5829430", + "latitudeAirport": 41.783333, + "longitudeAirport": -110.55, + "nameAirport": "Kemerer", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "0", + "airportId": 2114, + "codeIataAirport": "EMN", + "codeIataCity": "EMN", + "codeIcaoAirport": "GQNI", + "codeIso2Country": "MR", + "geonameId": "6297237", + "latitudeAirport": 16.6, + "longitudeAirport": -7.283333, + "nameAirport": "Nema", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "10", + "airportId": 2115, + "codeIataAirport": "EMO", + "codeIataCity": "EMO", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299172", + "latitudeAirport": -9.15, + "longitudeAirport": 147.95, + "nameAirport": "Emo", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 2116, + "codeIataAirport": "EMP", + "codeIataCity": "EMP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4271092", + "latitudeAirport": 38.3325, + "longitudeAirport": -96.190834, + "nameAirport": "Emporia", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 2117, + "codeIataAirport": "EMS", + "codeIataCity": "EMS", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2097713", + "latitudeAirport": -9.45, + "longitudeAirport": 148.86667, + "nameAirport": "Embessa", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "airportId": 2118, + "codeIataAirport": "EMT", + "codeIataCity": "EMT", + "codeIcaoAirport": "KEMT", + "codeIso2Country": "US", + "geonameId": "5345744", + "latitudeAirport": 34.083332, + "longitudeAirport": -118.03333, + "nameAirport": "El Monte", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "airportId": 2119, + "codeIataAirport": "EMX", + "codeIataCity": "EMX", + "codeIcaoAirport": "SAVD", + "codeIso2Country": "AR", + "geonameId": "7730770", + "latitudeAirport": -42.033333, + "longitudeAirport": -71.15, + "nameAirport": "El Maiten", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "2", + "airportId": 2120, + "codeIataAirport": "EMY", + "codeIataCity": "EMY", + "codeIcaoAirport": "", + "codeIso2Country": "EG", + "geonameId": "8298663", + "latitudeAirport": 28.1, + "longitudeAirport": 30.75, + "nameAirport": "El Minya", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-9", + "airportId": 2121, + "codeIataAirport": "ENA", + "codeIataCity": "ENA", + "codeIcaoAirport": "PAEN", + "codeIso2Country": "US", + "geonameId": "5866068", + "latitudeAirport": 60.56521, + "longitudeAirport": -151.24644, + "nameAirport": "Kenai", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 2122, + "codeIataAirport": "ENB", + "codeIataCity": "ENB", + "codeIcaoAirport": "YEEB", + "codeIso2Country": "AU", + "geonameId": "7731004", + "latitudeAirport": -30.083332, + "longitudeAirport": 114.98333, + "nameAirport": "Eneabba West", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "airportId": 2123, + "codeIataAirport": "ENC", + "codeIataCity": "ETZ", + "codeIcaoAirport": "LFSN", + "codeIso2Country": "FR", + "geonameId": "6299471", + "latitudeAirport": 48.691666, + "longitudeAirport": 6.231667, + "nameAirport": "Essey", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "airportId": 2124, + "codeIataAirport": "END", + "codeIataCity": "WDG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 36.4, + "longitudeAirport": -97.88333, + "nameAirport": "Vance AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 2125, + "codeIataAirport": "ENE", + "codeIataCity": "ENE", + "codeIcaoAirport": "WATE", + "codeIso2Country": "ID", + "geonameId": "7338057", + "latitudeAirport": -8.833333, + "longitudeAirport": 121.65, + "nameAirport": "Ende", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "2", + "airportId": 2126, + "codeIataAirport": "ENF", + "codeIataCity": "ENF", + "codeIcaoAirport": "EFET", + "codeIso2Country": "FI", + "geonameId": "6296537", + "latitudeAirport": 68.35, + "longitudeAirport": 23.416668, + "nameAirport": "Enontekio", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "8", + "airportId": 2127, + "codeIataAirport": "ENH", + "codeIataCity": "ENH", + "codeIcaoAirport": "ZHES", + "codeIso2Country": "CN", + "geonameId": "7731005", + "latitudeAirport": 30.321934, + "longitudeAirport": 109.48201, + "nameAirport": "Enshi", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 2128, + "codeIataAirport": "ENI", + "codeIataCity": "ENI", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "7731006", + "latitudeAirport": 11.205556, + "longitudeAirport": 119.41278, + "nameAirport": "El Nido", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-6", + "airportId": 2129, + "codeIataAirport": "ENJ", + "codeIataCity": "ENJ", + "codeIcaoAirport": "", + "codeIso2Country": "GT", + "geonameId": "7731007", + "latitudeAirport": 17.333332, + "longitudeAirport": -90.166664, + "nameAirport": "El Naranjo", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "0", + "airportId": 2130, + "codeIataAirport": "ENK", + "codeIataCity": "ENK", + "codeIcaoAirport": "EGAB", + "codeIso2Country": "GB", + "geonameId": "8256212", + "latitudeAirport": 54.35, + "longitudeAirport": -7.633333, + "nameAirport": "Enniskillen St. Angelo", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 2131, + "codeIataAirport": "ENL", + "codeIataCity": "ENL", + "codeIcaoAirport": "KENL", + "codeIso2Country": "US", + "geonameId": "4235594", + "latitudeAirport": 38.516666, + "longitudeAirport": -89.13333, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 2132, + "codeIataAirport": "ENN", + "codeIataCity": "ENN", + "codeIcaoAirport": "PANN", + "codeIso2Country": "US", + "geonameId": "5869822", + "latitudeAirport": 64.566666, + "longitudeAirport": -149.11667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "airportId": 2133, + "codeIataAirport": "ENO", + "codeIataCity": "ENO", + "codeIcaoAirport": "SGEN", + "codeIso2Country": "PY", + "geonameId": "6300729", + "latitudeAirport": -27.25, + "longitudeAirport": -55.833332, + "nameAirport": "Teniente Prim Alarcon", + "nameCountry": "Paraguay", + "phone": "", + "timezone": "America/Asuncion" + }, + { + "GMT": "-6", + "airportId": 2134, + "codeIataAirport": "ENQ", + "codeIataCity": "ENQ", + "codeIcaoAirport": "", + "codeIso2Country": "HN", + "geonameId": "0", + "latitudeAirport": 14.369167, + "longitudeAirport": -87.617226, + "nameAirport": "Coronel E Soto Cano AB", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "1", + "airportId": 2135, + "codeIataAirport": "ENS", + "codeIataCity": "ENS", + "codeIcaoAirport": "EHTW", + "codeIso2Country": "NL", + "geonameId": "6296691", + "latitudeAirport": 52.271667, + "longitudeAirport": 6.878333, + "nameAirport": "Twente", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "12", + "airportId": 2136, + "codeIataAirport": "ENT", + "codeIataCity": "ENT", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "7303959", + "latitudeAirport": 11.5, + "longitudeAirport": 162.25, + "nameAirport": "Enewetak Island", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "1", + "airportId": 2137, + "codeIataAirport": "ENU", + "codeIataCity": "ENU", + "codeIcaoAirport": "DNEN", + "codeIso2Country": "NG", + "geonameId": "2343279", + "latitudeAirport": 6.472048, + "longitudeAirport": 7.56772, + "nameAirport": "Enugu", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-7", + "airportId": 2138, + "codeIataAirport": "ENV", + "codeIataCity": "ENV", + "codeIcaoAirport": "KENV", + "codeIso2Country": "US", + "geonameId": "5784493", + "latitudeAirport": 40.733334, + "longitudeAirport": -114.03333, + "nameAirport": "Wendover", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 2139, + "codeIataAirport": "ENW", + "codeIataCity": "ENW", + "codeIcaoAirport": "KENW", + "codeIso2Country": "US", + "geonameId": "5258408", + "latitudeAirport": 42.583332, + "longitudeAirport": -87.816666, + "nameAirport": "Kenosha Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 2140, + "codeIataAirport": "ENY", + "codeIataCity": "ENY", + "codeIcaoAirport": "ZLYA", + "codeIso2Country": "CN", + "geonameId": "6301376", + "latitudeAirport": 36.639366, + "longitudeAirport": 109.55148, + "nameAirport": "Ershilipu", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 2141, + "codeIataAirport": "EOH", + "codeIataCity": "MDE", + "codeIcaoAirport": "SKMD", + "codeIso2Country": "CO", + "geonameId": "6300746", + "latitudeAirport": 6.218666, + "longitudeAirport": -75.5864, + "nameAirport": "Enrique Olaya Herrera International Airport", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "0", + "airportId": 2142, + "codeIataAirport": "EOI", + "codeIataCity": "EOI", + "codeIcaoAirport": "EGED", + "codeIso2Country": "GB", + "geonameId": "7668196", + "latitudeAirport": 59.183334, + "longitudeAirport": -2.783333, + "nameAirport": "Eday", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 2143, + "codeIataAirport": "EOK", + "codeIataCity": "EOK", + "codeIcaoAirport": "KEOK", + "codeIso2Country": "US", + "geonameId": "4863369", + "latitudeAirport": 40.458332, + "longitudeAirport": -91.43, + "nameAirport": "Keokuk", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 2144, + "codeIataAirport": "EOR", + "codeIataCity": "EOR", + "codeIcaoAirport": "SVED", + "codeIso2Country": "VE", + "geonameId": "7730179", + "latitudeAirport": 6.733333, + "longitudeAirport": -61.88333, + "nameAirport": "El Dorado", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-6", + "airportId": 2145, + "codeIataAirport": "EOS", + "codeIataCity": "EOS", + "codeIcaoAirport": "KEOS", + "codeIso2Country": "US", + "geonameId": "4400184", + "latitudeAirport": 36.86667, + "longitudeAirport": -94.36667, + "nameAirport": "Neosho", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 2146, + "codeIataAirport": "EOZ", + "codeIataCity": "EOZ", + "codeIcaoAirport": "", + "codeIso2Country": "VE", + "geonameId": "3642390", + "latitudeAirport": 7.166667, + "longitudeAirport": -69.53333, + "nameAirport": "Elorza", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-3", + "airportId": 2147, + "codeIataAirport": "EPA", + "codeIataCity": "EPA", + "codeIcaoAirport": "SADP", + "codeIso2Country": "AR", + "geonameId": "6301849", + "latitudeAirport": -34.608334, + "longitudeAirport": -58.6125, + "nameAirport": "El Palomar", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "-6", + "airportId": 2148, + "codeIataAirport": "EPG", + "codeIataCity": "EPG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5081518", + "latitudeAirport": 40.86667, + "longitudeAirport": -96.13333, + "nameAirport": "Browns", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 2149, + "codeIataAirport": "EPH", + "codeIataCity": "EPH", + "codeIcaoAirport": "KEPH", + "codeIso2Country": "US", + "geonameId": "5793836", + "latitudeAirport": 47.30417, + "longitudeAirport": -119.5125, + "nameAirport": "Ephrata", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "11", + "airportId": 2150, + "codeIataAirport": "EPI", + "codeIataCity": "EPI", + "codeIcaoAirport": "", + "codeIso2Country": "VU", + "geonameId": "0", + "latitudeAirport": -16.716667, + "longitudeAirport": 168.25, + "nameAirport": "Epi", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "1", + "airportId": 2151, + "codeIataAirport": "EPL", + "codeIataCity": "EPL", + "codeIcaoAirport": "LFSG", + "codeIso2Country": "FR", + "geonameId": "6694661", + "latitudeAirport": 48.325832, + "longitudeAirport": 6.069444, + "nameAirport": "Mirecourt", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 2152, + "codeIataAirport": "EPN", + "codeIataCity": "EPN", + "codeIcaoAirport": "", + "codeIso2Country": "CG", + "geonameId": "8298738", + "latitudeAirport": 1.366667, + "longitudeAirport": 17.533333, + "nameAirport": "Epena", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "8", + "airportId": 2153, + "codeIataAirport": "EPR", + "codeIataCity": "EPR", + "codeIcaoAirport": "YESP", + "codeIso2Country": "AU", + "geonameId": "7668711", + "latitudeAirport": -33.68248, + "longitudeAirport": 121.83039, + "nameAirport": "Esperance", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-4", + "airportId": 2154, + "codeIataAirport": "EPS", + "codeIataCity": "EPS", + "codeIcaoAirport": "MDAB", + "codeIso2Country": "DO", + "geonameId": "6943784", + "latitudeAirport": 19.25, + "longitudeAirport": -69.5, + "nameAirport": "Arroyo Barril International", + "nameCountry": "Dominican Republic", + "phone": "", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "10", + "airportId": 2155, + "codeIataAirport": "EPT", + "codeIataCity": "EPT", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299179", + "latitudeAirport": -5.033333, + "longitudeAirport": 141.66667, + "nameAirport": "Eliptamin", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "airportId": 2156, + "codeIataAirport": "EPU", + "codeIataCity": "EPU", + "codeIcaoAirport": "EEPU", + "codeIso2Country": "EE", + "geonameId": "589581", + "latitudeAirport": 58.418888, + "longitudeAirport": 24.472778, + "nameAirport": "Parnu", + "nameCountry": "Estonia", + "phone": "", + "timezone": "Europe/Tallinn" + }, + { + "GMT": "-3", + "airportId": 2157, + "codeIataAirport": "EQS", + "codeIataCity": "EQS", + "codeIcaoAirport": "SAVE", + "codeIso2Country": "AR", + "geonameId": "6300564", + "latitudeAirport": -42.90972, + "longitudeAirport": -71.1425, + "nameAirport": "Esquel", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "3", + "airportId": 2158, + "codeIataAirport": "ERA", + "codeIataCity": "ERA", + "codeIcaoAirport": "HCMU", + "codeIso2Country": "SO", + "geonameId": "7730605", + "latitudeAirport": 10.616667, + "longitudeAirport": 47.4, + "nameAirport": "Erigavo", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "9.30", + "airportId": 2159, + "codeIataAirport": "ERB", + "codeIataCity": "ERB", + "codeIcaoAirport": "YERN", + "codeIso2Country": "AU", + "geonameId": "7731008", + "latitudeAirport": -26.283333, + "longitudeAirport": 132.11667, + "nameAirport": "Ernabella", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "3", + "airportId": 2160, + "codeIataAirport": "ERC", + "codeIataCity": "ERC", + "codeIcaoAirport": "LTCD", + "codeIso2Country": "TR", + "geonameId": "6299762", + "latitudeAirport": 39.711666, + "longitudeAirport": 39.516945, + "nameAirport": "Erzincan", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "2", + "airportId": 2161, + "codeIataAirport": "ERD", + "codeIataCity": "ERD", + "codeIcaoAirport": "UKDB", + "codeIso2Country": "UA", + "geonameId": "7731009", + "latitudeAirport": 46.733334, + "longitudeAirport": 36.783333, + "nameAirport": "Berdyansk", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Zaporozhye" + }, + { + "GMT": "10", + "airportId": 2162, + "codeIataAirport": "ERE", + "codeIataCity": "ERE", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2097605", + "latitudeAirport": -6.633333, + "longitudeAirport": 143.9, + "nameAirport": "Erave", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 2163, + "codeIataAirport": "ERF", + "codeIataCity": "ERF", + "codeIcaoAirport": "EDDE", + "codeIso2Country": "DE", + "geonameId": "6296508", + "latitudeAirport": 50.974915, + "longitudeAirport": 10.961163, + "nameAirport": "Erfurt", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "airportId": 2164, + "codeIataAirport": "ERG", + "codeIataCity": "ERG", + "codeIcaoAirport": "UIKE", + "codeIso2Country": "RU", + "geonameId": "7731011", + "latitudeAirport": 61.275, + "longitudeAirport": 108.03, + "nameAirport": "Yerbogachen", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Irkutsk" + }, + { + "GMT": "0", + "airportId": 2165, + "codeIataAirport": "ERH", + "codeIataCity": "ERH", + "codeIcaoAirport": "GMFK", + "codeIso2Country": "MA", + "geonameId": "7280528", + "latitudeAirport": 31.95, + "longitudeAirport": -4.4, + "nameAirport": "Moulay Ali Cherif", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "-5", + "airportId": 2166, + "codeIataAirport": "ERI", + "codeIataCity": "ERI", + "codeIcaoAirport": "KERI", + "codeIso2Country": "US", + "geonameId": "5188856", + "latitudeAirport": 42.08314, + "longitudeAirport": -80.18203, + "nameAirport": "Erie International Airport Tom Ridge Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 2167, + "codeIataAirport": "ERL", + "codeIataCity": "ERL", + "codeIcaoAirport": "ZBER", + "codeIso2Country": "CN", + "geonameId": "8260740", + "latitudeAirport": 43.426674, + "longitudeAirport": 112.09845, + "nameAirport": "Saiwusu International", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-3", + "airportId": 2168, + "codeIataAirport": "ERM", + "codeIataCity": "ERM", + "codeIcaoAirport": "SSER", + "codeIso2Country": "BR", + "geonameId": "7668473", + "latitudeAirport": -27.641666, + "longitudeAirport": -52.275555, + "nameAirport": "Comandante Kraemer", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "airportId": 2169, + "codeIataAirport": "ERN", + "codeIataCity": "ERN", + "codeIcaoAirport": "SWEI", + "codeIso2Country": "BR", + "geonameId": "7731012", + "latitudeAirport": -6.583333, + "longitudeAirport": -69.88333, + "nameAirport": "Eirunepe", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Eirunepe" + }, + { + "GMT": "-9", + "airportId": 2170, + "codeIataAirport": "ERO", + "codeIataCity": "ERO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": -22.616667, + "longitudeAirport": 17.083332, + "nameAirport": "Coast Guard", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Juneau" + }, + { + "GMT": "10", + "airportId": 2171, + "codeIataAirport": "ERQ", + "codeIataCity": "ERQ", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -20.976667, + "longitudeAirport": 141.0086, + "nameAirport": "Elrose Mine", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 2172, + "codeIataAirport": "ERR", + "codeIataCity": "ERR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5085927", + "latitudeAirport": 44.783333, + "longitudeAirport": -71.13333, + "nameAirport": "Errol", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 2173, + "codeIataAirport": "ERS", + "codeIataCity": "WDH", + "codeIcaoAirport": "FYWE", + "codeIso2Country": "NA", + "geonameId": "3357623", + "latitudeAirport": -22.616667, + "longitudeAirport": 17.083332, + "nameAirport": "Eros", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "8", + "airportId": 2174, + "codeIataAirport": "ERT", + "codeIataCity": "ERT", + "codeIcaoAirport": "", + "codeIso2Country": "MN", + "geonameId": "8260808", + "latitudeAirport": 49.066666, + "longitudeAirport": 104.15, + "nameAirport": "Erdenet", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "10", + "airportId": 2175, + "codeIataAirport": "ERU", + "codeIataCity": "ERU", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299247", + "latitudeAirport": -8.416667, + "longitudeAirport": 147.08333, + "nameAirport": "Erume", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 2176, + "codeIataAirport": "ERV", + "codeIataCity": "ERV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4703078", + "latitudeAirport": 30.05, + "longitudeAirport": -99.13333, + "nameAirport": "Kerrville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 2177, + "codeIataAirport": "ERZ", + "codeIataCity": "ERZ", + "codeIcaoAirport": "LTCE", + "codeIso2Country": "TR", + "geonameId": "6299763", + "latitudeAirport": 39.955555, + "longitudeAirport": 41.17361, + "nameAirport": "Erzurum Hava Alani", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "10", + "airportId": 2178, + "codeIataAirport": "ESA", + "codeIataCity": "ESA", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298743", + "latitudeAirport": -9.733333, + "longitudeAirport": 150.81667, + "nameAirport": "Esa'Ala", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 2179, + "codeIataAirport": "ESB", + "codeIataCity": "ANK", + "codeIcaoAirport": "LTAC", + "codeIso2Country": "TR", + "geonameId": "6299725", + "latitudeAirport": 40.11494, + "longitudeAirport": 32.993145, + "nameAirport": "Esenboga International", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-5", + "airportId": 2180, + "codeIataAirport": "ESC", + "codeIataCity": "ESC", + "codeIcaoAirport": "KESC", + "codeIso2Country": "US", + "geonameId": "4992232", + "latitudeAirport": 45.720554, + "longitudeAirport": -87.08667, + "nameAirport": "Delta County Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-8", + "airportId": 2181, + "codeIataAirport": "ESD", + "codeIataCity": "ESD", + "codeIcaoAirport": "KORS", + "codeIso2Country": "US", + "geonameId": "5805791", + "latitudeAirport": 48.708332, + "longitudeAirport": -122.9125, + "nameAirport": "Orcas Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-8", + "airportId": 2182, + "codeIataAirport": "ESE", + "codeIataCity": "ESE", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "0", + "latitudeAirport": 31.866667, + "longitudeAirport": -116.61667, + "nameAirport": "Ensenada", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Santa_Isabel" + }, + { + "GMT": "-6", + "airportId": 2183, + "codeIataAirport": "ESF", + "codeIataCity": "AEX", + "codeIcaoAirport": "KESF", + "codeIso2Country": "US", + "geonameId": "4314531", + "latitudeAirport": 31.395, + "longitudeAirport": -92.29694, + "nameAirport": "Esler Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 2184, + "codeIataAirport": "ESG", + "codeIataCity": "ESG", + "codeIcaoAirport": "SGME", + "codeIso2Country": "PY", + "geonameId": "6300731", + "latitudeAirport": -22.033333, + "longitudeAirport": -60.61667, + "nameAirport": "Mariscal Estigarribia", + "nameCountry": "Paraguay", + "phone": "", + "timezone": "America/Asuncion" + }, + { + "GMT": "0", + "airportId": 2185, + "codeIataAirport": "ESH", + "codeIataCity": "ESH", + "codeIcaoAirport": "EGKA", + "codeIso2Country": "GB", + "geonameId": "6296596", + "latitudeAirport": 50.833332, + "longitudeAirport": -0.3, + "nameAirport": "Shoreham", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-3", + "airportId": 2186, + "codeIataAirport": "ESI", + "codeIataCity": "ESI", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "3463939", + "latitudeAirport": -15.0, + "longitudeAirport": -44.0, + "nameAirport": "Espinosa", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "3", + "airportId": 2187, + "codeIataAirport": "ESK", + "codeIataCity": "ESK", + "codeIcaoAirport": "LTBI", + "codeIso2Country": "TR", + "geonameId": "6299749", + "latitudeAirport": 39.784138, + "longitudeAirport": 30.582111, + "nameAirport": "Eskisehir", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3", + "airportId": 2188, + "codeIataAirport": "ESL", + "codeIataCity": "ESL", + "codeIcaoAirport": "URWI", + "codeIso2Country": "RU", + "geonameId": "6300997", + "latitudeAirport": 46.36667, + "longitudeAirport": 44.333332, + "nameAirport": "Elista", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-5", + "airportId": 2189, + "codeIataAirport": "ESM", + "codeIataCity": "ESM", + "codeIcaoAirport": "SEES", + "codeIso2Country": "EC", + "geonameId": "6300712", + "latitudeAirport": 0.966667, + "longitudeAirport": -79.625, + "nameAirport": "Esmeraldas", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-5", + "airportId": 2190, + "codeIataAirport": "ESN", + "codeIataCity": "ESN", + "codeIcaoAirport": "KESN", + "codeIso2Country": "US", + "geonameId": "4353968", + "latitudeAirport": 38.802776, + "longitudeAirport": -76.06778, + "nameAirport": "Easton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 2191, + "codeIataAirport": "ESO", + "codeIataCity": "ESO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5467031", + "latitudeAirport": 36.1, + "longitudeAirport": -106.03333, + "nameAirport": "Espanola", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 2192, + "codeIataAirport": "ESP", + "codeIataCity": "ESP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5214547", + "latitudeAirport": 40.983334, + "longitudeAirport": -75.2, + "nameAirport": "Birchwood-Pocono", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "airportId": 2193, + "codeIataAirport": "ESR", + "codeIataCity": "ESR", + "codeIcaoAirport": "SCES", + "codeIso2Country": "CL", + "geonameId": "3890417", + "latitudeAirport": -26.315277, + "longitudeAirport": -69.76528, + "nameAirport": "El Salvador", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "1", + "airportId": 2194, + "codeIataAirport": "ESS", + "codeIataCity": "ESS", + "codeIcaoAirport": "EDLE", + "codeIso2Country": "DE", + "geonameId": "6457352", + "latitudeAirport": 51.40389, + "longitudeAirport": 6.941667, + "nameAirport": "Essen", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "airportId": 2195, + "codeIataAirport": "EST", + "codeIataCity": "EST", + "codeIcaoAirport": "KEST", + "codeIso2Country": "US", + "geonameId": "4855709", + "latitudeAirport": 43.4, + "longitudeAirport": -94.833336, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 2196, + "codeIataAirport": "ESU", + "codeIataCity": "ESU", + "codeIcaoAirport": "GMMI", + "codeIso2Country": "MA", + "geonameId": "2549264", + "latitudeAirport": 31.3975, + "longitudeAirport": -9.681667, + "nameAirport": "Essaouira", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "-8", + "airportId": 2197, + "codeIataAirport": "ESW", + "codeIataCity": "ESW", + "codeIcaoAirport": "KESW", + "codeIso2Country": "US", + "geonameId": "5793300", + "latitudeAirport": 47.233334, + "longitudeAirport": -121.183334, + "nameAirport": "State", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 2198, + "codeIataAirport": "ETB", + "codeIataCity": "ETB", + "codeIcaoAirport": "KETB", + "codeIso2Country": "US", + "geonameId": "5278428", + "latitudeAirport": 43.416668, + "longitudeAirport": -88.183334, + "nameAirport": "West Bend", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9.30", + "airportId": 2199, + "codeIataAirport": "ETD", + "codeIataCity": "ETD", + "codeIcaoAirport": "YEDA", + "codeIso2Country": "AU", + "geonameId": "7731014", + "latitudeAirport": -27.5, + "longitudeAirport": 138.0, + "nameAirport": "Etadunna", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "3", + "airportId": 2200, + "codeIataAirport": "ETE", + "codeIataCity": "ETE", + "codeIcaoAirport": "", + "codeIso2Country": "ET", + "geonameId": "330789", + "latitudeAirport": 12.933333, + "longitudeAirport": 36.166668, + "nameAirport": "Genda Wuha", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "2", + "airportId": 2201, + "codeIataAirport": "ETH", + "codeIataCity": "ETH", + "codeIcaoAirport": "LLET", + "codeIso2Country": "IL", + "geonameId": "6299658", + "latitudeAirport": 29.555616, + "longitudeAirport": 34.95357, + "nameAirport": "Eilat", + "nameCountry": "Israel", + "phone": "", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "-6", + "airportId": 2202, + "codeIataAirport": "ETN", + "codeIataCity": "ETN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.38333, + "longitudeAirport": -98.833336, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 2203, + "codeIataAirport": "ETR", + "codeIataCity": "ETR", + "codeIcaoAirport": "LFFY", + "codeIso2Country": "EC", + "geonameId": "7668213", + "latitudeAirport": -3.452222, + "longitudeAirport": -79.96167, + "nameAirport": "Santa Rosa Regional", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-6", + "airportId": 2204, + "codeIataAirport": "ETS", + "codeIataCity": "ETS", + "codeIcaoAirport": "KEDN", + "codeIso2Country": "US", + "geonameId": "4060806", + "latitudeAirport": 31.316668, + "longitudeAirport": -85.85, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 2205, + "codeIataAirport": "ETZ", + "codeIataCity": "ETZ", + "codeIcaoAirport": "LFJL", + "codeIso2Country": "FR", + "geonameId": "6299391", + "latitudeAirport": 48.98165, + "longitudeAirport": 6.243003, + "nameAirport": "Metz-nancy-lorraine", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "13", + "airportId": 2206, + "codeIataAirport": "EUA", + "codeIataCity": "EUA", + "codeIcaoAirport": "NFTE", + "codeIso2Country": "TO", + "geonameId": "7668369", + "latitudeAirport": -21.377012, + "longitudeAirport": -174.95699, + "nameAirport": "Kaufana", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Tongatapu" + }, + { + "GMT": "8.45", + "airportId": 2207, + "codeIataAirport": "EUC", + "codeIataCity": "EUC", + "codeIcaoAirport": "YECL", + "codeIso2Country": "AU", + "geonameId": "7731015", + "latitudeAirport": -31.716667, + "longitudeAirport": 128.86667, + "nameAirport": "Eucla", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Eucla" + }, + { + "GMT": "-8", + "airportId": 2208, + "codeIataAirport": "EUE", + "codeIataCity": "EUE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5503807", + "latitudeAirport": 39.5, + "longitudeAirport": -115.916664, + "nameAirport": "Eureka", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 2209, + "codeIataAirport": "EUF", + "codeIataCity": "EUF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4060954", + "latitudeAirport": 31.9, + "longitudeAirport": -85.15, + "nameAirport": "Weedon Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 2210, + "codeIataAirport": "EUG", + "codeIataCity": "EUG", + "codeIcaoAirport": "KEUG", + "codeIso2Country": "US", + "geonameId": "5725846", + "latitudeAirport": 44.119198, + "longitudeAirport": -123.21197, + "nameAirport": "Eugene", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 2211, + "codeIataAirport": "EUM", + "codeIataCity": "EUM", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 54.066666, + "longitudeAirport": 9.966667, + "nameAirport": "Neumuenster", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "0", + "airportId": 2212, + "codeIataAirport": "EUN", + "codeIataCity": "EUN", + "codeIcaoAirport": "GMML", + "codeIso2Country": "MA", + "geonameId": "6297211", + "latitudeAirport": 27.133333, + "longitudeAirport": -13.216667, + "nameAirport": "Hassan I", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "-5", + "airportId": 2213, + "codeIataAirport": "EUO", + "codeIataCity": "EUO", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 4.38, + "longitudeAirport": -73.2, + "nameAirport": "Paratebueno", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "8", + "airportId": 2214, + "codeIataAirport": "EUQ", + "codeIataCity": "EUQ", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "0", + "latitudeAirport": 10.775, + "longitudeAirport": 121.941666, + "nameAirport": "Evelio Javier", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-4", + "airportId": 2215, + "codeIataAirport": "EUX", + "codeIataCity": "EUX", + "codeIcaoAirport": "TNCE", + "codeIso2Country": "BQ", + "geonameId": "3513734", + "latitudeAirport": 17.493055, + "longitudeAirport": -62.97778, + "nameAirport": "F D Roosevelt", + "nameCountry": "Bonaire, Saint Eustatius and Saba ", + "phone": "", + "timezone": "America/Kralendijk" + }, + { + "GMT": "9.30", + "airportId": 2216, + "codeIataAirport": "EVD", + "codeIataCity": "EVD", + "codeIcaoAirport": "YEVA", + "codeIso2Country": "AU", + "geonameId": "7731016", + "latitudeAirport": -18.016666, + "longitudeAirport": 134.86667, + "nameAirport": "Eva Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "1", + "airportId": 2217, + "codeIataAirport": "EVE", + "codeIataCity": "EVE", + "codeIcaoAirport": "ENEV", + "codeIso2Country": "NO", + "geonameId": "6296734", + "latitudeAirport": 68.496666, + "longitudeAirport": 16.679722, + "nameAirport": "Evenes", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 2218, + "codeIataAirport": "EVG", + "codeIataCity": "EVG", + "codeIcaoAirport": "ESND", + "codeIso2Country": "SE", + "geonameId": "2670061", + "latitudeAirport": 62.033333, + "longitudeAirport": 14.35, + "nameAirport": "Sveg", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "10", + "airportId": 2219, + "codeIataAirport": "EVH", + "codeIataCity": "EVH", + "codeIcaoAirport": "YEVD", + "codeIso2Country": "AU", + "geonameId": "7668712", + "latitudeAirport": -29.1, + "longitudeAirport": 153.41667, + "nameAirport": "Evans Head", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "airportId": 2220, + "codeIataAirport": "EVM", + "codeIataCity": "EVM", + "codeIcaoAirport": "KEVM", + "codeIso2Country": "US", + "geonameId": "5025978", + "latitudeAirport": 47.426388, + "longitudeAirport": -92.495834, + "nameAirport": "Eveleth", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "4", + "airportId": 2221, + "codeIataAirport": "EVN", + "codeIataCity": "EVN", + "codeIcaoAirport": "UGEE", + "codeIso2Country": "AM", + "geonameId": "799617", + "latitudeAirport": 40.15272, + "longitudeAirport": 44.39805, + "nameAirport": "Zvartnots International", + "nameCountry": "Armenia", + "phone": "", + "timezone": "Asia/Yerevan" + }, + { + "GMT": "-6", + "airportId": 2222, + "codeIataAirport": "EVV", + "codeIataCity": "EVV", + "codeIcaoAirport": "KEVV", + "codeIso2Country": "US", + "geonameId": "4257229", + "latitudeAirport": 38.046165, + "longitudeAirport": -87.52796, + "nameAirport": "Evansville Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 2223, + "codeIataAirport": "EVW", + "codeIataCity": "EVW", + "codeIcaoAirport": "KEVW", + "codeIso2Country": "US", + "geonameId": "5824809", + "latitudeAirport": 41.266666, + "longitudeAirport": -110.96667, + "nameAirport": "Evanston", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 2224, + "codeIataAirport": "EVX", + "codeIataCity": "EVX", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 49.016666, + "longitudeAirport": 1.15, + "nameAirport": "Evreux", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 2225, + "codeIataAirport": "EWB", + "codeIataCity": "EWB", + "codeIcaoAirport": "KEWB", + "codeIso2Country": "US", + "geonameId": "4945128", + "latitudeAirport": 41.676945, + "longitudeAirport": -70.95917, + "nameAirport": "New Bedford", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 2226, + "codeIataAirport": "EWD", + "codeIataCity": "EWD", + "codeIcaoAirport": "OEWD", + "codeIso2Country": "US", + "geonameId": "6300031", + "latitudeAirport": 56.45639, + "longitudeAirport": -159.76222, + "nameAirport": "Wildman Lake", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "9", + "airportId": 2227, + "codeIataAirport": "EWE", + "codeIataCity": "EWE", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731017", + "latitudeAirport": -5.483333, + "longitudeAirport": 138.08333, + "nameAirport": "Ewer", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "9", + "airportId": 2228, + "codeIataAirport": "EWI", + "codeIataCity": "EWI", + "codeIcaoAirport": "WABT", + "codeIso2Country": "ID", + "geonameId": "6301184", + "latitudeAirport": -3.966667, + "longitudeAirport": 136.33333, + "nameAirport": "Enarotali", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-6", + "airportId": 2229, + "codeIataAirport": "EWK", + "codeIataCity": "EWK", + "codeIcaoAirport": "KEWK", + "codeIso2Country": "US", + "geonameId": "4276249", + "latitudeAirport": 38.033333, + "longitudeAirport": -97.36667, + "nameAirport": "City-County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 2230, + "codeIataAirport": "EWN", + "codeIataCity": "EWN", + "codeIcaoAirport": "KEWN", + "codeIso2Country": "US", + "geonameId": "4491785", + "latitudeAirport": 35.078342, + "longitudeAirport": -77.03462, + "nameAirport": "Simmons Nott", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 2231, + "codeIataAirport": "EWO", + "codeIataCity": "EWO", + "codeIcaoAirport": "", + "codeIso2Country": "CG", + "geonameId": "2260009", + "latitudeAirport": -0.883333, + "longitudeAirport": 14.8, + "nameAirport": "Ewo", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-5", + "airportId": 2232, + "codeIataAirport": "EWR", + "codeIataCity": "NYC", + "codeIcaoAirport": "KEWR", + "codeIso2Country": "US", + "geonameId": "5101809", + "latitudeAirport": 40.68907, + "longitudeAirport": -74.17876, + "nameAirport": "Newark Liberty International", + "nameCountry": "United States", + "phone": "973-961- 6000", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 2233, + "codeIataAirport": "EXI", + "codeIataCity": "EXI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5846136", + "latitudeAirport": 58.420834, + "longitudeAirport": -135.44722, + "nameAirport": "SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Juneau" + }, + { + "GMT": "8", + "airportId": 2234, + "codeIataAirport": "EXM", + "codeIataCity": "EXM", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731018", + "latitudeAirport": -22.25, + "longitudeAirport": 114.25, + "nameAirport": "Exmouth Gulf", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "0", + "airportId": 2235, + "codeIataAirport": "EXT", + "codeIataCity": "EXT", + "codeIcaoAirport": "EGTE", + "codeIso2Country": "GB", + "geonameId": "6296648", + "latitudeAirport": 50.73111, + "longitudeAirport": -3.410968, + "nameAirport": "Exeter", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "5", + "airportId": 2236, + "codeIataAirport": "EYK", + "codeIataCity": "EYK", + "codeIcaoAirport": "USHQ", + "codeIso2Country": "RU", + "geonameId": "7730312", + "latitudeAirport": 63.696682, + "longitudeAirport": 66.70121, + "nameAirport": "Beloyarsky", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "0", + "airportId": 2237, + "codeIataAirport": "EYL", + "codeIataCity": "EYL", + "codeIcaoAirport": "GAYE", + "codeIso2Country": "ML", + "geonameId": "7668275", + "latitudeAirport": 15.133333, + "longitudeAirport": -10.566667, + "nameAirport": "Yelimane", + "nameCountry": "Mali", + "phone": "", + "timezone": "Africa/Bamako" + }, + { + "GMT": "-5", + "airportId": 2238, + "codeIataAirport": "EYP", + "codeIataCity": "EYP", + "codeIcaoAirport": "SKYP", + "codeIso2Country": "CO", + "geonameId": "6197273", + "latitudeAirport": 5.320729, + "longitudeAirport": -72.386284, + "nameAirport": "El Yopal", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-8", + "airportId": 2239, + "codeIataAirport": "EYR", + "codeIataCity": "EYR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5515507", + "latitudeAirport": 39.0, + "longitudeAirport": -119.25, + "nameAirport": "Yerington", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "airportId": 2240, + "codeIataAirport": "EYS", + "codeIataCity": "EYS", + "codeIcaoAirport": "HKES", + "codeIso2Country": "KE", + "geonameId": "7730612", + "latitudeAirport": 3.25, + "longitudeAirport": 35.966667, + "nameAirport": "Eliye Springs", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-5", + "airportId": 2241, + "codeIataAirport": "EYW", + "codeIataCity": "EYW", + "codeIcaoAirport": "KEYW", + "codeIso2Country": "US", + "geonameId": "4160818", + "latitudeAirport": 24.553574, + "longitudeAirport": -81.75501, + "nameAirport": "Key West International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 2242, + "codeIataAirport": "EZE", + "codeIataCity": "BUE", + "codeIcaoAirport": "SAEZ", + "codeIso2Country": "AR", + "geonameId": "6300524", + "latitudeAirport": -34.81273, + "longitudeAirport": -58.539833, + "nameAirport": "Ezeiza Ministro Pistarini", + "nameCountry": "Argentina", + "phone": "(54 11) 5480", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "3", + "airportId": 2243, + "codeIataAirport": "EZS", + "codeIataCity": "EZS", + "codeIcaoAirport": "LTCA", + "codeIso2Country": "TR", + "geonameId": "6299760", + "latitudeAirport": 38.608334, + "longitudeAirport": 39.291668, + "nameAirport": "Elazig", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "5", + "airportId": 2244, + "codeIataAirport": "EZV", + "codeIataCity": "EZV", + "codeIcaoAirport": "USHB", + "codeIso2Country": "RU", + "geonameId": "7730195", + "latitudeAirport": 63.924583, + "longitudeAirport": 65.04485, + "nameAirport": "Berezovo", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "0", + "airportId": 2245, + "codeIataAirport": "FAA", + "codeIataCity": "FAA", + "codeIcaoAirport": "GUFH", + "codeIso2Country": "GN", + "geonameId": "6297247", + "latitudeAirport": 10.033333, + "longitudeAirport": -10.75, + "nameAirport": "Faranah", + "nameCountry": "Guinea", + "phone": "", + "timezone": "Africa/Conakry" + }, + { + "GMT": "0", + "airportId": 2246, + "codeIataAirport": "FAB", + "codeIataCity": "FAB", + "codeIcaoAirport": "EGLF", + "codeIso2Country": "GB", + "geonameId": "6296600", + "latitudeAirport": 51.283333, + "longitudeAirport": -0.766667, + "nameAirport": "Farnborough", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-10", + "airportId": 2247, + "codeIataAirport": "FAC", + "codeIataCity": "FAC", + "codeIcaoAirport": "NTKF", + "codeIso2Country": "PF", + "geonameId": "7730703", + "latitudeAirport": -16.683332, + "longitudeAirport": -145.33333, + "nameAirport": "Faaite", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "0", + "airportId": 2248, + "codeIataAirport": "FAE", + "codeIataCity": "FAE", + "codeIcaoAirport": "EKVG", + "codeIso2Country": "FO", + "geonameId": "2610818", + "latitudeAirport": 62.066666, + "longitudeAirport": -7.266667, + "nameAirport": "Vagar", + "nameCountry": "Faroe Islands", + "phone": "", + "timezone": "Atlantic/Faroe" + }, + { + "GMT": "-5", + "airportId": 2249, + "codeIataAirport": "FAF", + "codeIataCity": "FAF", + "codeIcaoAirport": "KFAF", + "codeIso2Country": "US", + "geonameId": "4771849", + "latitudeAirport": 37.166668, + "longitudeAirport": -76.6, + "nameAirport": "Felker AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 2250, + "codeIataAirport": "FAG", + "codeIataCity": "FAG", + "codeIcaoAirport": "BIFM", + "codeIso2Country": "IS", + "geonameId": "7730428", + "latitudeAirport": 63.88333, + "longitudeAirport": -16.65, + "nameAirport": "Fagurholsmyri", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "4.30", + "airportId": 2251, + "codeIataAirport": "FAH", + "codeIataCity": "FAH", + "codeIcaoAirport": "OAFR", + "codeIso2Country": "AF", + "geonameId": "1454265", + "latitudeAirport": 32.36667, + "longitudeAirport": 62.11667, + "nameAirport": "Farah", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "-9", + "airportId": 2252, + "codeIataAirport": "FAI", + "codeIataCity": "FAI", + "codeIcaoAirport": "PAFA", + "codeIso2Country": "US", + "geonameId": "5861905", + "latitudeAirport": 64.818214, + "longitudeAirport": -147.8668, + "nameAirport": "Fairbanks International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "airportId": 2253, + "codeIataAirport": "FAJ", + "codeIataCity": "FAJ", + "codeIcaoAirport": "TJFA", + "codeIso2Country": "PR", + "geonameId": "4564946", + "latitudeAirport": 18.338888, + "longitudeAirport": -65.50222, + "nameAirport": "Diego Jimenez Torres", + "nameCountry": "Puerto Rico", + "phone": "", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "-9", + "airportId": 2254, + "codeIataAirport": "FAK", + "codeIataCity": "FAK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 57.530556, + "longitudeAirport": -135.21666, + "nameAirport": "False Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "-6", + "airportId": 2255, + "codeIataAirport": "FAM", + "codeIataCity": "FAM", + "codeIcaoAirport": "KFAM", + "codeIso2Country": "US", + "geonameId": "4386292", + "latitudeAirport": 37.780834, + "longitudeAirport": -90.42167, + "nameAirport": "Farmington Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 2256, + "codeIataAirport": "FAO", + "codeIataCity": "FAO", + "codeIcaoAirport": "LPFR", + "codeIso2Country": "PT", + "geonameId": "6299680", + "latitudeAirport": 37.020645, + "longitudeAirport": -7.968545, + "nameAirport": "Faro", + "nameCountry": "Portugal", + "phone": "+351 (0) 289", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "10", + "airportId": 2257, + "codeIataAirport": "FAQ", + "codeIataCity": "FAQ", + "codeIcaoAirport": "AYFR", + "codeIso2Country": "PG", + "geonameId": "8298995", + "latitudeAirport": -4.616667, + "longitudeAirport": 141.95833, + "nameAirport": "Freida River", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 2258, + "codeIataAirport": "FAR", + "codeIataCity": "FAR", + "codeIcaoAirport": "KFAR", + "codeIso2Country": "US", + "geonameId": "5059605", + "latitudeAirport": 46.91953, + "longitudeAirport": -96.82551, + "nameAirport": "Hector Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 2259, + "codeIataAirport": "FAS", + "codeIataCity": "FAS", + "codeIcaoAirport": "BIFF", + "codeIso2Country": "IS", + "geonameId": "7730427", + "latitudeAirport": 64.95, + "longitudeAirport": -14.016667, + "nameAirport": "Faskrudsfjordur", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-8", + "airportId": 2260, + "codeIataAirport": "FAT", + "codeIataCity": "FAT", + "codeIcaoAirport": "KFAT", + "codeIso2Country": "US", + "geonameId": "5350939", + "latitudeAirport": 36.769623, + "longitudeAirport": -119.72024, + "nameAirport": "Fresno Air Terminal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "4", + "airportId": 2261, + "codeIataAirport": "FAU", + "codeIataCity": "FAU", + "codeIcaoAirport": "", + "codeIso2Country": "OM", + "geonameId": "8298664", + "latitudeAirport": 22.3506, + "longitudeAirport": 56.4864, + "nameAirport": "Fahud", + "nameCountry": "Oman", + "phone": "", + "timezone": "Asia/Muscat" + }, + { + "GMT": "-10", + "airportId": 2262, + "codeIataAirport": "FAV", + "codeIataCity": "FAV", + "codeIcaoAirport": "NTGF", + "codeIso2Country": "PF", + "geonameId": "7730122", + "latitudeAirport": -16.053486, + "longitudeAirport": -145.65225, + "nameAirport": "Fakarava", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-5", + "airportId": 2263, + "codeIataAirport": "FAY", + "codeIataCity": "FAY", + "codeIcaoAirport": "KFAY", + "codeIso2Country": "US", + "geonameId": "4466033", + "latitudeAirport": 34.99132, + "longitudeAirport": -78.88722, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3.30", + "airportId": 2264, + "codeIataAirport": "FAZ", + "codeIataCity": "FAZ", + "codeIcaoAirport": "OISF", + "codeIso2Country": "IR", + "geonameId": "6300072", + "latitudeAirport": 28.933332, + "longitudeAirport": 53.7, + "nameAirport": "Fasa", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-4", + "airportId": 2265, + "codeIataAirport": "FBA", + "codeIataCity": "FBA", + "codeIcaoAirport": "SWOB", + "codeIso2Country": "BR", + "geonameId": "8260811", + "latitudeAirport": -2.531212, + "longitudeAirport": -66.08454, + "nameAirport": "Fonte Boa", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "4.30", + "airportId": 2266, + "codeIataAirport": "FBD", + "codeIataCity": "FBD", + "codeIcaoAirport": "OAFZ", + "codeIso2Country": "AF", + "geonameId": "6300000", + "latitudeAirport": 37.1, + "longitudeAirport": 70.566666, + "nameAirport": "Faizabad", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "-3", + "airportId": 2267, + "codeIataAirport": "FBE", + "codeIataCity": "FBE", + "codeIcaoAirport": "SSFB", + "codeIso2Country": "BR", + "geonameId": "7731020", + "latitudeAirport": -26.083332, + "longitudeAirport": -53.066666, + "nameAirport": "Francisco Beltrao", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "airportId": 2268, + "codeIataAirport": "FBG", + "codeIataCity": "FBG", + "codeIcaoAirport": "KFBG", + "codeIso2Country": "US", + "geonameId": "4454240", + "latitudeAirport": 35.166668, + "longitudeAirport": -79.01667, + "nameAirport": "Simmons AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 2269, + "codeIataAirport": "FBK", + "codeIataCity": "FAI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 64.833336, + "longitudeAirport": -147.7, + "nameAirport": "Ft Wainwright", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 2270, + "codeIataAirport": "FBL", + "codeIataCity": "FBL", + "codeIcaoAirport": "KFBL", + "codeIso2Country": "US", + "geonameId": "5026298", + "latitudeAirport": 44.3, + "longitudeAirport": -93.26667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 2271, + "codeIataAirport": "FBM", + "codeIataCity": "FBM", + "codeIcaoAirport": "FZQA", + "codeIso2Country": "CD", + "geonameId": "6297154", + "latitudeAirport": -11.590833, + "longitudeAirport": 27.529167, + "nameAirport": "Luano", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-7", + "airportId": 2272, + "codeIataAirport": "FBR", + "codeIataCity": "FBR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5825393", + "latitudeAirport": 41.316666, + "longitudeAirport": -110.38333, + "nameAirport": "Fort Bridger", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-8", + "airportId": 2273, + "codeIataAirport": "FBS", + "codeIataCity": "FBS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5795104", + "latitudeAirport": 48.54361, + "longitudeAirport": -123.00611, + "nameAirport": "Friday Harbor SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 2274, + "codeIataAirport": "FBY", + "codeIataCity": "FBY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.13333, + "longitudeAirport": -97.183334, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 2275, + "codeIataAirport": "FCA", + "codeIataCity": "FCA", + "codeIcaoAirport": "KGPI", + "codeIso2Country": "US", + "geonameId": "5660340", + "latitudeAirport": 48.307304, + "longitudeAirport": -114.25315, + "nameAirport": "Glacier Park International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "2", + "airportId": 2276, + "codeIataAirport": "FCB", + "codeIataCity": "FCB", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "1004303", + "latitudeAirport": -28.825, + "longitudeAirport": 27.908333, + "nameAirport": "Ficksburg Sentra Oes", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-8", + "airportId": 2277, + "codeIataAirport": "FCH", + "codeIataCity": "FAT", + "codeIcaoAirport": "KFCH", + "codeIso2Country": "US", + "geonameId": "5350997", + "latitudeAirport": 36.733334, + "longitudeAirport": -119.78333, + "nameAirport": "Fresno-Chandler", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 2278, + "codeIataAirport": "FCM", + "codeIataCity": "MSP", + "codeIcaoAirport": "KFCM", + "codeIso2Country": "US", + "geonameId": "5027008", + "latitudeAirport": 44.983334, + "longitudeAirport": -93.26667, + "nameAirport": "Flying Cloud", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 2279, + "codeIataAirport": "FCN", + "codeIataCity": "FCN", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2939658", + "latitudeAirport": 53.783054, + "longitudeAirport": 8.666667, + "nameAirport": "Cuxhaven/Nordholz", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 2280, + "codeIataAirport": "FCO", + "codeIataCity": "ROM", + "codeIcaoAirport": "LIRF", + "codeIso2Country": "IT", + "geonameId": "6299619", + "latitudeAirport": 41.794594, + "longitudeAirport": 12.250346, + "nameAirport": "Leonardo Da Vinci (Fiumicino)", + "nameCountry": "Italy", + "phone": "+39 06-65951", + "timezone": "Europe/Rome" + }, + { + "GMT": "-7", + "airportId": 2281, + "codeIataAirport": "FCS", + "codeIataCity": "COS", + "codeIcaoAirport": "KFCS", + "codeIso2Country": "US", + "geonameId": "5415673", + "latitudeAirport": 38.833332, + "longitudeAirport": -104.816666, + "nameAirport": "Butts AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-8", + "airportId": 2282, + "codeIataAirport": "FCT", + "codeIataCity": "YKM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 46.6, + "longitudeAirport": -120.51667, + "nameAirport": "Firing Center AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 2283, + "codeIataAirport": "FCY", + "codeIataCity": "FCY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4111382", + "latitudeAirport": 34.95, + "longitudeAirport": -90.76667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 2284, + "codeIataAirport": "FDE", + "codeIataCity": "FDE", + "codeIcaoAirport": "ENBL", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 61.39178, + "longitudeAirport": 5.762073, + "nameAirport": "Bringeland", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-4", + "airportId": 2285, + "codeIataAirport": "FDF", + "codeIataCity": "FDF", + "codeIcaoAirport": "TFFF", + "codeIso2Country": "MQ", + "geonameId": "3570672", + "latitudeAirport": 14.596061, + "longitudeAirport": -60.999947, + "nameAirport": "Lamentin", + "nameCountry": "Martinique", + "phone": "", + "timezone": "America/Martinique" + }, + { + "GMT": "1", + "airportId": 2286, + "codeIataAirport": "FDH", + "codeIataCity": "FDH", + "codeIcaoAirport": "EDNY", + "codeIso2Country": "DE", + "geonameId": "3208823", + "latitudeAirport": 47.672775, + "longitudeAirport": 9.523482, + "nameAirport": "Friedrichshafen", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "airportId": 2287, + "codeIataAirport": "FDK", + "codeIataCity": "FDK", + "codeIcaoAirport": "KFDK", + "codeIso2Country": "US", + "geonameId": "4355613", + "latitudeAirport": 39.416668, + "longitudeAirport": -77.416664, + "nameAirport": "Frederick Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 2288, + "codeIataAirport": "FDR", + "codeIataCity": "FDR", + "codeIcaoAirport": "KFDR", + "codeIso2Country": "US", + "geonameId": "4537294", + "latitudeAirport": 34.38333, + "longitudeAirport": -99.01667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 2289, + "codeIataAirport": "FDU", + "codeIataCity": "FDU", + "codeIcaoAirport": "FZBO", + "codeIso2Country": "CD", + "geonameId": "6297143", + "latitudeAirport": -3.305556, + "longitudeAirport": 17.383333, + "nameAirport": "Bandundu", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "-5", + "airportId": 2290, + "codeIataAirport": "FDY", + "codeIataCity": "FDY", + "codeIcaoAirport": "KFDY", + "codeIso2Country": "US", + "geonameId": "5153925", + "latitudeAirport": 41.033333, + "longitudeAirport": -84.53333, + "nameAirport": "Findlay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 2291, + "codeIataAirport": "FEA", + "codeIataCity": "FEA", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "7670886", + "latitudeAirport": 60.583332, + "longitudeAirport": -0.966667, + "nameAirport": "Fetlar", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "5.45", + "airportId": 2292, + "codeIataAirport": "FEB", + "codeIataCity": "FEB", + "codeIcaoAirport": "VNSR", + "codeIso2Country": "NP", + "geonameId": "7668630", + "latitudeAirport": 29.233334, + "longitudeAirport": 81.21667, + "nameAirport": "Sanfebagar", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-3", + "airportId": 2293, + "codeIataAirport": "FEC", + "codeIataCity": "FEC", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8298693", + "latitudeAirport": -12.2025, + "longitudeAirport": -38.906113, + "nameAirport": "Feira De Santana", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "5", + "airportId": 2294, + "codeIataAirport": "FEG", + "codeIataCity": "FEG", + "codeIcaoAirport": "UTKF", + "codeIso2Country": "UZ", + "geonameId": "7668545", + "latitudeAirport": 40.350277, + "longitudeAirport": 71.73361, + "nameAirport": "Fergana", + "nameCountry": "Uzbekistan", + "phone": "", + "timezone": "Asia/Tashkent" + }, + { + "GMT": "0", + "airportId": 2295, + "codeIataAirport": "FEK", + "codeIataCity": "FEK", + "codeIcaoAirport": "DIFK", + "codeIso2Country": "CI", + "geonameId": "7668184", + "latitudeAirport": 9.6, + "longitudeAirport": -5.2, + "nameAirport": "Ferkessedougou", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "1", + "airportId": 2296, + "codeIataAirport": "FEL", + "codeIataCity": "FEL", + "codeIcaoAirport": "ETSF", + "codeIso2Country": "DE", + "geonameId": "3208388", + "latitudeAirport": 48.2, + "longitudeAirport": 11.266667, + "nameAirport": "Fuerstenfeldbruck", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-2", + "airportId": 2297, + "codeIataAirport": "FEN", + "codeIataCity": "FEN", + "codeIcaoAirport": "SBFN", + "codeIso2Country": "BR", + "geonameId": "6300625", + "latitudeAirport": -3.85, + "longitudeAirport": -32.416668, + "nameAirport": "Fernando De Noronha", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Noronha" + }, + { + "GMT": "-6", + "airportId": 2298, + "codeIataAirport": "FEP", + "codeIataCity": "FEP", + "codeIcaoAirport": "KFEP", + "codeIso2Country": "US", + "geonameId": "4893171", + "latitudeAirport": 42.283333, + "longitudeAirport": -89.6, + "nameAirport": "Albertus", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 2299, + "codeIataAirport": "FES", + "codeIataCity": "FES", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 36.466667, + "longitudeAirport": -6.183333, + "nameAirport": "San Fernando", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-6", + "airportId": 2300, + "codeIataAirport": "FET", + "codeIataCity": "FET", + "codeIcaoAirport": "KFET", + "codeIso2Country": "US", + "geonameId": "5068747", + "latitudeAirport": 41.433334, + "longitudeAirport": -96.5, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 2301, + "codeIataAirport": "FEW", + "codeIataCity": "CYS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.13333, + "longitudeAirport": -104.816666, + "nameAirport": "Warren AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "0", + "airportId": 2302, + "codeIataAirport": "FEZ", + "codeIataCity": "FEZ", + "codeIcaoAirport": "GMFF", + "codeIso2Country": "MA", + "geonameId": "6297200", + "latitudeAirport": 33.93079, + "longitudeAirport": -4.982138, + "nameAirport": "Sais", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "-5", + "airportId": 2303, + "codeIataAirport": "FFA", + "codeIataCity": "FFA", + "codeIcaoAirport": "KFFA", + "codeIso2Country": "US", + "geonameId": "4474274", + "latitudeAirport": 36.016666, + "longitudeAirport": -75.666664, + "nameAirport": "First Flight", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 2304, + "codeIataAirport": "FFD", + "codeIataCity": "FFD", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2649741", + "latitudeAirport": 51.733334, + "longitudeAirport": -1.783333, + "nameAirport": "RAF Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 2305, + "codeIataAirport": "FFL", + "codeIataCity": "FFL", + "codeIcaoAirport": "KFFL", + "codeIso2Country": "US", + "geonameId": "4855981", + "latitudeAirport": 40.933334, + "longitudeAirport": -91.95, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 2306, + "codeIataAirport": "FFM", + "codeIataCity": "FFM", + "codeIcaoAirport": "KFFM", + "codeIso2Country": "US", + "geonameId": "5026417", + "latitudeAirport": 46.283333, + "longitudeAirport": -96.066666, + "nameAirport": "Fergus Falls", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 2307, + "codeIataAirport": "FFO", + "codeIataCity": "DAY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.75, + "longitudeAirport": -84.2, + "nameAirport": "Patterson AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 2308, + "codeIataAirport": "FFT", + "codeIataCity": "FFT", + "codeIcaoAirport": "KFFT", + "codeIso2Country": "US", + "geonameId": "4292188", + "latitudeAirport": 38.18222, + "longitudeAirport": -84.905, + "nameAirport": "Capital City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "airportId": 2309, + "codeIataAirport": "FFU", + "codeIataCity": "FFU", + "codeIcaoAirport": "SCFT", + "codeIso2Country": "CL", + "geonameId": "7731022", + "latitudeAirport": -43.2, + "longitudeAirport": -71.816666, + "nameAirport": "Futaleufu", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "0", + "airportId": 2310, + "codeIataAirport": "FGD", + "codeIataCity": "FGD", + "codeIcaoAirport": "GQPF", + "codeIso2Country": "MR", + "geonameId": "7668289", + "latitudeAirport": 22.675, + "longitudeAirport": -12.731944, + "nameAirport": "Fderik", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "13", + "airportId": 2311, + "codeIataAirport": "FGI", + "codeIataCity": "APW", + "codeIcaoAirport": "NSAP", + "codeIso2Country": "WS", + "geonameId": "7667884", + "latitudeAirport": -13.833333, + "longitudeAirport": -171.73334, + "nameAirport": "Fagali I", + "nameCountry": "Samoa", + "phone": "", + "timezone": "Pacific/Apia" + }, + { + "GMT": "12", + "airportId": 2312, + "codeIataAirport": "FGL", + "codeIataCity": "FGL", + "codeIcaoAirport": "", + "codeIso2Country": "NZ", + "geonameId": "2179565", + "latitudeAirport": -43.466667, + "longitudeAirport": 170.01666, + "nameAirport": "Fox Glacier", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "1", + "airportId": 2313, + "codeIataAirport": "FGR", + "codeIataCity": "FGR", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "2517595", + "latitudeAirport": 36.533333, + "longitudeAirport": -4.633333, + "nameAirport": "Fuengirola", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-10", + "airportId": 2314, + "codeIataAirport": "FGU", + "codeIataCity": "FGU", + "codeIcaoAirport": "NTGB", + "codeIso2Country": "PF", + "geonameId": "7730120", + "latitudeAirport": -16.05, + "longitudeAirport": -141.83333, + "nameAirport": "Fangatau", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-7", + "airportId": 2315, + "codeIataAirport": "FHU", + "codeIataCity": "FHU", + "codeIcaoAirport": "KFHU", + "codeIso2Country": "US", + "geonameId": "7668305", + "latitudeAirport": 31.588888, + "longitudeAirport": -110.343056, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "-10", + "airportId": 2316, + "codeIataAirport": "FHZ", + "codeIataCity": "FHZ", + "codeIcaoAirport": "NTKH", + "codeIso2Country": "PF", + "geonameId": "7730704", + "latitudeAirport": -15.99095, + "longitudeAirport": -140.16446, + "nameAirport": "Fakahina", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-9", + "airportId": 2317, + "codeIataAirport": "FIC", + "codeIataCity": "FIC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299170", + "latitudeAirport": 55.77778, + "longitudeAirport": -131.5375, + "nameAirport": "Fire Cove", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Juneau" + }, + { + "GMT": "-5", + "airportId": 2318, + "codeIataAirport": "FID", + "codeIataCity": "FID", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5117263", + "latitudeAirport": 41.0, + "longitudeAirport": -72.0, + "nameAirport": "Elizabeth Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 2319, + "codeIataAirport": "FIE", + "codeIataCity": "FIE", + "codeIcaoAirport": "EGEF", + "codeIso2Country": "GB", + "geonameId": "7668197", + "latitudeAirport": 59.5, + "longitudeAirport": -1.666667, + "nameAirport": "Fair Isle", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 2320, + "codeIataAirport": "FIG", + "codeIataCity": "FIG", + "codeIcaoAirport": "GUFA", + "codeIso2Country": "GN", + "geonameId": "7730087", + "latitudeAirport": 10.35, + "longitudeAirport": -13.566667, + "nameAirport": "Fria", + "nameCountry": "Guinea", + "phone": "", + "timezone": "Africa/Conakry" + }, + { + "GMT": "1", + "airportId": 2321, + "codeIataAirport": "FIH", + "codeIataCity": "FIH", + "codeIcaoAirport": "FZAA", + "codeIso2Country": "CD", + "geonameId": "2314302", + "latitudeAirport": -4.389588, + "longitudeAirport": 15.447338, + "nameAirport": "N?djili International", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "9.30", + "airportId": 2322, + "codeIataAirport": "FIK", + "codeIataCity": "FIK", + "codeIcaoAirport": "YFNE", + "codeIso2Country": "AU", + "geonameId": "7731023", + "latitudeAirport": -25.566668, + "longitudeAirport": 134.58333, + "nameAirport": "Finke", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-7", + "airportId": 2323, + "codeIataAirport": "FIL", + "codeIataCity": "FIL", + "codeIcaoAirport": "KFOM", + "codeIso2Country": "US", + "geonameId": "5539099", + "latitudeAirport": 38.958332, + "longitudeAirport": -112.3625, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "airportId": 2324, + "codeIataAirport": "FIN", + "codeIataCity": "FIN", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731024", + "latitudeAirport": -6.6275, + "longitudeAirport": 147.86389, + "nameAirport": "Finschhafen", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 2325, + "codeIataAirport": "FIV", + "codeIataCity": "FIV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 57.266666, + "longitudeAirport": -133.63333, + "nameAirport": "Five Finger", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Juneau" + }, + { + "GMT": "8", + "airportId": 2326, + "codeIataAirport": "FIZ", + "codeIataCity": "FIZ", + "codeIcaoAirport": "YFTZ", + "codeIso2Country": "AU", + "geonameId": "7730256", + "latitudeAirport": -18.178333, + "longitudeAirport": 125.55417, + "nameAirport": "Fitzroy Crossing", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "4", + "airportId": 2327, + "codeIataAirport": "FJR", + "codeIataCity": "FJR", + "codeIcaoAirport": "OMFJ", + "codeIso2Country": "AE", + "geonameId": "6300097", + "latitudeAirport": 25.109444, + "longitudeAirport": 56.330555, + "nameAirport": "Al-Fujairah International", + "nameCountry": "United Arab Emirates", + "phone": "", + "timezone": "Asia/Dubai" + }, + { + "GMT": "1", + "airportId": 2328, + "codeIataAirport": "FKB", + "codeIataCity": "FKB", + "codeIcaoAirport": "EDSB", + "codeIso2Country": "DE", + "geonameId": "6296527", + "latitudeAirport": 48.781033, + "longitudeAirport": 8.089752, + "nameAirport": "Karlsruhe/Baden-Baden", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "2", + "airportId": 2329, + "codeIataAirport": "FKI", + "codeIataCity": "FKI", + "codeIcaoAirport": "FZIC", + "codeIso2Country": "CD", + "geonameId": "7668270", + "latitudeAirport": 0.516667, + "longitudeAirport": 25.2, + "nameAirport": "Kisangani", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "9", + "airportId": 2330, + "codeIataAirport": "FKJ", + "codeIataCity": "FKJ", + "codeIcaoAirport": "RJNF", + "codeIso2Country": "JP", + "geonameId": "6300364", + "latitudeAirport": 36.13972, + "longitudeAirport": 136.22667, + "nameAirport": "Fukui", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "airportId": 2331, + "codeIataAirport": "FKL", + "codeIataCity": "FKL", + "codeIcaoAirport": "KFKL", + "codeIso2Country": "US", + "geonameId": "5184072", + "latitudeAirport": 41.379166, + "longitudeAirport": -79.85972, + "nameAirport": "Chess-Lambertin", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 2332, + "codeIataAirport": "FKN", + "codeIataCity": "FKN", + "codeIcaoAirport": "KFKN", + "codeIso2Country": "US", + "geonameId": "4760018", + "latitudeAirport": 36.683334, + "longitudeAirport": -76.933334, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "airportId": 2333, + "codeIataAirport": "FKQ", + "codeIataCity": "FKQ", + "codeIcaoAirport": "WASF", + "codeIso2Country": "ID", + "geonameId": "6619356", + "latitudeAirport": -2.916667, + "longitudeAirport": 132.3, + "nameAirport": "Fak Fak", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "9", + "airportId": 2334, + "codeIataAirport": "FKS", + "codeIataCity": "FKS", + "codeIcaoAirport": "RJSF", + "codeIso2Country": "JP", + "geonameId": "6300391", + "latitudeAirport": 37.226665, + "longitudeAirport": 140.43279, + "nameAirport": "Fukushima Airport", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "airportId": 2335, + "codeIataAirport": "FLA", + "codeIataCity": "FLA", + "codeIcaoAirport": "SKFL", + "codeIso2Country": "CO", + "geonameId": "7668458", + "latitudeAirport": 1.588889, + "longitudeAirport": -75.55889, + "nameAirport": "Capitolio", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "airportId": 2336, + "codeIataAirport": "FLB", + "codeIataCity": "FLB", + "codeIcaoAirport": "SNQG", + "codeIso2Country": "BR", + "geonameId": "7731027", + "latitudeAirport": -6.8, + "longitudeAirport": -43.033333, + "nameAirport": "Cangapara", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "10", + "airportId": 2337, + "codeIataAirport": "FLC", + "codeIataCity": "FLC", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2166893", + "latitudeAirport": -36.833332, + "longitudeAirport": 143.28334, + "nameAirport": "Falls Creek", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-6", + "airportId": 2338, + "codeIataAirport": "FLD", + "codeIataCity": "FLD", + "codeIcaoAirport": "KFLD", + "codeIso2Country": "US", + "geonameId": "5253357", + "latitudeAirport": 43.771667, + "longitudeAirport": -88.48444, + "nameAirport": "Fond Du Lac", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 2339, + "codeIataAirport": "FLF", + "codeIataCity": "FLF", + "codeIcaoAirport": "EDXF", + "codeIso2Country": "DE", + "geonameId": "3208574", + "latitudeAirport": 54.77222, + "longitudeAirport": 9.383333, + "nameAirport": "Schaferhaus", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-7", + "airportId": 2340, + "codeIataAirport": "FLG", + "codeIataCity": "GCN", + "codeIcaoAirport": "KFLG", + "codeIso2Country": "US", + "geonameId": "5294829", + "latitudeAirport": 35.13778, + "longitudeAirport": -111.67167, + "nameAirport": "Pulliam Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "0", + "airportId": 2341, + "codeIataAirport": "FLH", + "codeIataCity": "FLH", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "7731028", + "latitudeAirport": 58.5, + "longitudeAirport": -3.0, + "nameAirport": "Flotta", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 2342, + "codeIataAirport": "FLI", + "codeIataCity": "FLI", + "codeIcaoAirport": "", + "codeIso2Country": "IS", + "geonameId": "3417363", + "latitudeAirport": 65.98333, + "longitudeAirport": -23.7, + "nameAirport": "Flateyri", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-9", + "airportId": 2343, + "codeIataAirport": "FLJ", + "codeIataCity": "FLJ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 60.0325, + "longitudeAirport": -148.00833, + "nameAirport": "Falls Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 2344, + "codeIataAirport": "FLL", + "codeIataCity": "FLL", + "codeIcaoAirport": "KFLL", + "codeIso2Country": "US", + "geonameId": "4155976", + "latitudeAirport": 26.071491, + "longitudeAirport": -80.144905, + "nameAirport": "Fort Lauderdale–Hollywood International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "airportId": 2345, + "codeIataAirport": "FLM", + "codeIataCity": "FLM", + "codeIcaoAirport": "SGFI", + "codeIso2Country": "PY", + "geonameId": "7731029", + "latitudeAirport": -22.35, + "longitudeAirport": -60.033333, + "nameAirport": "Filadelfia", + "nameCountry": "Paraguay", + "phone": "", + "timezone": "America/Asuncion" + }, + { + "GMT": "-3", + "airportId": 2346, + "codeIataAirport": "FLN", + "codeIataCity": "FLN", + "codeIcaoAirport": "SBFL", + "codeIso2Country": "BR", + "geonameId": "6300624", + "latitudeAirport": -27.664446, + "longitudeAirport": -48.5452, + "nameAirport": "Hercilio Luz", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "airportId": 2347, + "codeIataAirport": "FLO", + "codeIataCity": "FLO", + "codeIcaoAirport": "KFLO", + "codeIso2Country": "US", + "geonameId": "4578758", + "latitudeAirport": 34.18889, + "longitudeAirport": -79.72444, + "nameAirport": "Florence", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 2348, + "codeIataAirport": "FLP", + "codeIataCity": "FLP", + "codeIcaoAirport": "KFLP", + "codeIso2Country": "US", + "geonameId": "4120528", + "latitudeAirport": 36.3, + "longitudeAirport": -92.583336, + "nameAirport": "Flippin", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 2349, + "codeIataAirport": "FLR", + "codeIataCity": "FLR", + "codeIcaoAirport": "LIRQ", + "codeIso2Country": "IT", + "geonameId": "6299629", + "latitudeAirport": 43.802128, + "longitudeAirport": 11.201989, + "nameAirport": "Peretola", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "10", + "airportId": 2350, + "codeIataAirport": "FLS", + "codeIataCity": "FLS", + "codeIcaoAirport": "YFLI", + "codeIso2Country": "AU", + "geonameId": "7731030", + "latitudeAirport": -40.095, + "longitudeAirport": 147.99667, + "nameAirport": "Flinders Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Hobart" + }, + { + "GMT": "-9", + "airportId": 2351, + "codeIataAirport": "FLT", + "codeIataCity": "FLT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 62.454166, + "longitudeAirport": -157.98666, + "nameAirport": "Flat", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 2352, + "codeIataAirport": "FLV", + "codeIataCity": "FLV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.36667, + "longitudeAirport": -94.916664, + "nameAirport": "Sherman AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-1", + "airportId": 2353, + "codeIataAirport": "FLW", + "codeIataCity": "FLW", + "codeIcaoAirport": "LPFL", + "codeIso2Country": "PT", + "geonameId": "6299679", + "latitudeAirport": 39.466667, + "longitudeAirport": -31.15, + "nameAirport": "Santa Cruz", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Atlantic/Azores" + }, + { + "GMT": "-8", + "airportId": 2354, + "codeIataAirport": "FLX", + "codeIataCity": "NFL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.466667, + "longitudeAirport": -118.78333, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 2355, + "codeIataAirport": "FLY", + "codeIataCity": "FLY", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2166675", + "latitudeAirport": -35.65, + "longitudeAirport": 145.58333, + "nameAirport": "Finley", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-3", + "airportId": 2356, + "codeIataAirport": "FMA", + "codeIataCity": "FMA", + "codeIcaoAirport": "SARF", + "codeIso2Country": "AR", + "geonameId": "6300548", + "latitudeAirport": -26.212778, + "longitudeAirport": -58.235, + "nameAirport": "El Pucu", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-9", + "airportId": 2357, + "codeIataAirport": "FMC", + "codeIataCity": "FMC", + "codeIcaoAirport": "PAFV", + "codeIso2Country": "US", + "geonameId": "5878602", + "latitudeAirport": 66.916664, + "longitudeAirport": -149.84166, + "nameAirport": "Five Mile", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 2358, + "codeIataAirport": "FME", + "codeIataCity": "FME", + "codeIcaoAirport": "KFME", + "codeIso2Country": "US", + "geonameId": "4370573", + "latitudeAirport": 39.103863, + "longitudeAirport": -76.84414, + "nameAirport": "Tipton AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 2359, + "codeIataAirport": "FMG", + "codeIataCity": "FMG", + "codeIcaoAirport": "MRFL", + "codeIso2Country": "CR", + "geonameId": "7730677", + "latitudeAirport": 10.416667, + "longitudeAirport": -85.78333, + "nameAirport": "Flamingo", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-5", + "airportId": 2360, + "codeIataAirport": "FMH", + "codeIataCity": "FMH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.666668, + "longitudeAirport": -70.55, + "nameAirport": "Otis AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 2361, + "codeIataAirport": "FMI", + "codeIataCity": "FMI", + "codeIcaoAirport": "FZRF", + "codeIso2Country": "CD", + "geonameId": "6297157", + "latitudeAirport": -5.878333, + "longitudeAirport": 29.245277, + "nameAirport": "Kalemie", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "1", + "airportId": 2362, + "codeIataAirport": "FMM", + "codeIataCity": "FMM", + "codeIcaoAirport": "EDJA", + "codeIso2Country": "DE", + "geonameId": "6941441", + "latitudeAirport": 47.98861, + "longitudeAirport": 10.239444, + "nameAirport": "Memmingen-Allgäu", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-7", + "airportId": 2363, + "codeIataAirport": "FMN", + "codeIataCity": "FMN", + "codeIcaoAirport": "KFMN", + "codeIso2Country": "US", + "geonameId": "5468218", + "latitudeAirport": 36.74111, + "longitudeAirport": -108.229164, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 2364, + "codeIataAirport": "FMO", + "codeIataCity": "FMO", + "codeIcaoAirport": "EDDG", + "codeIso2Country": "DE", + "geonameId": "6296509", + "latitudeAirport": 52.130054, + "longitudeAirport": 7.694928, + "nameAirport": "Münster Osnabrück International", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "airportId": 2365, + "codeIataAirport": "FMS", + "codeIataCity": "FMS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4857507", + "latitudeAirport": 40.65889, + "longitudeAirport": -91.3275, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 2366, + "codeIataAirport": "FMU", + "codeIataCity": "FMU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5727038", + "latitudeAirport": 43.98526, + "longitudeAirport": -124.11047, + "nameAirport": "Florence Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 2367, + "codeIataAirport": "FMY", + "codeIataCity": "FMY", + "codeIcaoAirport": "KFMY", + "codeIso2Country": "US", + "geonameId": "4167468", + "latitudeAirport": 26.583332, + "longitudeAirport": -81.86667, + "nameAirport": "Page Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 2368, + "codeIataAirport": "FNA", + "codeIataCity": "FNA", + "codeIcaoAirport": "GFLL", + "codeIso2Country": "SL", + "geonameId": "2409306", + "latitudeAirport": 8.6175, + "longitudeAirport": -13.196944, + "nameAirport": "Lungi International", + "nameCountry": "Sierra Leone", + "phone": "", + "timezone": "Africa/Freetown" + }, + { + "GMT": "1", + "airportId": 2369, + "codeIataAirport": "FNB", + "codeIataCity": "FNB", + "codeIcaoAirport": "ETNU", + "codeIso2Country": "DE", + "geonameId": "6296862", + "latitudeAirport": 53.60278, + "longitudeAirport": 13.307222, + "nameAirport": "Neubrandenburg", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "0", + "airportId": 2370, + "codeIataAirport": "FNC", + "codeIataCity": "FNC", + "codeIcaoAirport": "LPMA", + "codeIso2Country": "PT", + "geonameId": "6301791", + "latitudeAirport": 32.693123, + "longitudeAirport": -16.775635, + "nameAirport": "Madeira", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Atlantic/Madeira" + }, + { + "GMT": "10", + "airportId": 2371, + "codeIataAirport": "FNE", + "codeIataCity": "FNE", + "codeIcaoAirport": "AYFA", + "codeIso2Country": "PG", + "geonameId": "8298943", + "latitudeAirport": -8.6, + "longitudeAirport": 147.23334, + "nameAirport": "Fane", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 2372, + "codeIataAirport": "FNG", + "codeIataCity": "FNG", + "codeIcaoAirport": "DFEF", + "codeIso2Country": "BF", + "geonameId": "6296408", + "latitudeAirport": 12.066667, + "longitudeAirport": 0.35, + "nameAirport": "Fada Ngourma", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "3", + "airportId": 2373, + "codeIataAirport": "FNH", + "codeIataCity": "FNH", + "codeIcaoAirport": "HAFN", + "codeIso2Country": "ET", + "geonameId": "7730586", + "latitudeAirport": 9.583333, + "longitudeAirport": 37.433334, + "nameAirport": "Fincha", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "1", + "airportId": 2374, + "codeIataAirport": "FNI", + "codeIataCity": "FNI", + "codeIcaoAirport": "LFTW", + "codeIso2Country": "FR", + "geonameId": "6301776", + "latitudeAirport": 43.75, + "longitudeAirport": 4.416667, + "nameAirport": "Garons", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "8.30", + "airportId": 2375, + "codeIataAirport": "FNJ", + "codeIataCity": "FNJ", + "codeIcaoAirport": "ZKPY", + "codeIso2Country": "KP", + "geonameId": "6301371", + "latitudeAirport": 39.2, + "longitudeAirport": 125.666664, + "nameAirport": "Sunan International", + "nameCountry": "North Korea", + "phone": "", + "timezone": "Asia/Pyongyang" + }, + { + "GMT": "-9", + "airportId": 2376, + "codeIataAirport": "FNK", + "codeIataCity": "FNK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8260809", + "latitudeAirport": 69.5, + "longitudeAirport": -147.58333, + "nameAirport": "Fin Creek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "airportId": 2377, + "codeIataAirport": "FNL", + "codeIataCity": "FNL", + "codeIcaoAirport": "KFNL", + "codeIso2Country": "US", + "geonameId": "5577151", + "latitudeAirport": 40.583332, + "longitudeAirport": -105.083336, + "nameAirport": "Municipalcipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "airportId": 2378, + "codeIataAirport": "FNR", + "codeIataCity": "FNR", + "codeIcaoAirport": "PANR", + "codeIso2Country": "US", + "geonameId": "5846477", + "latitudeAirport": 58.333332, + "longitudeAirport": -134.58333, + "nameAirport": "SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Juneau" + }, + { + "GMT": "-5", + "airportId": 2379, + "codeIataAirport": "FNT", + "codeIataCity": "FNT", + "codeIcaoAirport": "KFNT", + "codeIso2Country": "US", + "geonameId": "4992982", + "latitudeAirport": 42.973812, + "longitudeAirport": -83.73891, + "nameAirport": "Bishop International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "1", + "airportId": 2380, + "codeIataAirport": "FNU", + "codeIataCity": "FNU", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "2523964", + "latitudeAirport": 39.90306, + "longitudeAirport": 8.59194, + "nameAirport": "Fenosu", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "0", + "airportId": 2381, + "codeIataAirport": "FOA", + "codeIataCity": "FOA", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "7670763", + "latitudeAirport": 60.166668, + "longitudeAirport": -2.083333, + "nameAirport": "Foula", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-8", + "airportId": 2382, + "codeIataAirport": "FOB", + "codeIataCity": "FOB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.474445, + "longitudeAirport": -123.79444, + "nameAirport": "Fort Bragg", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 2383, + "codeIataAirport": "FOC", + "codeIataCity": "FOC", + "codeIcaoAirport": "ZSFZ", + "codeIso2Country": "CN", + "geonameId": "6301381", + "latitudeAirport": 25.93123, + "longitudeAirport": 119.66923, + "nameAirport": "Fuzhou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 2384, + "codeIataAirport": "FOD", + "codeIataCity": "FOD", + "codeIcaoAirport": "KFOD", + "codeIso2Country": "US", + "geonameId": "4857495", + "latitudeAirport": 42.5525, + "longitudeAirport": -94.18972, + "nameAirport": "Fort Dodge Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 2385, + "codeIataAirport": "FOE", + "codeIataCity": "TOP", + "codeIcaoAirport": "KFOE", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.9525, + "longitudeAirport": -95.6625, + "nameAirport": "Forbes Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 2386, + "codeIataAirport": "FOG", + "codeIataCity": "FOG", + "codeIcaoAirport": "LIBF", + "codeIso2Country": "IT", + "geonameId": "7668318", + "latitudeAirport": 41.43399, + "longitudeAirport": 15.544367, + "nameAirport": "Gino Lisa", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "airportId": 2387, + "codeIataAirport": "FOI", + "codeIataCity": "FOG", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 41.4622919, + "longitudeAirport": 15.5447458, + "nameAirport": "Foggia Railway Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "airportId": 2388, + "codeIataAirport": "FOK", + "codeIataCity": "FOK", + "codeIcaoAirport": "KFOK", + "codeIso2Country": "US", + "geonameId": "5140736", + "latitudeAirport": 40.833332, + "longitudeAirport": -72.666664, + "nameAirport": "Suffolk County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 2389, + "codeIataAirport": "FOM", + "codeIataCity": "FOM", + "codeIcaoAirport": "FKKM", + "codeIso2Country": "CM", + "geonameId": "6297001", + "latitudeAirport": 5.75, + "longitudeAirport": 10.833333, + "nameAirport": "Foumban", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "-6", + "airportId": 2390, + "codeIataAirport": "FON", + "codeIataCity": "FON", + "codeIcaoAirport": "MRAN", + "codeIso2Country": "CR", + "geonameId": "7730675", + "latitudeAirport": 10.4, + "longitudeAirport": -84.48333, + "nameAirport": "Fortuna", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "9", + "airportId": 2391, + "codeIataAirport": "FOO", + "codeIataCity": "FOO", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731031", + "latitudeAirport": -1.05, + "longitudeAirport": 134.9, + "nameAirport": "Numfoor", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-3", + "airportId": 2392, + "codeIataAirport": "FOR", + "codeIataCity": "FOR", + "codeIcaoAirport": "SBFZ", + "codeIso2Country": "BR", + "geonameId": "3399415", + "latitudeAirport": -3.779073, + "longitudeAirport": -38.540836, + "nameAirport": "Pinto Martins", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "8", + "airportId": 2393, + "codeIataAirport": "FOS", + "codeIataCity": "FOS", + "codeIcaoAirport": "YPFT", + "codeIso2Country": "AU", + "geonameId": "6301330", + "latitudeAirport": -30.816668, + "longitudeAirport": 128.05, + "nameAirport": "Forrest", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "10", + "airportId": 2394, + "codeIataAirport": "FOT", + "codeIataCity": "FOT", + "codeIcaoAirport": "YFST", + "codeIso2Country": "AU", + "geonameId": "7731032", + "latitudeAirport": -32.183334, + "longitudeAirport": 151.51666, + "nameAirport": "Forster", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "airportId": 2395, + "codeIataAirport": "FOU", + "codeIataCity": "FOU", + "codeIcaoAirport": "FOGF", + "codeIso2Country": "GA", + "geonameId": "7730524", + "latitudeAirport": -1.2, + "longitudeAirport": 10.783333, + "nameAirport": "Fougamou", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-9", + "airportId": 2396, + "codeIataAirport": "FOX", + "codeIataCity": "FOX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 64.0, + "longitudeAirport": -147.0, + "nameAirport": "Fox", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 2397, + "codeIataAirport": "FOY", + "codeIataCity": "FOY", + "codeIcaoAirport": "", + "codeIso2Country": "LR", + "geonameId": "8298935", + "latitudeAirport": 8.366667, + "longitudeAirport": -10.216667, + "nameAirport": "Foya", + "nameCountry": "Liberia", + "phone": "", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-5", + "airportId": 2398, + "codeIataAirport": "FPO", + "codeIataCity": "FPO", + "codeIcaoAirport": "MYGF", + "codeIso2Country": "BS", + "geonameId": "3572375", + "latitudeAirport": 26.547293, + "longitudeAirport": -78.7052, + "nameAirport": "Grand Bahama International", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-5", + "airportId": 2399, + "codeIataAirport": "FPR", + "codeIataCity": "FPR", + "codeIcaoAirport": "KFPR", + "codeIso2Country": "US", + "geonameId": "4171261", + "latitudeAirport": 27.45, + "longitudeAirport": -80.333336, + "nameAirport": "St Lucie County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 2400, + "codeIataAirport": "FPY", + "codeIataCity": "FPY", + "codeIcaoAirport": "K40J", + "codeIso2Country": "US", + "geonameId": "6297536", + "latitudeAirport": 30.116667, + "longitudeAirport": -83.583336, + "nameAirport": "Perry-Foley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 2401, + "codeIataAirport": "FRA", + "codeIataCity": "FRA", + "codeIcaoAirport": "EDDF", + "codeIso2Country": "DE", + "geonameId": "6290293", + "latitudeAirport": 50.050735, + "longitudeAirport": 8.570773, + "nameAirport": "Frankfurt International Airport", + "nameCountry": "Germany", + "phone": "+49 (0) 1805", + "timezone": "Europe/Berlin" + }, + { + "GMT": "10", + "airportId": 2402, + "codeIataAirport": "FRB", + "codeIataCity": "FRB", + "codeIcaoAirport": "YFBS", + "codeIso2Country": "AU", + "geonameId": "7730255", + "latitudeAirport": -33.4, + "longitudeAirport": 148.05, + "nameAirport": "Forbes", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-3", + "airportId": 2403, + "codeIataAirport": "FRC", + "codeIataCity": "FRC", + "codeIcaoAirport": "SIMK", + "codeIso2Country": "BR", + "geonameId": "7731033", + "latitudeAirport": -20.551945, + "longitudeAirport": -47.4375, + "nameAirport": "Franca", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "airportId": 2404, + "codeIataAirport": "FRD", + "codeIataCity": "FRD", + "codeIcaoAirport": "KFHR", + "codeIso2Country": "US", + "geonameId": "5795094", + "latitudeAirport": 48.524807, + "longitudeAirport": -123.0265, + "nameAirport": "Friday Harbor", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "11", + "airportId": 2405, + "codeIataAirport": "FRE", + "codeIataCity": "FRE", + "codeIcaoAirport": "AGGF", + "codeIso2Country": "SB", + "geonameId": "7668066", + "latitudeAirport": -8.1, + "longitudeAirport": 159.58333, + "nameAirport": "Fera Island", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-5", + "airportId": 2406, + "codeIataAirport": "FRG", + "codeIataCity": "FRG", + "codeIcaoAirport": "KFRG", + "codeIso2Country": "US", + "geonameId": "5133681", + "latitudeAirport": 40.733334, + "longitudeAirport": -73.416664, + "nameAirport": "Republic Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 2407, + "codeIataAirport": "FRH", + "codeIataCity": "FRH", + "codeIcaoAirport": "KFRH", + "codeIso2Country": "US", + "geonameId": "4257771", + "latitudeAirport": 38.55, + "longitudeAirport": -86.61667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-6", + "airportId": 2408, + "codeIataAirport": "FRI", + "codeIataCity": "FRI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.083332, + "longitudeAirport": -96.78333, + "nameAirport": "Marshall AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "4", + "airportId": 2409, + "codeIataAirport": "FRK", + "codeIataCity": "FRK", + "codeIcaoAirport": "FSSF", + "codeIso2Country": "SC", + "geonameId": "8298990", + "latitudeAirport": -4.583333, + "longitudeAirport": 55.966667, + "nameAirport": "Fregate Island", + "nameCountry": "Seychelles", + "phone": "", + "timezone": "Indian/Mahe" + }, + { + "GMT": "1", + "airportId": 2410, + "codeIataAirport": "FRL", + "codeIataCity": "FRL", + "codeIcaoAirport": "LIPK", + "codeIso2Country": "IT", + "geonameId": "3214907", + "latitudeAirport": 44.19857, + "longitudeAirport": 12.07076, + "nameAirport": "Luigi Ridolfi", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-6", + "airportId": 2411, + "codeIataAirport": "FRM", + "codeIataCity": "FRM", + "codeIcaoAirport": "KFRM", + "codeIso2Country": "US", + "geonameId": "5026123", + "latitudeAirport": 43.64722, + "longitudeAirport": -94.423615, + "nameAirport": "Fairmont", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 2412, + "codeIataAirport": "FRN", + "codeIataCity": "FRN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5862368", + "latitudeAirport": 61.25, + "longitudeAirport": -149.68333, + "nameAirport": "Bryant AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 2413, + "codeIataAirport": "FRO", + "codeIataCity": "FRO", + "codeIcaoAirport": "ENFL", + "codeIso2Country": "NO", + "geonameId": "6296737", + "latitudeAirport": 61.58643, + "longitudeAirport": 5.024577, + "nameAirport": "Flora", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-9", + "airportId": 2414, + "codeIataAirport": "FRP", + "codeIataCity": "FRP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299126", + "latitudeAirport": 57.845833, + "longitudeAirport": -135.025, + "nameAirport": "Fresh Water Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Juneau" + }, + { + "GMT": "10", + "airportId": 2415, + "codeIataAirport": "FRQ", + "codeIataCity": "FRQ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2097441", + "latitudeAirport": -5.416667, + "longitudeAirport": 141.7, + "nameAirport": "Feramin", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 2416, + "codeIataAirport": "FRR", + "codeIataCity": "FRR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4760232", + "latitudeAirport": 38.916668, + "longitudeAirport": -78.2, + "nameAirport": "Front Royal-Warren County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 2417, + "codeIataAirport": "FRS", + "codeIataCity": "FRS", + "codeIcaoAirport": "MGTK", + "codeIso2Country": "GT", + "geonameId": "6301804", + "latitudeAirport": 16.916668, + "longitudeAirport": -89.88333, + "nameAirport": "Santa Elena", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "-4", + "airportId": 2418, + "codeIataAirport": "FRT", + "codeIataCity": "FRT", + "codeIcaoAirport": "SCEV", + "codeIso2Country": "CL", + "geonameId": "7731035", + "latitudeAirport": -41.125, + "longitudeAirport": -73.06528, + "nameAirport": "Frutillar", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "6", + "airportId": 2419, + "codeIataAirport": "FRU", + "codeIataCity": "FRU", + "codeIcaoAirport": "UAFM", + "codeIso2Country": "KG", + "geonameId": "6300915", + "latitudeAirport": 43.05358, + "longitudeAirport": 74.46945, + "nameAirport": "Manas (Bishkek)", + "nameCountry": "Kyrgyzstan", + "phone": "", + "timezone": "Asia/Bishkek" + }, + { + "GMT": "2", + "airportId": 2420, + "codeIataAirport": "FRW", + "codeIataCity": "FRW", + "codeIcaoAirport": "FBFT", + "codeIso2Country": "BW", + "geonameId": "6296943", + "latitudeAirport": -21.16, + "longitudeAirport": 27.4825, + "nameAirport": "Francistown", + "nameCountry": "Botswana", + "phone": "", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "-5", + "airportId": 2421, + "codeIataAirport": "FRY", + "codeIataCity": "FRY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 44.016666, + "longitudeAirport": -70.98333, + "nameAirport": "Fryeburg", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 2422, + "codeIataAirport": "FRZ", + "codeIataCity": "FRZ", + "codeIcaoAirport": "ETHF", + "codeIso2Country": "DE", + "geonameId": "3207050", + "latitudeAirport": 51.11667, + "longitudeAirport": 9.266667, + "nameAirport": "Fritzlar Airbase", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "airportId": 2423, + "codeIataAirport": "FSA", + "codeIataCity": "FUO", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 23.021548, + "longitudeAirport": 113.121416, + "nameAirport": "CZ Bus Station", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 2424, + "codeIataAirport": "FSC", + "codeIataCity": "FSC", + "codeIcaoAirport": "LFKF", + "codeIso2Country": "FR", + "geonameId": "6620210", + "latitudeAirport": 41.498634, + "longitudeAirport": 9.098223, + "nameAirport": "Sud Corse", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "airportId": 2425, + "codeIataAirport": "FSD", + "codeIataCity": "FSD", + "codeIcaoAirport": "KFSD", + "codeIso2Country": "US", + "geonameId": "5231851", + "latitudeAirport": 43.580296, + "longitudeAirport": -96.73115, + "nameAirport": "Joe Foss Field Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 2426, + "codeIataAirport": "FSI", + "codeIataCity": "FSI", + "codeIcaoAirport": "KFSI", + "codeIso2Country": "US", + "geonameId": "7910319", + "latitudeAirport": 34.650723, + "longitudeAirport": -98.419975, + "nameAirport": "Henry Post AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 2427, + "codeIataAirport": "FSK", + "codeIataCity": "FSK", + "codeIcaoAirport": "KFSK", + "codeIso2Country": "US", + "geonameId": "4271695", + "latitudeAirport": 37.833332, + "longitudeAirport": -94.7, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 2428, + "codeIataAirport": "FSL", + "codeIataCity": "FSL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8299136", + "latitudeAirport": -18.2, + "longitudeAirport": 125.8, + "nameAirport": "Fossil Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "airportId": 2429, + "codeIataAirport": "FSM", + "codeIataCity": "FSM", + "codeIcaoAirport": "KFSM", + "codeIso2Country": "US", + "geonameId": "4111420", + "latitudeAirport": 35.34124, + "longitudeAirport": -94.3589, + "nameAirport": "Fort Smith Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 2430, + "codeIataAirport": "FSP", + "codeIataCity": "FSP", + "codeIcaoAirport": "LFVP", + "codeIso2Country": "PM", + "geonameId": "6299479", + "latitudeAirport": 46.916668, + "longitudeAirport": -56.166668, + "nameAirport": "Saint-pierre Pointe-blanche", + "nameCountry": "Saint Pierre and Miquelon", + "phone": "", + "timezone": "America/Miquelon" + }, + { + "GMT": "0", + "airportId": 2431, + "codeIataAirport": "FSS", + "codeIataCity": "FSS", + "codeIcaoAirport": "EGQK", + "codeIso2Country": "GB", + "geonameId": "6296638", + "latitudeAirport": 57.65, + "longitudeAirport": -3.566667, + "nameAirport": "Kinloss", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 2432, + "codeIataAirport": "FST", + "codeIataCity": "FST", + "codeIcaoAirport": "KFST", + "codeIso2Country": "US", + "geonameId": "6298257", + "latitudeAirport": 30.893888, + "longitudeAirport": -102.87889, + "nameAirport": "Pecos County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 2433, + "codeIataAirport": "FSU", + "codeIataCity": "FSU", + "codeIcaoAirport": "KFSU", + "codeIso2Country": "US", + "geonameId": "5468143", + "latitudeAirport": 34.466667, + "longitudeAirport": -104.25, + "nameAirport": "Fort Sumner", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "9", + "airportId": 2434, + "codeIataAirport": "FSZ", + "codeIataCity": "FSZ", + "codeIcaoAirport": "RJNS", + "codeIso2Country": "JP", + "geonameId": "7910179", + "latitudeAirport": 34.796112, + "longitudeAirport": 138.18944, + "nameAirport": "Mount Fuji", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "11", + "airportId": 2435, + "codeIataAirport": "FTA", + "codeIataCity": "FTA", + "codeIcaoAirport": "NVVF", + "codeIso2Country": "VU", + "geonameId": "7668380", + "latitudeAirport": -19.416668, + "longitudeAirport": 170.25, + "nameAirport": "Futuna Airport", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-3", + "airportId": 2436, + "codeIataAirport": "FTE", + "codeIataCity": "FTE", + "codeIcaoAirport": "SAWC", + "codeIso2Country": "AR", + "geonameId": "7668427", + "latitudeAirport": -50.284225, + "longitudeAirport": -72.053696, + "nameAirport": "El Calafate", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "-11", + "airportId": 2437, + "codeIataAirport": "FTI", + "codeIataCity": "FTI", + "codeIcaoAirport": "NSFQ", + "codeIso2Country": "AS", + "geonameId": "5881271", + "latitudeAirport": -14.216667, + "longitudeAirport": -169.45, + "nameAirport": "Fitiuta", + "nameCountry": "American Samoa", + "phone": "", + "timezone": "Pacific/Pago_Pago" + }, + { + "GMT": "-6", + "airportId": 2438, + "codeIataAirport": "FTK", + "codeIataCity": "FTK", + "codeIcaoAirport": "KFTK", + "codeIso2Country": "US", + "geonameId": "7259771", + "latitudeAirport": 37.9, + "longitudeAirport": -85.95, + "nameAirport": "Godman AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 2439, + "codeIataAirport": "FTL", + "codeIataCity": "FTL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 61.88333, + "longitudeAirport": -162.08333, + "nameAirport": "Fortuna Ledge", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "3", + "airportId": 2440, + "codeIataAirport": "FTU", + "codeIataCity": "FTU", + "codeIcaoAirport": "FMSD", + "codeIso2Country": "MG", + "geonameId": "6297052", + "latitudeAirport": -25.038055, + "longitudeAirport": 46.955555, + "nameAirport": "Marillac", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-6", + "airportId": 2441, + "codeIataAirport": "FTW", + "codeIataCity": "FTW", + "codeIcaoAirport": "KFTW", + "codeIso2Country": "US", + "geonameId": "4691946", + "latitudeAirport": 32.75, + "longitudeAirport": -97.333336, + "nameAirport": "Meacham Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 2442, + "codeIataAirport": "FTX", + "codeIataCity": "FTX", + "codeIcaoAirport": "", + "codeIso2Country": "CG", + "geonameId": "2255542", + "latitudeAirport": -0.983333, + "longitudeAirport": 16.008333, + "nameAirport": "Owando", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-5", + "airportId": 2443, + "codeIataAirport": "FTY", + "codeIataCity": "ATL", + "codeIcaoAirport": "KFTY", + "codeIso2Country": "US", + "geonameId": "4196509", + "latitudeAirport": 33.783333, + "longitudeAirport": -84.51667, + "nameAirport": "Fulton County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 2444, + "codeIataAirport": "FUB", + "codeIataCity": "FUB", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2097320", + "latitudeAirport": -6.066667, + "longitudeAirport": 150.65, + "nameAirport": "Fulleborn", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 2445, + "codeIataAirport": "FUE", + "codeIataCity": "FUE", + "codeIcaoAirport": "GCFV", + "codeIso2Country": "ES", + "geonameId": "6297185", + "latitudeAirport": 28.450605, + "longitudeAirport": -13.869893, + "nameAirport": "Fuerteventura", + "nameCountry": "Spain", + "phone": "", + "timezone": "Atlantic/Canary" + }, + { + "GMT": "8", + "airportId": 2446, + "codeIataAirport": "FUG", + "codeIataCity": "FUG", + "codeIcaoAirport": "ZSFY", + "codeIso2Country": "CN", + "geonameId": "7910485", + "latitudeAirport": 32.86667, + "longitudeAirport": 115.7, + "nameAirport": "Fuyang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9", + "airportId": 2447, + "codeIataAirport": "FUJ", + "codeIataCity": "FUJ", + "codeIcaoAirport": "RJFE", + "codeIso2Country": "JP", + "geonameId": "6300345", + "latitudeAirport": 32.667828, + "longitudeAirport": 128.83762, + "nameAirport": "Fukue", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "9", + "airportId": 2448, + "codeIataAirport": "FUK", + "codeIataCity": "FUK", + "codeIcaoAirport": "RJFF", + "codeIso2Country": "JP", + "geonameId": "6300346", + "latitudeAirport": 33.584286, + "longitudeAirport": 130.4439, + "nameAirport": "Fukuoka", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-8", + "airportId": 2449, + "codeIataAirport": "FUL", + "codeIataCity": "FUL", + "codeIcaoAirport": "KFUL", + "codeIso2Country": "US", + "geonameId": "5351255", + "latitudeAirport": 33.86667, + "longitudeAirport": -117.975, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 2450, + "codeIataAirport": "FUM", + "codeIataCity": "FUM", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299048", + "latitudeAirport": -6.383333, + "longitudeAirport": 142.43333, + "nameAirport": "Fuma", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "12", + "airportId": 2451, + "codeIataAirport": "FUN", + "codeIataCity": "FUN", + "codeIcaoAirport": "NGFU", + "codeIso2Country": "TV", + "geonameId": "6299953", + "latitudeAirport": -8.516667, + "longitudeAirport": 179.20833, + "nameAirport": "Funafuti International Airport", + "nameCountry": "Tuvalu", + "phone": "", + "timezone": "Pacific/Funafuti" + }, + { + "GMT": "8", + "airportId": 2452, + "codeIataAirport": "FUO", + "codeIataCity": "FUO", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "8299063", + "latitudeAirport": 23.133333, + "longitudeAirport": 113.28333, + "nameAirport": "Fuoshan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "12", + "airportId": 2453, + "codeIataAirport": "FUT", + "codeIataCity": "FUT", + "codeIcaoAirport": "NLWF", + "codeIso2Country": "WF", + "geonameId": "6299958", + "latitudeAirport": -14.25, + "longitudeAirport": -178.15, + "nameAirport": "Futuna Island", + "nameCountry": "Wallis and Futuna", + "phone": "", + "timezone": "Pacific/Wallis" + }, + { + "GMT": "8", + "airportId": 2454, + "codeIataAirport": "FVL", + "codeIataCity": "FVL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298851", + "latitudeAirport": -18.283333, + "longitudeAirport": 128.41667, + "nameAirport": "Flora Valey", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "5", + "airportId": 2455, + "codeIataAirport": "FVM", + "codeIataCity": "FVM", + "codeIcaoAirport": "VRMR", + "codeIso2Country": "MV", + "geonameId": "8298881", + "latitudeAirport": -0.309444, + "longitudeAirport": 73.43278, + "nameAirport": "Fuvahmulak", + "nameCountry": "Maldives", + "phone": "", + "timezone": "Indian/Maldives" + }, + { + "GMT": "8", + "airportId": 2456, + "codeIataAirport": "FVR", + "codeIataCity": "FVR", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298873", + "latitudeAirport": -15.253056, + "longitudeAirport": 127.833336, + "nameAirport": "Forrest River Airport", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "airportId": 2457, + "codeIataAirport": "FWA", + "codeIataCity": "FWA", + "codeIcaoAirport": "KFWA", + "codeIso2Country": "US", + "geonameId": "4920426", + "latitudeAirport": 40.98666, + "longitudeAirport": -85.18771, + "nameAirport": "Municipal/Baer Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-6", + "airportId": 2458, + "codeIataAirport": "FWH", + "codeIataCity": "DFW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.76389, + "longitudeAirport": -97.3, + "nameAirport": "Fort Worth NAS Jrb/Carswell Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 2459, + "codeIataAirport": "FWL", + "codeIataCity": "FWL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 62.509724, + "longitudeAirport": -153.88945, + "nameAirport": "Farewell", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 2460, + "codeIataAirport": "FWM", + "codeIataCity": "FWM", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2649169", + "latitudeAirport": 56.816666, + "longitudeAirport": -5.116667, + "nameAirport": "Heliport", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "airportId": 2461, + "codeIataAirport": "FXE", + "codeIataCity": "FLL", + "codeIcaoAirport": "KFXE", + "codeIso2Country": "US", + "geonameId": "4155971", + "latitudeAirport": 26.066668, + "longitudeAirport": -80.15, + "nameAirport": "Fort Lauderdale Executive", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 2462, + "codeIataAirport": "FXM", + "codeIataCity": "FXM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8260810", + "latitudeAirport": 70.2, + "longitudeAirport": -146.0, + "nameAirport": "Flaxman Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 2463, + "codeIataAirport": "FXO", + "codeIataCity": "FXO", + "codeIcaoAirport": "FQCB", + "codeIso2Country": "MZ", + "geonameId": "6297081", + "latitudeAirport": -14.805278, + "longitudeAirport": 36.526943, + "nameAirport": "Cuamba", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-6", + "airportId": 2464, + "codeIataAirport": "FXY", + "codeIataCity": "FXY", + "codeIcaoAirport": "KFXY", + "codeIso2Country": "US", + "geonameId": "4857418", + "latitudeAirport": 43.266666, + "longitudeAirport": -93.65, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 2465, + "codeIataAirport": "FYG", + "codeIataCity": "SZX", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 22.543099, + "longitudeAirport": 114.057868, + "nameAirport": "Fuyong Ferry Port", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 2466, + "codeIataAirport": "FYM", + "codeIataCity": "FYM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 35.15, + "longitudeAirport": -86.566666, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 2467, + "codeIataAirport": "FYT", + "codeIataCity": "FYT", + "codeIcaoAirport": "FTTY", + "codeIso2Country": "TD", + "geonameId": "6297101", + "latitudeAirport": 17.916668, + "longitudeAirport": 19.116667, + "nameAirport": "Faya", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "-9", + "airportId": 2468, + "codeIataAirport": "FYU", + "codeIataCity": "FYU", + "codeIcaoAirport": "PFYU", + "codeIso2Country": "US", + "geonameId": "5862372", + "latitudeAirport": 66.56981, + "longitudeAirport": -145.2482, + "nameAirport": "Fort Yukon", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 2469, + "codeIataAirport": "FYV", + "codeIataCity": "FYV", + "codeIcaoAirport": "KFYV", + "codeIso2Country": "US", + "geonameId": "4110486", + "latitudeAirport": 36.003613, + "longitudeAirport": -94.17, + "nameAirport": "Municipal (Drake Field)", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 2470, + "codeIataAirport": "GAA", + "codeIataCity": "GAA", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8299101", + "latitudeAirport": 9.15, + "longitudeAirport": -74.23333, + "nameAirport": "Guamal", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-8", + "airportId": 2471, + "codeIataAirport": "GAB", + "codeIataCity": "GAB", + "codeIcaoAirport": "KGAB", + "codeIso2Country": "US", + "geonameId": "5504395", + "latitudeAirport": 38.86667, + "longitudeAirport": -117.916664, + "nameAirport": "Gabbs", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 2472, + "codeIataAirport": "GAC", + "codeIataCity": "GAC", + "codeIcaoAirport": "", + "codeIso2Country": "HN", + "geonameId": "3609586", + "latitudeAirport": 14.596667, + "longitudeAirport": -88.59389, + "nameAirport": "Gracias", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-6", + "airportId": 2473, + "codeIataAirport": "GAD", + "codeIataCity": "GAD", + "codeIcaoAirport": "KGAD", + "codeIso2Country": "US", + "geonameId": "4063630", + "latitudeAirport": 33.97361, + "longitudeAirport": -86.08722, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 2474, + "codeIataAirport": "GAE", + "codeIataCity": "GAE", + "codeIcaoAirport": "", + "codeIso2Country": "TN", + "geonameId": "0", + "latitudeAirport": 33.88333, + "longitudeAirport": 10.033333, + "nameAirport": "Gabes", + "nameCountry": "Tunisia", + "phone": "", + "timezone": "Africa/Tunis" + }, + { + "GMT": "1", + "airportId": 2475, + "codeIataAirport": "GAF", + "codeIataCity": "GAF", + "codeIcaoAirport": "DTTF", + "codeIso2Country": "TN", + "geonameId": "6296468", + "latitudeAirport": 34.416668, + "longitudeAirport": 8.816667, + "nameAirport": "Gafsa", + "nameCountry": "Tunisia", + "phone": "", + "timezone": "Africa/Tunis" + }, + { + "GMT": "-6", + "airportId": 2476, + "codeIataAirport": "GAG", + "codeIataCity": "GAG", + "codeIcaoAirport": "KGAG", + "codeIso2Country": "US", + "geonameId": "4537419", + "latitudeAirport": 36.35, + "longitudeAirport": -99.88333, + "nameAirport": "Gage", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 2477, + "codeIataAirport": "GAH", + "codeIataCity": "GAH", + "codeIcaoAirport": "YGAY", + "codeIso2Country": "AU", + "geonameId": "7731039", + "latitudeAirport": -25.433332, + "longitudeAirport": 151.48334, + "nameAirport": "Gayndah", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 2478, + "codeIataAirport": "GAI", + "codeIataCity": "GAI", + "codeIcaoAirport": "KGAI", + "codeIso2Country": "US", + "geonameId": "4362717", + "latitudeAirport": 39.15, + "longitudeAirport": -77.2, + "nameAirport": "Montgomery County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "airportId": 2479, + "codeIataAirport": "GAJ", + "codeIataCity": "GAJ", + "codeIcaoAirport": "RJSC", + "codeIso2Country": "JP", + "geonameId": "6300389", + "latitudeAirport": 38.410645, + "longitudeAirport": 140.36583, + "nameAirport": "Junmachi", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-9", + "airportId": 2480, + "codeIataAirport": "GAK", + "codeIataCity": "GAK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5862648", + "latitudeAirport": 62.333332, + "longitudeAirport": -145.31667, + "nameAirport": "Gakona", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 2481, + "codeIataAirport": "GAL", + "codeIataCity": "GAL", + "codeIcaoAirport": "PAGA", + "codeIso2Country": "US", + "geonameId": "5862656", + "latitudeAirport": 64.73798, + "longitudeAirport": -156.94186, + "nameAirport": "Galena", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 2482, + "codeIataAirport": "GAM", + "codeIataCity": "GAM", + "codeIcaoAirport": "PAGM", + "codeIso2Country": "US", + "geonameId": "5862667", + "latitudeAirport": 63.776596, + "longitudeAirport": -171.71355, + "nameAirport": "Gambell", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "5", + "airportId": 2483, + "codeIataAirport": "GAN", + "codeIataCity": "GAN", + "codeIcaoAirport": "VRMG", + "codeIso2Country": "MV", + "geonameId": "7668640", + "latitudeAirport": -0.690003, + "longitudeAirport": 73.15654, + "nameAirport": "Gan Airport", + "nameCountry": "Maldives", + "phone": "", + "timezone": "Indian/Maldives" + }, + { + "GMT": "-5", + "airportId": 2484, + "codeIataAirport": "GAO", + "codeIataCity": "GAO", + "codeIcaoAirport": "MUGT", + "codeIso2Country": "CU", + "geonameId": "6299923", + "latitudeAirport": 20.084723, + "longitudeAirport": -75.15861, + "nameAirport": "Los Canos", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "10", + "airportId": 2485, + "codeIataAirport": "GAP", + "codeIataCity": "GAP", + "codeIcaoAirport": "AYGP", + "codeIso2Country": "PG", + "geonameId": "2096546", + "latitudeAirport": -6.5, + "longitudeAirport": 146.33333, + "nameAirport": "Gusap", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 2486, + "codeIataAirport": "GAQ", + "codeIataCity": "GAQ", + "codeIcaoAirport": "GAGO", + "codeIso2Country": "ML", + "geonameId": "6297168", + "latitudeAirport": 16.248611, + "longitudeAirport": -0.001389, + "nameAirport": "Gao", + "nameCountry": "Mali", + "phone": "", + "timezone": "Africa/Bamako" + }, + { + "GMT": "10", + "airportId": 2487, + "codeIataAirport": "GAR", + "codeIataCity": "GAR", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260815", + "latitudeAirport": -7.873333, + "longitudeAirport": 147.1375, + "nameAirport": "Garaina", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 2488, + "codeIataAirport": "GAS", + "codeIataCity": "GAS", + "codeIcaoAirport": "HKGA", + "codeIso2Country": "KE", + "geonameId": "6297305", + "latitudeAirport": -0.45, + "longitudeAirport": 39.65, + "nameAirport": "Garissa", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "1", + "airportId": 2489, + "codeIataAirport": "GAT", + "codeIataCity": "GAT", + "codeIcaoAirport": "LFNA", + "codeIso2Country": "FR", + "geonameId": "6694627", + "latitudeAirport": 44.55, + "longitudeAirport": 6.083333, + "nameAirport": "Tallard", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "5.30", + "airportId": 2490, + "codeIataAirport": "GAU", + "codeIataCity": "GAU", + "codeIcaoAirport": "VEGT", + "codeIso2Country": "IN", + "geonameId": "1271477", + "latitudeAirport": 26.105982, + "longitudeAirport": 91.58881, + "nameAirport": "Borjhar", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "9", + "airportId": 2491, + "codeIataAirport": "GAV", + "codeIataCity": "GAV", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731040", + "latitudeAirport": -26.0, + "longitudeAirport": 130.88333, + "nameAirport": "Gag Island", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "6.30", + "airportId": 2492, + "codeIataAirport": "GAW", + "codeIataCity": "GAW", + "codeIcaoAirport": "VYGG", + "codeIso2Country": "MM", + "geonameId": "7731041", + "latitudeAirport": 22.166668, + "longitudeAirport": 94.13333, + "nameAirport": "Gangaw", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "1", + "airportId": 2493, + "codeIataAirport": "GAX", + "codeIataCity": "GAX", + "codeIcaoAirport": "", + "codeIso2Country": "GA", + "geonameId": "7731042", + "latitudeAirport": -2.766667, + "longitudeAirport": 9.983333, + "nameAirport": "Gamba", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "5.30", + "airportId": 2494, + "codeIataAirport": "GAY", + "codeIataCity": "GAY", + "codeIcaoAirport": "VEGY", + "codeIso2Country": "IN", + "geonameId": "6301072", + "latitudeAirport": 24.746668, + "longitudeAirport": 84.94583, + "nameAirport": "Gaya", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "airportId": 2495, + "codeIataAirport": "GAZ", + "codeIataCity": "GAZ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260823", + "latitudeAirport": -9.2, + "longitudeAirport": 152.93333, + "nameAirport": "Guasopa", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "11", + "airportId": 2496, + "codeIataAirport": "GBA", + "codeIataCity": "GBA", + "codeIcaoAirport": "", + "codeIso2Country": "VU", + "geonameId": "0", + "latitudeAirport": -15.0, + "longitudeAirport": 166.0, + "nameAirport": "Big Bay", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "4", + "airportId": 2497, + "codeIataAirport": "GBB", + "codeIataCity": "GBB", + "codeIcaoAirport": "UBBQ", + "codeIso2Country": "AZ", + "geonameId": "8181785", + "latitudeAirport": 27.0, + "longitudeAirport": -7.566667, + "nameAirport": "Gabala", + "nameCountry": "Azerbaijan", + "phone": "", + "timezone": "Asia/Baku" + }, + { + "GMT": "10", + "airportId": 2498, + "codeIataAirport": "GBC", + "codeIataCity": "GBC", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298867", + "latitudeAirport": -6.1, + "longitudeAirport": 141.73334, + "nameAirport": "Gasuke", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 2499, + "codeIataAirport": "GBD", + "codeIataCity": "GBD", + "codeIcaoAirport": "KGBD", + "codeIso2Country": "US", + "geonameId": "4272345", + "latitudeAirport": 38.34722, + "longitudeAirport": -98.86417, + "nameAirport": "Great Bend", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 2500, + "codeIataAirport": "GBE", + "codeIataCity": "GBE", + "codeIcaoAirport": "FBSK", + "codeIso2Country": "BW", + "geonameId": "6296949", + "latitudeAirport": -24.557981, + "longitudeAirport": 25.92451, + "nameAirport": "Sir Seretse Khama International", + "nameCountry": "Botswana", + "phone": "", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "10", + "airportId": 2501, + "codeIataAirport": "GBF", + "codeIataCity": "GBF", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298750", + "latitudeAirport": -6.583333, + "longitudeAirport": 144.66667, + "nameAirport": "Negarbo", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 2502, + "codeIataAirport": "GBG", + "codeIataCity": "GBG", + "codeIcaoAirport": "KGBG", + "codeIso2Country": "US", + "geonameId": "4893398", + "latitudeAirport": 40.93861, + "longitudeAirport": -90.42889, + "nameAirport": "Galesburg", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 2503, + "codeIataAirport": "GBH", + "codeIataCity": "GBH", + "codeIcaoAirport": "PAGB", + "codeIso2Country": "US", + "geonameId": "5862652", + "latitudeAirport": 68.46667, + "longitudeAirport": -149.48334, + "nameAirport": "Galbraith Lake", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 2504, + "codeIataAirport": "GBI", + "codeIataCity": "GBI", + "codeIcaoAirport": "", + "codeIso2Country": "BS", + "geonameId": "0", + "latitudeAirport": 26.666668, + "longitudeAirport": -78.5, + "nameAirport": "Auxiliary Airfield", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-4", + "airportId": 2505, + "codeIataAirport": "GBJ", + "codeIataCity": "GBJ", + "codeIcaoAirport": "", + "codeIso2Country": "GP", + "geonameId": "0", + "latitudeAirport": 15.866667, + "longitudeAirport": -61.266666, + "nameAirport": "Les Bases", + "nameCountry": "Guadeloupe", + "phone": "", + "timezone": "America/Guadeloupe" + }, + { + "GMT": "0", + "airportId": 2506, + "codeIataAirport": "GBK", + "codeIataCity": "GBK", + "codeIcaoAirport": "GFGK", + "codeIso2Country": "SL", + "geonameId": "7668279", + "latitudeAirport": 7.8, + "longitudeAirport": -12.366667, + "nameAirport": "Gbangbatok", + "nameCountry": "Sierra Leone", + "phone": "", + "timezone": "Africa/Freetown" + }, + { + "GMT": "9.30", + "airportId": 2507, + "codeIataAirport": "GBL", + "codeIataCity": "GBL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2078934", + "latitudeAirport": -11.55, + "longitudeAirport": 133.43333, + "nameAirport": "Goulburn Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "3", + "airportId": 2508, + "codeIataAirport": "GBM", + "codeIataCity": "GBM", + "codeIcaoAirport": "", + "codeIso2Country": "SO", + "geonameId": "8298973", + "latitudeAirport": 3.333333, + "longitudeAirport": 42.183334, + "nameAirport": "Garbaharey", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "1", + "airportId": 2509, + "codeIataAirport": "GBN", + "codeIataCity": "GBN", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "3168234", + "latitudeAirport": 41.701668, + "longitudeAirport": 15.730556, + "nameAirport": "San Giovanni Rotondo", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "airportId": 2510, + "codeIataAirport": "GBO", + "codeIataCity": "BWI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.266666, + "longitudeAirport": -76.75, + "nameAirport": "Baltimore Greenbelt T", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 2511, + "codeIataAirport": "GBP", + "codeIataCity": "GBP", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298980", + "latitudeAirport": -16.55, + "longitudeAirport": 143.66667, + "nameAirport": "Gamboola", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 2512, + "codeIataAirport": "GBR", + "codeIataCity": "GBR", + "codeIcaoAirport": "KGBR", + "codeIso2Country": "US", + "geonameId": "4938158", + "latitudeAirport": 42.2, + "longitudeAirport": -73.36667, + "nameAirport": "Walter J. Koladza Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "12", + "airportId": 2513, + "codeIataAirport": "GBS", + "codeIataCity": "GBS", + "codeIcaoAirport": "", + "codeIso2Country": "NZ", + "geonameId": "2184367", + "latitudeAirport": -36.13333, + "longitudeAirport": 175.33333, + "nameAirport": "Port Fitzroy", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "3.30", + "airportId": 2514, + "codeIataAirport": "GBT", + "codeIataCity": "GBT", + "codeIcaoAirport": "OING", + "codeIso2Country": "IR", + "geonameId": "5428", + "latitudeAirport": 36.90851, + "longitudeAirport": 54.410515, + "nameAirport": "Gorgan", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "3", + "airportId": 2515, + "codeIataAirport": "GBU", + "codeIataCity": "GBU", + "codeIcaoAirport": "HSKG", + "codeIso2Country": "SD", + "geonameId": "7668301", + "latitudeAirport": 14.926389, + "longitudeAirport": 35.88889, + "nameAirport": "Khashm El Girba", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "8", + "airportId": 2516, + "codeIataAirport": "GBV", + "codeIataCity": "GBV", + "codeIcaoAirport": "YGIB", + "codeIso2Country": "AU", + "geonameId": "7731043", + "latitudeAirport": -15.65, + "longitudeAirport": 126.63333, + "nameAirport": "Gibb River", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "12", + "airportId": 2517, + "codeIataAirport": "GBZ", + "codeIataCity": "GBZ", + "codeIcaoAirport": "NZGB", + "codeIso2Country": "NZ", + "geonameId": "6249208", + "latitudeAirport": -36.25, + "longitudeAirport": 175.41667, + "nameAirport": "Great Barrier Island", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-5", + "airportId": 2518, + "codeIataAirport": "GCA", + "codeIataCity": "GCA", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8299102", + "latitudeAirport": 2.316667, + "longitudeAirport": -75.5, + "nameAirport": "Guacamaya", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-7", + "airportId": 2519, + "codeIataAirport": "GCC", + "codeIataCity": "GCC", + "codeIcaoAirport": "KGCC", + "codeIso2Country": "US", + "geonameId": "5826033", + "latitudeAirport": 44.346355, + "longitudeAirport": -105.532684, + "nameAirport": "Campbell County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-8", + "airportId": 2520, + "codeIataAirport": "GCD", + "codeIataCity": "GCD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5795925", + "latitudeAirport": 47.92348, + "longitudeAirport": -119.08058, + "nameAirport": "Grand Coulee Dam", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3.30", + "airportId": 2521, + "codeIataAirport": "GCH", + "codeIataCity": "GCH", + "codeIcaoAirport": "", + "codeIso2Country": "IR", + "geonameId": "8299190", + "latitudeAirport": 30.333332, + "longitudeAirport": 50.816666, + "nameAirport": "Gachsaran", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "0", + "airportId": 2522, + "codeIataAirport": "GCI", + "codeIataCity": "GCI", + "codeIcaoAirport": "EGJB", + "codeIso2Country": "GG", + "geonameId": "6296594", + "latitudeAirport": 49.432755, + "longitudeAirport": -2.595044, + "nameAirport": "Guernsey", + "nameCountry": "Guernsey", + "phone": "", + "timezone": "Europe/Guernsey" + }, + { + "GMT": "2", + "airportId": 2523, + "codeIataAirport": "GCJ", + "codeIataCity": "JNB", + "codeIcaoAirport": "FAGC", + "codeIso2Country": "ZA", + "geonameId": "1000478", + "latitudeAirport": -26.233334, + "longitudeAirport": 28.15, + "nameAirport": "Grand Central", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-6", + "airportId": 2524, + "codeIataAirport": "GCK", + "codeIataCity": "GCK", + "codeIcaoAirport": "KGCK", + "codeIso2Country": "US", + "geonameId": "5445445", + "latitudeAirport": 37.92861, + "longitudeAirport": -100.72972, + "nameAirport": "Garden City Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 2525, + "codeIataAirport": "GCM", + "codeIataCity": "GCM", + "codeIcaoAirport": "MWCR", + "codeIso2Country": "KY", + "geonameId": "3580560", + "latitudeAirport": 19.29637, + "longitudeAirport": -81.35779, + "nameAirport": "Owen Roberts International", + "nameCountry": "Cayman Islands", + "phone": "", + "timezone": "America/Cayman" + }, + { + "GMT": "-7", + "airportId": 2526, + "codeIataAirport": "GCN", + "codeIataCity": "GCN", + "codeIcaoAirport": "KGCN", + "codeIso2Country": "US", + "geonameId": "5296402", + "latitudeAirport": 35.951942, + "longitudeAirport": -112.1475, + "nameAirport": "National Park", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "-3", + "airportId": 2527, + "codeIataAirport": "GCV", + "codeIataCity": "GCV", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8299185", + "latitudeAirport": -29.941668, + "longitudeAirport": -50.994167, + "nameAirport": "Gravatai", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-7", + "airportId": 2528, + "codeIataAirport": "GCW", + "codeIataCity": "GCW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5296410", + "latitudeAirport": 36.07211, + "longitudeAirport": -113.9495, + "nameAirport": "Grand Canyon West", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "-5", + "airportId": 2529, + "codeIataAirport": "GCY", + "codeIataCity": "GCY", + "codeIcaoAirport": "KGCY", + "codeIso2Country": "US", + "geonameId": "4626341", + "latitudeAirport": 36.216667, + "longitudeAirport": -82.85, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 2530, + "codeIataAirport": "GDA", + "codeIataCity": "GDA", + "codeIcaoAirport": "", + "codeIso2Country": "CF", + "geonameId": "8298736", + "latitudeAirport": 9.333333, + "longitudeAirport": 21.166668, + "nameAirport": "Gounda", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "-5", + "airportId": 2531, + "codeIataAirport": "GDC", + "codeIataCity": "GSP", + "codeIcaoAirport": "KGYH", + "codeIso2Country": "US", + "geonameId": "4576791", + "latitudeAirport": 34.8, + "longitudeAirport": -82.35, + "nameAirport": "Donaldson Center", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 2532, + "codeIataAirport": "GDD", + "codeIataCity": "GDD", + "codeIcaoAirport": "YGDN", + "codeIso2Country": "AU", + "geonameId": "7731045", + "latitudeAirport": -18.716667, + "longitudeAirport": 128.55, + "nameAirport": "Gordon Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "3", + "airportId": 2533, + "codeIataAirport": "GDE", + "codeIataCity": "GDE", + "codeIcaoAirport": "HAGO", + "codeIso2Country": "ET", + "geonameId": "6297269", + "latitudeAirport": 5.902222, + "longitudeAirport": 43.628334, + "nameAirport": "Gode/Iddidole", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "9", + "airportId": 2534, + "codeIataAirport": "GDG", + "codeIataCity": "GDG", + "codeIcaoAirport": "UHBI", + "codeIso2Country": "RU", + "geonameId": "7668502", + "latitudeAirport": 53.466667, + "longitudeAirport": 125.8, + "nameAirport": "Magdagachi", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "-9", + "airportId": 2535, + "codeIataAirport": "GDH", + "codeIataCity": "GDH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5863052", + "latitudeAirport": 59.716667, + "longitudeAirport": -158.16667, + "nameAirport": "Golden Horn Lodge SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 2536, + "codeIataAirport": "GDI", + "codeIataCity": "GDI", + "codeIcaoAirport": "FEGL", + "codeIso2Country": "CF", + "geonameId": "7668236", + "latitudeAirport": 9.733333, + "longitudeAirport": 21.583332, + "nameAirport": "Gordil", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "2", + "airportId": 2537, + "codeIataAirport": "GDJ", + "codeIataCity": "GDJ", + "codeIcaoAirport": "FZWC", + "codeIso2Country": "CD", + "geonameId": "7730575", + "latitudeAirport": -6.766667, + "longitudeAirport": 23.966667, + "nameAirport": "Gandajika", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-6", + "airportId": 2538, + "codeIataAirport": "GDL", + "codeIataCity": "GDL", + "codeIcaoAirport": "MMGL", + "codeIso2Country": "MX", + "geonameId": "4011789", + "latitudeAirport": 20.525198, + "longitudeAirport": -103.29921, + "nameAirport": "Don Miguel Hidalgo y Costilla International", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-5", + "airportId": 2539, + "codeIataAirport": "GDM", + "codeIataCity": "GDM", + "codeIcaoAirport": "KGDM", + "codeIso2Country": "US", + "geonameId": "4937608", + "latitudeAirport": 42.566666, + "longitudeAirport": -71.98333, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 2540, + "codeIataAirport": "GDN", + "codeIataCity": "GDN", + "codeIcaoAirport": "EPGD", + "codeIso2Country": "PL", + "geonameId": "3099426", + "latitudeAirport": 54.380978, + "longitudeAirport": 18.468655, + "nameAirport": "Lech Walesa", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "-4", + "airportId": 2541, + "codeIataAirport": "GDO", + "codeIataCity": "GDO", + "codeIcaoAirport": "SVGD", + "codeIso2Country": "VE", + "geonameId": "6300851", + "latitudeAirport": 7.233333, + "longitudeAirport": -70.8, + "nameAirport": "Vare Maria", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-3", + "airportId": 2542, + "codeIataAirport": "GDP", + "codeIataCity": "GDP", + "codeIcaoAirport": "SNGD", + "codeIso2Country": "BR", + "geonameId": "7731046", + "latitudeAirport": -6.781944, + "longitudeAirport": -43.58167, + "nameAirport": "Guadalupe", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "3", + "airportId": 2543, + "codeIataAirport": "GDQ", + "codeIataCity": "GDQ", + "codeIcaoAirport": "HAGN", + "codeIso2Country": "ET", + "geonameId": "6297268", + "latitudeAirport": 12.514444, + "longitudeAirport": 37.445557, + "nameAirport": "Gondar", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-4", + "airportId": 2544, + "codeIataAirport": "GDT", + "codeIataCity": "GDT", + "codeIcaoAirport": "MBGT", + "codeIso2Country": "TC", + "geonameId": "7668339", + "latitudeAirport": 21.466667, + "longitudeAirport": -71.13333, + "nameAirport": "Grand Turk Island", + "nameCountry": "Turks and Caicos Islands", + "phone": "", + "timezone": "America/Grand_Turk" + }, + { + "GMT": "-7", + "airportId": 2545, + "codeIataAirport": "GDV", + "codeIataCity": "GDV", + "codeIcaoAirport": "KGDV", + "codeIso2Country": "US", + "geonameId": "5654391", + "latitudeAirport": 47.13889, + "longitudeAirport": -104.806946, + "nameAirport": "Dawson Community", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 2546, + "codeIataAirport": "GDW", + "codeIataCity": "GDW", + "codeIcaoAirport": "KGDW", + "codeIso2Country": "US", + "geonameId": "4993985", + "latitudeAirport": 43.983334, + "longitudeAirport": -84.48333, + "nameAirport": "Gladwin", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "11", + "airportId": 2547, + "codeIataAirport": "GDX", + "codeIataCity": "GDX", + "codeIcaoAirport": "UHMM", + "codeIso2Country": "RU", + "geonameId": "6300939", + "latitudeAirport": 59.916668, + "longitudeAirport": 150.71666, + "nameAirport": "Magadan", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Magadan" + }, + { + "GMT": "3", + "airportId": 2548, + "codeIataAirport": "GDZ", + "codeIataCity": "GDZ", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "7730192", + "latitudeAirport": 44.566666, + "longitudeAirport": 38.016666, + "nameAirport": "Gelendzik", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "11", + "airportId": 2549, + "codeIataAirport": "GEA", + "codeIataCity": "NOU", + "codeIcaoAirport": "NWWM", + "codeIso2Country": "NC", + "geonameId": "7668382", + "latitudeAirport": -22.260536, + "longitudeAirport": 166.47078, + "nameAirport": "Magenta", + "nameCountry": "New Caledonia", + "phone": "", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "9", + "airportId": 2550, + "codeIataAirport": "GEB", + "codeIataCity": "GEB", + "codeIcaoAirport": "WAMJ", + "codeIso2Country": "ID", + "geonameId": "7731047", + "latitudeAirport": 0.083333, + "longitudeAirport": 129.41667, + "nameAirport": "Gebe", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "2", + "airportId": 2551, + "codeIataAirport": "GEC", + "codeIataCity": "GEC", + "codeIcaoAirport": "", + "codeIso2Country": "CY", + "geonameId": "7731048", + "latitudeAirport": 35.233334, + "longitudeAirport": 33.716667, + "nameAirport": "Gecitkale", + "nameCountry": "Cyprus", + "phone": "", + "timezone": "Asia/Nicosia" + }, + { + "GMT": "-5", + "airportId": 2552, + "codeIataAirport": "GED", + "codeIataCity": "GED", + "codeIcaoAirport": "KGED", + "codeIso2Country": "US", + "geonameId": "4144896", + "latitudeAirport": 38.68833, + "longitudeAirport": -75.3575, + "nameAirport": "Sussex County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 2553, + "codeIataAirport": "GEE", + "codeIataCity": "GEE", + "codeIcaoAirport": "YGTO", + "codeIso2Country": "AU", + "geonameId": "7731049", + "latitudeAirport": -18.283333, + "longitudeAirport": 143.55, + "nameAirport": "George Town", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Hobart" + }, + { + "GMT": "11", + "airportId": 2554, + "codeIataAirport": "GEF", + "codeIataCity": "GEF", + "codeIcaoAirport": "AGEV", + "codeIso2Country": "SB", + "geonameId": "7730404", + "latitudeAirport": -7.578333, + "longitudeAirport": 156.59778, + "nameAirport": "Geva Airstrip", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-8", + "airportId": 2555, + "codeIataAirport": "GEG", + "codeIataCity": "GEG", + "codeIcaoAirport": "KGEG", + "codeIso2Country": "US", + "geonameId": "5811713", + "latitudeAirport": 47.62515, + "longitudeAirport": -117.537636, + "nameAirport": "Spokane International", + "nameCountry": "United States", + "phone": "509-455-6455", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 2556, + "codeIataAirport": "GEI", + "codeIataCity": "GEI", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "0", + "latitudeAirport": -4.5, + "longitudeAirport": 154.16667, + "nameAirport": "Green Islands", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 2557, + "codeIataAirport": "GEK", + "codeIataCity": "GEK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5862671", + "latitudeAirport": 63.1, + "longitudeAirport": -156.43333, + "nameAirport": "Ganes Creek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "airportId": 2558, + "codeIataAirport": "GEL", + "codeIataCity": "GEL", + "codeIcaoAirport": "SBNM", + "codeIso2Country": "BR", + "geonameId": "7668440", + "latitudeAirport": -28.28111, + "longitudeAirport": -54.168056, + "nameAirport": "Sepe Tiaraju", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 2559, + "codeIataAirport": "GEN", + "codeIataCity": "GEN", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 37.38333, + "longitudeAirport": -4.766667, + "nameAirport": "Oslo - Gardermoen Airport", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-4", + "airportId": 2560, + "codeIataAirport": "GEO", + "codeIataCity": "GEO", + "codeIcaoAirport": "SYCJ", + "codeIso2Country": "GY", + "geonameId": "6300882", + "latitudeAirport": 6.503833, + "longitudeAirport": -58.25308, + "nameAirport": "Cheddi Jagan International", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "-5", + "airportId": 2561, + "codeIataAirport": "GER", + "codeIataCity": "GER", + "codeIcaoAirport": "MUNG", + "codeIso2Country": "CU", + "geonameId": "6299928", + "latitudeAirport": 21.8375, + "longitudeAirport": -82.78, + "nameAirport": "Rafael Cabrera", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "8", + "airportId": 2562, + "codeIataAirport": "GES", + "codeIataCity": "GES", + "codeIcaoAirport": "RPWB", + "codeIso2Country": "PH", + "geonameId": "7730328", + "latitudeAirport": 6.108066, + "longitudeAirport": 125.23424, + "nameAirport": "General Santos International", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "8", + "airportId": 2563, + "codeIataAirport": "GET", + "codeIataCity": "GET", + "codeIcaoAirport": "YGEL", + "codeIso2Country": "AU", + "geonameId": "6301331", + "latitudeAirport": -28.796078, + "longitudeAirport": 114.70205, + "nameAirport": "Geraldton", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "airportId": 2564, + "codeIataAirport": "GEV", + "codeIataCity": "GEV", + "codeIcaoAirport": "ESNG", + "codeIso2Country": "SE", + "geonameId": "606087", + "latitudeAirport": 67.134445, + "longitudeAirport": 20.816668, + "nameAirport": "Gallivare", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "10", + "airportId": 2565, + "codeIataAirport": "GEW", + "codeIataCity": "GEW", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2096996", + "latitudeAirport": -9.3, + "longitudeAirport": 148.46666, + "nameAirport": "Gewoia", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 2566, + "codeIataAirport": "GEX", + "codeIataCity": "GEX", + "codeIcaoAirport": "YGLG", + "codeIso2Country": "AU", + "geonameId": "7668715", + "latitudeAirport": -38.13333, + "longitudeAirport": 144.35, + "nameAirport": "Geelong", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-7", + "airportId": 2567, + "codeIataAirport": "GEY", + "codeIataCity": "GEY", + "codeIcaoAirport": "KGEY", + "codeIso2Country": "US", + "geonameId": "5838975", + "latitudeAirport": 44.5, + "longitudeAirport": -108.05, + "nameAirport": "South Big Horn County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-7", + "airportId": 2568, + "codeIataAirport": "GFA", + "codeIataCity": "GTF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 47.5, + "longitudeAirport": -111.28333, + "nameAirport": "Malmstrom AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "airportId": 2569, + "codeIataAirport": "GFB", + "codeIataCity": "GFB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 59.016666, + "longitudeAirport": -160.05, + "nameAirport": "Togiak Fish", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 2570, + "codeIataAirport": "GFD", + "codeIataCity": "GFD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4258285", + "latitudeAirport": 39.783333, + "longitudeAirport": -85.76667, + "nameAirport": "Pope Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "10", + "airportId": 2571, + "codeIataAirport": "GFE", + "codeIataCity": "GFE", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2164457", + "latitudeAirport": -33.9, + "longitudeAirport": 148.18333, + "nameAirport": "Grenfell", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "airportId": 2572, + "codeIataAirport": "GFF", + "codeIataCity": "GFF", + "codeIcaoAirport": "YGTH", + "codeIso2Country": "AU", + "geonameId": "7668717", + "latitudeAirport": -34.255432, + "longitudeAirport": 146.0627, + "nameAirport": "Griffith", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "airportId": 2573, + "codeIataAirport": "GFK", + "codeIataCity": "GFK", + "codeIcaoAirport": "KGFK", + "codeIso2Country": "US", + "geonameId": "5059431", + "latitudeAirport": 47.9488, + "longitudeAirport": -97.17587, + "nameAirport": "Grand Forks", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 2574, + "codeIataAirport": "GFL", + "codeIataCity": "GFL", + "codeIcaoAirport": "KGFL", + "codeIso2Country": "US", + "geonameId": "5143269", + "latitudeAirport": 43.344444, + "longitudeAirport": -73.60917, + "nameAirport": "Warren County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 2575, + "codeIataAirport": "GFN", + "codeIataCity": "GFN", + "codeIcaoAirport": "YGFN", + "codeIso2Country": "AU", + "geonameId": "7668714", + "latitudeAirport": -29.759521, + "longitudeAirport": 153.02834, + "nameAirport": "Grafton", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-4", + "airportId": 2576, + "codeIataAirport": "GFO", + "codeIataCity": "GFO", + "codeIcaoAirport": "SYBT", + "codeIso2Country": "GY", + "geonameId": "7731050", + "latitudeAirport": 6.416667, + "longitudeAirport": -58.583332, + "nameAirport": "Bartica", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "1", + "airportId": 2577, + "codeIataAirport": "GFR", + "codeIataCity": "GFR", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "3014867", + "latitudeAirport": 48.88333, + "longitudeAirport": -1.566667, + "nameAirport": "Granville", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "2", + "airportId": 2578, + "codeIataAirport": "GFY", + "codeIataCity": "GFY", + "codeIcaoAirport": "FYGF", + "codeIso2Country": "NA", + "geonameId": "3357115", + "latitudeAirport": -19.6, + "longitudeAirport": 18.133333, + "nameAirport": "Grootfontein", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "0", + "airportId": 2579, + "codeIataAirport": "GGA", + "codeIataCity": "GGA", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "La Graciosa Ferry Port", + "nameCountry": "Spain", + "phone": "", + "timezone": "Atlantic/Canary" + }, + { + "GMT": "1", + "airportId": 2580, + "codeIataAirport": "GGC", + "codeIataCity": "GGC", + "codeIcaoAirport": "", + "codeIso2Country": "AO", + "geonameId": "0", + "latitudeAirport": -12.65, + "longitudeAirport": 22.566668, + "nameAirport": "Lumbala", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "10", + "airportId": 2581, + "codeIataAirport": "GGD", + "codeIataCity": "GGD", + "codeIcaoAirport": "YGDS", + "codeIso2Country": "AU", + "geonameId": "7731053", + "latitudeAirport": -18.633333, + "longitudeAirport": 139.23334, + "nameAirport": "Gregory Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 2582, + "codeIataAirport": "GGE", + "codeIataCity": "GGE", + "codeIcaoAirport": "KGGE", + "codeIso2Country": "US", + "geonameId": "4579667", + "latitudeAirport": 33.38333, + "longitudeAirport": -79.28333, + "nameAirport": "Georgetown", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 2583, + "codeIataAirport": "GGG", + "codeIataCity": "GGG", + "codeIcaoAirport": "KGGG", + "codeIso2Country": "US", + "geonameId": "4707814", + "latitudeAirport": 32.386665, + "longitudeAirport": -94.71528, + "nameAirport": "Kilgore", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 2584, + "codeIataAirport": "GGL", + "codeIataCity": "GGL", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "7551448", + "latitudeAirport": 8.333333, + "longitudeAirport": -77.083336, + "nameAirport": "Gilgal", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "airportId": 2585, + "codeIataAirport": "GGM", + "codeIataCity": "GGM", + "codeIcaoAirport": "HKKG", + "codeIso2Country": "KE", + "geonameId": "6297308", + "latitudeAirport": 0.266425, + "longitudeAirport": 34.783333, + "nameAirport": "Kakamega", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "0", + "airportId": 2586, + "codeIataAirport": "GGN", + "codeIataCity": "GGN", + "codeIcaoAirport": "DIGA", + "codeIso2Country": "CI", + "geonameId": "6296438", + "latitudeAirport": 6.133333, + "longitudeAirport": -5.933333, + "nameAirport": "Gagnoa", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "0", + "airportId": 2587, + "codeIataAirport": "GGO", + "codeIataCity": "GGO", + "codeIcaoAirport": "DIGL", + "codeIso2Country": "CI", + "geonameId": "7668185", + "latitudeAirport": 6.333333, + "longitudeAirport": -7.75, + "nameAirport": "Guiglo", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "3", + "airportId": 2588, + "codeIataAirport": "GGR", + "codeIataCity": "GGR", + "codeIcaoAirport": "", + "codeIso2Country": "SO", + "geonameId": "8298667", + "latitudeAirport": 8.283333, + "longitudeAirport": 48.333332, + "nameAirport": "Garoe", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-3", + "airportId": 2589, + "codeIataAirport": "GGS", + "codeIataCity": "GGS", + "codeIcaoAirport": "SAWR", + "codeIso2Country": "AR", + "geonameId": "6300577", + "latitudeAirport": -48.766666, + "longitudeAirport": -70.25, + "nameAirport": "Gobernador Gregores", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "-5", + "airportId": 2590, + "codeIataAirport": "GGT", + "codeIataCity": "GGT", + "codeIcaoAirport": "MYEF", + "codeIso2Country": "BS", + "geonameId": "6299937", + "latitudeAirport": 23.564018, + "longitudeAirport": -75.872475, + "nameAirport": "Exuma International", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-7", + "airportId": 2591, + "codeIataAirport": "GGW", + "codeIataCity": "GGW", + "codeIcaoAirport": "KGGW", + "codeIso2Country": "US", + "geonameId": "5654332", + "latitudeAirport": 48.212776, + "longitudeAirport": -106.615555, + "nameAirport": "Glasgow Valley County Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 2592, + "codeIataAirport": "GHA", + "codeIataCity": "GHA", + "codeIcaoAirport": "DAUG", + "codeIso2Country": "DZ", + "geonameId": "6296389", + "latitudeAirport": 32.38222, + "longitudeAirport": 3.800556, + "nameAirport": "Noumerate", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-5", + "airportId": 2593, + "codeIataAirport": "GHB", + "codeIataCity": "GHB", + "codeIcaoAirport": "MYEM", + "codeIso2Country": "BS", + "geonameId": "7730118", + "latitudeAirport": 25.280489, + "longitudeAirport": -76.32488, + "nameAirport": "Governors Harbour", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-5", + "airportId": 2594, + "codeIataAirport": "GHC", + "codeIataCity": "GHC", + "codeIcaoAirport": "MYBG", + "codeIso2Country": "BS", + "geonameId": "3572290", + "latitudeAirport": 25.738056, + "longitudeAirport": -77.84028, + "nameAirport": "Great Harbour", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-5", + "airportId": 2595, + "codeIataAirport": "GHE", + "codeIataCity": "GHE", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "0", + "latitudeAirport": 8.033333, + "longitudeAirport": -78.25, + "nameAirport": "Garachine", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "-6", + "airportId": 2596, + "codeIataAirport": "GHM", + "codeIataCity": "GHM", + "codeIcaoAirport": "KGHM", + "codeIso2Country": "US", + "geonameId": "4612472", + "latitudeAirport": 35.783333, + "longitudeAirport": -87.46667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 2597, + "codeIataAirport": "GHN", + "codeIataCity": "GHN", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "1555090", + "latitudeAirport": 30.466667, + "longitudeAirport": 106.65, + "nameAirport": "Guanghan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "airportId": 2598, + "codeIataAirport": "GHT", + "codeIataCity": "GHT", + "codeIcaoAirport": "HLGT", + "codeIso2Country": "LY", + "geonameId": "6297328", + "latitudeAirport": 24.966667, + "longitudeAirport": 10.166667, + "nameAirport": "Ghat", + "nameCountry": "Libya", + "phone": "", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "-3", + "airportId": 2599, + "codeIataAirport": "GHU", + "codeIataCity": "GHU", + "codeIcaoAirport": "SAAG", + "codeIso2Country": "AR", + "geonameId": "6300510", + "latitudeAirport": -33.004166, + "longitudeAirport": -58.61222, + "nameAirport": "Gualeguaychu", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "1", + "airportId": 2600, + "codeIataAirport": "GIB", + "codeIataCity": "GIB", + "codeIcaoAirport": "LXGB", + "codeIso2Country": "GI", + "geonameId": "6301797", + "latitudeAirport": 36.153763, + "longitudeAirport": -5.349271, + "nameAirport": "North Front", + "nameCountry": "Gibraltar", + "phone": "", + "timezone": "Europe/Gibraltar" + }, + { + "GMT": "10", + "airportId": 2601, + "codeIataAirport": "GIC", + "codeIataCity": "GIC", + "codeIcaoAirport": "YBOI", + "codeIso2Country": "AU", + "geonameId": "7731054", + "latitudeAirport": -9.233333, + "longitudeAirport": 142.21666, + "nameAirport": "Boigu Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "airportId": 2602, + "codeIataAirport": "GID", + "codeIataCity": "GID", + "codeIcaoAirport": "", + "codeIso2Country": "BI", + "geonameId": "426272", + "latitudeAirport": -3.416667, + "longitudeAirport": 29.916668, + "nameAirport": "Gitega", + "nameCountry": "Burundi", + "phone": "", + "timezone": "Africa/Bujumbura" + }, + { + "GMT": "-5", + "airportId": 2603, + "codeIataAirport": "GIF", + "codeIataCity": "GIF", + "codeIcaoAirport": "KGIF", + "codeIso2Country": "US", + "geonameId": "4178559", + "latitudeAirport": 28.066668, + "longitudeAirport": -81.75, + "nameAirport": "Gilbert Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 2604, + "codeIataAirport": "GIG", + "codeIataCity": "RIO", + "codeIcaoAirport": "SBGL", + "codeIso2Country": "BR", + "geonameId": "6301853", + "latitudeAirport": -22.814653, + "longitudeAirport": -43.24651, + "nameAirport": "Galeao Antonio Carlos Jobim", + "nameCountry": "Brazil", + "phone": "0800 723-3399", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "0", + "airportId": 2605, + "codeIataAirport": "GII", + "codeIataCity": "GII", + "codeIcaoAirport": "GUSI", + "codeIso2Country": "GN", + "geonameId": "6297254", + "latitudeAirport": 11.516667, + "longitudeAirport": -9.166667, + "nameAirport": "Siguiri", + "nameCountry": "Guinea", + "phone": "", + "timezone": "Africa/Conakry" + }, + { + "GMT": "5", + "airportId": 2606, + "codeIataAirport": "GIL", + "codeIataCity": "GIL", + "codeIcaoAirport": "OPGT", + "codeIso2Country": "PK", + "geonameId": "6641345", + "latitudeAirport": 35.91972, + "longitudeAirport": 74.33224, + "nameAirport": "Gilgit", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "1", + "airportId": 2607, + "codeIataAirport": "GIM", + "codeIataCity": "GIM", + "codeIcaoAirport": "", + "codeIso2Country": "GA", + "geonameId": "8298712", + "latitudeAirport": -0.016667, + "longitudeAirport": 11.4, + "nameAirport": "Miele Mimbale", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-5", + "airportId": 2608, + "codeIataAirport": "GIR", + "codeIataCity": "GIR", + "codeIcaoAirport": "SKGI", + "codeIso2Country": "CO", + "geonameId": "3682028", + "latitudeAirport": 4.3, + "longitudeAirport": -74.8, + "nameAirport": "Girardot", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "12", + "airportId": 2609, + "codeIataAirport": "GIS", + "codeIataCity": "GIS", + "codeIcaoAirport": "NZGS", + "codeIso2Country": "NZ", + "geonameId": "6240092", + "latitudeAirport": -38.661934, + "longitudeAirport": 177.98228, + "nameAirport": "Gisborne", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "3", + "airportId": 2610, + "codeIataAirport": "GIT", + "codeIataCity": "GIT", + "codeIcaoAirport": "", + "codeIso2Country": "TZ", + "geonameId": "7731055", + "latitudeAirport": -2.8, + "longitudeAirport": 32.2, + "nameAirport": "Geita", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "5.30", + "airportId": 2611, + "codeIataAirport": "GIU", + "codeIataCity": "GIU", + "codeIcaoAirport": "VCCS", + "codeIso2Country": "LK", + "geonameId": "7731056", + "latitudeAirport": 7.9564084, + "longitudeAirport": 80.7595754, + "nameAirport": "Sigiriya Slaf Base", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "2", + "airportId": 2612, + "codeIataAirport": "GIY", + "codeIataCity": "GIY", + "codeIcaoAirport": "FAGI", + "codeIso2Country": "ZA", + "geonameId": "7730488", + "latitudeAirport": -23.283333, + "longitudeAirport": 30.666668, + "nameAirport": "Giyani", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "3", + "airportId": 2613, + "codeIataAirport": "GIZ", + "codeIataCity": "GIZ", + "codeIcaoAirport": "OEGN", + "codeIso2Country": "SA", + "geonameId": "6300014", + "latitudeAirport": 16.898949, + "longitudeAirport": 42.582344, + "nameAirport": "Jazan", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-6", + "airportId": 2614, + "codeIataAirport": "GJA", + "codeIataCity": "GJA", + "codeIcaoAirport": "MHNJ", + "codeIso2Country": "HN", + "geonameId": "6299815", + "latitudeAirport": 16.445, + "longitudeAirport": -85.90583, + "nameAirport": "Guanaja", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "1", + "airportId": 2615, + "codeIataAirport": "GJL", + "codeIataCity": "GJL", + "codeIcaoAirport": "DAAV", + "codeIso2Country": "DZ", + "geonameId": "6296368", + "latitudeAirport": 36.8, + "longitudeAirport": 5.883333, + "nameAirport": "Jijel", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-4", + "airportId": 2616, + "codeIataAirport": "GJM", + "codeIataCity": "GJM", + "codeIcaoAirport": "SBGM", + "codeIso2Country": "BR", + "geonameId": "7730154", + "latitudeAirport": -10.783333, + "longitudeAirport": -65.36667, + "nameAirport": "Guajara-Mirim", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Porto_Velho" + }, + { + "GMT": "0", + "airportId": 2617, + "codeIataAirport": "GJR", + "codeIataCity": "GJR", + "codeIcaoAirport": "BIGJ", + "codeIso2Country": "IS", + "geonameId": "7668101", + "latitudeAirport": 65.98333, + "longitudeAirport": -21.35, + "nameAirport": "Gjogur", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-7", + "airportId": 2618, + "codeIataAirport": "GJT", + "codeIataCity": "GJT", + "codeIcaoAirport": "KGJT", + "codeIso2Country": "US", + "geonameId": "5423573", + "latitudeAirport": 39.122665, + "longitudeAirport": -108.528336, + "nameAirport": "Walker Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "airportId": 2619, + "codeIataAirport": "GKA", + "codeIataCity": "GKA", + "codeIcaoAirport": "AYGA", + "codeIso2Country": "PG", + "geonameId": "6940311", + "latitudeAirport": -6.075244, + "longitudeAirport": 145.39293, + "nameAirport": "Goroka", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 2620, + "codeIataAirport": "GKD", + "codeIataCity": "GKD", + "codeIcaoAirport": "LTFK", + "codeIso2Country": "TR", + "geonameId": "8181783", + "latitudeAirport": 40.19955, + "longitudeAirport": 25.8837, + "nameAirport": "Gokceada", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "1", + "airportId": 2621, + "codeIataAirport": "GKE", + "codeIataCity": "GKE", + "codeIcaoAirport": "ETNG", + "codeIso2Country": "DE", + "geonameId": "3207674", + "latitudeAirport": 50.966667, + "longitudeAirport": 6.133333, + "nameAirport": "Geilenkirchen", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "5.45", + "airportId": 2622, + "codeIataAirport": "GKH", + "codeIataCity": "GKH", + "codeIcaoAirport": "VNGK", + "codeIso2Country": "NP", + "geonameId": "7731057", + "latitudeAirport": 28.0, + "longitudeAirport": 84.675, + "nameAirport": "Gorkha", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "10", + "airportId": 2623, + "codeIataAirport": "GKL", + "codeIataCity": "GKL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298684", + "latitudeAirport": -23.183332, + "longitudeAirport": 150.94167, + "nameAirport": "Great Keppel Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "airportId": 2624, + "codeIataAirport": "GKN", + "codeIataCity": "GKN", + "codeIcaoAirport": "PAGK", + "codeIso2Country": "US", + "geonameId": "5863500", + "latitudeAirport": 62.155277, + "longitudeAirport": -145.45222, + "nameAirport": "Gulkana", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 2625, + "codeIataAirport": "GKO", + "codeIataCity": "GKO", + "codeIcaoAirport": "", + "codeIso2Country": "GA", + "geonameId": "2399997", + "latitudeAirport": -0.083333, + "longitudeAirport": 11.466667, + "nameAirport": "Kongoboumba", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-5", + "airportId": 2626, + "codeIataAirport": "GKT", + "codeIataCity": "GKT", + "codeIcaoAirport": "KGKT", + "codeIso2Country": "US", + "geonameId": "4656583", + "latitudeAirport": 35.85139, + "longitudeAirport": -83.51861, + "nameAirport": "Gatlinburg", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 2627, + "codeIataAirport": "GLA", + "codeIataCity": "GLA", + "codeIcaoAirport": "EGPF", + "codeIso2Country": "GB", + "geonameId": "6296626", + "latitudeAirport": 55.864212, + "longitudeAirport": -4.431782, + "nameAirport": "Glasgow International", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-7", + "airportId": 2628, + "codeIataAirport": "GLB", + "codeIataCity": "GLB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5296021", + "latitudeAirport": 5.95, + "longitudeAirport": -10.033333, + "nameAirport": "San Calos Apache", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "3", + "airportId": 2629, + "codeIataAirport": "GLC", + "codeIataCity": "GLC", + "codeIcaoAirport": "", + "codeIso2Country": "ET", + "geonameId": "0", + "latitudeAirport": 6.966667, + "longitudeAirport": 46.416668, + "nameAirport": "Geladi", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-7", + "airportId": 2630, + "codeIataAirport": "GLD", + "codeIataCity": "GLD", + "codeIcaoAirport": "KGLD", + "codeIso2Country": "US", + "geonameId": "5445482", + "latitudeAirport": 39.370277, + "longitudeAirport": -101.69945, + "nameAirport": "Renner Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 2631, + "codeIataAirport": "GLE", + "codeIataCity": "GLE", + "codeIcaoAirport": "KGLE", + "codeIso2Country": "US", + "geonameId": "4692755", + "latitudeAirport": 33.63333, + "longitudeAirport": -97.13333, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 2632, + "codeIataAirport": "GLF", + "codeIataCity": "GLF", + "codeIcaoAirport": "MRGF", + "codeIso2Country": "CR", + "geonameId": "7668357", + "latitudeAirport": 8.651389, + "longitudeAirport": -83.18083, + "nameAirport": "Golfito", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "10", + "airportId": 2633, + "codeIataAirport": "GLG", + "codeIataCity": "GLG", + "codeIcaoAirport": "YGLE", + "codeIso2Country": "AU", + "geonameId": "7731059", + "latitudeAirport": -24.816668, + "longitudeAirport": 139.6, + "nameAirport": "Glengyle", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "airportId": 2634, + "codeIataAirport": "GLH", + "codeIataCity": "GLH", + "codeIcaoAirport": "KGLH", + "codeIso2Country": "US", + "geonameId": "4428484", + "latitudeAirport": 33.484444, + "longitudeAirport": -90.985, + "nameAirport": "Greenville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 2635, + "codeIataAirport": "GLI", + "codeIataCity": "GLI", + "codeIcaoAirport": "YGLI", + "codeIso2Country": "AU", + "geonameId": "7668716", + "latitudeAirport": -29.676666, + "longitudeAirport": 151.69083, + "nameAirport": "Glen Innes", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "3", + "airportId": 2636, + "codeIataAirport": "GLK", + "codeIataCity": "GLK", + "codeIcaoAirport": "HCMR", + "codeIso2Country": "SO", + "geonameId": "7730603", + "latitudeAirport": 6.766667, + "longitudeAirport": 47.433334, + "nameAirport": "Galcaio", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "1", + "airportId": 2637, + "codeIataAirport": "GLL", + "codeIataCity": "GLL", + "codeIcaoAirport": "ENKL", + "codeIso2Country": "NO", + "geonameId": "7730484", + "latitudeAirport": 60.7, + "longitudeAirport": 8.95, + "nameAirport": "Klanten Airport", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "10", + "airportId": 2638, + "codeIataAirport": "GLM", + "codeIataCity": "GLM", + "codeIcaoAirport": "YGLO", + "codeIso2Country": "AU", + "geonameId": "7731061", + "latitudeAirport": -22.916668, + "longitudeAirport": 138.83333, + "nameAirport": "Glenormiston", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "0", + "airportId": 2639, + "codeIataAirport": "GLN", + "codeIataCity": "GLN", + "codeIcaoAirport": "", + "codeIso2Country": "MA", + "geonameId": "7731062", + "latitudeAirport": 29.016666, + "longitudeAirport": -10.066667, + "nameAirport": "Goulimime", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "0", + "airportId": 2640, + "codeIataAirport": "GLO", + "codeIataCity": "GLO", + "codeIcaoAirport": "EGBJ", + "codeIso2Country": "GB", + "geonameId": "6296574", + "latitudeAirport": 51.88333, + "longitudeAirport": -2.233333, + "nameAirport": "Gloucestershire", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "10", + "airportId": 2641, + "codeIataAirport": "GLP", + "codeIataCity": "GLP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299175", + "latitudeAirport": -5.283333, + "longitudeAirport": 141.51666, + "nameAirport": "Gulgubip", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 2642, + "codeIataAirport": "GLQ", + "codeIataCity": "GLQ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5862936", + "latitudeAirport": 62.11667, + "longitudeAirport": -145.55, + "nameAirport": "Glennallen", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 2643, + "codeIataAirport": "GLR", + "codeIataCity": "GLR", + "codeIcaoAirport": "KGLR", + "codeIso2Country": "US", + "geonameId": "5004660", + "latitudeAirport": 45.033333, + "longitudeAirport": -84.666664, + "nameAirport": "Otsego County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-6", + "airportId": 2644, + "codeIataAirport": "GLS", + "codeIataCity": "GLS", + "codeIcaoAirport": "KGLS", + "codeIso2Country": "US", + "geonameId": "4727357", + "latitudeAirport": 29.2675, + "longitudeAirport": -94.860275, + "nameAirport": "Scholes Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 2645, + "codeIataAirport": "GLT", + "codeIataCity": "GLT", + "codeIcaoAirport": "YGLA", + "codeIso2Country": "AU", + "geonameId": "7910182", + "latitudeAirport": -23.87147, + "longitudeAirport": 151.22351, + "nameAirport": "Gladstone", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "airportId": 2646, + "codeIataAirport": "GLV", + "codeIataCity": "GLV", + "codeIcaoAirport": "PAGL", + "codeIso2Country": "US", + "geonameId": "5863075", + "latitudeAirport": 64.54417, + "longitudeAirport": -163.0375, + "nameAirport": "Golovin", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "-6", + "airportId": 2647, + "codeIataAirport": "GLW", + "codeIataCity": "GLW", + "codeIcaoAirport": "KGLW", + "codeIso2Country": "US", + "geonameId": "4292829", + "latitudeAirport": 37.0, + "longitudeAirport": -85.916664, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "airportId": 2648, + "codeIataAirport": "GLX", + "codeIataCity": "GLX", + "codeIcaoAirport": "WAMA", + "codeIso2Country": "ID", + "geonameId": "6301190", + "latitudeAirport": 1.833333, + "longitudeAirport": 127.833336, + "nameAirport": "Galela", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "airportId": 2649, + "codeIataAirport": "GLY", + "codeIataCity": "GLY", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2070704", + "latitudeAirport": -20.083332, + "longitudeAirport": 119.666664, + "nameAirport": "Goldsworthy", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "airportId": 2650, + "codeIataAirport": "GLZ", + "codeIataCity": "GLZ", + "codeIcaoAirport": "EHGR", + "codeIso2Country": "NL", + "geonameId": "6296686", + "latitudeAirport": 51.583332, + "longitudeAirport": 4.75, + "nameAirport": "Gilze-Rijen", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "airportId": 2651, + "codeIataAirport": "GMA", + "codeIataCity": "GMA", + "codeIcaoAirport": "FZFK", + "codeIso2Country": "CD", + "geonameId": "6297147", + "latitudeAirport": 3.235, + "longitudeAirport": 19.768612, + "nameAirport": "Gemena", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "3", + "airportId": 2652, + "codeIataAirport": "GMB", + "codeIataCity": "GMB", + "codeIcaoAirport": "HAGM", + "codeIso2Country": "ET", + "geonameId": "7730088", + "latitudeAirport": 8.283333, + "longitudeAirport": 34.583332, + "nameAirport": "Gambela", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-5", + "airportId": 2653, + "codeIataAirport": "GMC", + "codeIataCity": "GMC", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8261029", + "latitudeAirport": 49.433334, + "longitudeAirport": -2.6, + "nameAirport": "Guerima", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "0", + "airportId": 2654, + "codeIataAirport": "GMD", + "codeIataCity": "GMD", + "codeIcaoAirport": "GMMB", + "codeIso2Country": "MA", + "geonameId": "2555519", + "latitudeAirport": 33.61297, + "longitudeAirport": -7.12079, + "nameAirport": "Ben Slimane", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "3", + "airportId": 2655, + "codeIataAirport": "GME", + "codeIataCity": "GME", + "codeIcaoAirport": "UMGG", + "codeIso2Country": "BY", + "geonameId": "6300977", + "latitudeAirport": 52.416668, + "longitudeAirport": 31.0, + "nameAirport": "Gomel", + "nameCountry": "Belarus", + "phone": "", + "timezone": "Europe/Minsk" + }, + { + "GMT": "10", + "airportId": 2656, + "codeIataAirport": "GMI", + "codeIataCity": "GMI", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731063", + "latitudeAirport": -6.3, + "longitudeAirport": 150.33333, + "nameAirport": "Gasmata Island", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 2657, + "codeIataAirport": "GMM", + "codeIataCity": "GMM", + "codeIcaoAirport": "FCOG", + "codeIso2Country": "CG", + "geonameId": "6296960", + "latitudeAirport": -1.933333, + "longitudeAirport": 15.866667, + "nameAirport": "Gamboma", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "12", + "airportId": 2658, + "codeIataAirport": "GMN", + "codeIataCity": "GMN", + "codeIcaoAirport": "NZGM", + "codeIso2Country": "NZ", + "geonameId": "7668385", + "latitudeAirport": -42.45, + "longitudeAirport": 171.2, + "nameAirport": "Greymouth", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "1", + "airportId": 2659, + "codeIataAirport": "GMO", + "codeIataCity": "GMO", + "codeIcaoAirport": "DNGO", + "codeIso2Country": "NG", + "geonameId": "8298657", + "latitudeAirport": 10.298056, + "longitudeAirport": 10.898889, + "nameAirport": "Lawanti", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "9", + "airportId": 2660, + "codeIataAirport": "GMP", + "codeIataCity": "SEL", + "codeIcaoAirport": "RKSS", + "codeIso2Country": "KR", + "geonameId": "6300440", + "latitudeAirport": 37.559288, + "longitudeAirport": 126.80351, + "nameAirport": "Gimpo Airport", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "-9", + "airportId": 2661, + "codeIataAirport": "GMR", + "codeIataCity": "GMR", + "codeIcaoAirport": "NTGJ", + "codeIso2Country": "PF", + "geonameId": "7668371", + "latitudeAirport": -23.084, + "longitudeAirport": -134.88757, + "nameAirport": "Gambier Island", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Gambier" + }, + { + "GMT": "-3", + "airportId": 2662, + "codeIataAirport": "GMS", + "codeIataCity": "GMS", + "codeIcaoAirport": "SNGM", + "codeIso2Country": "BR", + "geonameId": "7731064", + "latitudeAirport": -2.15, + "longitudeAirport": -44.7, + "nameAirport": "Guimaraes", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-9", + "airportId": 2663, + "codeIataAirport": "GMT", + "codeIataCity": "GMT", + "codeIcaoAirport": "PAGZ", + "codeIso2Country": "US", + "geonameId": "8114023", + "latitudeAirport": 65.405556, + "longitudeAirport": -161.2775, + "nameAirport": "Granite Mountain", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 2664, + "codeIataAirport": "GMU", + "codeIataCity": "GSP", + "codeIcaoAirport": "KGMU", + "codeIso2Country": "US", + "geonameId": "4580554", + "latitudeAirport": 34.85, + "longitudeAirport": -82.38333, + "nameAirport": "Greenville Downtown", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 2665, + "codeIataAirport": "GMV", + "codeIataCity": "GMV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 37.001945, + "longitudeAirport": -110.20278, + "nameAirport": "Monument Valley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "0", + "airportId": 2666, + "codeIataAirport": "GMZ", + "codeIataCity": "GMZ", + "codeIcaoAirport": "GCGM", + "codeIso2Country": "ES", + "geonameId": "6452903", + "latitudeAirport": 28.016666, + "longitudeAirport": -17.2, + "nameAirport": "La Gomera", + "nameCountry": "Spain", + "phone": "", + "timezone": "Atlantic/Canary" + }, + { + "GMT": "3", + "airportId": 2667, + "codeIataAirport": "GNA", + "codeIataCity": "GNA", + "codeIcaoAirport": "UMMG", + "codeIso2Country": "BY", + "geonameId": "6300980", + "latitudeAirport": 53.666668, + "longitudeAirport": 23.8, + "nameAirport": "Grodna", + "nameCountry": "Belarus", + "phone": "", + "timezone": "Europe/Minsk" + }, + { + "GMT": "1", + "airportId": 2668, + "codeIataAirport": "GNB", + "codeIataCity": "LYS", + "codeIcaoAirport": "LFLS", + "codeIso2Country": "FR", + "geonameId": "6299405", + "latitudeAirport": 45.359833, + "longitudeAirport": 5.332019, + "nameAirport": "Grenoble-isere Airport (St Geoirs)", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-4", + "airportId": 2669, + "codeIataAirport": "GND", + "codeIataCity": "GND", + "codeIcaoAirport": "TGPY", + "codeIso2Country": "GD", + "geonameId": "3579978", + "latitudeAirport": 12.004167, + "longitudeAirport": -61.78611, + "nameAirport": "Point Salines International", + "nameCountry": "", + "phone": "", + "timezone": "America/Grenada" + }, + { + "GMT": "-8", + "airportId": 2670, + "codeIataAirport": "GNF", + "codeIataCity": "GNF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.975307, + "longitudeAirport": -89.93228, + "nameAirport": "Gansner Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-7", + "airportId": 2671, + "codeIataAirport": "GNG", + "codeIataCity": "GNG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.933334, + "longitudeAirport": -114.71667, + "nameAirport": "Gooding", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Boise" + }, + { + "GMT": "8", + "airportId": 2672, + "codeIataAirport": "GNI", + "codeIataCity": "GNI", + "codeIcaoAirport": "RCGI", + "codeIso2Country": "TW", + "geonameId": "6600376", + "latitudeAirport": 23.1, + "longitudeAirport": 121.46667, + "nameAirport": "Green Island", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "-3", + "airportId": 2673, + "codeIataAirport": "GNM", + "codeIataCity": "GNM", + "codeIcaoAirport": "SNGI", + "codeIso2Country": "BR", + "geonameId": "7731065", + "latitudeAirport": -14.3, + "longitudeAirport": -42.783333, + "nameAirport": "Guanambi", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "3", + "airportId": 2674, + "codeIataAirport": "GNN", + "codeIataCity": "GNN", + "codeIcaoAirport": "HAGH", + "codeIso2Country": "ET", + "geonameId": "8298796", + "latitudeAirport": 7.15, + "longitudeAirport": 40.716667, + "nameAirport": "Ghinnir", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-3", + "airportId": 2675, + "codeIataAirport": "GNR", + "codeIataCity": "GNR", + "codeIcaoAirport": "SAHR", + "codeIso2Country": "AR", + "geonameId": "7730765", + "latitudeAirport": -39.983334, + "longitudeAirport": -67.6, + "nameAirport": "General Roca", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "7", + "airportId": 2676, + "codeIataAirport": "GNS", + "codeIataCity": "GNS", + "codeIcaoAirport": "WIMB", + "codeIso2Country": "ID", + "geonameId": "6301235", + "latitudeAirport": 1.25, + "longitudeAirport": 97.5, + "nameAirport": "Binaka", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-7", + "airportId": 2677, + "codeIataAirport": "GNT", + "codeIataCity": "GNT", + "codeIcaoAirport": "KGNT", + "codeIso2Country": "US", + "geonameId": "5469855", + "latitudeAirport": 35.15, + "longitudeAirport": -107.86667, + "nameAirport": "Milan", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "airportId": 2678, + "codeIataAirport": "GNU", + "codeIataCity": "GNU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5863097", + "latitudeAirport": 59.1125, + "longitudeAirport": -161.58055, + "nameAirport": "Goodnews Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 2679, + "codeIataAirport": "GNV", + "codeIataCity": "GNV", + "codeIcaoAirport": "KGNV", + "codeIso2Country": "US", + "geonameId": "4156415", + "latitudeAirport": 29.686142, + "longitudeAirport": -82.276794, + "nameAirport": "Gainesville Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 2680, + "codeIataAirport": "GNY", + "codeIataCity": "SFQ", + "codeIcaoAirport": "LTCH", + "codeIso2Country": "TR", + "geonameId": "7539717", + "latitudeAirport": 37.094166, + "longitudeAirport": 38.846943, + "nameAirport": "Guney Anadolu Projesi", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "2", + "airportId": 2681, + "codeIataAirport": "GNZ", + "codeIataCity": "GNZ", + "codeIcaoAirport": "FBGZ", + "codeIso2Country": "BW", + "geonameId": "6296944", + "latitudeAirport": -21.7, + "longitudeAirport": 21.666668, + "nameAirport": "Ghanzi", + "nameCountry": "Botswana", + "phone": "", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "1", + "airportId": 2682, + "codeIataAirport": "GOA", + "codeIataCity": "GOA", + "codeIcaoAirport": "LIMJ", + "codeIso2Country": "IT", + "geonameId": "3212474", + "latitudeAirport": 44.415066, + "longitudeAirport": 8.85081, + "nameAirport": "Cristoforo Colombo", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "3", + "airportId": 2683, + "codeIataAirport": "GOB", + "codeIataCity": "GOB", + "codeIcaoAirport": "HAGB", + "codeIso2Country": "ET", + "geonameId": "7730587", + "latitudeAirport": 7.013889, + "longitudeAirport": 39.980556, + "nameAirport": "Goba", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "10", + "airportId": 2684, + "codeIataAirport": "GOC", + "codeIataCity": "GOC", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298912", + "latitudeAirport": -9.166667, + "longitudeAirport": 148.81667, + "nameAirport": "Gora", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 2685, + "codeIataAirport": "GOE", + "codeIataCity": "GOE", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298850", + "latitudeAirport": -5.366667, + "longitudeAirport": 151.85, + "nameAirport": "Gonalia", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 2686, + "codeIataAirport": "GOF", + "codeIataCity": "SJT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 31.466667, + "longitudeAirport": -100.433334, + "nameAirport": "Goodfellow AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 2687, + "codeIataAirport": "GOG", + "codeIataCity": "GOG", + "codeIcaoAirport": "FYGB", + "codeIso2Country": "NA", + "geonameId": "8260820", + "latitudeAirport": -22.504723, + "longitudeAirport": 18.974722, + "nameAirport": "Gobabis", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-3", + "airportId": 2688, + "codeIataAirport": "GOH", + "codeIataCity": "GOH", + "codeIcaoAirport": "BGGH", + "codeIso2Country": "GL", + "geonameId": "6295697", + "latitudeAirport": 64.181946, + "longitudeAirport": -51.725, + "nameAirport": "Nuuk", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "5.30", + "airportId": 2689, + "codeIataAirport": "GOI", + "codeIataCity": "GOI", + "codeIcaoAirport": "VAGO", + "codeIso2Country": "IN", + "geonameId": "6301037", + "latitudeAirport": 15.384534, + "longitudeAirport": 73.83983, + "nameAirport": "Goa International", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "3", + "airportId": 2690, + "codeIataAirport": "GOJ", + "codeIataCity": "GOJ", + "codeIcaoAirport": "UWGG", + "codeIso2Country": "RU", + "geonameId": "6301021", + "latitudeAirport": 56.218613, + "longitudeAirport": 43.789764, + "nameAirport": "Nizhniy Novgorod", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "airportId": 2691, + "codeIataAirport": "GOK", + "codeIataCity": "GOK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 35.88333, + "longitudeAirport": -97.416664, + "nameAirport": "Guthrie", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 2692, + "codeIataAirport": "GOL", + "codeIataCity": "GOL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5843997", + "latitudeAirport": 42.416668, + "longitudeAirport": -124.416664, + "nameAirport": "State", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "airportId": 2693, + "codeIataAirport": "GOM", + "codeIataCity": "GOM", + "codeIcaoAirport": "FZNA", + "codeIso2Country": "CD", + "geonameId": "6297151", + "latitudeAirport": -1.67, + "longitudeAirport": 29.235, + "nameAirport": "Goma", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-5", + "airportId": 2694, + "codeIataAirport": "GON", + "codeIataCity": "GON", + "codeIcaoAirport": "KGON", + "codeIso2Country": "US", + "geonameId": "4835487", + "latitudeAirport": 41.328888, + "longitudeAirport": -72.04639, + "nameAirport": "New London", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 2695, + "codeIataAirport": "GOO", + "codeIataCity": "GOO", + "codeIcaoAirport": "YGDI", + "codeIso2Country": "AU", + "geonameId": "7731066", + "latitudeAirport": -28.524445, + "longitudeAirport": 150.31944, + "nameAirport": "Goondiwindi", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5.30", + "airportId": 2696, + "codeIataAirport": "GOP", + "codeIataCity": "GOP", + "codeIcaoAirport": "VEGK", + "codeIso2Country": "IN", + "geonameId": "6301071", + "latitudeAirport": 26.746862, + "longitudeAirport": 83.44376, + "nameAirport": "Gorakhpur", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "8", + "airportId": 2697, + "codeIataAirport": "GOQ", + "codeIataCity": "GOQ", + "codeIcaoAirport": "ZLGM", + "codeIso2Country": "CN", + "geonameId": "7730288", + "latitudeAirport": 36.404633, + "longitudeAirport": 94.78931, + "nameAirport": "Golmud", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "airportId": 2698, + "codeIataAirport": "GOR", + "codeIataCity": "GOR", + "codeIcaoAirport": "HAGR", + "codeIso2Country": "ET", + "geonameId": "6297270", + "latitudeAirport": 8.155556, + "longitudeAirport": 35.538055, + "nameAirport": "Gore", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "10", + "airportId": 2699, + "codeIataAirport": "GOS", + "codeIataCity": "GOS", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2164849", + "latitudeAirport": -33.433334, + "longitudeAirport": 151.35, + "nameAirport": "Gosford", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "airportId": 2700, + "codeIataAirport": "GOT", + "codeIataCity": "GOT", + "codeIcaoAirport": "ESGG", + "codeIso2Country": "SE", + "geonameId": "6296790", + "latitudeAirport": 57.66664, + "longitudeAirport": 12.294878, + "nameAirport": "Landvetter", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 2701, + "codeIataAirport": "GOU", + "codeIataCity": "GOU", + "codeIcaoAirport": "FKKR", + "codeIso2Country": "CM", + "geonameId": "6297003", + "latitudeAirport": 9.336111, + "longitudeAirport": 13.375556, + "nameAirport": "Garoua", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "9.30", + "airportId": 2702, + "codeIataAirport": "GOV", + "codeIataCity": "GOV", + "codeIcaoAirport": "YPGV", + "codeIso2Country": "AU", + "geonameId": "6301306", + "latitudeAirport": -12.269595, + "longitudeAirport": 136.82265, + "nameAirport": "Nhulunbuy", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "5.30", + "airportId": 2703, + "codeIataAirport": "GOY", + "codeIataCity": "GOY", + "codeIcaoAirport": "VCCG", + "codeIso2Country": "LK", + "geonameId": "7730209", + "latitudeAirport": 7.333333, + "longitudeAirport": 81.61667, + "nameAirport": "Amparai", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "2", + "airportId": 2704, + "codeIataAirport": "GOZ", + "codeIataCity": "GOZ", + "codeIcaoAirport": "LBGO", + "codeIso2Country": "BG", + "geonameId": "6299306", + "latitudeAirport": 43.11667, + "longitudeAirport": 25.666668, + "nameAirport": "Gorna Oriahovitsa", + "nameCountry": "Bulgaria", + "phone": "", + "timezone": "Europe/Sofia" + }, + { + "GMT": "2", + "airportId": 2705, + "codeIataAirport": "GPA", + "codeIataCity": "GPA", + "codeIcaoAirport": "LGRX", + "codeIso2Country": "GR", + "geonameId": "6299506", + "latitudeAirport": 38.25, + "longitudeAirport": 21.733334, + "nameAirport": "Araxos Airport", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "-3", + "airportId": 2706, + "codeIataAirport": "GPB", + "codeIataCity": "GPB", + "codeIcaoAirport": "SSUW", + "codeIso2Country": "BR", + "geonameId": "7668437", + "latitudeAirport": -25.333332, + "longitudeAirport": -51.5, + "nameAirport": "Tancredo Thomaz Faria", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "airportId": 2707, + "codeIataAirport": "GPD", + "codeIataCity": "GPD", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -19.999445, + "longitudeAirport": 139.91777, + "nameAirport": "Mount Gordon Mine", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 2708, + "codeIataAirport": "GPI", + "codeIataCity": "GPI", + "codeIcaoAirport": "SKGP", + "codeIso2Country": "CO", + "geonameId": "7910370", + "latitudeAirport": 2.5, + "longitudeAirport": -78.34167, + "nameAirport": "Guapi", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 2709, + "codeIataAirport": "GPL", + "codeIataCity": "GPL", + "codeIcaoAirport": "MRGP", + "codeIso2Country": "CR", + "geonameId": "7730110", + "latitudeAirport": 10.2, + "longitudeAirport": -83.8, + "nameAirport": "Guapiles", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "9.30", + "airportId": 2710, + "codeIataAirport": "GPN", + "codeIataCity": "GPN", + "codeIcaoAirport": "YGPT", + "codeIso2Country": "AU", + "geonameId": "7730258", + "latitudeAirport": -11.766667, + "longitudeAirport": 130.01666, + "nameAirport": "Garden Point", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-3", + "airportId": 2711, + "codeIataAirport": "GPO", + "codeIataCity": "GPO", + "codeIcaoAirport": "SAZG", + "codeIso2Country": "AR", + "geonameId": "6300583", + "latitudeAirport": -35.63333, + "longitudeAirport": -63.766666, + "nameAirport": "General Pico", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-6", + "airportId": 2712, + "codeIataAirport": "GPS", + "codeIataCity": "GPS", + "codeIcaoAirport": "SEGS", + "codeIso2Country": "EC", + "geonameId": "6453414", + "latitudeAirport": -0.434722, + "longitudeAirport": -90.282776, + "nameAirport": "Baltra", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "Pacific/Galapagos" + }, + { + "GMT": "-6", + "airportId": 2713, + "codeIataAirport": "GPT", + "codeIataCity": "GPT", + "codeIcaoAirport": "KGPT", + "codeIso2Country": "US", + "geonameId": "4428674", + "latitudeAirport": 30.413284, + "longitudeAirport": -89.07203, + "nameAirport": "Gulfport-Biloxi International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 2714, + "codeIataAirport": "GPZ", + "codeIataCity": "GPZ", + "codeIcaoAirport": "KGPZ", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 47.214443, + "longitudeAirport": -93.51111, + "nameAirport": "Grand Rapids", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 2715, + "codeIataAirport": "GQQ", + "codeIataCity": "GQQ", + "codeIcaoAirport": "KGQQ", + "codeIso2Country": "US", + "geonameId": "5155421", + "latitudeAirport": 40.736668, + "longitudeAirport": -82.757225, + "nameAirport": "Galion", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 2716, + "codeIataAirport": "GRA", + "codeIataCity": "GRA", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 8.333333, + "longitudeAirport": -73.7, + "nameAirport": "Gamarra", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 2717, + "codeIataAirport": "GRB", + "codeIataCity": "GRB", + "codeIcaoAirport": "KGRB", + "codeIso2Country": "US", + "geonameId": "6298312", + "latitudeAirport": 44.492847, + "longitudeAirport": -88.121895, + "nameAirport": "Austin-straubel Field", + "nameCountry": "United States", + "phone": "920-498-4800", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 2718, + "codeIataAirport": "GRC", + "codeIataCity": "GRC", + "codeIcaoAirport": "", + "codeIso2Country": "LR", + "geonameId": "2276625", + "latitudeAirport": 4.6, + "longitudeAirport": -8.166667, + "nameAirport": "Grand Cess", + "nameCountry": "Liberia", + "phone": "", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-5", + "airportId": 2719, + "codeIataAirport": "GRD", + "codeIataCity": "GRD", + "codeIcaoAirport": "KGRD", + "codeIso2Country": "US", + "geonameId": "4580576", + "latitudeAirport": 34.25139, + "longitudeAirport": -82.15833, + "nameAirport": "Greenwood", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 2720, + "codeIataAirport": "GRE", + "codeIataCity": "GRE", + "codeIcaoAirport": "KGRE", + "codeIso2Country": "US", + "geonameId": "4239869", + "latitudeAirport": 38.88333, + "longitudeAirport": -89.416664, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 2721, + "codeIataAirport": "GRF", + "codeIataCity": "TIW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 47.083332, + "longitudeAirport": -122.57917, + "nameAirport": "Gray AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "4.30", + "airportId": 2722, + "codeIataAirport": "GRG", + "codeIataCity": "GRG", + "codeIcaoAirport": "", + "codeIso2Country": "AF", + "geonameId": "8299251", + "latitudeAirport": 33.61667, + "longitudeAirport": 69.11667, + "nameAirport": "Gardez", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "10", + "airportId": 2723, + "codeIataAirport": "GRH", + "codeIataCity": "GRH", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298974", + "latitudeAirport": -10.225, + "longitudeAirport": 150.55, + "nameAirport": "Garuahi", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 2724, + "codeIataAirport": "GRI", + "codeIataCity": "GRI", + "codeIcaoAirport": "KGRI", + "codeIso2Country": "US", + "geonameId": "5069297", + "latitudeAirport": 40.96722, + "longitudeAirport": -98.30666, + "nameAirport": "Grand Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 2725, + "codeIataAirport": "GRJ", + "codeIataCity": "GRJ", + "codeIcaoAirport": "FAGG", + "codeIso2Country": "ZA", + "geonameId": "1002148", + "latitudeAirport": -34.00148, + "longitudeAirport": 22.382235, + "nameAirport": "George", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-6", + "airportId": 2726, + "codeIataAirport": "GRK", + "codeIataCity": "ILE", + "codeIcaoAirport": "KGRK", + "codeIso2Country": "US", + "geonameId": "6298316", + "latitudeAirport": 31.061821, + "longitudeAirport": -97.820915, + "nameAirport": "Robert Gray AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 2727, + "codeIataAirport": "GRL", + "codeIataCity": "GRL", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260816", + "latitudeAirport": -7.95, + "longitudeAirport": 147.18333, + "nameAirport": "Garasa", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 2728, + "codeIataAirport": "GRM", + "codeIataCity": "GRM", + "codeIcaoAirport": "KCKC", + "codeIso2Country": "US", + "geonameId": "5028506", + "latitudeAirport": 46.666668, + "longitudeAirport": -85.98333, + "nameAirport": "Devils Track", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 2729, + "codeIataAirport": "GRN", + "codeIataCity": "GRN", + "codeIcaoAirport": "KGRN", + "codeIso2Country": "US", + "geonameId": "5695728", + "latitudeAirport": 42.8, + "longitudeAirport": -102.2, + "nameAirport": "Gordon", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 2730, + "codeIataAirport": "GRO", + "codeIataCity": "GRO", + "codeIcaoAirport": "LEGE", + "codeIso2Country": "ES", + "geonameId": "6299335", + "latitudeAirport": 41.89804, + "longitudeAirport": 2.766383, + "nameAirport": "Girona-Costa Brava", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-3", + "airportId": 2731, + "codeIataAirport": "GRP", + "codeIataCity": "GRP", + "codeIcaoAirport": "SWGI", + "codeIso2Country": "BR", + "geonameId": "7731067", + "latitudeAirport": -11.666667, + "longitudeAirport": -49.216667, + "nameAirport": "Gurupi", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Araguaina" + }, + { + "GMT": "1", + "airportId": 2732, + "codeIataAirport": "GRQ", + "codeIataCity": "GRQ", + "codeIcaoAirport": "EHGG", + "codeIso2Country": "NL", + "geonameId": "6296685", + "latitudeAirport": 53.120277, + "longitudeAirport": 6.575556, + "nameAirport": "Eelde", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "-5", + "airportId": 2733, + "codeIataAirport": "GRR", + "codeIataCity": "GRR", + "codeIcaoAirport": "KGRR", + "codeIso2Country": "US", + "geonameId": "4998006", + "latitudeAirport": 42.88501, + "longitudeAirport": -85.52974, + "nameAirport": "Gerald R. Ford International", + "nameCountry": "United States", + "phone": "616-233-6000", + "timezone": "America/Detroit" + }, + { + "GMT": "1", + "airportId": 2734, + "codeIataAirport": "GRS", + "codeIataCity": "GRS", + "codeIcaoAirport": "LIRS", + "codeIso2Country": "IT", + "geonameId": "6299630", + "latitudeAirport": 42.761944, + "longitudeAirport": 11.070556, + "nameAirport": "Baccarini", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "5", + "airportId": 2735, + "codeIataAirport": "GRT", + "codeIataCity": "GRT", + "codeIcaoAirport": "", + "codeIso2Country": "PK", + "geonameId": "7731068", + "latitudeAirport": 32.666668, + "longitudeAirport": 74.03333, + "nameAirport": "Gujrat", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-3", + "airportId": 2736, + "codeIataAirport": "GRU", + "codeIataCity": "SAO", + "codeIcaoAirport": "SBGR", + "codeIso2Country": "BR", + "geonameId": "6300629", + "latitudeAirport": -23.425669, + "longitudeAirport": -46.481926, + "nameAirport": "Aeroporto Internacional Guarulhos", + "nameCountry": "Brazil", + "phone": "(11) 2445-294", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "3", + "airportId": 2737, + "codeIataAirport": "GRV", + "codeIataCity": "GRV", + "codeIcaoAirport": "URMG", + "codeIso2Country": "RU", + "geonameId": "7729990", + "latitudeAirport": 43.333332, + "longitudeAirport": 45.75, + "nameAirport": "Groznyj", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-1", + "airportId": 2738, + "codeIataAirport": "GRW", + "codeIataCity": "GRW", + "codeIcaoAirport": "LPGR", + "codeIso2Country": "PT", + "geonameId": "7668327", + "latitudeAirport": 39.090954, + "longitudeAirport": -28.027958, + "nameAirport": "Graciosa Island", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Atlantic/Azores" + }, + { + "GMT": "1", + "airportId": 2739, + "codeIataAirport": "GRX", + "codeIataCity": "GRX", + "codeIcaoAirport": "LEGR", + "codeIso2Country": "ES", + "geonameId": "6299336", + "latitudeAirport": 37.184727, + "longitudeAirport": -3.776954, + "nameAirport": "Granada", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "0", + "airportId": 2740, + "codeIataAirport": "GRY", + "codeIataCity": "GRY", + "codeIcaoAirport": "BIGR", + "codeIso2Country": "IS", + "geonameId": "6295708", + "latitudeAirport": 66.566666, + "longitudeAirport": -18.016666, + "nameAirport": "Grimsey", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "1", + "airportId": 2741, + "codeIataAirport": "GRZ", + "codeIataCity": "GRZ", + "codeIcaoAirport": "LOWG", + "codeIso2Country": "AT", + "geonameId": "6299668", + "latitudeAirport": 46.994125, + "longitudeAirport": 15.444928, + "nameAirport": "Thalerhof", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "8", + "airportId": 2742, + "codeIataAirport": "GSA", + "codeIataCity": "GSA", + "codeIcaoAirport": "WBKN", + "codeIso2Country": "MY", + "geonameId": "7731069", + "latitudeAirport": 4.416667, + "longitudeAirport": 115.76667, + "nameAirport": "Long Pasia", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-5", + "airportId": 2743, + "codeIataAirport": "GSB", + "codeIataCity": "GSB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4468261", + "latitudeAirport": 35.38333, + "longitudeAirport": -77.98333, + "nameAirport": "Seymour Johnson AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 2744, + "codeIataAirport": "GSC", + "codeIataCity": "GSC", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8260817", + "latitudeAirport": -25.166668, + "longitudeAirport": 115.25, + "nameAirport": "Gascoyne Junction", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "airportId": 2745, + "codeIataAirport": "GSE", + "codeIataCity": "GOT", + "codeIcaoAirport": "ESGP", + "codeIso2Country": "SE", + "geonameId": "6296791", + "latitudeAirport": 57.77775, + "longitudeAirport": 11.864513, + "nameAirport": "Gothenburg City Airport", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "airportId": 2746, + "codeIataAirport": "GSH", + "codeIataCity": "GSH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.583332, + "longitudeAirport": -85.833336, + "nameAirport": "Goshen", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "11", + "airportId": 2747, + "codeIataAirport": "GSI", + "codeIataCity": "GSI", + "codeIcaoAirport": "", + "codeIso2Country": "SB", + "geonameId": "0", + "latitudeAirport": -9.533333, + "longitudeAirport": 160.2, + "nameAirport": "Guadalcanal", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-6", + "airportId": 2748, + "codeIataAirport": "GSJ", + "codeIataCity": "GSJ", + "codeIcaoAirport": "MGSJ", + "codeIso2Country": "GT", + "geonameId": "6299806", + "latitudeAirport": 13.93619, + "longitudeAirport": -90.83583, + "nameAirport": "Puerto San Jose", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "-7", + "airportId": 2749, + "codeIataAirport": "GSL", + "codeIataCity": "GSL", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 62.5975, + "longitudeAirport": -111.54444, + "nameAirport": "Taltheilei Narrows", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "3.30", + "airportId": 2750, + "codeIataAirport": "GSM", + "codeIataCity": "GSM", + "codeIcaoAirport": "", + "codeIso2Country": "IR", + "geonameId": "0", + "latitudeAirport": 26.757778, + "longitudeAirport": 55.905277, + "nameAirport": "Gheshm", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "9.30", + "airportId": 2751, + "codeIataAirport": "GSN", + "codeIataCity": "GSN", + "codeIcaoAirport": "YMGN", + "codeIso2Country": "AU", + "geonameId": "7731071", + "latitudeAirport": -31.666668, + "longitudeAirport": 137.76666, + "nameAirport": "Mount Gunson", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-5", + "airportId": 2752, + "codeIataAirport": "GSO", + "codeIataCity": "GSO", + "codeIcaoAirport": "KGSO", + "codeIso2Country": "US", + "geonameId": "4469156", + "latitudeAirport": 36.105324, + "longitudeAirport": -79.9373, + "nameAirport": "Piedmont Triad International", + "nameCountry": "United States", + "phone": "336-665-5666", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 2753, + "codeIataAirport": "GSP", + "codeIataCity": "GSP", + "codeIcaoAirport": "KGSP", + "codeIso2Country": "US", + "geonameId": "6301603", + "latitudeAirport": 34.890568, + "longitudeAirport": -82.21706, + "nameAirport": "Greenville Spartanburg International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 2754, + "codeIataAirport": "GSQ", + "codeIataCity": "GSQ", + "codeIcaoAirport": "HEOW", + "codeIso2Country": "EG", + "geonameId": "7668296", + "latitudeAirport": 22.583332, + "longitudeAirport": 28.716667, + "nameAirport": "Shark Elowainat", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "3", + "airportId": 2755, + "codeIataAirport": "GSR", + "codeIataCity": "GSR", + "codeIcaoAirport": "HCMG", + "codeIso2Country": "SO", + "geonameId": "7730601", + "latitudeAirport": 9.5, + "longitudeAirport": 49.05, + "nameAirport": "Gardo", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "2", + "airportId": 2756, + "codeIataAirport": "GSS", + "codeIataCity": "GSS", + "codeIcaoAirport": "FASE", + "codeIso2Country": "ZA", + "geonameId": "7730491", + "latitudeAirport": -25.116667, + "longitudeAirport": 30.8, + "nameAirport": "Sabi Sabi", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-9", + "airportId": 2757, + "codeIataAirport": "GST", + "codeIataCity": "GST", + "codeIcaoAirport": "PAGS", + "codeIso2Country": "US", + "geonameId": "5846872", + "latitudeAirport": 58.4275, + "longitudeAirport": -135.705, + "nameAirport": "Gustavus Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Juneau" + }, + { + "GMT": "3", + "airportId": 2758, + "codeIataAirport": "GSU", + "codeIataCity": "GSU", + "codeIcaoAirport": "", + "codeIso2Country": "SD", + "geonameId": "8261004", + "latitudeAirport": 14.033333, + "longitudeAirport": 35.466667, + "nameAirport": "Gedaref", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "11", + "airportId": 2759, + "codeIataAirport": "GTA", + "codeIataCity": "GTA", + "codeIcaoAirport": "AGOK", + "codeIso2Country": "SB", + "geonameId": "7731072", + "latitudeAirport": -8.766667, + "longitudeAirport": 158.18333, + "nameAirport": "Gatokae Aerodrom", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-5", + "airportId": 2760, + "codeIataAirport": "GTC", + "codeIataCity": "GTC", + "codeIcaoAirport": "", + "codeIso2Country": "BS", + "geonameId": "0", + "latitudeAirport": 26.25, + "longitudeAirport": -77.36667, + "nameAirport": "Green Turtle", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "9.30", + "airportId": 2761, + "codeIataAirport": "GTE", + "codeIataCity": "GTE", + "codeIcaoAirport": "YGTE", + "codeIso2Country": "AU", + "geonameId": "7730259", + "latitudeAirport": -13.973887, + "longitudeAirport": 136.46002, + "nameAirport": "Alyangula", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-7", + "airportId": 2762, + "codeIataAirport": "GTF", + "codeIataCity": "GTF", + "codeIcaoAirport": "KGTF", + "codeIso2Country": "US", + "geonameId": "5655250", + "latitudeAirport": 47.481888, + "longitudeAirport": -111.35636, + "nameAirport": "Great Falls International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 2763, + "codeIataAirport": "GTG", + "codeIataCity": "GTG", + "codeIcaoAirport": "KGTG", + "codeIso2Country": "US", + "geonameId": "5254883", + "latitudeAirport": 45.783333, + "longitudeAirport": -92.683334, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 2764, + "codeIataAirport": "GTI", + "codeIataCity": "GTI", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 54.38333, + "longitudeAirport": 12.316667, + "nameAirport": "Guettin", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "airportId": 2765, + "codeIataAirport": "GTK", + "codeIataCity": "GTK", + "codeIcaoAirport": "", + "codeIso2Country": "MY", + "geonameId": "0", + "latitudeAirport": 2.6, + "longitudeAirport": 102.916664, + "nameAirport": "Sungei Tekai", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "12", + "airportId": 2766, + "codeIataAirport": "GTN", + "codeIataCity": "MON", + "codeIcaoAirport": "NZMC", + "codeIso2Country": "NZ", + "geonameId": "7730140", + "latitudeAirport": -43.766666, + "longitudeAirport": 170.13611, + "nameAirport": "Glentanner", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "8", + "airportId": 2767, + "codeIataAirport": "GTO", + "codeIataCity": "GTO", + "codeIcaoAirport": "WAMG", + "codeIso2Country": "ID", + "geonameId": "6301191", + "latitudeAirport": 0.639039, + "longitudeAirport": 122.850876, + "nameAirport": "Tolotio", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-8", + "airportId": 2768, + "codeIataAirport": "GTP", + "codeIataCity": "GTP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5729080", + "latitudeAirport": 42.43901, + "longitudeAirport": -123.32839, + "nameAirport": "Grants Pass", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 2769, + "codeIataAirport": "GTR", + "codeIataCity": "UBS", + "codeIcaoAirport": "KGTR", + "codeIso2Country": "US", + "geonameId": "4427859", + "latitudeAirport": 33.45, + "longitudeAirport": -88.6, + "nameAirport": "Golden Triangle Reg.", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9.30", + "airportId": 2770, + "codeIataAirport": "GTS", + "codeIataCity": "GTS", + "codeIcaoAirport": "YGDW", + "codeIso2Country": "AU", + "geonameId": "7731075", + "latitudeAirport": -26.966667, + "longitudeAirport": 133.61667, + "nameAirport": "Granites", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "10", + "airportId": 2771, + "codeIataAirport": "GTT", + "codeIataCity": "GTT", + "codeIcaoAirport": "YGTN", + "codeIso2Country": "AU", + "geonameId": "7731076", + "latitudeAirport": -18.416668, + "longitudeAirport": 143.78334, + "nameAirport": "Georgetown", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 2772, + "codeIataAirport": "GTY", + "codeIataCity": "GTY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4557585", + "latitudeAirport": 39.833332, + "longitudeAirport": -77.23333, + "nameAirport": "Gettysburg", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 2773, + "codeIataAirport": "GTZ", + "codeIataCity": "GTZ", + "codeIcaoAirport": "", + "codeIso2Country": "TZ", + "geonameId": "7910956", + "latitudeAirport": -2.160833, + "longitudeAirport": 34.225555, + "nameAirport": "Kirawira B", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-6", + "airportId": 2774, + "codeIataAirport": "GUA", + "codeIataCity": "GUA", + "codeIcaoAirport": "MGGT", + "codeIso2Country": "GT", + "geonameId": "6299801", + "latitudeAirport": 14.588071, + "longitudeAirport": -90.53068, + "nameAirport": "La Aurora", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "-7", + "airportId": 2775, + "codeIataAirport": "GUB", + "codeIataCity": "GUB", + "codeIcaoAirport": "MMGR", + "codeIso2Country": "MX", + "geonameId": "7668347", + "latitudeAirport": 28.033333, + "longitudeAirport": -114.066666, + "nameAirport": "Guerrero Negro", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mazatlan" + }, + { + "GMT": "-7", + "airportId": 2776, + "codeIataAirport": "GUC", + "codeIataCity": "GUC", + "codeIcaoAirport": "KGUC", + "codeIso2Country": "US", + "geonameId": "5424099", + "latitudeAirport": 38.53389, + "longitudeAirport": -106.93889, + "nameAirport": "Gunnison", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "0", + "airportId": 2777, + "codeIataAirport": "GUD", + "codeIataCity": "GUD", + "codeIcaoAirport": "GAGM", + "codeIso2Country": "ML", + "geonameId": "7668274", + "latitudeAirport": 16.3575, + "longitudeAirport": -3.609722, + "nameAirport": "Goundam", + "nameCountry": "Mali", + "phone": "", + "timezone": "Africa/Bamako" + }, + { + "GMT": "10", + "airportId": 2778, + "codeIataAirport": "GUE", + "codeIataCity": "GUE", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2096573", + "latitudeAirport": -3.583333, + "longitudeAirport": 141.58333, + "nameAirport": "Guriaso", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 2779, + "codeIataAirport": "GUF", + "codeIataCity": "GUF", + "codeIcaoAirport": "KJKA", + "codeIso2Country": "US", + "geonameId": "4069428", + "latitudeAirport": 30.166668, + "longitudeAirport": -87.583336, + "nameAirport": "Edwards", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 2780, + "codeIataAirport": "GUG", + "codeIataCity": "GUG", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260822", + "latitudeAirport": -8.516667, + "longitudeAirport": 146.9, + "nameAirport": "Guari", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 2781, + "codeIataAirport": "GUH", + "codeIataCity": "GUH", + "codeIcaoAirport": "YGDH", + "codeIso2Country": "AU", + "geonameId": "7668713", + "latitudeAirport": -30.95, + "longitudeAirport": 150.23334, + "nameAirport": "Gunnedah", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-4", + "airportId": 2782, + "codeIataAirport": "GUI", + "codeIataCity": "GUI", + "codeIcaoAirport": "SVGI", + "codeIso2Country": "VE", + "geonameId": "6300852", + "latitudeAirport": 10.566667, + "longitudeAirport": -62.3, + "nameAirport": "Guiria", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-3", + "airportId": 2783, + "codeIataAirport": "GUJ", + "codeIataCity": "GUJ", + "codeIcaoAirport": "SBGW", + "codeIso2Country": "BR", + "geonameId": "6300630", + "latitudeAirport": -22.816668, + "longitudeAirport": -45.216667, + "nameAirport": "Guaratingueta", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "airportId": 2784, + "codeIataAirport": "GUL", + "codeIataCity": "GUL", + "codeIcaoAirport": "YGLB", + "codeIso2Country": "AU", + "geonameId": "7730257", + "latitudeAirport": -34.75, + "longitudeAirport": 149.71666, + "nameAirport": "Goulburn", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "airportId": 2785, + "codeIataAirport": "GUM", + "codeIataCity": "GUM", + "codeIcaoAirport": "PGUM", + "codeIso2Country": "GU", + "geonameId": "4043999", + "latitudeAirport": 13.492787, + "longitudeAirport": 144.80486, + "nameAirport": "Guam International", + "nameCountry": "Guam", + "phone": "", + "timezone": "Pacific/Guam" + }, + { + "GMT": "-6", + "airportId": 2786, + "codeIataAirport": "GUN", + "codeIataCity": "MGM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.38333, + "longitudeAirport": -86.316666, + "nameAirport": "Gunter AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 2787, + "codeIataAirport": "GUO", + "codeIataCity": "GUO", + "codeIcaoAirport": "", + "codeIso2Country": "HN", + "geonameId": "3609389", + "latitudeAirport": 15.116667, + "longitudeAirport": -86.13333, + "nameAirport": "Gualaco", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-7", + "airportId": 2788, + "codeIataAirport": "GUP", + "codeIataCity": "GUP", + "codeIcaoAirport": "KGUP", + "codeIso2Country": "US", + "geonameId": "5468786", + "latitudeAirport": 35.511112, + "longitudeAirport": -108.78667, + "nameAirport": "Senator Clark", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-4", + "airportId": 2789, + "codeIataAirport": "GUQ", + "codeIataCity": "GUQ", + "codeIcaoAirport": "SVGU", + "codeIso2Country": "VE", + "geonameId": "3640227", + "latitudeAirport": 9.025278, + "longitudeAirport": -69.75, + "nameAirport": "Guanare", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "10", + "airportId": 2790, + "codeIataAirport": "GUR", + "codeIataCity": "GUR", + "codeIcaoAirport": "AYGN", + "codeIso2Country": "PG", + "geonameId": "7668078", + "latitudeAirport": -10.310833, + "longitudeAirport": 150.33861, + "nameAirport": "Gurney", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 2791, + "codeIataAirport": "GUS", + "codeIataCity": "GUS", + "codeIcaoAirport": "KGUS", + "codeIso2Country": "US", + "geonameId": "6298328", + "latitudeAirport": 40.75, + "longitudeAirport": -86.066666, + "nameAirport": "Grissom AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "1", + "airportId": 2792, + "codeIataAirport": "GUT", + "codeIataCity": "GUT", + "codeIcaoAirport": "ETUO", + "codeIso2Country": "DE", + "geonameId": "3207063", + "latitudeAirport": 51.9, + "longitudeAirport": 8.383333, + "nameAirport": "Guetersloh", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "0", + "airportId": 2793, + "codeIataAirport": "GUU", + "codeIataCity": "GUU", + "codeIcaoAirport": "BIGF", + "codeIso2Country": "IS", + "geonameId": "7730429", + "latitudeAirport": 64.96667, + "longitudeAirport": -23.166668, + "nameAirport": "Grundarfjordur", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "10", + "airportId": 2794, + "codeIataAirport": "GUV", + "codeIataCity": "GUV", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2090415", + "latitudeAirport": -6.283333, + "longitudeAirport": 142.41667, + "nameAirport": "Mougulu", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5", + "airportId": 2795, + "codeIataAirport": "GUW", + "codeIataCity": "GUW", + "codeIcaoAirport": "UATG", + "codeIso2Country": "KZ", + "geonameId": "7668494", + "latitudeAirport": 47.122814, + "longitudeAirport": 51.829556, + "nameAirport": "Atyrau International", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Aqtau" + }, + { + "GMT": "5.30", + "airportId": 2796, + "codeIataAirport": "GUX", + "codeIataCity": "GUX", + "codeIcaoAirport": "VAGN", + "codeIso2Country": "IN", + "geonameId": "7730208", + "latitudeAirport": 24.666668, + "longitudeAirport": 77.316666, + "nameAirport": "Guna", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-6", + "airportId": 2797, + "codeIataAirport": "GUY", + "codeIataCity": "GUY", + "codeIcaoAirport": "KGUY", + "codeIso2Country": "US", + "geonameId": "5515744", + "latitudeAirport": 36.682777, + "longitudeAirport": -101.507774, + "nameAirport": "Guymon", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 2798, + "codeIataAirport": "GUZ", + "codeIataCity": "QDL", + "codeIcaoAirport": "SNGA", + "codeIso2Country": "BR", + "geonameId": "8260693", + "latitudeAirport": -20.65, + "longitudeAirport": -40.49167, + "nameAirport": "Guarapari", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 2799, + "codeIataAirport": "GVA", + "codeIataCity": "GVA", + "codeIcaoAirport": "LSGG", + "codeIso2Country": "CH", + "geonameId": "2660646", + "latitudeAirport": 46.229633, + "longitudeAirport": 6.105774, + "nameAirport": "Geneve-cointrin", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "-5", + "airportId": 2800, + "codeIataAirport": "GVE", + "codeIataCity": "GVE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4761461", + "latitudeAirport": 38.13333, + "longitudeAirport": -78.2, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 2801, + "codeIataAirport": "GVI", + "codeIataCity": "GVI", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731077", + "latitudeAirport": -3.966667, + "longitudeAirport": 141.15, + "nameAirport": "Green River", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 2802, + "codeIataAirport": "GVL", + "codeIataCity": "GVL", + "codeIcaoAirport": "KGVL", + "codeIso2Country": "US", + "geonameId": "4205342", + "latitudeAirport": 34.3, + "longitudeAirport": -83.833336, + "nameAirport": "Lee Gilmer Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 2803, + "codeIataAirport": "GVN", + "codeIataCity": "GVN", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "8260716", + "latitudeAirport": 48.93, + "longitudeAirport": 140.3, + "nameAirport": "May-Gatka", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Vladivostok" + }, + { + "GMT": "10", + "airportId": 2804, + "codeIataAirport": "GVP", + "codeIataCity": "GVP", + "codeIcaoAirport": "YGNV", + "codeIso2Country": "AU", + "geonameId": "7731079", + "latitudeAirport": -15.783333, + "longitudeAirport": 144.61667, + "nameAirport": "Greenvale", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "airportId": 2805, + "codeIataAirport": "GVR", + "codeIataCity": "GVR", + "codeIcaoAirport": "SNGV", + "codeIso2Country": "BR", + "geonameId": "7730780", + "latitudeAirport": -18.850279, + "longitudeAirport": -41.933334, + "nameAirport": "Governador Valadares", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "airportId": 2806, + "codeIataAirport": "GVT", + "codeIataCity": "GVT", + "codeIcaoAirport": "KGVT", + "codeIso2Country": "US", + "geonameId": "4708867", + "latitudeAirport": 33.066666, + "longitudeAirport": -96.06167, + "nameAirport": "Majors Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 2807, + "codeIataAirport": "GVX", + "codeIataCity": "GVX", + "codeIcaoAirport": "ESSK", + "codeIso2Country": "SE", + "geonameId": "6296816", + "latitudeAirport": 60.593887, + "longitudeAirport": 16.954721, + "nameAirport": "Sandviken", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "6.30", + "airportId": 2808, + "codeIataAirport": "GWA", + "codeIataCity": "GWA", + "codeIcaoAirport": "VYGW", + "codeIso2Country": "MM", + "geonameId": "7731080", + "latitudeAirport": 21.0, + "longitudeAirport": 94.0, + "nameAirport": "Gwa", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "5", + "airportId": 2809, + "codeIataAirport": "GWD", + "codeIataCity": "GWD", + "codeIcaoAirport": "OPGD", + "codeIso2Country": "PK", + "geonameId": "0", + "latitudeAirport": 25.230556, + "longitudeAirport": 62.33889, + "nameAirport": "Gwadar", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "2", + "airportId": 2810, + "codeIataAirport": "GWE", + "codeIataCity": "GWE", + "codeIcaoAirport": "FVTL", + "codeIso2Country": "ZW", + "geonameId": "6297115", + "latitudeAirport": -19.435833, + "longitudeAirport": 29.86111, + "nameAirport": "Gweru", + "nameCountry": "Zimbabwe", + "phone": "", + "timezone": "Africa/Harare" + }, + { + "GMT": "5.30", + "airportId": 2811, + "codeIataAirport": "GWL", + "codeIataCity": "GWL", + "codeIcaoAirport": "VIGR", + "codeIso2Country": "IN", + "geonameId": "6301097", + "latitudeAirport": 26.293888, + "longitudeAirport": 78.23, + "nameAirport": "Gwalior", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-6", + "airportId": 2812, + "codeIataAirport": "GWO", + "codeIataCity": "GWO", + "codeIcaoAirport": "KGWO", + "codeIso2Country": "US", + "geonameId": "4428526", + "latitudeAirport": 33.495, + "longitudeAirport": -90.08889, + "nameAirport": "Leflore", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 2813, + "codeIataAirport": "GWS", + "codeIataCity": "GWS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5423092", + "latitudeAirport": 39.583168, + "longitudeAirport": -107.41441, + "nameAirport": "Glenwood Springs", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 2814, + "codeIataAirport": "GWT", + "codeIataCity": "GWT", + "codeIcaoAirport": "EDXW", + "codeIso2Country": "DE", + "geonameId": "6296533", + "latitudeAirport": 54.91528, + "longitudeAirport": 8.343056, + "nameAirport": "Westerland - Sylt", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "airportId": 2815, + "codeIataAirport": "GWV", + "codeIataCity": "GWV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 43.11667, + "longitudeAirport": -87.95, + "nameAirport": "Glendale", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 2816, + "codeIataAirport": "GWY", + "codeIataCity": "GWY", + "codeIcaoAirport": "EICM", + "codeIso2Country": "IE", + "geonameId": "6452625", + "latitudeAirport": 53.283333, + "longitudeAirport": -9.033333, + "nameAirport": "Carnmore", + "nameCountry": "Ireland", + "phone": "", + "timezone": "Europe/Dublin" + }, + { + "GMT": "3", + "airportId": 2817, + "codeIataAirport": "GXF", + "codeIataCity": "GXF", + "codeIcaoAirport": "OYSY", + "codeIso2Country": "YE", + "geonameId": "6300144", + "latitudeAirport": 15.961794, + "longitudeAirport": 48.787086, + "nameAirport": "Seiyun", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "1", + "airportId": 2818, + "codeIataAirport": "GXG", + "codeIataCity": "GXG", + "codeIcaoAirport": "FNNG", + "codeIso2Country": "AO", + "geonameId": "7668251", + "latitudeAirport": -7.783333, + "longitudeAirport": 15.45, + "nameAirport": "Negage", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-4", + "airportId": 2819, + "codeIataAirport": "GXQ", + "codeIataCity": "GXQ", + "codeIcaoAirport": "SCCY", + "codeIso2Country": "CL", + "geonameId": "6300694", + "latitudeAirport": -45.58889, + "longitudeAirport": -72.09861, + "nameAirport": "Ten. Vidal", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "1", + "airportId": 2820, + "codeIataAirport": "GXX", + "codeIataCity": "GXX", + "codeIcaoAirport": "FKKJ", + "codeIso2Country": "CM", + "geonameId": "7730504", + "latitudeAirport": 10.358333, + "longitudeAirport": 15.2375, + "nameAirport": "Yagoua", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "-7", + "airportId": 2821, + "codeIataAirport": "GXY", + "codeIataCity": "GXY", + "codeIcaoAirport": "KGXY", + "codeIso2Country": "US", + "geonameId": "5577600", + "latitudeAirport": 40.416668, + "longitudeAirport": -104.7, + "nameAirport": "Weld County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-4", + "airportId": 2822, + "codeIataAirport": "GYA", + "codeIataCity": "GYA", + "codeIcaoAirport": "SLGY", + "codeIso2Country": "BO", + "geonameId": "6300772", + "latitudeAirport": -10.83, + "longitudeAirport": -65.361664, + "nameAirport": "Guayaramerin", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "4", + "airportId": 2823, + "codeIataAirport": "GYD", + "codeIataCity": "BAK", + "codeIcaoAirport": "UBBB", + "codeIso2Country": "AZ", + "geonameId": "6300924", + "latitudeAirport": 40.462486, + "longitudeAirport": 50.05039, + "nameAirport": "Heydar Aliyev International (Bina International)", + "nameCountry": "Azerbaijan", + "phone": "", + "timezone": "Asia/Baku" + }, + { + "GMT": "-5", + "airportId": 2824, + "codeIataAirport": "GYE", + "codeIataCity": "GYE", + "codeIcaoAirport": "SEGU", + "codeIso2Country": "EC", + "geonameId": "6300713", + "latitudeAirport": -2.142654, + "longitudeAirport": -79.88032, + "nameAirport": "Jose Joaquin De Olmedo", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "2", + "airportId": 2825, + "codeIataAirport": "GYI", + "codeIataCity": "GYI", + "codeIcaoAirport": "HRYG", + "codeIso2Country": "RW", + "geonameId": "0", + "latitudeAirport": -1.683333, + "longitudeAirport": 29.25, + "nameAirport": "Gisenyi", + "nameCountry": "Rwanda", + "phone": "", + "timezone": "Africa/Kigali" + }, + { + "GMT": "8", + "airportId": 2826, + "codeIataAirport": "GYL", + "codeIataCity": "GYL", + "codeIcaoAirport": "YARG", + "codeIso2Country": "AU", + "geonameId": "7668681", + "latitudeAirport": -16.333332, + "longitudeAirport": 128.66667, + "nameAirport": "Argyle", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-7", + "airportId": 2827, + "codeIataAirport": "GYM", + "codeIataCity": "GYM", + "codeIcaoAirport": "MMGM", + "codeIso2Country": "MX", + "geonameId": "6299844", + "latitudeAirport": 27.955557, + "longitudeAirport": -110.93056, + "nameAirport": "Gen Jose M Yanez", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Hermosillo" + }, + { + "GMT": "-3", + "airportId": 2828, + "codeIataAirport": "GYN", + "codeIataCity": "GYN", + "codeIcaoAirport": "SBGO", + "codeIso2Country": "BR", + "geonameId": "6300628", + "latitudeAirport": -16.632631, + "longitudeAirport": -49.226624, + "nameAirport": "Santa Genoveva", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "airportId": 2829, + "codeIataAirport": "GYP", + "codeIataCity": "GYP", + "codeIcaoAirport": "YGYM", + "codeIso2Country": "AU", + "geonameId": "7668718", + "latitudeAirport": -26.183332, + "longitudeAirport": 152.63333, + "nameAirport": "Gympie", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-7", + "airportId": 2830, + "codeIataAirport": "GYR", + "codeIataCity": "GYR", + "codeIcaoAirport": "KGYR", + "codeIso2Country": "US", + "geonameId": "5308713", + "latitudeAirport": 33.433334, + "longitudeAirport": -112.35, + "nameAirport": "Litchfield", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "8", + "airportId": 2831, + "codeIataAirport": "GYS", + "codeIataCity": "GYS", + "codeIcaoAirport": "ZUGU", + "codeIso2Country": "CN", + "geonameId": "7730301", + "latitudeAirport": 32.395, + "longitudeAirport": 105.69972, + "nameAirport": "Guang Yuan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 2832, + "codeIataAirport": "GYU", + "codeIataCity": "GYU", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 40.833332, + "longitudeAirport": 43.9, + "nameAirport": "Liupanshan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 2833, + "codeIataAirport": "GYY", + "codeIataCity": "GYY", + "codeIcaoAirport": "KGYY", + "codeIso2Country": "US", + "geonameId": "4920629", + "latitudeAirport": 41.61667, + "longitudeAirport": -87.416664, + "nameAirport": "Gary/Chicago International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "4.30", + "airportId": 2834, + "codeIataAirport": "GZI", + "codeIataCity": "GZI", + "codeIcaoAirport": "", + "codeIso2Country": "AF", + "geonameId": "1141269", + "latitudeAirport": 33.0, + "longitudeAirport": 68.416664, + "nameAirport": "Ghazni", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "1", + "airportId": 2835, + "codeIataAirport": "GZM", + "codeIataCity": "GZM", + "codeIcaoAirport": "", + "codeIso2Country": "MT", + "geonameId": "0", + "latitudeAirport": 36.041668, + "longitudeAirport": 14.208333, + "nameAirport": "Gozo Heliport", + "nameCountry": "Malta", + "phone": "", + "timezone": "Europe/Malta" + }, + { + "GMT": "11", + "airportId": 2836, + "codeIataAirport": "GZO", + "codeIataCity": "GZO", + "codeIcaoAirport": "AGGN", + "codeIso2Country": "SB", + "geonameId": "7668068", + "latitudeAirport": -8.116667, + "longitudeAirport": 156.83333, + "nameAirport": "Gizo", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "3", + "airportId": 2837, + "codeIataAirport": "GZP", + "codeIataCity": "GZP", + "codeIcaoAirport": "LTFG", + "codeIso2Country": "TR", + "geonameId": "7668334", + "latitudeAirport": 36.2993, + "longitudeAirport": 32.3014, + "nameAirport": "Gazipasa Airport", + "nameCountry": "Turkey", + "phone": "+90 242 582 71 26", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3", + "airportId": 2838, + "codeIataAirport": "GZT", + "codeIataCity": "GZT", + "codeIcaoAirport": "LTAJ", + "codeIso2Country": "TR", + "geonameId": "6299730", + "latitudeAirport": 36.944935, + "longitudeAirport": 37.473747, + "nameAirport": "Gaziantep", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3.30", + "airportId": 2839, + "codeIataAirport": "GZW", + "codeIataCity": "GZW", + "codeIcaoAirport": "", + "codeIso2Country": "IR", + "geonameId": "0", + "latitudeAirport": 36.233334, + "longitudeAirport": 50.033333, + "nameAirport": "Ghazvin", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "1", + "airportId": 2840, + "codeIataAirport": "HAA", + "codeIataCity": "HAA", + "codeIcaoAirport": "ENHK", + "codeIso2Country": "NO", + "geonameId": "6296743", + "latitudeAirport": 70.46667, + "longitudeAirport": 22.15, + "nameAirport": "Hasvik", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "airportId": 2841, + "codeIataAirport": "HAB", + "codeIataCity": "HAB", + "codeIcaoAirport": "KHAB", + "codeIso2Country": "US", + "geonameId": "4074637", + "latitudeAirport": 34.15, + "longitudeAirport": -88.1, + "nameAirport": "Marion County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "airportId": 2842, + "codeIataAirport": "HAC", + "codeIataCity": "HAC", + "codeIcaoAirport": "RJTH", + "codeIso2Country": "JP", + "geonameId": "6300407", + "latitudeAirport": 33.117947, + "longitudeAirport": 139.78122, + "nameAirport": "Hachijo Jima", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "airportId": 2843, + "codeIataAirport": "HAD", + "codeIataCity": "HAD", + "codeIcaoAirport": "ESMT", + "codeIso2Country": "SE", + "geonameId": "2708367", + "latitudeAirport": 56.680935, + "longitudeAirport": 12.815005, + "nameAirport": "Halmstad", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-7", + "airportId": 2844, + "codeIataAirport": "HAE", + "codeIataCity": "HAE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8298835", + "latitudeAirport": 36.230556, + "longitudeAirport": -112.66944, + "nameAirport": "Havasupai", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "-8", + "airportId": 2845, + "codeIataAirport": "HAF", + "codeIataCity": "HAF", + "codeIcaoAirport": "KHAF", + "codeIso2Country": "US", + "geonameId": "5354945", + "latitudeAirport": 37.466667, + "longitudeAirport": -122.433334, + "nameAirport": "Half Moon", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "airportId": 2846, + "codeIataAirport": "HAH", + "codeIataCity": "YVA", + "codeIcaoAirport": "FMCH", + "codeIso2Country": "KM", + "geonameId": "6297031", + "latitudeAirport": -11.537275, + "longitudeAirport": 43.27492, + "nameAirport": "Prince Said Ibrahim In", + "nameCountry": "Comoros", + "phone": "", + "timezone": "Indian/Comoro" + }, + { + "GMT": "-5", + "airportId": 2847, + "codeIataAirport": "HAI", + "codeIataCity": "HAI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.95, + "longitudeAirport": -85.63333, + "nameAirport": "Dr Haines", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "1", + "airportId": 2848, + "codeIataAirport": "HAJ", + "codeIataCity": "HAJ", + "codeIcaoAirport": "EDDV", + "codeIso2Country": "DE", + "geonameId": "3206636", + "latitudeAirport": 52.459255, + "longitudeAirport": 9.694766, + "nameAirport": "Hanover Airport", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "airportId": 2849, + "codeIataAirport": "HAK", + "codeIataCity": "HAK", + "codeIcaoAirport": "ZJHK", + "codeIso2Country": "CN", + "geonameId": "6453422", + "latitudeAirport": 19.941612, + "longitudeAirport": 110.45717, + "nameAirport": "Haikou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "airportId": 2850, + "codeIataAirport": "HAL", + "codeIataCity": "HAL", + "codeIcaoAirport": "", + "codeIso2Country": "NA", + "geonameId": "8260825", + "latitudeAirport": -19.966667, + "longitudeAirport": 13.066667, + "nameAirport": "Halali", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "1", + "airportId": 2851, + "codeIataAirport": "HAM", + "codeIataCity": "HAM", + "codeIcaoAirport": "EDDH", + "codeIso2Country": "DE", + "geonameId": "3208174", + "latitudeAirport": 53.63128, + "longitudeAirport": 10.006414, + "nameAirport": "Hamburg Airport", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "7", + "airportId": 2852, + "codeIataAirport": "HAN", + "codeIataCity": "HAN", + "codeIcaoAirport": "VVNB", + "codeIso2Country": "VN", + "geonameId": "6301877", + "latitudeAirport": 21.214184, + "longitudeAirport": 105.802826, + "nameAirport": "Noibai International", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-5", + "airportId": 2853, + "codeIataAirport": "HAO", + "codeIataCity": "HAO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4513626", + "latitudeAirport": 39.4, + "longitudeAirport": -84.566666, + "nameAirport": "Hamilton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 2854, + "codeIataAirport": "HAP", + "codeIataCity": "HAP", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -20.5, + "longitudeAirport": 148.75, + "nameAirport": "Long Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5", + "airportId": 2855, + "codeIataAirport": "HAQ", + "codeIataCity": "HAQ", + "codeIcaoAirport": "VRMH", + "codeIso2Country": "MV", + "geonameId": "7668641", + "latitudeAirport": 6.748433, + "longitudeAirport": 73.16838, + "nameAirport": "Hanimaadhoo", + "nameCountry": "Maldives", + "phone": "", + "timezone": "Indian/Maldives" + }, + { + "GMT": "-5", + "airportId": 2856, + "codeIataAirport": "HAR", + "codeIataCity": "HAR", + "codeIcaoAirport": "KCXY", + "codeIso2Country": "US", + "geonameId": "5192726", + "latitudeAirport": 40.21611, + "longitudeAirport": -76.85222, + "nameAirport": "Capital City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 2857, + "codeIataAirport": "HAS", + "codeIataCity": "HAS", + "codeIcaoAirport": "OEHL", + "codeIso2Country": "SA", + "geonameId": "395011", + "latitudeAirport": 27.438158, + "longitudeAirport": 41.690483, + "nameAirport": "Hail", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "1", + "airportId": 2858, + "codeIataAirport": "HAU", + "codeIataCity": "HAU", + "codeIcaoAirport": "ENHD", + "codeIso2Country": "NO", + "geonameId": "6296740", + "latitudeAirport": 59.344765, + "longitudeAirport": 5.215903, + "nameAirport": "Haugesund", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "airportId": 2859, + "codeIataAirport": "HAV", + "codeIataCity": "HAV", + "codeIcaoAirport": "MUHA", + "codeIso2Country": "CU", + "geonameId": "6299924", + "latitudeAirport": 22.99845, + "longitudeAirport": -82.40818, + "nameAirport": "Jose Marti International", + "nameCountry": "Cuba", + "phone": "7/266-4133", + "timezone": "America/Havana" + }, + { + "GMT": "0", + "airportId": 2860, + "codeIataAirport": "HAW", + "codeIataCity": "HAW", + "codeIcaoAirport": "EGFE", + "codeIso2Country": "GB", + "geonameId": "7668204", + "latitudeAirport": 51.8, + "longitudeAirport": -4.966667, + "nameAirport": "Haverfordwest", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-9", + "airportId": 2861, + "codeIataAirport": "HAY", + "codeIataCity": "HAY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5863815", + "latitudeAirport": 65.21667, + "longitudeAirport": -161.16667, + "nameAirport": "Haycock", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 2862, + "codeIataAirport": "HAZ", + "codeIataCity": "HAZ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298756", + "latitudeAirport": -4.433333, + "longitudeAirport": 145.18333, + "nameAirport": "Hatzfeldthaven", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 2863, + "codeIataAirport": "HBA", + "codeIataCity": "HBA", + "codeIcaoAirport": "YMHB", + "codeIso2Country": "AU", + "geonameId": "6301313", + "latitudeAirport": -42.837257, + "longitudeAirport": 147.50519, + "nameAirport": "Hobart", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Hobart" + }, + { + "GMT": "-7", + "airportId": 2864, + "codeIataAirport": "HBB", + "codeIataCity": "HOB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.7, + "longitudeAirport": -103.13333, + "nameAirport": "Industrial Airpark", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "airportId": 2865, + "codeIataAirport": "HBC", + "codeIataCity": "HBC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 57.5, + "longitudeAirport": -135.91667, + "nameAirport": "Hanus Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "10", + "airportId": 2866, + "codeIataAirport": "HBD", + "codeIataCity": "HBD", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2096470", + "latitudeAirport": -6.333056, + "longitudeAirport": 142.49777, + "nameAirport": "Habi", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "airportId": 2867, + "codeIataAirport": "HBE", + "codeIataCity": "ALY", + "codeIcaoAirport": "HEBA", + "codeIso2Country": "EG", + "geonameId": "6297292", + "latitudeAirport": 30.922234, + "longitudeAirport": 29.686504, + "nameAirport": "Borg el Arab", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-6", + "airportId": 2868, + "codeIataAirport": "HBG", + "codeIataCity": "HBG", + "codeIcaoAirport": "KHBG", + "codeIso2Country": "US", + "geonameId": "4429299", + "latitudeAirport": 31.316668, + "longitudeAirport": -89.26667, + "nameAirport": "The Hattiesburg-Bobby L. Chain Mun.", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 2869, + "codeIataAirport": "HBH", + "codeIataCity": "HBH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5847133", + "latitudeAirport": 57.408333, + "longitudeAirport": -133.46666, + "nameAirport": "Hobart Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Juneau" + }, + { + "GMT": "-5", + "airportId": 2870, + "codeIataAirport": "HBI", + "codeIataCity": "HBI", + "codeIcaoAirport": "", + "codeIso2Country": "BS", + "geonameId": "0", + "latitudeAirport": 25.516666, + "longitudeAirport": -76.6, + "nameAirport": "Harbour Island", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-7", + "airportId": 2871, + "codeIataAirport": "HBK", + "codeIataCity": "HBK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5298326", + "latitudeAirport": 34.936, + "longitudeAirport": -110.14197, + "nameAirport": "Holbrook Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "7", + "airportId": 2872, + "codeIataAirport": "HBN", + "codeIataCity": "HBN", + "codeIcaoAirport": "", + "codeIso2Country": "VN", + "geonameId": "0", + "latitudeAirport": 12.0, + "longitudeAirport": 106.0, + "nameAirport": "Flamingo", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-6", + "airportId": 2873, + "codeIataAirport": "HBO", + "codeIataCity": "HBO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.166668, + "longitudeAirport": -95.95, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 2874, + "codeIataAirport": "HBR", + "codeIataCity": "HBR", + "codeIcaoAirport": "KHBR", + "codeIso2Country": "US", + "geonameId": "4538825", + "latitudeAirport": 35.016666, + "longitudeAirport": -99.1, + "nameAirport": "Hobart", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5.30", + "airportId": 2875, + "codeIataAirport": "HBT", + "codeIataCity": "HRI", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "0", + "latitudeAirport": 27.911552, + "longitudeAirport": 45.522972, + "nameAirport": "Hafr Albatin", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "7", + "airportId": 2876, + "codeIataAirport": "HBU", + "codeIataCity": "HBU", + "codeIcaoAirport": "", + "codeIso2Country": "MN", + "geonameId": "0", + "latitudeAirport": 46.102222, + "longitudeAirport": 91.58611, + "nameAirport": "Bulgan, Hovd", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Hovd" + }, + { + "GMT": "5.30", + "airportId": 2877, + "codeIataAirport": "HBX", + "codeIataCity": "HBX", + "codeIcaoAirport": "VAHB", + "codeIso2Country": "IN", + "geonameId": "7668571", + "latitudeAirport": 15.358738, + "longitudeAirport": 75.08608, + "nameAirport": "Hubli", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-6", + "airportId": 2878, + "codeIataAirport": "HCA", + "codeIataCity": "HCA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299207", + "latitudeAirport": 32.30361, + "longitudeAirport": -101.43389, + "nameAirport": "Howard County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 2879, + "codeIataAirport": "HCB", + "codeIataCity": "HCB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299006", + "latitudeAirport": 55.45, + "longitudeAirport": -131.28334, + "nameAirport": "Shoal Cove", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 2880, + "codeIataAirport": "HCC", + "codeIataCity": "HCC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5121509", + "latitudeAirport": 42.293056, + "longitudeAirport": -73.710556, + "nameAirport": "Columbia County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 2881, + "codeIataAirport": "HCM", + "codeIataCity": "HCM", + "codeIcaoAirport": "HCME", + "codeIso2Country": "SO", + "geonameId": "7730600", + "latitudeAirport": 7.916667, + "longitudeAirport": 49.8, + "nameAirport": "Eil", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "8", + "airportId": 2882, + "codeIataAirport": "HCN", + "codeIataCity": "HCN", + "codeIcaoAirport": "RCKW", + "codeIso2Country": "TW", + "geonameId": "6300296", + "latitudeAirport": 21.933332, + "longitudeAirport": 120.833336, + "nameAirport": "Hengchun", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "8", + "airportId": 2883, + "codeIataAirport": "HCQ", + "codeIataCity": "HCQ", + "codeIcaoAirport": "YHLC", + "codeIso2Country": "AU", + "geonameId": "7668721", + "latitudeAirport": -18.233334, + "longitudeAirport": 127.666664, + "nameAirport": "Halls Creek", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-9", + "airportId": 2884, + "codeIataAirport": "HCR", + "codeIataCity": "HCR", + "codeIcaoAirport": "PAHC", + "codeIso2Country": "US", + "geonameId": "5864134", + "latitudeAirport": 62.18889, + "longitudeAirport": -159.77167, + "nameAirport": "Holy Cross", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 2885, + "codeIataAirport": "HCW", + "codeIataCity": "HCW", + "codeIcaoAirport": "KCQW", + "codeIso2Country": "US", + "geonameId": "4574417", + "latitudeAirport": 34.7, + "longitudeAirport": -79.88333, + "nameAirport": "Cheraw", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 2886, + "codeIataAirport": "HDA", + "codeIataCity": "HDA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299183", + "latitudeAirport": 57.2, + "longitudeAirport": -134.85, + "nameAirport": "Hidden Falls", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "5", + "airportId": 2887, + "codeIataAirport": "HDD", + "codeIataCity": "HDD", + "codeIcaoAirport": "OPKD", + "codeIso2Country": "PK", + "geonameId": "6300112", + "latitudeAirport": 25.322222, + "longitudeAirport": 68.36389, + "nameAirport": "Hyderabad", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-6", + "airportId": 2888, + "codeIataAirport": "HDE", + "codeIataCity": "HDE", + "codeIcaoAirport": "KHDE", + "codeIso2Country": "US", + "geonameId": "5070216", + "latitudeAirport": 40.433334, + "longitudeAirport": -99.38333, + "nameAirport": "Brewster Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 2889, + "codeIataAirport": "HDF", + "codeIataCity": "HDF", + "codeIcaoAirport": "EDAH", + "codeIso2Country": "DE", + "geonameId": "6296506", + "latitudeAirport": 53.87825, + "longitudeAirport": 14.138242, + "nameAirport": "Heringsdorf", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "airportId": 2890, + "codeIataAirport": "HDG", + "codeIataCity": "HDG", + "codeIcaoAirport": "ZBHD", + "codeIso2Country": "CN", + "geonameId": "7910189", + "latitudeAirport": 36.525833, + "longitudeAirport": 114.425, + "nameAirport": "Handan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-10", + "airportId": 2891, + "codeIataAirport": "HDH", + "codeIataCity": "HDH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 21.466667, + "longitudeAirport": -157.96666, + "nameAirport": "Dillingham Airfield", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "3.30", + "airportId": 2892, + "codeIataAirport": "HDM", + "codeIataCity": "HDM", + "codeIcaoAirport": "OIHS", + "codeIso2Country": "IR", + "geonameId": "6300054", + "latitudeAirport": 34.867146, + "longitudeAirport": 48.53732, + "nameAirport": "Hamadan", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-7", + "airportId": 2893, + "codeIataAirport": "HDN", + "codeIataCity": "HDN", + "codeIcaoAirport": "KHDN", + "codeIso2Country": "US", + "geonameId": "5583631", + "latitudeAirport": 40.48481, + "longitudeAirport": -107.220764, + "nameAirport": "Yampa Valley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "3.30", + "airportId": 2894, + "codeIataAirport": "HDR", + "codeIataCity": "HDR", + "codeIcaoAirport": "OIKP", + "codeIso2Country": "IR", + "geonameId": "7730744", + "latitudeAirport": 27.05, + "longitudeAirport": 56.166668, + "nameAirport": "Havadarya", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "2", + "airportId": 2895, + "codeIataAirport": "HDS", + "codeIataCity": "HDS", + "codeIcaoAirport": "FAHS", + "codeIso2Country": "ZA", + "geonameId": "6296898", + "latitudeAirport": -24.35, + "longitudeAirport": 30.95, + "nameAirport": "Hoedspruit Airport", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "7", + "airportId": 2896, + "codeIataAirport": "HDY", + "codeIataCity": "HDY", + "codeIcaoAirport": "VTSS", + "codeIso2Country": "TH", + "geonameId": "1610780", + "latitudeAirport": 6.936764, + "longitudeAirport": 100.39356, + "nameAirport": "Hat Yai", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "4.30", + "airportId": 2897, + "codeIataAirport": "HEA", + "codeIataCity": "HEA", + "codeIcaoAirport": "OAHR", + "codeIso2Country": "AF", + "geonameId": "0", + "latitudeAirport": 34.212696, + "longitudeAirport": 62.22599, + "nameAirport": "Herat", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "6.30", + "airportId": 2898, + "codeIataAirport": "HEB", + "codeIataCity": "HEB", + "codeIcaoAirport": "", + "codeIso2Country": "MM", + "geonameId": "7731082", + "latitudeAirport": 17.633333, + "longitudeAirport": 95.46667, + "nameAirport": "Henzada", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-9", + "airportId": 2899, + "codeIataAirport": "HED", + "codeIataCity": "HED", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5863942", + "latitudeAirport": 55.833332, + "longitudeAirport": -160.83333, + "nameAirport": "Herendeen", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 2900, + "codeIataAirport": "HEE", + "codeIataCity": "HEE", + "codeIcaoAirport": "KHEE", + "codeIso2Country": "US", + "geonameId": "4133499", + "latitudeAirport": 34.533333, + "longitudeAirport": -90.6, + "nameAirport": "Thompson-Robbins", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "6.30", + "airportId": 2901, + "codeIataAirport": "HEH", + "codeIataCity": "HEH", + "codeIcaoAirport": "VYHH", + "codeIso2Country": "MM", + "geonameId": "7668655", + "latitudeAirport": 20.743862, + "longitudeAirport": 96.79341, + "nameAirport": "Heho", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "1", + "airportId": 2902, + "codeIataAirport": "HEI", + "codeIataCity": "HEI", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 54.155556, + "longitudeAirport": 8.902778, + "nameAirport": "Heide-Buesum", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "airportId": 2903, + "codeIataAirport": "HEK", + "codeIataCity": "HEK", + "codeIcaoAirport": "ZYHE", + "codeIso2Country": "CN", + "geonameId": "7730308", + "latitudeAirport": 50.216667, + "longitudeAirport": 127.433334, + "nameAirport": "Heihe", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "airportId": 2904, + "codeIataAirport": "HEL", + "codeIataCity": "HEL", + "codeIcaoAirport": "EFHK", + "codeIso2Country": "FI", + "geonameId": "6301511", + "latitudeAirport": 60.31795, + "longitudeAirport": 24.96645, + "nameAirport": "Helsinki-vantaa", + "nameCountry": "Finland", + "phone": "+358 20-708-0", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "2", + "airportId": 2905, + "codeIataAirport": "HEM", + "codeIataCity": "HEL", + "codeIcaoAirport": "EFHF", + "codeIso2Country": "FI", + "geonameId": "6296539", + "latitudeAirport": 60.25, + "longitudeAirport": 25.05, + "nameAirport": "Helsinki-malmi", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "2", + "airportId": 2906, + "codeIataAirport": "HEN", + "codeIataCity": "HEL", + "codeIcaoAirport": "", + "codeIso2Country": "FI", + "geonameId": "0", + "latitudeAirport": 51.583332, + "longitudeAirport": -0.233333, + "nameAirport": "Hendon", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "10", + "airportId": 2907, + "codeIataAirport": "HEO", + "codeIataCity": "HEO", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299033", + "latitudeAirport": -9.133333, + "longitudeAirport": 147.58333, + "nameAirport": "Haelogo", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "airportId": 2908, + "codeIataAirport": "HER", + "codeIataCity": "HER", + "codeIcaoAirport": "LGIR", + "codeIso2Country": "GR", + "geonameId": "6299488", + "latitudeAirport": 35.33663, + "longitudeAirport": 25.174192, + "nameAirport": "Nikos Kazantzakis Airport", + "nameCountry": "Greece", + "phone": "+30 (0) 2810", + "timezone": "Europe/Athens" + }, + { + "GMT": "-8", + "airportId": 2909, + "codeIataAirport": "HES", + "codeIataCity": "HES", + "codeIcaoAirport": "KHRI", + "codeIso2Country": "US", + "geonameId": "5731070", + "latitudeAirport": 45.85, + "longitudeAirport": -119.28333, + "nameAirport": "State", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 2910, + "codeIataAirport": "HET", + "codeIataCity": "HET", + "codeIcaoAirport": "ZBHH", + "codeIso2Country": "CN", + "geonameId": "6301355", + "latitudeAirport": 40.854713, + "longitudeAirport": 111.814156, + "nameAirport": "Hohhot", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 2911, + "codeIataAirport": "HEV", + "codeIataCity": "HEV", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "2516548", + "latitudeAirport": 37.266666, + "longitudeAirport": -6.95, + "nameAirport": "Huelva", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-6", + "airportId": 2912, + "codeIataAirport": "HEY", + "codeIataCity": "OZR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 31.416668, + "longitudeAirport": -84.53333, + "nameAirport": "Hanchey Army Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 2913, + "codeIataAirport": "HEZ", + "codeIataCity": "HEZ", + "codeIcaoAirport": "KHEZ", + "codeIso2Country": "US", + "geonameId": "4437982", + "latitudeAirport": 31.614721, + "longitudeAirport": -91.29639, + "nameAirport": "Hardy-Anders", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 2914, + "codeIataAirport": "HFA", + "codeIataCity": "HFA", + "codeIcaoAirport": "LLHA", + "codeIso2Country": "IL", + "geonameId": "6299659", + "latitudeAirport": 32.81182, + "longitudeAirport": 35.04018, + "nameAirport": "Haifa", + "nameCountry": "Israel", + "phone": "", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "-5", + "airportId": 2915, + "codeIataAirport": "HFD", + "codeIataCity": "HFD", + "codeIcaoAirport": "KHFD", + "codeIso2Country": "US", + "geonameId": "4835842", + "latitudeAirport": 41.733055, + "longitudeAirport": -72.65, + "nameAirport": "Brainard", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 2916, + "codeIataAirport": "HFE", + "codeIataCity": "HFE", + "codeIcaoAirport": "ZSOF", + "codeIso2Country": "CN", + "geonameId": "1808722", + "latitudeAirport": 31.85, + "longitudeAirport": 117.28333, + "nameAirport": "Shanghai", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 2917, + "codeIataAirport": "HFF", + "codeIataCity": "HFF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 35.033333, + "longitudeAirport": -79.566666, + "nameAirport": "Mackall AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 2918, + "codeIataAirport": "HFN", + "codeIataCity": "HFN", + "codeIcaoAirport": "BIHN", + "codeIso2Country": "IS", + "geonameId": "6295709", + "latitudeAirport": 64.28333, + "longitudeAirport": -15.266667, + "nameAirport": "Hornafjordur", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "1", + "airportId": 2919, + "codeIataAirport": "HFS", + "codeIataCity": "HFS", + "codeIcaoAirport": "ESOH", + "codeIso2Country": "SE", + "geonameId": "7730070", + "latitudeAirport": 60.0175, + "longitudeAirport": 13.569167, + "nameAirport": "Hagfors", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 2920, + "codeIataAirport": "HFT", + "codeIataCity": "HFT", + "codeIcaoAirport": "ENHF", + "codeIso2Country": "NO", + "geonameId": "6296742", + "latitudeAirport": 70.67999, + "longitudeAirport": 23.675867, + "nameAirport": "Hammerfest", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "3", + "airportId": 2921, + "codeIataAirport": "HGA", + "codeIataCity": "HGA", + "codeIcaoAirport": "HCMH", + "codeIso2Country": "SO", + "geonameId": "6297284", + "latitudeAirport": 9.515833, + "longitudeAirport": 44.091667, + "nameAirport": "Hargeisa", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "10", + "airportId": 2922, + "codeIataAirport": "HGD", + "codeIataCity": "HGD", + "codeIcaoAirport": "YHUG", + "codeIso2Country": "AU", + "geonameId": "7731083", + "latitudeAirport": -20.81889, + "longitudeAirport": 144.22444, + "nameAirport": "Hughenden", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "airportId": 2923, + "codeIataAirport": "HGH", + "codeIataCity": "HGH", + "codeIcaoAirport": "ZSHC", + "codeIso2Country": "CN", + "geonameId": "6301383", + "latitudeAirport": 30.236935, + "longitudeAirport": 120.43236, + "nameAirport": "Hangzhou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "airportId": 2924, + "codeIataAirport": "HGI", + "codeIataCity": "HGI", + "codeIcaoAirport": "", + "codeIso2Country": "SD", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Higlieg", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "1", + "airportId": 2925, + "codeIataAirport": "HGL", + "codeIataCity": "HGL", + "codeIcaoAirport": "EDXH", + "codeIso2Country": "DE", + "geonameId": "3208576", + "latitudeAirport": 54.186943, + "longitudeAirport": 7.916667, + "nameAirport": "Helgoland", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "7", + "airportId": 2926, + "codeIataAirport": "HGN", + "codeIataCity": "HGN", + "codeIcaoAirport": "VTCH", + "codeIso2Country": "TH", + "geonameId": "1152222", + "latitudeAirport": 19.29968, + "longitudeAirport": 97.97523, + "nameAirport": "Mae Hong Son", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "0", + "airportId": 2927, + "codeIataAirport": "HGO", + "codeIataCity": "HGO", + "codeIcaoAirport": "DIKO", + "codeIso2Country": "CI", + "geonameId": "6296439", + "latitudeAirport": 9.413889, + "longitudeAirport": -5.616667, + "nameAirport": "Korhogo", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "-5", + "airportId": 2928, + "codeIataAirport": "HGR", + "codeIataCity": "HGR", + "codeIcaoAirport": "KHGR", + "codeIso2Country": "US", + "geonameId": "4372788", + "latitudeAirport": 39.70778, + "longitudeAirport": -77.73, + "nameAirport": "Wash. County Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 2929, + "codeIataAirport": "HGS", + "codeIataCity": "FNA", + "codeIcaoAirport": "GFHA", + "codeIso2Country": "SL", + "geonameId": "7730577", + "latitudeAirport": 8.393056, + "longitudeAirport": -13.13, + "nameAirport": "Hastings", + "nameCountry": "Sierra Leone", + "phone": "", + "timezone": "Africa/Freetown" + }, + { + "GMT": "-8", + "airportId": 2930, + "codeIataAirport": "HGT", + "codeIataCity": "HGT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5361153", + "latitudeAirport": 35.966667, + "longitudeAirport": -121.15, + "nameAirport": "Hunter AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 2931, + "codeIataAirport": "HGU", + "codeIataCity": "HGU", + "codeIcaoAirport": "AYMH", + "codeIso2Country": "PG", + "geonameId": "7668084", + "latitudeAirport": -5.828767, + "longitudeAirport": 144.29738, + "nameAirport": "Kagamuga", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 2932, + "codeIataAirport": "HGZ", + "codeIataCity": "HGZ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5864076", + "latitudeAirport": 66.191666, + "longitudeAirport": -155.66888, + "nameAirport": "Hogatza", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "9", + "airportId": 2933, + "codeIataAirport": "HHE", + "codeIataCity": "HHE", + "codeIcaoAirport": "", + "codeIso2Country": "JP", + "geonameId": "0", + "latitudeAirport": 40.549168, + "longitudeAirport": 141.47084, + "nameAirport": "Hachinohe", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "airportId": 2934, + "codeIataAirport": "HHH", + "codeIataCity": "HHH", + "codeIcaoAirport": "KHXD", + "codeIso2Country": "US", + "geonameId": "4581827", + "latitudeAirport": 32.216667, + "longitudeAirport": -80.683334, + "nameAirport": "Hilton Head", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-10", + "airportId": 2935, + "codeIataAirport": "HHI", + "codeIataCity": "HHI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 21.5, + "longitudeAirport": -158.03334, + "nameAirport": "Wheeler AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "1", + "airportId": 2936, + "codeIataAirport": "HHN", + "codeIataCity": "FRA", + "codeIcaoAirport": "EDFH", + "codeIso2Country": "DE", + "geonameId": "6296512", + "latitudeAirport": 49.948334, + "longitudeAirport": 7.264167, + "nameAirport": "Frankfurt-Hahn", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "airportId": 2937, + "codeIataAirport": "HHP", + "codeIataCity": "HKG", + "codeIcaoAirport": "", + "codeIso2Country": "HK", + "geonameId": "0", + "latitudeAirport": 22.318056, + "longitudeAirport": 114.2, + "nameAirport": "H K Heliport", + "nameCountry": "Hong Kong", + "phone": "", + "timezone": "Asia/Hong_Kong" + }, + { + "GMT": "7", + "airportId": 2938, + "codeIataAirport": "HHQ", + "codeIataCity": "HHQ", + "codeIcaoAirport": "VTPH", + "codeIso2Country": "TH", + "geonameId": "6301146", + "latitudeAirport": 12.6274, + "longitudeAirport": 99.95145, + "nameAirport": "Hua Hin Airport", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-8", + "airportId": 2939, + "codeIataAirport": "HHR", + "codeIataCity": "HHR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.926945, + "longitudeAirport": -118.33639, + "nameAirport": "Hawthorne", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 2940, + "codeIataAirport": "HHS", + "codeIataCity": "ZGN", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 13.07, + "longitudeAirport": 42.638332, + "nameAirport": "CZ Bus Station", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-10", + "airportId": 2941, + "codeIataAirport": "HHZ", + "codeIataCity": "HHZ", + "codeIcaoAirport": "NTGH", + "codeIso2Country": "PF", + "geonameId": "7730696", + "latitudeAirport": -17.533333, + "longitudeAirport": -142.53334, + "nameAirport": "Hikueru", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "8", + "airportId": 2942, + "codeIataAirport": "HIA", + "codeIataCity": "HIA", + "codeIcaoAirport": "ZSSH", + "codeIso2Country": "CN", + "geonameId": "7910482", + "latitudeAirport": 33.7875, + "longitudeAirport": 119.12778, + "nameAirport": "Lianshui", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 2943, + "codeIataAirport": "HIB", + "codeIataCity": "HIB", + "codeIcaoAirport": "KHIB", + "codeIso2Country": "US", + "geonameId": "5030005", + "latitudeAirport": 47.38861, + "longitudeAirport": -92.83861, + "nameAirport": "Chisholm", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 2944, + "codeIataAirport": "HID", + "codeIataCity": "HID", + "codeIcaoAirport": "YHID", + "codeIso2Country": "AU", + "geonameId": "7668720", + "latitudeAirport": -10.583333, + "longitudeAirport": 142.28334, + "nameAirport": "Horn Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 2945, + "codeIataAirport": "HIE", + "codeIataCity": "HIE", + "codeIcaoAirport": "KHIE", + "codeIso2Country": "US", + "geonameId": "5094647", + "latitudeAirport": 44.365833, + "longitudeAirport": -71.548615, + "nameAirport": "Mt Washington Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 2946, + "codeIataAirport": "HIF", + "codeIataCity": "OGD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.216667, + "longitudeAirport": -111.96667, + "nameAirport": "Hill AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "airportId": 2947, + "codeIataAirport": "HIG", + "codeIataCity": "HIG", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731085", + "latitudeAirport": -16.416668, + "longitudeAirport": 143.15, + "nameAirport": "Highbury", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 2948, + "codeIataAirport": "HIH", + "codeIataCity": "HIH", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -20.166668, + "longitudeAirport": 148.95, + "nameAirport": "Hook Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-7", + "airportId": 2949, + "codeIataAirport": "HII", + "codeIataCity": "HII", + "codeIcaoAirport": "KHII", + "codeIso2Country": "US", + "geonameId": "5301389", + "latitudeAirport": 34.568333, + "longitudeAirport": -114.35528, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "9", + "airportId": 2950, + "codeIataAirport": "HIJ", + "codeIataCity": "HIJ", + "codeIcaoAirport": "RJOA", + "codeIso2Country": "JP", + "geonameId": "6300371", + "latitudeAirport": 34.43611, + "longitudeAirport": 132.91945, + "nameAirport": "Hiroshima Airport", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-10", + "airportId": 2951, + "codeIataAirport": "HIK", + "codeIataCity": "HNL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 21.316668, + "longitudeAirport": -157.86667, + "nameAirport": "Hickam AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "3", + "airportId": 2952, + "codeIataAirport": "HIL", + "codeIataCity": "HIL", + "codeIcaoAirport": "", + "codeIso2Country": "ET", + "geonameId": "328553", + "latitudeAirport": 6.083333, + "longitudeAirport": 44.766666, + "nameAirport": "Shillavo", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "5.30", + "airportId": 2953, + "codeIataAirport": "HIM", + "codeIataCity": "HIM", + "codeIcaoAirport": "VCCH", + "codeIso2Country": "LK", + "geonameId": "1244108", + "latitudeAirport": 8.05, + "longitudeAirport": 80.97111, + "nameAirport": "Hingurakgoda", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "9", + "airportId": 2954, + "codeIataAirport": "HIN", + "codeIataCity": "HIN", + "codeIcaoAirport": "RKPS", + "codeIso2Country": "KR", + "geonameId": "6300426", + "latitudeAirport": 35.09263, + "longitudeAirport": 128.08676, + "nameAirport": "Sacheon", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "-8", + "airportId": 2955, + "codeIataAirport": "HIO", + "codeIataCity": "HIO", + "codeIcaoAirport": "KHIO", + "codeIso2Country": "US", + "geonameId": "5746578", + "latitudeAirport": 45.516666, + "longitudeAirport": -122.98333, + "nameAirport": "Portland", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 2956, + "codeIataAirport": "HIP", + "codeIataCity": "HIP", + "codeIcaoAirport": "YHDY", + "codeIso2Country": "AU", + "geonameId": "7731086", + "latitudeAirport": -21.316668, + "longitudeAirport": 138.28334, + "nameAirport": "Headingly", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "11", + "airportId": 2957, + "codeIataAirport": "HIR", + "codeIataCity": "HIR", + "codeIcaoAirport": "AGGH", + "codeIso2Country": "SB", + "geonameId": "6295679", + "latitudeAirport": -9.428592, + "longitudeAirport": 160.04819, + "nameAirport": "Henderson International", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "10", + "airportId": 2958, + "codeIataAirport": "HIS", + "codeIataCity": "HIS", + "codeIcaoAirport": "YHYN", + "codeIso2Country": "AU", + "geonameId": "7731087", + "latitudeAirport": -20.066668, + "longitudeAirport": 148.86667, + "nameAirport": "Hayman Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Lindeman" + }, + { + "GMT": "10", + "airportId": 2959, + "codeIataAirport": "HIT", + "codeIataCity": "HIT", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298899", + "latitudeAirport": -6.933333, + "longitudeAirport": 143.06667, + "nameAirport": "Haivaro", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "airportId": 2960, + "codeIataAirport": "HIW", + "codeIataCity": "HIJ", + "codeIcaoAirport": "RJBH", + "codeIso2Country": "JP", + "geonameId": "6300318", + "latitudeAirport": 34.36361, + "longitudeAirport": 132.41638, + "nameAirport": "Hiroshima West", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "8", + "airportId": 2961, + "codeIataAirport": "HJJ", + "codeIataCity": "HJJ", + "codeIcaoAirport": "ZGCJ", + "codeIso2Country": "CN", + "geonameId": "7910384", + "latitudeAirport": 27.44139, + "longitudeAirport": 109.69972, + "nameAirport": "Zhi Jiang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "5.30", + "airportId": 2962, + "codeIataAirport": "HJR", + "codeIataCity": "HJR", + "codeIcaoAirport": "VAKJ", + "codeIso2Country": "IN", + "geonameId": "7668574", + "latitudeAirport": 24.818747, + "longitudeAirport": 79.91642, + "nameAirport": "Khajuraho", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "8", + "airportId": 2963, + "codeIataAirport": "HJT", + "codeIataCity": "HJT", + "codeIcaoAirport": "ZMHU", + "codeIso2Country": "MN", + "geonameId": "8260990", + "latitudeAirport": 46.9, + "longitudeAirport": 102.76667, + "nameAirport": "Khujirt", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "-6", + "airportId": 2964, + "codeIataAirport": "HKA", + "codeIataCity": "BYH", + "codeIcaoAirport": "KHKA", + "codeIso2Country": "US", + "geonameId": "4102416", + "latitudeAirport": 35.933334, + "longitudeAirport": -89.916664, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 2965, + "codeIataAirport": "HKB", + "codeIataCity": "HKB", + "codeIcaoAirport": "PAHV", + "codeIso2Country": "US", + "geonameId": "5863860", + "latitudeAirport": 63.86667, + "longitudeAirport": -148.96666, + "nameAirport": "Healy Lake", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "9", + "airportId": 2966, + "codeIataAirport": "HKD", + "codeIataCity": "HKD", + "codeIcaoAirport": "RJCH", + "codeIso2Country": "JP", + "geonameId": "6300323", + "latitudeAirport": 41.776127, + "longitudeAirport": 140.81581, + "nameAirport": "Hakodate", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "8", + "airportId": 2967, + "codeIataAirport": "HKG", + "codeIataCity": "HKG", + "codeIcaoAirport": "VHHH", + "codeIso2Country": "HK", + "geonameId": "6301089", + "latitudeAirport": 22.315248, + "longitudeAirport": 113.93649, + "nameAirport": "Hong Kong International", + "nameCountry": "Hong Kong", + "phone": "+852 2181 888", + "timezone": "Asia/Hong_Kong" + }, + { + "GMT": "12", + "airportId": 2968, + "codeIataAirport": "HKK", + "codeIataCity": "HKK", + "codeIcaoAirport": "NZHK", + "codeIso2Country": "NZ", + "geonameId": "6299986", + "latitudeAirport": -42.714912, + "longitudeAirport": 170.98346, + "nameAirport": "Hokitika Airport", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "10", + "airportId": 2969, + "codeIataAirport": "HKN", + "codeIataCity": "HKN", + "codeIcaoAirport": "AYHK", + "codeIso2Country": "PG", + "geonameId": "7668080", + "latitudeAirport": -5.456876, + "longitudeAirport": 150.403, + "nameAirport": "Hoskins", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 2970, + "codeIataAirport": "HKS", + "codeIataCity": "JAN", + "codeIcaoAirport": "KHKS", + "codeIso2Country": "US", + "geonameId": "4429321", + "latitudeAirport": 32.3, + "longitudeAirport": -90.2, + "nameAirport": "Hawkins Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "airportId": 2971, + "codeIataAirport": "HKT", + "codeIataCity": "HKT", + "codeIcaoAirport": "VTSP", + "codeIso2Country": "TH", + "geonameId": "6301157", + "latitudeAirport": 8.107619, + "longitudeAirport": 98.306435, + "nameAirport": "Phuket International", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "2", + "airportId": 2972, + "codeIataAirport": "HKV", + "codeIataCity": "HKV", + "codeIcaoAirport": "LB14", + "codeIso2Country": "BG", + "geonameId": "7731088", + "latitudeAirport": 41.933334, + "longitudeAirport": 25.55, + "nameAirport": "Haskovo", + "nameCountry": "Bulgaria", + "phone": "", + "timezone": "Europe/Sofia" + }, + { + "GMT": "-5", + "airportId": 2973, + "codeIataAirport": "HKY", + "codeIataCity": "HKY", + "codeIcaoAirport": "KHKY", + "codeIso2Country": "US", + "geonameId": "4470872", + "latitudeAirport": 35.73861, + "longitudeAirport": -81.39167, + "nameAirport": "Hickory", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 2974, + "codeIataAirport": "HLA", + "codeIataCity": "JNB", + "codeIcaoAirport": "FALA", + "codeIso2Country": "ZA", + "geonameId": "6296903", + "latitudeAirport": -25.937843, + "longitudeAirport": 27.926432, + "nameAirport": "Lanseria", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-5", + "airportId": 2975, + "codeIataAirport": "HLB", + "codeIataCity": "HLB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.3, + "longitudeAirport": -85.21667, + "nameAirport": "Hillenbrand", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-6", + "airportId": 2976, + "codeIataAirport": "HLC", + "codeIataCity": "HLC", + "codeIcaoAirport": "KHLC", + "codeIso2Country": "US", + "geonameId": "4272984", + "latitudeAirport": 39.36667, + "longitudeAirport": -99.85, + "nameAirport": "Hill City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 2977, + "codeIataAirport": "HLD", + "codeIataCity": "HLD", + "codeIcaoAirport": "ZBLA", + "codeIso2Country": "CN", + "geonameId": "7668789", + "latitudeAirport": 49.209873, + "longitudeAirport": 119.80654, + "nameAirport": "Hailar", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 2978, + "codeIataAirport": "HLF", + "codeIataCity": "HLF", + "codeIcaoAirport": "ESSF", + "codeIso2Country": "SE", + "geonameId": "6296815", + "latitudeAirport": 57.52639, + "longitudeAirport": 15.827778, + "nameAirport": "Hultsfred - Vimmerby", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "airportId": 2979, + "codeIataAirport": "HLG", + "codeIataCity": "HLG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5280879", + "latitudeAirport": 40.183334, + "longitudeAirport": -80.65, + "nameAirport": "Ohio County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 2980, + "codeIataAirport": "HLH", + "codeIataCity": "HLH", + "codeIcaoAirport": "ZBUL", + "codeIso2Country": "CN", + "geonameId": "7731089", + "latitudeAirport": 46.19349, + "longitudeAirport": 122.00148, + "nameAirport": "Ulanhot", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-8", + "airportId": 2981, + "codeIataAirport": "HLI", + "codeIataCity": "HLI", + "codeIcaoAirport": "KCVH", + "codeIso2Country": "US", + "geonameId": "5357499", + "latitudeAirport": 36.85, + "longitudeAirport": -121.4, + "nameAirport": "Hollister", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 2982, + "codeIataAirport": "HLL", + "codeIataCity": "HLL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298718", + "latitudeAirport": -21.783333, + "longitudeAirport": 119.333336, + "nameAirport": "Hillside", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "airportId": 2983, + "codeIataAirport": "HLM", + "codeIataCity": "HLM", + "codeIcaoAirport": "KHLM", + "codeIso2Country": "US", + "geonameId": "5004982", + "latitudeAirport": 42.783333, + "longitudeAirport": -86.11667, + "nameAirport": "Park Township", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-7", + "airportId": 2984, + "codeIataAirport": "HLN", + "codeIataCity": "HLN", + "codeIcaoAirport": "KHLN", + "codeIso2Country": "US", + "geonameId": "5656905", + "latitudeAirport": 46.61052, + "longitudeAirport": -111.99018, + "nameAirport": "Helena", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "7", + "airportId": 2985, + "codeIataAirport": "HLP", + "codeIataCity": "JKT", + "codeIcaoAirport": "WIIH", + "codeIso2Country": "ID", + "geonameId": "6301224", + "latitudeAirport": -6.268056, + "longitudeAirport": 106.89028, + "nameAirport": "Halim Perdana Kusuma", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-6", + "airportId": 2986, + "codeIataAirport": "HLR", + "codeIataCity": "ILE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 31.116667, + "longitudeAirport": -97.73333, + "nameAirport": "Fort Hood AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 2987, + "codeIataAirport": "HLS", + "codeIataCity": "HLS", + "codeIcaoAirport": "YSTH", + "codeIso2Country": "AU", + "geonameId": "7668773", + "latitudeAirport": -41.266666, + "longitudeAirport": 148.25, + "nameAirport": "St Helens", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Hobart" + }, + { + "GMT": "10", + "airportId": 2988, + "codeIataAirport": "HLT", + "codeIataCity": "HLT", + "codeIcaoAirport": "YHML", + "codeIso2Country": "AU", + "geonameId": "7730260", + "latitudeAirport": -37.65, + "longitudeAirport": 142.06056, + "nameAirport": "Hamilton", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "11", + "airportId": 2989, + "codeIataAirport": "HLU", + "codeIataCity": "HLU", + "codeIcaoAirport": "", + "codeIso2Country": "NC", + "geonameId": "0", + "latitudeAirport": -21.033333, + "longitudeAirport": 166.06667, + "nameAirport": "Houailou", + "nameCountry": "New Caledonia", + "phone": "", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "10", + "airportId": 2990, + "codeIataAirport": "HLV", + "codeIataCity": "HLV", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731090", + "latitudeAirport": -15.683333, + "longitudeAirport": 145.2, + "nameAirport": "Helenvale", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "airportId": 2991, + "codeIataAirport": "HLW", + "codeIataCity": "HLW", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "996256", + "latitudeAirport": -28.016666, + "longitudeAirport": 32.25, + "nameAirport": "Hluhluwe", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "0", + "airportId": 2992, + "codeIataAirport": "HLY", + "codeIataCity": "HLY", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2646686", + "latitudeAirport": 53.3, + "longitudeAirport": -4.633333, + "nameAirport": "Anglesey Airport", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "12", + "airportId": 2993, + "codeIataAirport": "HLZ", + "codeIataCity": "HLZ", + "codeIcaoAirport": "NZHN", + "codeIso2Country": "NZ", + "geonameId": "6240808", + "latitudeAirport": -37.86622, + "longitudeAirport": 175.33603, + "nameAirport": "Hamilton", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "5", + "airportId": 2994, + "codeIataAirport": "HMA", + "codeIataCity": "HMA", + "codeIcaoAirport": "USHH", + "codeIso2Country": "RU", + "geonameId": "6301000", + "latitudeAirport": 61.02613, + "longitudeAirport": 69.09714, + "nameAirport": "Khanty-Mansiysk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "2", + "airportId": 2995, + "codeIataAirport": "HMB", + "codeIataCity": "HMB", + "codeIcaoAirport": "HEMK", + "codeIso2Country": "EG", + "geonameId": "7910488", + "latitudeAirport": 26.338877, + "longitudeAirport": 31.737167, + "nameAirport": "Mubarak International", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "1", + "airportId": 2996, + "codeIataAirport": "HME", + "codeIataCity": "HME", + "codeIcaoAirport": "DAUH", + "codeIso2Country": "DZ", + "geonameId": "6296390", + "latitudeAirport": 31.675303, + "longitudeAirport": 6.145436, + "nameAirport": "Oued Irara Airport", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "9.30", + "airportId": 2997, + "codeIataAirport": "HMG", + "codeIataCity": "HMG", + "codeIcaoAirport": "YHMB", + "codeIso2Country": "AU", + "geonameId": "7731091", + "latitudeAirport": -23.95, + "longitudeAirport": 132.75, + "nameAirport": "Hermannsburg", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "8", + "airportId": 2998, + "codeIataAirport": "HMI", + "codeIataCity": "HMI", + "codeIcaoAirport": "ZWHM", + "codeIso2Country": "CN", + "geonameId": "6301393", + "latitudeAirport": 42.916668, + "longitudeAirport": 93.416664, + "nameAirport": "Hami", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "airportId": 2999, + "codeIataAirport": "HMJ", + "codeIataCity": "HMJ", + "codeIcaoAirport": "UKLH", + "codeIso2Country": "UA", + "geonameId": "7730188", + "latitudeAirport": 49.416668, + "longitudeAirport": 27.0, + "nameAirport": "Khmelnitskiy", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-7", + "airportId": 3000, + "codeIataAirport": "HMN", + "codeIataCity": "ALM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.9, + "longitudeAirport": -105.95, + "nameAirport": "Holloman AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-7", + "airportId": 3001, + "codeIataAirport": "HMO", + "codeIataCity": "HMO", + "codeIcaoAirport": "MMHO", + "codeIso2Country": "MX", + "geonameId": "6299845", + "latitudeAirport": 29.089905, + "longitudeAirport": -111.051704, + "nameAirport": "Gen Pesqueira Garcia", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Hermosillo" + }, + { + "GMT": "1", + "airportId": 3002, + "codeIataAirport": "HMR", + "codeIataCity": "HMR", + "codeIcaoAirport": "ENHA", + "codeIso2Country": "NO", + "geonameId": "7668223", + "latitudeAirport": 60.8, + "longitudeAirport": 11.116667, + "nameAirport": "Hamar Airport", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-9", + "airportId": 3003, + "codeIataAirport": "HMS", + "codeIataCity": "HMS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 58.294445, + "longitudeAirport": -135.34723, + "nameAirport": "Homeshore", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Juneau" + }, + { + "GMT": "-8", + "airportId": 3004, + "codeIataAirport": "HMT", + "codeIataCity": "HMT", + "codeIcaoAirport": "KHMT", + "codeIso2Country": "US", + "geonameId": "5356297", + "latitudeAirport": 33.733334, + "longitudeAirport": -117.025, + "nameAirport": "Ryan Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 3005, + "codeIataAirport": "HMV", + "codeIataCity": "HMV", + "codeIcaoAirport": "ESUT", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 65.727776, + "longitudeAirport": 15.273056, + "nameAirport": "Hemavan", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "9", + "airportId": 3006, + "codeIataAirport": "HNA", + "codeIataCity": "HNA", + "codeIcaoAirport": "RJSI", + "codeIso2Country": "JP", + "geonameId": "6300393", + "latitudeAirport": 39.426926, + "longitudeAirport": 141.13077, + "nameAirport": "Hanamaki", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "airportId": 3007, + "codeIataAirport": "HNB", + "codeIataCity": "HNB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4259271", + "latitudeAirport": 38.3, + "longitudeAirport": -86.95, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Vincennes" + }, + { + "GMT": "-5", + "airportId": 3008, + "codeIataAirport": "HNC", + "codeIataCity": "HNC", + "codeIcaoAirport": "KHSE", + "codeIso2Country": "US", + "geonameId": "4470225", + "latitudeAirport": 35.216667, + "longitudeAirport": -75.7, + "nameAirport": "Hatteras", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "airportId": 3009, + "codeIataAirport": "HND", + "codeIataCity": "TYO", + "codeIcaoAirport": "RJTT", + "codeIso2Country": "JP", + "geonameId": "6300412", + "latitudeAirport": 35.54907, + "longitudeAirport": 139.78453, + "nameAirport": "Haneda Airport", + "nameCountry": "Japan", + "phone": "+81 03-5757-8", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-9", + "airportId": 3010, + "codeIataAirport": "HNE", + "codeIataCity": "HNE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 61.88333, + "longitudeAirport": -147.33333, + "nameAirport": "Tahneta Pass", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "11", + "airportId": 3011, + "codeIataAirport": "HNG", + "codeIataCity": "HNG", + "codeIcaoAirport": "", + "codeIso2Country": "NC", + "geonameId": "0", + "latitudeAirport": -20.666668, + "longitudeAirport": 164.9, + "nameAirport": "Hienghene", + "nameCountry": "New Caledonia", + "phone": "", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "-9", + "airportId": 3012, + "codeIataAirport": "HNH", + "codeIataCity": "HNH", + "codeIcaoAirport": "PAOH", + "codeIso2Country": "US", + "geonameId": "5847155", + "latitudeAirport": 58.098057, + "longitudeAirport": -135.40334, + "nameAirport": "Hoonah", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Juneau" + }, + { + "GMT": "10", + "airportId": 3013, + "codeIataAirport": "HNI", + "codeIataCity": "HNI", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8261008", + "latitudeAirport": 22.213057, + "longitudeAirport": 159.44695, + "nameAirport": "Heiweni", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-10", + "airportId": 3014, + "codeIataAirport": "HNL", + "codeIataCity": "HNL", + "codeIcaoAirport": "PHNL", + "codeIso2Country": "US", + "geonameId": "5856213", + "latitudeAirport": 21.325832, + "longitudeAirport": -157.92166, + "nameAirport": "Honolulu International", + "nameCountry": "United States", + "phone": "808-836-6411", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "-10", + "airportId": 3015, + "codeIataAirport": "HNM", + "codeIataCity": "HNM", + "codeIcaoAirport": "PHHN", + "codeIso2Country": "US", + "geonameId": "5855412", + "latitudeAirport": 20.795834, + "longitudeAirport": -156.01889, + "nameAirport": "Hana", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "10", + "airportId": 3016, + "codeIataAirport": "HNN", + "codeIataCity": "HNN", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8261055", + "latitudeAirport": -6.133333, + "longitudeAirport": 142.23334, + "nameAirport": "Honinabi", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 3017, + "codeIataAirport": "HNS", + "codeIataCity": "HNS", + "codeIcaoAirport": "KHNS", + "codeIso2Country": "US", + "geonameId": "5846899", + "latitudeAirport": 59.245834, + "longitudeAirport": -135.51889, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Juneau" + }, + { + "GMT": "-7", + "airportId": 3018, + "codeIataAirport": "HNX", + "codeIataCity": "HNX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299124", + "latitudeAirport": 41.833332, + "longitudeAirport": -106.5, + "nameAirport": "Hanna", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "airportId": 3019, + "codeIataAirport": "HNY", + "codeIataCity": "HNY", + "codeIcaoAirport": "ZGHY", + "codeIso2Country": "CN", + "geonameId": "7731092", + "latitudeAirport": 26.85, + "longitudeAirport": 112.5, + "nameAirport": "Hengyang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "airportId": 3020, + "codeIataAirport": "HOA", + "codeIataCity": "HOA", + "codeIcaoAirport": "HKHO", + "codeIso2Country": "KE", + "geonameId": "196752", + "latitudeAirport": -1.0, + "longitudeAirport": 40.0, + "nameAirport": "Hola", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-7", + "airportId": 3021, + "codeIataAirport": "HOB", + "codeIataCity": "HOB", + "codeIcaoAirport": "KHOB", + "codeIso2Country": "US", + "geonameId": "5471579", + "latitudeAirport": 32.68861, + "longitudeAirport": -103.21694, + "nameAirport": "Lea County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "airportId": 3022, + "codeIataAirport": "HOC", + "codeIataCity": "HOC", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2093634", + "latitudeAirport": -7.416667, + "longitudeAirport": 145.88333, + "nameAirport": "Komako", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 3023, + "codeIataAirport": "HOD", + "codeIataCity": "HOD", + "codeIcaoAirport": "OYHD", + "codeIso2Country": "YE", + "geonameId": "6300137", + "latitudeAirport": 14.755638, + "longitudeAirport": 42.970478, + "nameAirport": "Hodeidah Airport", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "7", + "airportId": 3024, + "codeIataAirport": "HOE", + "codeIataCity": "HOE", + "codeIcaoAirport": "", + "codeIso2Country": "LA", + "geonameId": "0", + "latitudeAirport": 20.5, + "longitudeAirport": 103.75, + "nameAirport": "Houeisay", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "3", + "airportId": 3025, + "codeIataAirport": "HOF", + "codeIataCity": "HOF", + "codeIcaoAirport": "OEAH", + "codeIso2Country": "SA", + "geonameId": "6300009", + "latitudeAirport": 25.294783, + "longitudeAirport": 49.48746, + "nameAirport": "Alahsa", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-5", + "airportId": 3026, + "codeIataAirport": "HOG", + "codeIataCity": "HOG", + "codeIcaoAirport": "MUHG", + "codeIso2Country": "CU", + "geonameId": "6299925", + "latitudeAirport": 20.785278, + "longitudeAirport": -76.315, + "nameAirport": "Frank Pais", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "1", + "airportId": 3027, + "codeIataAirport": "HOH", + "codeIataCity": "HOH", + "codeIcaoAirport": "LOIH", + "codeIso2Country": "AT", + "geonameId": "6299665", + "latitudeAirport": 47.38333, + "longitudeAirport": 9.7, + "nameAirport": "Hohenems-Dornbirn", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "-10", + "airportId": 3028, + "codeIataAirport": "HOI", + "codeIataCity": "HOI", + "codeIcaoAirport": "NTTO", + "codeIso2Country": "PF", + "geonameId": "6299967", + "latitudeAirport": -18.06248, + "longitudeAirport": -140.96529, + "nameAirport": "Hao Island", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "9.30", + "airportId": 3029, + "codeIataAirport": "HOK", + "codeIataCity": "HOK", + "codeIcaoAirport": "YHOO", + "codeIso2Country": "AU", + "geonameId": "7731093", + "latitudeAirport": -18.335, + "longitudeAirport": 130.6325, + "nameAirport": "Hooker Creek", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-9", + "airportId": 3030, + "codeIataAirport": "HOL", + "codeIataCity": "HOL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299115", + "latitudeAirport": 62.86667, + "longitudeAirport": -159.65, + "nameAirport": "Holikachu", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 3031, + "codeIataAirport": "HOM", + "codeIataCity": "HOM", + "codeIcaoAirport": "PAHO", + "codeIso2Country": "US", + "geonameId": "5864146", + "latitudeAirport": 59.64324, + "longitudeAirport": -151.49316, + "nameAirport": "Homer", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 3032, + "codeIataAirport": "HON", + "codeIataCity": "HON", + "codeIcaoAirport": "KHON", + "codeIso2Country": "US", + "geonameId": "5228679", + "latitudeAirport": 44.38361, + "longitudeAirport": -98.22639, + "nameAirport": "Howes", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "airportId": 3033, + "codeIataAirport": "HOO", + "codeIataCity": "HOO", + "codeIcaoAirport": "", + "codeIso2Country": "VN", + "geonameId": "8261070", + "latitudeAirport": 12.009722, + "longitudeAirport": 107.68806, + "nameAirport": "Nhon Co", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-6", + "airportId": 3034, + "codeIataAirport": "HOP", + "codeIataCity": "HOP", + "codeIcaoAirport": "KHOP", + "codeIso2Country": "US", + "geonameId": "6301608", + "latitudeAirport": 36.86667, + "longitudeAirport": -87.48333, + "nameAirport": "Campbell AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 3035, + "codeIataAirport": "HOQ", + "codeIataCity": "HOQ", + "codeIcaoAirport": "EDQM", + "codeIso2Country": "DE", + "geonameId": "6296525", + "latitudeAirport": 50.289165, + "longitudeAirport": 11.862222, + "nameAirport": "Hof", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-1", + "airportId": 3036, + "codeIataAirport": "HOR", + "codeIataCity": "HOR", + "codeIcaoAirport": "LPHR", + "codeIso2Country": "PT", + "geonameId": "6299682", + "latitudeAirport": 38.52, + "longitudeAirport": -28.717222, + "nameAirport": "Horta", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Atlantic/Azores" + }, + { + "GMT": "-3", + "airportId": 3037, + "codeIataAirport": "HOS", + "codeIataCity": "HOS", + "codeIcaoAirport": "", + "codeIso2Country": "AR", + "geonameId": "3861262", + "latitudeAirport": -37.416668, + "longitudeAirport": -70.21667, + "nameAirport": "Oscar Reguera", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-6", + "airportId": 3038, + "codeIataAirport": "HOT", + "codeIataCity": "HOT", + "codeIcaoAirport": "KHOT", + "codeIso2Country": "US", + "geonameId": "4121282", + "latitudeAirport": 34.47889, + "longitudeAirport": -93.09611, + "nameAirport": "Memorial Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 3039, + "codeIataAirport": "HOU", + "codeIataCity": "HOU", + "codeIcaoAirport": "KHOU", + "codeIso2Country": "US", + "geonameId": "4741989", + "latitudeAirport": 29.654512, + "longitudeAirport": -95.277016, + "nameAirport": "William P Hobby", + "nameCountry": "United States", + "phone": "281-233-3000", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 3040, + "codeIataAirport": "HOV", + "codeIataCity": "HOV", + "codeIcaoAirport": "ENOV", + "codeIso2Country": "NO", + "geonameId": "6296760", + "latitudeAirport": 62.179787, + "longitudeAirport": 6.078802, + "nameAirport": "Hovden", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "airportId": 3041, + "codeIataAirport": "HOW", + "codeIataCity": "HOW", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Howard AFB", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "6.30", + "airportId": 3042, + "codeIataAirport": "HOX", + "codeIataCity": "HOX", + "codeIcaoAirport": "", + "codeIso2Country": "MM", + "geonameId": "8260828", + "latitudeAirport": 24.866667, + "longitudeAirport": 94.916664, + "nameAirport": "Homalin", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "0", + "airportId": 3043, + "codeIataAirport": "HOY", + "codeIataCity": "HOY", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "8299173", + "latitudeAirport": 58.833332, + "longitudeAirport": -3.3, + "nameAirport": "Hoy Island", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "13", + "airportId": 3044, + "codeIataAirport": "HPA", + "codeIataCity": "HPA", + "codeIcaoAirport": "NFTL", + "codeIso2Country": "TO", + "geonameId": "0", + "latitudeAirport": -19.778538, + "longitudeAirport": -174.34088, + "nameAirport": "Salote Pilolevu", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Tongatapu" + }, + { + "GMT": "-9", + "airportId": 3045, + "codeIataAirport": "HPB", + "codeIataCity": "HPB", + "codeIcaoAirport": "PAHP", + "codeIso2Country": "US", + "geonameId": "5864198", + "latitudeAirport": 61.525078, + "longitudeAirport": -166.14586, + "nameAirport": "Hooper Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "10", + "airportId": 3046, + "codeIataAirport": "HPE", + "codeIataCity": "HPE", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8219775", + "latitudeAirport": -14.666667, + "longitudeAirport": 144.91667, + "nameAirport": "Hope Vale", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "7", + "airportId": 3047, + "codeIataAirport": "HPH", + "codeIataCity": "HPH", + "codeIcaoAirport": "VVCI", + "codeIso2Country": "VN", + "geonameId": "7730223", + "latitudeAirport": 20.823315, + "longitudeAirport": 106.727325, + "nameAirport": "Catbi", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-5", + "airportId": 3048, + "codeIataAirport": "HPN", + "codeIataCity": "HPN", + "codeIcaoAirport": "KHPN", + "codeIso2Country": "US", + "geonameId": "5144051", + "latitudeAirport": 41.068672, + "longitudeAirport": -73.70389, + "nameAirport": "Westchester County Apt", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 3049, + "codeIataAirport": "HPT", + "codeIataCity": "HPT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.75, + "longitudeAirport": -93.2, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-10", + "airportId": 3050, + "codeIataAirport": "HPV", + "codeIataCity": "LIH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5852603", + "latitudeAirport": 22.2125, + "longitudeAirport": -159.44667, + "nameAirport": "Princeville", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "-6", + "airportId": 3051, + "codeIataAirport": "HPY", + "codeIataCity": "HPY", + "codeIcaoAirport": "KHPY", + "codeIso2Country": "US", + "geonameId": "4672732", + "latitudeAirport": 29.733334, + "longitudeAirport": -94.96667, + "nameAirport": "Baytown Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 3052, + "codeIataAirport": "HQM", + "codeIataCity": "HQM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5797693", + "latitudeAirport": 46.97111, + "longitudeAirport": -123.935555, + "nameAirport": "Bowerman", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "5", + "airportId": 3053, + "codeIataAirport": "HRA", + "codeIataCity": "HRA", + "codeIcaoAirport": "", + "codeIso2Country": "PK", + "geonameId": "0", + "latitudeAirport": 34.333332, + "longitudeAirport": 73.2, + "nameAirport": "Mansehra", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "8", + "airportId": 3054, + "codeIataAirport": "HRB", + "codeIataCity": "HRB", + "codeIcaoAirport": "ZYHB", + "codeIso2Country": "CN", + "geonameId": "6301399", + "latitudeAirport": 45.620853, + "longitudeAirport": 126.23644, + "nameAirport": "Harbin", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "6", + "airportId": 3055, + "codeIataAirport": "HRC", + "codeIataCity": "HRC", + "codeIcaoAirport": "", + "codeIso2Country": "KZ", + "geonameId": "8260945", + "latitudeAirport": 48.466667, + "longitudeAirport": 70.46667, + "nameAirport": "Zhairem", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "2", + "airportId": 3056, + "codeIataAirport": "HRE", + "codeIataCity": "HRE", + "codeIcaoAirport": "FVHA", + "codeIso2Country": "ZW", + "geonameId": "1106437", + "latitudeAirport": -17.91863, + "longitudeAirport": 31.099249, + "nameAirport": "Harare", + "nameCountry": "Zimbabwe", + "phone": "", + "timezone": "Africa/Harare" + }, + { + "GMT": "2", + "airportId": 3057, + "codeIataAirport": "HRG", + "codeIataCity": "HRG", + "codeIcaoAirport": "HEGN", + "codeIso2Country": "EG", + "geonameId": "6297294", + "latitudeAirport": 27.189156, + "longitudeAirport": 33.8055, + "nameAirport": "Hurghada", + "nameCountry": "Egypt", + "phone": "(65) 446 772", + "timezone": "Africa/Cairo" + }, + { + "GMT": "5.30", + "airportId": 3058, + "codeIataAirport": "HRI", + "codeIataCity": "HRI", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "5731078", + "latitudeAirport": 45.82791, + "longitudeAirport": -119.26029, + "nameAirport": "Mattala Rajapaksa International Airport", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "5.45", + "airportId": 3059, + "codeIataAirport": "HRJ", + "codeIataCity": "HRJ", + "codeIcaoAirport": "", + "codeIso2Country": "NP", + "geonameId": "0", + "latitudeAirport": 28.0, + "longitudeAirport": 82.333336, + "nameAirport": "Chaurjhari", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "2", + "airportId": 3060, + "codeIataAirport": "HRK", + "codeIataCity": "HRK", + "codeIcaoAirport": "UKHH", + "codeIso2Country": "UA", + "geonameId": "6300958", + "latitudeAirport": 49.92078, + "longitudeAirport": 36.281185, + "nameAirport": "Kharkov", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-6", + "airportId": 3061, + "codeIataAirport": "HRL", + "codeIataCity": "HRL", + "codeIcaoAirport": "KHRL", + "codeIso2Country": "US", + "geonameId": "4722841", + "latitudeAirport": 26.223482, + "longitudeAirport": -97.662254, + "nameAirport": "Valley International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 3062, + "codeIataAirport": "HRM", + "codeIataCity": "HRM", + "codeIcaoAirport": "DAFH", + "codeIso2Country": "DZ", + "geonameId": "6296375", + "latitudeAirport": 33.166668, + "longitudeAirport": 3.2, + "nameAirport": "Tilrempt", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "10", + "airportId": 3063, + "codeIataAirport": "HRN", + "codeIataCity": "HRN", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "6354955", + "latitudeAirport": -23.433332, + "longitudeAirport": 151.91667, + "nameAirport": "Heliport", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "airportId": 3064, + "codeIataAirport": "HRO", + "codeIataCity": "HRO", + "codeIcaoAirport": "KHRO", + "codeIso2Country": "US", + "geonameId": "4113956", + "latitudeAirport": 36.261665, + "longitudeAirport": -93.155556, + "nameAirport": "Boone County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 3065, + "codeIataAirport": "HRR", + "codeIataCity": "HRR", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 3.216667, + "longitudeAirport": -75.85, + "nameAirport": "Herrera", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "2", + "airportId": 3066, + "codeIataAirport": "HRS", + "codeIataCity": "HRS", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "997751", + "latitudeAirport": -26.233334, + "longitudeAirport": 29.1, + "nameAirport": "Harrismith Airport", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "0", + "airportId": 3067, + "codeIataAirport": "HRT", + "codeIataCity": "HRT", + "codeIcaoAirport": "KHRT", + "codeIso2Country": "GB", + "geonameId": "6296673", + "latitudeAirport": 54.0, + "longitudeAirport": -1.55, + "nameAirport": "Linton-On-Ouse", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "9.30", + "airportId": 3068, + "codeIataAirport": "HRY", + "codeIataCity": "HRY", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298715", + "latitudeAirport": -24.583332, + "longitudeAirport": 133.25, + "nameAirport": "Henbury", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-3", + "airportId": 3069, + "codeIataAirport": "HRZ", + "codeIataCity": "HRZ", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "3461659", + "latitudeAirport": -27.638332, + "longitudeAirport": -54.340557, + "nameAirport": "Horizontina", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "airportId": 3070, + "codeIataAirport": "HSB", + "codeIataCity": "HSB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 37.733334, + "longitudeAirport": -88.53333, + "nameAirport": "Raleigh", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 3071, + "codeIataAirport": "HSC", + "codeIataCity": "HSC", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "8260769", + "latitudeAirport": 24.833332, + "longitudeAirport": 113.61667, + "nameAirport": "Shaoguan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9", + "airportId": 3072, + "codeIataAirport": "HSG", + "codeIataCity": "HSG", + "codeIcaoAirport": "RJFS", + "codeIso2Country": "JP", + "geonameId": "6300353", + "latitudeAirport": 33.153828, + "longitudeAirport": 130.30278, + "nameAirport": "Saga", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-8", + "airportId": 3073, + "codeIataAirport": "HSH", + "codeIataCity": "LAS", + "codeIcaoAirport": "KHND", + "codeIso2Country": "US", + "geonameId": "5506989", + "latitudeAirport": 35.968334, + "longitudeAirport": -115.11916, + "nameAirport": "Henderson Executive", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 3074, + "codeIataAirport": "HSI", + "codeIataCity": "HSI", + "codeIcaoAirport": "KHSI", + "codeIso2Country": "US", + "geonameId": "5069812", + "latitudeAirport": 40.605556, + "longitudeAirport": -98.42694, + "nameAirport": "Hastings", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 3075, + "codeIataAirport": "HSK", + "codeIataCity": "HSK", + "codeIcaoAirport": "LEHC", + "codeIso2Country": "ES", + "geonameId": "7116799", + "latitudeAirport": 42.08093, + "longitudeAirport": -0.323469, + "nameAirport": "Huesca-Pirineos", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-9", + "airportId": 3076, + "codeIataAirport": "HSL", + "codeIataCity": "HSL", + "codeIcaoAirport": "PAHS", + "codeIso2Country": "US", + "geonameId": "5864433", + "latitudeAirport": 65.7025, + "longitudeAirport": -156.375, + "nameAirport": "Huslia", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 3077, + "codeIataAirport": "HSM", + "codeIataCity": "HSM", + "codeIcaoAirport": "YHSM", + "codeIso2Country": "AU", + "geonameId": "7668724", + "latitudeAirport": -36.666668, + "longitudeAirport": 142.16667, + "nameAirport": "Horsham", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "8", + "airportId": 3078, + "codeIataAirport": "HSN", + "codeIataCity": "HSN", + "codeIcaoAirport": "ZSZS", + "codeIso2Country": "CN", + "geonameId": "7731095", + "latitudeAirport": 29.935259, + "longitudeAirport": 122.35691, + "nameAirport": "Zhoushan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 3079, + "codeIataAirport": "HSP", + "codeIataCity": "HSP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 37.950558, + "longitudeAirport": -79.833885, + "nameAirport": "Ingalls Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "5.30", + "airportId": 3080, + "codeIataAirport": "HSS", + "codeIataCity": "HSS", + "codeIcaoAirport": "VIHR", + "codeIso2Country": "IN", + "geonameId": "6301098", + "latitudeAirport": 29.166668, + "longitudeAirport": 75.8, + "nameAirport": "Hissar", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "airportId": 3081, + "codeIataAirport": "HST", + "codeIataCity": "HST", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 25.483334, + "longitudeAirport": -80.48333, + "nameAirport": "AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 3082, + "codeIataAirport": "HSV", + "codeIataCity": "HSV", + "codeIcaoAirport": "KHSV", + "codeIso2Country": "US", + "geonameId": "4068590", + "latitudeAirport": 34.64857, + "longitudeAirport": -86.77484, + "nameAirport": "Huntsville International - Carl T. Jones Field", + "nameCountry": "United States", + "phone": "256-772-9395", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 3083, + "codeIataAirport": "HSZ", + "codeIataCity": "HSZ", + "codeIcaoAirport": "", + "codeIso2Country": "TW", + "geonameId": "6600395", + "latitudeAirport": 24.816668, + "longitudeAirport": 120.933334, + "nameAirport": "Hsinchu", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "9", + "airportId": 3084, + "codeIataAirport": "HTA", + "codeIataCity": "HTA", + "codeIcaoAirport": "UIAA", + "codeIso2Country": "RU", + "geonameId": "6300943", + "latitudeAirport": 52.033333, + "longitudeAirport": 113.3, + "nameAirport": "Chita", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "-4", + "airportId": 3085, + "codeIataAirport": "HTB", + "codeIataCity": "HTB", + "codeIcaoAirport": "", + "codeIso2Country": "GP", + "geonameId": "3578351", + "latitudeAirport": 15.716667, + "longitudeAirport": -61.63333, + "nameAirport": "Terre-de-Bas", + "nameCountry": "Guadeloupe", + "phone": "", + "timezone": "America/Guadeloupe" + }, + { + "GMT": "7", + "airportId": 3086, + "codeIataAirport": "HTG", + "codeIataCity": "HTG", + "codeIcaoAirport": "UOHH", + "codeIso2Country": "RU", + "geonameId": "7730190", + "latitudeAirport": 71.96667, + "longitudeAirport": 102.5, + "nameAirport": "Hatanga", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "-8", + "airportId": 3087, + "codeIataAirport": "HTH", + "codeIataCity": "HTH", + "codeIcaoAirport": "KHTH", + "codeIso2Country": "US", + "geonameId": "5505324", + "latitudeAirport": 38.533333, + "longitudeAirport": -118.63333, + "nameAirport": "Hawthorne", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 3088, + "codeIataAirport": "HTI", + "codeIataCity": "HTI", + "codeIcaoAirport": "YBHM", + "codeIso2Country": "AU", + "geonameId": "7730241", + "latitudeAirport": -20.35175, + "longitudeAirport": 148.94847, + "nameAirport": "Hamilton Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Lindeman" + }, + { + "GMT": "-5", + "airportId": 3089, + "codeIataAirport": "HTL", + "codeIataCity": "HTL", + "codeIcaoAirport": "KHTL", + "codeIso2Country": "US", + "geonameId": "5007588", + "latitudeAirport": 44.448055, + "longitudeAirport": -84.71111, + "nameAirport": "Roscommon County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "8", + "airportId": 3090, + "codeIataAirport": "HTM", + "codeIataCity": "HTM", + "codeIcaoAirport": "", + "codeIso2Country": "MN", + "geonameId": "8298819", + "latitudeAirport": 50.45, + "longitudeAirport": 100.166664, + "nameAirport": "Khatgal", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "8", + "airportId": 3091, + "codeIataAirport": "HTN", + "codeIataCity": "HTN", + "codeIcaoAirport": "ZWTN", + "codeIso2Country": "CN", + "geonameId": "6301395", + "latitudeAirport": 37.040436, + "longitudeAirport": 79.87245, + "nameAirport": "Hotan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 3092, + "codeIataAirport": "HTO", + "codeIataCity": "HTO", + "codeIcaoAirport": "KHTO", + "codeIso2Country": "US", + "geonameId": "5115872", + "latitudeAirport": 40.959442, + "longitudeAirport": -72.25166, + "nameAirport": "East Hampton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "airportId": 3093, + "codeIataAirport": "HTR", + "codeIataCity": "HTR", + "codeIcaoAirport": "RORH", + "codeIso2Country": "JP", + "geonameId": "6300466", + "latitudeAirport": 24.05, + "longitudeAirport": 123.8, + "nameAirport": "Hateruma", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "airportId": 3094, + "codeIataAirport": "HTS", + "codeIataCity": "HTS", + "codeIcaoAirport": "KHTS", + "codeIso2Country": "US", + "geonameId": "4825023", + "latitudeAirport": 38.366943, + "longitudeAirport": -82.556114, + "nameAirport": "Tri-state/Milton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 3095, + "codeIataAirport": "HTU", + "codeIataCity": "HTU", + "codeIcaoAirport": "YHPN", + "codeIso2Country": "AU", + "geonameId": "7668723", + "latitudeAirport": -35.7, + "longitudeAirport": 142.36667, + "nameAirport": "Hopetoun", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-6", + "airportId": 3096, + "codeIataAirport": "HTV", + "codeIataCity": "HTV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.716667, + "longitudeAirport": -95.55, + "nameAirport": "Huntsville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 3097, + "codeIataAirport": "HTW", + "codeIataCity": "HTW", + "codeIcaoAirport": "KHTW", + "codeIso2Country": "US", + "geonameId": "4516352", + "latitudeAirport": 36.833332, + "longitudeAirport": -76.28333, + "nameAirport": "Lawrence County Airpark", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 3098, + "codeIataAirport": "HTY", + "codeIataCity": "HTY", + "codeIcaoAirport": "LTDA", + "codeIso2Country": "TR", + "geonameId": "7625766", + "latitudeAirport": 36.364544, + "longitudeAirport": 36.28057, + "nameAirport": "Hatay", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-5", + "airportId": 3099, + "codeIataAirport": "HTZ", + "codeIataCity": "HTZ", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "3829804", + "latitudeAirport": 6.033333, + "longitudeAirport": -72.63333, + "nameAirport": "Hato Corozal", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 3100, + "codeIataAirport": "HUA", + "codeIataCity": "HSV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.733334, + "longitudeAirport": -86.583336, + "nameAirport": "Redstone AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9.30", + "airportId": 3101, + "codeIataAirport": "HUB", + "codeIataCity": "HUB", + "codeIcaoAirport": "YHBR", + "codeIso2Country": "AU", + "geonameId": "7731096", + "latitudeAirport": -16.5, + "longitudeAirport": 130.75, + "nameAirport": "Humbert River", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-4", + "airportId": 3102, + "codeIataAirport": "HUC", + "codeIataCity": "HUC", + "codeIcaoAirport": "", + "codeIso2Country": "PR", + "geonameId": "4565564", + "latitudeAirport": 18.14, + "longitudeAirport": -65.80111, + "nameAirport": "Humacao Airport", + "nameCountry": "Puerto Rico", + "phone": "", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "-6", + "airportId": 3103, + "codeIataAirport": "HUD", + "codeIataCity": "HUD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4861355", + "latitudeAirport": 42.733334, + "longitudeAirport": -94.21667, + "nameAirport": "Humboldt", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 3104, + "codeIataAirport": "HUE", + "codeIataCity": "HUE", + "codeIcaoAirport": "HAHU", + "codeIso2Country": "ET", + "geonameId": "7730588", + "latitudeAirport": 14.25, + "longitudeAirport": 36.583332, + "nameAirport": "Humera", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-5", + "airportId": 3105, + "codeIataAirport": "HUF", + "codeIataCity": "HUF", + "codeIcaoAirport": "KHUF", + "codeIso2Country": "US", + "geonameId": "6298406", + "latitudeAirport": 39.454445, + "longitudeAirport": -87.3075, + "nameAirport": "Hulman Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-6", + "airportId": 3106, + "codeIataAirport": "HUG", + "codeIataCity": "HUG", + "codeIcaoAirport": "MGHT", + "codeIso2Country": "GT", + "geonameId": "6299802", + "latitudeAirport": 15.333333, + "longitudeAirport": -91.46667, + "nameAirport": "Huehuetenango", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "-10", + "airportId": 3107, + "codeIataAirport": "HUH", + "codeIataCity": "HUH", + "codeIcaoAirport": "NTTH", + "codeIso2Country": "PF", + "geonameId": "7730131", + "latitudeAirport": -16.689682, + "longitudeAirport": -151.02826, + "nameAirport": "Huahine", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "7", + "airportId": 3108, + "codeIataAirport": "HUI", + "codeIataCity": "HUI", + "codeIcaoAirport": "VVPB", + "codeIso2Country": "VN", + "geonameId": "6301172", + "latitudeAirport": 16.398224, + "longitudeAirport": 107.700874, + "nameAirport": "Phu Bai", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-6", + "airportId": 3109, + "codeIataAirport": "HUJ", + "codeIataCity": "HUJ", + "codeIcaoAirport": "KHHW", + "codeIso2Country": "US", + "geonameId": "4552114", + "latitudeAirport": 34.016666, + "longitudeAirport": -95.51667, + "nameAirport": "Hugo", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 3110, + "codeIataAirport": "HUK", + "codeIataCity": "HUK", + "codeIcaoAirport": "", + "codeIso2Country": "BW", + "geonameId": "7731097", + "latitudeAirport": -23.983334, + "longitudeAirport": 21.75, + "nameAirport": "Hukuntsi", + "nameCountry": "Botswana", + "phone": "", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "-5", + "airportId": 3111, + "codeIataAirport": "HUL", + "codeIataCity": "HUL", + "codeIcaoAirport": "KHUL", + "codeIso2Country": "US", + "geonameId": "4967575", + "latitudeAirport": 46.13333, + "longitudeAirport": -67.8, + "nameAirport": "Houlton International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 3112, + "codeIataAirport": "HUM", + "codeIataCity": "HUM", + "codeIcaoAirport": "KHUM", + "codeIso2Country": "US", + "geonameId": "4328010", + "latitudeAirport": 29.566944, + "longitudeAirport": -90.660835, + "nameAirport": "Terrebonne", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 3113, + "codeIataAirport": "HUN", + "codeIataCity": "HUN", + "codeIcaoAirport": "RCYU", + "codeIso2Country": "TW", + "geonameId": "6300306", + "latitudeAirport": 24.025764, + "longitudeAirport": 121.613434, + "nameAirport": "Hualien", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "2", + "airportId": 3114, + "codeIataAirport": "HUQ", + "codeIataCity": "HUQ", + "codeIcaoAirport": "HLON", + "codeIso2Country": "LY", + "geonameId": "7730619", + "latitudeAirport": 29.5, + "longitudeAirport": 15.5, + "nameAirport": "Houn", + "nameCountry": "Libya", + "phone": "", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "-9", + "airportId": 3115, + "codeIataAirport": "HUS", + "codeIataCity": "HUS", + "codeIcaoAirport": "PAHU", + "codeIso2Country": "US", + "geonameId": "5864351", + "latitudeAirport": 66.04056, + "longitudeAirport": -154.26334, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 3116, + "codeIataAirport": "HUT", + "codeIataCity": "HUT", + "codeIcaoAirport": "KHUT", + "codeIso2Country": "US", + "geonameId": "4273304", + "latitudeAirport": 38.068054, + "longitudeAirport": -97.861115, + "nameAirport": "Hutchinson", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 3117, + "codeIataAirport": "HUU", + "codeIataCity": "HUU", + "codeIcaoAirport": "SPNC", + "codeIso2Country": "PE", + "geonameId": "6300814", + "latitudeAirport": -9.866667, + "longitudeAirport": -76.21667, + "nameAirport": "Huanuco", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "1", + "airportId": 3118, + "codeIataAirport": "HUV", + "codeIataCity": "HUV", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "2704613", + "latitudeAirport": 61.733334, + "longitudeAirport": 17.116667, + "nameAirport": "Hudiksvall", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-4", + "airportId": 3119, + "codeIataAirport": "HUW", + "codeIataCity": "HUW", + "codeIcaoAirport": "SWHT", + "codeIso2Country": "BR", + "geonameId": "8260830", + "latitudeAirport": 53.583447, + "longitudeAirport": -0.348669, + "nameAirport": "Humaita", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "-6", + "airportId": 3120, + "codeIataAirport": "HUX", + "codeIataCity": "HUX", + "codeIcaoAirport": "MMBT", + "codeIso2Country": "MX", + "geonameId": "6299829", + "latitudeAirport": 15.768333, + "longitudeAirport": -96.23556, + "nameAirport": "Huatulco", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "0", + "airportId": 3121, + "codeIataAirport": "HUY", + "codeIataCity": "HUY", + "codeIcaoAirport": "EGNJ", + "codeIso2Country": "GB", + "geonameId": "6296606", + "latitudeAirport": 53.583378, + "longitudeAirport": -0.34851, + "nameAirport": "Humberside International", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "8", + "airportId": 3122, + "codeIataAirport": "HUZ", + "codeIataCity": "HUZ", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "8298788", + "latitudeAirport": 23.083332, + "longitudeAirport": 114.36667, + "nameAirport": "Huizhou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "airportId": 3123, + "codeIataAirport": "HVA", + "codeIataCity": "HVA", + "codeIcaoAirport": "FMNL", + "codeIso2Country": "MG", + "geonameId": "6297046", + "latitudeAirport": -14.633333, + "longitudeAirport": 47.766666, + "nameAirport": "Analalava", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "10", + "airportId": 3124, + "codeIataAirport": "HVB", + "codeIataCity": "HVB", + "codeIcaoAirport": "YHBA", + "codeIso2Country": "AU", + "geonameId": "6354957", + "latitudeAirport": -25.319868, + "longitudeAirport": 152.88521, + "nameAirport": "Hervey Bay", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "7", + "airportId": 3125, + "codeIataAirport": "HVD", + "codeIataCity": "HVD", + "codeIcaoAirport": "ZMKD", + "codeIso2Country": "MN", + "geonameId": "7668798", + "latitudeAirport": 48.016666, + "longitudeAirport": 91.65, + "nameAirport": "Khovd", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Hovd" + }, + { + "GMT": "-7", + "airportId": 3126, + "codeIataAirport": "HVE", + "codeIataCity": "HVE", + "codeIcaoAirport": "KHVE", + "codeIso2Country": "US", + "geonameId": "5540149", + "latitudeAirport": 38.36667, + "longitudeAirport": -110.71667, + "nameAirport": "Intermediate", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 3127, + "codeIataAirport": "HVG", + "codeIataCity": "HVG", + "codeIcaoAirport": "ENHV", + "codeIso2Country": "NO", + "geonameId": "6296745", + "latitudeAirport": 70.98333, + "longitudeAirport": 25.833332, + "nameAirport": "Valan", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "0", + "airportId": 3128, + "codeIataAirport": "HVK", + "codeIataCity": "HVK", + "codeIcaoAirport": "BIHK", + "codeIso2Country": "IS", + "geonameId": "7730430", + "latitudeAirport": 65.7, + "longitudeAirport": -22.466667, + "nameAirport": "Holmavik", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-5", + "airportId": 3129, + "codeIataAirport": "HVN", + "codeIataCity": "HVN", + "codeIcaoAirport": "KHVN", + "codeIso2Country": "US", + "geonameId": "4844546", + "latitudeAirport": 41.265278, + "longitudeAirport": -72.888336, + "nameAirport": "New Haven", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 3130, + "codeIataAirport": "HVR", + "codeIataCity": "HVR", + "codeIcaoAirport": "KHVR", + "codeIso2Country": "US", + "geonameId": "5656501", + "latitudeAirport": 48.544445, + "longitudeAirport": -109.76111, + "nameAirport": "City County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 3131, + "codeIataAirport": "HVS", + "codeIataCity": "HVS", + "codeIcaoAirport": "KHVS", + "codeIso2Country": "US", + "geonameId": "4581253", + "latitudeAirport": 34.38333, + "longitudeAirport": -80.066666, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 3132, + "codeIataAirport": "HVZ", + "codeIataCity": "HVZ", + "codeIcaoAirport": "", + "codeIso2Country": "HU", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "MA Bus Station", + "nameCountry": "Hungary", + "phone": "", + "timezone": "Europe/Budapest" + }, + { + "GMT": "10", + "airportId": 3133, + "codeIataAirport": "HWA", + "codeIataCity": "HWA", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298927", + "latitudeAirport": -7.433333, + "longitudeAirport": 145.96666, + "nameAirport": "Hawabango", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "airportId": 3134, + "codeIataAirport": "HWD", + "codeIataCity": "HWD", + "codeIcaoAirport": "KHWD", + "codeIso2Country": "US", + "geonameId": "5355936", + "latitudeAirport": 37.666668, + "longitudeAirport": -122.083336, + "nameAirport": "Air Terminal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-9", + "airportId": 3135, + "codeIataAirport": "HWI", + "codeIataCity": "HWI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5847014", + "latitudeAirport": 58.11778, + "longitudeAirport": -134.75417, + "nameAirport": "SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Juneau" + }, + { + "GMT": "9.30", + "airportId": 3136, + "codeIataAirport": "HWK", + "codeIataCity": "HWK", + "codeIcaoAirport": "YHAW", + "codeIso2Country": "AU", + "geonameId": "7731098", + "latitudeAirport": -31.716667, + "longitudeAirport": 138.41667, + "nameAirport": "Wilpena Pound", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "2", + "airportId": 3137, + "codeIataAirport": "HWN", + "codeIataCity": "HWN", + "codeIcaoAirport": "FVWN", + "codeIso2Country": "ZW", + "geonameId": "6297116", + "latitudeAirport": -19.3625, + "longitudeAirport": 26.518333, + "nameAirport": "Hwange Nat Park", + "nameCountry": "Zimbabwe", + "phone": "", + "timezone": "Africa/Harare" + }, + { + "GMT": "-5", + "airportId": 3138, + "codeIataAirport": "HWO", + "codeIataCity": "HWO", + "codeIcaoAirport": "KHWO", + "codeIso2Country": "US", + "geonameId": "4166262", + "latitudeAirport": 26.0, + "longitudeAirport": -80.15, + "nameAirport": "North Perry", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 3139, + "codeIataAirport": "HXX", + "codeIataCity": "HXX", + "codeIcaoAirport": "YHAY", + "codeIso2Country": "AU", + "geonameId": "7668719", + "latitudeAirport": -34.516666, + "longitudeAirport": 144.83333, + "nameAirport": "Hay", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-5", + "airportId": 3140, + "codeIataAirport": "HYA", + "codeIataCity": "HYA", + "codeIcaoAirport": "KHYA", + "codeIso2Country": "US", + "geonameId": "4940190", + "latitudeAirport": 41.665833, + "longitudeAirport": -70.280556, + "nameAirport": "Barnstable", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 3141, + "codeIataAirport": "HYC", + "codeIataCity": "HYC", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2646914", + "latitudeAirport": 51.61667, + "longitudeAirport": -0.75, + "nameAirport": "High Wycombe", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "5.30", + "airportId": 3142, + "codeIataAirport": "HYD", + "codeIataCity": "HYD", + "codeIcaoAirport": "VOHS", + "codeIso2Country": "IN", + "geonameId": "7729997", + "latitudeAirport": 17.24, + "longitudeAirport": 78.428055, + "nameAirport": "Hyderabad Airport", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "airportId": 3143, + "codeIataAirport": "HYF", + "codeIataCity": "HYF", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731099", + "latitudeAirport": -3.633333, + "longitudeAirport": 143.05, + "nameAirport": "Hayfields", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 3144, + "codeIataAirport": "HYG", + "codeIataCity": "HYG", + "codeIcaoAirport": "PAHY", + "codeIso2Country": "US", + "geonameId": "5553662", + "latitudeAirport": 55.20667, + "longitudeAirport": -132.82666, + "nameAirport": "SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "-9", + "airportId": 3145, + "codeIataAirport": "HYL", + "codeIataCity": "HYL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5847157", + "latitudeAirport": 55.48263, + "longitudeAirport": -132.65062, + "nameAirport": "SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "8", + "airportId": 3146, + "codeIataAirport": "HYN", + "codeIataCity": "HYN", + "codeIcaoAirport": "ZSLQ", + "codeIso2Country": "CN", + "geonameId": "6686900", + "latitudeAirport": 28.558096, + "longitudeAirport": 121.41675, + "nameAirport": "Huangyan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 3147, + "codeIataAirport": "HYR", + "codeIataCity": "HYR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5255892", + "latitudeAirport": 46.024445, + "longitudeAirport": -91.44444, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 3148, + "codeIataAirport": "HYS", + "codeIataCity": "HYS", + "codeIcaoAirport": "KHYS", + "codeIso2Country": "US", + "geonameId": "4272786", + "latitudeAirport": 38.84611, + "longitudeAirport": -99.27417, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 3149, + "codeIataAirport": "HYV", + "codeIataCity": "HYV", + "codeIcaoAirport": "EFHV", + "codeIso2Country": "FI", + "geonameId": "7730067", + "latitudeAirport": 60.654167, + "longitudeAirport": 24.884443, + "nameAirport": "Hyvinkaa", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "1", + "airportId": 3150, + "codeIataAirport": "HZB", + "codeIataCity": "HZB", + "codeIcaoAirport": "LFQT", + "codeIso2Country": "FR", + "geonameId": "6694655", + "latitudeAirport": 50.61667, + "longitudeAirport": 2.65, + "nameAirport": "Merville/Calonne", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "8", + "airportId": 3151, + "codeIataAirport": "HZG", + "codeIataCity": "HZG", + "codeIcaoAirport": "ZLHZ", + "codeIso2Country": "CN", + "geonameId": "7731100", + "latitudeAirport": 32.983334, + "longitudeAirport": 107.183334, + "nameAirport": "Hanzhong", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 3152, + "codeIataAirport": "HZH", + "codeIataCity": "HZH", + "codeIcaoAirport": "ZUNP", + "codeIso2Country": "CN", + "geonameId": "8260854", + "latitudeAirport": 26.320213, + "longitudeAirport": 109.15381, + "nameAirport": "Liping", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "0", + "airportId": 3153, + "codeIataAirport": "HZK", + "codeIataCity": "HZK", + "codeIcaoAirport": "BIHU", + "codeIso2Country": "IS", + "geonameId": "7668102", + "latitudeAirport": 65.95528, + "longitudeAirport": -17.427778, + "nameAirport": "Husavik", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-5", + "airportId": 3154, + "codeIataAirport": "HZL", + "codeIataCity": "HZL", + "codeIcaoAirport": "KHZL", + "codeIso2Country": "US", + "geonameId": "5193016", + "latitudeAirport": 40.98639, + "longitudeAirport": -75.99111, + "nameAirport": "Hazleton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 3155, + "codeIataAirport": "HZP", + "codeIataCity": "HZP", + "codeIcaoAirport": "CYNR", + "codeIso2Country": "CA", + "geonameId": "8260954", + "latitudeAirport": 57.381668, + "longitudeAirport": -111.70111, + "nameAirport": "Horizon", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "2", + "airportId": 3156, + "codeIataAirport": "HZV", + "codeIataCity": "HZV", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "997255", + "latitudeAirport": -25.066668, + "longitudeAirport": 31.130556, + "nameAirport": "Hazyview", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "7", + "airportId": 3157, + "codeIataAirport": "IAA", + "codeIataCity": "IAA", + "codeIcaoAirport": "UOII", + "codeIso2Country": "RU", + "geonameId": "7668528", + "latitudeAirport": 67.433334, + "longitudeAirport": 86.63333, + "nameAirport": "Igarka", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "-6", + "airportId": 3158, + "codeIataAirport": "IAB", + "codeIataCity": "ICT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 37.68114, + "longitudeAirport": -97.27617, + "nameAirport": "Mcconnell AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 3159, + "codeIataAirport": "IAD", + "codeIataCity": "WAS", + "codeIcaoAirport": "KIAD", + "codeIso2Country": "US", + "geonameId": "4792325", + "latitudeAirport": 38.95315, + "longitudeAirport": -77.44774, + "nameAirport": "Washington Dulles International", + "nameCountry": "United States", + "phone": "703-572-2700", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 3160, + "codeIataAirport": "IAG", + "codeIataCity": "IAG", + "codeIcaoAirport": "KIAG", + "codeIso2Country": "US", + "geonameId": "5128725", + "latitudeAirport": 43.1, + "longitudeAirport": -78.95, + "nameAirport": "Niagara Falls International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 3161, + "codeIataAirport": "IAH", + "codeIataCity": "HOU", + "codeIcaoAirport": "KIAH", + "codeIso2Country": "US", + "geonameId": "4693268", + "latitudeAirport": 29.983334, + "longitudeAirport": -95.34, + "nameAirport": "George Bush Intercontinental", + "nameCountry": "United States", + "phone": "281-230-3100", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 3162, + "codeIataAirport": "IAM", + "codeIataCity": "IAM", + "codeIcaoAirport": "DAUZ", + "codeIso2Country": "DZ", + "geonameId": "6296397", + "latitudeAirport": 28.051111, + "longitudeAirport": 9.638056, + "nameAirport": "In Amenas", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-9", + "airportId": 3163, + "codeIataAirport": "IAN", + "codeIataCity": "IAN", + "codeIcaoAirport": "PAIK", + "codeIso2Country": "US", + "geonameId": "5866155", + "latitudeAirport": 66.975555, + "longitudeAirport": -160.43056, + "nameAirport": "Bob Barker Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 3164, + "codeIataAirport": "IAO", + "codeIataCity": "IAO", + "codeIcaoAirport": "RPNS", + "codeIso2Country": "PH", + "geonameId": "8298656", + "latitudeAirport": 9.858889, + "longitudeAirport": 126.013885, + "nameAirport": "Sayak Airport", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "3.30", + "airportId": 3165, + "codeIataAirport": "IAQ", + "codeIataCity": "IAQ", + "codeIcaoAirport": "", + "codeIso2Country": "IR", + "geonameId": "8299009", + "latitudeAirport": 28.933332, + "longitudeAirport": 50.833332, + "nameAirport": "Bahregan", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "3", + "airportId": 3166, + "codeIataAirport": "IAR", + "codeIataCity": "IAR", + "codeIcaoAirport": "UUDL", + "codeIso2Country": "RU", + "geonameId": "7731101", + "latitudeAirport": 57.61667, + "longitudeAirport": 39.88333, + "nameAirport": "Yaroslavl", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "2", + "airportId": 3167, + "codeIataAirport": "IAS", + "codeIataCity": "IAS", + "codeIcaoAirport": "LRIA", + "codeIso2Country": "RO", + "geonameId": "6299706", + "latitudeAirport": 47.176987, + "longitudeAirport": 27.616993, + "nameAirport": "Iasi", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "10", + "airportId": 3168, + "codeIataAirport": "IAU", + "codeIataCity": "IAU", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260987", + "latitudeAirport": -9.783333, + "longitudeAirport": 148.1, + "nameAirport": "Iaura", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 3169, + "codeIataAirport": "IBA", + "codeIataCity": "IBA", + "codeIcaoAirport": "DNIB", + "codeIso2Country": "NG", + "geonameId": "2339354", + "latitudeAirport": 7.431944, + "longitudeAirport": 3.911111, + "nameAirport": "Ibadan", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-6", + "airportId": 3170, + "codeIataAirport": "IBB", + "codeIataCity": "IBB", + "codeIcaoAirport": "", + "codeIso2Country": "EC", + "geonameId": "8298659", + "latitudeAirport": -0.94278, + "longitudeAirport": -90.9531, + "nameAirport": "General Villamil", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "Pacific/Galapagos" + }, + { + "GMT": "-5", + "airportId": 3171, + "codeIataAirport": "IBE", + "codeIataCity": "IBE", + "codeIcaoAirport": "SKIB", + "codeIso2Country": "CO", + "geonameId": "6300743", + "latitudeAirport": 4.423948, + "longitudeAirport": -75.13858, + "nameAirport": "Ibague", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "airportId": 3172, + "codeIataAirport": "IBI", + "codeIataCity": "IBI", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298964", + "latitudeAirport": -5.553333, + "longitudeAirport": 149.19028, + "nameAirport": "Iboki", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "airportId": 3173, + "codeIataAirport": "IBL", + "codeIataCity": "IBL", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "7730320", + "latitudeAirport": -21.708, + "longitudeAirport": 35.4528, + "nameAirport": "Indigo Bay Lodge", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "2", + "airportId": 3174, + "codeIataAirport": "IBO", + "codeIataCity": "IBO", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "0", + "latitudeAirport": -12.333333, + "longitudeAirport": 40.583332, + "nameAirport": "Ibo", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-5", + "airportId": 3175, + "codeIataAirport": "IBP", + "codeIataCity": "IBP", + "codeIcaoAirport": "SPBR", + "codeIso2Country": "PE", + "geonameId": "7730175", + "latitudeAirport": -11.366667, + "longitudeAirport": -69.583336, + "nameAirport": "Iberia", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "9", + "airportId": 3176, + "codeIataAirport": "IBR", + "codeIataCity": "IBR", + "codeIcaoAirport": "RJAH", + "codeIso2Country": "JP", + "geonameId": "6300309", + "latitudeAirport": 36.181667, + "longitudeAirport": 140.41472, + "nameAirport": "Ibaraki", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "airportId": 3177, + "codeIataAirport": "IBT", + "codeIataCity": "BLQ", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 44.4941903, + "longitudeAirport": 11.3465185, + "nameAirport": "Bologna Central Railway Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "airportId": 3178, + "codeIataAirport": "IBZ", + "codeIataCity": "IBZ", + "codeIcaoAirport": "LEIB", + "codeIso2Country": "ES", + "geonameId": "6299339", + "latitudeAirport": 38.876595, + "longitudeAirport": 1.367803, + "nameAirport": "Ibiza", + "nameCountry": "Spain", + "phone": "902 404 704", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-4", + "airportId": 3179, + "codeIataAirport": "ICA", + "codeIataCity": "ICA", + "codeIcaoAirport": "SVIC", + "codeIso2Country": "VE", + "geonameId": "7731102", + "latitudeAirport": 4.333333, + "longitudeAirport": -61.733334, + "nameAirport": "Icabaru", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "12", + "airportId": 3180, + "codeIataAirport": "ICI", + "codeIataCity": "ICI", + "codeIcaoAirport": "NFCI", + "codeIso2Country": "FJ", + "geonameId": "7668365", + "latitudeAirport": -17.75, + "longitudeAirport": -179.33333, + "nameAirport": "Cicia", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-3", + "airportId": 3181, + "codeIataAirport": "ICK", + "codeIataCity": "ICK", + "codeIcaoAirport": "", + "codeIso2Country": "SR", + "geonameId": "3383427", + "latitudeAirport": 5.933333, + "longitudeAirport": -56.983334, + "nameAirport": "Nieuw Nickerie", + "nameCountry": "Suriname", + "phone": "", + "timezone": "America/Paramaribo" + }, + { + "GMT": "-6", + "airportId": 3182, + "codeIataAirport": "ICL", + "codeIataCity": "ICL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.733334, + "longitudeAirport": -95.03333, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "airportId": 3183, + "codeIataAirport": "ICN", + "codeIataCity": "SEL", + "codeIcaoAirport": "RKSI", + "codeIso2Country": "KR", + "geonameId": "6300433", + "latitudeAirport": 37.448524, + "longitudeAirport": 126.45123, + "nameAirport": "Seoul (Incheon)", + "nameCountry": "South Korea", + "phone": "82-1577-2600", + "timezone": "Asia/Seoul" + }, + { + "GMT": "8", + "airportId": 3184, + "codeIataAirport": "ICO", + "codeIataCity": "ICO", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "8298686", + "latitudeAirport": 11.433333, + "longitudeAirport": 123.26667, + "nameAirport": "Sicogon Island", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-5", + "airportId": 3185, + "codeIataAirport": "ICR", + "codeIataCity": "ICR", + "codeIcaoAirport": "", + "codeIso2Country": "CU", + "geonameId": "0", + "latitudeAirport": 20.983334, + "longitudeAirport": -75.975, + "nameAirport": "Nicaro", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "-7", + "airportId": 3186, + "codeIataAirport": "ICS", + "codeIataCity": "ICS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5588162", + "latitudeAirport": 44.49378, + "longitudeAirport": -116.01624, + "nameAirport": "Cascade", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Boise" + }, + { + "GMT": "-6", + "airportId": 3187, + "codeIataAirport": "ICT", + "codeIataCity": "ICT", + "codeIcaoAirport": "KICT", + "codeIso2Country": "US", + "geonameId": "4281737", + "latitudeAirport": 37.653046, + "longitudeAirport": -97.428955, + "nameAirport": "Mid-Continent", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 3188, + "codeIataAirport": "ICY", + "codeIataCity": "ICY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5864472", + "latitudeAirport": 60.0, + "longitudeAirport": -141.25, + "nameAirport": "Icy Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "airportId": 3189, + "codeIataAirport": "IDA", + "codeIataCity": "IDA", + "codeIcaoAirport": "KIDA", + "codeIso2Country": "US", + "geonameId": "5596475", + "latitudeAirport": 43.514854, + "longitudeAirport": -112.06751, + "nameAirport": "Fanning Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Boise" + }, + { + "GMT": "1", + "airportId": 3190, + "codeIataAirport": "IDB", + "codeIataCity": "IDB", + "codeIcaoAirport": "ESUE", + "codeIso2Country": "SE", + "geonameId": "7730485", + "latitudeAirport": 61.86667, + "longitudeAirport": 12.683333, + "nameAirport": "Idre", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "2", + "airportId": 3191, + "codeIataAirport": "IDC", + "codeIataCity": "IDC", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "8299054", + "latitudeAirport": -22.1806, + "longitudeAirport": 35.5222, + "nameAirport": "Ila Da Chilonzuene", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "1", + "airportId": 3192, + "codeIataAirport": "IDF", + "codeIataCity": "IDF", + "codeIcaoAirport": "FZCB", + "codeIso2Country": "CD", + "geonameId": "7730556", + "latitudeAirport": -5.033333, + "longitudeAirport": 19.6, + "nameAirport": "Idiofa", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "-6", + "airportId": 3193, + "codeIataAirport": "IDG", + "codeIataCity": "IDG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4861464", + "latitudeAirport": 42.35, + "longitudeAirport": -95.46667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 3194, + "codeIataAirport": "IDH", + "codeIataCity": "IDH", + "codeIcaoAirport": "KGIC", + "codeIso2Country": "US", + "geonameId": "5596468", + "latitudeAirport": 45.94256, + "longitudeAirport": -116.12342, + "nameAirport": "Idaho County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 3195, + "codeIataAirport": "IDI", + "codeIataCity": "IDI", + "codeIcaoAirport": "KIDI", + "codeIso2Country": "US", + "geonameId": "5194873", + "latitudeAirport": 40.61667, + "longitudeAirport": -79.15, + "nameAirport": "ndiana County Airport (Jimmy Stewart Field)", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9.30", + "airportId": 3196, + "codeIataAirport": "IDK", + "codeIataCity": "IDK", + "codeIcaoAirport": "YIDK", + "codeIso2Country": "AU", + "geonameId": "7731103", + "latitudeAirport": -26.966667, + "longitudeAirport": 133.325, + "nameAirport": "Indulkana", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "10", + "airportId": 3197, + "codeIataAirport": "IDN", + "codeIataCity": "IDN", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2095613", + "latitudeAirport": -6.2, + "longitudeAirport": 147.25, + "nameAirport": "Indagen", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "airportId": 3198, + "codeIataAirport": "IDO", + "codeIataCity": "IDO", + "codeIcaoAirport": "SWIY", + "codeIso2Country": "BR", + "geonameId": "7731104", + "latitudeAirport": -11.566667, + "longitudeAirport": -50.666668, + "nameAirport": "Rio", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Araguaina" + }, + { + "GMT": "-6", + "airportId": 3199, + "codeIataAirport": "IDP", + "codeIataCity": "IDP", + "codeIcaoAirport": "KIDP", + "codeIso2Country": "US", + "geonameId": "4273368", + "latitudeAirport": 37.233334, + "longitudeAirport": -95.7, + "nameAirport": "Independence", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5.30", + "airportId": 3200, + "codeIataAirport": "IDR", + "codeIataCity": "IDR", + "codeIcaoAirport": "VAID", + "codeIso2Country": "IN", + "geonameId": "6301038", + "latitudeAirport": 22.728651, + "longitudeAirport": 75.80944, + "nameAirport": "Devi Ahilyabai Holkar", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "airportId": 3201, + "codeIataAirport": "IDY", + "codeIataCity": "IDY", + "codeIcaoAirport": "LFEY", + "codeIso2Country": "FR", + "geonameId": "6694584", + "latitudeAirport": 46.71787, + "longitudeAirport": -2.388694, + "nameAirport": "Ile d'Yeu", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 3202, + "codeIataAirport": "IEG", + "codeIataCity": "IEG", + "codeIcaoAirport": "EPZG", + "codeIso2Country": "PL", + "geonameId": "3080176", + "latitudeAirport": 51.933334, + "longitudeAirport": 15.516667, + "nameAirport": "Babimost", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "9", + "airportId": 3203, + "codeIataAirport": "IEJ", + "codeIataCity": "IEJ", + "codeIcaoAirport": "RORE", + "codeIso2Country": "JP", + "geonameId": "6300459", + "latitudeAirport": 26.733334, + "longitudeAirport": 127.8, + "nameAirport": "Iejima", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "airportId": 3204, + "codeIataAirport": "IES", + "codeIataCity": "IES", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2846939", + "latitudeAirport": 51.3, + "longitudeAirport": 13.283333, + "nameAirport": "Riesa", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "2", + "airportId": 3205, + "codeIataAirport": "IEV", + "codeIataCity": "IEV", + "codeIcaoAirport": "UKKK", + "codeIso2Country": "UA", + "geonameId": "6300960", + "latitudeAirport": 50.401943, + "longitudeAirport": 30.450832, + "nameAirport": "Zhulyany", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-6", + "airportId": 3206, + "codeIataAirport": "IFA", + "codeIataCity": "IFA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4862069", + "latitudeAirport": 42.516666, + "longitudeAirport": -93.26667, + "nameAirport": "Iowa Falls", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 3207, + "codeIataAirport": "IFF", + "codeIataCity": "IFF", + "codeIcaoAirport": "YIFY", + "codeIso2Country": "AU", + "geonameId": "7731105", + "latitudeAirport": -18.9, + "longitudeAirport": 141.21666, + "nameAirport": "Iffley", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3.30", + "airportId": 3208, + "codeIataAirport": "IFH", + "codeIataCity": "IFH", + "codeIcaoAirport": "OIFE", + "codeIso2Country": "IR", + "geonameId": "7730743", + "latitudeAirport": 32.916668, + "longitudeAirport": 51.55, + "nameAirport": "Hesa", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "0", + "airportId": 3209, + "codeIataAirport": "IFJ", + "codeIataCity": "IFJ", + "codeIcaoAirport": "BIIS", + "codeIso2Country": "IS", + "geonameId": "7668103", + "latitudeAirport": 66.05972, + "longitudeAirport": -23.132778, + "nameAirport": "Isafjordur", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "10", + "airportId": 3210, + "codeIataAirport": "IFL", + "codeIataCity": "IFL", + "codeIcaoAirport": "YIFL", + "codeIso2Country": "AU", + "geonameId": "7731106", + "latitudeAirport": -17.55, + "longitudeAirport": 146.01666, + "nameAirport": "Innisfail", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3.30", + "airportId": 3211, + "codeIataAirport": "IFN", + "codeIataCity": "IFN", + "codeIcaoAirport": "OIFM", + "codeIso2Country": "IR", + "geonameId": "6300052", + "latitudeAirport": 32.745686, + "longitudeAirport": 51.87638, + "nameAirport": "Isfahan International", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "2", + "airportId": 3212, + "codeIataAirport": "IFO", + "codeIataCity": "IFO", + "codeIcaoAirport": "UKLI", + "codeIso2Country": "UA", + "geonameId": "6300962", + "latitudeAirport": 48.887535, + "longitudeAirport": 24.707565, + "nameAirport": "Ivano-Frankovsk", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-7", + "airportId": 3213, + "codeIataAirport": "IFP", + "codeIataCity": "IFP", + "codeIcaoAirport": "KIFP", + "codeIso2Country": "US", + "geonameId": "5301601", + "latitudeAirport": 35.165634, + "longitudeAirport": -114.55695, + "nameAirport": "Laughlin Bullhead International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "-5", + "airportId": 3214, + "codeIataAirport": "IGA", + "codeIataCity": "IGA", + "codeIcaoAirport": "MYIG", + "codeIso2Country": "BS", + "geonameId": "3572153", + "latitudeAirport": 20.983334, + "longitudeAirport": -73.666664, + "nameAirport": "Inagua", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-3", + "airportId": 3215, + "codeIataAirport": "IGB", + "codeIataCity": "IGB", + "codeIcaoAirport": "SAVJ", + "codeIso2Country": "AR", + "geonameId": "7730771", + "latitudeAirport": -41.3, + "longitudeAirport": -69.583336, + "nameAirport": "Ingeniero Jacobacci", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "3", + "airportId": 3216, + "codeIataAirport": "IGD", + "codeIataCity": "IGD", + "codeIcaoAirport": "", + "codeIso2Country": "TR", + "geonameId": "0", + "latitudeAirport": 39.974445, + "longitudeAirport": 43.879723, + "nameAirport": "Igdir", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "1", + "airportId": 3217, + "codeIataAirport": "IGE", + "codeIataCity": "IGE", + "codeIcaoAirport": "", + "codeIso2Country": "GA", + "geonameId": "8298971", + "latitudeAirport": -1.916667, + "longitudeAirport": 9.316667, + "nameAirport": "Iguela", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-9", + "airportId": 3218, + "codeIataAirport": "IGG", + "codeIataCity": "IGG", + "codeIcaoAirport": "PAIG", + "codeIso2Country": "US", + "geonameId": "5864529", + "latitudeAirport": 59.316666, + "longitudeAirport": -155.9, + "nameAirport": "Igiugig", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 3219, + "codeIataAirport": "IGH", + "codeIataCity": "IGH", + "codeIcaoAirport": "YIGM", + "codeIso2Country": "AU", + "geonameId": "7731107", + "latitudeAirport": -18.716667, + "longitudeAirport": 146.16667, + "nameAirport": "Ingham", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "airportId": 3220, + "codeIataAirport": "IGL", + "codeIataCity": "IZM", + "codeIcaoAirport": "LTBL", + "codeIso2Country": "TR", + "geonameId": "6299751", + "latitudeAirport": 38.31889, + "longitudeAirport": 27.159445, + "nameAirport": "Cigli AB", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-7", + "airportId": 3221, + "codeIataAirport": "IGM", + "codeIataCity": "IGM", + "codeIcaoAirport": "KIGM", + "codeIso2Country": "US", + "geonameId": "5301069", + "latitudeAirport": 35.256668, + "longitudeAirport": -113.94, + "nameAirport": "Kingman", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "8", + "airportId": 3222, + "codeIataAirport": "IGN", + "codeIataCity": "IGN", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "1711084", + "latitudeAirport": 8.131111, + "longitudeAirport": 124.214165, + "nameAirport": "Maria Cristina", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-5", + "airportId": 3223, + "codeIataAirport": "IGO", + "codeIataCity": "IGO", + "codeIcaoAirport": "SKIG", + "codeIso2Country": "CO", + "geonameId": "7731108", + "latitudeAirport": 7.681667, + "longitudeAirport": -76.68667, + "nameAirport": "Chigorodo", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "airportId": 3224, + "codeIataAirport": "IGR", + "codeIataCity": "IGR", + "codeIcaoAirport": "SARI", + "codeIso2Country": "AR", + "geonameId": "6300549", + "latitudeAirport": -25.731504, + "longitudeAirport": -54.47635, + "nameAirport": "Cataratas", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "1", + "airportId": 3225, + "codeIataAirport": "IGS", + "codeIataCity": "IGS", + "codeIcaoAirport": "INGS", + "codeIso2Country": "DE", + "geonameId": "3208391", + "latitudeAirport": 48.72325, + "longitudeAirport": 11.54024, + "nameAirport": "Ingolstadt-manching", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "3", + "airportId": 3226, + "codeIataAirport": "IGT", + "codeIataCity": "IGT", + "codeIcaoAirport": "URMS", + "codeIso2Country": "RU", + "geonameId": "8181781", + "latitudeAirport": 43.31778, + "longitudeAirport": 45.001667, + "nameAirport": "Sleptsovskaya", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-3", + "airportId": 3227, + "codeIataAirport": "IGU", + "codeIataCity": "IGU", + "codeIcaoAirport": "SBFI", + "codeIso2Country": "BR", + "geonameId": "6300623", + "latitudeAirport": -25.597937, + "longitudeAirport": -54.488823, + "nameAirport": "Cataratas", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "9", + "airportId": 3228, + "codeIataAirport": "IHA", + "codeIataCity": "IHA", + "codeIcaoAirport": "", + "codeIso2Country": "JP", + "geonameId": "8298706", + "latitudeAirport": 33.916668, + "longitudeAirport": 133.26666, + "nameAirport": "Niihama", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "2", + "airportId": 3229, + "codeIataAirport": "IHC", + "codeIataCity": "IHC", + "codeIcaoAirport": "FQIA", + "codeIso2Country": "MZ", + "geonameId": "1045194", + "latitudeAirport": -26.0, + "longitudeAirport": 32.933334, + "nameAirport": "Inhaca", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "3", + "airportId": 3230, + "codeIataAirport": "IHN", + "codeIataCity": "IHN", + "codeIcaoAirport": "OYQN", + "codeIso2Country": "YE", + "geonameId": "7730759", + "latitudeAirport": 15.05, + "longitudeAirport": 50.05, + "nameAirport": "Qishn", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "3", + "airportId": 3231, + "codeIataAirport": "IHO", + "codeIataCity": "IHO", + "codeIcaoAirport": "FMSI", + "codeIso2Country": "MG", + "geonameId": "7730514", + "latitudeAirport": -22.416668, + "longitudeAirport": 46.11667, + "nameAirport": "Ihosy", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "3.30", + "airportId": 3232, + "codeIataAirport": "IHR", + "codeIataCity": "IHR", + "codeIcaoAirport": "OIZI", + "codeIso2Country": "IR", + "geonameId": "7028293", + "latitudeAirport": 27.228365, + "longitudeAirport": 60.71806, + "nameAirport": "Iran Shahr", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "10", + "airportId": 3233, + "codeIataAirport": "IHU", + "codeIataCity": "IHU", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731109", + "latitudeAirport": -7.9, + "longitudeAirport": 145.38333, + "nameAirport": "Ihu", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 3234, + "codeIataAirport": "IIA", + "codeIataCity": "IIA", + "codeIcaoAirport": "", + "codeIso2Country": "IE", + "geonameId": "0", + "latitudeAirport": 53.083332, + "longitudeAirport": -9.533333, + "nameAirport": "Inishmaan", + "nameCountry": "Ireland", + "phone": "", + "timezone": "Europe/Dublin" + }, + { + "GMT": "3.30", + "airportId": 3235, + "codeIataAirport": "IIL", + "codeIataCity": "IIL", + "codeIcaoAirport": "OICI", + "codeIso2Country": "IR", + "geonameId": "6300048", + "latitudeAirport": 33.58637, + "longitudeAirport": 46.399235, + "nameAirport": "Ilaam", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "9", + "airportId": 3236, + "codeIataAirport": "IIN", + "codeIataCity": "IIN", + "codeIcaoAirport": "", + "codeIso2Country": "JP", + "geonameId": "1855203", + "latitudeAirport": 30.716667, + "longitudeAirport": 130.98334, + "nameAirport": "Nishinoomote", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "10", + "airportId": 3237, + "codeIataAirport": "IIS", + "codeIataCity": "IIS", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731110", + "latitudeAirport": -4.333333, + "longitudeAirport": 154.34166, + "nameAirport": "Nissan Island", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "4", + "airportId": 3238, + "codeIataAirport": "IJK", + "codeIataCity": "IJK", + "codeIcaoAirport": "USII", + "codeIso2Country": "RU", + "geonameId": "7668532", + "latitudeAirport": 56.833332, + "longitudeAirport": 53.466667, + "nameAirport": "Izhevsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Samara" + }, + { + "GMT": "-3", + "airportId": 3239, + "codeIataAirport": "IJU", + "codeIataCity": "IJU", + "codeIcaoAirport": "SSIJ", + "codeIso2Country": "BR", + "geonameId": "7731111", + "latitudeAirport": -28.416668, + "longitudeAirport": -53.916668, + "nameAirport": "J. Batista Bos Filho Airport", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "airportId": 3240, + "codeIataAirport": "IJX", + "codeIataCity": "IJX", + "codeIcaoAirport": "KIJX", + "codeIso2Country": "US", + "geonameId": "4241714", + "latitudeAirport": 39.774166, + "longitudeAirport": -90.23722, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3.30", + "airportId": 3241, + "codeIataAirport": "IKA", + "codeIataCity": "THR", + "codeIcaoAirport": "", + "codeIso2Country": "IR", + "geonameId": "6698157", + "latitudeAirport": 35.40863, + "longitudeAirport": 51.1548, + "nameAirport": "Imam Khomeini Airport", + "nameCountry": "Iran", + "phone": "(021) 6693 09", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-5", + "airportId": 3242, + "codeIataAirport": "IKB", + "codeIataCity": "IKB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4499128", + "latitudeAirport": 36.15, + "longitudeAirport": -81.15, + "nameAirport": "Wilkes County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "airportId": 3243, + "codeIataAirport": "IKI", + "codeIataCity": "IKI", + "codeIcaoAirport": "RJDB", + "codeIso2Country": "JP", + "geonameId": "6300333", + "latitudeAirport": 33.745556, + "longitudeAirport": 129.78833, + "nameAirport": "Iki", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-6", + "airportId": 3244, + "codeIataAirport": "IKK", + "codeIataCity": "IKK", + "codeIcaoAirport": "KIKK", + "codeIso2Country": "US", + "geonameId": "4898182", + "latitudeAirport": 41.38333, + "longitudeAirport": -88.25, + "nameAirport": "Greater Kankakee", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 3245, + "codeIataAirport": "IKL", + "codeIataCity": "IKL", + "codeIcaoAirport": "FZGV", + "codeIso2Country": "CD", + "geonameId": "7730562", + "latitudeAirport": -1.666667, + "longitudeAirport": 23.666668, + "nameAirport": "Ikela", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "-9", + "airportId": 3246, + "codeIataAirport": "IKO", + "codeIataCity": "IKO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5869979", + "latitudeAirport": 52.941666, + "longitudeAirport": -168.85, + "nameAirport": "Nikolski AFS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 3247, + "codeIataAirport": "IKP", + "codeIataCity": "IKP", + "codeIcaoAirport": "YIKM", + "codeIso2Country": "AU", + "geonameId": "7731112", + "latitudeAirport": -16.25, + "longitudeAirport": 141.5, + "nameAirport": "Inkerman", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "9", + "airportId": 3248, + "codeIataAirport": "IKS", + "codeIataCity": "IKS", + "codeIcaoAirport": "UEST", + "codeIso2Country": "RU", + "geonameId": "6300929", + "latitudeAirport": 71.7, + "longitudeAirport": 128.9, + "nameAirport": "Tiksi", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "8", + "airportId": 3249, + "codeIataAirport": "IKT", + "codeIataCity": "IKT", + "codeIcaoAirport": "UIII", + "codeIso2Country": "RU", + "geonameId": "6300945", + "latitudeAirport": 52.273308, + "longitudeAirport": 104.35607, + "nameAirport": "Irkutsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Irkutsk" + }, + { + "GMT": "9", + "airportId": 3250, + "codeIataAirport": "ILA", + "codeIataCity": "ILA", + "codeIcaoAirport": "WABL", + "codeIso2Country": "ID", + "geonameId": "7731113", + "latitudeAirport": -3.65, + "longitudeAirport": 133.73334, + "nameAirport": "Illaga", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-4", + "airportId": 3251, + "codeIataAirport": "ILB", + "codeIataCity": "ILB", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8298817", + "latitudeAirport": -20.333332, + "longitudeAirport": -51.333332, + "nameAirport": "Ilha Solteira", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Campo_Grande" + }, + { + "GMT": "1", + "airportId": 3252, + "codeIataAirport": "ILD", + "codeIataCity": "ILD", + "codeIcaoAirport": "LEDA", + "codeIso2Country": "ES", + "geonameId": "3118514", + "latitudeAirport": 41.728836, + "longitudeAirport": 0.543302, + "nameAirport": "Alguaire", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-6", + "airportId": 3253, + "codeIataAirport": "ILE", + "codeIataCity": "ILE", + "codeIcaoAirport": "KILE", + "codeIso2Country": "US", + "geonameId": "6298447", + "latitudeAirport": 31.08639, + "longitudeAirport": -97.68667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 3254, + "codeIataAirport": "ILF", + "codeIataCity": "ILF", + "codeIcaoAirport": "CZBD", + "codeIso2Country": "CA", + "geonameId": "8298646", + "latitudeAirport": 56.066666, + "longitudeAirport": -95.61667, + "nameAirport": "Ilford", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 3255, + "codeIataAirport": "ILG", + "codeIataCity": "ILG", + "codeIcaoAirport": "KILG", + "codeIso2Country": "US", + "geonameId": "4145381", + "latitudeAirport": 39.678333, + "longitudeAirport": -75.6075, + "nameAirport": "Greater Wilmington", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 3256, + "codeIataAirport": "ILH", + "codeIataCity": "ILH", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2896543", + "latitudeAirport": 49.47, + "longitudeAirport": 10.39, + "nameAirport": "Illis Airbase", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-9", + "airportId": 3257, + "codeIataAirport": "ILI", + "codeIataCity": "ILI", + "codeIcaoAirport": "PAIL", + "codeIso2Country": "US", + "geonameId": "5864637", + "latitudeAirport": 59.752777, + "longitudeAirport": -154.90834, + "nameAirport": "Iliamna", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "airportId": 3258, + "codeIataAirport": "ILK", + "codeIataCity": "ILK", + "codeIcaoAirport": "FMMQ", + "codeIso2Country": "MG", + "geonameId": "7730509", + "latitudeAirport": -20.333332, + "longitudeAirport": 47.166668, + "nameAirport": "Ilaka", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-6", + "airportId": 3259, + "codeIataAirport": "ILL", + "codeIataCity": "ILL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5052916", + "latitudeAirport": 45.115276, + "longitudeAirport": -95.08528, + "nameAirport": "Willmar", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 3260, + "codeIataAirport": "ILM", + "codeIataCity": "ILM", + "codeIcaoAirport": "KILM", + "codeIso2Country": "US", + "geonameId": "6301617", + "latitudeAirport": 34.26705, + "longitudeAirport": -77.91063, + "nameAirport": "Wilmington International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 3261, + "codeIataAirport": "ILN", + "codeIataCity": "ILN", + "codeIcaoAirport": "KILN", + "codeIso2Country": "US", + "geonameId": "4528463", + "latitudeAirport": 39.493057, + "longitudeAirport": -83.74083, + "nameAirport": "Clinton Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 3262, + "codeIataAirport": "ILO", + "codeIataCity": "ILO", + "codeIcaoAirport": "RPVI", + "codeIso2Country": "PH", + "geonameId": "6300496", + "latitudeAirport": 10.714312, + "longitudeAirport": 122.543884, + "nameAirport": "Iloilo International", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "11", + "airportId": 3263, + "codeIataAirport": "ILP", + "codeIataCity": "ILP", + "codeIcaoAirport": "NWEE", + "codeIso2Country": "NC", + "geonameId": "6299973", + "latitudeAirport": -22.589722, + "longitudeAirport": 167.4475, + "nameAirport": "Ile Des Pins", + "nameCountry": "New Caledonia", + "phone": "", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "-5", + "airportId": 3264, + "codeIataAirport": "ILQ", + "codeIataCity": "ILQ", + "codeIcaoAirport": "", + "codeIso2Country": "PE", + "geonameId": "3938415", + "latitudeAirport": -17.666668, + "longitudeAirport": -71.333336, + "nameAirport": "Ilo", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "1", + "airportId": 3265, + "codeIataAirport": "ILR", + "codeIataCity": "ILR", + "codeIcaoAirport": "DNIL", + "codeIso2Country": "NG", + "geonameId": "6296447", + "latitudeAirport": 8.5, + "longitudeAirport": 4.533333, + "nameAirport": "Ilorin", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "3", + "airportId": 3266, + "codeIataAirport": "ILU", + "codeIataCity": "ILU", + "codeIcaoAirport": "HKKL", + "codeIso2Country": "KE", + "geonameId": "7730614", + "latitudeAirport": -2.9, + "longitudeAirport": 38.05, + "nameAirport": "Kilaguni", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "0", + "airportId": 3267, + "codeIataAirport": "ILY", + "codeIataCity": "ILY", + "codeIcaoAirport": "EGPI", + "codeIso2Country": "GB", + "geonameId": "6296628", + "latitudeAirport": 55.681946, + "longitudeAirport": -6.254167, + "nameAirport": "Glenegedale", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 3268, + "codeIataAirport": "ILZ", + "codeIataCity": "ILZ", + "codeIcaoAirport": "LZZI", + "codeIso2Country": "SK", + "geonameId": "6299790", + "latitudeAirport": 49.233334, + "longitudeAirport": 18.766666, + "nameAirport": "Zilina", + "nameCountry": "Slovakia", + "phone": "", + "timezone": "Europe/Bratislava" + }, + { + "GMT": "10", + "airportId": 3269, + "codeIataAirport": "IMA", + "codeIataCity": "IMA", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8261036", + "latitudeAirport": -9.466667, + "longitudeAirport": 150.5, + "nameAirport": "Iamalele", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "airportId": 3270, + "codeIataAirport": "IMB", + "codeIataCity": "IMB", + "codeIcaoAirport": "SYIB", + "codeIso2Country": "GY", + "geonameId": "7731114", + "latitudeAirport": 5.716667, + "longitudeAirport": -60.283333, + "nameAirport": "Imbaimadai", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "10", + "airportId": 3271, + "codeIataAirport": "IMD", + "codeIataCity": "IMD", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2095651", + "latitudeAirport": -3.433333, + "longitudeAirport": 141.2, + "nameAirport": "Imonda", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5.30", + "airportId": 3272, + "codeIataAirport": "IMF", + "codeIataCity": "IMF", + "codeIcaoAirport": "VEIM", + "codeIso2Country": "IN", + "geonameId": "6301073", + "latitudeAirport": 24.76457, + "longitudeAirport": 93.897064, + "nameAirport": "Municipal", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "2", + "airportId": 3273, + "codeIataAirport": "IMG", + "codeIataCity": "IMG", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "0", + "latitudeAirport": -18.433332, + "longitudeAirport": 35.0, + "nameAirport": "Inhaminga", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "12", + "airportId": 3274, + "codeIataAirport": "IMI", + "codeIataCity": "IMI", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "8298939", + "latitudeAirport": 6.983333, + "longitudeAirport": 171.61667, + "nameAirport": "Ine Island", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "5.45", + "airportId": 3275, + "codeIataAirport": "IMK", + "codeIataCity": "IMK", + "codeIcaoAirport": "VNST", + "codeIso2Country": "NP", + "geonameId": "7668631", + "latitudeAirport": 29.966667, + "longitudeAirport": 81.816666, + "nameAirport": "Simikot", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-7", + "airportId": 3276, + "codeIataAirport": "IML", + "codeIataCity": "IML", + "codeIcaoAirport": "KIML", + "codeIso2Country": "US", + "geonameId": "5696366", + "latitudeAirport": 40.516666, + "longitudeAirport": -101.65, + "nameAirport": "Imperial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 3277, + "codeIataAirport": "IMM", + "codeIataCity": "IMM", + "codeIcaoAirport": "KIMM", + "codeIso2Country": "US", + "geonameId": "4159554", + "latitudeAirport": 26.416668, + "longitudeAirport": -81.416664, + "nameAirport": "Immokalee", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 3278, + "codeIataAirport": "IMN", + "codeIataCity": "IMN", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299112", + "latitudeAirport": -6.7, + "longitudeAirport": 146.08333, + "nameAirport": "Imane", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 3279, + "codeIataAirport": "IMO", + "codeIataCity": "IMO", + "codeIcaoAirport": "FEFZ", + "codeIso2Country": "CF", + "geonameId": "7668234", + "latitudeAirport": 5.033333, + "longitudeAirport": 25.083332, + "nameAirport": "Zemio", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "-3", + "airportId": 3280, + "codeIataAirport": "IMP", + "codeIataCity": "IMP", + "codeIcaoAirport": "SBIZ", + "codeIso2Country": "BR", + "geonameId": "6300634", + "latitudeAirport": -5.531944, + "longitudeAirport": -47.480556, + "nameAirport": "Imperatriz", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "1", + "airportId": 3281, + "codeIataAirport": "IMR", + "codeIataCity": "MIL", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 45.463681, + "longitudeAirport": 9.1881714, + "nameAirport": "Rogoredo Railway Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-6", + "airportId": 3282, + "codeIataAirport": "IMT", + "codeIataCity": "IMT", + "codeIcaoAirport": "KIMT", + "codeIso2Country": "US", + "geonameId": "4993069", + "latitudeAirport": 45.815556, + "longitudeAirport": -88.11417, + "nameAirport": "Ford", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Menominee" + }, + { + "GMT": "3", + "airportId": 3283, + "codeIataAirport": "INA", + "codeIataCity": "INA", + "codeIcaoAirport": "UUYI", + "codeIso2Country": "RU", + "geonameId": "7668557", + "latitudeAirport": 66.066666, + "longitudeAirport": 60.1, + "nameAirport": "Inta", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "airportId": 3284, + "codeIataAirport": "INB", + "codeIataCity": "INB", + "codeIcaoAirport": "", + "codeIso2Country": "BZ", + "geonameId": "3581905", + "latitudeAirport": 17.547222, + "longitudeAirport": -88.3, + "nameAirport": "Independence", + "nameCountry": "Belize", + "phone": "", + "timezone": "America/Belize" + }, + { + "GMT": "8", + "airportId": 3285, + "codeIataAirport": "INC", + "codeIataCity": "INC", + "codeIcaoAirport": "ZLIC", + "codeIso2Country": "CN", + "geonameId": "6301883", + "latitudeAirport": 38.35, + "longitudeAirport": 106.35, + "nameAirport": "Yinchuan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 3286, + "codeIataAirport": "IND", + "codeIataCity": "IND", + "codeIcaoAirport": "KIND", + "codeIso2Country": "US", + "geonameId": "4259427", + "latitudeAirport": 39.714516, + "longitudeAirport": -86.29805, + "nameAirport": "Indianapolis International", + "nameCountry": "United States", + "phone": "317-487-7243", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "2", + "airportId": 3287, + "codeIataAirport": "INE", + "codeIataCity": "INE", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "1024697", + "latitudeAirport": -18.616667, + "longitudeAirport": 36.4, + "nameAirport": "Chinde", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "1", + "airportId": 3288, + "codeIataAirport": "INF", + "codeIataCity": "INF", + "codeIcaoAirport": "DATG", + "codeIso2Country": "DZ", + "geonameId": "6296384", + "latitudeAirport": 19.616667, + "longitudeAirport": 5.866667, + "nameAirport": "Newark Liberty International", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-3", + "airportId": 3289, + "codeIataAirport": "ING", + "codeIataCity": "ING", + "codeIcaoAirport": "SAWA", + "codeIso2Country": "AR", + "geonameId": "6300570", + "latitudeAirport": -50.583332, + "longitudeAirport": -72.666664, + "nameAirport": "Lago Argentino", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "2", + "airportId": 3290, + "codeIataAirport": "INH", + "codeIataCity": "INH", + "codeIcaoAirport": "FQIN", + "codeIso2Country": "MZ", + "geonameId": "1103279", + "latitudeAirport": -23.874443, + "longitudeAirport": 35.408333, + "nameAirport": "Inhambane", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "1", + "airportId": 3291, + "codeIataAirport": "INI", + "codeIataCity": "INI", + "codeIcaoAirport": "LYNI", + "codeIso2Country": "RS", + "geonameId": "6299780", + "latitudeAirport": 43.33389, + "longitudeAirport": 21.851667, + "nameAirport": "Constantine The Great International", + "nameCountry": "Serbia", + "phone": "", + "timezone": "Europe/Belgrade" + }, + { + "GMT": "10", + "airportId": 3292, + "codeIataAirport": "INJ", + "codeIataCity": "INJ", + "codeIcaoAirport": "KINJ", + "codeIso2Country": "AU", + "geonameId": "7731115", + "latitudeAirport": -25.883333, + "longitudeAirport": 148.53334, + "nameAirport": "Injune", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "airportId": 3293, + "codeIataAirport": "INK", + "codeIataCity": "INK", + "codeIcaoAirport": "KINK", + "codeIso2Country": "US", + "geonameId": "5534056", + "latitudeAirport": 31.75, + "longitudeAirport": -103.15, + "nameAirport": "Wink", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 3294, + "codeIataAirport": "INL", + "codeIataCity": "INL", + "codeIcaoAirport": "KINL", + "codeIso2Country": "US", + "geonameId": "5031404", + "latitudeAirport": 48.563057, + "longitudeAirport": -93.40417, + "nameAirport": "Falls International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9.30", + "airportId": 3295, + "codeIataAirport": "INM", + "codeIataCity": "INM", + "codeIcaoAirport": "YINN", + "codeIso2Country": "AU", + "geonameId": "7731116", + "latitudeAirport": -27.75, + "longitudeAirport": 140.73334, + "nameAirport": "Innamincka", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "1", + "airportId": 3296, + "codeIataAirport": "INN", + "codeIataCity": "INN", + "codeIcaoAirport": "LOWI", + "codeIso2Country": "AT", + "geonameId": "6299669", + "latitudeAirport": 47.25745, + "longitudeAirport": 11.351467, + "nameAirport": "Innsbruck-kranebitten", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "1", + "airportId": 3297, + "codeIataAirport": "INO", + "codeIataCity": "INO", + "codeIcaoAirport": "FZBA", + "codeIso2Country": "CD", + "geonameId": "6297142", + "latitudeAirport": -1.95, + "longitudeAirport": 18.279167, + "nameAirport": "Inongo", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "1", + "airportId": 3298, + "codeIataAirport": "INP", + "codeIataCity": "NAP", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 40.8400969, + "longitudeAirport": 14.2516357, + "nameAirport": "Naples Central Railway Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "0", + "airportId": 3299, + "codeIataAirport": "INQ", + "codeIataCity": "INQ", + "codeIcaoAirport": "EIIR", + "codeIso2Country": "IE", + "geonameId": "7870002", + "latitudeAirport": 53.033333, + "longitudeAirport": -9.433333, + "nameAirport": "Inisheer", + "nameCountry": "Ireland", + "phone": "", + "timezone": "Europe/Dublin" + }, + { + "GMT": "-5", + "airportId": 3300, + "codeIataAirport": "INR", + "codeIataCity": "SSM", + "codeIcaoAirport": "PAIN", + "codeIso2Country": "US", + "geonameId": "5868581", + "latitudeAirport": 46.5, + "longitudeAirport": -84.35, + "nameAirport": "Kincheloe AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-8", + "airportId": 3301, + "codeIataAirport": "INS", + "codeIataCity": "INS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 36.583332, + "longitudeAirport": -115.666664, + "nameAirport": "Af Aux", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 3302, + "codeIataAirport": "INT", + "codeIataCity": "INT", + "codeIcaoAirport": "KINT", + "codeIso2Country": "US", + "geonameId": "4492156", + "latitudeAirport": 36.135277, + "longitudeAirport": -80.225555, + "nameAirport": "Smith-Reynolds", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "12", + "airportId": 3303, + "codeIataAirport": "INU", + "codeIataCity": "INU", + "codeIcaoAirport": "ANAU", + "codeIso2Country": "NR", + "geonameId": "6295682", + "latitudeAirport": -0.533333, + "longitudeAirport": 166.91667, + "nameAirport": "Nauru International", + "nameCountry": "Nauru", + "phone": "", + "timezone": "Pacific/Nauru" + }, + { + "GMT": "0", + "airportId": 3304, + "codeIataAirport": "INV", + "codeIataCity": "INV", + "codeIcaoAirport": "EGPE", + "codeIso2Country": "GB", + "geonameId": "6296625", + "latitudeAirport": 57.539345, + "longitudeAirport": -4.063738, + "nameAirport": "Inverness", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-7", + "airportId": 3305, + "codeIataAirport": "INW", + "codeIataCity": "INW", + "codeIcaoAirport": "KINW", + "codeIso2Country": "US", + "geonameId": "5321482", + "latitudeAirport": 35.024166, + "longitudeAirport": -110.725, + "nameAirport": "Winslow-Lindbergh", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "9", + "airportId": 3306, + "codeIataAirport": "INX", + "codeIataCity": "INX", + "codeIcaoAirport": "WASI", + "codeIso2Country": "ID", + "geonameId": "7731117", + "latitudeAirport": -2.166667, + "longitudeAirport": 132.23334, + "nameAirport": "Inanwatan", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "2", + "airportId": 3307, + "codeIataAirport": "INY", + "codeIataCity": "INY", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "0", + "latitudeAirport": -24.783333, + "longitudeAirport": 31.383333, + "nameAirport": "Inyati", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "1", + "airportId": 3308, + "codeIataAirport": "INZ", + "codeIataCity": "INZ", + "codeIcaoAirport": "DAUI", + "codeIso2Country": "DZ", + "geonameId": "6930641", + "latitudeAirport": 27.25, + "longitudeAirport": 2.516667, + "nameAirport": "In Salah", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "2", + "airportId": 3309, + "codeIataAirport": "IOA", + "codeIataCity": "IOA", + "codeIcaoAirport": "LGIO", + "codeIso2Country": "GR", + "geonameId": "7668312", + "latitudeAirport": 39.696667, + "longitudeAirport": 20.825832, + "nameAirport": "Ioannina", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "10", + "airportId": 3310, + "codeIataAirport": "IOK", + "codeIataCity": "IOK", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2095550", + "latitudeAirport": -8.4, + "longitudeAirport": 146.26666, + "nameAirport": "Iokea", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 3311, + "codeIataAirport": "IOM", + "codeIataCity": "IOM", + "codeIcaoAirport": "EGNS", + "codeIso2Country": "IM", + "geonameId": "6296610", + "latitudeAirport": 54.08677, + "longitudeAirport": -4.63473, + "nameAirport": "Ronaldsway", + "nameCountry": "Isle of Man", + "phone": "", + "timezone": "Europe/Isle_of_Man" + }, + { + "GMT": "1", + "airportId": 3312, + "codeIataAirport": "ION", + "codeIataCity": "ION", + "codeIcaoAirport": "", + "codeIso2Country": "CG", + "geonameId": "2259655", + "latitudeAirport": 1.613333, + "longitudeAirport": 18.061943, + "nameAirport": "Impfondo", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "10", + "airportId": 3313, + "codeIataAirport": "IOP", + "codeIataCity": "IOP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2095546", + "latitudeAirport": -8.35, + "longitudeAirport": 147.75, + "nameAirport": "Ioma", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 3314, + "codeIataAirport": "IOR", + "codeIataCity": "IOR", + "codeIcaoAirport": "EIIM", + "codeIso2Country": "IE", + "geonameId": "7668217", + "latitudeAirport": 53.11667, + "longitudeAirport": -9.75, + "nameAirport": "Kilronan", + "nameCountry": "Ireland", + "phone": "", + "timezone": "Europe/Dublin" + }, + { + "GMT": "-3", + "airportId": 3315, + "codeIataAirport": "IOS", + "codeIataCity": "IOS", + "codeIcaoAirport": "SBIL", + "codeIso2Country": "BR", + "geonameId": "6300633", + "latitudeAirport": -14.813889, + "longitudeAirport": -39.03, + "nameAirport": "Eduardo Gomes", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "11", + "airportId": 3316, + "codeIataAirport": "IOU", + "codeIataCity": "IOU", + "codeIcaoAirport": "", + "codeIso2Country": "NC", + "geonameId": "0", + "latitudeAirport": -22.463888, + "longitudeAirport": 166.78305, + "nameAirport": "Ile Ouen", + "nameCountry": "New Caledonia", + "phone": "", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "-6", + "airportId": 3317, + "codeIataAirport": "IOW", + "codeIataCity": "IOW", + "codeIcaoAirport": "KIOW", + "codeIso2Country": "US", + "geonameId": "4862048", + "latitudeAirport": 41.666668, + "longitudeAirport": -91.53333, + "nameAirport": "Iowa City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "11", + "airportId": 3318, + "codeIataAirport": "IPA", + "codeIataCity": "IPA", + "codeIcaoAirport": "NVVI", + "codeIso2Country": "VU", + "geonameId": "8298640", + "latitudeAirport": -18.75, + "longitudeAirport": 169.18333, + "nameAirport": "Ipota", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-6", + "airportId": 3319, + "codeIataAirport": "IPC", + "codeIataCity": "IPC", + "codeIcaoAirport": "SCIP", + "codeIso2Country": "CL", + "geonameId": "4030749", + "latitudeAirport": -27.116667, + "longitudeAirport": -109.36667, + "nameAirport": "Mataveri International", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Easter" + }, + { + "GMT": "8", + "airportId": 3320, + "codeIataAirport": "IPE", + "codeIataCity": "IPE", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "0", + "latitudeAirport": 7.783333, + "longitudeAirport": 122.583336, + "nameAirport": "Ipil", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-4", + "airportId": 3321, + "codeIataAirport": "IPG", + "codeIataCity": "IPG", + "codeIcaoAirport": "SWII", + "codeIso2Country": "BR", + "geonameId": "7731118", + "latitudeAirport": -3.216667, + "longitudeAirport": -65.95, + "nameAirport": "Ipiranga", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "8", + "airportId": 3322, + "codeIataAirport": "IPH", + "codeIataCity": "IPH", + "codeIcaoAirport": "WMKI", + "codeIso2Country": "MY", + "geonameId": "7668677", + "latitudeAirport": 4.566944, + "longitudeAirport": 101.09583, + "nameAirport": "Sultan Azlan Shah Airport", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "-5", + "airportId": 3323, + "codeIataAirport": "IPI", + "codeIataCity": "IPI", + "codeIcaoAirport": "SKIP", + "codeIso2Country": "CO", + "geonameId": "6301860", + "latitudeAirport": 0.866389, + "longitudeAirport": -77.71167, + "nameAirport": "San Luis", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-8", + "airportId": 3324, + "codeIataAirport": "IPL", + "codeIataCity": "IPL", + "codeIcaoAirport": "KIPL", + "codeIso2Country": "US", + "geonameId": "5359068", + "latitudeAirport": 32.837223, + "longitudeAirport": -115.57472, + "nameAirport": "Imperial County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "airportId": 3325, + "codeIataAirport": "IPN", + "codeIataCity": "IPN", + "codeIcaoAirport": "SBIP", + "codeIso2Country": "BR", + "geonameId": "7668438", + "latitudeAirport": -19.5, + "longitudeAirport": -42.533333, + "nameAirport": "Usiminas", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 3326, + "codeIataAirport": "IPR", + "codeIataCity": "MIL", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 45.463681, + "longitudeAirport": 9.1881714, + "nameAirport": "Porta Garibaldi Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "airportId": 3327, + "codeIataAirport": "IPT", + "codeIataCity": "IPT", + "codeIcaoAirport": "KIPT", + "codeIso2Country": "US", + "geonameId": "5219591", + "latitudeAirport": 41.24222, + "longitudeAirport": -76.920555, + "nameAirport": "Lycoming County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 3328, + "codeIataAirport": "IPU", + "codeIataCity": "IPU", + "codeIcaoAirport": "SNIU", + "codeIso2Country": "BR", + "geonameId": "7731119", + "latitudeAirport": -14.133333, + "longitudeAirport": -39.733334, + "nameAirport": "Ipiau", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "0", + "airportId": 3329, + "codeIataAirport": "IPW", + "codeIataCity": "IPW", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2646057", + "latitudeAirport": 52.066666, + "longitudeAirport": 1.166667, + "nameAirport": "Ipswich", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "3", + "airportId": 3330, + "codeIataAirport": "IQA", + "codeIataCity": "IQA", + "codeIcaoAirport": "CYFB", + "codeIso2Country": "IQ", + "geonameId": "8260777", + "latitudeAirport": 63.75175, + "longitudeAirport": -68.53658, + "nameAirport": "Al Asad Air Base", + "nameCountry": "Iraq", + "phone": "", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "8", + "airportId": 3331, + "codeIataAirport": "IQM", + "codeIataCity": "IQM", + "codeIcaoAirport": "ZWCM", + "codeIso2Country": "CN", + "geonameId": "7668810", + "latitudeAirport": 38.13333, + "longitudeAirport": 85.53333, + "nameAirport": "Qiemo", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 3332, + "codeIataAirport": "IQN", + "codeIataCity": "IQN", + "codeIcaoAirport": "ZLQY", + "codeIso2Country": "CN", + "geonameId": "7730289", + "latitudeAirport": 35.8001, + "longitudeAirport": 107.6044, + "nameAirport": "Qingyang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-4", + "airportId": 3333, + "codeIataAirport": "IQQ", + "codeIataCity": "IQQ", + "codeIcaoAirport": "SCDA", + "codeIso2Country": "CL", + "geonameId": "6300695", + "latitudeAirport": -20.547937, + "longitudeAirport": -70.17848, + "nameAirport": "Cavancha", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-5", + "airportId": 3334, + "codeIataAirport": "IQT", + "codeIataCity": "IQT", + "codeIcaoAirport": "SPQT", + "codeIso2Country": "PE", + "geonameId": "6300816", + "latitudeAirport": -3.785098, + "longitudeAirport": -73.30284, + "nameAirport": "C.F. Secada", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "11", + "airportId": 3335, + "codeIataAirport": "IRA", + "codeIataCity": "IRA", + "codeIcaoAirport": "AGGK", + "codeIso2Country": "SB", + "geonameId": "7668067", + "latitudeAirport": -10.5, + "longitudeAirport": 161.83333, + "nameAirport": "Kirakira", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-6", + "airportId": 3336, + "codeIataAirport": "IRB", + "codeIataCity": "IRB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5523798", + "latitudeAirport": 30.7, + "longitudeAirport": -101.933334, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 3337, + "codeIataAirport": "IRC", + "codeIataCity": "IRC", + "codeIcaoAirport": "SCIR", + "codeIso2Country": "US", + "geonameId": "5859417", + "latitudeAirport": 65.82917, + "longitudeAirport": -144.06389, + "nameAirport": "Circle City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "6", + "airportId": 3338, + "codeIataAirport": "IRD", + "codeIataCity": "IRD", + "codeIcaoAirport": "VGIS", + "codeIso2Country": "BD", + "geonameId": "6301083", + "latitudeAirport": 24.133333, + "longitudeAirport": 89.05278, + "nameAirport": "Ishurdi", + "nameCountry": "Bangladesh", + "phone": "", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "-3", + "airportId": 3339, + "codeIataAirport": "IRE", + "codeIataCity": "IRE", + "codeIcaoAirport": "SNIC", + "codeIso2Country": "BR", + "geonameId": "7731120", + "latitudeAirport": -11.3, + "longitudeAirport": -41.86667, + "nameAirport": "Irece", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "10", + "airportId": 3340, + "codeIataAirport": "IRG", + "codeIataCity": "IRG", + "codeIcaoAirport": "YLHR", + "codeIso2Country": "AU", + "geonameId": "7668732", + "latitudeAirport": -12.788889, + "longitudeAirport": 143.3125, + "nameAirport": "Lockhart River", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "airportId": 3341, + "codeIataAirport": "IRI", + "codeIataCity": "IRI", + "codeIcaoAirport": "HTIR", + "codeIso2Country": "TZ", + "geonameId": "6297355", + "latitudeAirport": -7.670556, + "longitudeAirport": 35.75028, + "nameAirport": "Nduli", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-3", + "airportId": 3342, + "codeIataAirport": "IRJ", + "codeIataCity": "IRJ", + "codeIcaoAirport": "SANL", + "codeIso2Country": "AR", + "geonameId": "6300535", + "latitudeAirport": -29.383333, + "longitudeAirport": -66.78333, + "nameAirport": "Capitan Vicente Almando", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/La_Rioja" + }, + { + "GMT": "-6", + "airportId": 3343, + "codeIataAirport": "IRK", + "codeIataCity": "IRK", + "codeIcaoAirport": "KIRK", + "codeIso2Country": "US", + "geonameId": "5054475", + "latitudeAirport": 40.0925, + "longitudeAirport": -92.54389, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5", + "airportId": 3344, + "codeIataAirport": "IRM", + "codeIataCity": "IRM", + "codeIcaoAirport": "USHI", + "codeIso2Country": "RU", + "geonameId": "8261022", + "latitudeAirport": 63.200756, + "longitudeAirport": 64.433945, + "nameAirport": "Igrim", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-6", + "airportId": 3345, + "codeIataAirport": "IRN", + "codeIataCity": "IRN", + "codeIcaoAirport": "", + "codeIso2Country": "HN", + "geonameId": "8298764", + "latitudeAirport": 15.95, + "longitudeAirport": -85.183334, + "nameAirport": "Iriona", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "1", + "airportId": 3346, + "codeIataAirport": "IRO", + "codeIataCity": "IRO", + "codeIcaoAirport": "FEFI", + "codeIso2Country": "CF", + "geonameId": "6296973", + "latitudeAirport": 10.186389, + "longitudeAirport": 22.713888, + "nameAirport": "Birao", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "2", + "airportId": 3347, + "codeIataAirport": "IRP", + "codeIataCity": "IRP", + "codeIcaoAirport": "FZJH", + "codeIso2Country": "CD", + "geonameId": "7668271", + "latitudeAirport": 2.781944, + "longitudeAirport": 27.630833, + "nameAirport": "Matari", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "1", + "airportId": 3348, + "codeIataAirport": "IRR", + "codeIataCity": "ROM", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 41.8905198, + "longitudeAirport": 12.4942486, + "nameAirport": "Ostiense Railway Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "airportId": 3349, + "codeIataAirport": "IRS", + "codeIataCity": "IRS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.816666, + "longitudeAirport": -85.43528, + "nameAirport": "Kirsch Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "1", + "airportId": 3350, + "codeIataAirport": "IRT", + "codeIataCity": "ROM", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 41.8905198, + "longitudeAirport": 12.4942486, + "nameAirport": "Tiburtina Railway Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "5.30", + "airportId": 3351, + "codeIataAirport": "IRU", + "codeIataCity": "IRU", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "0", + "latitudeAirport": 35.921055, + "longitudeAirport": 139.50674, + "nameAirport": "Iranamadu SPB", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "-4", + "airportId": 3352, + "codeIataAirport": "IRZ", + "codeIataCity": "IRZ", + "codeIcaoAirport": "SWTP", + "codeIso2Country": "BR", + "geonameId": "8260731", + "latitudeAirport": -0.380296, + "longitudeAirport": -64.996025, + "nameAirport": "Tapuruquara", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "10", + "airportId": 3353, + "codeIataAirport": "ISA", + "codeIataCity": "ISA", + "codeIcaoAirport": "YBMA", + "codeIso2Country": "AU", + "geonameId": "6301298", + "latitudeAirport": -20.667637, + "longitudeAirport": 139.49179, + "nameAirport": "Mount Isa", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5", + "airportId": 3354, + "codeIataAirport": "ISB", + "codeIataCity": "ISB", + "codeIcaoAirport": "OPRN", + "codeIso2Country": "PK", + "geonameId": "6300119", + "latitudeAirport": 33.609707, + "longitudeAirport": 73.1051, + "nameAirport": "Islamabad International", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "0", + "airportId": 3355, + "codeIataAirport": "ISC", + "codeIataCity": "ISC", + "codeIcaoAirport": "EGHE", + "codeIso2Country": "GB", + "geonameId": "6296590", + "latitudeAirport": 49.913334, + "longitudeAirport": -6.291667, + "nameAirport": "St Marys", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "airportId": 3356, + "codeIataAirport": "ISD", + "codeIataCity": "ISD", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8260962", + "latitudeAirport": 2.466667, + "longitudeAirport": -77.98333, + "nameAirport": "Iscuande", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "airportId": 3357, + "codeIataAirport": "ISE", + "codeIataCity": "ISE", + "codeIcaoAirport": "LTFC", + "codeIso2Country": "TR", + "geonameId": "6299770", + "latitudeAirport": 37.86611, + "longitudeAirport": 30.382221, + "nameAirport": "Isparta", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "9", + "airportId": 3358, + "codeIataAirport": "ISG", + "codeIataCity": "ISG", + "codeIcaoAirport": "ROIG", + "codeIso2Country": "JP", + "geonameId": "6300461", + "latitudeAirport": 24.336945, + "longitudeAirport": 124.16889, + "nameAirport": "Ishigaki", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "airportId": 3359, + "codeIataAirport": "ISH", + "codeIataCity": "ISH", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "3175458", + "latitudeAirport": 40.733334, + "longitudeAirport": 13.95, + "nameAirport": "Ischia", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "10", + "airportId": 3360, + "codeIataAirport": "ISI", + "codeIataCity": "ISI", + "codeIcaoAirport": "YISF", + "codeIso2Country": "AU", + "geonameId": "7731121", + "latitudeAirport": -24.263332, + "longitudeAirport": 144.42334, + "nameAirport": "Isisford", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 3361, + "codeIataAirport": "ISJ", + "codeIataCity": "ISJ", + "codeIcaoAirport": "MMIM", + "codeIso2Country": "MX", + "geonameId": "7730665", + "latitudeAirport": 21.266666, + "longitudeAirport": -86.75, + "nameAirport": "Isla Mujeres", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Cancun" + }, + { + "GMT": "5.30", + "airportId": 3362, + "codeIataAirport": "ISK", + "codeIataCity": "ISK", + "codeIcaoAirport": "VANR", + "codeIso2Country": "IN", + "geonameId": "7668577", + "latitudeAirport": 19.966942, + "longitudeAirport": 73.811264, + "nameAirport": "Gandhinagar Airport", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-9", + "airportId": 3363, + "codeIataAirport": "ISL", + "codeIataCity": "ISL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8298978", + "latitudeAirport": 63.5, + "longitudeAirport": -145.03334, + "nameAirport": "Isabel Pass", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 3364, + "codeIataAirport": "ISM", + "codeIataCity": "ISM", + "codeIcaoAirport": "KISM", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 28.45, + "longitudeAirport": -81.333336, + "nameAirport": "Kissimmee Gateway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 3365, + "codeIataAirport": "ISN", + "codeIataCity": "ISN", + "codeIcaoAirport": "KISN", + "codeIso2Country": "US", + "geonameId": "5692947", + "latitudeAirport": 48.17611, + "longitudeAirport": -103.63611, + "nameAirport": "Sloulin Field International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 3366, + "codeIataAirport": "ISO", + "codeIataCity": "ISO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 35.326668, + "longitudeAirport": -77.61667, + "nameAirport": "Stallings Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 3367, + "codeIataAirport": "ISP", + "codeIataCity": "ISP", + "codeIcaoAirport": "KISP", + "codeIso2Country": "US", + "geonameId": "5125130", + "latitudeAirport": 40.789314, + "longitudeAirport": -73.09755, + "nameAirport": "Long Island Mac Arthur", + "nameCountry": "United States", + "phone": "(631) 467-330", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 3368, + "codeIataAirport": "ISQ", + "codeIataCity": "ISQ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5000625", + "latitudeAirport": 45.95, + "longitudeAirport": -86.25, + "nameAirport": "Schoolcraft County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "1", + "airportId": 3369, + "codeIataAirport": "ISR", + "codeIataCity": "QSR", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Salerno Railway Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "airportId": 3370, + "codeIataAirport": "ISS", + "codeIataCity": "ISS", + "codeIcaoAirport": "KIWI", + "codeIso2Country": "US", + "geonameId": "4983360", + "latitudeAirport": 44.0, + "longitudeAirport": -69.666664, + "nameAirport": "Wiscasset", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 3371, + "codeIataAirport": "IST", + "codeIataCity": "IST", + "codeIcaoAirport": "LTBA", + "codeIso2Country": "TR", + "geonameId": "6299743", + "latitudeAirport": 40.976665, + "longitudeAirport": 28.815277, + "nameAirport": "Istanbul Airport", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3", + "airportId": 3372, + "codeIataAirport": "ISU", + "codeIataCity": "ISU", + "codeIcaoAirport": "ORSU", + "codeIso2Country": "IQ", + "geonameId": "7730143", + "latitudeAirport": 35.5608, + "longitudeAirport": 45.314716, + "nameAirport": "Sulaimaniyah International", + "nameCountry": "Iraq", + "phone": "", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "-6", + "airportId": 3373, + "codeIataAirport": "ISW", + "codeIataCity": "ISW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5279436", + "latitudeAirport": 44.36028, + "longitudeAirport": -89.83889, + "nameAirport": "Alexander Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 3374, + "codeIataAirport": "ITA", + "codeIataCity": "ITA", + "codeIcaoAirport": "SBIC", + "codeIso2Country": "BR", + "geonameId": "7730155", + "latitudeAirport": -3.133333, + "longitudeAirport": -58.416668, + "nameAirport": "Itacoatiara", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "-3", + "airportId": 3375, + "codeIataAirport": "ITB", + "codeIataCity": "ITB", + "codeIcaoAirport": "SBIH", + "codeIso2Country": "BR", + "geonameId": "6300632", + "latitudeAirport": -4.283333, + "longitudeAirport": -55.983334, + "nameAirport": "Itaituba", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Santarem" + }, + { + "GMT": "-3", + "airportId": 3376, + "codeIataAirport": "ITE", + "codeIataCity": "ITE", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8261005", + "latitudeAirport": -13.7, + "longitudeAirport": -39.2, + "nameAirport": "Itubera", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "-5", + "airportId": 3377, + "codeIataAirport": "ITH", + "codeIataCity": "ITH", + "codeIcaoAirport": "KITH", + "codeIso2Country": "US", + "geonameId": "6298471", + "latitudeAirport": 42.49034, + "longitudeAirport": -76.46359, + "nameAirport": "Tompkins County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 3378, + "codeIataAirport": "ITI", + "codeIataCity": "ITI", + "codeIcaoAirport": "SNYH", + "codeIso2Country": "BR", + "geonameId": "7731122", + "latitudeAirport": -18.0, + "longitudeAirport": -41.5, + "nameAirport": "Itambacuri", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "airportId": 3379, + "codeIataAirport": "ITK", + "codeIataCity": "ITK", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299233", + "latitudeAirport": -9.3, + "longitudeAirport": 148.2, + "nameAirport": "Itokama", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "airportId": 3380, + "codeIataAirport": "ITM", + "codeIataCity": "OSA", + "codeIcaoAirport": "RJOO", + "codeIso2Country": "JP", + "geonameId": "6300380", + "latitudeAirport": 34.790974, + "longitudeAirport": 135.44171, + "nameAirport": "Itami", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-10", + "airportId": 3381, + "codeIataAirport": "ITO", + "codeIataCity": "ITO", + "codeIcaoAirport": "PHTO", + "codeIso2Country": "US", + "geonameId": "5855944", + "latitudeAirport": 19.714565, + "longitudeAirport": -155.03963, + "nameAirport": "Hilo International", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "-3", + "airportId": 3382, + "codeIataAirport": "ITP", + "codeIataCity": "ITP", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8298802", + "latitudeAirport": -21.21889, + "longitudeAirport": -41.875, + "nameAirport": "Itaperuna", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-3", + "airportId": 3383, + "codeIataAirport": "ITQ", + "codeIataCity": "ITQ", + "codeIcaoAirport": "SSIQ", + "codeIso2Country": "BR", + "geonameId": "7731124", + "latitudeAirport": -29.133333, + "longitudeAirport": -56.55, + "nameAirport": "Itaqui", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-3", + "airportId": 3384, + "codeIataAirport": "ITR", + "codeIataCity": "ITR", + "codeIcaoAirport": "SBIT", + "codeIso2Country": "BR", + "geonameId": "8256215", + "latitudeAirport": -18.445, + "longitudeAirport": -49.21417, + "nameAirport": "Hidroeletrica", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 3385, + "codeIataAirport": "ITT", + "codeIataCity": "TRN", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 70.583336, + "longitudeAirport": -21.666668, + "nameAirport": "Porta Susa Railway Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-11", + "airportId": 3386, + "codeIataAirport": "IUE", + "codeIataCity": "IUE", + "codeIcaoAirport": "NIUE", + "codeIso2Country": "NU", + "geonameId": "6299957", + "latitudeAirport": -19.083332, + "longitudeAirport": -169.93333, + "nameAirport": "Hanan", + "nameCountry": "Niue", + "phone": "", + "timezone": "Pacific/Niue" + }, + { + "GMT": "9", + "airportId": 3387, + "codeIataAirport": "IUL", + "codeIataCity": "IUL", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731125", + "latitudeAirport": -3.733333, + "longitudeAirport": 138.16667, + "nameAirport": "Ilu", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-8", + "airportId": 3388, + "codeIataAirport": "IUM", + "codeIataCity": "IUM", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8299021", + "latitudeAirport": 54.333332, + "longitudeAirport": -122.666664, + "nameAirport": "Summit Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "3", + "airportId": 3389, + "codeIataAirport": "IVA", + "codeIataCity": "IVA", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "0", + "latitudeAirport": -13.642222, + "longitudeAirport": 48.45778, + "nameAirport": "Ambanja", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "12", + "airportId": 3390, + "codeIataAirport": "IVC", + "codeIataCity": "IVC", + "codeIcaoAirport": "NZNV", + "codeIso2Country": "NZ", + "geonameId": "6205079", + "latitudeAirport": -46.415432, + "longitudeAirport": 168.32175, + "nameAirport": "Invercargill", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "1", + "airportId": 3391, + "codeIataAirport": "IVG", + "codeIataCity": "IVG", + "codeIcaoAirport": "", + "codeIso2Country": "ME", + "geonameId": "3199071", + "latitudeAirport": 42.839027, + "longitudeAirport": 19.862028, + "nameAirport": "Ivangrad", + "nameCountry": "Montenegro", + "phone": "", + "timezone": "Europe/Podgorica" + }, + { + "GMT": "-5", + "airportId": 3392, + "codeIataAirport": "IVI", + "codeIataCity": "IVI", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "0", + "latitudeAirport": 69.4, + "longitudeAirport": -148.25, + "nameAirport": "Isla Viveros", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "2", + "airportId": 3393, + "codeIataAirport": "IVL", + "codeIataCity": "IVL", + "codeIcaoAirport": "EFIV", + "codeIso2Country": "FI", + "geonameId": "6296543", + "latitudeAirport": 68.611115, + "longitudeAirport": 27.415556, + "nameAirport": "Ivalo", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-5", + "airportId": 3394, + "codeIataAirport": "IVO", + "codeIataCity": "IVO", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "3686445", + "latitudeAirport": 9.516667, + "longitudeAirport": -74.53333, + "nameAirport": "Chivolo", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "airportId": 3395, + "codeIataAirport": "IVR", + "codeIataCity": "IVR", + "codeIcaoAirport": "YIVL", + "codeIso2Country": "AU", + "geonameId": "7668725", + "latitudeAirport": -29.883896, + "longitudeAirport": 151.14056, + "nameAirport": "Inverell", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "9.30", + "airportId": 3396, + "codeIataAirport": "IVW", + "codeIataCity": "IVW", + "codeIcaoAirport": "YINW", + "codeIso2Country": "AU", + "geonameId": "7731126", + "latitudeAirport": -17.833332, + "longitudeAirport": 129.63333, + "nameAirport": "Inverway", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "3", + "airportId": 3397, + "codeIataAirport": "IWA", + "codeIataCity": "IWA", + "codeIcaoAirport": "UUBI", + "codeIso2Country": "RU", + "geonameId": "7730204", + "latitudeAirport": 56.942955, + "longitudeAirport": 40.944546, + "nameAirport": "Ivanova", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "airportId": 3398, + "codeIataAirport": "IWD", + "codeIataCity": "IWD", + "codeIcaoAirport": "KIWD", + "codeIso2Country": "US", + "geonameId": "4994091", + "latitudeAirport": 46.525555, + "longitudeAirport": -90.13167, + "nameAirport": "Gogebic County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Menominee" + }, + { + "GMT": "9", + "airportId": 3399, + "codeIataAirport": "IWJ", + "codeIataCity": "IWJ", + "codeIcaoAirport": "RJOW", + "codeIso2Country": "JP", + "geonameId": "6300385", + "latitudeAirport": 34.676388, + "longitudeAirport": 131.79028, + "nameAirport": "Iwami", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "9", + "airportId": 3400, + "codeIataAirport": "IWK", + "codeIataCity": "IWK", + "codeIcaoAirport": "", + "codeIso2Country": "JP", + "geonameId": "0", + "latitudeAirport": 34.135277, + "longitudeAirport": 132.23555, + "nameAirport": "Iwakuni", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "9", + "airportId": 3401, + "codeIataAirport": "IWO", + "codeIataCity": "IWO", + "codeIcaoAirport": "RJAW", + "codeIso2Country": "JP", + "geonameId": "6300315", + "latitudeAirport": 24.783333, + "longitudeAirport": 141.31667, + "nameAirport": "Iwo Jima Airbase", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-6", + "airportId": 3402, + "codeIataAirport": "IWS", + "codeIataCity": "HOU", + "codeIcaoAirport": "KIWS", + "codeIso2Country": "US", + "geonameId": "4740905", + "latitudeAirport": 29.816668, + "longitudeAirport": -95.666664, + "nameAirport": "West Houston", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5.30", + "airportId": 3403, + "codeIataAirport": "IXA", + "codeIataCity": "IXA", + "codeIcaoAirport": "VEAT", + "codeIso2Country": "IN", + "geonameId": "6301066", + "latitudeAirport": 23.8926, + "longitudeAirport": 91.244514, + "nameAirport": "Singerbhil", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3404, + "codeIataAirport": "IXB", + "codeIataCity": "IXB", + "codeIcaoAirport": "VEBD", + "codeIso2Country": "IN", + "geonameId": "6301067", + "latitudeAirport": 26.68488, + "longitudeAirport": 88.324814, + "nameAirport": "Bagdogra", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3405, + "codeIataAirport": "IXC", + "codeIataCity": "IXC", + "codeIcaoAirport": "VICG", + "codeIso2Country": "IN", + "geonameId": "7668602", + "latitudeAirport": 30.674921, + "longitudeAirport": 76.797386, + "nameAirport": "Chandigarh", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3406, + "codeIataAirport": "IXD", + "codeIataCity": "IXD", + "codeIcaoAirport": "VIAL", + "codeIso2Country": "IN", + "geonameId": "6301091", + "latitudeAirport": 25.439722, + "longitudeAirport": 81.736115, + "nameAirport": "Bamrauli", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3407, + "codeIataAirport": "IXE", + "codeIataCity": "IXE", + "codeIcaoAirport": "VOML", + "codeIso2Country": "IN", + "geonameId": "6301126", + "latitudeAirport": 12.963543, + "longitudeAirport": 74.890144, + "nameAirport": "Bajpe", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3408, + "codeIataAirport": "IXG", + "codeIataCity": "IXG", + "codeIcaoAirport": "VABM", + "codeIso2Country": "IN", + "geonameId": "6301035", + "latitudeAirport": 15.858611, + "longitudeAirport": 74.61833, + "nameAirport": "Sambre", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3409, + "codeIataAirport": "IXH", + "codeIataCity": "IXH", + "codeIcaoAirport": "VEKR", + "codeIso2Country": "IN", + "geonameId": "7668591", + "latitudeAirport": 24.307222, + "longitudeAirport": 92.00889, + "nameAirport": "Kailashahar", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3410, + "codeIataAirport": "IXI", + "codeIataCity": "IXI", + "codeIcaoAirport": "VELR", + "codeIso2Country": "IN", + "geonameId": "6301076", + "latitudeAirport": 27.290277, + "longitudeAirport": 94.08889, + "nameAirport": "North Lakhimpur", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3411, + "codeIataAirport": "IXJ", + "codeIataCity": "IXJ", + "codeIcaoAirport": "VIJU", + "codeIso2Country": "IN", + "geonameId": "7668604", + "latitudeAirport": 32.68077, + "longitudeAirport": 74.84283, + "nameAirport": "Satwari", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3412, + "codeIataAirport": "IXK", + "codeIataCity": "IXK", + "codeIcaoAirport": "VAKS", + "codeIso2Country": "IN", + "geonameId": "7668575", + "latitudeAirport": 21.319445, + "longitudeAirport": 70.270836, + "nameAirport": "Keshod", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3413, + "codeIataAirport": "IXL", + "codeIataCity": "IXL", + "codeIcaoAirport": "VILH", + "codeIso2Country": "IN", + "geonameId": "7668606", + "latitudeAirport": 34.14035, + "longitudeAirport": 77.54746, + "nameAirport": "Bakula Rimpoche", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3414, + "codeIataAirport": "IXM", + "codeIataCity": "IXM", + "codeIcaoAirport": "VOMD", + "codeIso2Country": "IN", + "geonameId": "6301125", + "latitudeAirport": 9.837471, + "longitudeAirport": 78.09112, + "nameAirport": "Madurai", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3415, + "codeIataAirport": "IXN", + "codeIataCity": "IXN", + "codeIcaoAirport": "VEKW", + "codeIso2Country": "IN", + "geonameId": "7731127", + "latitudeAirport": 24.063889, + "longitudeAirport": 91.60333, + "nameAirport": "Khowai", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3416, + "codeIataAirport": "IXP", + "codeIataCity": "IXP", + "codeIcaoAirport": "VIPK", + "codeIso2Country": "IN", + "geonameId": "7668607", + "latitudeAirport": 32.216667, + "longitudeAirport": 75.63333, + "nameAirport": "Pathankot", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3417, + "codeIataAirport": "IXQ", + "codeIataCity": "IXQ", + "codeIcaoAirport": "VEKM", + "codeIso2Country": "IN", + "geonameId": "7731128", + "latitudeAirport": 24.1325, + "longitudeAirport": 91.81556, + "nameAirport": "Kamalpur", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3418, + "codeIataAirport": "IXR", + "codeIataCity": "IXR", + "codeIcaoAirport": "VERC", + "codeIso2Country": "IN", + "geonameId": "6301080", + "latitudeAirport": 23.318192, + "longitudeAirport": 85.32285, + "nameAirport": "Birsa Munda International", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3419, + "codeIataAirport": "IXS", + "codeIataCity": "IXS", + "codeIcaoAirport": "VEKU", + "codeIso2Country": "IN", + "geonameId": "7668592", + "latitudeAirport": 24.916018, + "longitudeAirport": 92.979256, + "nameAirport": "Kumbhirgram", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3420, + "codeIataAirport": "IXT", + "codeIataCity": "IXT", + "codeIcaoAirport": "VEPG", + "codeIso2Country": "IN", + "geonameId": "7731129", + "latitudeAirport": 28.016666, + "longitudeAirport": 95.333336, + "nameAirport": "Pasighat", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3421, + "codeIataAirport": "IXU", + "codeIataCity": "IXU", + "codeIcaoAirport": "VAAU", + "codeIso2Country": "IN", + "geonameId": "6301031", + "latitudeAirport": 19.866465, + "longitudeAirport": 75.39721, + "nameAirport": "Chikkalthana", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3422, + "codeIataAirport": "IXV", + "codeIataCity": "IXV", + "codeIcaoAirport": "VEAN", + "codeIso2Country": "IN", + "geonameId": "7668586", + "latitudeAirport": 28.2, + "longitudeAirport": 94.816666, + "nameAirport": "Along", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3423, + "codeIataAirport": "IXW", + "codeIataCity": "IXW", + "codeIcaoAirport": "VEJS", + "codeIso2Country": "IN", + "geonameId": "6301075", + "latitudeAirport": 22.813057, + "longitudeAirport": 86.16889, + "nameAirport": "Sonari", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3424, + "codeIataAirport": "IXY", + "codeIataCity": "IXY", + "codeIcaoAirport": "VAKE", + "codeIso2Country": "IN", + "geonameId": "7668573", + "latitudeAirport": 23.11111, + "longitudeAirport": 70.104164, + "nameAirport": "Kandla", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3425, + "codeIataAirport": "IXZ", + "codeIataCity": "IXZ", + "codeIcaoAirport": "VOPB", + "codeIso2Country": "IN", + "geonameId": "7910160", + "latitudeAirport": 11.650083, + "longitudeAirport": 92.73227, + "nameAirport": "Port Blair", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-8", + "airportId": 3426, + "codeIataAirport": "IYK", + "codeIataCity": "IYK", + "codeIcaoAirport": "KIYK", + "codeIso2Country": "US", + "geonameId": "5359624", + "latitudeAirport": 35.656666, + "longitudeAirport": -117.82917, + "nameAirport": "Kern County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "airportId": 3427, + "codeIataAirport": "IZA", + "codeIataCity": "JDF", + "codeIcaoAirport": "SDZY", + "codeIso2Country": "BR", + "geonameId": "8288520", + "latitudeAirport": -21.513056, + "longitudeAirport": -43.173058, + "nameAirport": "Reg. da Zona da Mata", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "9", + "airportId": 3428, + "codeIataAirport": "IZO", + "codeIataCity": "IZO", + "codeIcaoAirport": "RJOC", + "codeIso2Country": "JP", + "geonameId": "6300373", + "latitudeAirport": 35.41485, + "longitudeAirport": 132.88576, + "nameAirport": "Izumo", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-6", + "airportId": 3429, + "codeIataAirport": "IZT", + "codeIataCity": "IZT", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "8299222", + "latitudeAirport": 16.569166, + "longitudeAirport": -95.10833, + "nameAirport": "Ixtepec", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "4.30", + "airportId": 3430, + "codeIataAirport": "JAA", + "codeIataCity": "JAA", + "codeIcaoAirport": "OAJL", + "codeIso2Country": "AF", + "geonameId": "1453109", + "latitudeAirport": 34.433334, + "longitudeAirport": 70.46667, + "nameAirport": "Jalalabad", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "9.30", + "airportId": 3431, + "codeIataAirport": "JAB", + "codeIataCity": "JAB", + "codeIcaoAirport": "YJAB", + "codeIso2Country": "AU", + "geonameId": "7731130", + "latitudeAirport": -12.659722, + "longitudeAirport": 132.89194, + "nameAirport": "Jabiru", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-7", + "airportId": 3432, + "codeIataAirport": "JAC", + "codeIataCity": "JAC", + "codeIcaoAirport": "KJAC", + "codeIso2Country": "US", + "geonameId": "5828662", + "latitudeAirport": 43.602806, + "longitudeAirport": -110.73613, + "nameAirport": "Jackson Hole", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "airportId": 3433, + "codeIataAirport": "JAD", + "codeIataCity": "PER", + "codeIcaoAirport": "YPJT", + "codeIso2Country": "AU", + "geonameId": "6940992", + "latitudeAirport": -32.083332, + "longitudeAirport": 115.88333, + "nameAirport": "Jandakot", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "airportId": 3434, + "codeIataAirport": "JAE", + "codeIataCity": "ATL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.638058, + "longitudeAirport": -84.424446, + "nameAirport": "Technology Park", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "5.30", + "airportId": 3435, + "codeIataAirport": "JAF", + "codeIataCity": "JAF", + "codeIcaoAirport": "VCCJ", + "codeIso2Country": "LK", + "geonameId": "7730210", + "latitudeAirport": 9.791667, + "longitudeAirport": 80.075, + "nameAirport": "Kankesanturai", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "5", + "airportId": 3436, + "codeIataAirport": "JAG", + "codeIataCity": "JAG", + "codeIcaoAirport": "OPJA", + "codeIso2Country": "PK", + "geonameId": "6300109", + "latitudeAirport": 28.3, + "longitudeAirport": 68.45, + "nameAirport": "Jacobabad", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "5.30", + "airportId": 3437, + "codeIataAirport": "JAI", + "codeIataCity": "JAI", + "codeIcaoAirport": "VIJP", + "codeIso2Country": "IN", + "geonameId": "6301101", + "latitudeAirport": 26.820772, + "longitudeAirport": 75.80151, + "nameAirport": "Sanganeer", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "airportId": 3438, + "codeIataAirport": "JAJ", + "codeIataCity": "ATL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.635277, + "longitudeAirport": -84.42167, + "nameAirport": "Perimeter Mall", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 3439, + "codeIataAirport": "JAK", + "codeIataCity": "JAK", + "codeIcaoAirport": "", + "codeIso2Country": "HT", + "geonameId": "3723779", + "latitudeAirport": 18.240557, + "longitudeAirport": -72.51861, + "nameAirport": "Jacmel Regional Airport", + "nameCountry": "Haiti", + "phone": "", + "timezone": "America/Port-au-Prince" + }, + { + "GMT": "-6", + "airportId": 3440, + "codeIataAirport": "JAL", + "codeIataCity": "JAL", + "codeIcaoAirport": "MMJA", + "codeIso2Country": "MX", + "geonameId": "6453441", + "latitudeAirport": 19.472221, + "longitudeAirport": -96.781944, + "nameAirport": "Jalapa", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "2", + "airportId": 3441, + "codeIataAirport": "JAM", + "codeIataCity": "JAM", + "codeIcaoAirport": "LBIA", + "codeIso2Country": "BG", + "geonameId": "7731131", + "latitudeAirport": 42.516666, + "longitudeAirport": 26.483334, + "nameAirport": "Jambol", + "nameCountry": "Bulgaria", + "phone": "", + "timezone": "Europe/Sofia" + }, + { + "GMT": "-6", + "airportId": 3442, + "codeIataAirport": "JAN", + "codeIataCity": "JAN", + "codeIcaoAirport": "KJAN", + "codeIso2Country": "US", + "geonameId": "4431450", + "latitudeAirport": 32.309895, + "longitudeAirport": -90.07496, + "nameAirport": "Jackson-evers", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 3443, + "codeIataAirport": "JAO", + "codeIataCity": "ATL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.64639, + "longitudeAirport": -84.43278, + "nameAirport": "Beaver Ruin", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 3444, + "codeIataAirport": "JAP", + "codeIataCity": "JAP", + "codeIcaoAirport": "", + "codeIso2Country": "CR", + "geonameId": "0", + "latitudeAirport": 9.966667, + "longitudeAirport": -84.833336, + "nameAirport": "Punta Renes", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "10", + "airportId": 3445, + "codeIataAirport": "JAQ", + "codeIataCity": "JAQ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731132", + "latitudeAirport": -5.6, + "longitudeAirport": 151.51666, + "nameAirport": "Jacquinot Bay", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3.30", + "airportId": 3446, + "codeIataAirport": "JAR", + "codeIataCity": "JAR", + "codeIcaoAirport": "", + "codeIso2Country": "IR", + "geonameId": "8299224", + "latitudeAirport": 28.516666, + "longitudeAirport": 53.55, + "nameAirport": "Jahrom", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-6", + "airportId": 3447, + "codeIataAirport": "JAS", + "codeIataCity": "JAS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.933332, + "longitudeAirport": -94.01667, + "nameAirport": "County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "12", + "airportId": 3448, + "codeIataAirport": "JAT", + "codeIataCity": "JAT", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 7.75, + "longitudeAirport": 168.96666, + "nameAirport": "Jabot", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-5", + "airportId": 3449, + "codeIataAirport": "JAU", + "codeIataCity": "JAU", + "codeIcaoAirport": "SPJJ", + "codeIso2Country": "PE", + "geonameId": "7668470", + "latitudeAirport": -11.75, + "longitudeAirport": -75.25, + "nameAirport": "Jauja", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "-3", + "airportId": 3450, + "codeIataAirport": "JAV", + "codeIataCity": "JAV", + "codeIcaoAirport": "BGJN", + "codeIso2Country": "GL", + "geonameId": "6295700", + "latitudeAirport": 69.23444, + "longitudeAirport": -51.05111, + "nameAirport": "Ilulissat", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "-5", + "airportId": 3451, + "codeIataAirport": "JAX", + "codeIataCity": "JAX", + "codeIcaoAirport": "KJAX", + "codeIso2Country": "US", + "geonameId": "4160035", + "latitudeAirport": 30.491657, + "longitudeAirport": -81.68306, + "nameAirport": "Jacksonville,", + "nameCountry": "United States", + "phone": "904-741-4902", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 3452, + "codeIataAirport": "JBC", + "codeIataCity": "BOS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.343887, + "longitudeAirport": -71.049446, + "nameAirport": "Boston City Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 3453, + "codeIataAirport": "JBD", + "codeIataCity": "ZBD", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 29.705096, + "longitudeAirport": 116.001982, + "nameAirport": "CZ Bus Station", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-8", + "airportId": 3454, + "codeIataAirport": "JBP", + "codeIataCity": "LAX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.986668, + "longitudeAirport": -118.15972, + "nameAirport": "Commerce Bus. Plaza", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "airportId": 3455, + "codeIataAirport": "JBQ", + "codeIataCity": "JBQ", + "codeIcaoAirport": "MDJB", + "codeIso2Country": "DO", + "geonameId": "7730105", + "latitudeAirport": 18.575731, + "longitudeAirport": -69.98144, + "nameAirport": "Dr.Joaquin Balaguer", + "nameCountry": "Dominican Republic", + "phone": "", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "-6", + "airportId": 3456, + "codeIataAirport": "JBR", + "codeIataCity": "JBR", + "codeIcaoAirport": "KJBR", + "codeIso2Country": "US", + "geonameId": "4116847", + "latitudeAirport": 35.83, + "longitudeAirport": -90.64833, + "nameAirport": "Jonesboro", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 3457, + "codeIataAirport": "JBS", + "codeIataCity": "JBS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 37.699722, + "longitudeAirport": -121.9, + "nameAirport": "Hacienda Bus.Park Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-9", + "airportId": 3458, + "codeIataAirport": "JBT", + "codeIataCity": "BET", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5880571", + "latitudeAirport": 60.8, + "longitudeAirport": -161.75, + "nameAirport": "City Landing", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 3459, + "codeIataAirport": "JCA", + "codeIataCity": "CEQ", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 43.53889, + "longitudeAirport": 7.044444, + "nameAirport": "Croisette Heliport", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-3", + "airportId": 3460, + "codeIataAirport": "JCB", + "codeIataCity": "JCB", + "codeIcaoAirport": "SSJA", + "codeIso2Country": "BR", + "geonameId": "7668474", + "latitudeAirport": -27.166668, + "longitudeAirport": -51.516666, + "nameAirport": "Joacaba", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "airportId": 3461, + "codeIataAirport": "JCC", + "codeIataCity": "SFO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 37.75, + "longitudeAirport": -122.416664, + "nameAirport": "China Basin Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "airportId": 3462, + "codeIataAirport": "JCD", + "codeIataCity": "STX", + "codeIcaoAirport": "", + "codeIso2Country": "VI", + "geonameId": "0", + "latitudeAirport": 17.7, + "longitudeAirport": -64.78333, + "nameAirport": "Downtown Heliport", + "nameCountry": "U.S. Virgin Islands", + "phone": "", + "timezone": "America/St_Thomas" + }, + { + "GMT": "-8", + "airportId": 3463, + "codeIataAirport": "JCE", + "codeIataCity": "OAK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 37.816666, + "longitudeAirport": -122.26667, + "nameAirport": "Convention Center Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "airportId": 3464, + "codeIataAirport": "JCH", + "codeIataCity": "JCH", + "codeIcaoAirport": "BGCH", + "codeIso2Country": "GL", + "geonameId": "3420768", + "latitudeAirport": 68.81515, + "longitudeAirport": -51.20133, + "nameAirport": "Qasigiannguit", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "-6", + "airportId": 3465, + "codeIataAirport": "JCI", + "codeIataCity": "MKC", + "codeIcaoAirport": "KIXD", + "codeIso2Country": "US", + "geonameId": "4273642", + "latitudeAirport": 38.833332, + "longitudeAirport": -94.9, + "nameAirport": "New Century Aircenter Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "airportId": 3466, + "codeIataAirport": "JCJ", + "codeIataCity": "CJU", + "codeIcaoAirport": "", + "codeIso2Country": "KR", + "geonameId": "0", + "latitudeAirport": 33.944443, + "longitudeAirport": 126.32778, + "nameAirport": "Chuja Heliport", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "10", + "airportId": 3467, + "codeIataAirport": "JCK", + "codeIataCity": "JCK", + "codeIcaoAirport": "YJLC", + "codeIso2Country": "AU", + "geonameId": "7731134", + "latitudeAirport": -20.583332, + "longitudeAirport": 141.7, + "nameAirport": "Julia Creek", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "airportId": 3468, + "codeIataAirport": "JCM", + "codeIataCity": "JCM", + "codeIcaoAirport": "SNJB", + "codeIso2Country": "BR", + "geonameId": "7731135", + "latitudeAirport": -11.183333, + "longitudeAirport": -40.516666, + "nameAirport": "Jacobina", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "9", + "airportId": 3469, + "codeIataAirport": "JCN", + "codeIataCity": "JCN", + "codeIcaoAirport": "", + "codeIso2Country": "KR", + "geonameId": "1843564", + "latitudeAirport": 37.466667, + "longitudeAirport": 126.6, + "nameAirport": "Incheon Heliport", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "1", + "airportId": 3470, + "codeIataAirport": "JCO", + "codeIataCity": "JCO", + "codeIcaoAirport": "", + "codeIso2Country": "MT", + "geonameId": "0", + "latitudeAirport": 36.016666, + "longitudeAirport": 14.333333, + "nameAirport": "Heliport", + "nameCountry": "Malta", + "phone": "", + "timezone": "Europe/Malta" + }, + { + "GMT": "-3", + "airportId": 3471, + "codeIataAirport": "JCR", + "codeIataCity": "JCR", + "codeIcaoAirport": "SBEK", + "codeIso2Country": "BR", + "geonameId": "6300621", + "latitudeAirport": -5.983333, + "longitudeAirport": -57.533333, + "nameAirport": "Jacareacanga", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Santarem" + }, + { + "GMT": "-6", + "airportId": 3472, + "codeIataAirport": "JCT", + "codeIataCity": "JCT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.483334, + "longitudeAirport": -99.76667, + "nameAirport": "Kimble County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 3473, + "codeIataAirport": "JCU", + "codeIataCity": "JCU", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "6362987", + "latitudeAirport": 35.899166, + "longitudeAirport": -5.338333, + "nameAirport": "Ceuta Heliport", + "nameCountry": "Spain", + "phone": "", + "timezone": "Africa/Ceuta" + }, + { + "GMT": "-8", + "airportId": 3474, + "codeIataAirport": "JCX", + "codeIataCity": "LAX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.066666, + "longitudeAirport": -118.25, + "nameAirport": "Citicorp Plaza Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 3475, + "codeIataAirport": "JCY", + "codeIataCity": "JCY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.283333, + "longitudeAirport": -98.416664, + "nameAirport": "Johnson", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 3476, + "codeIataAirport": "JDA", + "codeIataCity": "JDA", + "codeIcaoAirport": "KGCD", + "codeIso2Country": "US", + "geonameId": "6457343", + "latitudeAirport": 44.416668, + "longitudeAirport": -118.95, + "nameAirport": "John Day", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 3477, + "codeIataAirport": "JDB", + "codeIataCity": "DFW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.766666, + "longitudeAirport": -97.316666, + "nameAirport": "Downtown Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 3478, + "codeIataAirport": "JDF", + "codeIataCity": "JDF", + "codeIcaoAirport": "SBJF", + "codeIso2Country": "BR", + "geonameId": "6301854", + "latitudeAirport": -21.75, + "longitudeAirport": -43.333332, + "nameAirport": "Francisco De Assis", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "9", + "airportId": 3479, + "codeIataAirport": "JDG", + "codeIataCity": "JDG", + "codeIcaoAirport": "RKPD", + "codeIso2Country": "KR", + "geonameId": "8224621", + "latitudeAirport": 33.3972, + "longitudeAirport": 126.71288, + "nameAirport": "Jeongseok", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "5.30", + "airportId": 3480, + "codeIataAirport": "JDH", + "codeIataCity": "JDH", + "codeIcaoAirport": "VIJO", + "codeIso2Country": "IN", + "geonameId": "6301100", + "latitudeAirport": 26.263948, + "longitudeAirport": 73.05055, + "nameAirport": "Jodhpur", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "airportId": 3481, + "codeIataAirport": "JDM", + "codeIataCity": "MIA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 25.75, + "longitudeAirport": -80.25, + "nameAirport": "Miami Downtown Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 3482, + "codeIataAirport": "JDN", + "codeIataCity": "JDN", + "codeIcaoAirport": "KJDN", + "codeIso2Country": "US", + "geonameId": "5659997", + "latitudeAirport": 47.316666, + "longitudeAirport": -106.88333, + "nameAirport": "Jordan", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-3", + "airportId": 3483, + "codeIataAirport": "JDO", + "codeIataCity": "JDO", + "codeIcaoAirport": "SNQY", + "codeIso2Country": "BR", + "geonameId": "0", + "latitudeAirport": -7.2, + "longitudeAirport": -39.316666, + "nameAirport": "Regional Do Cariri", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "1", + "airportId": 3484, + "codeIataAirport": "JDP", + "codeIataCity": "PAR", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 48.816666, + "longitudeAirport": 2.283333, + "nameAirport": "Heliport De Paris", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-3", + "airportId": 3485, + "codeIataAirport": "JDR", + "codeIataCity": "JDR", + "codeIcaoAirport": "SNJR", + "codeIso2Country": "BR", + "geonameId": "7873770", + "latitudeAirport": -21.087957, + "longitudeAirport": -44.2301, + "nameAirport": "Sao Joao Del Rei", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "airportId": 3486, + "codeIataAirport": "JDT", + "codeIataCity": "MSP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 44.983334, + "longitudeAirport": -93.26667, + "nameAirport": "Downtown Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 3487, + "codeIataAirport": "JDX", + "codeIataCity": "HOU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 29.766666, + "longitudeAirport": -95.333336, + "nameAirport": "Central Bus. District", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 3488, + "codeIataAirport": "JDY", + "codeIataCity": "JDY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.933334, + "longitudeAirport": -118.11667, + "nameAirport": "Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 3489, + "codeIataAirport": "JDZ", + "codeIataCity": "JDZ", + "codeIcaoAirport": "ZSJD", + "codeIso2Country": "CN", + "geonameId": "7730294", + "latitudeAirport": 29.33549, + "longitudeAirport": 117.17879, + "nameAirport": "Jingdezhen", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "airportId": 3490, + "codeIataAirport": "JED", + "codeIataCity": "JED", + "codeIcaoAirport": "OEJN", + "codeIso2Country": "SA", + "geonameId": "6300018", + "latitudeAirport": 21.670233, + "longitudeAirport": 39.150578, + "nameAirport": "King Abdulaziz International", + "nameCountry": "Saudi Arabia", + "phone": "920011233", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-5", + "airportId": 3491, + "codeIataAirport": "JEE", + "codeIataCity": "JEE", + "codeIcaoAirport": "MTJE", + "codeIso2Country": "HT", + "geonameId": "3723595", + "latitudeAirport": 18.662222, + "longitudeAirport": -74.16972, + "nameAirport": "Jeremie", + "nameCountry": "Haiti", + "phone": "", + "timezone": "America/Port-au-Prince" + }, + { + "GMT": "-6", + "airportId": 3492, + "codeIataAirport": "JEF", + "codeIataCity": "JEF", + "codeIcaoAirport": "KJEF", + "codeIso2Country": "US", + "geonameId": "4392390", + "latitudeAirport": 38.59222, + "longitudeAirport": -92.15639, + "nameAirport": "Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 3493, + "codeIataAirport": "JEG", + "codeIataCity": "JEG", + "codeIcaoAirport": "BGEM", + "codeIso2Country": "GL", + "geonameId": "6295694", + "latitudeAirport": 68.7, + "longitudeAirport": -52.75, + "nameAirport": "Aasiaat", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "12", + "airportId": 3494, + "codeIataAirport": "JEJ", + "codeIataCity": "JEJ", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "2080636", + "latitudeAirport": 7.569916, + "longitudeAirport": 168.96513, + "nameAirport": "Jeh", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-8", + "airportId": 3495, + "codeIataAirport": "JEM", + "codeIataCity": "JEM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 37.833332, + "longitudeAirport": -122.3, + "nameAirport": "Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "airportId": 3496, + "codeIataAirport": "JEQ", + "codeIataCity": "JEQ", + "codeIcaoAirport": "SNJK", + "codeIso2Country": "BR", + "geonameId": "7731136", + "latitudeAirport": -13.85, + "longitudeAirport": -40.083332, + "nameAirport": "Jequie", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "0", + "airportId": 3497, + "codeIataAirport": "JER", + "codeIataCity": "JER", + "codeIcaoAirport": "EGJJ", + "codeIso2Country": "JE", + "geonameId": "6296595", + "latitudeAirport": 49.205296, + "longitudeAirport": -2.194344, + "nameAirport": "Jersey", + "nameCountry": "Jersey", + "phone": "", + "timezone": "Europe/Jersey" + }, + { + "GMT": "-5", + "airportId": 3498, + "codeIataAirport": "JFK", + "codeIataCity": "NYC", + "codeIcaoAirport": "KJFK", + "codeIso2Country": "US", + "geonameId": "5122732", + "latitudeAirport": 40.642334, + "longitudeAirport": -73.78817, + "nameAirport": "John F Kennedy International", + "nameCountry": "United States", + "phone": "718-244-4444", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 3499, + "codeIataAirport": "JFM", + "codeIataCity": "JFM", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2071223", + "latitudeAirport": -32.05, + "longitudeAirport": 115.75, + "nameAirport": "Heliport", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "airportId": 3500, + "codeIataAirport": "JFN", + "codeIataCity": "JFN", + "codeIcaoAirport": "KHZY", + "codeIso2Country": "US", + "geonameId": "5146093", + "latitudeAirport": 41.733334, + "longitudeAirport": -80.76667, + "nameAirport": "Ashtabula", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 3501, + "codeIataAirport": "JFR", + "codeIataCity": "JFR", + "codeIcaoAirport": "BGFH", + "codeIso2Country": "GL", + "geonameId": "6295695", + "latitudeAirport": 62.00028, + "longitudeAirport": -49.70028, + "nameAirport": "Frederikshab", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "5.30", + "airportId": 3502, + "codeIataAirport": "JGA", + "codeIataCity": "JGA", + "codeIcaoAirport": "VAJM", + "codeIso2Country": "IN", + "geonameId": "7668572", + "latitudeAirport": 22.463333, + "longitudeAirport": 70.01195, + "nameAirport": "Govardhanpur", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "airportId": 3503, + "codeIataAirport": "JGB", + "codeIataCity": "JGB", + "codeIcaoAirport": "VE46", + "codeIso2Country": "IN", + "geonameId": "7668585", + "latitudeAirport": 19.066668, + "longitudeAirport": 82.03333, + "nameAirport": "Jagdalpur", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-7", + "airportId": 3504, + "codeIataAirport": "JGC", + "codeIataCity": "GCN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 35.951942, + "longitudeAirport": -112.1475, + "nameAirport": "Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "8", + "airportId": 3505, + "codeIataAirport": "JGD", + "codeIataCity": "JGD", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "8181798", + "latitudeAirport": 50.370556, + "longitudeAirport": 124.11667, + "nameAirport": "Jiagedaqi", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9", + "airportId": 3506, + "codeIataAirport": "JGE", + "codeIataCity": "JGE", + "codeIcaoAirport": "", + "codeIso2Country": "KR", + "geonameId": "0", + "latitudeAirport": 34.9, + "longitudeAirport": 128.68333, + "nameAirport": "Heliport", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "-5", + "airportId": 3507, + "codeIataAirport": "JGL", + "codeIataCity": "ATL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.886112, + "longitudeAirport": -84.46694, + "nameAirport": "Galleria Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 3508, + "codeIataAirport": "JGN", + "codeIataCity": "JGN", + "codeIcaoAirport": "ZLJQ", + "codeIso2Country": "CN", + "geonameId": "7910205", + "latitudeAirport": 39.833332, + "longitudeAirport": 98.416664, + "nameAirport": "Jiayuguan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-3", + "airportId": 3509, + "codeIataAirport": "JGO", + "codeIataCity": "JGO", + "codeIcaoAirport": "BGGN", + "codeIso2Country": "GL", + "geonameId": "3420635", + "latitudeAirport": 69.25, + "longitudeAirport": -53.566666, + "nameAirport": "Qeqertarsuaq", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "-6", + "airportId": 3510, + "codeIataAirport": "JGP", + "codeIataCity": "HOU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 29.666668, + "longitudeAirport": -95.25, + "nameAirport": "Greenway Plaza Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 3511, + "codeIataAirport": "JGQ", + "codeIataCity": "HOU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 29.766666, + "longitudeAirport": -95.46667, + "nameAirport": "Transco Twr Galleria", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 3512, + "codeIataAirport": "JGR", + "codeIataCity": "JGR", + "codeIcaoAirport": "", + "codeIso2Country": "GL", + "geonameId": "0", + "latitudeAirport": 61.233334, + "longitudeAirport": -48.1, + "nameAirport": "Heliport", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "8", + "airportId": 3513, + "codeIataAirport": "JGS", + "codeIataCity": "JGS", + "codeIcaoAirport": "ZSJA", + "codeIso2Country": "CN", + "geonameId": "7910201", + "latitudeAirport": 26.899721, + "longitudeAirport": 114.7375, + "nameAirport": "Ji An/Jing Gang Shan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-8", + "airportId": 3514, + "codeIataAirport": "JGX", + "codeIataCity": "JGX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.166668, + "longitudeAirport": -118.28333, + "nameAirport": "Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 3515, + "codeIataAirport": "JHB", + "codeIataCity": "JHB", + "codeIcaoAirport": "WMKJ", + "codeIso2Country": "MY", + "geonameId": "6301879", + "latitudeAirport": 1.638889, + "longitudeAirport": 103.67083, + "nameAirport": "Sultan Ismail International", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "-5", + "airportId": 3516, + "codeIataAirport": "JHC", + "codeIataCity": "JHC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.783333, + "longitudeAirport": -74.1, + "nameAirport": "Island Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 3517, + "codeIataAirport": "JHE", + "codeIataCity": "AGH", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 56.033333, + "longitudeAirport": 12.7, + "nameAirport": "Heliport", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "8", + "airportId": 3518, + "codeIataAirport": "JHG", + "codeIataCity": "JHG", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "7668801", + "latitudeAirport": 21.973421, + "longitudeAirport": 100.76646, + "nameAirport": "Gasa", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-7", + "airportId": 3519, + "codeIataAirport": "JHL", + "codeIataCity": "HZP", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298921", + "latitudeAirport": 57.22389, + "longitudeAirport": -111.41889, + "nameAirport": "Albian", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-10", + "airportId": 3520, + "codeIataAirport": "JHM", + "codeIataCity": "JHM", + "codeIcaoAirport": "PHJH", + "codeIso2Country": "US", + "geonameId": "5848366", + "latitudeAirport": 20.962194, + "longitudeAirport": -156.67569, + "nameAirport": "Kapalua West Maui", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "-3", + "airportId": 3521, + "codeIataAirport": "JHS", + "codeIataCity": "JHS", + "codeIcaoAirport": "BGHB", + "codeIso2Country": "GL", + "geonameId": "3419842", + "latitudeAirport": 66.93694, + "longitudeAirport": -53.704166, + "nameAirport": "Sisimiut", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "-5", + "airportId": 3522, + "codeIataAirport": "JHW", + "codeIataCity": "JHW", + "codeIcaoAirport": "KJHW", + "codeIso2Country": "US", + "geonameId": "6298490", + "latitudeAirport": 42.150555, + "longitudeAirport": -79.25806, + "nameAirport": "Jamestown", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 3523, + "codeIataAirport": "JHY", + "codeIataCity": "JHY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.36667, + "longitudeAirport": -71.102776, + "nameAirport": "Hyatt Regency Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "airportId": 3524, + "codeIataAirport": "JIA", + "codeIataCity": "JIA", + "codeIcaoAirport": "SWJN", + "codeIso2Country": "BR", + "geonameId": "7731138", + "latitudeAirport": -11.5, + "longitudeAirport": -58.88333, + "nameAirport": "Juina", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "3", + "airportId": 3525, + "codeIataAirport": "JIB", + "codeIataCity": "JIB", + "codeIcaoAirport": "HDAM", + "codeIso2Country": "DJ", + "geonameId": "6301550", + "latitudeAirport": 11.552361, + "longitudeAirport": 43.149677, + "nameAirport": "Ambouli", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Djibouti" + }, + { + "GMT": "8", + "airportId": 3526, + "codeIataAirport": "JIC", + "codeIataCity": "JIC", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "8260126", + "latitudeAirport": 38.541943, + "longitudeAirport": 102.34861, + "nameAirport": "Jinchuan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-8", + "airportId": 3527, + "codeIataAirport": "JID", + "codeIataCity": "LAX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.0, + "longitudeAirport": -118.0, + "nameAirport": "City Of Industry Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "airportId": 3528, + "codeIataAirport": "JIJ", + "codeIataCity": "JIJ", + "codeIcaoAirport": "HAJJ", + "codeIso2Country": "ET", + "geonameId": "7910383", + "latitudeAirport": 9.366667, + "longitudeAirport": 42.766666, + "nameAirport": "Jigiga", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "2", + "airportId": 3529, + "codeIataAirport": "JIK", + "codeIataCity": "JIK", + "codeIcaoAirport": "LGIK", + "codeIso2Country": "GR", + "geonameId": "7668311", + "latitudeAirport": 37.666668, + "longitudeAirport": 26.333332, + "nameAirport": "Ikaria", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "8", + "airportId": 3530, + "codeIataAirport": "JIL", + "codeIataCity": "JIL", + "codeIcaoAirport": "ZYJL", + "codeIso2Country": "CN", + "geonameId": "7731139", + "latitudeAirport": 43.86667, + "longitudeAirport": 126.65, + "nameAirport": "Jilin", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "airportId": 3531, + "codeIataAirport": "JIM", + "codeIataCity": "JIM", + "codeIcaoAirport": "HAJM", + "codeIso2Country": "ET", + "geonameId": "6297273", + "latitudeAirport": 7.654444, + "longitudeAirport": 36.82111, + "nameAirport": "Jimma", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "3", + "airportId": 3532, + "codeIataAirport": "JIN", + "codeIataCity": "JIN", + "codeIcaoAirport": "HUJI", + "codeIso2Country": "UG", + "geonameId": "6297377", + "latitudeAirport": 0.456389, + "longitudeAirport": 33.192223, + "nameAirport": "Jinja", + "nameCountry": "Uganda", + "phone": "", + "timezone": "Africa/Kampala" + }, + { + "GMT": "-8", + "airportId": 3533, + "codeIataAirport": "JIO", + "codeIataCity": "ONT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.066666, + "longitudeAirport": -117.65, + "nameAirport": "International Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 3534, + "codeIataAirport": "JIP", + "codeIataCity": "JIP", + "codeIcaoAirport": "SEJI", + "codeIso2Country": "EC", + "geonameId": "7731140", + "latitudeAirport": -1.0, + "longitudeAirport": -80.666664, + "nameAirport": "Jipijapa", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "8", + "airportId": 3535, + "codeIataAirport": "JIQ", + "codeIataCity": "JIQ", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "8260757", + "latitudeAirport": 29.517557, + "longitudeAirport": 108.829185, + "nameAirport": "Wulingshan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "5.45", + "airportId": 3536, + "codeIataAirport": "JIR", + "codeIataCity": "JIR", + "codeIcaoAirport": "VNJI", + "codeIso2Country": "NP", + "geonameId": "7731141", + "latitudeAirport": 27.633333, + "longitudeAirport": 86.23333, + "nameAirport": "Jiri", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "8", + "airportId": 3537, + "codeIataAirport": "JIU", + "codeIataCity": "JIU", + "codeIcaoAirport": "ZSJJ", + "codeIso2Country": "CN", + "geonameId": "7731142", + "latitudeAirport": 29.7, + "longitudeAirport": 115.96667, + "nameAirport": "Jiujiang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "5", + "airportId": 3538, + "codeIataAirport": "JIW", + "codeIataCity": "JIW", + "codeIcaoAirport": "OPJI", + "codeIso2Country": "PK", + "geonameId": "6300110", + "latitudeAirport": 25.083332, + "longitudeAirport": 61.816666, + "nameAirport": "Jiwani", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "11", + "airportId": 3539, + "codeIataAirport": "JJA", + "codeIataCity": "JJA", + "codeIcaoAirport": "", + "codeIso2Country": "SB", + "geonameId": "8298941", + "latitudeAirport": -8.21666, + "longitudeAirport": 159.26666, + "nameAirport": "Jajao", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-5", + "airportId": 3540, + "codeIataAirport": "JJI", + "codeIataCity": "JJI", + "codeIcaoAirport": "SPJI", + "codeIso2Country": "PE", + "geonameId": "6300808", + "latitudeAirport": -7.15, + "longitudeAirport": -76.71667, + "nameAirport": "Juanjui", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "3", + "airportId": 3541, + "codeIataAirport": "JJM", + "codeIataCity": "JJM", + "codeIcaoAirport": "HKMK", + "codeIso2Country": "KE", + "geonameId": "8260992", + "latitudeAirport": 0.233194, + "longitudeAirport": 38.183334, + "nameAirport": "Mulika Lodge", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "8", + "airportId": 3542, + "codeIataAirport": "JJN", + "codeIataCity": "JJN", + "codeIcaoAirport": "ZSQZ", + "codeIso2Country": "CN", + "geonameId": "6740278", + "latitudeAirport": 24.802809, + "longitudeAirport": 118.587296, + "nameAirport": "Jinjiang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-3", + "airportId": 3543, + "codeIataAirport": "JJU", + "codeIataCity": "JJU", + "codeIcaoAirport": "BGJH", + "codeIso2Country": "GL", + "geonameId": "6295699", + "latitudeAirport": 60.716667, + "longitudeAirport": -46.033333, + "nameAirport": "Heliport", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "1", + "airportId": 3544, + "codeIataAirport": "JKG", + "codeIataCity": "JKG", + "codeIcaoAirport": "ESGJ", + "codeIso2Country": "SE", + "geonameId": "2702980", + "latitudeAirport": 57.7501, + "longitudeAirport": 14.070497, + "nameAirport": "Axamo", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "2", + "airportId": 3545, + "codeIataAirport": "JKH", + "codeIataCity": "JKH", + "codeIcaoAirport": "LGHI", + "codeIso2Country": "GR", + "geonameId": "6299487", + "latitudeAirport": 38.345795, + "longitudeAirport": 26.142336, + "nameAirport": "Chios", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "2", + "airportId": 3546, + "codeIataAirport": "JKL", + "codeIataCity": "JKL", + "codeIcaoAirport": "LGKY", + "codeIso2Country": "GR", + "geonameId": "8299117", + "latitudeAirport": 36.963333, + "longitudeAirport": 26.940556, + "nameAirport": "Kalymnos Island", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "5.45", + "airportId": 3547, + "codeIataAirport": "JKR", + "codeIataCity": "JKR", + "codeIcaoAirport": "VNJP", + "codeIso2Country": "NP", + "geonameId": "7668620", + "latitudeAirport": 26.708332, + "longitudeAirport": 85.92389, + "nameAirport": "Janakpur", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-6", + "airportId": 3548, + "codeIataAirport": "JKV", + "codeIataCity": "JKV", + "codeIcaoAirport": "KJSO", + "codeIso2Country": "US", + "geonameId": "4700550", + "latitudeAirport": 31.966667, + "longitudeAirport": -95.333336, + "nameAirport": "Cherokee County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 3549, + "codeIataAirport": "JLA", + "codeIataCity": "JLA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 60.483334, + "longitudeAirport": -149.85, + "nameAirport": "Quartz Creek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "airportId": 3550, + "codeIataAirport": "JLB", + "codeIataCity": "LGB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.8175, + "longitudeAirport": -118.15111, + "nameAirport": "Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 3551, + "codeIataAirport": "JLD", + "codeIataCity": "JLD", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "2697720", + "latitudeAirport": 56.05, + "longitudeAirport": 12.7, + "nameAirport": "Heliport", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-6", + "airportId": 3552, + "codeIataAirport": "JLH", + "codeIataCity": "JLH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.083332, + "longitudeAirport": -87.98333, + "nameAirport": "US Army Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 3553, + "codeIataAirport": "JLN", + "codeIataCity": "JLN", + "codeIcaoAirport": "KJLN", + "codeIso2Country": "US", + "geonameId": "6298492", + "latitudeAirport": 37.149723, + "longitudeAirport": -94.49778, + "nameAirport": "Joplin Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5.30", + "airportId": 3554, + "codeIataAirport": "JLR", + "codeIataCity": "JLR", + "codeIcaoAirport": "VAJB", + "codeIso2Country": "IN", + "geonameId": "6301039", + "latitudeAirport": 22.666668, + "longitudeAirport": 79.925, + "nameAirport": "Jabalpur", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-3", + "airportId": 3555, + "codeIataAirport": "JLS", + "codeIataCity": "JLS", + "codeIcaoAirport": "SDJL", + "codeIso2Country": "BR", + "geonameId": "7731143", + "latitudeAirport": -20.166668, + "longitudeAirport": -50.55, + "nameAirport": "Jales", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "airportId": 3556, + "codeIataAirport": "JLX", + "codeIataCity": "LAX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.166668, + "longitudeAirport": -118.333336, + "nameAirport": "Union Station Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 3557, + "codeIataAirport": "JMA", + "codeIataCity": "HOU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 29.983334, + "longitudeAirport": -95.34, + "nameAirport": "Marriot Astrodome", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 3558, + "codeIataAirport": "JMB", + "codeIataCity": "JMB", + "codeIcaoAirport": "", + "codeIso2Country": "AO", + "geonameId": "7731144", + "latitudeAirport": -14.7, + "longitudeAirport": 16.083332, + "nameAirport": "Jamba", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-8", + "airportId": 3559, + "codeIataAirport": "JMC", + "codeIataCity": "JMC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5393611", + "latitudeAirport": 37.878613, + "longitudeAirport": -122.50972, + "nameAirport": "Marin County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 3560, + "codeIataAirport": "JMD", + "codeIataCity": "DFW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.8, + "longitudeAirport": -97.333336, + "nameAirport": "Market Centre Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 3561, + "codeIataAirport": "JMH", + "codeIataCity": "JMH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4910713", + "latitudeAirport": 42.033333, + "longitudeAirport": -88.083336, + "nameAirport": "Marriott Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 3562, + "codeIataAirport": "JMK", + "codeIataCity": "JMK", + "codeIcaoAirport": "LGMK", + "codeIso2Country": "GR", + "geonameId": "6299500", + "latitudeAirport": 37.43611, + "longitudeAirport": 25.344444, + "nameAirport": "Mikonos", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "1", + "airportId": 3563, + "codeIataAirport": "JMM", + "codeIataCity": "MMA", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 55.6, + "longitudeAirport": 13.0, + "nameAirport": "Malmo Harbour Heliport", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-6", + "airportId": 3564, + "codeIataAirport": "JMN", + "codeIataCity": "MKT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 44.166668, + "longitudeAirport": -94.01667, + "nameAirport": "Municipal Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5.45", + "airportId": 3565, + "codeIataAirport": "JMO", + "codeIataCity": "JMO", + "codeIcaoAirport": "VNJS", + "codeIso2Country": "NP", + "geonameId": "7910492", + "latitudeAirport": 28.783333, + "longitudeAirport": 83.73333, + "nameAirport": "Jomsom", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-6", + "airportId": 3566, + "codeIataAirport": "JMS", + "codeIataCity": "JMS", + "codeIcaoAirport": "KJMS", + "codeIso2Country": "US", + "geonameId": "5059843", + "latitudeAirport": 46.93, + "longitudeAirport": -98.67833, + "nameAirport": "Jamestown", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 3567, + "codeIataAirport": "JMU", + "codeIataCity": "JMU", + "codeIcaoAirport": "ZYJM", + "codeIso2Country": "CN", + "geonameId": "7668813", + "latitudeAirport": 46.845394, + "longitudeAirport": 130.45541, + "nameAirport": "Jiamusi", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "0", + "airportId": 3568, + "codeIataAirport": "JMY", + "codeIataCity": "FNA", + "codeIcaoAirport": "", + "codeIso2Country": "SL", + "geonameId": "0", + "latitudeAirport": 8.483333, + "longitudeAirport": -13.266667, + "nameAirport": "Mammy Yoko Heliport", + "nameCountry": "Sierra Leone", + "phone": "", + "timezone": "Africa/Freetown" + }, + { + "GMT": "-3", + "airportId": 3569, + "codeIataAirport": "JNA", + "codeIataCity": "JNA", + "codeIcaoAirport": "SNJN", + "codeIso2Country": "BR", + "geonameId": "7731145", + "latitudeAirport": -15.474167, + "longitudeAirport": -44.385834, + "nameAirport": "Januaria", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "2", + "airportId": 3570, + "codeIataAirport": "JNB", + "codeIataCity": "JNB", + "codeIcaoAirport": "FAJS", + "codeIso2Country": "ZA", + "geonameId": "993986", + "latitudeAirport": -26.132664, + "longitudeAirport": 28.231314, + "nameAirport": "Oliver Reginald Tambo International (Jan Smuts International)", + "nameCountry": "South Africa", + "phone": "+27 (0) 11 92", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "8", + "airportId": 3571, + "codeIataAirport": "JNG", + "codeIataCity": "JNG", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "7910176", + "latitudeAirport": 35.416668, + "longitudeAirport": 116.53333, + "nameAirport": "Jining", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 3572, + "codeIataAirport": "JNH", + "codeIataCity": "DFW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.816666, + "longitudeAirport": -97.35, + "nameAirport": "North Park Inn Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 3573, + "codeIataAirport": "JNI", + "codeIataCity": "JNI", + "codeIcaoAirport": "SAAJ", + "codeIso2Country": "AR", + "geonameId": "6300511", + "latitudeAirport": -34.583332, + "longitudeAirport": -60.966667, + "nameAirport": "Junin", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "4", + "airportId": 3574, + "codeIataAirport": "JNJ", + "codeIataCity": "JNJ", + "codeIcaoAirport": "", + "codeIso2Country": "OM", + "geonameId": "8394117", + "latitudeAirport": 19.49653, + "longitudeAirport": 57.62861, + "nameAirport": "Jaaluni", + "nameCountry": "Oman", + "phone": "", + "timezone": "Asia/Muscat" + }, + { + "GMT": "-3", + "airportId": 3575, + "codeIataAirport": "JNN", + "codeIataCity": "JNN", + "codeIcaoAirport": "BGNN", + "codeIso2Country": "GL", + "geonameId": "3421765", + "latitudeAirport": 60.134167, + "longitudeAirport": -45.233612, + "nameAirport": "Nanortalik", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "-8", + "airportId": 3576, + "codeIataAirport": "JNP", + "codeIataCity": "JNP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5376890", + "latitudeAirport": 33.61667, + "longitudeAirport": -117.933334, + "nameAirport": "Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "airportId": 3577, + "codeIataAirport": "JNS", + "codeIataCity": "JNS", + "codeIcaoAirport": "BGNS", + "codeIso2Country": "GL", + "geonameId": "7668095", + "latitudeAirport": 60.916668, + "longitudeAirport": -46.05, + "nameAirport": "Heliport", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "-9", + "airportId": 3578, + "codeIataAirport": "JNU", + "codeIataCity": "JNU", + "codeIcaoAirport": "PAJN", + "codeIso2Country": "US", + "geonameId": "5554082", + "latitudeAirport": 58.35932, + "longitudeAirport": -134.58339, + "nameAirport": "Boundary Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Juneau" + }, + { + "GMT": "2", + "airportId": 3579, + "codeIataAirport": "JNX", + "codeIataCity": "JNX", + "codeIcaoAirport": "LGNX", + "codeIso2Country": "GR", + "geonameId": "6299502", + "latitudeAirport": 37.1, + "longitudeAirport": 25.383333, + "nameAirport": "Naxos Airport", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "8", + "airportId": 3580, + "codeIataAirport": "JNZ", + "codeIataCity": "JNZ", + "codeIcaoAirport": "ZYJZ", + "codeIso2Country": "CN", + "geonameId": "7730309", + "latitudeAirport": 41.11667, + "longitudeAirport": 121.01667, + "nameAirport": "Jinzhou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-8", + "airportId": 3581, + "codeIataAirport": "JOC", + "codeIataCity": "SNA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.666668, + "longitudeAirport": -117.869446, + "nameAirport": "Centerport Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "airportId": 3582, + "codeIataAirport": "JOE", + "codeIataCity": "JOE", + "codeIcaoAirport": "EFJO", + "codeIso2Country": "FI", + "geonameId": "6296544", + "latitudeAirport": 62.656788, + "longitudeAirport": 29.61354, + "nameAirport": "Joensuu", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "7", + "airportId": 3583, + "codeIataAirport": "JOG", + "codeIataCity": "JOG", + "codeIcaoAirport": "WIIJ", + "codeIso2Country": "ID", + "geonameId": "6301225", + "latitudeAirport": -7.785572, + "longitudeAirport": 110.43706, + "nameAirport": "Adisutjipto", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "2", + "airportId": 3584, + "codeIataAirport": "JOH", + "codeIataCity": "JOH", + "codeIcaoAirport": "FAPJ", + "codeIso2Country": "ZA", + "geonameId": "6296920", + "latitudeAirport": -31.616667, + "longitudeAirport": 29.533333, + "nameAirport": "Port Saint Johns", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-3", + "airportId": 3585, + "codeIataAirport": "JOI", + "codeIataCity": "JOI", + "codeIcaoAirport": "SBJV", + "codeIso2Country": "BR", + "geonameId": "6453440", + "latitudeAirport": -26.233334, + "longitudeAirport": -48.783333, + "nameAirport": "Lauro Carneiro De Loyola", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-7", + "airportId": 3586, + "codeIataAirport": "JOJ", + "codeIataCity": "UZM", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Doris Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Cambridge_Bay" + }, + { + "GMT": "3", + "airportId": 3587, + "codeIataAirport": "JOK", + "codeIataCity": "JOK", + "codeIcaoAirport": "UWKJ", + "codeIso2Country": "RU", + "geonameId": "7730206", + "latitudeAirport": 56.716667, + "longitudeAirport": 47.9, + "nameAirport": "Yoshkar-Ola", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "8", + "airportId": 3588, + "codeIataAirport": "JOL", + "codeIataCity": "JOL", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "0", + "latitudeAirport": 6.055278, + "longitudeAirport": 121.00889, + "nameAirport": "Jolo", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "3", + "airportId": 3589, + "codeIataAirport": "JOM", + "codeIataCity": "JOM", + "codeIcaoAirport": "", + "codeIso2Country": "TZ", + "geonameId": "151479", + "latitudeAirport": -9.354444, + "longitudeAirport": 34.77139, + "nameAirport": "Njombe", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "10", + "airportId": 3590, + "codeIataAirport": "JOP", + "codeIataCity": "JOP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2095227", + "latitudeAirport": -4.75, + "longitudeAirport": 145.01666, + "nameAirport": "Josephstaal", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "airportId": 3591, + "codeIataAirport": "JOR", + "codeIataCity": "JOR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.783333, + "longitudeAirport": -117.85, + "nameAirport": "The City Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 3592, + "codeIataAirport": "JOS", + "codeIataCity": "JOS", + "codeIcaoAirport": "DNJO", + "codeIso2Country": "NG", + "geonameId": "2335953", + "latitudeAirport": 9.868056, + "longitudeAirport": 8.893056, + "nameAirport": "Jos", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-6", + "airportId": 3593, + "codeIataAirport": "JOT", + "codeIataCity": "JOT", + "codeIcaoAirport": "KJOT", + "codeIso2Country": "US", + "geonameId": "6298495", + "latitudeAirport": 41.533333, + "longitudeAirport": -88.083336, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 3594, + "codeIataAirport": "JPA", + "codeIataCity": "JPA", + "codeIcaoAirport": "SBJP", + "codeIso2Country": "BR", + "geonameId": "6300635", + "latitudeAirport": -7.145357, + "longitudeAirport": -34.94816, + "nameAirport": "Castro Pinto", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-8", + "airportId": 3595, + "codeIataAirport": "JPD", + "codeIataCity": "JPD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.15, + "longitudeAirport": -118.15, + "nameAirport": "Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 3596, + "codeIataAirport": "JPN", + "codeIataCity": "WAS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.766666, + "longitudeAirport": -77.066666, + "nameAirport": "Pentagon Army", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "airportId": 3597, + "codeIataAirport": "JPR", + "codeIataCity": "JPR", + "codeIcaoAirport": "SWJI", + "codeIso2Country": "BR", + "geonameId": "7731146", + "latitudeAirport": -10.870556, + "longitudeAirport": -61.84667, + "nameAirport": "Ji-Parana", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Porto_Velho" + }, + { + "GMT": "-6", + "airportId": 3598, + "codeIataAirport": "JPT", + "codeIataCity": "HOU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 29.786388, + "longitudeAirport": -95.81167, + "nameAirport": "Park Ten Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 3599, + "codeIataAirport": "JPU", + "codeIataCity": "PAR", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 48.86667, + "longitudeAirport": 2.333333, + "nameAirport": "La Defense Heliport", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-3", + "airportId": 3600, + "codeIataAirport": "JQA", + "codeIataCity": "JQA", + "codeIcaoAirport": "BGUQ", + "codeIso2Country": "GL", + "geonameId": "7668099", + "latitudeAirport": 70.73194, + "longitudeAirport": -52.702778, + "nameAirport": "Qaarsut", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "-5", + "airportId": 3601, + "codeIataAirport": "JQE", + "codeIataCity": "JQE", + "codeIcaoAirport": "MPJE", + "codeIso2Country": "PA", + "geonameId": "7730673", + "latitudeAirport": 7.5, + "longitudeAirport": -78.166664, + "nameAirport": "Jaque", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "3", + "airportId": 3602, + "codeIataAirport": "JQF", + "codeIataCity": "MOW", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "0", + "latitudeAirport": 35.402084, + "longitudeAirport": -80.79714, + "nameAirport": "Savelovsky Railway Station", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "3", + "airportId": 3603, + "codeIataAirport": "JQO", + "codeIataCity": "MOW", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "0", + "latitudeAirport": 55.755786, + "longitudeAirport": 37.617633, + "nameAirport": "Belorussky Railway Station", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-5", + "airportId": 3604, + "codeIataAirport": "JRA", + "codeIataCity": "NYC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.75, + "longitudeAirport": -74.0075, + "nameAirport": "West 30th St Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 3605, + "codeIataAirport": "JRB", + "codeIataCity": "NYC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.704166, + "longitudeAirport": -74.00833, + "nameAirport": "Downtown Manhattan Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 3606, + "codeIataAirport": "JRC", + "codeIataCity": "RST", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 44.016666, + "longitudeAirport": -92.46667, + "nameAirport": "Municipalcipal Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 3607, + "codeIataAirport": "JRD", + "codeIataCity": "RAL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.983334, + "longitudeAirport": -117.36667, + "nameAirport": "Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 3608, + "codeIataAirport": "JRE", + "codeIataCity": "NYC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.754166, + "longitudeAirport": -73.97083, + "nameAirport": "East 60th Street Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-10", + "airportId": 3609, + "codeIataAirport": "JRF", + "codeIataCity": "JRF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Kalaeloa", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "5.30", + "airportId": 3610, + "codeIataAirport": "JRH", + "codeIataCity": "JRH", + "codeIcaoAirport": "VEJT", + "codeIso2Country": "IN", + "geonameId": "7668590", + "latitudeAirport": 26.734484, + "longitudeAirport": 94.1849, + "nameAirport": "Rowriah", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-3", + "airportId": 3611, + "codeIataAirport": "JRK", + "codeIataCity": "JRK", + "codeIcaoAirport": "", + "codeIso2Country": "GL", + "geonameId": "3424452", + "latitudeAirport": 61.166668, + "longitudeAirport": -48.416668, + "nameAirport": "Arsuk", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "-4", + "airportId": 3612, + "codeIataAirport": "JRN", + "codeIataCity": "JRN", + "codeIcaoAirport": "SWJU", + "codeIso2Country": "BR", + "geonameId": "7731147", + "latitudeAirport": -10.305556, + "longitudeAirport": -58.488888, + "nameAirport": "Juruena", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "3", + "airportId": 3613, + "codeIataAirport": "JRO", + "codeIataCity": "JRO", + "codeIcaoAirport": "HTKJ", + "codeIso2Country": "TZ", + "geonameId": "6297358", + "latitudeAirport": -3.424123, + "longitudeAirport": 37.065342, + "nameAirport": "Kilimanjaro", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "5.30", + "airportId": 3614, + "codeIataAirport": "JSA", + "codeIataCity": "JSA", + "codeIcaoAirport": "VIJR", + "codeIso2Country": "IN", + "geonameId": "7730217", + "latitudeAirport": 26.916668, + "longitudeAirport": 70.9, + "nameAirport": "Jaisalmer", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "airportId": 3615, + "codeIataAirport": "JSD", + "codeIataCity": "JSD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.2, + "longitudeAirport": -73.13333, + "nameAirport": "Sikorsky Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "airportId": 3616, + "codeIataAirport": "JSG", + "codeIataCity": "SRF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 37.966667, + "longitudeAirport": -122.53333, + "nameAirport": "San Rafael Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "airportId": 3617, + "codeIataAirport": "JSH", + "codeIataCity": "JSH", + "codeIcaoAirport": "LGST", + "codeIso2Country": "GR", + "geonameId": "7668316", + "latitudeAirport": 35.216667, + "longitudeAirport": 26.116667, + "nameAirport": "Sitia", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "2", + "airportId": 3618, + "codeIataAirport": "JSI", + "codeIataCity": "JSI", + "codeIcaoAirport": "LGSK", + "codeIso2Country": "GR", + "geonameId": "6299508", + "latitudeAirport": 39.180557, + "longitudeAirport": 23.505556, + "nameAirport": "Skiathos", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "-6", + "airportId": 3619, + "codeIataAirport": "JSK", + "codeIataCity": "STC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 45.55, + "longitudeAirport": -94.166664, + "nameAirport": "Municipalcipal Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 3620, + "codeIataAirport": "JSL", + "codeIataCity": "AIY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.333332, + "longitudeAirport": -74.45, + "nameAirport": "Steel Pier Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 3621, + "codeIataAirport": "JSM", + "codeIataCity": "JSM", + "codeIcaoAirport": "SAWS", + "codeIso2Country": "AR", + "geonameId": "7730776", + "latitudeAirport": -44.066666, + "longitudeAirport": -70.433334, + "nameAirport": "Jose De San Martin", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "-8", + "airportId": 3622, + "codeIataAirport": "JSN", + "codeIataCity": "LAX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.066666, + "longitudeAirport": -118.25, + "nameAirport": "Sherman Oaks Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 3623, + "codeIataAirport": "JSO", + "codeIataCity": "JSO", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 59.2, + "longitudeAirport": 17.65, + "nameAirport": "Sodertalje Heliport", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "9", + "airportId": 3624, + "codeIataAirport": "JSP", + "codeIataCity": "CJU", + "codeIcaoAirport": "", + "codeIso2Country": "KR", + "geonameId": "0", + "latitudeAirport": 33.483334, + "longitudeAirport": 126.566666, + "nameAirport": "Seogwipo Heliport", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "6", + "airportId": 3625, + "codeIataAirport": "JSR", + "codeIataCity": "JSR", + "codeIcaoAirport": "VGJR", + "codeIso2Country": "BD", + "geonameId": "6301084", + "latitudeAirport": 23.17696, + "longitudeAirport": 89.160645, + "nameAirport": "Jessore", + "nameCountry": "Bangladesh", + "phone": "", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "-5", + "airportId": 3626, + "codeIataAirport": "JST", + "codeIataCity": "JST", + "codeIcaoAirport": "KJST", + "codeIso2Country": "US", + "geonameId": "5195569", + "latitudeAirport": 40.316666, + "longitudeAirport": -78.83444, + "nameAirport": "Cambria County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 3627, + "codeIataAirport": "JSU", + "codeIataCity": "JSU", + "codeIcaoAirport": "BGMQ", + "codeIso2Country": "GL", + "geonameId": "7668093", + "latitudeAirport": 65.416664, + "longitudeAirport": -52.9, + "nameAirport": "Heliport", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "2", + "airportId": 3628, + "codeIataAirport": "JSY", + "codeIataCity": "JSY", + "codeIcaoAirport": "LGSO", + "codeIso2Country": "GR", + "geonameId": "6299510", + "latitudeAirport": 37.42361, + "longitudeAirport": 24.95, + "nameAirport": "Syros Island", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "-3", + "airportId": 3629, + "codeIataAirport": "JTC", + "codeIataCity": "JTC", + "codeIcaoAirport": "SJTC", + "codeIso2Country": "BR", + "geonameId": "7910484", + "latitudeAirport": -22.165958, + "longitudeAirport": -49.07229, + "nameAirport": "Arealva", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-3", + "airportId": 3630, + "codeIataAirport": "JTI", + "codeIataCity": "JTI", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "0", + "latitudeAirport": -17.829445, + "longitudeAirport": -51.774723, + "nameAirport": "Jatai", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "airportId": 3631, + "codeIataAirport": "JTO", + "codeIataCity": "JTO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.166668, + "longitudeAirport": -118.833336, + "nameAirport": "Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "airportId": 3632, + "codeIataAirport": "JTR", + "codeIataCity": "JTR", + "codeIcaoAirport": "LGSR", + "codeIso2Country": "GR", + "geonameId": "6299511", + "latitudeAirport": 36.4, + "longitudeAirport": 25.483334, + "nameAirport": "Santorini (Thira)", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "2", + "airportId": 3633, + "codeIataAirport": "JTY", + "codeIataCity": "JTY", + "codeIcaoAirport": "LGPL", + "codeIso2Country": "GR", + "geonameId": "7668314", + "latitudeAirport": 36.566666, + "longitudeAirport": 26.366667, + "nameAirport": "Astypalaia", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "-4", + "airportId": 3634, + "codeIataAirport": "JUA", + "codeIataCity": "JUA", + "codeIcaoAirport": "SIZX", + "codeIso2Country": "BR", + "geonameId": "6317397", + "latitudeAirport": -11.333333, + "longitudeAirport": -57.466667, + "nameAirport": "Juara", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "3", + "airportId": 3635, + "codeIataAirport": "JUB", + "codeIataCity": "JUB", + "codeIcaoAirport": "HSSJ", + "codeIso2Country": "SS", + "geonameId": "6297348", + "latitudeAirport": 4.866198, + "longitudeAirport": 31.601692, + "nameAirport": "Juba", + "nameCountry": "South Sudan", + "phone": "", + "timezone": "Africa/Juba" + }, + { + "GMT": "-8", + "airportId": 3636, + "codeIataAirport": "JUC", + "codeIataCity": "LAX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.083332, + "longitudeAirport": -118.26667, + "nameAirport": "Universal City Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 3637, + "codeIataAirport": "JUH", + "codeIataCity": "JUH", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 30.7402777778, + "longitudeAirport": 117.6866666667, + "nameAirport": "Jiuhuashan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 3638, + "codeIataAirport": "JUI", + "codeIataCity": "JUI", + "codeIcaoAirport": "EDWJ", + "codeIso2Country": "DE", + "geonameId": "2894569", + "latitudeAirport": 53.683334, + "longitudeAirport": 7.066667, + "nameAirport": "Juist", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-3", + "airportId": 3639, + "codeIataAirport": "JUJ", + "codeIataCity": "JUJ", + "codeIcaoAirport": "SASJ", + "codeIso2Country": "AR", + "geonameId": "6300555", + "latitudeAirport": -24.4, + "longitudeAirport": -65.083336, + "nameAirport": "El Cadillal", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Jujuy" + }, + { + "GMT": "-5", + "airportId": 3640, + "codeIataAirport": "JUL", + "codeIataCity": "JUL", + "codeIcaoAirport": "SPJL", + "codeIso2Country": "PE", + "geonameId": "6300809", + "latitudeAirport": -15.464167, + "longitudeAirport": -70.15444, + "nameAirport": "Juliaca", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "5.45", + "airportId": 3641, + "codeIataAirport": "JUM", + "codeIataCity": "JUM", + "codeIcaoAirport": "VNJL", + "codeIso2Country": "NP", + "geonameId": "6301874", + "latitudeAirport": 29.273611, + "longitudeAirport": 82.19194, + "nameAirport": "Jumla", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "10", + "airportId": 3642, + "codeIataAirport": "JUN", + "codeIataCity": "JUN", + "codeIcaoAirport": "YJDA", + "codeIso2Country": "AU", + "geonameId": "7731149", + "latitudeAirport": -24.833332, + "longitudeAirport": 143.06667, + "nameAirport": "Jundah", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 3643, + "codeIataAirport": "JUO", + "codeIataCity": "JUO", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8298901", + "latitudeAirport": 7.116667, + "longitudeAirport": -77.75, + "nameAirport": "Jurado", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-8", + "airportId": 3644, + "codeIataAirport": "JUP", + "codeIataCity": "CCB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.1, + "longitudeAirport": -117.63333, + "nameAirport": "Cable Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 3645, + "codeIataAirport": "JUR", + "codeIataCity": "JUR", + "codeIcaoAirport": "YJNB", + "codeIso2Country": "AU", + "geonameId": "7731150", + "latitudeAirport": -30.266666, + "longitudeAirport": 115.05, + "nameAirport": "Jurien Bay", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "airportId": 3646, + "codeIataAirport": "JUT", + "codeIataCity": "JUT", + "codeIcaoAirport": "MHJU", + "codeIso2Country": "HN", + "geonameId": "7730659", + "latitudeAirport": 14.673333, + "longitudeAirport": -86.29305, + "nameAirport": "Juticalpa", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-3", + "airportId": 3647, + "codeIataAirport": "JUV", + "codeIataCity": "JUV", + "codeIcaoAirport": "BGUK", + "codeIso2Country": "GL", + "geonameId": "7668097", + "latitudeAirport": 72.78528, + "longitudeAirport": -56.150833, + "nameAirport": "Heliport", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "8", + "airportId": 3648, + "codeIataAirport": "JUZ", + "codeIataCity": "JUZ", + "codeIcaoAirport": "ZSJU", + "codeIso2Country": "CN", + "geonameId": "7730295", + "latitudeAirport": 28.966667, + "longitudeAirport": 118.833336, + "nameAirport": "Juzhou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "airportId": 3649, + "codeIataAirport": "JVA", + "codeIataCity": "JVA", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1072915", + "latitudeAirport": -18.8, + "longitudeAirport": 45.283333, + "nameAirport": "Ankavandra", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-5", + "airportId": 3650, + "codeIataAirport": "JVI", + "codeIataCity": "JVI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5100104", + "latitudeAirport": 42.783333, + "longitudeAirport": -104.61667, + "nameAirport": "Central Jersey Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 3651, + "codeIataAirport": "JVL", + "codeIataCity": "JVL", + "codeIcaoAirport": "KJVL", + "codeIso2Country": "US", + "geonameId": "5269210", + "latitudeAirport": 42.683334, + "longitudeAirport": -89.01667, + "nameAirport": "Rock County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 3652, + "codeIataAirport": "JWA", + "codeIataCity": "JWA", + "codeIcaoAirport": "FBJW", + "codeIso2Country": "BW", + "geonameId": "6296945", + "latitudeAirport": -24.6, + "longitudeAirport": 24.666668, + "nameAirport": "Jwaneng", + "nameCountry": "Botswana", + "phone": "", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "-8", + "airportId": 3653, + "codeIataAirport": "JWC", + "codeIataCity": "LAX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.066666, + "longitudeAirport": -118.25, + "nameAirport": "Warner Cntr Bus. Plaza", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 3654, + "codeIataAirport": "JWH", + "codeIataCity": "HOU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 29.73611, + "longitudeAirport": -95.41778, + "nameAirport": "Westchase Hilton Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 3655, + "codeIataAirport": "JWL", + "codeIataCity": "HOU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.150557, + "longitudeAirport": -95.47139, + "nameAirport": "Woodlawns", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3.30", + "airportId": 3656, + "codeIataAirport": "JWN", + "codeIataCity": "JWN", + "codeIcaoAirport": "OITZ", + "codeIso2Country": "IR", + "geonameId": "6300081", + "latitudeAirport": 36.774418, + "longitudeAirport": 48.369854, + "nameAirport": "Zanjan", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "8", + "airportId": 3657, + "codeIataAirport": "JXA", + "codeIataCity": "JXA", + "codeIcaoAirport": "ZYJX", + "codeIso2Country": "CN", + "geonameId": "8260742", + "latitudeAirport": 45.306084, + "longitudeAirport": 130.99675, + "nameAirport": "Xingkaihu", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 3658, + "codeIataAirport": "JXN", + "codeIataCity": "JXN", + "codeIcaoAirport": "KJXN", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.25889, + "longitudeAirport": -84.46139, + "nameAirport": "Reynolds Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "3.30", + "airportId": 3659, + "codeIataAirport": "JYR", + "codeIataCity": "JYR", + "codeIcaoAirport": "OIKJ", + "codeIso2Country": "IR", + "geonameId": "6925521", + "latitudeAirport": 28.716667, + "longitudeAirport": 57.666668, + "nameAirport": "Jiroft", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "2", + "airportId": 3660, + "codeIataAirport": "JYV", + "codeIataCity": "JYV", + "codeIcaoAirport": "EFJY", + "codeIso2Country": "FI", + "geonameId": "6296545", + "latitudeAirport": 62.40362, + "longitudeAirport": 25.68143, + "nameAirport": "Jyvaskyla", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "8", + "airportId": 3661, + "codeIataAirport": "JZH", + "codeIataCity": "JZH", + "codeIcaoAirport": "ZUJZ", + "codeIso2Country": "CN", + "geonameId": "7910162", + "latitudeAirport": 32.856667, + "longitudeAirport": 103.68306, + "nameAirport": "Jiu Zhai Huang Long", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "airportId": 3662, + "codeIataAirport": "KAA", + "codeIataCity": "KAA", + "codeIcaoAirport": "FLKS", + "codeIso2Country": "ZM", + "geonameId": "6297012", + "latitudeAirport": -10.215833, + "longitudeAirport": 31.13, + "nameAirport": "Kasama", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "2", + "airportId": 3663, + "codeIataAirport": "KAB", + "codeIataCity": "KAB", + "codeIcaoAirport": "FVKB", + "codeIso2Country": "ZW", + "geonameId": "6297111", + "latitudeAirport": -16.518333, + "longitudeAirport": 28.885279, + "nameAirport": "Kariba", + "nameCountry": "Zimbabwe", + "phone": "", + "timezone": "Africa/Harare" + }, + { + "GMT": "2", + "airportId": 3664, + "codeIataAirport": "KAC", + "codeIataCity": "KAC", + "codeIcaoAirport": "OSKL", + "codeIso2Country": "SY", + "geonameId": "6300130", + "latitudeAirport": 37.031025, + "longitudeAirport": 41.20556, + "nameAirport": "Kameshli", + "nameCountry": "Syria", + "phone": "", + "timezone": "Asia/Damascus" + }, + { + "GMT": "1", + "airportId": 3665, + "codeIataAirport": "KAD", + "codeIataCity": "KAD", + "codeIcaoAirport": "DNKA", + "codeIso2Country": "NG", + "geonameId": "2335727", + "latitudeAirport": 10.595833, + "longitudeAirport": 7.440278, + "nameAirport": "Kaduna", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-9", + "airportId": 3666, + "codeIataAirport": "KAE", + "codeIataCity": "KAE", + "codeIcaoAirport": "PAFE", + "codeIso2Country": "US", + "geonameId": "7910229", + "latitudeAirport": 56.966667, + "longitudeAirport": -133.95, + "nameAirport": "SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "10", + "airportId": 3667, + "codeIataAirport": "KAF", + "codeIataCity": "KAF", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260833", + "latitudeAirport": -6.283333, + "longitudeAirport": 155.35, + "nameAirport": "Karato", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "airportId": 3668, + "codeIataAirport": "KAG", + "codeIataCity": "KAG", + "codeIcaoAirport": "RKNN", + "codeIso2Country": "KR", + "geonameId": "6300421", + "latitudeAirport": 37.75222, + "longitudeAirport": 128.94972, + "nameAirport": "Gangneung", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "10", + "airportId": 3669, + "codeIataAirport": "KAH", + "codeIataCity": "MEL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -37.816666, + "longitudeAirport": 144.96666, + "nameAirport": "City Heliport", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-4", + "airportId": 3670, + "codeIataAirport": "KAI", + "codeIataCity": "KAI", + "codeIcaoAirport": "PKSA", + "codeIso2Country": "GY", + "geonameId": "7730145", + "latitudeAirport": 5.883333, + "longitudeAirport": -60.619446, + "nameAirport": "Kaieteur", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "2", + "airportId": 3671, + "codeIataAirport": "KAJ", + "codeIataCity": "KAJ", + "codeIcaoAirport": "EFKI", + "codeIso2Country": "FI", + "geonameId": "6296548", + "latitudeAirport": 64.27778, + "longitudeAirport": 27.688889, + "nameAirport": "Kajaani", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "10", + "airportId": 3672, + "codeIataAirport": "KAK", + "codeIataCity": "KAK", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2094643", + "latitudeAirport": -4.666667, + "longitudeAirport": 146.0, + "nameAirport": "Kar", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 3673, + "codeIataAirport": "KAL", + "codeIataCity": "KAL", + "codeIcaoAirport": "PAKV", + "codeIso2Country": "US", + "geonameId": "5865722", + "latitudeAirport": 64.321945, + "longitudeAirport": -158.73611, + "nameAirport": "Kaltag", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "airportId": 3674, + "codeIataAirport": "KAM", + "codeIataCity": "KAM", + "codeIcaoAirport": "", + "codeIso2Country": "YE", + "geonameId": "0", + "latitudeAirport": 15.35, + "longitudeAirport": 41.666668, + "nameAirport": "Kamaran Island", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "1", + "airportId": 3675, + "codeIataAirport": "KAN", + "codeIataCity": "KAN", + "codeIcaoAirport": "DNKN", + "codeIso2Country": "NG", + "geonameId": "2335204", + "latitudeAirport": 12.045549, + "longitudeAirport": 8.522271, + "nameAirport": "Aminu Kano International Airport", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "2", + "airportId": 3676, + "codeIataAirport": "KAO", + "codeIataCity": "KAO", + "codeIcaoAirport": "EFKS", + "codeIso2Country": "FI", + "geonameId": "6296550", + "latitudeAirport": 65.99028, + "longitudeAirport": 29.233889, + "nameAirport": "Kuusamo", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "2", + "airportId": 3677, + "codeIataAirport": "KAP", + "codeIataCity": "KAP", + "codeIcaoAirport": "FZSK", + "codeIso2Country": "CD", + "geonameId": "7730570", + "latitudeAirport": -8.5, + "longitudeAirport": 22.666668, + "nameAirport": "Kapanga", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "10", + "airportId": 3678, + "codeIataAirport": "KAQ", + "codeIataCity": "KAQ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260832", + "latitudeAirport": -8.133333, + "longitudeAirport": 146.81667, + "nameAirport": "Kamulai", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "airportId": 3679, + "codeIataAirport": "KAR", + "codeIataCity": "KAR", + "codeIcaoAirport": "SYKM", + "codeIso2Country": "GY", + "geonameId": "7731151", + "latitudeAirport": 5.883333, + "longitudeAirport": -60.61667, + "nameAirport": "Kamarang", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "2", + "airportId": 3680, + "codeIataAirport": "KAS", + "codeIataCity": "KAS", + "codeIcaoAirport": "", + "codeIso2Country": "NA", + "geonameId": "3356343", + "latitudeAirport": -28.0, + "longitudeAirport": 18.733334, + "nameAirport": "Karasburg", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "12", + "airportId": 3681, + "codeIataAirport": "KAT", + "codeIataCity": "KAT", + "codeIcaoAirport": "NZKT", + "codeIso2Country": "NZ", + "geonameId": "6228827", + "latitudeAirport": -35.066284, + "longitudeAirport": 173.28542, + "nameAirport": "Kaitaia", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "2", + "airportId": 3682, + "codeIataAirport": "KAU", + "codeIataCity": "KAU", + "codeIcaoAirport": "EFKA", + "codeIso2Country": "FI", + "geonameId": "6296546", + "latitudeAirport": 63.1, + "longitudeAirport": 23.083332, + "nameAirport": "Kauhava", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-4", + "airportId": 3683, + "codeIataAirport": "KAV", + "codeIataCity": "KAV", + "codeIcaoAirport": "SVKA", + "codeIso2Country": "VE", + "geonameId": "7731152", + "latitudeAirport": 5.666667, + "longitudeAirport": -61.766666, + "nameAirport": "Kavanayen", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "6.30", + "airportId": 3684, + "codeIataAirport": "KAW", + "codeIataCity": "KAW", + "codeIcaoAirport": "VYKT", + "codeIso2Country": "MM", + "geonameId": "7668658", + "latitudeAirport": 10.05, + "longitudeAirport": 98.51667, + "nameAirport": "Kawthaung", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "8", + "airportId": 3685, + "codeIataAirport": "KAX", + "codeIataCity": "KAX", + "codeIcaoAirport": "YKBR", + "codeIso2Country": "AU", + "geonameId": "7668726", + "latitudeAirport": -27.866667, + "longitudeAirport": 114.13333, + "nameAirport": "Kalbarri", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "12", + "airportId": 3686, + "codeIataAirport": "KAY", + "codeIataCity": "KAY", + "codeIcaoAirport": "NFNW", + "codeIso2Country": "FJ", + "geonameId": "7730691", + "latitudeAirport": -17.041111, + "longitudeAirport": 178.56612, + "nameAirport": "Wakaya Island", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "9", + "airportId": 3687, + "codeIataAirport": "KAZ", + "codeIataCity": "KAZ", + "codeIcaoAirport": "WAMK", + "codeIso2Country": "ID", + "geonameId": "7731153", + "latitudeAirport": 1.166667, + "longitudeAirport": 127.86667, + "nameAirport": "Kau", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "0", + "airportId": 3688, + "codeIataAirport": "KBA", + "codeIataCity": "KBA", + "codeIcaoAirport": "GFKB", + "codeIso2Country": "SL", + "geonameId": "7730578", + "latitudeAirport": 9.333333, + "longitudeAirport": -12.0, + "nameAirport": "Kabala", + "nameCountry": "Sierra Leone", + "phone": "", + "timezone": "Africa/Freetown" + }, + { + "GMT": "9.30", + "airportId": 3689, + "codeIataAirport": "KBB", + "codeIataCity": "KBB", + "codeIcaoAirport": "YKIR", + "codeIso2Country": "AU", + "geonameId": "7731154", + "latitudeAirport": -17.766666, + "longitudeAirport": 129.21666, + "nameAirport": "Kirkimbie", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-9", + "airportId": 3690, + "codeIataAirport": "KBC", + "codeIataCity": "KBC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5857431", + "latitudeAirport": 66.26667, + "longitudeAirport": -145.8, + "nameAirport": "Birch Creek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 3691, + "codeIataAirport": "KBD", + "codeIataCity": "KBD", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731155", + "latitudeAirport": -17.333332, + "longitudeAirport": 124.35, + "nameAirport": "Kimberley Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-9", + "airportId": 3692, + "codeIataAirport": "KBE", + "codeIataCity": "KBE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 55.929443, + "longitudeAirport": -131.57, + "nameAirport": "Hot Springs SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "9", + "airportId": 3693, + "codeIataAirport": "KBF", + "codeIataCity": "KBF", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731156", + "latitudeAirport": -3.716667, + "longitudeAirport": 138.45, + "nameAirport": "Karubaga", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "3", + "airportId": 3694, + "codeIataAirport": "KBG", + "codeIataCity": "KBG", + "codeIcaoAirport": "HUKF", + "codeIso2Country": "UG", + "geonameId": "7668304", + "latitudeAirport": 2.329444, + "longitudeAirport": 31.49639, + "nameAirport": "Kabalega Falls", + "nameCountry": "Uganda", + "phone": "", + "timezone": "Africa/Kampala" + }, + { + "GMT": "5", + "airportId": 3695, + "codeIataAirport": "KBH", + "codeIataCity": "KBH", + "codeIcaoAirport": "", + "codeIso2Country": "PK", + "geonameId": "1342927", + "latitudeAirport": 29.133333, + "longitudeAirport": 66.51667, + "nameAirport": "Kalat", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "1", + "airportId": 3696, + "codeIataAirport": "KBI", + "codeIataCity": "KBI", + "codeIcaoAirport": "FKKB", + "codeIso2Country": "CM", + "geonameId": "6296996", + "latitudeAirport": 2.95, + "longitudeAirport": 9.916667, + "nameAirport": "Kribi", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "9.30", + "airportId": 3697, + "codeIataAirport": "KBJ", + "codeIataCity": "KBJ", + "codeIcaoAirport": "YKCA", + "codeIso2Country": "AU", + "geonameId": "6354960", + "latitudeAirport": -24.25, + "longitudeAirport": 131.49445, + "nameAirport": "Kings Canyon", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-9", + "airportId": 3698, + "codeIataAirport": "KBK", + "codeIataCity": "KBK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8298751", + "latitudeAirport": 57.666668, + "longitudeAirport": -136.16667, + "nameAirport": "Klag Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "4.30", + "airportId": 3699, + "codeIataAirport": "KBL", + "codeIataCity": "KBL", + "codeIcaoAirport": "OAKB", + "codeIso2Country": "AF", + "geonameId": "1454002", + "latitudeAirport": 34.56069, + "longitudeAirport": 69.21152, + "nameAirport": "Khwaja Rawash", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "10", + "airportId": 3700, + "codeIataAirport": "KBM", + "codeIataCity": "KBM", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2095130", + "latitudeAirport": -6.166667, + "longitudeAirport": 147.16667, + "nameAirport": "Kabwum", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "airportId": 3701, + "codeIataAirport": "KBN", + "codeIataCity": "KBN", + "codeIcaoAirport": "FZWT", + "codeIso2Country": "CD", + "geonameId": "7730576", + "latitudeAirport": -6.116667, + "longitudeAirport": 24.533333, + "nameAirport": "Kabinda", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "2", + "airportId": 3702, + "codeIataAirport": "KBO", + "codeIataCity": "KBO", + "codeIcaoAirport": "FZRM", + "codeIso2Country": "CD", + "geonameId": "7730569", + "latitudeAirport": -6.088056, + "longitudeAirport": 26.916668, + "nameAirport": "Kabalo", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "2", + "airportId": 3703, + "codeIataAirport": "KBP", + "codeIataCity": "IEV", + "codeIcaoAirport": "UKBB", + "codeIso2Country": "UA", + "geonameId": "6300952", + "latitudeAirport": 50.341244, + "longitudeAirport": 30.895206, + "nameAirport": "Boryspil (Borispol)", + "nameCountry": "Ukraine", + "phone": "(044) 363-777", + "timezone": "Europe/Kiev" + }, + { + "GMT": "2", + "airportId": 3704, + "codeIataAirport": "KBQ", + "codeIataCity": "KBQ", + "codeIcaoAirport": "FWKG", + "codeIso2Country": "MW", + "geonameId": "7668262", + "latitudeAirport": -33.466667, + "longitudeAirport": 13.016667, + "nameAirport": "Kasungu", + "nameCountry": "Malawi", + "phone": "", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "8", + "airportId": 3705, + "codeIataAirport": "KBR", + "codeIataCity": "KBR", + "codeIcaoAirport": "WMKC", + "codeIso2Country": "MY", + "geonameId": "6301253", + "latitudeAirport": 6.17057, + "longitudeAirport": 102.29092, + "nameAirport": "Sultan Ismail Petra", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "0", + "airportId": 3706, + "codeIataAirport": "KBS", + "codeIataCity": "KBS", + "codeIcaoAirport": "GFBO", + "codeIso2Country": "SL", + "geonameId": "7668278", + "latitudeAirport": 7.943889, + "longitudeAirport": -11.761944, + "nameAirport": "Bo", + "nameCountry": "Sierra Leone", + "phone": "", + "timezone": "Africa/Freetown" + }, + { + "GMT": "12", + "airportId": 3707, + "codeIataAirport": "KBT", + "codeIataCity": "KBT", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 9.166667, + "longitudeAirport": 170.91667, + "nameAirport": "Kaben", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "8", + "airportId": 3708, + "codeIataAirport": "KBU", + "codeIataCity": "KBU", + "codeIcaoAirport": "WRBK", + "codeIso2Country": "ID", + "geonameId": "6301264", + "latitudeAirport": -3.333333, + "longitudeAirport": 116.333336, + "nameAirport": "Kotabaru", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "7", + "airportId": 3709, + "codeIataAirport": "KBV", + "codeIataCity": "KBV", + "codeIcaoAirport": "VTSG", + "codeIso2Country": "TH", + "geonameId": "6452616", + "latitudeAirport": 8.097281, + "longitudeAirport": 98.98062, + "nameAirport": "Krabi", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-9", + "airportId": 3710, + "codeIataAirport": "KBW", + "codeIataCity": "KCL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5859196", + "latitudeAirport": 56.283333, + "longitudeAirport": -158.38333, + "nameAirport": "Chignik Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "9", + "airportId": 3711, + "codeIataAirport": "KBX", + "codeIataCity": "KBX", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731157", + "latitudeAirport": -1.0, + "longitudeAirport": 132.25, + "nameAirport": "Kambuaya", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "9.30", + "airportId": 3712, + "codeIataAirport": "KBY", + "codeIataCity": "KBY", + "codeIcaoAirport": "UWWW", + "codeIso2Country": "AU", + "geonameId": "7668727", + "latitudeAirport": -33.0, + "longitudeAirport": 134.0, + "nameAirport": "Streaky Bay", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "12", + "airportId": 3713, + "codeIataAirport": "KBZ", + "codeIataCity": "KBZ", + "codeIcaoAirport": "NZKI", + "codeIso2Country": "NZ", + "geonameId": "6299988", + "latitudeAirport": -42.416668, + "longitudeAirport": 173.68333, + "nameAirport": "Kaikoura", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "8", + "airportId": 3714, + "codeIataAirport": "KCA", + "codeIataCity": "KCA", + "codeIcaoAirport": "ZWKC", + "codeIso2Country": "CN", + "geonameId": "7668811", + "latitudeAirport": 41.166668, + "longitudeAirport": 83.7, + "nameAirport": "Kuqa", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-3", + "airportId": 3715, + "codeIataAirport": "KCB", + "codeIataCity": "KCB", + "codeIcaoAirport": "", + "codeIso2Country": "SR", + "geonameId": "0", + "latitudeAirport": 3.15, + "longitudeAirport": -55.716667, + "nameAirport": "Tepoe Airstrip", + "nameCountry": "Suriname", + "phone": "", + "timezone": "America/Paramaribo" + }, + { + "GMT": "-9", + "airportId": 3716, + "codeIataAirport": "KCC", + "codeIataCity": "KCC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5845438", + "latitudeAirport": 55.983334, + "longitudeAirport": -132.83333, + "nameAirport": "Coffman Cove SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "9", + "airportId": 3717, + "codeIataAirport": "KCD", + "codeIataCity": "KCD", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731158", + "latitudeAirport": -6.2, + "longitudeAirport": 138.71666, + "nameAirport": "Kamur", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "10", + "airportId": 3718, + "codeIataAirport": "KCE", + "codeIataCity": "KCE", + "codeIcaoAirport": "YCSV", + "codeIso2Country": "AU", + "geonameId": "7731159", + "latitudeAirport": -20.55, + "longitudeAirport": 147.86667, + "nameAirport": "Collinsville", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5", + "airportId": 3719, + "codeIataAirport": "KCF", + "codeIataCity": "KCF", + "codeIcaoAirport": "OPKW", + "codeIso2Country": "PK", + "geonameId": "7731160", + "latitudeAirport": 27.2, + "longitudeAirport": 69.15, + "nameAirport": "Kadanwari", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-9", + "airportId": 3720, + "codeIataAirport": "KCG", + "codeIataCity": "KCL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5859197", + "latitudeAirport": 56.310833, + "longitudeAirport": -158.37361, + "nameAirport": "Fisheries", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 3721, + "codeIataAirport": "KCH", + "codeIataCity": "KCH", + "codeIcaoAirport": "WBGG", + "codeIso2Country": "MY", + "geonameId": "1735634", + "latitudeAirport": 1.484167, + "longitudeAirport": 110.340836, + "nameAirport": "Kuching", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "9", + "airportId": 3722, + "codeIataAirport": "KCI", + "codeIataCity": "KCI", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "0", + "latitudeAirport": -8.35, + "longitudeAirport": 127.05, + "nameAirport": "Kon", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "10", + "airportId": 3723, + "codeIataAirport": "KCJ", + "codeIataCity": "KCJ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2093635", + "latitudeAirport": -7.266667, + "longitudeAirport": 143.6, + "nameAirport": "Komaio", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 3724, + "codeIataAirport": "KCK", + "codeIataCity": "KCK", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "2022083", + "latitudeAirport": 39.158333, + "longitudeAirport": -94.65, + "nameAirport": "Kirensk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Irkutsk" + }, + { + "GMT": "-9", + "airportId": 3725, + "codeIataAirport": "KCL", + "codeIataCity": "KCL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5859203", + "latitudeAirport": 56.308334, + "longitudeAirport": -158.53194, + "nameAirport": "Lagoon", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "airportId": 3726, + "codeIataAirport": "KCM", + "codeIataCity": "KCM", + "codeIcaoAirport": "LTCN", + "codeIso2Country": "TR", + "geonameId": "7591522", + "latitudeAirport": 37.534443, + "longitudeAirport": 36.950558, + "nameAirport": "Kahramanmaras", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-9", + "airportId": 3727, + "codeIataAirport": "KCN", + "codeIataCity": "KCN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5859091", + "latitudeAirport": 53.4, + "longitudeAirport": -167.55, + "nameAirport": "SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "3", + "airportId": 3728, + "codeIataAirport": "KCO", + "codeIataCity": "KCO", + "codeIcaoAirport": "LTBQ", + "codeIso2Country": "TR", + "geonameId": "6299754", + "latitudeAirport": 40.75, + "longitudeAirport": 29.833332, + "nameAirport": "Cengiz Topel", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "2", + "airportId": 3729, + "codeIataAirport": "KCP", + "codeIataCity": "KCP", + "codeIcaoAirport": "", + "codeIso2Country": "UA", + "geonameId": "8298804", + "latitudeAirport": 48.683334, + "longitudeAirport": 26.616667, + "nameAirport": "Kamenets-podolskiy", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-9", + "airportId": 3730, + "codeIataAirport": "KCQ", + "codeIataCity": "KCL", + "codeIcaoAirport": "PAJC", + "codeIso2Country": "US", + "geonameId": "5859206", + "latitudeAirport": 56.261112, + "longitudeAirport": -158.77777, + "nameAirport": "Chignik", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 3731, + "codeIataAirport": "KCR", + "codeIataCity": "KCR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 63.57, + "longitudeAirport": -155.99, + "nameAirport": "Colorado Creek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "9.30", + "airportId": 3732, + "codeIataAirport": "KCS", + "codeIataCity": "KCS", + "codeIcaoAirport": "YKCS", + "codeIso2Country": "AU", + "geonameId": "7731162", + "latitudeAirport": -24.383333, + "longitudeAirport": 131.68333, + "nameAirport": "Kings Creek Station", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "5.30", + "airportId": 3733, + "codeIataAirport": "KCT", + "codeIataCity": "KCT", + "codeIcaoAirport": "VCCK", + "codeIso2Country": "LK", + "geonameId": "7730211", + "latitudeAirport": 5.983056, + "longitudeAirport": 80.33305, + "nameAirport": "Koggala", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "3", + "airportId": 3734, + "codeIataAirport": "KCU", + "codeIataCity": "KCU", + "codeIcaoAirport": "HUMI", + "codeIso2Country": "UG", + "geonameId": "6297382", + "latitudeAirport": 1.683333, + "longitudeAirport": 31.716667, + "nameAirport": "Masindi", + "nameCountry": "Uganda", + "phone": "", + "timezone": "Africa/Kampala" + }, + { + "GMT": "9", + "airportId": 3735, + "codeIataAirport": "KCZ", + "codeIataCity": "KCZ", + "codeIcaoAirport": "RJOK", + "codeIso2Country": "JP", + "geonameId": "6300378", + "latitudeAirport": 33.547688, + "longitudeAirport": 133.67485, + "nameAirport": "Kochi", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "0", + "airportId": 3736, + "codeIataAirport": "KDA", + "codeIataCity": "KDA", + "codeIcaoAirport": "GOGK", + "codeIso2Country": "SN", + "geonameId": "6297222", + "latitudeAirport": 12.883333, + "longitudeAirport": -14.966667, + "nameAirport": "Kolda", + "nameCountry": "Senegal", + "phone": "", + "timezone": "Africa/Dakar" + }, + { + "GMT": "8", + "airportId": 3737, + "codeIataAirport": "KDB", + "codeIataCity": "KDB", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2068792", + "latitudeAirport": -30.0, + "longitudeAirport": 120.0, + "nameAirport": "Kambalda", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "airportId": 3738, + "codeIataAirport": "KDC", + "codeIataCity": "KDC", + "codeIcaoAirport": "DBBK", + "codeIso2Country": "BJ", + "geonameId": "6296400", + "latitudeAirport": 11.116667, + "longitudeAirport": 2.916667, + "nameAirport": "Kandi", + "nameCountry": "Benin", + "phone": "", + "timezone": "Africa/Porto-Novo" + }, + { + "GMT": "5", + "airportId": 3739, + "codeIataAirport": "KDD", + "codeIataCity": "KDD", + "codeIcaoAirport": "OPKH", + "codeIso2Country": "PK", + "geonameId": "7668397", + "latitudeAirport": 27.780556, + "longitudeAirport": 66.630554, + "nameAirport": "Khuzdar", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "10", + "airportId": 3740, + "codeIataAirport": "KDE", + "codeIataCity": "KDE", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2093404", + "latitudeAirport": -5.683333, + "longitudeAirport": 142.73334, + "nameAirport": "Koroba", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "4.30", + "airportId": 3741, + "codeIataAirport": "KDH", + "codeIataCity": "KDH", + "codeIcaoAirport": "OAKN", + "codeIso2Country": "AF", + "geonameId": "0", + "latitudeAirport": 31.506945, + "longitudeAirport": 65.8475, + "nameAirport": "Kandahar", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "8", + "airportId": 3742, + "codeIataAirport": "KDI", + "codeIataCity": "KDI", + "codeIcaoAirport": "WAAU", + "codeIso2Country": "ID", + "geonameId": "6301179", + "latitudeAirport": -4.085501, + "longitudeAirport": 122.409546, + "nameAirport": "Wolter Monginsidi", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "1", + "airportId": 3743, + "codeIataAirport": "KDJ", + "codeIataCity": "KDJ", + "codeIcaoAirport": "FOGJ", + "codeIso2Country": "GA", + "geonameId": "7730527", + "latitudeAirport": -0.15, + "longitudeAirport": 10.766667, + "nameAirport": "Ndjole-Ville", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-9", + "airportId": 3744, + "codeIataAirport": "KDK", + "codeIataCity": "ADQ", + "codeIcaoAirport": "PAKD", + "codeIso2Country": "US", + "geonameId": "5866575", + "latitudeAirport": 57.80722, + "longitudeAirport": -152.37, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 3745, + "codeIataAirport": "KDL", + "codeIataCity": "KDL", + "codeIcaoAirport": "EEKA", + "codeIso2Country": "EE", + "geonameId": "6296535", + "latitudeAirport": 58.983334, + "longitudeAirport": 22.8, + "nameAirport": "Kardla", + "nameCountry": "Estonia", + "phone": "", + "timezone": "Europe/Tallinn" + }, + { + "GMT": "5", + "airportId": 3746, + "codeIataAirport": "KDM", + "codeIataCity": "KDM", + "codeIcaoAirport": "VRMT", + "codeIso2Country": "MV", + "geonameId": "7668643", + "latitudeAirport": 0.491527, + "longitudeAirport": 72.99593, + "nameAirport": "Kaadedhdhoo", + "nameCountry": "Maldives", + "phone": "", + "timezone": "Indian/Maldives" + }, + { + "GMT": "1", + "airportId": 3747, + "codeIataAirport": "KDN", + "codeIataCity": "KDN", + "codeIcaoAirport": "FOGE", + "codeIso2Country": "GA", + "geonameId": "7730523", + "latitudeAirport": -2.5, + "longitudeAirport": 11.166667, + "nameAirport": "Ndende", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "5", + "airportId": 3748, + "codeIataAirport": "KDO", + "codeIataCity": "KDO", + "codeIcaoAirport": "VRMT", + "codeIso2Country": "MV", + "geonameId": "7668642", + "latitudeAirport": 1.883333, + "longitudeAirport": 73.51667, + "nameAirport": "Kadhdhoo", + "nameCountry": "Maldives", + "phone": "", + "timezone": "Indian/Maldives" + }, + { + "GMT": "10", + "airportId": 3749, + "codeIataAirport": "KDP", + "codeIataCity": "KDP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2094756", + "latitudeAirport": -5.866667, + "longitudeAirport": 143.5, + "nameAirport": "Kandep", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 3750, + "codeIataAirport": "KDQ", + "codeIataCity": "KDQ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299210", + "latitudeAirport": -3.605556, + "longitudeAirport": 141.05, + "nameAirport": "Kamberatoro", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 3751, + "codeIataAirport": "KDR", + "codeIataCity": "KDR", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731163", + "latitudeAirport": 41.61667, + "longitudeAirport": 25.333332, + "nameAirport": "Kandrian", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 3752, + "codeIataAirport": "KDS", + "codeIataCity": "KDS", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8299027", + "latitudeAirport": -24.333332, + "longitudeAirport": 139.16667, + "nameAirport": "Kamaran Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "7", + "airportId": 3753, + "codeIataAirport": "KDT", + "codeIataCity": "KDT", + "codeIcaoAirport": "", + "codeIso2Country": "TH", + "geonameId": "0", + "latitudeAirport": 14.1, + "longitudeAirport": 99.916664, + "nameAirport": "Kamphangsaen", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "5", + "airportId": 3754, + "codeIataAirport": "KDU", + "codeIataCity": "KDU", + "codeIcaoAirport": "OPSD", + "codeIso2Country": "PK", + "geonameId": "7668405", + "latitudeAirport": 35.3, + "longitudeAirport": 75.73333, + "nameAirport": "Skardu", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "12", + "airportId": 3755, + "codeIataAirport": "KDV", + "codeIataCity": "KDV", + "codeIcaoAirport": "NFKD", + "codeIso2Country": "FJ", + "geonameId": "6453429", + "latitudeAirport": -19.053968, + "longitudeAirport": 178.15607, + "nameAirport": "Kandavu", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "5.30", + "airportId": 3756, + "codeIataAirport": "KDW", + "codeIataCity": "KDW", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "1241622", + "latitudeAirport": 7.3, + "longitudeAirport": 80.63333, + "nameAirport": "Vic. Resevour Kandy", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "3", + "airportId": 3757, + "codeIataAirport": "KDX", + "codeIataCity": "KDX", + "codeIcaoAirport": "", + "codeIso2Country": "SD", + "geonameId": "373141", + "latitudeAirport": 11.01667, + "longitudeAirport": 29.71667, + "nameAirport": "Kadugli", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "5.30", + "airportId": 3758, + "codeIataAirport": "KDY", + "codeIataCity": "KDY", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "0", + "latitudeAirport": 7.466667, + "longitudeAirport": 80.51667, + "nameAirport": "Mahaweli", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "5.30", + "airportId": 3759, + "codeIataAirport": "KDZ", + "codeIataCity": "KDZ", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "1240994", + "latitudeAirport": 7.330555, + "longitudeAirport": 80.64167, + "nameAirport": "Polgolla Reservoir", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "9", + "airportId": 3760, + "codeIataAirport": "KEA", + "codeIataCity": "KEA", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "0", + "latitudeAirport": -7.033333, + "longitudeAirport": 140.03334, + "nameAirport": "Keisah", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-9", + "airportId": 3761, + "codeIataAirport": "KEB", + "codeIataCity": "KEB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5861694", + "latitudeAirport": 59.35278, + "longitudeAirport": -151.92223, + "nameAirport": "Nanwalek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 3762, + "codeIataAirport": "KEC", + "codeIataCity": "KEC", + "codeIcaoAirport": "FZQG", + "codeIso2Country": "CD", + "geonameId": "7730567", + "latitudeAirport": -10.333333, + "longitudeAirport": 28.75, + "nameAirport": "Kasenga", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "0", + "airportId": 3763, + "codeIataAirport": "KED", + "codeIataCity": "KED", + "codeIcaoAirport": "GQNK", + "codeIso2Country": "MR", + "geonameId": "6297239", + "latitudeAirport": 16.161388, + "longitudeAirport": -13.507778, + "nameAirport": "Kaedi", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "1", + "airportId": 3764, + "codeIataAirport": "KEE", + "codeIataCity": "KEE", + "codeIcaoAirport": "", + "codeIso2Country": "CG", + "geonameId": "0", + "latitudeAirport": -0.083333, + "longitudeAirport": 14.533333, + "nameAirport": "Kelle", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "0", + "airportId": 3765, + "codeIataAirport": "KEF", + "codeIataCity": "REK", + "codeIcaoAirport": "BIKF", + "codeIso2Country": "IS", + "geonameId": "6295710", + "latitudeAirport": 63.997765, + "longitudeAirport": -22.624283, + "nameAirport": "Keflavik International", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "10", + "airportId": 3766, + "codeIataAirport": "KEG", + "codeIataCity": "KEG", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2094273", + "latitudeAirport": -5.8, + "longitudeAirport": 145.08333, + "nameAirport": "Keglsugl", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "airportId": 3767, + "codeIataAirport": "KEH", + "codeIataCity": "KEH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5799589", + "latitudeAirport": 47.755, + "longitudeAirport": -122.25806, + "nameAirport": "Kenmore Air Harbor", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9", + "airportId": 3768, + "codeIataAirport": "KEI", + "codeIataCity": "KEI", + "codeIcaoAirport": "WAKP", + "codeIso2Country": "ID", + "geonameId": "7731165", + "latitudeAirport": -6.566667, + "longitudeAirport": 139.33333, + "nameAirport": "Kepi", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "7", + "airportId": 3769, + "codeIataAirport": "KEJ", + "codeIataCity": "KEJ", + "codeIcaoAirport": "UNEE", + "codeIso2Country": "RU", + "geonameId": "6300984", + "latitudeAirport": 55.280567, + "longitudeAirport": 86.11623, + "nameAirport": "Kemerovo", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Novokuznetsk" + }, + { + "GMT": "-9", + "airportId": 3770, + "codeIataAirport": "KEK", + "codeIataCity": "KEK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5861513", + "latitudeAirport": 59.355278, + "longitudeAirport": -157.4775, + "nameAirport": "Ekwok", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 3771, + "codeIataAirport": "KEL", + "codeIataCity": "KEL", + "codeIcaoAirport": "EDHK", + "codeIso2Country": "DE", + "geonameId": "6296516", + "latitudeAirport": 54.380833, + "longitudeAirport": 10.143333, + "nameAirport": "Kiel-Holtenau", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "2", + "airportId": 3772, + "codeIataAirport": "KEM", + "codeIataCity": "KEM", + "codeIcaoAirport": "EFKE", + "codeIso2Country": "FI", + "geonameId": "6296547", + "latitudeAirport": 65.78006, + "longitudeAirport": 24.57677, + "nameAirport": "Kemi/Tornio", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "0", + "airportId": 3773, + "codeIataAirport": "KEN", + "codeIataCity": "KEN", + "codeIcaoAirport": "GFKE", + "codeIso2Country": "SL", + "geonameId": "7730085", + "latitudeAirport": 7.883333, + "longitudeAirport": -11.183333, + "nameAirport": "Kenema", + "nameCountry": "Sierra Leone", + "phone": "", + "timezone": "Africa/Freetown" + }, + { + "GMT": "0", + "airportId": 3774, + "codeIataAirport": "KEO", + "codeIataCity": "KEO", + "codeIcaoAirport": "DIOD", + "codeIso2Country": "CI", + "geonameId": "6296441", + "latitudeAirport": 9.49, + "longitudeAirport": -7.570833, + "nameAirport": "Odienne", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "5.45", + "airportId": 3775, + "codeIataAirport": "KEP", + "codeIataCity": "KEP", + "codeIcaoAirport": "VNNG", + "codeIso2Country": "NP", + "geonameId": "7668625", + "latitudeAirport": 28.1325, + "longitudeAirport": 81.576385, + "nameAirport": "Nepalganj", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "9", + "airportId": 3776, + "codeIataAirport": "KEQ", + "codeIataCity": "KEQ", + "codeIcaoAirport": "WASE", + "codeIso2Country": "ID", + "geonameId": "7731166", + "latitudeAirport": -5.833333, + "longitudeAirport": 134.83333, + "nameAirport": "Kebar", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "3.30", + "airportId": 3777, + "codeIataAirport": "KER", + "codeIataCity": "KER", + "codeIcaoAirport": "OIKK", + "codeIso2Country": "IR", + "geonameId": "405871", + "latitudeAirport": 30.258778, + "longitudeAirport": 56.96192, + "nameAirport": "Kerman", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-6", + "airportId": 3778, + "codeIataAirport": "KES", + "codeIataCity": "KES", + "codeIcaoAirport": "CZEE", + "codeIso2Country": "CA", + "geonameId": "7730044", + "latitudeAirport": 56.016666, + "longitudeAirport": -96.5, + "nameAirport": "Kelsey", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "6.30", + "airportId": 3779, + "codeIataAirport": "KET", + "codeIataCity": "KET", + "codeIcaoAirport": "VYKG", + "codeIso2Country": "MM", + "geonameId": "7910381", + "latitudeAirport": 21.3, + "longitudeAirport": 99.61667, + "nameAirport": "Keng Tung", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-9", + "airportId": 3780, + "codeIataAirport": "KEU", + "codeIataCity": "KEU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299035", + "latitudeAirport": 67.916664, + "longitudeAirport": -162.28334, + "nameAirport": "Kelly Bar", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "2", + "airportId": 3781, + "codeIataAirport": "KEV", + "codeIataCity": "KEV", + "codeIcaoAirport": "EFHA", + "codeIso2Country": "FI", + "geonameId": "6296538", + "latitudeAirport": 61.583332, + "longitudeAirport": 24.75, + "nameAirport": "Halli", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-6", + "airportId": 3782, + "codeIataAirport": "KEW", + "codeIataCity": "KEW", + "codeIcaoAirport": "CPV8", + "codeIso2Country": "CA", + "geonameId": "7910275", + "latitudeAirport": 52.99222, + "longitudeAirport": -92.83889, + "nameAirport": "Keewaywin", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "10", + "airportId": 3783, + "codeIataAirport": "KEX", + "codeIataCity": "KEX", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2094786", + "latitudeAirport": -7.483333, + "longitudeAirport": 145.91667, + "nameAirport": "Kanabea", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 3784, + "codeIataAirport": "KEY", + "codeIataCity": "KEY", + "codeIcaoAirport": "HKKR", + "codeIso2Country": "KE", + "geonameId": "6297310", + "latitudeAirport": -0.366667, + "longitudeAirport": 35.283333, + "nameAirport": "Kericho", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "5.30", + "airportId": 3785, + "codeIataAirport": "KEZ", + "codeIataCity": "KEZ", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "1240622", + "latitudeAirport": 6.983333, + "longitudeAirport": 79.916664, + "nameAirport": "Kelaniya River", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "0", + "airportId": 3786, + "codeIataAirport": "KFA", + "codeIataCity": "KFA", + "codeIcaoAirport": "GQNF", + "codeIso2Country": "MR", + "geonameId": "6297236", + "latitudeAirport": 16.588888, + "longitudeAirport": -11.405278, + "nameAirport": "Kiffa", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "8", + "airportId": 3787, + "codeIataAirport": "KFE", + "codeIataCity": "KFE", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298701", + "latitudeAirport": -22.2833, + "longitudeAirport": 119.433, + "nameAirport": "Fortescue Dave Forrest", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "9.30", + "airportId": 3788, + "codeIataAirport": "KFG", + "codeIataCity": "KFG", + "codeIcaoAirport": "YKKG", + "codeIso2Country": "AU", + "geonameId": "7731167", + "latitudeAirport": -17.433332, + "longitudeAirport": 130.81667, + "nameAirport": "Kalkurung", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-9", + "airportId": 3789, + "codeIataAirport": "KFP", + "codeIataCity": "KFP", + "codeIcaoAirport": "PAKF", + "codeIso2Country": "US", + "geonameId": "5861960", + "latitudeAirport": 54.849167, + "longitudeAirport": -163.40916, + "nameAirport": "False Pass", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "2", + "airportId": 3790, + "codeIataAirport": "KGA", + "codeIataCity": "KGA", + "codeIcaoAirport": "FZUA", + "codeIso2Country": "CD", + "geonameId": "6297160", + "latitudeAirport": -5.9, + "longitudeAirport": 22.416668, + "nameAirport": "Kananga", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "10", + "airportId": 3791, + "codeIataAirport": "KGB", + "codeIataCity": "KGB", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299000", + "latitudeAirport": -6.133333, + "longitudeAirport": 147.65, + "nameAirport": "Konge", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9.30", + "airportId": 3792, + "codeIataAirport": "KGC", + "codeIataCity": "KGC", + "codeIcaoAirport": "YKSC", + "codeIso2Country": "AU", + "geonameId": "6453413", + "latitudeAirport": -35.709305, + "longitudeAirport": 137.52332, + "nameAirport": "Kingscote", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "2", + "airportId": 3793, + "codeIataAirport": "KGD", + "codeIataCity": "KGD", + "codeIcaoAirport": "UMKK", + "codeIso2Country": "RU", + "geonameId": "6300979", + "latitudeAirport": 54.882656, + "longitudeAirport": 20.586645, + "nameAirport": "Khrabrovo", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Kaliningrad" + }, + { + "GMT": "11", + "airportId": 3794, + "codeIataAirport": "KGE", + "codeIataCity": "KGE", + "codeIcaoAirport": "AGKG", + "codeIso2Country": "SB", + "geonameId": "7668073", + "latitudeAirport": -8.165, + "longitudeAirport": 157.5861, + "nameAirport": "Kagau", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "6", + "airportId": 3795, + "codeIataAirport": "KGF", + "codeIataCity": "KGF", + "codeIcaoAirport": "UAKK", + "codeIso2Country": "KZ", + "geonameId": "6300917", + "latitudeAirport": 49.67526, + "longitudeAirport": 73.32836, + "nameAirport": "Karaganda", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "0", + "airportId": 3796, + "codeIataAirport": "KGG", + "codeIataCity": "KGG", + "codeIcaoAirport": "GOTK", + "codeIso2Country": "SN", + "geonameId": "2250647", + "latitudeAirport": 12.570833, + "longitudeAirport": -12.217222, + "nameAirport": "Kedougou", + "nameCountry": "Senegal", + "phone": "", + "timezone": "Africa/Dakar" + }, + { + "GMT": "10", + "airportId": 3797, + "codeIataAirport": "KGH", + "codeIataCity": "KGH", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299002", + "latitudeAirport": -4.833333, + "longitudeAirport": 142.66667, + "nameAirport": "Yongai", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 3798, + "codeIataAirport": "KGI", + "codeIataCity": "KGI", + "codeIcaoAirport": "YPKG", + "codeIso2Country": "AU", + "geonameId": "6301332", + "latitudeAirport": -30.785246, + "longitudeAirport": 121.45792, + "nameAirport": "Kalgoorlie", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "2", + "airportId": 3799, + "codeIataAirport": "KGJ", + "codeIataCity": "KGJ", + "codeIcaoAirport": "FWKA", + "codeIso2Country": "MW", + "geonameId": "235715", + "latitudeAirport": -9.957778, + "longitudeAirport": 33.892223, + "nameAirport": "Karonga", + "nameCountry": "Malawi", + "phone": "", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "-9", + "airportId": 3800, + "codeIataAirport": "KGK", + "codeIataCity": "KGK", + "codeIcaoAirport": "PAJZ", + "codeIso2Country": "US", + "geonameId": "5869869", + "latitudeAirport": 59.8, + "longitudeAirport": -157.23334, + "nameAirport": "New Koliganek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 3801, + "codeIataAirport": "KGL", + "codeIataCity": "KGL", + "codeIcaoAirport": "HRYR", + "codeIso2Country": "RW", + "geonameId": "385994", + "latitudeAirport": -1.963042, + "longitudeAirport": 30.135014, + "nameAirport": "Kigalin International", + "nameCountry": "Rwanda", + "phone": "", + "timezone": "Africa/Kigali" + }, + { + "GMT": "10", + "airportId": 3802, + "codeIataAirport": "KGM", + "codeIataCity": "KGM", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299219", + "latitudeAirport": -5.18, + "longitudeAirport": 39.78, + "nameAirport": "Kungum", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 3803, + "codeIataAirport": "KGN", + "codeIataCity": "KGN", + "codeIcaoAirport": "", + "codeIso2Country": "CD", + "geonameId": "8261006", + "latitudeAirport": -6.583333, + "longitudeAirport": 16.816668, + "nameAirport": "Kasongo Lunda", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "2", + "airportId": 3804, + "codeIataAirport": "KGO", + "codeIataCity": "KGO", + "codeIcaoAirport": "UKKG", + "codeIso2Country": "UA", + "geonameId": "7731168", + "latitudeAirport": 48.55, + "longitudeAirport": 32.3, + "nameAirport": "Kirovograd", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "5", + "airportId": 3805, + "codeIataAirport": "KGP", + "codeIataCity": "KGP", + "codeIcaoAirport": "USRK", + "codeIso2Country": "RU", + "geonameId": "7668537", + "latitudeAirport": 62.19583, + "longitudeAirport": 74.53361, + "nameAirport": "Kogalym International", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "9.30", + "airportId": 3806, + "codeIataAirport": "KGR", + "codeIataCity": "KGR", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731169", + "latitudeAirport": -25.833332, + "longitudeAirport": 133.03334, + "nameAirport": "Kulgera", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "2", + "airportId": 3807, + "codeIataAirport": "KGS", + "codeIataCity": "KGS", + "codeIcaoAirport": "LGKO", + "codeIso2Country": "GR", + "geonameId": "6299493", + "latitudeAirport": 36.793056, + "longitudeAirport": 27.095278, + "nameAirport": "Kos Island International Airport", + "nameCountry": "Greece", + "phone": "+30 22420 560", + "timezone": "Europe/Athens" + }, + { + "GMT": "8", + "airportId": 3808, + "codeIataAirport": "KGT", + "codeIataCity": "KGT", + "codeIcaoAirport": "ZUKD", + "codeIso2Country": "CN", + "geonameId": "8260819", + "latitudeAirport": 30.1575, + "longitudeAirport": 101.73472, + "nameAirport": "Kangding", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 3809, + "codeIataAirport": "KGU", + "codeIataCity": "KGU", + "codeIcaoAirport": "WBKG", + "codeIso2Country": "MY", + "geonameId": "7731170", + "latitudeAirport": 5.356667, + "longitudeAirport": 116.16194, + "nameAirport": "Keningau", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "10", + "airportId": 3810, + "codeIataAirport": "KGW", + "codeIataCity": "KGW", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2095099", + "latitudeAirport": -9.05, + "longitudeAirport": 146.83333, + "nameAirport": "Kagi", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 3811, + "codeIataAirport": "KGX", + "codeIataCity": "KGX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5863329", + "latitudeAirport": 62.89528, + "longitudeAirport": -160.0625, + "nameAirport": "Grayling", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 3812, + "codeIataAirport": "KGY", + "codeIataCity": "KGY", + "codeIcaoAirport": "YKRY", + "codeIso2Country": "AU", + "geonameId": "7730263", + "latitudeAirport": -26.55, + "longitudeAirport": 151.83333, + "nameAirport": "Kingaroy", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "airportId": 3813, + "codeIataAirport": "KGZ", + "codeIataCity": "KGZ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5862889", + "latitudeAirport": 61.45, + "longitudeAirport": -142.38333, + "nameAirport": "Glacier Creek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3.30", + "airportId": 3814, + "codeIataAirport": "KHA", + "codeIataCity": "KHA", + "codeIcaoAirport": "", + "codeIso2Country": "IR", + "geonameId": "6677203", + "latitudeAirport": 36.733334, + "longitudeAirport": 45.15, + "nameAirport": "Khaneh", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "3", + "airportId": 3815, + "codeIataAirport": "KHC", + "codeIataCity": "KHC", + "codeIcaoAirport": "UKFK", + "codeIso2Country": "UA", + "geonameId": "7731171", + "latitudeAirport": 45.36667, + "longitudeAirport": 36.45, + "nameAirport": "Kerch", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Simferopol" + }, + { + "GMT": "3.30", + "airportId": 3816, + "codeIataAirport": "KHD", + "codeIataCity": "KHD", + "codeIcaoAirport": "OICK", + "codeIso2Country": "IR", + "geonameId": "6300049", + "latitudeAirport": 33.43861, + "longitudeAirport": 48.280834, + "nameAirport": "Khorramabad", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "2", + "airportId": 3817, + "codeIataAirport": "KHE", + "codeIataCity": "KHE", + "codeIcaoAirport": "UKOH", + "codeIso2Country": "UA", + "geonameId": "7731172", + "latitudeAirport": 46.675278, + "longitudeAirport": 32.627777, + "nameAirport": "Kherson", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "8", + "airportId": 3818, + "codeIataAirport": "KHG", + "codeIataCity": "KHG", + "codeIcaoAirport": "ZWSH", + "codeIso2Country": "CN", + "geonameId": "6301394", + "latitudeAirport": 39.534973, + "longitudeAirport": 76.01107, + "nameAirport": "Kashi", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 3819, + "codeIataAirport": "KHH", + "codeIataCity": "KHH", + "codeIcaoAirport": "RCKH", + "codeIso2Country": "TW", + "geonameId": "6301820", + "latitudeAirport": 22.5725, + "longitudeAirport": 120.345276, + "nameAirport": "Kaoshiung International Airport", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "5", + "airportId": 3820, + "codeIataAirport": "KHI", + "codeIataCity": "KHI", + "codeIcaoAirport": "OPKC", + "codeIso2Country": "PK", + "geonameId": "6300111", + "latitudeAirport": 24.899986, + "longitudeAirport": 67.16828, + "nameAirport": "Quaid-e-azam International", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "2", + "airportId": 3821, + "codeIataAirport": "KHJ", + "codeIataCity": "KHJ", + "codeIcaoAirport": "EFKJ", + "codeIso2Country": "FI", + "geonameId": "7668193", + "latitudeAirport": 62.463055, + "longitudeAirport": 22.394722, + "nameAirport": "Kauhajoki", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "3.30", + "airportId": 3822, + "codeIataAirport": "KHK", + "codeIataCity": "KHK", + "codeIcaoAirport": "", + "codeIso2Country": "IR", + "geonameId": "6656990", + "latitudeAirport": 29.261667, + "longitudeAirport": 50.323612, + "nameAirport": "Khark Island", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "6.30", + "airportId": 3823, + "codeIataAirport": "KHM", + "codeIataCity": "KHM", + "codeIcaoAirport": "VYKI", + "codeIso2Country": "MM", + "geonameId": "7668656", + "latitudeAirport": 25.993513, + "longitudeAirport": 95.67965, + "nameAirport": "Khamti", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "8", + "airportId": 3824, + "codeIataAirport": "KHN", + "codeIataCity": "KHN", + "codeIcaoAirport": "ZSCN", + "codeIso2Country": "CN", + "geonameId": "6301380", + "latitudeAirport": 28.859901, + "longitudeAirport": 115.907845, + "nameAirport": "Nanchang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "airportId": 3825, + "codeIataAirport": "KHO", + "codeIataCity": "KHO", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "7731173", + "latitudeAirport": -24.583332, + "longitudeAirport": 31.416668, + "nameAirport": "Khoka Moya", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "8", + "airportId": 3826, + "codeIataAirport": "KHR", + "codeIataCity": "KHR", + "codeIcaoAirport": "ZMHH", + "codeIso2Country": "MN", + "geonameId": "8261039", + "latitudeAirport": 46.783333, + "longitudeAirport": 102.85, + "nameAirport": "Kharkhorin", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "4", + "airportId": 3827, + "codeIataAirport": "KHS", + "codeIataCity": "KHS", + "codeIcaoAirport": "OOKB", + "codeIso2Country": "OM", + "geonameId": "6300102", + "latitudeAirport": 26.163939, + "longitudeAirport": 56.23506, + "nameAirport": "Khasab", + "nameCountry": "Oman", + "phone": "", + "timezone": "Asia/Muscat" + }, + { + "GMT": "4.30", + "airportId": 3828, + "codeIataAirport": "KHT", + "codeIataCity": "KHT", + "codeIcaoAirport": "", + "codeIso2Country": "AF", + "geonameId": "0", + "latitudeAirport": 35.0, + "longitudeAirport": 72.0, + "nameAirport": "Khost", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "2", + "airportId": 3829, + "codeIataAirport": "KHU", + "codeIataCity": "KHU", + "codeIcaoAirport": "", + "codeIso2Country": "UA", + "geonameId": "0", + "latitudeAirport": 49.1, + "longitudeAirport": 33.45, + "nameAirport": "Kremenchug", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "10", + "airportId": 3830, + "codeIataAirport": "KHV", + "codeIataCity": "KHV", + "codeIcaoAirport": "UHHH", + "codeIso2Country": "RU", + "geonameId": "6300934", + "latitudeAirport": 48.524563, + "longitudeAirport": 135.16861, + "nameAirport": "Novyy", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Vladivostok" + }, + { + "GMT": "2", + "airportId": 3831, + "codeIataAirport": "KHW", + "codeIataCity": "KHW", + "codeIcaoAirport": "FBKR", + "codeIso2Country": "BW", + "geonameId": "7730494", + "latitudeAirport": -19.0, + "longitudeAirport": 23.5, + "nameAirport": "Khwai River Lodge", + "nameCountry": "Botswana", + "phone": "", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "3.30", + "airportId": 3832, + "codeIataAirport": "KHY", + "codeIataCity": "KHY", + "codeIcaoAirport": "OITK", + "codeIso2Country": "IR", + "geonameId": "6300076", + "latitudeAirport": 38.42917, + "longitudeAirport": 44.97139, + "nameAirport": "Khoy", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-10", + "airportId": 3833, + "codeIataAirport": "KHZ", + "codeIataCity": "KHZ", + "codeIcaoAirport": "NTKA", + "codeIso2Country": "PF", + "geonameId": "7730702", + "latitudeAirport": -15.766667, + "longitudeAirport": -145.11667, + "nameAirport": "Kauehi", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-9", + "airportId": 3834, + "codeIataAirport": "KIB", + "codeIataCity": "KIB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5865015", + "latitudeAirport": 55.893612, + "longitudeAirport": -159.5675, + "nameAirport": "SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "airportId": 3835, + "codeIataAirport": "KIC", + "codeIataCity": "KIC", + "codeIcaoAirport": "KKIC", + "codeIso2Country": "US", + "geonameId": "5372395", + "latitudeAirport": 36.216667, + "longitudeAirport": -121.13333, + "nameAirport": "Mesa Del Rey", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 3836, + "codeIataAirport": "KID", + "codeIataCity": "KID", + "codeIcaoAirport": "ESMK", + "codeIso2Country": "SE", + "geonameId": "6296796", + "latitudeAirport": 55.919445, + "longitudeAirport": 14.088889, + "nameAirport": "Kristianstad", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "10", + "airportId": 3837, + "codeIataAirport": "KIE", + "codeIataCity": "KIE", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260744", + "latitudeAirport": -6.316667, + "longitudeAirport": 155.71666, + "nameAirport": "Aropa", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 3838, + "codeIataAirport": "KIF", + "codeIataCity": "KIF", + "codeIcaoAirport": "CNM5", + "codeIso2Country": "CA", + "geonameId": "7730450", + "latitudeAirport": 53.01389, + "longitudeAirport": -89.85, + "nameAirport": "Kingfisher Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "2", + "airportId": 3839, + "codeIataAirport": "KIG", + "codeIataCity": "KIG", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "7731174", + "latitudeAirport": -30.2, + "longitudeAirport": 17.266666, + "nameAirport": "Koinghaas", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "3.30", + "airportId": 3840, + "codeIataAirport": "KIH", + "codeIataCity": "KIH", + "codeIcaoAirport": "OIBK", + "codeIso2Country": "IR", + "geonameId": "6300043", + "latitudeAirport": 26.532276, + "longitudeAirport": 53.972084, + "nameAirport": "Kish Island", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "10", + "airportId": 3841, + "codeIataAirport": "KII", + "codeIataCity": "KII", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "0", + "latitudeAirport": -9.016389, + "longitudeAirport": 142.69528, + "nameAirport": "Kibuli", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "airportId": 3842, + "codeIataAirport": "KIJ", + "codeIataCity": "KIJ", + "codeIcaoAirport": "RJSN", + "codeIso2Country": "JP", + "geonameId": "6300396", + "latitudeAirport": 37.951992, + "longitudeAirport": 139.11325, + "nameAirport": "Niigata", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "3", + "airportId": 3843, + "codeIataAirport": "KIK", + "codeIataCity": "KIK", + "codeIcaoAirport": "ORKK", + "codeIso2Country": "IQ", + "geonameId": "7730757", + "latitudeAirport": 35.516666, + "longitudeAirport": 44.283333, + "nameAirport": "Kirkuk", + "nameCountry": "Iraq", + "phone": "", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "2", + "airportId": 3844, + "codeIataAirport": "KIL", + "codeIataCity": "KIL", + "codeIcaoAirport": "", + "codeIso2Country": "CD", + "geonameId": "8261037", + "latitudeAirport": -8.4, + "longitudeAirport": 28.05, + "nameAirport": "Kilwa", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "2", + "airportId": 3845, + "codeIataAirport": "KIM", + "codeIataCity": "KIM", + "codeIcaoAirport": "FAKM", + "codeIso2Country": "ZA", + "geonameId": "1021328", + "latitudeAirport": -28.805834, + "longitudeAirport": 24.76639, + "nameAirport": "Kimberley", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-5", + "airportId": 3846, + "codeIataAirport": "KIN", + "codeIataCity": "KIN", + "codeIcaoAirport": "MKJP", + "codeIso2Country": "JM", + "geonameId": "3489854", + "latitudeAirport": 17.93775, + "longitudeAirport": -76.77816, + "nameAirport": "Norman Manley", + "nameCountry": "", + "phone": "876-924-8452", + "timezone": "America/Jamaica" + }, + { + "GMT": "12", + "airportId": 3847, + "codeIataAirport": "KIO", + "codeIataCity": "KIO", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 5.65, + "longitudeAirport": 169.2, + "nameAirport": "Kili Island", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-6", + "airportId": 3848, + "codeIataAirport": "KIP", + "codeIataCity": "SPS", + "codeIcaoAirport": "KCWC", + "codeIso2Country": "US", + "geonameId": "4703151", + "latitudeAirport": 33.9, + "longitudeAirport": -98.5, + "nameAirport": "Kickapoo", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 3849, + "codeIataAirport": "KIQ", + "codeIataCity": "KIQ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260835", + "latitudeAirport": -8.116667, + "longitudeAirport": 147.35, + "nameAirport": "Kira", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 3850, + "codeIataAirport": "KIR", + "codeIataCity": "KIR", + "codeIcaoAirport": "EIKY", + "codeIso2Country": "IE", + "geonameId": "7668220", + "latitudeAirport": 52.181477, + "longitudeAirport": -9.535666, + "nameAirport": "Kerry", + "nameCountry": "Ireland", + "phone": "", + "timezone": "Europe/Dublin" + }, + { + "GMT": "3", + "airportId": 3851, + "codeIataAirport": "KIS", + "codeIataCity": "KIS", + "codeIcaoAirport": "HKKI", + "codeIso2Country": "KE", + "geonameId": "6297309", + "latitudeAirport": -0.084946, + "longitudeAirport": 34.7375, + "nameAirport": "Kisumu", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "2", + "airportId": 3852, + "codeIataAirport": "KIT", + "codeIataCity": "KIT", + "codeIcaoAirport": "LGKC", + "codeIso2Country": "GR", + "geonameId": "6299490", + "latitudeAirport": 36.291668, + "longitudeAirport": 23.025, + "nameAirport": "Kithira", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "3", + "airportId": 3853, + "codeIataAirport": "KIU", + "codeIataCity": "KIU", + "codeIcaoAirport": "", + "codeIso2Country": "KE", + "geonameId": "190954", + "latitudeAirport": -1.733333, + "longitudeAirport": 41.516666, + "nameAirport": "Kiunga", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "2", + "airportId": 3854, + "codeIataAirport": "KIV", + "codeIataCity": "KIV", + "codeIcaoAirport": "LUKK", + "codeIso2Country": "MD", + "geonameId": "6299776", + "latitudeAirport": 46.935444, + "longitudeAirport": 28.934967, + "nameAirport": "International Airport Chisinau", + "nameCountry": "Moldova", + "phone": "", + "timezone": "Europe/Chisinau" + }, + { + "GMT": "2", + "airportId": 3855, + "codeIataAirport": "KIW", + "codeIataCity": "KIW", + "codeIcaoAirport": "FLSO", + "codeIso2Country": "ZM", + "geonameId": "6457346", + "latitudeAirport": -12.839444, + "longitudeAirport": 28.230556, + "nameAirport": "Southdowns", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "9", + "airportId": 3856, + "codeIataAirport": "KIX", + "codeIataCity": "OSA", + "codeIcaoAirport": "RJBB", + "codeIso2Country": "JP", + "geonameId": "6300316", + "latitudeAirport": 34.43533, + "longitudeAirport": 135.24397, + "nameAirport": "Kansai International", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "3", + "airportId": 3857, + "codeIataAirport": "KIY", + "codeIataCity": "KIY", + "codeIcaoAirport": "HTKI", + "codeIso2Country": "TZ", + "geonameId": "6297357", + "latitudeAirport": -8.911944, + "longitudeAirport": 39.511665, + "nameAirport": "Kilwa", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "7", + "airportId": 3858, + "codeIataAirport": "KJA", + "codeIataCity": "KJA", + "codeIcaoAirport": "UNKL", + "codeIso2Country": "RU", + "geonameId": "7729996", + "latitudeAirport": 56.18113, + "longitudeAirport": 92.48286, + "nameAirport": "Krasnojarsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "8", + "airportId": 3859, + "codeIataAirport": "KJI", + "codeIataCity": "KJI", + "codeIcaoAirport": "ZWKN", + "codeIso2Country": "CN", + "geonameId": "8260733", + "latitudeAirport": 48.22167, + "longitudeAirport": 86.99611, + "nameAirport": "Kanas", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 3860, + "codeIataAirport": "KJK", + "codeIataCity": "KJK", + "codeIcaoAirport": "EBKT", + "codeIso2Country": "BE", + "geonameId": "7668190", + "latitudeAirport": 50.817223, + "longitudeAirport": 3.201667, + "nameAirport": "Kortrijk", + "nameCountry": "Belgium", + "phone": "", + "timezone": "Europe/Brussels" + }, + { + "GMT": "9", + "airportId": 3861, + "codeIataAirport": "KJP", + "codeIataCity": "KJP", + "codeIcaoAirport": "ROKR", + "codeIso2Country": "JP", + "geonameId": "7668420", + "latitudeAirport": 26.083332, + "longitudeAirport": 127.333336, + "nameAirport": "Kerama", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-9", + "airportId": 3862, + "codeIataAirport": "KKA", + "codeIataCity": "KKA", + "codeIcaoAirport": "PAKK", + "codeIso2Country": "US", + "geonameId": "5866752", + "latitudeAirport": 64.939445, + "longitudeAirport": -161.15, + "nameAirport": "Koyuk", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 3863, + "codeIataAirport": "KKB", + "codeIataCity": "KKB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5866430", + "latitudeAirport": 58.183334, + "longitudeAirport": -152.35, + "nameAirport": "SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "airportId": 3864, + "codeIataAirport": "KKC", + "codeIataCity": "KKC", + "codeIcaoAirport": "VTUK", + "codeIso2Country": "TH", + "geonameId": "1609776", + "latitudeAirport": 16.46467, + "longitudeAirport": 102.78749, + "nameAirport": "Khon Kaen", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "10", + "airportId": 3865, + "codeIataAirport": "KKD", + "codeIataCity": "KKD", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731175", + "latitudeAirport": -8.886153, + "longitudeAirport": 147.73122, + "nameAirport": "Kokoda", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "12", + "airportId": 3866, + "codeIataAirport": "KKE", + "codeIataCity": "KKE", + "codeIcaoAirport": "NZKK", + "codeIso2Country": "NZ", + "geonameId": "7536097", + "latitudeAirport": -35.263283, + "longitudeAirport": 173.91237, + "nameAirport": "Kerikeri/Bay of Islands", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-9", + "airportId": 3867, + "codeIataAirport": "KKF", + "codeIataCity": "KKF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8298694", + "latitudeAirport": 67.6, + "longitudeAirport": -163.5, + "nameAirport": "Kagvik Creek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "-4", + "airportId": 3868, + "codeIataAirport": "KKG", + "codeIataCity": "KKG", + "codeIcaoAirport": "", + "codeIso2Country": "GY", + "geonameId": "8299168", + "latitudeAirport": 5.266667, + "longitudeAirport": -59.816666, + "nameAirport": "Konawaruk", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "-9", + "airportId": 3869, + "codeIataAirport": "KKH", + "codeIataCity": "KKH", + "codeIcaoAirport": "PADY", + "codeIso2Country": "US", + "geonameId": "5866670", + "latitudeAirport": 59.966667, + "longitudeAirport": -162.75, + "nameAirport": "Kongiganak", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "-9", + "airportId": 3870, + "codeIataAirport": "KKI", + "codeIataCity": "KKI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5878992", + "latitudeAirport": 60.906944, + "longitudeAirport": -161.42223, + "nameAirport": "Spb", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "9", + "airportId": 3871, + "codeIataAirport": "KKJ", + "codeIataCity": "KKJ", + "codeIcaoAirport": "RJFR", + "codeIso2Country": "JP", + "geonameId": "6300352", + "latitudeAirport": 33.834373, + "longitudeAirport": 130.9435, + "nameAirport": "Kita Kyushu", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-9", + "airportId": 3872, + "codeIataAirport": "KKK", + "codeIataCity": "KKK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8114030", + "latitudeAirport": 64.425, + "longitudeAirport": -156.84111, + "nameAirport": "Kalakaket AFS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 3873, + "codeIataAirport": "KKL", + "codeIataCity": "KKL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5865856", + "latitudeAirport": 57.55, + "longitudeAirport": -154.53334, + "nameAirport": "Karluk Lake SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "airportId": 3874, + "codeIataAirport": "KKM", + "codeIataCity": "KKM", + "codeIcaoAirport": "VTBL", + "codeIso2Country": "TH", + "geonameId": "7730329", + "latitudeAirport": 14.8, + "longitudeAirport": 100.61667, + "nameAirport": "Lop Buri", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "1", + "airportId": 3875, + "codeIataAirport": "KKN", + "codeIataCity": "KKN", + "codeIcaoAirport": "ENKR", + "codeIso2Country": "NO", + "geonameId": "779304", + "latitudeAirport": 69.7235, + "longitudeAirport": 29.891184, + "nameAirport": "Hoeybuktmoen", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "12", + "airportId": 3876, + "codeIataAirport": "KKO", + "codeIataCity": "KKO", + "codeIcaoAirport": "NZKO", + "codeIso2Country": "NZ", + "geonameId": "6229861", + "latitudeAirport": -35.452778, + "longitudeAirport": 173.81667, + "nameAirport": "Kaikohe", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "10", + "airportId": 3877, + "codeIataAirport": "KKP", + "codeIataCity": "KKP", + "codeIcaoAirport": "YKLB", + "codeIso2Country": "AU", + "geonameId": "7731176", + "latitudeAirport": -15.583333, + "longitudeAirport": 143.95, + "nameAirport": "Koolburra", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5", + "airportId": 3878, + "codeIataAirport": "KKQ", + "codeIataCity": "KKQ", + "codeIcaoAirport": "USDP", + "codeIso2Country": "RU", + "geonameId": "8260745", + "latitudeAirport": 65.70796, + "longitudeAirport": 82.456055, + "nameAirport": "Krasnoselkup", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-10", + "airportId": 3879, + "codeIataAirport": "KKR", + "codeIataCity": "KKR", + "codeIcaoAirport": "NTGK", + "codeIso2Country": "PF", + "geonameId": "7730123", + "latitudeAirport": -15.783333, + "longitudeAirport": -146.66667, + "nameAirport": "Kaukura Atoll", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-6", + "airportId": 3880, + "codeIataAirport": "KKT", + "codeIataCity": "KKT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.766666, + "longitudeAirport": -87.45, + "nameAirport": "Kentland", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 3881, + "codeIataAirport": "KKU", + "codeIataCity": "KKU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5861508", + "latitudeAirport": 58.8125, + "longitudeAirport": -158.56056, + "nameAirport": "Ekuk", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 3882, + "codeIataAirport": "KKW", + "codeIataCity": "KKW", + "codeIcaoAirport": "FZCA", + "codeIso2Country": "CD", + "geonameId": "6297144", + "latitudeAirport": -5.036111, + "longitudeAirport": 18.780277, + "nameAirport": "Kikwit", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "9", + "airportId": 3883, + "codeIataAirport": "KKX", + "codeIataCity": "KKX", + "codeIcaoAirport": "RJKI", + "codeIso2Country": "JP", + "geonameId": "6300362", + "latitudeAirport": 28.321388, + "longitudeAirport": 129.92805, + "nameAirport": "Kikaiga Shima", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "0", + "airportId": 3884, + "codeIataAirport": "KKY", + "codeIataCity": "KKY", + "codeIcaoAirport": "EIKK", + "codeIso2Country": "IE", + "geonameId": "7668219", + "latitudeAirport": 52.65, + "longitudeAirport": -7.25, + "nameAirport": "Kilkenny", + "nameCountry": "Ireland", + "phone": "", + "timezone": "Europe/Dublin" + }, + { + "GMT": "7", + "airportId": 3885, + "codeIataAirport": "KKZ", + "codeIataCity": "KKZ", + "codeIcaoAirport": "VDKK", + "codeIso2Country": "KH", + "geonameId": "7731177", + "latitudeAirport": 11.633333, + "longitudeAirport": 102.96667, + "nameAirport": "Koh Kong", + "nameCountry": "Cambodia", + "phone": "", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "2", + "airportId": 3886, + "codeIataAirport": "KLB", + "codeIataCity": "KLB", + "codeIcaoAirport": "FLKL", + "codeIso2Country": "ZM", + "geonameId": "7730507", + "latitudeAirport": -14.975833, + "longitudeAirport": 22.644444, + "nameAirport": "Kalabo", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "0", + "airportId": 3887, + "codeIataAirport": "KLC", + "codeIataCity": "KLC", + "codeIcaoAirport": "GOOK", + "codeIso2Country": "SN", + "geonameId": "2250806", + "latitudeAirport": 14.083333, + "longitudeAirport": -16.5, + "nameAirport": "Kaolack", + "nameCountry": "Senegal", + "phone": "", + "timezone": "Africa/Dakar" + }, + { + "GMT": "3", + "airportId": 3888, + "codeIataAirport": "KLD", + "codeIataCity": "KLD", + "codeIcaoAirport": "UUEM", + "codeIso2Country": "RU", + "geonameId": "6301016", + "latitudeAirport": 56.916668, + "longitudeAirport": 35.916668, + "nameAirport": "Migalovo", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "airportId": 3889, + "codeIataAirport": "KLE", + "codeIataCity": "KLE", + "codeIcaoAirport": "FKKH", + "codeIso2Country": "CM", + "geonameId": "7730503", + "latitudeAirport": 10.116667, + "longitudeAirport": 14.45, + "nameAirport": "Kaele", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "3", + "airportId": 3890, + "codeIataAirport": "KLF", + "codeIataCity": "KLF", + "codeIcaoAirport": "UUBC", + "codeIso2Country": "RU", + "geonameId": "8298670", + "latitudeAirport": 54.5, + "longitudeAirport": 36.266666, + "nameAirport": "Kaluga", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-9", + "airportId": 3891, + "codeIataAirport": "KLG", + "codeIataCity": "KLG", + "codeIcaoAirport": "PALG", + "codeIso2Country": "US", + "geonameId": "5865720", + "latitudeAirport": 61.53258, + "longitudeAirport": -160.3465, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "5.30", + "airportId": 3892, + "codeIataAirport": "KLH", + "codeIataCity": "KLH", + "codeIcaoAirport": "VAKP", + "codeIso2Country": "IN", + "geonameId": "6301041", + "latitudeAirport": 16.666668, + "longitudeAirport": 74.333336, + "nameAirport": "Kolhapur", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "airportId": 3893, + "codeIataAirport": "KLI", + "codeIataCity": "KLI", + "codeIcaoAirport": "FZFP", + "codeIso2Country": "CD", + "geonameId": "7730560", + "latitudeAirport": -4.166667, + "longitudeAirport": 21.75, + "nameAirport": "Kota Koli", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "3", + "airportId": 3894, + "codeIataAirport": "KLK", + "codeIataCity": "KLK", + "codeIcaoAirport": "HKFG", + "codeIso2Country": "KE", + "geonameId": "7730613", + "latitudeAirport": -6.783333, + "longitudeAirport": 25.783333, + "nameAirport": "Kalokol", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-9", + "airportId": 3895, + "codeIataAirport": "KLL", + "codeIataCity": "KLL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5867311", + "latitudeAirport": 59.11861, + "longitudeAirport": -156.86333, + "nameAirport": "Levelock", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3.30", + "airportId": 3896, + "codeIataAirport": "KLM", + "codeIataCity": "KLM", + "codeIcaoAirport": "", + "codeIso2Country": "IR", + "geonameId": "8298661", + "latitudeAirport": 37.36667, + "longitudeAirport": 55.45, + "nameAirport": "Kalaleh", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-9", + "airportId": 3897, + "codeIataAirport": "KLN", + "codeIataCity": "KLN", + "codeIcaoAirport": "PALB", + "codeIso2Country": "US", + "geonameId": "5878746", + "latitudeAirport": 57.533333, + "longitudeAirport": -154.0, + "nameAirport": "Larsen SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 3898, + "codeIataAirport": "KLO", + "codeIataCity": "KLO", + "codeIcaoAirport": "RPVK", + "codeIso2Country": "PH", + "geonameId": "1709634", + "latitudeAirport": 11.687152, + "longitudeAirport": 122.38183, + "nameAirport": "Kalibo", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-9", + "airportId": 3899, + "codeIataAirport": "KLP", + "codeIataCity": "KLP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299256", + "latitudeAirport": 57.55, + "longitudeAirport": -134.86667, + "nameAirport": "Kelp Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "7", + "airportId": 3900, + "codeIataAirport": "KLQ", + "codeIataCity": "KLQ", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "1899772", + "latitudeAirport": -2.683333, + "longitudeAirport": 103.9, + "nameAirport": "Keluang", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "1", + "airportId": 3901, + "codeIataAirport": "KLR", + "codeIataCity": "KLR", + "codeIcaoAirport": "ESMQ", + "codeIso2Country": "SE", + "geonameId": "2702263", + "latitudeAirport": 56.685, + "longitudeAirport": 16.287222, + "nameAirport": "Kalmar", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-8", + "airportId": 3902, + "codeIataAirport": "KLS", + "codeIataCity": "KLS", + "codeIcaoAirport": "KKLS", + "codeIso2Country": "US", + "geonameId": "5799574", + "latitudeAirport": 46.15, + "longitudeAirport": -122.9, + "nameAirport": "Longview", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 3903, + "codeIataAirport": "KLT", + "codeIataCity": "KLT", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2894003", + "latitudeAirport": 49.433334, + "longitudeAirport": 7.75, + "nameAirport": "Kaiserslautern", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 3904, + "codeIataAirport": "KLU", + "codeIataCity": "KLU", + "codeIcaoAirport": "LOWK", + "codeIso2Country": "AT", + "geonameId": "3218938", + "latitudeAirport": 46.650124, + "longitudeAirport": 14.324192, + "nameAirport": "Alpe Adria", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "1", + "airportId": 3905, + "codeIataAirport": "KLV", + "codeIataCity": "KLV", + "codeIcaoAirport": "LKKV", + "codeIso2Country": "CZ", + "geonameId": "6299649", + "latitudeAirport": 50.2, + "longitudeAirport": 12.916667, + "nameAirport": "Karlovy Vary", + "nameCountry": "Czech Republic", + "phone": "", + "timezone": "Europe/Prague" + }, + { + "GMT": "-9", + "airportId": 3906, + "codeIataAirport": "KLW", + "codeIataCity": "KLW", + "codeIcaoAirport": "PAKW", + "codeIso2Country": "US", + "geonameId": "5554568", + "latitudeAirport": 55.555, + "longitudeAirport": -133.1, + "nameAirport": "Klawock", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "2", + "airportId": 3907, + "codeIataAirport": "KLX", + "codeIataCity": "KLX", + "codeIcaoAirport": "LGKL", + "codeIso2Country": "GR", + "geonameId": "6299492", + "latitudeAirport": 37.069443, + "longitudeAirport": 22.027779, + "nameAirport": "Kalamata", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "2", + "airportId": 3908, + "codeIataAirport": "KLY", + "codeIataCity": "KLY", + "codeIcaoAirport": "FZOD", + "codeIso2Country": "CD", + "geonameId": "7730564", + "latitudeAirport": -2.55, + "longitudeAirport": 26.533333, + "nameAirport": "Kalima", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "2", + "airportId": 3909, + "codeIataAirport": "KLZ", + "codeIataCity": "KLZ", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "0", + "latitudeAirport": -29.683332, + "longitudeAirport": 17.066668, + "nameAirport": "Kleinzee", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "10", + "airportId": 3910, + "codeIataAirport": "KMA", + "codeIataCity": "KMA", + "codeIcaoAirport": "AYKM", + "codeIso2Country": "PG", + "geonameId": "7668082", + "latitudeAirport": -7.961702, + "longitudeAirport": 145.77155, + "nameAirport": "Kerema", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 3911, + "codeIataAirport": "KMB", + "codeIataCity": "KMB", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298997", + "latitudeAirport": -5.5, + "longitudeAirport": 144.63333, + "nameAirport": "Koinambe", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 3912, + "codeIataAirport": "KMC", + "codeIataCity": "KMC", + "codeIcaoAirport": "OEKK", + "codeIso2Country": "SA", + "geonameId": "0", + "latitudeAirport": 27.911282, + "longitudeAirport": 45.523495, + "nameAirport": "King Khalid Military", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "2", + "airportId": 3913, + "codeIataAirport": "KME", + "codeIataCity": "KME", + "codeIcaoAirport": "HRZA", + "codeIso2Country": "RW", + "geonameId": "202137", + "latitudeAirport": -2.466667, + "longitudeAirport": 28.916668, + "nameAirport": "Kamembe", + "nameCountry": "Rwanda", + "phone": "", + "timezone": "Africa/Kigali" + }, + { + "GMT": "10", + "airportId": 3914, + "codeIataAirport": "KMF", + "codeIataCity": "KMF", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298877", + "latitudeAirport": -7.616667, + "longitudeAirport": 145.99583, + "nameAirport": "Kamina", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 3915, + "codeIataAirport": "KMG", + "codeIataCity": "KMG", + "codeIcaoAirport": "ZPPP", + "codeIso2Country": "CN", + "geonameId": "6301378", + "latitudeAirport": 25.101944, + "longitudeAirport": 102.92917, + "nameAirport": "Kunming", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "airportId": 3916, + "codeIataAirport": "KMH", + "codeIataCity": "KMH", + "codeIcaoAirport": "FAKU", + "codeIso2Country": "ZA", + "geonameId": "7730324", + "latitudeAirport": -27.466667, + "longitudeAirport": 23.466667, + "nameAirport": "Kuruman", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "9", + "airportId": 3917, + "codeIataAirport": "KMI", + "codeIataCity": "KMI", + "codeIcaoAirport": "RJFM", + "codeIso2Country": "JP", + "geonameId": "6300349", + "latitudeAirport": 31.872498, + "longitudeAirport": 131.44147, + "nameAirport": "Miyazaki", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "9", + "airportId": 3918, + "codeIataAirport": "KMJ", + "codeIataCity": "KMJ", + "codeIcaoAirport": "RJFT", + "codeIso2Country": "JP", + "geonameId": "6300354", + "latitudeAirport": 32.834133, + "longitudeAirport": 130.85799, + "nameAirport": "Kumamoto", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "airportId": 3919, + "codeIataAirport": "KMK", + "codeIataCity": "KMK", + "codeIcaoAirport": "FCPA", + "codeIso2Country": "CG", + "geonameId": "6296965", + "latitudeAirport": -3.483333, + "longitudeAirport": 12.616667, + "nameAirport": "Makabana", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "10", + "airportId": 3920, + "codeIataAirport": "KML", + "codeIataCity": "KML", + "codeIcaoAirport": "YKML", + "codeIso2Country": "AU", + "geonameId": "7731178", + "latitudeAirport": -19.366667, + "longitudeAirport": 140.05, + "nameAirport": "Kamileroi", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "9", + "airportId": 3921, + "codeIataAirport": "KMM", + "codeIataCity": "KMM", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "8298791", + "latitudeAirport": -3.666667, + "longitudeAirport": 136.16667, + "nameAirport": "Kimam", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "2", + "airportId": 3922, + "codeIataAirport": "KMN", + "codeIataCity": "KMN", + "codeIcaoAirport": "FZSA", + "codeIso2Country": "CD", + "geonameId": "214611", + "latitudeAirport": -8.641111, + "longitudeAirport": 25.25, + "nameAirport": "Kamina", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-9", + "airportId": 3923, + "codeIataAirport": "KMO", + "codeIataCity": "KMO", + "codeIcaoAirport": "PAMB", + "codeIso2Country": "US", + "geonameId": "5868247", + "latitudeAirport": 58.984444, + "longitudeAirport": -159.03583, + "nameAirport": "Manokotak SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 3924, + "codeIataAirport": "KMP", + "codeIataCity": "KMP", + "codeIcaoAirport": "FYKT", + "codeIso2Country": "NA", + "geonameId": "3356557", + "latitudeAirport": -26.533611, + "longitudeAirport": 18.1, + "nameAirport": "J.G.H. Van Der Wath", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "9", + "airportId": 3925, + "codeIataAirport": "KMQ", + "codeIataCity": "KMQ", + "codeIcaoAirport": "RJNK", + "codeIso2Country": "JP", + "geonameId": "6300367", + "latitudeAirport": 36.40237, + "longitudeAirport": 136.41342, + "nameAirport": "Komatsu", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "10", + "airportId": 3926, + "codeIataAirport": "KMR", + "codeIataCity": "KMR", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2094556", + "latitudeAirport": -6.5, + "longitudeAirport": 144.86667, + "nameAirport": "Karimui", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 3927, + "codeIataAirport": "KMS", + "codeIataCity": "KMS", + "codeIcaoAirport": "DGSI", + "codeIso2Country": "GH", + "geonameId": "6296427", + "latitudeAirport": 6.7125, + "longitudeAirport": -1.591111, + "nameAirport": "Kumasi", + "nameCountry": "Ghana", + "phone": "", + "timezone": "Africa/Accra" + }, + { + "GMT": "3", + "airportId": 3928, + "codeIataAirport": "KMU", + "codeIataCity": "KMU", + "codeIcaoAirport": "HCMK", + "codeIso2Country": "SO", + "geonameId": "7730089", + "latitudeAirport": -0.416667, + "longitudeAirport": 42.841667, + "nameAirport": "Kismayu", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "6.30", + "airportId": 3929, + "codeIataAirport": "KMV", + "codeIataCity": "KMV", + "codeIcaoAirport": "VYKL", + "codeIso2Country": "MM", + "geonameId": "7668657", + "latitudeAirport": 23.183332, + "longitudeAirport": 94.05, + "nameAirport": "Kalemyo", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "3", + "airportId": 3930, + "codeIataAirport": "KMW", + "codeIataCity": "KMW", + "codeIcaoAirport": "UUBD", + "codeIso2Country": "RU", + "geonameId": "7668547", + "latitudeAirport": 57.75, + "longitudeAirport": 40.933334, + "nameAirport": "Sokerkino", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "3", + "airportId": 3931, + "codeIataAirport": "KMX", + "codeIataCity": "KMX", + "codeIcaoAirport": "OEKM", + "codeIso2Country": "SA", + "geonameId": "6300020", + "latitudeAirport": 18.3, + "longitudeAirport": 42.716667, + "nameAirport": "Khamis Mushait", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-9", + "airportId": 3932, + "codeIataAirport": "KMY", + "codeIataCity": "KMY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5869318", + "latitudeAirport": 57.533333, + "longitudeAirport": -154.15, + "nameAirport": "Moser Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 3933, + "codeIataAirport": "KMZ", + "codeIataCity": "KMZ", + "codeIcaoAirport": "FLKO", + "codeIso2Country": "ZM", + "geonameId": "6297011", + "latitudeAirport": -14.798889, + "longitudeAirport": 24.803333, + "nameAirport": "Kaoma", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-4", + "airportId": 3934, + "codeIataAirport": "KNA", + "codeIataCity": "KNA", + "codeIcaoAirport": "SCVM", + "codeIso2Country": "CL", + "geonameId": "7730171", + "latitudeAirport": -33.033333, + "longitudeAirport": -71.566666, + "nameAirport": "Vina del Mar", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-7", + "airportId": 3935, + "codeIataAirport": "KNB", + "codeIataCity": "KNB", + "codeIcaoAirport": "KKNB", + "codeIso2Country": "US", + "geonameId": "5541462", + "latitudeAirport": 37.05, + "longitudeAirport": -112.53333, + "nameAirport": "Kanab", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "2", + "airportId": 3936, + "codeIataAirport": "KND", + "codeIataCity": "KND", + "codeIcaoAirport": "FZOA", + "codeIso2Country": "CD", + "geonameId": "6297153", + "latitudeAirport": -2.9225, + "longitudeAirport": 25.913889, + "nameAirport": "Kindu", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "10", + "airportId": 3937, + "codeIataAirport": "KNE", + "codeIataCity": "KNE", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299191", + "latitudeAirport": -5.283333, + "longitudeAirport": 144.7, + "nameAirport": "Kanainj", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 3938, + "codeIataAirport": "KNF", + "codeIataCity": "KNF", + "codeIcaoAirport": "EGYM", + "codeIso2Country": "GB", + "geonameId": "6301529", + "latitudeAirport": 52.75, + "longitudeAirport": 0.4, + "nameAirport": "Marham RAF", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "9", + "airportId": 3939, + "codeIataAirport": "KNG", + "codeIataCity": "KNG", + "codeIcaoAirport": "WASK", + "codeIso2Country": "ID", + "geonameId": "6301206", + "latitudeAirport": -3.65, + "longitudeAirport": 133.75, + "nameAirport": "Kaimana", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "airportId": 3940, + "codeIataAirport": "KNH", + "codeIataCity": "KNH", + "codeIcaoAirport": "RCBS", + "codeIso2Country": "TW", + "geonameId": "6300290", + "latitudeAirport": 24.420555, + "longitudeAirport": 118.344444, + "nameAirport": "Shang-Yi", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "8", + "airportId": 3941, + "codeIataAirport": "KNI", + "codeIataCity": "KNI", + "codeIcaoAirport": "YKNG", + "codeIso2Country": "AU", + "geonameId": "7731179", + "latitudeAirport": -33.7, + "longitudeAirport": 117.55, + "nameAirport": "Katanning", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "airportId": 3942, + "codeIataAirport": "KNJ", + "codeIataCity": "KNJ", + "codeIcaoAirport": "FCBK", + "codeIso2Country": "CG", + "geonameId": "7730497", + "latitudeAirport": -3.95, + "longitudeAirport": 14.516667, + "nameAirport": "Kindamba", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-9", + "airportId": 3943, + "codeIataAirport": "KNK", + "codeIataCity": "KNK", + "codeIcaoAirport": "PFKK", + "codeIso2Country": "US", + "geonameId": "5865649", + "latitudeAirport": 59.433334, + "longitudeAirport": -154.85, + "nameAirport": "Kakhonak", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 3944, + "codeIataAirport": "KNM", + "codeIataCity": "KNM", + "codeIcaoAirport": "FZTK", + "codeIso2Country": "CD", + "geonameId": "7730571", + "latitudeAirport": -7.516667, + "longitudeAirport": 24.183332, + "nameAirport": "Kaniama", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "0", + "airportId": 3945, + "codeIataAirport": "KNN", + "codeIataCity": "KNN", + "codeIcaoAirport": "GUXD", + "codeIso2Country": "GN", + "geonameId": "6297255", + "latitudeAirport": 10.3975, + "longitudeAirport": -9.305556, + "nameAirport": "Kankan", + "nameCountry": "Guinea", + "phone": "", + "timezone": "Africa/Conakry" + }, + { + "GMT": "7", + "airportId": 3946, + "codeIataAirport": "KNO", + "codeIataCity": "MES", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "0", + "latitudeAirport": 3.637833, + "longitudeAirport": 98.8705, + "nameAirport": "Kuala Namu International Airport", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "1", + "airportId": 3947, + "codeIataAirport": "KNP", + "codeIataCity": "KNP", + "codeIcaoAirport": "FNCP", + "codeIso2Country": "AO", + "geonameId": "7731180", + "latitudeAirport": -9.766944, + "longitudeAirport": 15.450278, + "nameAirport": "Capanda", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "11", + "airportId": 3948, + "codeIataAirport": "KNQ", + "codeIataCity": "KNQ", + "codeIcaoAirport": "NWWD", + "codeIso2Country": "NC", + "geonameId": "7668381", + "latitudeAirport": -21.053333, + "longitudeAirport": 164.83778, + "nameAirport": "Kone", + "nameCountry": "New Caledonia", + "phone": "", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "3.30", + "airportId": 3949, + "codeIataAirport": "KNR", + "codeIataCity": "KNR", + "codeIcaoAirport": "", + "codeIso2Country": "IR", + "geonameId": "6683623", + "latitudeAirport": 27.818056, + "longitudeAirport": 52.350834, + "nameAirport": "Jam", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "10", + "airportId": 3950, + "codeIataAirport": "KNS", + "codeIataCity": "KNS", + "codeIcaoAirport": "YKII", + "codeIso2Country": "AU", + "geonameId": "7668729", + "latitudeAirport": -39.879776, + "longitudeAirport": 143.88168, + "nameAirport": "King Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Currie" + }, + { + "GMT": "-6", + "airportId": 3951, + "codeIataAirport": "KNT", + "codeIataCity": "KNT", + "codeIcaoAirport": "KTKX", + "codeIso2Country": "US", + "geonameId": "4393453", + "latitudeAirport": 36.230556, + "longitudeAirport": -90.03472, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5.30", + "airportId": 3952, + "codeIataAirport": "KNU", + "codeIataCity": "KNU", + "codeIcaoAirport": "VIKA", + "codeIso2Country": "IN", + "geonameId": "6301095", + "latitudeAirport": 26.402779, + "longitudeAirport": 80.4125, + "nameAirport": "Kanpur", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-8", + "airportId": 3953, + "codeIataAirport": "KNV", + "codeIataCity": "KNV", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260972", + "latitudeAirport": 50.683334, + "longitudeAirport": -125.833336, + "nameAirport": "Knights Inlet", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-9", + "airportId": 3954, + "codeIataAirport": "KNW", + "codeIataCity": "KNW", + "codeIcaoAirport": "PANW", + "codeIso2Country": "US", + "geonameId": "5869875", + "latitudeAirport": 59.45222, + "longitudeAirport": -157.32973, + "nameAirport": "New Stuyahok", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 3955, + "codeIataAirport": "KNX", + "codeIataCity": "KNX", + "codeIcaoAirport": "YPKU", + "codeIso2Country": "AU", + "geonameId": "6301333", + "latitudeAirport": -15.784031, + "longitudeAirport": 128.71268, + "nameAirport": "Kununurra", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "airportId": 3956, + "codeIataAirport": "KNY", + "codeIataCity": "KNY", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8261071", + "latitudeAirport": 57.066666, + "longitudeAirport": -102.03333, + "nameAirport": "Kinoosao", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "0", + "airportId": 3957, + "codeIataAirport": "KNZ", + "codeIataCity": "KNZ", + "codeIcaoAirport": "GAKA", + "codeIso2Country": "ML", + "geonameId": "8261016", + "latitudeAirport": 12.843333, + "longitudeAirport": -11.2525, + "nameAirport": "Kenieba", + "nameCountry": "Mali", + "phone": "", + "timezone": "Africa/Bamako" + }, + { + "GMT": "-10", + "airportId": 3958, + "codeIataAirport": "KOA", + "codeIataCity": "KOA", + "codeIcaoAirport": "PHKO", + "codeIso2Country": "US", + "geonameId": "5849648", + "latitudeAirport": 19.736174, + "longitudeAirport": -156.04108, + "nameAirport": "Kona International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "11", + "airportId": 3959, + "codeIataAirport": "KOC", + "codeIataCity": "KOC", + "codeIcaoAirport": "NWWK", + "codeIso2Country": "NC", + "geonameId": "6299974", + "latitudeAirport": -20.5, + "longitudeAirport": 164.41667, + "nameAirport": "Koumac", + "nameCountry": "New Caledonia", + "phone": "", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "8", + "airportId": 3960, + "codeIataAirport": "KOD", + "codeIataCity": "KOD", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731182", + "latitudeAirport": -0.266667, + "longitudeAirport": 116.583336, + "nameAirport": "Kotabangun", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "9", + "airportId": 3961, + "codeIataAirport": "KOE", + "codeIataCity": "KOE", + "codeIcaoAirport": "WRKK", + "codeIso2Country": "TL", + "geonameId": "6301268", + "latitudeAirport": -10.168536, + "longitudeAirport": 123.66725, + "nameAirport": "Eltari", + "nameCountry": "East Timor", + "phone": "", + "timezone": "Asia/Dili" + }, + { + "GMT": "2", + "airportId": 3962, + "codeIataAirport": "KOF", + "codeIataCity": "KOF", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "988290", + "latitudeAirport": -25.433332, + "longitudeAirport": 31.933332, + "nameAirport": "Komatipoort", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "7", + "airportId": 3963, + "codeIataAirport": "KOG", + "codeIataCity": "KOG", + "codeIcaoAirport": "", + "codeIso2Country": "LA", + "geonameId": "8298730", + "latitudeAirport": 15.566667, + "longitudeAirport": 105.816666, + "nameAirport": "Khong", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "10", + "airportId": 3964, + "codeIataAirport": "KOH", + "codeIataCity": "KOH", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731183", + "latitudeAirport": -15.966667, + "longitudeAirport": 142.41667, + "nameAirport": "Koolatah", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "0", + "airportId": 3965, + "codeIataAirport": "KOI", + "codeIataCity": "KOI", + "codeIcaoAirport": "EGPA", + "codeIso2Country": "GB", + "geonameId": "6296621", + "latitudeAirport": 58.958057, + "longitudeAirport": -2.900556, + "nameAirport": "Orkney Island", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "9", + "airportId": 3966, + "codeIataAirport": "KOJ", + "codeIataCity": "KOJ", + "codeIcaoAirport": "RJFK", + "codeIso2Country": "JP", + "geonameId": "6300348", + "latitudeAirport": 31.801224, + "longitudeAirport": 130.71562, + "nameAirport": "Kagoshima", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "2", + "airportId": 3967, + "codeIataAirport": "KOK", + "codeIataCity": "KOK", + "codeIcaoAirport": "EFKK", + "codeIso2Country": "FI", + "geonameId": "6296549", + "latitudeAirport": 63.718838, + "longitudeAirport": 23.133068, + "nameAirport": "Kruunupyy", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "10", + "airportId": 3968, + "codeIataAirport": "KOM", + "codeIataCity": "KOM", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "0", + "latitudeAirport": -6.133333, + "longitudeAirport": 143.63333, + "nameAirport": "Komo-Manda", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "7", + "airportId": 3969, + "codeIataAirport": "KON", + "codeIataCity": "KON", + "codeIcaoAirport": "", + "codeIso2Country": "VN", + "geonameId": "7730314", + "latitudeAirport": 14.354167, + "longitudeAirport": 108.021385, + "nameAirport": "Kontum", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "2", + "airportId": 3970, + "codeIataAirport": "KOO", + "codeIataCity": "KOO", + "codeIcaoAirport": "FZRQ", + "codeIso2Country": "CD", + "geonameId": "6297158", + "latitudeAirport": -5.383333, + "longitudeAirport": 27.0, + "nameAirport": "Kongolo", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "7", + "airportId": 3971, + "codeIataAirport": "KOP", + "codeIataCity": "KOP", + "codeIcaoAirport": "VTUW", + "codeIso2Country": "TH", + "geonameId": "1608531", + "latitudeAirport": 17.4, + "longitudeAirport": 104.75, + "nameAirport": "Nakhon Phanom", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "1", + "airportId": 3972, + "codeIataAirport": "KOQ", + "codeIataCity": "KOQ", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 51.716667, + "longitudeAirport": 11.95, + "nameAirport": "Koethen", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "10", + "airportId": 3973, + "codeIataAirport": "KOR", + "codeIataCity": "KOR", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260981", + "latitudeAirport": -7.808333, + "longitudeAirport": 146.55, + "nameAirport": "Kokoro", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "7", + "airportId": 3974, + "codeIataAirport": "KOS", + "codeIataCity": "KOS", + "codeIcaoAirport": "VDSV", + "codeIso2Country": "KH", + "geonameId": "7668584", + "latitudeAirport": 10.633333, + "longitudeAirport": 103.5, + "nameAirport": "Sihanoukville", + "nameCountry": "Cambodia", + "phone": "", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "-9", + "airportId": 3975, + "codeIataAirport": "KOT", + "codeIataCity": "KOT", + "codeIcaoAirport": "PFKO", + "codeIso2Country": "US", + "geonameId": "5866720", + "latitudeAirport": 63.02972, + "longitudeAirport": -163.56027, + "nameAirport": "Kotlik", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "1", + "airportId": 3976, + "codeIataAirport": "KOU", + "codeIataCity": "KOU", + "codeIcaoAirport": "FOGK", + "codeIso2Country": "GA", + "geonameId": "7730079", + "latitudeAirport": -1.116667, + "longitudeAirport": 12.508333, + "nameAirport": "Koulamoutou", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "6", + "airportId": 3977, + "codeIataAirport": "KOV", + "codeIataCity": "KOV", + "codeIcaoAirport": "UACK", + "codeIso2Country": "KZ", + "geonameId": "7668488", + "latitudeAirport": 53.316666, + "longitudeAirport": 69.4, + "nameAirport": "Kokshetau", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "8", + "airportId": 3978, + "codeIataAirport": "KOW", + "codeIataCity": "KOW", + "codeIcaoAirport": "ZSGZ", + "codeIso2Country": "CN", + "geonameId": "6301382", + "latitudeAirport": 25.851667, + "longitudeAirport": 114.776665, + "nameAirport": "Ganzhou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9", + "airportId": 3979, + "codeIataAirport": "KOX", + "codeIataCity": "KOX", + "codeIcaoAirport": "WABN", + "codeIso2Country": "ID", + "geonameId": "6301182", + "latitudeAirport": -4.716667, + "longitudeAirport": 136.41667, + "nameAirport": "Kokonao", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-9", + "airportId": 3980, + "codeIataAirport": "KOY", + "codeIataCity": "KOY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5870802", + "latitudeAirport": 57.162224, + "longitudeAirport": -154.2275, + "nameAirport": "Olga Bay SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 3981, + "codeIataAirport": "KOZ", + "codeIataCity": "KOZ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5871052", + "latitudeAirport": 57.916668, + "longitudeAirport": -152.5, + "nameAirport": "Ouzinkie SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 3982, + "codeIataAirport": "KPA", + "codeIataCity": "KPA", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298907", + "latitudeAirport": -5.383333, + "longitudeAirport": 142.55, + "nameAirport": "Kopiago", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 3983, + "codeIataAirport": "KPB", + "codeIataCity": "KPB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5556431", + "latitudeAirport": 56.333332, + "longitudeAirport": -133.58333, + "nameAirport": "Point Baker SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 3984, + "codeIataAirport": "KPC", + "codeIataCity": "KPC", + "codeIcaoAirport": "PAPC", + "codeIso2Country": "US", + "geonameId": "5871913", + "latitudeAirport": 65.25444, + "longitudeAirport": -166.85583, + "nameAirport": "Port Clarence", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 3985, + "codeIataAirport": "KPD", + "codeIataCity": "KPD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.083332, + "longitudeAirport": -75.4, + "nameAirport": "King Of Prussia", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 3986, + "codeIataAirport": "KPE", + "codeIataCity": "KPE", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298695", + "latitudeAirport": -4.05, + "longitudeAirport": 141.16667, + "nameAirport": "Yapsiei", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 3987, + "codeIataAirport": "KPF", + "codeIataCity": "KPF", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "0", + "latitudeAirport": -8.533056, + "longitudeAirport": 142.51195, + "nameAirport": "Kondubol", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "airportId": 3988, + "codeIataAirport": "KPG", + "codeIataCity": "KPG", + "codeIcaoAirport": "", + "codeIso2Country": "GY", + "geonameId": "8298699", + "latitudeAirport": 6.466667, + "longitudeAirport": -59.166668, + "nameAirport": "Kurupung", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "-9", + "airportId": 3989, + "codeIataAirport": "KPH", + "codeIataCity": "KPH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5871314", + "latitudeAirport": 54.45, + "longitudeAirport": -162.68333, + "nameAirport": "Pauloff Harbor SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 3990, + "codeIataAirport": "KPI", + "codeIataCity": "KPI", + "codeIcaoAirport": "WBGP", + "codeIso2Country": "MY", + "geonameId": "7731184", + "latitudeAirport": 2.010556, + "longitudeAirport": 112.92944, + "nameAirport": "Kapit", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-9", + "airportId": 3991, + "codeIataAirport": "KPK", + "codeIataCity": "KPK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8260754", + "latitudeAirport": 57.433613, + "longitudeAirport": -153.9, + "nameAirport": "Parks SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 3992, + "codeIataAirport": "KPL", + "codeIataCity": "KPL", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "0", + "latitudeAirport": -8.633056, + "longitudeAirport": 142.82445, + "nameAirport": "Kapal", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 3993, + "codeIataAirport": "KPM", + "codeIataCity": "KPM", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2093565", + "latitudeAirport": -5.383333, + "longitudeAirport": 143.93333, + "nameAirport": "Kompiam", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 3994, + "codeIataAirport": "KPN", + "codeIataCity": "KPN", + "codeIcaoAirport": "PAKI", + "codeIso2Country": "US", + "geonameId": "5866392", + "latitudeAirport": 59.933334, + "longitudeAirport": -164.05, + "nameAirport": "Kipnuk SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "9", + "airportId": 3995, + "codeIataAirport": "KPO", + "codeIataCity": "KPO", + "codeIcaoAirport": "RKTH", + "codeIso2Country": "KR", + "geonameId": "6300449", + "latitudeAirport": 35.98371, + "longitudeAirport": 129.43375, + "nameAirport": "Pohang", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "10", + "airportId": 3996, + "codeIataAirport": "KPP", + "codeIataCity": "KPP", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2161974", + "latitudeAirport": -19.966667, + "longitudeAirport": 143.93333, + "nameAirport": "Kalpowar", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "airportId": 3997, + "codeIataAirport": "KPR", + "codeIataCity": "KPR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5871941", + "latitudeAirport": 58.433334, + "longitudeAirport": -152.58333, + "nameAirport": "Port Williams SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 3998, + "codeIataAirport": "KPS", + "codeIataCity": "KPS", + "codeIcaoAirport": "YKMP", + "codeIso2Country": "AU", + "geonameId": "7730261", + "latitudeAirport": -31.083332, + "longitudeAirport": 152.76666, + "nameAirport": "Kempsey", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-8", + "airportId": 3999, + "codeIataAirport": "KPT", + "codeIataCity": "KPT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5705218", + "latitudeAirport": 41.983334, + "longitudeAirport": -114.666664, + "nameAirport": "Jackpot", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-9", + "airportId": 4000, + "codeIataAirport": "KPV", + "codeIataCity": "KPV", + "codeIcaoAirport": "PAPE", + "codeIso2Country": "US", + "geonameId": "5871445", + "latitudeAirport": 55.906666, + "longitudeAirport": -159.145, + "nameAirport": "Perryville SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 4001, + "codeIataAirport": "KPY", + "codeIataCity": "KPY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5871910", + "latitudeAirport": 57.933334, + "longitudeAirport": -153.03334, + "nameAirport": "Port Bailey SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 4002, + "codeIataAirport": "KQA", + "codeIataCity": "KQA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5879056", + "latitudeAirport": 54.13333, + "longitudeAirport": -165.78334, + "nameAirport": "Akutan", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "10", + "airportId": 4003, + "codeIataAirport": "KQL", + "codeIataCity": "KQL", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2093674", + "latitudeAirport": -5.65, + "longitudeAirport": 144.86667, + "nameAirport": "Kol", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5", + "airportId": 4004, + "codeIataAirport": "KQT", + "codeIataCity": "KQT", + "codeIcaoAirport": "UTDT", + "codeIso2Country": "TJ", + "geonameId": "7668543", + "latitudeAirport": 37.85961, + "longitudeAirport": 68.86117, + "nameAirport": "Kurgan Tube", + "nameCountry": "Tajikistan", + "phone": "", + "timezone": "Asia/Dushanbe" + }, + { + "GMT": "10", + "airportId": 4005, + "codeIataAirport": "KRA", + "codeIataCity": "KRA", + "codeIcaoAirport": "YKER", + "codeIso2Country": "AU", + "geonameId": "7668728", + "latitudeAirport": -35.666668, + "longitudeAirport": 143.91667, + "nameAirport": "Kerang", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "10", + "airportId": 4006, + "codeIataAirport": "KRB", + "codeIataCity": "KRB", + "codeIcaoAirport": "YKMB", + "codeIso2Country": "AU", + "geonameId": "7731185", + "latitudeAirport": -17.456667, + "longitudeAirport": 140.83194, + "nameAirport": "Karumba", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "7", + "airportId": 4007, + "codeIataAirport": "KRC", + "codeIataCity": "KRC", + "codeIcaoAirport": "WIPH", + "codeIso2Country": "ID", + "geonameId": "7731186", + "latitudeAirport": -1.716667, + "longitudeAirport": 101.25, + "nameAirport": "Kerinci", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "9.30", + "airportId": 4008, + "codeIataAirport": "KRD", + "codeIataCity": "KRD", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8261031", + "latitudeAirport": -20.516666, + "longitudeAirport": 134.66667, + "nameAirport": "Kurundi", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "2", + "airportId": 4009, + "codeIataAirport": "KRE", + "codeIataCity": "KRE", + "codeIcaoAirport": "HBBO", + "codeIso2Country": "BI", + "geonameId": "8299091", + "latitudeAirport": -3.333333, + "longitudeAirport": 29.0, + "nameAirport": "Kirundo", + "nameCountry": "Burundi", + "phone": "", + "timezone": "Africa/Bujumbura" + }, + { + "GMT": "1", + "airportId": 4010, + "codeIataAirport": "KRF", + "codeIataCity": "KRF", + "codeIcaoAirport": "ESNK", + "codeIso2Country": "SE", + "geonameId": "6296802", + "latitudeAirport": 63.049442, + "longitudeAirport": 17.772778, + "nameAirport": "Kramfors", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-4", + "airportId": 4011, + "codeIataAirport": "KRG", + "codeIataCity": "KRG", + "codeIcaoAirport": "SYKS", + "codeIso2Country": "GY", + "geonameId": "7731187", + "latitudeAirport": 4.016667, + "longitudeAirport": -59.516666, + "nameAirport": "Karasabai", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "10", + "airportId": 4012, + "codeIataAirport": "KRI", + "codeIataCity": "KRI", + "codeIcaoAirport": "AYKK", + "codeIso2Country": "PG", + "geonameId": "7668081", + "latitudeAirport": -7.483333, + "longitudeAirport": 144.26666, + "nameAirport": "Kikori", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 4013, + "codeIataAirport": "KRJ", + "codeIataCity": "KRJ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299041", + "latitudeAirport": -4.616667, + "longitudeAirport": 143.51666, + "nameAirport": "Karawari", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 4014, + "codeIataAirport": "KRK", + "codeIataCity": "KRK", + "codeIcaoAirport": "EPKK", + "codeIso2Country": "PL", + "geonameId": "3103897", + "latitudeAirport": 50.075493, + "longitudeAirport": 19.793743, + "nameAirport": "John Paul II Balice International", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "8", + "airportId": 4015, + "codeIataAirport": "KRL", + "codeIataCity": "KRL", + "codeIcaoAirport": "ZWKL", + "codeIso2Country": "CN", + "geonameId": "7730304", + "latitudeAirport": 41.689896, + "longitudeAirport": 86.12434, + "nameAirport": "Korla", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-4", + "airportId": 4016, + "codeIataAirport": "KRM", + "codeIataCity": "KRM", + "codeIcaoAirport": "SYKR", + "codeIso2Country": "GY", + "geonameId": "7731188", + "latitudeAirport": 3.75, + "longitudeAirport": -59.316666, + "nameAirport": "Karanambo", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "1", + "airportId": 4017, + "codeIataAirport": "KRN", + "codeIataCity": "KRN", + "codeIcaoAirport": "ESNQ", + "codeIso2Country": "SE", + "geonameId": "605156", + "latitudeAirport": 67.82222, + "longitudeAirport": 20.345833, + "nameAirport": "Kiruna", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "5", + "airportId": 4018, + "codeIataAirport": "KRO", + "codeIataCity": "KRO", + "codeIcaoAirport": "USUU", + "codeIso2Country": "RU", + "geonameId": "7668540", + "latitudeAirport": 55.433334, + "longitudeAirport": 65.3, + "nameAirport": "Kurgan", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "1", + "airportId": 4019, + "codeIataAirport": "KRP", + "codeIataCity": "KRP", + "codeIcaoAirport": "EKKA", + "codeIso2Country": "DK", + "geonameId": "2619070", + "latitudeAirport": 56.3, + "longitudeAirport": 9.116667, + "nameAirport": "Karup", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "2", + "airportId": 4020, + "codeIataAirport": "KRQ", + "codeIataCity": "KRQ", + "codeIcaoAirport": "UKCK", + "codeIso2Country": "UA", + "geonameId": "7731189", + "latitudeAirport": 48.716667, + "longitudeAirport": 37.61667, + "nameAirport": "Kramatorsk", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "3", + "airportId": 4021, + "codeIataAirport": "KRR", + "codeIataCity": "KRR", + "codeIcaoAirport": "URKK", + "codeIso2Country": "RU", + "geonameId": "6300990", + "latitudeAirport": 45.034138, + "longitudeAirport": 39.139004, + "nameAirport": "Pashkovsky", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "airportId": 4022, + "codeIataAirport": "KRS", + "codeIataCity": "KRS", + "codeIcaoAirport": "ENCN", + "codeIso2Country": "NO", + "geonameId": "6296730", + "latitudeAirport": 58.20255, + "longitudeAirport": 8.073732, + "nameAirport": "Kjevik", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "3", + "airportId": 4023, + "codeIataAirport": "KRT", + "codeIataCity": "KRT", + "codeIcaoAirport": "HSSS", + "codeIso2Country": "SD", + "geonameId": "379252", + "latitudeAirport": 15.592217, + "longitudeAirport": 32.549698, + "nameAirport": "Civil", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "10", + "airportId": 4024, + "codeIataAirport": "KRU", + "codeIataCity": "KRU", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8261043", + "latitudeAirport": -8.3, + "longitudeAirport": 147.08333, + "nameAirport": "Kerau", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 4025, + "codeIataAirport": "KRV", + "codeIataCity": "KRV", + "codeIcaoAirport": "", + "codeIso2Country": "KE", + "geonameId": "7731190", + "latitudeAirport": 2.983333, + "longitudeAirport": 36.11667, + "nameAirport": "Kerio Valley", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "5", + "airportId": 4026, + "codeIataAirport": "KRW", + "codeIataCity": "KRW", + "codeIcaoAirport": "UTAK", + "codeIso2Country": "TM", + "geonameId": "7730199", + "latitudeAirport": 40.083332, + "longitudeAirport": 53.083332, + "nameAirport": "Turkmanbashi", + "nameCountry": "Turkmenistan", + "phone": "", + "timezone": "Asia/Ashgabat" + }, + { + "GMT": "10", + "airportId": 4027, + "codeIataAirport": "KRX", + "codeIataCity": "KRX", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299015", + "latitudeAirport": -4.5, + "longitudeAirport": 145.96666, + "nameAirport": "Kar Kar", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 4028, + "codeIataAirport": "KRY", + "codeIataCity": "KRY", + "codeIcaoAirport": "ZWKM", + "codeIso2Country": "CN", + "geonameId": "7731191", + "latitudeAirport": 45.61667, + "longitudeAirport": 84.88333, + "nameAirport": "Karamay", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 4029, + "codeIataAirport": "KRZ", + "codeIataCity": "KRZ", + "codeIcaoAirport": "FZBT", + "codeIso2Country": "CD", + "geonameId": "7730555", + "latitudeAirport": -1.483333, + "longitudeAirport": 19.0, + "nameAirport": "Kiri", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "11", + "airportId": 4030, + "codeIataAirport": "KSA", + "codeIataCity": "KSA", + "codeIcaoAirport": "PTSA", + "codeIso2Country": "FM", + "geonameId": "2081169", + "latitudeAirport": 5.352478, + "longitudeAirport": 162.9566, + "nameAirport": "Kosrae", + "nameCountry": "Micronesia", + "phone": "", + "timezone": "Pacific/Kosrae" + }, + { + "GMT": "10", + "airportId": 4031, + "codeIataAirport": "KSB", + "codeIataCity": "KSB", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2094510", + "latitudeAirport": -6.383333, + "longitudeAirport": 147.01666, + "nameAirport": "Kasanombe", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 4032, + "codeIataAirport": "KSC", + "codeIataCity": "KSC", + "codeIcaoAirport": "LZKZ", + "codeIso2Country": "SK", + "geonameId": "6301800", + "latitudeAirport": 48.666668, + "longitudeAirport": 21.25, + "nameAirport": "Barca", + "nameCountry": "Slovakia", + "phone": "", + "timezone": "Europe/Bratislava" + }, + { + "GMT": "1", + "airportId": 4033, + "codeIataAirport": "KSD", + "codeIataCity": "KSD", + "codeIcaoAirport": "ESOK", + "codeIso2Country": "SE", + "geonameId": "6296810", + "latitudeAirport": 59.360283, + "longitudeAirport": 13.472059, + "nameAirport": "Karlstad", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "3", + "airportId": 4034, + "codeIataAirport": "KSE", + "codeIataCity": "KSE", + "codeIcaoAirport": "HUKS", + "codeIso2Country": "UG", + "geonameId": "6297379", + "latitudeAirport": 0.185556, + "longitudeAirport": 30.100834, + "nameAirport": "Kasese", + "nameCountry": "Uganda", + "phone": "", + "timezone": "Africa/Kampala" + }, + { + "GMT": "1", + "airportId": 4035, + "codeIataAirport": "KSF", + "codeIataCity": "KSF", + "codeIcaoAirport": "EDVK", + "codeIso2Country": "DE", + "geonameId": "6296531", + "latitudeAirport": 51.415855, + "longitudeAirport": 9.380858, + "nameAirport": "Kassel-Calden", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "3.30", + "airportId": 4036, + "codeIataAirport": "KSH", + "codeIataCity": "KSH", + "codeIcaoAirport": "OICC", + "codeIso2Country": "IR", + "geonameId": "6300046", + "latitudeAirport": 34.355915, + "longitudeAirport": 47.145126, + "nameAirport": "Kermanshah", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "0", + "airportId": 4037, + "codeIataAirport": "KSI", + "codeIataCity": "KSI", + "codeIcaoAirport": "GUKU", + "codeIso2Country": "GN", + "geonameId": "6297249", + "latitudeAirport": 9.183333, + "longitudeAirport": -10.1, + "nameAirport": "Kissidougou", + "nameCountry": "Guinea", + "phone": "", + "timezone": "Africa/Conakry" + }, + { + "GMT": "2", + "airportId": 4038, + "codeIataAirport": "KSJ", + "codeIataCity": "KSJ", + "codeIcaoAirport": "LGKS", + "codeIso2Country": "GR", + "geonameId": "7668313", + "latitudeAirport": 35.42139, + "longitudeAirport": 26.916668, + "nameAirport": "Kasos Island", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "1", + "airportId": 4039, + "codeIataAirport": "KSK", + "codeIataCity": "KSK", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "2701715", + "latitudeAirport": 59.316666, + "longitudeAirport": 14.55, + "nameAirport": "Karlskoga", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "3", + "airportId": 4040, + "codeIataAirport": "KSL", + "codeIataCity": "KSL", + "codeIcaoAirport": "HSKA", + "codeIso2Country": "SD", + "geonameId": "6297341", + "latitudeAirport": 15.390278, + "longitudeAirport": 36.34222, + "nameAirport": "Kassala", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "-9", + "airportId": 4041, + "codeIataAirport": "KSM", + "codeIataCity": "KSM", + "codeIcaoAirport": "PASM", + "codeIso2Country": "US", + "geonameId": "5873197", + "latitudeAirport": 62.058666, + "longitudeAirport": -163.29489, + "nameAirport": "Saint Marys", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "6", + "airportId": 4042, + "codeIataAirport": "KSN", + "codeIataCity": "KSN", + "codeIcaoAirport": "UAUU", + "codeIso2Country": "KZ", + "geonameId": "6300923", + "latitudeAirport": 53.2, + "longitudeAirport": 63.55, + "nameAirport": "Kostanay", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "2", + "airportId": 4043, + "codeIataAirport": "KSO", + "codeIataCity": "KSO", + "codeIcaoAirport": "LGKA", + "codeIso2Country": "GR", + "geonameId": "6299489", + "latitudeAirport": 40.450832, + "longitudeAirport": 21.273333, + "nameAirport": "Aristoteles Airport", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "10", + "airportId": 4044, + "codeIataAirport": "KSP", + "codeIataCity": "KSP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2093339", + "latitudeAirport": -8.55, + "longitudeAirport": 147.46666, + "nameAirport": "Kosipe", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5", + "airportId": 4045, + "codeIataAirport": "KSQ", + "codeIataCity": "KSQ", + "codeIcaoAirport": "UTSL", + "codeIso2Country": "UZ", + "geonameId": "7731192", + "latitudeAirport": 38.80981, + "longitudeAirport": 65.77531, + "nameAirport": "Karshi", + "nameCountry": "Uzbekistan", + "phone": "", + "timezone": "Asia/Samarkand" + }, + { + "GMT": "-9", + "airportId": 4046, + "codeIataAirport": "KSR", + "codeIataCity": "KSR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 56.233334, + "longitudeAirport": -160.23306, + "nameAirport": "Federal No 1", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 4047, + "codeIataAirport": "KSS", + "codeIataCity": "KSS", + "codeIcaoAirport": "GASK", + "codeIso2Country": "ML", + "geonameId": "6297180", + "latitudeAirport": 11.3, + "longitudeAirport": -5.583333, + "nameAirport": "Sikasso", + "nameCountry": "Mali", + "phone": "", + "timezone": "Africa/Bamako" + }, + { + "GMT": "3", + "airportId": 4048, + "codeIataAirport": "KST", + "codeIataCity": "KST", + "codeIcaoAirport": "HSKI", + "codeIso2Country": "SD", + "geonameId": "6297342", + "latitudeAirport": 13.133333, + "longitudeAirport": 32.716667, + "nameAirport": "Kosti", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "1", + "airportId": 4049, + "codeIataAirport": "KSU", + "codeIataCity": "KRS", + "codeIcaoAirport": "ENKB", + "codeIso2Country": "NO", + "geonameId": "6296748", + "latitudeAirport": 63.114723, + "longitudeAirport": 7.844444, + "nameAirport": "Kvernberget", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "10", + "airportId": 4050, + "codeIataAirport": "KSV", + "codeIataCity": "KSV", + "codeIcaoAirport": "YSPV", + "codeIso2Country": "AU", + "geonameId": "7731193", + "latitudeAirport": -23.55, + "longitudeAirport": 140.68333, + "nameAirport": "Springvale", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "airportId": 4051, + "codeIataAirport": "KSW", + "codeIataCity": "KSW", + "codeIcaoAirport": "LLKS", + "codeIso2Country": "IL", + "geonameId": "7730638", + "latitudeAirport": 33.216667, + "longitudeAirport": 35.566666, + "nameAirport": "Kiryat Shmona", + "nameCountry": "Israel", + "phone": "", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "10", + "airportId": 4052, + "codeIataAirport": "KSX", + "codeIataCity": "KSX", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298961", + "latitudeAirport": -6.6, + "longitudeAirport": 146.18333, + "nameAirport": "Yasuru", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 4053, + "codeIataAirport": "KSY", + "codeIataCity": "KSY", + "codeIcaoAirport": "LTCF", + "codeIso2Country": "TR", + "geonameId": "6299764", + "latitudeAirport": 40.551666, + "longitudeAirport": 43.085835, + "nameAirport": "Kars", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3", + "airportId": 4054, + "codeIataAirport": "KSZ", + "codeIataCity": "KSZ", + "codeIcaoAirport": "ULKK", + "codeIso2Country": "RU", + "geonameId": "7668516", + "latitudeAirport": 61.233334, + "longitudeAirport": 46.7, + "nameAirport": "Kotlas", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "8", + "airportId": 4055, + "codeIataAirport": "KTA", + "codeIataCity": "KTA", + "codeIcaoAirport": "YPKA", + "codeIso2Country": "AU", + "geonameId": "7668758", + "latitudeAirport": -20.70826, + "longitudeAirport": 116.77006, + "nameAirport": "Karratha", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-9", + "airportId": 4056, + "codeIataAirport": "KTB", + "codeIataCity": "KTB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5557946", + "latitudeAirport": 55.68833, + "longitudeAirport": -132.535, + "nameAirport": "Thorne Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 4057, + "codeIataAirport": "KTC", + "codeIataCity": "KTC", + "codeIcaoAirport": "", + "codeIso2Country": "CI", + "geonameId": "8299019", + "latitudeAirport": 8.166667, + "longitudeAirport": -5.166667, + "nameAirport": "Katiola", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "9", + "airportId": 4058, + "codeIataAirport": "KTD", + "codeIataCity": "KTD", + "codeIcaoAirport": "RORK", + "codeIso2Country": "JP", + "geonameId": "6301843", + "latitudeAirport": 25.95, + "longitudeAirport": 131.3, + "nameAirport": "Kitadaito", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "8", + "airportId": 4059, + "codeIataAirport": "KTE", + "codeIataCity": "KTE", + "codeIcaoAirport": "WMKE", + "codeIso2Country": "MY", + "geonameId": "7632451", + "latitudeAirport": 4.538333, + "longitudeAirport": 103.42833, + "nameAirport": "Kerteh", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "12", + "airportId": 4060, + "codeIataAirport": "KTF", + "codeIataCity": "KTF", + "codeIcaoAirport": "NZTK", + "codeIso2Country": "NZ", + "geonameId": "7730734", + "latitudeAirport": -40.85, + "longitudeAirport": 172.8, + "nameAirport": "Takaka", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "7", + "airportId": 4061, + "codeIataAirport": "KTG", + "codeIataCity": "KTG", + "codeIcaoAirport": "WIOK", + "codeIso2Country": "ID", + "geonameId": "6301240", + "latitudeAirport": -1.833333, + "longitudeAirport": 109.98333, + "nameAirport": "Ketapang", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Pontianak" + }, + { + "GMT": "-9", + "airportId": 4062, + "codeIataAirport": "KTH", + "codeIataCity": "KTH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5876233", + "latitudeAirport": 59.966667, + "longitudeAirport": -158.33333, + "nameAirport": "SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "airportId": 4063, + "codeIataAirport": "KTI", + "codeIataCity": "KTI", + "codeIcaoAirport": "VDKT", + "codeIso2Country": "KH", + "geonameId": "7731194", + "latitudeAirport": 12.5, + "longitudeAirport": 106.05, + "nameAirport": "Kratie", + "nameCountry": "Cambodia", + "phone": "", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "3", + "airportId": 4064, + "codeIataAirport": "KTL", + "codeIataCity": "KTL", + "codeIcaoAirport": "HKKT", + "codeIso2Country": "KE", + "geonameId": "6297312", + "latitudeAirport": 0.974111, + "longitudeAirport": 34.959248, + "nameAirport": "Kitale", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "5.45", + "airportId": 4065, + "codeIataAirport": "KTM", + "codeIataCity": "KTM", + "codeIcaoAirport": "VNKT", + "codeIso2Country": "NP", + "geonameId": "1283240", + "latitudeAirport": 27.699905, + "longitudeAirport": 85.35657, + "nameAirport": "Tribhuvan International", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-9", + "airportId": 4066, + "codeIataAirport": "KTN", + "codeIataCity": "KTN", + "codeIcaoAirport": "PAKT", + "codeIso2Country": "US", + "geonameId": "5554438", + "latitudeAirport": 55.35655, + "longitudeAirport": -131.7087, + "nameAirport": "Ketchikan International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "-4", + "airportId": 4067, + "codeIataAirport": "KTO", + "codeIataCity": "KTO", + "codeIcaoAirport": "SYKT", + "codeIso2Country": "GY", + "geonameId": "7731195", + "latitudeAirport": 4.65, + "longitudeAirport": -59.816666, + "nameAirport": "Kato", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "-5", + "airportId": 4068, + "codeIataAirport": "KTP", + "codeIataCity": "KIN", + "codeIcaoAirport": "", + "codeIso2Country": "JM", + "geonameId": "0", + "latitudeAirport": 17.9875, + "longitudeAirport": -76.82333, + "nameAirport": "Tinson", + "nameCountry": "", + "phone": "", + "timezone": "America/Jamaica" + }, + { + "GMT": "2", + "airportId": 4069, + "codeIataAirport": "KTQ", + "codeIataCity": "KTQ", + "codeIcaoAirport": "EFIT", + "codeIso2Country": "FI", + "geonameId": "7730068", + "latitudeAirport": 62.165833, + "longitudeAirport": 30.076668, + "nameAirport": "Kitee", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "9.30", + "airportId": 4070, + "codeIataAirport": "KTR", + "codeIataCity": "KTR", + "codeIcaoAirport": "YPTN", + "codeIso2Country": "AU", + "geonameId": "6301338", + "latitudeAirport": -14.4575, + "longitudeAirport": 132.2714, + "nameAirport": "Tindal", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-9", + "airportId": 4071, + "codeIataAirport": "KTS", + "codeIataCity": "KTS", + "codeIcaoAirport": "PFKT", + "codeIso2Country": "US", + "geonameId": "5858026", + "latitudeAirport": 65.329445, + "longitudeAirport": -166.47166, + "nameAirport": "Brevig Mission", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 4072, + "codeIataAirport": "KTT", + "codeIataCity": "KTT", + "codeIcaoAirport": "EFKT", + "codeIso2Country": "FI", + "geonameId": "6296551", + "latitudeAirport": 67.695946, + "longitudeAirport": 24.859028, + "nameAirport": "Kittila", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "5.30", + "airportId": 4073, + "codeIataAirport": "KTU", + "codeIataCity": "KTU", + "codeIcaoAirport": "VIKO", + "codeIso2Country": "IN", + "geonameId": "6301102", + "latitudeAirport": 25.0, + "longitudeAirport": 76.5, + "nameAirport": "Kota", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-4", + "airportId": 4074, + "codeIataAirport": "KTV", + "codeIataCity": "KTV", + "codeIcaoAirport": "", + "codeIso2Country": "VE", + "geonameId": "7731196", + "latitudeAirport": 5.75, + "longitudeAirport": -62.416668, + "nameAirport": "Kamarata", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "1", + "airportId": 4075, + "codeIataAirport": "KTW", + "codeIataCity": "KTW", + "codeIcaoAirport": "EPKT", + "codeIso2Country": "PL", + "geonameId": "6296782", + "latitudeAirport": 50.470833, + "longitudeAirport": 19.07403, + "nameAirport": "Pyrzowice", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "0", + "airportId": 4076, + "codeIataAirport": "KTX", + "codeIataCity": "KTX", + "codeIcaoAirport": "GAKO", + "codeIso2Country": "ML", + "geonameId": "6297172", + "latitudeAirport": 12.416667, + "longitudeAirport": -5.383333, + "nameAirport": "Koutiala", + "nameCountry": "Mali", + "phone": "", + "timezone": "Africa/Bamako" + }, + { + "GMT": "5.30", + "airportId": 4077, + "codeIataAirport": "KTY", + "codeIataCity": "KTY", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "8299039", + "latitudeAirport": 6.0, + "longitudeAirport": 80.3, + "nameAirport": "Katukurunda Slaf Base", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "8", + "airportId": 4078, + "codeIataAirport": "KUA", + "codeIataCity": "KUA", + "codeIcaoAirport": "WMKD", + "codeIso2Country": "MY", + "geonameId": "6301254", + "latitudeAirport": 3.780765, + "longitudeAirport": 103.21518, + "nameAirport": "Kuantan", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "12", + "airportId": 4079, + "codeIataAirport": "KUC", + "codeIataCity": "KUC", + "codeIcaoAirport": "", + "codeIso2Country": "KI", + "geonameId": "0", + "latitudeAirport": 0.233333, + "longitudeAirport": 173.38333, + "nameAirport": "Kuria", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "8", + "airportId": 4080, + "codeIataAirport": "KUD", + "codeIataCity": "KUD", + "codeIcaoAirport": "WBKT", + "codeIso2Country": "MY", + "geonameId": "6301214", + "latitudeAirport": 6.925, + "longitudeAirport": 116.83417, + "nameAirport": "Kudat", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "11", + "airportId": 4081, + "codeIataAirport": "KUE", + "codeIataCity": "KUE", + "codeIcaoAirport": "", + "codeIso2Country": "SB", + "geonameId": "2107198", + "latitudeAirport": -8.016667, + "longitudeAirport": 156.0, + "nameAirport": "Kukundu", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "4", + "airportId": 4082, + "codeIataAirport": "KUF", + "codeIataCity": "KUF", + "codeIcaoAirport": "UWWW", + "codeIso2Country": "RU", + "geonameId": "6301028", + "latitudeAirport": 53.50782, + "longitudeAirport": 50.14742, + "nameAirport": "Kurumoch", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Samara" + }, + { + "GMT": "10", + "airportId": 4083, + "codeIataAirport": "KUG", + "codeIataCity": "KUG", + "codeIcaoAirport": "YKUB", + "codeIso2Country": "AU", + "geonameId": "7731197", + "latitudeAirport": -10.233333, + "longitudeAirport": 142.3, + "nameAirport": "Kubin Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "9", + "airportId": 4084, + "codeIataAirport": "KUH", + "codeIataCity": "KUH", + "codeIcaoAirport": "RJCK", + "codeIso2Country": "JP", + "geonameId": "6300324", + "latitudeAirport": 43.04565, + "longitudeAirport": 144.19682, + "nameAirport": "Kushiro", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "12", + "airportId": 4085, + "codeIataAirport": "KUI", + "codeIataCity": "KUI", + "codeIcaoAirport": "", + "codeIso2Country": "NZ", + "geonameId": "2188952", + "latitudeAirport": -36.416668, + "longitudeAirport": 174.83333, + "nameAirport": "Kawau Island", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "9", + "airportId": 4086, + "codeIataAirport": "KUJ", + "codeIataCity": "KUJ", + "codeIcaoAirport": "", + "codeIso2Country": "JP", + "geonameId": "1858033", + "latitudeAirport": 33.433334, + "longitudeAirport": 135.78334, + "nameAirport": "Kushimoto", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-9", + "airportId": 4087, + "codeIataAirport": "KUK", + "codeIataCity": "KUK", + "codeIcaoAirport": "PFKA", + "codeIso2Country": "US", + "geonameId": "5865892", + "latitudeAirport": 60.876087, + "longitudeAirport": -162.52124, + "nameAirport": "Kasigluk", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "8", + "airportId": 4088, + "codeIataAirport": "KUL", + "codeIataCity": "KUL", + "codeIcaoAirport": "WMKK", + "codeIso2Country": "MY", + "geonameId": "6301255", + "latitudeAirport": 2.755672, + "longitudeAirport": 101.70539, + "nameAirport": "Kuala Lumpur International Airport (klia)", + "nameCountry": "Malaysia", + "phone": "+603-8776 200", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "9", + "airportId": 4089, + "codeIataAirport": "KUM", + "codeIataCity": "KUM", + "codeIcaoAirport": "RJFC", + "codeIso2Country": "JP", + "geonameId": "6300344", + "latitudeAirport": 30.385555, + "longitudeAirport": 130.65916, + "nameAirport": "Yakushima", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "2", + "airportId": 4090, + "codeIataAirport": "KUN", + "codeIataCity": "KUN", + "codeIcaoAirport": "EYKA", + "codeIso2Country": "LT", + "geonameId": "598317", + "latitudeAirport": 54.9, + "longitudeAirport": 23.916668, + "nameAirport": "Kaunas", + "nameCountry": "Lithuania", + "phone": "", + "timezone": "Europe/Vilnius" + }, + { + "GMT": "2", + "airportId": 4091, + "codeIataAirport": "KUO", + "codeIataCity": "KUO", + "codeIcaoAirport": "EFKU", + "codeIso2Country": "FI", + "geonameId": "6296552", + "latitudeAirport": 63.008907, + "longitudeAirport": 27.788696, + "nameAirport": "Kuopio", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "10", + "airportId": 4092, + "codeIataAirport": "KUP", + "codeIataCity": "KUP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260838", + "latitudeAirport": -10.091667, + "longitudeAirport": 148.16667, + "nameAirport": "Kupiano", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 4093, + "codeIataAirport": "KUQ", + "codeIataCity": "KUQ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260839", + "latitudeAirport": -7.133333, + "longitudeAirport": 143.26666, + "nameAirport": "Kuri", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "4.30", + "airportId": 4094, + "codeIataAirport": "KUR", + "codeIataCity": "KUR", + "codeIcaoAirport": "", + "codeIso2Country": "AF", + "geonameId": "8299086", + "latitudeAirport": 38.4, + "longitudeAirport": 71.11667, + "nameAirport": "Kuran-O-Munjan", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "-3", + "airportId": 4095, + "codeIataAirport": "KUS", + "codeIataCity": "KUS", + "codeIcaoAirport": "BGKK", + "codeIso2Country": "GL", + "geonameId": "6295701", + "latitudeAirport": 65.566666, + "longitudeAirport": -37.11667, + "nameAirport": "Kulusuk", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "4", + "airportId": 4096, + "codeIataAirport": "KUT", + "codeIataCity": "KUT", + "codeIcaoAirport": "UGKO", + "codeIso2Country": "GE", + "geonameId": "800541", + "latitudeAirport": 42.25, + "longitudeAirport": 42.7, + "nameAirport": "Kopitnari", + "nameCountry": "Georgia", + "phone": "", + "timezone": "Asia/Tbilisi" + }, + { + "GMT": "5.30", + "airportId": 4097, + "codeIataAirport": "KUU", + "codeIataCity": "KUU", + "codeIcaoAirport": "VIBR", + "codeIso2Country": "IN", + "geonameId": "7668601", + "latitudeAirport": 31.983334, + "longitudeAirport": 77.1, + "nameAirport": "Kullu Manali", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "9", + "airportId": 4098, + "codeIataAirport": "KUV", + "codeIataCity": "KUV", + "codeIcaoAirport": "RKJK", + "codeIso2Country": "KR", + "geonameId": "6300416", + "latitudeAirport": 35.983334, + "longitudeAirport": 126.75, + "nameAirport": "Gunsan", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "-9", + "airportId": 4099, + "codeIataAirport": "KUW", + "codeIataCity": "KUW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8260955", + "latitudeAirport": 67.96667, + "longitudeAirport": -161.98334, + "nameAirport": "Kugururok River", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 4100, + "codeIataAirport": "KUX", + "codeIataCity": "KUX", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "0", + "latitudeAirport": -5.378333, + "longitudeAirport": 141.63055, + "nameAirport": "Kuyol", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 4101, + "codeIataAirport": "KUY", + "codeIataCity": "KUY", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731198", + "latitudeAirport": -7.4275, + "longitudeAirport": 143.12389, + "nameAirport": "Kamusi Airport", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "airportId": 4102, + "codeIataAirport": "KUZ", + "codeIataCity": "KUZ", + "codeIcaoAirport": "", + "codeIso2Country": "KR", + "geonameId": "0", + "latitudeAirport": 37.716667, + "longitudeAirport": 128.81667, + "nameAirport": "Gunsan Airbase", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "2", + "airportId": 4103, + "codeIataAirport": "KVA", + "codeIataCity": "KVA", + "codeIcaoAirport": "LGKV", + "codeIso2Country": "GR", + "geonameId": "6299496", + "latitudeAirport": 40.912994, + "longitudeAirport": 24.619675, + "nameAirport": "Megas Alexandros International", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "1", + "airportId": 4104, + "codeIataAirport": "KVB", + "codeIataCity": "KVB", + "codeIcaoAirport": "ESGR", + "codeIso2Country": "SE", + "geonameId": "6296792", + "latitudeAirport": 58.45, + "longitudeAirport": 13.966667, + "nameAirport": "Skovde", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-9", + "airportId": 4105, + "codeIataAirport": "KVC", + "codeIataCity": "KVC", + "codeIcaoAirport": "PAVC", + "codeIso2Country": "US", + "geonameId": "5866310", + "latitudeAirport": 55.055, + "longitudeAirport": -162.31334, + "nameAirport": "King Cove", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "4", + "airportId": 4106, + "codeIataAirport": "KVD", + "codeIataCity": "KVD", + "codeIcaoAirport": "UBBG", + "codeIso2Country": "AZ", + "geonameId": "6300925", + "latitudeAirport": 40.733334, + "longitudeAirport": 46.316666, + "nameAirport": "Gyandzha", + "nameCountry": "Azerbaijan", + "phone": "", + "timezone": "Asia/Baku" + }, + { + "GMT": "10", + "airportId": 4107, + "codeIataAirport": "KVE", + "codeIataCity": "KVE", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260836", + "latitudeAirport": -8.666667, + "longitudeAirport": 151.33333, + "nameAirport": "Kitava", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 4108, + "codeIataAirport": "KVG", + "codeIataCity": "KVG", + "codeIcaoAirport": "AYKV", + "codeIso2Country": "PG", + "geonameId": "7668083", + "latitudeAirport": -2.58075, + "longitudeAirport": 150.80653, + "nameAirport": "Kavieng", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 4109, + "codeIataAirport": "KVK", + "codeIataCity": "KVK", + "codeIcaoAirport": "ULMK", + "codeIso2Country": "RU", + "geonameId": "7668517", + "latitudeAirport": 67.583336, + "longitudeAirport": 33.583332, + "nameAirport": "Kirovsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Volgograd" + }, + { + "GMT": "-9", + "airportId": 4110, + "codeIataAirport": "KVL", + "codeIataCity": "KVL", + "codeIcaoAirport": "PAVL", + "codeIso2Country": "US", + "geonameId": "5866442", + "latitudeAirport": 67.73167, + "longitudeAirport": -164.54723, + "nameAirport": "Kivalina", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "10", + "airportId": 4111, + "codeIataAirport": "KVR", + "codeIataCity": "KVR", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "8260743", + "latitudeAirport": 44.266865, + "longitudeAirport": 135.0357, + "nameAirport": "Kavalerovo", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Vladivostok" + }, + { + "GMT": "12", + "airportId": 4112, + "codeIataAirport": "KVU", + "codeIataCity": "KVU", + "codeIcaoAirport": "", + "codeIso2Country": "FJ", + "geonameId": "8298917", + "latitudeAirport": -17.766666, + "longitudeAirport": 178.0, + "nameAirport": "Korolevu", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "3", + "airportId": 4113, + "codeIataAirport": "KVX", + "codeIataCity": "KVX", + "codeIcaoAirport": "USKK", + "codeIso2Country": "RU", + "geonameId": "7668533", + "latitudeAirport": 58.5, + "longitudeAirport": 49.35, + "nameAirport": "Kirov", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Volgograd" + }, + { + "GMT": "12", + "airportId": 4114, + "codeIataAirport": "KWA", + "codeIataCity": "KWA", + "codeIcaoAirport": "PKWA", + "codeIso2Country": "MH", + "geonameId": "7303962", + "latitudeAirport": 8.720843, + "longitudeAirport": 167.72195, + "nameAirport": "Kwajalein", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Kwajalein" + }, + { + "GMT": "7", + "airportId": 4115, + "codeIataAirport": "KWB", + "codeIataCity": "KWB", + "codeIcaoAirport": "WICM", + "codeIso2Country": "ID", + "geonameId": "7731199", + "latitudeAirport": -5.833333, + "longitudeAirport": 110.5, + "nameAirport": "Karimunjawa", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "1", + "airportId": 4116, + "codeIataAirport": "KWD", + "codeIataCity": "KWD", + "codeIcaoAirport": "", + "codeIso2Country": "CF", + "geonameId": "0", + "latitudeAirport": -1.95, + "longitudeAirport": 124.97, + "nameAirport": "Kawadjia", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "8", + "airportId": 4117, + "codeIataAirport": "KWE", + "codeIataCity": "KWE", + "codeIcaoAirport": "ZUGY", + "codeIso2Country": "CN", + "geonameId": "6301391", + "latitudeAirport": 26.544216, + "longitudeAirport": 106.79598, + "nameAirport": "Guiyang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-9", + "airportId": 4118, + "codeIataAirport": "KWF", + "codeIataCity": "KWF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5558363", + "latitudeAirport": 55.297222, + "longitudeAirport": -133.24167, + "nameAirport": "Waterfall SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 4119, + "codeIataAirport": "KWG", + "codeIataCity": "KWG", + "codeIcaoAirport": "UKDR", + "codeIso2Country": "UA", + "geonameId": "6300956", + "latitudeAirport": 48.05, + "longitudeAirport": 33.216667, + "nameAirport": "Krivoy Rog", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "4.30", + "airportId": 4120, + "codeIataAirport": "KWH", + "codeIataCity": "KWH", + "codeIcaoAirport": "OAHN", + "codeIso2Country": "AF", + "geonameId": "7730738", + "latitudeAirport": 33.916668, + "longitudeAirport": 66.333336, + "nameAirport": "Khwahan", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "3", + "airportId": 4121, + "codeIataAirport": "KWI", + "codeIataCity": "KWI", + "codeIcaoAirport": "OKBK", + "codeIso2Country": "KW", + "geonameId": "6300091", + "latitudeAirport": 29.240116, + "longitudeAirport": 47.971252, + "nameAirport": "Kuwait International", + "nameCountry": "Kuwait", + "phone": "", + "timezone": "Asia/Kuwait" + }, + { + "GMT": "9", + "airportId": 4122, + "codeIataAirport": "KWJ", + "codeIataCity": "KWJ", + "codeIcaoAirport": "RKJJ", + "codeIso2Country": "KR", + "geonameId": "6300415", + "latitudeAirport": 35.140175, + "longitudeAirport": 126.81021, + "nameAirport": "Gwangju", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "-9", + "airportId": 4123, + "codeIataAirport": "KWK", + "codeIataCity": "KWK", + "codeIcaoAirport": "PAGG", + "codeIso2Country": "US", + "geonameId": "5866991", + "latitudeAirport": 59.833332, + "longitudeAirport": -163.13333, + "nameAirport": "Kwigillingok", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "8", + "airportId": 4124, + "codeIataAirport": "KWL", + "codeIataCity": "KWL", + "codeIcaoAirport": "ZGKL", + "codeIso2Country": "CN", + "geonameId": "6301362", + "latitudeAirport": 25.133333, + "longitudeAirport": 110.316666, + "nameAirport": "Guilin", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "airportId": 4125, + "codeIataAirport": "KWM", + "codeIataCity": "KWM", + "codeIcaoAirport": "YKOW", + "codeIso2Country": "AU", + "geonameId": "7730262", + "latitudeAirport": -15.4875, + "longitudeAirport": 141.74834, + "nameAirport": "Kowanyama", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "airportId": 4126, + "codeIataAirport": "KWN", + "codeIataCity": "KWN", + "codeIcaoAirport": "PAQH", + "codeIso2Country": "US", + "geonameId": "5872344", + "latitudeAirport": 59.761112, + "longitudeAirport": -161.83333, + "nameAirport": "Kwinhagak", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 4127, + "codeIataAirport": "KWO", + "codeIataCity": "KWO", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731200", + "latitudeAirport": -7.983333, + "longitudeAirport": 142.81667, + "nameAirport": "Kawito", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 4128, + "codeIataAirport": "KWP", + "codeIataCity": "KWP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5877876", + "latitudeAirport": 57.766945, + "longitudeAirport": -153.55, + "nameAirport": "Village SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "11", + "airportId": 4129, + "codeIataAirport": "KWR", + "codeIataCity": "KWR", + "codeIcaoAirport": "", + "codeIso2Country": "SB", + "geonameId": "8299189", + "latitudeAirport": -8.566667, + "longitudeAirport": 160.73334, + "nameAirport": "Kwai Harbour", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "11", + "airportId": 4130, + "codeIataAirport": "KWS", + "codeIataCity": "KWS", + "codeIcaoAirport": "", + "codeIso2Country": "SB", + "geonameId": "8298985", + "latitudeAirport": 41.350193, + "longitudeAirport": -71.8069, + "nameAirport": "Kwailabesi Aerodrom", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-9", + "airportId": 4131, + "codeIataAirport": "KWT", + "codeIataCity": "KWT", + "codeIcaoAirport": "PFKW", + "codeIso2Country": "US", + "geonameId": "5866986", + "latitudeAirport": 60.808887, + "longitudeAirport": -161.4375, + "nameAirport": "Kwethluk", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "12", + "airportId": 4132, + "codeIataAirport": "KWU", + "codeIataCity": "KWU", + "codeIcaoAirport": "", + "codeIso2Country": "NZ", + "geonameId": "8299249", + "latitudeAirport": 22.316668, + "longitudeAirport": 114.21667, + "nameAirport": "Mansion House", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "3", + "airportId": 4133, + "codeIataAirport": "KWY", + "codeIataCity": "KWY", + "codeIcaoAirport": "", + "codeIso2Country": "KE", + "geonameId": "8199179", + "latitudeAirport": -2.016667, + "longitudeAirport": 41.266666, + "nameAirport": "Kiwayu", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "2", + "airportId": 4134, + "codeIataAirport": "KWZ", + "codeIataCity": "KWZ", + "codeIcaoAirport": "FZQM", + "codeIso2Country": "CD", + "geonameId": "6297155", + "latitudeAirport": -10.766667, + "longitudeAirport": 25.506945, + "nameAirport": "Kolwezi", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-9", + "airportId": 4135, + "codeIataAirport": "KXA", + "codeIataCity": "KXA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5554288", + "latitudeAirport": 55.537777, + "longitudeAirport": -132.39583, + "nameAirport": "Kasaan SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "2", + "airportId": 4136, + "codeIataAirport": "KXE", + "codeIataCity": "KXE", + "codeIcaoAirport": "FAKD", + "codeIso2Country": "ZA", + "geonameId": "989921", + "latitudeAirport": -26.866667, + "longitudeAirport": 26.716667, + "nameAirport": "Klerksdorp", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "12", + "airportId": 4137, + "codeIataAirport": "KXF", + "codeIataCity": "KXF", + "codeIcaoAirport": "NFNO", + "codeIso2Country": "FJ", + "geonameId": "6453426", + "latitudeAirport": -17.333332, + "longitudeAirport": 179.83333, + "nameAirport": "Koro Island", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "10", + "airportId": 4138, + "codeIataAirport": "KXK", + "codeIataCity": "KXK", + "codeIcaoAirport": "UHKK", + "codeIso2Country": "RU", + "geonameId": "7668504", + "latitudeAirport": 50.4, + "longitudeAirport": 136.95, + "nameAirport": "Komsomolsk Na Amure", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Vladivostok" + }, + { + "GMT": "-10", + "airportId": 4139, + "codeIataAirport": "KXU", + "codeIataCity": "KXU", + "codeIcaoAirport": "", + "codeIso2Country": "PF", + "geonameId": "8298651", + "latitudeAirport": -16.339443, + "longitudeAirport": -144.40306, + "nameAirport": "Katiu", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "3", + "airportId": 4140, + "codeIataAirport": "KYA", + "codeIataCity": "KYA", + "codeIcaoAirport": "LTAN", + "codeIso2Country": "TR", + "geonameId": "6299732", + "latitudeAirport": 37.979168, + "longitudeAirport": 32.56222, + "nameAirport": "Konya", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "8", + "airportId": 4141, + "codeIataAirport": "KYD", + "codeIataCity": "KYD", + "codeIcaoAirport": "RCLY", + "codeIso2Country": "TW", + "geonameId": "6300299", + "latitudeAirport": 22.083332, + "longitudeAirport": 121.5, + "nameAirport": "Orchid Island", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "2", + "airportId": 4142, + "codeIataAirport": "KYE", + "codeIataCity": "KYE", + "codeIcaoAirport": "OLKA", + "codeIso2Country": "LB", + "geonameId": "7668392", + "latitudeAirport": 34.58611, + "longitudeAirport": 36.002777, + "nameAirport": "Kleyate", + "nameCountry": "Lebanon", + "phone": "", + "timezone": "Asia/Beirut" + }, + { + "GMT": "8", + "airportId": 4143, + "codeIataAirport": "KYF", + "codeIataCity": "KYF", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731202", + "latitudeAirport": -27.277779, + "longitudeAirport": 120.075, + "nameAirport": "Yeelirrie", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "9.30", + "airportId": 4144, + "codeIataAirport": "KYI", + "codeIataCity": "KYI", + "codeIcaoAirport": "YYTA", + "codeIso2Country": "AU", + "geonameId": "7731203", + "latitudeAirport": -31.483334, + "longitudeAirport": 131.86667, + "nameAirport": "Yalata Mission", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-9", + "airportId": 4145, + "codeIataAirport": "KYK", + "codeIataCity": "KYK", + "codeIcaoAirport": "PAKY", + "codeIso2Country": "US", + "geonameId": "5865859", + "latitudeAirport": 57.566113, + "longitudeAirport": -154.45, + "nameAirport": "Karluk", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 4146, + "codeIataAirport": "KYN", + "codeIataCity": "KYN", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2642465", + "latitudeAirport": 52.03428, + "longitudeAirport": -0.774107, + "nameAirport": "Milton Keynes", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "airportId": 4147, + "codeIataAirport": "KYO", + "codeIataCity": "TPA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 28.216667, + "longitudeAirport": -82.36667, + "nameAirport": "Topp Of Tampa", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "6.30", + "airportId": 4148, + "codeIataAirport": "KYP", + "codeIataCity": "KYP", + "codeIcaoAirport": "VYKP", + "codeIso2Country": "MM", + "geonameId": "0", + "latitudeAirport": 19.433332, + "longitudeAirport": 93.53333, + "nameAirport": "Kyaukpyu", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "0", + "airportId": 4149, + "codeIataAirport": "KYS", + "codeIataCity": "KYS", + "codeIcaoAirport": "GAKY", + "codeIso2Country": "ML", + "geonameId": "6297174", + "latitudeAirport": 14.431944, + "longitudeAirport": -11.439444, + "nameAirport": "Kayes", + "nameCountry": "Mali", + "phone": "", + "timezone": "Africa/Bamako" + }, + { + "GMT": "6.30", + "airportId": 4150, + "codeIataAirport": "KYT", + "codeIataCity": "KYT", + "codeIcaoAirport": "VYKU", + "codeIso2Country": "MM", + "geonameId": "7731204", + "latitudeAirport": 21.4, + "longitudeAirport": 94.13333, + "nameAirport": "Kyauktaw", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-9", + "airportId": 4151, + "codeIataAirport": "KYU", + "codeIataCity": "KYU", + "codeIcaoAirport": "PFKU", + "codeIso2Country": "US", + "geonameId": "5866754", + "latitudeAirport": 64.87806, + "longitudeAirport": -157.71306, + "nameAirport": "Koyukuk", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 4152, + "codeIataAirport": "KYX", + "codeIataCity": "KYX", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298991", + "latitudeAirport": -6.183333, + "longitudeAirport": 147.01666, + "nameAirport": "Yalumet", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 4153, + "codeIataAirport": "KYY", + "codeIataCity": "KRY", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 45.579889, + "longitudeAirport": 84.889207, + "nameAirport": "Karamay Bus Station", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "7", + "airportId": 4154, + "codeIataAirport": "KYZ", + "codeIataCity": "KYZ", + "codeIcaoAirport": "UNKY", + "codeIso2Country": "RU", + "geonameId": "7668524", + "latitudeAirport": 51.7, + "longitudeAirport": 94.46667, + "nameAirport": "Kyzyl", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "-9", + "airportId": 4155, + "codeIataAirport": "KZB", + "codeIataCity": "KZB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "7910272", + "latitudeAirport": 57.55, + "longitudeAirport": -153.75, + "nameAirport": "Zachar Bay SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "airportId": 4156, + "codeIataAirport": "KZC", + "codeIataCity": "KZC", + "codeIcaoAirport": "VDKH", + "codeIso2Country": "KH", + "geonameId": "7668583", + "latitudeAirport": 12.333333, + "longitudeAirport": 104.583336, + "nameAirport": "Kompong-Chhna", + "nameCountry": "Cambodia", + "phone": "", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "7", + "airportId": 4157, + "codeIataAirport": "KZD", + "codeIataCity": "KZD", + "codeIcaoAirport": "", + "codeIso2Country": "KH", + "geonameId": "8298906", + "latitudeAirport": 12.533333, + "longitudeAirport": 104.2, + "nameAirport": "Krakor", + "nameCountry": "Cambodia", + "phone": "", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "10", + "airportId": 4158, + "codeIataAirport": "KZF", + "codeIataCity": "KZF", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2095029", + "latitudeAirport": -7.466667, + "longitudeAirport": 146.0, + "nameAirport": "Kaintiba", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 4159, + "codeIataAirport": "KZG", + "codeIataCity": "KZG", + "codeIcaoAirport": "ETIN", + "codeIso2Country": "DE", + "geonameId": "6296850", + "latitudeAirport": 49.733334, + "longitudeAirport": 10.15, + "nameAirport": "Kitzingen", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-9", + "airportId": 4160, + "codeIataAirport": "KZH", + "codeIataCity": "KZH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299108", + "latitudeAirport": 57.583332, + "longitudeAirport": -153.15, + "nameAirport": "Kizhuyak", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 4161, + "codeIataAirport": "KZI", + "codeIataCity": "KZI", + "codeIcaoAirport": "LGKZ", + "codeIso2Country": "GR", + "geonameId": "6299497", + "latitudeAirport": 40.288612, + "longitudeAirport": 21.841944, + "nameAirport": "Philippos Airport", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "3", + "airportId": 4162, + "codeIataAirport": "KZN", + "codeIataCity": "KZN", + "codeIcaoAirport": "UWKD", + "codeIso2Country": "RU", + "geonameId": "6301022", + "latitudeAirport": 55.60844, + "longitudeAirport": 49.29824, + "nameAirport": "Kazan", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "6", + "airportId": 4163, + "codeIataAirport": "KZO", + "codeIataCity": "KZO", + "codeIcaoAirport": "UAOO", + "codeIso2Country": "KZ", + "geonameId": "6300918", + "latitudeAirport": 44.712223, + "longitudeAirport": 65.59288, + "nameAirport": "Kzyl-Orda", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Qyzylorda" + }, + { + "GMT": "3", + "airportId": 4164, + "codeIataAirport": "KZR", + "codeIataCity": "KZR", + "codeIcaoAirport": "", + "codeIso2Country": "TR", + "geonameId": "0", + "latitudeAirport": 39.120277, + "longitudeAirport": 30.116945, + "nameAirport": "Zafer", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "2", + "airportId": 4165, + "codeIataAirport": "KZS", + "codeIataCity": "KZS", + "codeIcaoAirport": "LGKJ", + "codeIso2Country": "GR", + "geonameId": "7730631", + "latitudeAirport": 36.083332, + "longitudeAirport": 29.333332, + "nameAirport": "Kastelorizo", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "-7", + "airportId": 4166, + "codeIataAirport": "LAA", + "codeIataCity": "LAA", + "codeIcaoAirport": "KLAA", + "codeIso2Country": "US", + "geonameId": "5427960", + "latitudeAirport": 38.06861, + "longitudeAirport": -102.69028, + "nameAirport": "Lamar Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "airportId": 4167, + "codeIataAirport": "LAB", + "codeIataCity": "LAB", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260841", + "latitudeAirport": -5.633333, + "longitudeAirport": 148.06667, + "nameAirport": "Lablab", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 4168, + "codeIataAirport": "LAC", + "codeIataCity": "LAC", + "codeIcaoAirport": "", + "codeIso2Country": "MY", + "geonameId": "7731205", + "latitudeAirport": 7.4, + "longitudeAirport": 113.85, + "nameAirport": "Layang-Layang Airstrip", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "1", + "airportId": 4169, + "codeIataAirport": "LAD", + "codeIataCity": "LAD", + "codeIcaoAirport": "FNLU", + "codeIso2Country": "AO", + "geonameId": "6297063", + "latitudeAirport": -8.847951, + "longitudeAirport": 13.234862, + "nameAirport": "4 de Fevereiro", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "10", + "airportId": 4170, + "codeIataAirport": "LAE", + "codeIataCity": "LAE", + "codeIcaoAirport": "AYNZ", + "codeIso2Country": "PG", + "geonameId": "7668086", + "latitudeAirport": -6.562694, + "longitudeAirport": 146.72757, + "nameAirport": "Nadzab", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 4171, + "codeIataAirport": "LAF", + "codeIataCity": "LAF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4924709", + "latitudeAirport": 40.411945, + "longitudeAirport": -86.93361, + "nameAirport": "Purdue University", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-4", + "airportId": 4172, + "codeIataAirport": "LAG", + "codeIataCity": "LAG", + "codeIcaoAirport": "", + "codeIso2Country": "VE", + "geonameId": "7731206", + "latitudeAirport": 10.6, + "longitudeAirport": -66.933334, + "nameAirport": "La Guaira", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "9", + "airportId": 4173, + "codeIataAirport": "LAH", + "codeIataCity": "LAH", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "8260842", + "latitudeAirport": -0.616667, + "longitudeAirport": 127.48333, + "nameAirport": "Labuha", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "airportId": 4174, + "codeIataAirport": "LAI", + "codeIataCity": "LAI", + "codeIcaoAirport": "LFRO", + "codeIso2Country": "FR", + "geonameId": "6299459", + "latitudeAirport": 48.754166, + "longitudeAirport": -3.481944, + "nameAirport": "Servel", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-3", + "airportId": 4175, + "codeIataAirport": "LAJ", + "codeIataCity": "LAJ", + "codeIcaoAirport": "SBLJ", + "codeIso2Country": "BR", + "geonameId": "7730156", + "latitudeAirport": -27.8, + "longitudeAirport": -50.316666, + "nameAirport": "Lages", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-7", + "airportId": 4176, + "codeIataAirport": "LAK", + "codeIataCity": "LAK", + "codeIcaoAirport": "CYKD", + "codeIso2Country": "CA", + "geonameId": "6296214", + "latitudeAirport": 68.22222, + "longitudeAirport": -134.98584, + "nameAirport": "Aklavik", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-5", + "airportId": 4177, + "codeIataAirport": "LAL", + "codeIataCity": "LAL", + "codeIcaoAirport": "KLAL", + "codeIso2Country": "US", + "geonameId": "4161446", + "latitudeAirport": 27.98889, + "longitudeAirport": -82.014725, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 4178, + "codeIataAirport": "LAM", + "codeIataCity": "LAM", + "codeIcaoAirport": "KLAM", + "codeIso2Country": "US", + "geonameId": "5476830", + "latitudeAirport": 35.88333, + "longitudeAirport": -106.316666, + "nameAirport": "Los Alamos", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 4179, + "codeIataAirport": "LAN", + "codeIataCity": "LAN", + "codeIcaoAirport": "KLAN", + "codeIso2Country": "US", + "geonameId": "6301632", + "latitudeAirport": 42.774185, + "longitudeAirport": -84.58958, + "nameAirport": "Capital City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "8", + "airportId": 4180, + "codeIataAirport": "LAO", + "codeIataCity": "LAO", + "codeIcaoAirport": "RPLI", + "codeIso2Country": "PH", + "geonameId": "6300473", + "latitudeAirport": 18.182407, + "longitudeAirport": 120.53413, + "nameAirport": "Laoag International Airport", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-7", + "airportId": 4181, + "codeIataAirport": "LAP", + "codeIataCity": "LAP", + "codeIcaoAirport": "MMLP", + "codeIso2Country": "MX", + "geonameId": "6299852", + "latitudeAirport": 24.076088, + "longitudeAirport": -110.367836, + "nameAirport": "General Manuel Márquez De León International Airport", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mazatlan" + }, + { + "GMT": "2", + "airportId": 4182, + "codeIataAirport": "LAQ", + "codeIataCity": "LAQ", + "codeIcaoAirport": "HLLQ", + "codeIso2Country": "LY", + "geonameId": "7668297", + "latitudeAirport": 32.788612, + "longitudeAirport": 21.964167, + "nameAirport": "La Braq", + "nameCountry": "Libya", + "phone": "", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "-7", + "airportId": 4183, + "codeIataAirport": "LAR", + "codeIataCity": "LAR", + "codeIcaoAirport": "KLAR", + "codeIso2Country": "US", + "geonameId": "5830062", + "latitudeAirport": 41.31361, + "longitudeAirport": -105.67306, + "nameAirport": "General Brees Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-8", + "airportId": 4184, + "codeIataAirport": "LAS", + "codeIataCity": "LAS", + "codeIcaoAirport": "KLAS", + "codeIso2Country": "US", + "geonameId": "5507974", + "latitudeAirport": 36.086945, + "longitudeAirport": -115.1486, + "nameAirport": "Mc Carran International", + "nameCountry": "United States", + "phone": "702-261-5211", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 4185, + "codeIataAirport": "LAT", + "codeIataCity": "LAT", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 4.75, + "longitudeAirport": -74.05, + "nameAirport": "La Uribe", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "airportId": 4186, + "codeIataAirport": "LAU", + "codeIataCity": "LAU", + "codeIcaoAirport": "HKLU", + "codeIso2Country": "KE", + "geonameId": "6297314", + "latitudeAirport": -2.25, + "longitudeAirport": 40.911667, + "nameAirport": "Lamu", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "13", + "airportId": 4187, + "codeIataAirport": "LAV", + "codeIataCity": "LAV", + "codeIcaoAirport": "", + "codeIso2Country": "WS", + "geonameId": "4035301", + "latitudeAirport": -14.016667, + "longitudeAirport": -171.73334, + "nameAirport": "Lalomalava", + "nameCountry": "Samoa", + "phone": "", + "timezone": "Pacific/Apia" + }, + { + "GMT": "-6", + "airportId": 4188, + "codeIataAirport": "LAW", + "codeIataCity": "LAW", + "codeIcaoAirport": "KLAW", + "codeIso2Country": "US", + "geonameId": "4540749", + "latitudeAirport": 34.56972, + "longitudeAirport": -98.416115, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 4189, + "codeIataAirport": "LAX", + "codeIataCity": "LAX", + "codeIcaoAirport": "KLAX", + "codeIso2Country": "US", + "geonameId": "5368418", + "latitudeAirport": 33.943398, + "longitudeAirport": -118.40828, + "nameAirport": "Los Angeles International", + "nameCountry": "United States", + "phone": "310-646-5252", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "airportId": 4190, + "codeIataAirport": "LAY", + "codeIataCity": "LAY", + "codeIcaoAirport": "FALY", + "codeIso2Country": "ZA", + "geonameId": "6296906", + "latitudeAirport": -28.566668, + "longitudeAirport": 29.75, + "nameAirport": "Ladysmith", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-3", + "airportId": 4191, + "codeIataAirport": "LAZ", + "codeIataCity": "LAZ", + "codeIcaoAirport": "SBLP", + "codeIso2Country": "BR", + "geonameId": "6300639", + "latitudeAirport": -13.256944, + "longitudeAirport": -43.4125, + "nameAirport": "Bom Jesus Da Lapa", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "0", + "airportId": 4192, + "codeIataAirport": "LBA", + "codeIataCity": "LBA", + "codeIcaoAirport": "EGNM", + "codeIso2Country": "GB", + "geonameId": "6296608", + "latitudeAirport": 53.86934, + "longitudeAirport": -1.659985, + "nameAirport": "Leeds/bradford", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 4193, + "codeIataAirport": "LBB", + "codeIataCity": "LBB", + "codeIcaoAirport": "KLBB", + "codeIso2Country": "US", + "geonameId": "5525589", + "latitudeAirport": 33.65622, + "longitudeAirport": -101.8223, + "nameAirport": "Lubbock Preston Smith International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 4194, + "codeIataAirport": "LBC", + "codeIataCity": "HAM", + "codeIcaoAirport": "EDHL", + "codeIso2Country": "DE", + "geonameId": "3209094", + "latitudeAirport": 53.80527, + "longitudeAirport": 10.701162, + "nameAirport": "Lübeck Blankensee", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "5", + "airportId": 4195, + "codeIataAirport": "LBD", + "codeIataCity": "LBD", + "codeIcaoAirport": "UTDL", + "codeIso2Country": "TJ", + "geonameId": "7668542", + "latitudeAirport": 40.219887, + "longitudeAirport": 69.6965, + "nameAirport": "Khudzhand", + "nameCountry": "Tajikistan", + "phone": "", + "timezone": "Asia/Dushanbe" + }, + { + "GMT": "-5", + "airportId": 4196, + "codeIataAirport": "LBE", + "codeIataCity": "LBE", + "codeIcaoAirport": "KLBE", + "codeIso2Country": "US", + "geonameId": "5197227", + "latitudeAirport": 40.27639, + "longitudeAirport": -79.40278, + "nameAirport": "Westmoreland County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 4197, + "codeIataAirport": "LBF", + "codeIataCity": "LBF", + "codeIcaoAirport": "KLBF", + "codeIso2Country": "US", + "geonameId": "5697939", + "latitudeAirport": 41.128334, + "longitudeAirport": -100.69667, + "nameAirport": "Lee Bird Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 4198, + "codeIataAirport": "LBG", + "codeIataCity": "PAR", + "codeIcaoAirport": "LFPB", + "codeIso2Country": "FR", + "geonameId": "2988502", + "latitudeAirport": 48.971943, + "longitudeAirport": 2.4425, + "nameAirport": "Le Bourget", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "airportId": 4199, + "codeIataAirport": "LBH", + "codeIataCity": "SYD", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -33.944168, + "longitudeAirport": 151.17583, + "nameAirport": "Palm Beach SPB", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "airportId": 4200, + "codeIataAirport": "LBI", + "codeIataCity": "LBI", + "codeIcaoAirport": "LFCI", + "codeIso2Country": "FR", + "geonameId": "6299384", + "latitudeAirport": 43.933334, + "longitudeAirport": 2.15, + "nameAirport": "Le Sequestre", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "8", + "airportId": 4201, + "codeIataAirport": "LBJ", + "codeIataCity": "LBJ", + "codeIcaoAirport": "WRKO", + "codeIso2Country": "ID", + "geonameId": "0", + "latitudeAirport": -8.516667, + "longitudeAirport": 119.88333, + "nameAirport": "Mutiara", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "3", + "airportId": 4202, + "codeIataAirport": "LBK", + "codeIataCity": "LBK", + "codeIcaoAirport": "", + "codeIso2Country": "KE", + "geonameId": "7731207", + "latitudeAirport": 0.383333, + "longitudeAirport": 40.966667, + "nameAirport": "Liboi", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-6", + "airportId": 4203, + "codeIataAirport": "LBL", + "codeIataCity": "LBL", + "codeIcaoAirport": "KLBL", + "codeIso2Country": "US", + "geonameId": "5445827", + "latitudeAirport": 37.044445, + "longitudeAirport": -100.960556, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 4204, + "codeIataAirport": "LBM", + "codeIataCity": "LBM", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "1043458", + "latitudeAirport": -18.5, + "longitudeAirport": 36.166668, + "nameAirport": "Luabo", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "3", + "airportId": 4205, + "codeIataAirport": "LBN", + "codeIataCity": "LBN", + "codeIcaoAirport": "", + "codeIso2Country": "KE", + "geonameId": "7731208", + "latitudeAirport": 0.666667, + "longitudeAirport": 36.083332, + "nameAirport": "Lake Baringo", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "2", + "airportId": 4206, + "codeIataAirport": "LBO", + "codeIataCity": "LBO", + "codeIcaoAirport": "FZVI", + "codeIso2Country": "CD", + "geonameId": "6297163", + "latitudeAirport": -4.966667, + "longitudeAirport": 23.45, + "nameAirport": "Lusambo", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "8", + "airportId": 4207, + "codeIataAirport": "LBP", + "codeIataCity": "LBP", + "codeIcaoAirport": "", + "codeIso2Country": "MY", + "geonameId": "7731209", + "latitudeAirport": 3.2, + "longitudeAirport": 115.4, + "nameAirport": "Long Banga Airfield", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "1", + "airportId": 4208, + "codeIataAirport": "LBQ", + "codeIataCity": "LBQ", + "codeIcaoAirport": "FOGR", + "codeIso2Country": "GA", + "geonameId": "6297065", + "latitudeAirport": -0.714722, + "longitudeAirport": 10.239444, + "nameAirport": "Lambarene", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-4", + "airportId": 4209, + "codeIataAirport": "LBR", + "codeIataCity": "LBR", + "codeIcaoAirport": "SWLB", + "codeIso2Country": "BR", + "geonameId": "7731210", + "latitudeAirport": -7.25, + "longitudeAirport": -64.85, + "nameAirport": "Labrea", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "12", + "airportId": 4210, + "codeIataAirport": "LBS", + "codeIataCity": "LBS", + "codeIcaoAirport": "NFNL", + "codeIso2Country": "FJ", + "geonameId": "6324586", + "latitudeAirport": -16.466215, + "longitudeAirport": 179.33766, + "nameAirport": "Labasa", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-5", + "airportId": 4211, + "codeIataAirport": "LBT", + "codeIataCity": "LBT", + "codeIcaoAirport": "KLBT", + "codeIso2Country": "US", + "geonameId": "4477529", + "latitudeAirport": 34.61404, + "longitudeAirport": -79.06011, + "nameAirport": "Lumberton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 4212, + "codeIataAirport": "LBU", + "codeIataCity": "LBU", + "codeIcaoAirport": "WBKL", + "codeIso2Country": "MY", + "geonameId": "6301212", + "latitudeAirport": 5.294355, + "longitudeAirport": 115.24916, + "nameAirport": "Labuan", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "1", + "airportId": 4213, + "codeIataAirport": "LBV", + "codeIataCity": "LBV", + "codeIcaoAirport": "FOOL", + "codeIso2Country": "GA", + "geonameId": "6297072", + "latitudeAirport": 0.456963, + "longitudeAirport": 9.409852, + "nameAirport": "Libreville", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "8", + "airportId": 4214, + "codeIataAirport": "LBW", + "codeIataCity": "LBW", + "codeIcaoAirport": "WRLB", + "codeIso2Country": "ID", + "geonameId": "6301273", + "latitudeAirport": 0.583333, + "longitudeAirport": 115.166664, + "nameAirport": "Long Bawan", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "8", + "airportId": 4215, + "codeIataAirport": "LBX", + "codeIataCity": "LBX", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "0", + "latitudeAirport": 13.865556, + "longitudeAirport": 120.105, + "nameAirport": "Lubang", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "1", + "airportId": 4216, + "codeIataAirport": "LBY", + "codeIataCity": "LBY", + "codeIcaoAirport": "LFRE", + "codeIso2Country": "FR", + "geonameId": "6694657", + "latitudeAirport": 47.28889, + "longitudeAirport": -2.345833, + "nameAirport": "Montoir", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 4217, + "codeIataAirport": "LBZ", + "codeIataCity": "LBZ", + "codeIcaoAirport": "FNLK", + "codeIso2Country": "AO", + "geonameId": "8261009", + "latitudeAirport": -8.383333, + "longitudeAirport": 20.666668, + "nameAirport": "Lukapa", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "2", + "airportId": 4218, + "codeIataAirport": "LCA", + "codeIataCity": "LCA", + "codeIcaoAirport": "LCLK", + "codeIso2Country": "CY", + "geonameId": "414646", + "latitudeAirport": 34.880867, + "longitudeAirport": 33.62599, + "nameAirport": "Larnaca", + "nameCountry": "Cyprus", + "phone": "-81307", + "timezone": "Asia/Nicosia" + }, + { + "GMT": "-4", + "airportId": 4219, + "codeIataAirport": "LCB", + "codeIataCity": "LCB", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8260887", + "latitudeAirport": -13.013333, + "longitudeAirport": -59.99861, + "nameAirport": "Pontes e Lacerda", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "1", + "airportId": 4220, + "codeIataAirport": "LCC", + "codeIataCity": "LCC", + "codeIcaoAirport": "LIBN", + "codeIso2Country": "IT", + "geonameId": "6299539", + "latitudeAirport": 40.24278, + "longitudeAirport": 18.133333, + "nameAirport": "Galatina", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "2", + "airportId": 4221, + "codeIataAirport": "LCD", + "codeIataCity": "LCD", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "981827", + "latitudeAirport": -23.016666, + "longitudeAirport": 29.716667, + "nameAirport": "Louis Trichardt", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-6", + "airportId": 4222, + "codeIataAirport": "LCE", + "codeIataCity": "LCE", + "codeIcaoAirport": "MHLC", + "codeIso2Country": "HN", + "geonameId": "6299812", + "latitudeAirport": 15.740556, + "longitudeAirport": -86.85722, + "nameAirport": "Goloson International", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-6", + "airportId": 4223, + "codeIataAirport": "LCF", + "codeIataCity": "LCF", + "codeIcaoAirport": "", + "codeIso2Country": "GT", + "geonameId": "7731211", + "latitudeAirport": 15.667778, + "longitudeAirport": -88.94778, + "nameAirport": "Las Vegas", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "1", + "airportId": 4224, + "codeIataAirport": "LCG", + "codeIataCity": "LCG", + "codeIcaoAirport": "LECO", + "codeIso2Country": "ES", + "geonameId": "6299332", + "latitudeAirport": 43.30236, + "longitudeAirport": -8.381923, + "nameAirport": "La Coruna", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-6", + "airportId": 4225, + "codeIataAirport": "LCH", + "codeIataCity": "LCH", + "codeIcaoAirport": "KLCH", + "codeIso2Country": "US", + "geonameId": "4330249", + "latitudeAirport": 30.131111, + "longitudeAirport": -93.225555, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 4226, + "codeIataAirport": "LCI", + "codeIataCity": "LCI", + "codeIcaoAirport": "KLCI", + "codeIso2Country": "US", + "geonameId": "5088444", + "latitudeAirport": 43.57139, + "longitudeAirport": -71.42111, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 4227, + "codeIataAirport": "LCJ", + "codeIataCity": "LCJ", + "codeIcaoAirport": "EPLL", + "codeIso2Country": "PL", + "geonameId": "3093127", + "latitudeAirport": 51.721943, + "longitudeAirport": 19.398333, + "nameAirport": "Lodz Lublinek", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "-5", + "airportId": 4228, + "codeIataAirport": "LCK", + "codeIataCity": "CMH", + "codeIcaoAirport": "KLCK", + "codeIso2Country": "US", + "geonameId": "4522474", + "latitudeAirport": 39.816666, + "longitudeAirport": -82.933334, + "nameAirport": "Rickenbacker", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 4229, + "codeIataAirport": "LCL", + "codeIataCity": "LCL", + "codeIcaoAirport": "MULM", + "codeIso2Country": "CU", + "geonameId": "7730327", + "latitudeAirport": 22.283333, + "longitudeAirport": -83.61667, + "nameAirport": "La Coloma", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "-3", + "airportId": 4230, + "codeIataAirport": "LCM", + "codeIataCity": "LCM", + "codeIcaoAirport": "SACC", + "codeIso2Country": "AR", + "geonameId": "7730763", + "latitudeAirport": -30.966667, + "longitudeAirport": -64.5, + "nameAirport": "La Cumbre", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "9.30", + "airportId": 4231, + "codeIataAirport": "LCN", + "codeIataCity": "LCN", + "codeIcaoAirport": "YBLC", + "codeIso2Country": "AU", + "geonameId": "7731212", + "latitudeAirport": -30.516666, + "longitudeAirport": 139.35, + "nameAirport": "Balcanoona", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "1", + "airportId": 4232, + "codeIataAirport": "LCO", + "codeIataCity": "LCO", + "codeIcaoAirport": "FCBL", + "codeIso2Country": "CG", + "geonameId": "7730498", + "latitudeAirport": -2.45, + "longitudeAirport": 14.533333, + "nameAirport": "Lague", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-3", + "airportId": 4233, + "codeIataAirport": "LCP", + "codeIataCity": "LCP", + "codeIcaoAirport": "", + "codeIso2Country": "AR", + "geonameId": "7731213", + "latitudeAirport": -38.083332, + "longitudeAirport": -70.666664, + "nameAirport": "Loncopue", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-5", + "airportId": 4234, + "codeIataAirport": "LCQ", + "codeIataCity": "LCQ", + "codeIcaoAirport": "KLCQ", + "codeIso2Country": "US", + "geonameId": "4161193", + "latitudeAirport": 30.320557, + "longitudeAirport": -82.66861, + "nameAirport": "Lake City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 4235, + "codeIataAirport": "LCR", + "codeIataCity": "LCR", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "7731214", + "latitudeAirport": -0.733333, + "longitudeAirport": -73.01667, + "nameAirport": "La Chorrera", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 4236, + "codeIataAirport": "LCS", + "codeIataCity": "LCS", + "codeIcaoAirport": "", + "codeIso2Country": "CR", + "geonameId": "0", + "latitudeAirport": 10.418889, + "longitudeAirport": -85.104164, + "nameAirport": "Las Canas", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "1", + "airportId": 4237, + "codeIataAirport": "LCV", + "codeIataCity": "LCV", + "codeIcaoAirport": "LIQL", + "codeIso2Country": "IT", + "geonameId": "7730633", + "latitudeAirport": 43.833332, + "longitudeAirport": 10.583333, + "nameAirport": "Lucca", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "8", + "airportId": 4238, + "codeIataAirport": "LCX", + "codeIataCity": "LCX", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "7910378", + "latitudeAirport": 25.675556, + "longitudeAirport": 116.74556, + "nameAirport": "Liancheng", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "0", + "airportId": 4239, + "codeIataAirport": "LCY", + "codeIataCity": "LON", + "codeIcaoAirport": "EGLC", + "codeIso2Country": "GB", + "geonameId": "6296599", + "latitudeAirport": 51.5, + "longitudeAirport": 0.05, + "nameAirport": "London City Airport", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 4240, + "codeIataAirport": "LCZ", + "codeIataCity": "LCC", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 40.3532912, + "longitudeAirport": 18.1740146, + "nameAirport": "Lecce Railway Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "5.30", + "airportId": 4241, + "codeIataAirport": "LDA", + "codeIataCity": "LDA", + "codeIcaoAirport": "VEMH", + "codeIso2Country": "IN", + "geonameId": "7731215", + "latitudeAirport": 25.033333, + "longitudeAirport": 88.15, + "nameAirport": "Malda", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-3", + "airportId": 4242, + "codeIataAirport": "LDB", + "codeIataCity": "LDB", + "codeIcaoAirport": "SBLO", + "codeIso2Country": "BR", + "geonameId": "6300638", + "latitudeAirport": -23.328457, + "longitudeAirport": -51.137714, + "nameAirport": "Londrina", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "airportId": 4243, + "codeIataAirport": "LDC", + "codeIataCity": "LDC", + "codeIcaoAirport": "YLIN", + "codeIso2Country": "AU", + "geonameId": "7731216", + "latitudeAirport": -21.0, + "longitudeAirport": 149.0, + "nameAirport": "Lindeman Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Lindeman" + }, + { + "GMT": "1", + "airportId": 4244, + "codeIataAirport": "LDE", + "codeIataCity": "LDE", + "codeIcaoAirport": "LFBT", + "codeIso2Country": "FR", + "geonameId": "6299378", + "latitudeAirport": 43.18651, + "longitudeAirport": 0.003368, + "nameAirport": "Tarbes Ossun Lourdes", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "3", + "airportId": 4245, + "codeIataAirport": "LDG", + "codeIataCity": "LDG", + "codeIcaoAirport": "ULAL", + "codeIso2Country": "RU", + "geonameId": "8030063", + "latitudeAirport": 64.9, + "longitudeAirport": 45.75, + "nameAirport": "Leshukonskoye", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "10.30", + "airportId": 4246, + "codeIataAirport": "LDH", + "codeIataCity": "LDH", + "codeIcaoAirport": "YLHI", + "codeIso2Country": "AU", + "geonameId": "7668731", + "latitudeAirport": -31.540808, + "longitudeAirport": 159.07816, + "nameAirport": "Lord Howe Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Lord_Howe" + }, + { + "GMT": "3", + "airportId": 4247, + "codeIataAirport": "LDI", + "codeIataCity": "LDI", + "codeIcaoAirport": "", + "codeIso2Country": "TZ", + "geonameId": "878281", + "latitudeAirport": -9.845833, + "longitudeAirport": 39.759445, + "nameAirport": "Kikwetu", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-5", + "airportId": 4248, + "codeIataAirport": "LDJ", + "codeIataCity": "LDJ", + "codeIcaoAirport": "KLDJ", + "codeIso2Country": "US", + "geonameId": "5100508", + "latitudeAirport": 40.61667, + "longitudeAirport": -74.25, + "nameAirport": "Linden", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 4249, + "codeIataAirport": "LDK", + "codeIataCity": "LDK", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 58.5, + "longitudeAirport": 13.166667, + "nameAirport": "Hovby", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "airportId": 4250, + "codeIataAirport": "LDM", + "codeIataCity": "LDM", + "codeIcaoAirport": "KLDM", + "codeIso2Country": "US", + "geonameId": "5001100", + "latitudeAirport": 44.075333, + "longitudeAirport": -86.479164, + "nameAirport": "Mason County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "5.45", + "airportId": 4251, + "codeIataAirport": "LDN", + "codeIataCity": "LDN", + "codeIcaoAirport": "VNLD", + "codeIso2Country": "NP", + "geonameId": "7668621", + "latitudeAirport": 27.25, + "longitudeAirport": 86.71667, + "nameAirport": "Lamidanda", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-3", + "airportId": 4252, + "codeIataAirport": "LDO", + "codeIataCity": "LDO", + "codeIcaoAirport": "", + "codeIso2Country": "SR", + "geonameId": "0", + "latitudeAirport": 4.216667, + "longitudeAirport": -55.233334, + "nameAirport": "Ladouanie", + "nameCountry": "Suriname", + "phone": "", + "timezone": "America/Paramaribo" + }, + { + "GMT": "3", + "airportId": 4253, + "codeIataAirport": "LDR", + "codeIataCity": "LDR", + "codeIcaoAirport": "", + "codeIso2Country": "YE", + "geonameId": "8260994", + "latitudeAirport": 13.9, + "longitudeAirport": 45.86667, + "nameAirport": "Lodar", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "8", + "airportId": 4254, + "codeIataAirport": "LDS", + "codeIataCity": "LDS", + "codeIcaoAirport": "ZYLD", + "codeIso2Country": "CN", + "geonameId": "8298672", + "latitudeAirport": 47.751827, + "longitudeAirport": 129.01799, + "nameAirport": "Lindu", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 4255, + "codeIataAirport": "LDU", + "codeIataCity": "LDU", + "codeIcaoAirport": "WBKD", + "codeIso2Country": "MY", + "geonameId": "7668671", + "latitudeAirport": 5.035278, + "longitudeAirport": 118.32611, + "nameAirport": "Lahad Datu", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "1", + "airportId": 4256, + "codeIataAirport": "LDV", + "codeIataCity": "LDV", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "3007842", + "latitudeAirport": 48.5, + "longitudeAirport": -4.1, + "nameAirport": "Landivisiau", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "8", + "airportId": 4257, + "codeIataAirport": "LDW", + "codeIataCity": "LDW", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8260847", + "latitudeAirport": -17.883333, + "longitudeAirport": 126.65, + "nameAirport": "Lansdowne", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-3", + "airportId": 4258, + "codeIataAirport": "LDX", + "codeIataCity": "LDX", + "codeIcaoAirport": "", + "codeIso2Country": "GF", + "geonameId": "0", + "latitudeAirport": 5.483333, + "longitudeAirport": -54.05, + "nameAirport": "St-Laurent du Maroni", + "nameCountry": "French Guiana", + "phone": "", + "timezone": "America/Cayenne" + }, + { + "GMT": "0", + "airportId": 4259, + "codeIataAirport": "LDY", + "codeIataCity": "LDY", + "codeIcaoAirport": "EGAE", + "codeIso2Country": "GB", + "geonameId": "6296571", + "latitudeAirport": 55.039566, + "longitudeAirport": -7.155835, + "nameAirport": "Eglinton (City of Derry)", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "airportId": 4260, + "codeIataAirport": "LDZ", + "codeIataCity": "LDZ", + "codeIcaoAirport": "FALD", + "codeIso2Country": "ZA", + "geonameId": "7730489", + "latitudeAirport": -24.8, + "longitudeAirport": 31.5, + "nameAirport": "Londolozi", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "8", + "airportId": 4261, + "codeIataAirport": "LEA", + "codeIataCity": "LEA", + "codeIcaoAirport": "YPLM", + "codeIso2Country": "AU", + "geonameId": "2079404", + "latitudeAirport": -22.239883, + "longitudeAirport": 114.09427, + "nameAirport": "Learmonth", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "airportId": 4262, + "codeIataAirport": "LEB", + "codeIataCity": "LEB", + "codeIcaoAirport": "KLEB", + "codeIso2Country": "US", + "geonameId": "5088604", + "latitudeAirport": 43.62936, + "longitudeAirport": -72.310005, + "nameAirport": "White River", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 4263, + "codeIataAirport": "LEC", + "codeIataCity": "LEC", + "codeIcaoAirport": "SBLE", + "codeIso2Country": "BR", + "geonameId": "7730781", + "latitudeAirport": -12.48, + "longitudeAirport": -41.281113, + "nameAirport": "Chapada Diamantina", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "3", + "airportId": 4264, + "codeIataAirport": "LED", + "codeIataCity": "LED", + "codeIcaoAirport": "ULLI", + "codeIso2Country": "RU", + "geonameId": "6300971", + "latitudeAirport": 59.806084, + "longitudeAirport": 30.3083, + "nameAirport": "Pulkovo", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-5", + "airportId": 4265, + "codeIataAirport": "LEE", + "codeIataCity": "LEE", + "codeIcaoAirport": "KLEE", + "codeIso2Country": "US", + "geonameId": "4161775", + "latitudeAirport": 28.833332, + "longitudeAirport": -81.816666, + "nameAirport": "Leesburg", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 4266, + "codeIataAirport": "LEF", + "codeIataCity": "LEF", + "codeIcaoAirport": "FXLK", + "codeIso2Country": "LS", + "geonameId": "7730534", + "latitudeAirport": -29.783333, + "longitudeAirport": 28.583332, + "nameAirport": "Lebakeng", + "nameCountry": "Lesotho", + "phone": "", + "timezone": "Africa/Maseru" + }, + { + "GMT": "0", + "airportId": 4267, + "codeIataAirport": "LEG", + "codeIataCity": "LEG", + "codeIcaoAirport": "", + "codeIso2Country": "MR", + "geonameId": "2381659", + "latitudeAirport": 17.166668, + "longitudeAirport": -13.95, + "nameAirport": "Aleg", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "1", + "airportId": 4268, + "codeIataAirport": "LEH", + "codeIataCity": "LEH", + "codeIcaoAirport": "LFOH", + "codeIso2Country": "FR", + "geonameId": "6299431", + "latitudeAirport": 49.53889, + "longitudeAirport": 0.088611, + "nameAirport": "Octeville", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 4269, + "codeIataAirport": "LEI", + "codeIataCity": "LEI", + "codeIcaoAirport": "LEAM", + "codeIso2Country": "ES", + "geonameId": "6299325", + "latitudeAirport": 36.847984, + "longitudeAirport": -2.371873, + "nameAirport": "Almeria", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 4270, + "codeIataAirport": "LEJ", + "codeIataCity": "LEJ", + "codeIcaoAirport": "EDDP", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 51.42026, + "longitudeAirport": 12.221202, + "nameAirport": "Halle", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "0", + "airportId": 4271, + "codeIataAirport": "LEK", + "codeIataCity": "LEK", + "codeIcaoAirport": "GULB", + "codeIso2Country": "GN", + "geonameId": "6297250", + "latitudeAirport": 11.333333, + "longitudeAirport": -12.297222, + "nameAirport": "Labe", + "nameCountry": "Guinea", + "phone": "", + "timezone": "Africa/Conakry" + }, + { + "GMT": "9.30", + "airportId": 4272, + "codeIataAirport": "LEL", + "codeIataCity": "LEL", + "codeIcaoAirport": "YLEV", + "codeIso2Country": "AU", + "geonameId": "7731217", + "latitudeAirport": -12.508333, + "longitudeAirport": 135.8, + "nameAirport": "Lake Evella", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-7", + "airportId": 4273, + "codeIataAirport": "LEM", + "codeIataCity": "LEM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5766453", + "latitudeAirport": 45.940834, + "longitudeAirport": -102.15889, + "nameAirport": "Lemmon", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 4274, + "codeIataAirport": "LEN", + "codeIataCity": "LEN", + "codeIcaoAirport": "LELN", + "codeIso2Country": "ES", + "geonameId": "6299343", + "latitudeAirport": 42.59057, + "longitudeAirport": -5.64629, + "nameAirport": "Leon", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 4275, + "codeIataAirport": "LEO", + "codeIataCity": "LEO", + "codeIcaoAirport": "", + "codeIso2Country": "GA", + "geonameId": "8298766", + "latitudeAirport": -1.566667, + "longitudeAirport": 14.216667, + "nameAirport": "Leconi", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-3", + "airportId": 4276, + "codeIataAirport": "LEP", + "codeIataCity": "LEP", + "codeIcaoAirport": "SNDN", + "codeIso2Country": "BR", + "geonameId": "7731218", + "latitudeAirport": -21.466667, + "longitudeAirport": -42.666668, + "nameAirport": "Leopoldina", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "0", + "airportId": 4277, + "codeIataAirport": "LEQ", + "codeIataCity": "LEQ", + "codeIcaoAirport": "EGHC", + "codeIso2Country": "GB", + "geonameId": "7668205", + "latitudeAirport": 50.05, + "longitudeAirport": -5.733333, + "nameAirport": "Lands End", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "8", + "airportId": 4278, + "codeIataAirport": "LER", + "codeIataCity": "LER", + "codeIcaoAirport": "YLST", + "codeIso2Country": "AU", + "geonameId": "7668735", + "latitudeAirport": -27.833332, + "longitudeAirport": 120.61667, + "nameAirport": "Leinster", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "2", + "airportId": 4279, + "codeIataAirport": "LES", + "codeIataCity": "LES", + "codeIcaoAirport": "LEUT", + "codeIso2Country": "LS", + "geonameId": "7730536", + "latitudeAirport": -29.666668, + "longitudeAirport": 27.666668, + "nameAirport": "Lesobeng", + "nameCountry": "Lesotho", + "phone": "", + "timezone": "Africa/Maseru" + }, + { + "GMT": "-5", + "airportId": 4280, + "codeIataAirport": "LET", + "codeIataCity": "LET", + "codeIcaoAirport": "SKLT", + "codeIso2Country": "CO", + "geonameId": "6300745", + "latitudeAirport": -4.196389, + "longitudeAirport": -69.939445, + "nameAirport": "Gen. A.V. Cobo", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "airportId": 4281, + "codeIataAirport": "LEU", + "codeIataCity": "LEU", + "codeIcaoAirport": "LESU", + "codeIso2Country": "ES", + "geonameId": "7668307", + "latitudeAirport": 42.416668, + "longitudeAirport": 1.466667, + "nameAirport": "Seo de Urgel", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "12", + "airportId": 4282, + "codeIataAirport": "LEV", + "codeIataCity": "LEV", + "codeIcaoAirport": "NFNB", + "codeIso2Country": "FJ", + "geonameId": "7668367", + "latitudeAirport": -17.683332, + "longitudeAirport": 178.83333, + "nameAirport": "Levuka Airfield", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-5", + "airportId": 4283, + "codeIataAirport": "LEW", + "codeIataCity": "LEW", + "codeIcaoAirport": "KLEW", + "codeIso2Country": "US", + "geonameId": "4956993", + "latitudeAirport": 44.1, + "longitudeAirport": -70.23333, + "nameAirport": "Auburn", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 4284, + "codeIataAirport": "LEX", + "codeIataCity": "LEX", + "codeIcaoAirport": "KLEX", + "codeIso2Country": "US", + "geonameId": "4297983", + "latitudeAirport": 38.03762, + "longitudeAirport": -84.59792, + "nameAirport": "Blue Grass", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 4285, + "codeIataAirport": "LEY", + "codeIataCity": "LEY", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "6296688", + "latitudeAirport": 52.466667, + "longitudeAirport": 5.533333, + "nameAirport": "Lelystad", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "-6", + "airportId": 4286, + "codeIataAirport": "LEZ", + "codeIataCity": "LEZ", + "codeIcaoAirport": "", + "codeIso2Country": "HN", + "geonameId": "8299058", + "latitudeAirport": 14.25, + "longitudeAirport": -88.166664, + "nameAirport": "La Esperanza", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "2", + "airportId": 4287, + "codeIataAirport": "LFB", + "codeIataCity": "LFB", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "1043244", + "latitudeAirport": -15.033333, + "longitudeAirport": 40.666668, + "nameAirport": "Lumbo", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-5", + "airportId": 4288, + "codeIataAirport": "LFI", + "codeIataCity": "PHF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 37.083332, + "longitudeAirport": -76.5, + "nameAirport": "Langley AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 4289, + "codeIataAirport": "LFK", + "codeIataCity": "OCH", + "codeIcaoAirport": "KLFK", + "codeIso2Country": "US", + "geonameId": "4670842", + "latitudeAirport": 31.234167, + "longitudeAirport": -94.750275, + "nameAirport": "Lufkin Angelina County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3.30", + "airportId": 4290, + "codeIataAirport": "LFM", + "codeIataCity": "LFM", + "codeIcaoAirport": "OISR", + "codeIso2Country": "IR", + "geonameId": "6916552", + "latitudeAirport": 27.37412, + "longitudeAirport": 53.190926, + "nameAirport": "Lamerd", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-5", + "airportId": 4291, + "codeIataAirport": "LFN", + "codeIataCity": "LFN", + "codeIcaoAirport": "KLHZ", + "codeIso2Country": "US", + "geonameId": "6298551", + "latitudeAirport": 36.1, + "longitudeAirport": -78.3, + "nameAirport": "Franklin", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 4292, + "codeIataAirport": "LFO", + "codeIataCity": "LFO", + "codeIcaoAirport": "HAKL", + "codeIso2Country": "ET", + "geonameId": "7730589", + "latitudeAirport": 5.666667, + "longitudeAirport": 44.333332, + "nameAirport": "Kelafo", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "10", + "airportId": 4293, + "codeIataAirport": "LFP", + "codeIataCity": "LFP", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8299050", + "latitudeAirport": -15.05, + "longitudeAirport": 144.00555, + "nameAirport": "Lakefield", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-4", + "airportId": 4294, + "codeIataAirport": "LFR", + "codeIataCity": "LFR", + "codeIcaoAirport": "SVLF", + "codeIso2Country": "VE", + "geonameId": "6300857", + "latitudeAirport": 8.240556, + "longitudeAirport": -72.272224, + "nameAirport": "La Fria", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-6", + "airportId": 4295, + "codeIataAirport": "LFT", + "codeIataCity": "LFT", + "codeIcaoAirport": "KLFT", + "codeIso2Country": "US", + "geonameId": "6298540", + "latitudeAirport": 30.20851, + "longitudeAirport": -91.99327, + "nameAirport": "Lafayette Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 4296, + "codeIataAirport": "LFW", + "codeIataCity": "LFW", + "codeIcaoAirport": "DXXX", + "codeIso2Country": "TG", + "geonameId": "6296482", + "latitudeAirport": 6.167103, + "longitudeAirport": 1.250347, + "nameAirport": "Lome", + "nameCountry": "Togo", + "phone": "", + "timezone": "Africa/Lome" + }, + { + "GMT": "-5", + "airportId": 4297, + "codeIataAirport": "LGA", + "codeIataCity": "NYC", + "codeIcaoAirport": "KLGA", + "codeIso2Country": "US", + "geonameId": "5123698", + "latitudeAirport": 40.774254, + "longitudeAirport": -73.87162, + "nameAirport": "La Guardia", + "nameCountry": "United States", + "phone": "718-533-3400", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "airportId": 4298, + "codeIataAirport": "LGB", + "codeIataCity": "LGB", + "codeIcaoAirport": "KLGB", + "codeIso2Country": "US", + "geonameId": "5367929", + "latitudeAirport": 33.818195, + "longitudeAirport": -118.14449, + "nameAirport": "Long Beach Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 4299, + "codeIataAirport": "LGC", + "codeIataCity": "LGC", + "codeIcaoAirport": "KLGC", + "codeIso2Country": "US", + "geonameId": "6298542", + "latitudeAirport": 33.0075, + "longitudeAirport": -85.07083, + "nameAirport": "Calloway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "airportId": 4300, + "codeIataAirport": "LGD", + "codeIataCity": "LGD", + "codeIcaoAirport": "KLGD", + "codeIso2Country": "US", + "geonameId": "5735541", + "latitudeAirport": 45.289722, + "longitudeAirport": -118.005, + "nameAirport": "La Grande", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 4301, + "codeIataAirport": "LGE", + "codeIataCity": "LGE", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8224836", + "latitudeAirport": -20.133333, + "longitudeAirport": 127.566666, + "nameAirport": "Lake Gregory", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-7", + "airportId": 4302, + "codeIataAirport": "LGF", + "codeIataCity": "YUM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.716667, + "longitudeAirport": -114.61667, + "nameAirport": "Laguna AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "1", + "airportId": 4303, + "codeIataAirport": "LGG", + "codeIataCity": "LGG", + "codeIcaoAirport": "EBLG", + "codeIso2Country": "BE", + "geonameId": "6296496", + "latitudeAirport": 50.643333, + "longitudeAirport": 5.460149, + "nameAirport": "Liege Airport", + "nameCountry": "Belgium", + "phone": "", + "timezone": "Europe/Brussels" + }, + { + "GMT": "9.30", + "airportId": 4304, + "codeIataAirport": "LGH", + "codeIataCity": "LGH", + "codeIcaoAirport": "YLEC", + "codeIso2Country": "AU", + "geonameId": "6301334", + "latitudeAirport": -30.466667, + "longitudeAirport": 138.41667, + "nameAirport": "Leigh Creek", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-5", + "airportId": 4305, + "codeIataAirport": "LGI", + "codeIataCity": "LGI", + "codeIcaoAirport": "MYLD", + "codeIso2Country": "BS", + "geonameId": "7910227", + "latitudeAirport": 23.179443, + "longitudeAirport": -75.09055, + "nameAirport": "Deadmans Cay", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "2", + "airportId": 4306, + "codeIataAirport": "LGJ", + "codeIataCity": "LGJ", + "codeIcaoAirport": "", + "codeIso2Country": "RO", + "geonameId": "674531", + "latitudeAirport": 45.68861, + "longitudeAirport": 21.90306, + "nameAirport": "Lugoj Bus Station", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "8", + "airportId": 4307, + "codeIataAirport": "LGK", + "codeIataCity": "LGK", + "codeIcaoAirport": "WMKL", + "codeIso2Country": "MY", + "geonameId": "6301256", + "latitudeAirport": 6.342174, + "longitudeAirport": 99.7314, + "nameAirport": "Langakawi International", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "8", + "airportId": 4308, + "codeIataAirport": "LGL", + "codeIataCity": "LGL", + "codeIcaoAirport": "WBGF", + "codeIso2Country": "MY", + "geonameId": "7731219", + "latitudeAirport": 4.183333, + "longitudeAirport": 114.25, + "nameAirport": "Long Lellang", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "10", + "airportId": 4309, + "codeIataAirport": "LGN", + "codeIataCity": "LGN", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298683", + "latitudeAirport": -5.683333, + "longitudeAirport": 149.41667, + "nameAirport": "Linga Linga", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 4310, + "codeIataAirport": "LGO", + "codeIataCity": "LGO", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2880861", + "latitudeAirport": 53.766666, + "longitudeAirport": 7.533333, + "nameAirport": "Langeoog", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "airportId": 4311, + "codeIataAirport": "LGP", + "codeIataCity": "LGP", + "codeIcaoAirport": "RPLP", + "codeIso2Country": "PH", + "geonameId": "6300475", + "latitudeAirport": 13.15213, + "longitudeAirport": 123.7302, + "nameAirport": "Legazpi", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-5", + "airportId": 4312, + "codeIataAirport": "LGQ", + "codeIataCity": "LGQ", + "codeIcaoAirport": "SELA", + "codeIso2Country": "EC", + "geonameId": "7668449", + "latitudeAirport": 0.1, + "longitudeAirport": -76.88333, + "nameAirport": "Lago Agrio", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-4", + "airportId": 4313, + "codeIataAirport": "LGR", + "codeIataCity": "LGR", + "codeIcaoAirport": "SCHR", + "codeIso2Country": "CL", + "geonameId": "6300700", + "latitudeAirport": -47.166668, + "longitudeAirport": -72.0, + "nameAirport": "Cochrane", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-3", + "airportId": 4314, + "codeIataAirport": "LGS", + "codeIataCity": "LGS", + "codeIcaoAirport": "SAMM", + "codeIso2Country": "AR", + "geonameId": "6300528", + "latitudeAirport": -35.5, + "longitudeAirport": -69.583336, + "nameAirport": "Malargue", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Mendoza" + }, + { + "GMT": "-5", + "airportId": 4315, + "codeIataAirport": "LGT", + "codeIataCity": "LGT", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8298677", + "latitudeAirport": 9.166667, + "longitudeAirport": -74.5, + "nameAirport": "Las Gaviotas", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-7", + "airportId": 4316, + "codeIataAirport": "LGU", + "codeIataCity": "LGU", + "codeIcaoAirport": "KLGU", + "codeIso2Country": "US", + "geonameId": "5777563", + "latitudeAirport": 41.7875, + "longitudeAirport": -111.855, + "nameAirport": "Cache", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "0", + "airportId": 4317, + "codeIataAirport": "LGW", + "codeIataCity": "LON", + "codeIcaoAirport": "EGKK", + "codeIso2Country": "GB", + "geonameId": "6296598", + "latitudeAirport": 51.156807, + "longitudeAirport": -0.161863, + "nameAirport": "Gatwick", + "nameCountry": "United Kingdom", + "phone": "+44 (0) 844 8", + "timezone": "Europe/London" + }, + { + "GMT": "3", + "airportId": 4318, + "codeIataAirport": "LGX", + "codeIataCity": "LGX", + "codeIcaoAirport": "", + "codeIso2Country": "SO", + "geonameId": "8299106", + "latitudeAirport": 3.8, + "longitudeAirport": 42.05, + "nameAirport": "Lugh Ganane", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-4", + "airportId": 4319, + "codeIataAirport": "LGY", + "codeIataCity": "LGY", + "codeIcaoAirport": "", + "codeIso2Country": "VE", + "geonameId": "8299076", + "latitudeAirport": 8.516667, + "longitudeAirport": -71.4, + "nameAirport": "Lagunillas", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-5", + "airportId": 4320, + "codeIataAirport": "LGZ", + "codeIataCity": "LGZ", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 37.755833, + "longitudeAirport": 20.888332, + "nameAirport": "Leguizamo", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "airportId": 4321, + "codeIataAirport": "LHA", + "codeIataCity": "LHA", + "codeIcaoAirport": "EDTL", + "codeIso2Country": "DE", + "geonameId": "3208827", + "latitudeAirport": 48.333332, + "longitudeAirport": 7.883333, + "nameAirport": "Black Forest", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-9", + "airportId": 4322, + "codeIataAirport": "LHB", + "codeIataCity": "LHB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4696867", + "latitudeAirport": 54.233334, + "longitudeAirport": -165.6, + "nameAirport": "Lost Harbor Sea Port", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "5", + "airportId": 4323, + "codeIataAirport": "LHE", + "codeIataCity": "LHE", + "codeIcaoAirport": "OPLA", + "codeIso2Country": "PK", + "geonameId": "1331475", + "latitudeAirport": 31.520832, + "longitudeAirport": 74.40278, + "nameAirport": "Alama Iqbal International", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "10", + "airportId": 4324, + "codeIataAirport": "LHG", + "codeIataCity": "LHG", + "codeIcaoAirport": "YLRD", + "codeIso2Country": "AU", + "geonameId": "7668734", + "latitudeAirport": -29.458332, + "longitudeAirport": 147.98334, + "nameAirport": "Lightning Ridge", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "9", + "airportId": 4325, + "codeIataAirport": "LHI", + "codeIataCity": "LHI", + "codeIcaoAirport": "WAJL", + "codeIso2Country": "ID", + "geonameId": "7731220", + "latitudeAirport": -3.133333, + "longitudeAirport": 139.9, + "nameAirport": "Lereh", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "airportId": 4326, + "codeIataAirport": "LHK", + "codeIataCity": "LHK", + "codeIcaoAirport": "ZHGH", + "codeIso2Country": "CN", + "geonameId": "7731221", + "latitudeAirport": 32.266666, + "longitudeAirport": 111.63333, + "nameAirport": "Guanghua", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 4327, + "codeIataAirport": "LHN", + "codeIataCity": "LHN", + "codeIcaoAirport": "", + "codeIso2Country": "TW", + "geonameId": "1672799", + "latitudeAirport": 23.433332, + "longitudeAirport": 121.3, + "nameAirport": "Lishan", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "10", + "airportId": 4328, + "codeIataAirport": "LHP", + "codeIataCity": "LHP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260850", + "latitudeAirport": -6.5, + "longitudeAirport": 155.7, + "nameAirport": "Lehu", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 4329, + "codeIataAirport": "LHR", + "codeIataCity": "LON", + "codeIcaoAirport": "EGLL", + "codeIso2Country": "GB", + "geonameId": "2647216", + "latitudeAirport": 51.469604, + "longitudeAirport": -0.453566, + "nameAirport": "Heathrow", + "nameCountry": "United Kingdom", + "phone": "0844 335 1801", + "timezone": "Europe/London" + }, + { + "GMT": "-3", + "airportId": 4330, + "codeIataAirport": "LHS", + "codeIataCity": "LHS", + "codeIcaoAirport": "SAVH", + "codeIso2Country": "AR", + "geonameId": "7730150", + "latitudeAirport": -32.85, + "longitudeAirport": -68.816666, + "nameAirport": "Las Heras", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "2", + "airportId": 4331, + "codeIataAirport": "LHU", + "codeIataCity": "LHU", + "codeIcaoAirport": "", + "codeIso2Country": "NA", + "geonameId": "8298953", + "latitudeAirport": -18.116388, + "longitudeAirport": 23.391666, + "nameAirport": "Lianshulu", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-5", + "airportId": 4332, + "codeIataAirport": "LHV", + "codeIataCity": "LHV", + "codeIcaoAirport": "KLHV", + "codeIso2Country": "US", + "geonameId": "5217321", + "latitudeAirport": 41.13333, + "longitudeAirport": -77.45, + "nameAirport": "W T Piper Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 4333, + "codeIataAirport": "LIA", + "codeIataCity": "LIA", + "codeIcaoAirport": "ZULP", + "codeIso2Country": "CN", + "geonameId": "7731222", + "latitudeAirport": 30.816668, + "longitudeAirport": 107.7, + "nameAirport": "Liangping", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9.30", + "airportId": 4334, + "codeIataAirport": "LIB", + "codeIataCity": "LIB", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731223", + "latitudeAirport": -17.2, + "longitudeAirport": 129.8, + "nameAirport": "Limbunya", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-7", + "airportId": 4335, + "codeIataAirport": "LIC", + "codeIataCity": "LIC", + "codeIcaoAirport": "KLIC", + "codeIso2Country": "US", + "geonameId": "5428507", + "latitudeAirport": 39.266666, + "longitudeAirport": -103.683334, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 4336, + "codeIataAirport": "LIE", + "codeIataCity": "LIE", + "codeIcaoAirport": "FZFA", + "codeIso2Country": "CD", + "geonameId": "7730559", + "latitudeAirport": 3.623611, + "longitudeAirport": 18.63889, + "nameAirport": "Libenge", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "11", + "airportId": 4337, + "codeIataAirport": "LIF", + "codeIataCity": "LIF", + "codeIcaoAirport": "NWWL", + "codeIso2Country": "NC", + "geonameId": "6299975", + "latitudeAirport": -20.766666, + "longitudeAirport": 167.25, + "nameAirport": "Lifou", + "nameCountry": "New Caledonia", + "phone": "", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "1", + "airportId": 4338, + "codeIataAirport": "LIG", + "codeIataCity": "LIG", + "codeIcaoAirport": "LFBL", + "codeIso2Country": "FR", + "geonameId": "6299374", + "latitudeAirport": 45.86218, + "longitudeAirport": 1.176245, + "nameAirport": "Bellegarde", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-10", + "airportId": 4339, + "codeIataAirport": "LIH", + "codeIataCity": "LIH", + "codeIcaoAirport": "PHLI", + "codeIso2Country": "US", + "geonameId": "5850249", + "latitudeAirport": 21.978205, + "longitudeAirport": -159.34944, + "nameAirport": "Lihue", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "9", + "airportId": 4340, + "codeIataAirport": "LII", + "codeIataCity": "LII", + "codeIcaoAirport": "WAJM", + "codeIso2Country": "ID", + "geonameId": "7731224", + "latitudeAirport": -3.733333, + "longitudeAirport": 137.96666, + "nameAirport": "Mulia", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-9", + "airportId": 4341, + "codeIataAirport": "LIJ", + "codeIataCity": "LIJ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8298924", + "latitudeAirport": 54.92917, + "longitudeAirport": -132.80833, + "nameAirport": "Long Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "12", + "airportId": 4342, + "codeIataAirport": "LIK", + "codeIataCity": "LIK", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 9.816667, + "longitudeAirport": 169.31667, + "nameAirport": "Likiep Island", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "1", + "airportId": 4343, + "codeIataAirport": "LIL", + "codeIataCity": "LIL", + "codeIcaoAirport": "LFQQ", + "codeIso2Country": "FR", + "geonameId": "6299448", + "latitudeAirport": 50.57205, + "longitudeAirport": 3.106067, + "nameAirport": "Lesquin", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 4344, + "codeIataAirport": "LIM", + "codeIataCity": "LIM", + "codeIcaoAirport": "SPIM", + "codeIso2Country": "PE", + "geonameId": "3937555", + "latitudeAirport": -12.019421, + "longitudeAirport": -77.107666, + "nameAirport": "Jorge Chavez International", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "1", + "airportId": 4345, + "codeIataAirport": "LIN", + "codeIataCity": "MIL", + "codeIcaoAirport": "LIML", + "codeIso2Country": "IT", + "geonameId": "6299580", + "latitudeAirport": 45.460957, + "longitudeAirport": 9.279157, + "nameAirport": "Linate", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-6", + "airportId": 4346, + "codeIataAirport": "LIO", + "codeIataCity": "LIO", + "codeIcaoAirport": "MRLM", + "codeIso2Country": "CR", + "geonameId": "6299904", + "latitudeAirport": 9.955833, + "longitudeAirport": -83.02111, + "nameAirport": "Limon International Airport", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-3", + "airportId": 4347, + "codeIataAirport": "LIP", + "codeIataCity": "LIP", + "codeIcaoAirport": "SBLN", + "codeIso2Country": "BR", + "geonameId": "7730157", + "latitudeAirport": -21.666668, + "longitudeAirport": -49.75, + "nameAirport": "Lins", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 4348, + "codeIataAirport": "LIQ", + "codeIataCity": "LIQ", + "codeIcaoAirport": "FZGA", + "codeIso2Country": "CD", + "geonameId": "7668269", + "latitudeAirport": 2.172222, + "longitudeAirport": 21.495832, + "nameAirport": "Lisala", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "-6", + "airportId": 4349, + "codeIataAirport": "LIR", + "codeIataCity": "LIR", + "codeIcaoAirport": "MRLB", + "codeIso2Country": "CR", + "geonameId": "6299903", + "latitudeAirport": 10.600005, + "longitudeAirport": -85.53839, + "nameAirport": "Daniel Oduber International", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "0", + "airportId": 4350, + "codeIataAirport": "LIS", + "codeIataCity": "LIS", + "codeIcaoAirport": "LPPT", + "codeIso2Country": "PT", + "geonameId": "6301792", + "latitudeAirport": 38.770042, + "longitudeAirport": -9.128165, + "nameAirport": "Lisbon Portela", + "nameCountry": "Portugal", + "phone": "+351 218 413", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "-6", + "airportId": 4351, + "codeIataAirport": "LIT", + "codeIataCity": "LIT", + "codeIcaoAirport": "KLIT", + "codeIso2Country": "US", + "geonameId": "4119403", + "latitudeAirport": 34.727432, + "longitudeAirport": -92.221375, + "nameAirport": "Adams Field Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 4352, + "codeIataAirport": "LIV", + "codeIataCity": "LIV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5867695", + "latitudeAirport": 65.51667, + "longitudeAirport": -148.66667, + "nameAirport": "Livengood", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "6.30", + "airportId": 4353, + "codeIataAirport": "LIW", + "codeIataCity": "LIW", + "codeIcaoAirport": "VYLK", + "codeIso2Country": "MM", + "geonameId": "7668659", + "latitudeAirport": 19.68861, + "longitudeAirport": 97.21694, + "nameAirport": "Loikaw", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "2", + "airportId": 4354, + "codeIataAirport": "LIX", + "codeIataCity": "LIX", + "codeIcaoAirport": "FWLK", + "codeIso2Country": "MW", + "geonameId": "7730533", + "latitudeAirport": -12.083333, + "longitudeAirport": 34.733334, + "nameAirport": "Likoma", + "nameCountry": "Malawi", + "phone": "", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "-5", + "airportId": 4355, + "codeIataAirport": "LIY", + "codeIataCity": "LIY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 31.85, + "longitudeAirport": -81.6, + "nameAirport": "Wright AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 4356, + "codeIataAirport": "LIZ", + "codeIataCity": "LIZ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.033333, + "longitudeAirport": -78.63333, + "nameAirport": "Loring AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 4357, + "codeIataAirport": "LJA", + "codeIataCity": "LJA", + "codeIcaoAirport": "FZVA", + "codeIso2Country": "CD", + "geonameId": "6297162", + "latitudeAirport": -3.397222, + "longitudeAirport": 23.444445, + "nameAirport": "Lodja", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-5", + "airportId": 4358, + "codeIataAirport": "LJC", + "codeIataCity": "SDF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 36.266666, + "longitudeAirport": -85.75, + "nameAirport": "Intercontinental", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Kentucky/Louisville" + }, + { + "GMT": "8", + "airportId": 4359, + "codeIataAirport": "LJG", + "codeIataCity": "LJG", + "codeIcaoAirport": "ZPLJ", + "codeIso2Country": "CN", + "geonameId": "7731225", + "latitudeAirport": 26.683332, + "longitudeAirport": 100.25, + "nameAirport": "Lijiang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 4360, + "codeIataAirport": "LJN", + "codeIataCity": "LJN", + "codeIcaoAirport": "KLBX", + "codeIso2Country": "US", + "geonameId": "4676138", + "latitudeAirport": 29.038334, + "longitudeAirport": -95.45695, + "nameAirport": "Brazoria County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 4361, + "codeIataAirport": "LJU", + "codeIataCity": "LJU", + "codeIcaoAirport": "LJLJ", + "codeIso2Country": "SI", + "geonameId": "3215733", + "latitudeAirport": 46.23102, + "longitudeAirport": 14.454972, + "nameAirport": "Brnik", + "nameCountry": "Slovenia", + "phone": "", + "timezone": "Europe/Ljubljana" + }, + { + "GMT": "8", + "airportId": 4362, + "codeIataAirport": "LKA", + "codeIataCity": "LKA", + "codeIcaoAirport": "WRKL", + "codeIso2Country": "ID", + "geonameId": "6301269", + "latitudeAirport": -8.35, + "longitudeAirport": 122.98333, + "nameAirport": "Larantuka", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "12", + "airportId": 4363, + "codeIataAirport": "LKB", + "codeIataCity": "LKB", + "codeIcaoAirport": "NFNK", + "codeIso2Country": "FJ", + "geonameId": "6299947", + "latitudeAirport": -18.2, + "longitudeAirport": 179.2, + "nameAirport": "Lakeba", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "1", + "airportId": 4364, + "codeIataAirport": "LKC", + "codeIataCity": "LKC", + "codeIcaoAirport": "", + "codeIso2Country": "CG", + "geonameId": "2568803", + "latitudeAirport": -2.316667, + "longitudeAirport": 14.6, + "nameAirport": "Lekana", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "10", + "airportId": 4365, + "codeIataAirport": "LKD", + "codeIataCity": "LKD", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298958", + "latitudeAirport": -15.816667, + "longitudeAirport": 144.95, + "nameAirport": "Lakeland Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-8", + "airportId": 4366, + "codeIataAirport": "LKE", + "codeIataCity": "SEA", + "codeIcaoAirport": "KW55", + "codeIso2Country": "US", + "geonameId": "5800346", + "latitudeAirport": 47.6275, + "longitudeAirport": -122.331665, + "nameAirport": "Kenmore Air Harbor SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "airportId": 4367, + "codeIataAirport": "LKG", + "codeIataCity": "LKG", + "codeIcaoAirport": "HKLK", + "codeIso2Country": "KE", + "geonameId": "7730094", + "latitudeAirport": 4.233333, + "longitudeAirport": 34.35, + "nameAirport": "Lokichoggio", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "8", + "airportId": 4368, + "codeIataAirport": "LKH", + "codeIataCity": "LKH", + "codeIcaoAirport": "WBGL", + "codeIso2Country": "MY", + "geonameId": "7731226", + "latitudeAirport": 3.312934, + "longitudeAirport": 114.78566, + "nameAirport": "Long Akah", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-6", + "airportId": 4369, + "codeIataAirport": "LKI", + "codeIataCity": "DLH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 46.783333, + "longitudeAirport": -92.1, + "nameAirport": "Lakeside USAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 4370, + "codeIataAirport": "LKK", + "codeIataCity": "LKK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 59.816666, + "longitudeAirport": -158.83333, + "nameAirport": "Kulik Lake", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 4371, + "codeIataAirport": "LKL", + "codeIataCity": "LKL", + "codeIcaoAirport": "ENNA", + "codeIso2Country": "NO", + "geonameId": "6296754", + "latitudeAirport": 70.06778, + "longitudeAirport": 24.973612, + "nameAirport": "Banak", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 4372, + "codeIataAirport": "LKN", + "codeIataCity": "LKN", + "codeIcaoAirport": "ENLK", + "codeIso2Country": "NO", + "geonameId": "7626400", + "latitudeAirport": 68.15421, + "longitudeAirport": 13.614864, + "nameAirport": "Leknes", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "5.30", + "airportId": 4373, + "codeIataAirport": "LKO", + "codeIataCity": "LKO", + "codeIcaoAirport": "VILK", + "codeIso2Country": "IN", + "geonameId": "6301873", + "latitudeAirport": 26.764257, + "longitudeAirport": 80.884186, + "nameAirport": "Amausi", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "airportId": 4374, + "codeIataAirport": "LKP", + "codeIataCity": "LKP", + "codeIcaoAirport": "KLKP", + "codeIso2Country": "US", + "geonameId": "5123833", + "latitudeAirport": 44.283333, + "longitudeAirport": -73.98333, + "nameAirport": "Lake Placid", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 4375, + "codeIataAirport": "LKR", + "codeIataCity": "LKR", + "codeIcaoAirport": "", + "codeIso2Country": "SO", + "geonameId": "8260956", + "latitudeAirport": 11.15, + "longitudeAirport": 48.2, + "nameAirport": "Las Khoreh", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-6", + "airportId": 4376, + "codeIataAirport": "LKS", + "codeIataCity": "LKS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.500834, + "longitudeAirport": -98.14694, + "nameAirport": "Lakeside", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 4377, + "codeIataAirport": "LKU", + "codeIataCity": "LKU", + "codeIcaoAirport": "", + "codeIso2Country": "KE", + "geonameId": "7731227", + "latitudeAirport": 3.416667, + "longitudeAirport": 35.88333, + "nameAirport": "Lake Rudolf", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-8", + "airportId": 4378, + "codeIataAirport": "LKV", + "codeIataCity": "LKV", + "codeIcaoAirport": "KLKV", + "codeIso2Country": "US", + "geonameId": "5735792", + "latitudeAirport": 42.166668, + "longitudeAirport": -120.4, + "nameAirport": "Lake County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "4", + "airportId": 4379, + "codeIataAirport": "LKW", + "codeIataCity": "LKW", + "codeIcaoAirport": "", + "codeIso2Country": "OM", + "geonameId": "8298671", + "latitudeAirport": 22.8047, + "longitudeAirport": 55.3658, + "nameAirport": "Lekhwair", + "nameCountry": "Oman", + "phone": "", + "timezone": "Asia/Muscat" + }, + { + "GMT": "3", + "airportId": 4380, + "codeIataAirport": "LKY", + "codeIataCity": "LKY", + "codeIcaoAirport": "HTLM", + "codeIso2Country": "TZ", + "geonameId": "6354961", + "latitudeAirport": -3.5, + "longitudeAirport": 36.416668, + "nameAirport": "Lake Manyara", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "0", + "airportId": 4381, + "codeIataAirport": "LKZ", + "codeIataCity": "LKZ", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 52.49167, + "longitudeAirport": 0.67609, + "nameAirport": "RAF Lakenheath", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 4382, + "codeIataAirport": "LLA", + "codeIataCity": "LLA", + "codeIcaoAirport": "ESPA", + "codeIso2Country": "SE", + "geonameId": "6296811", + "latitudeAirport": 65.54939, + "longitudeAirport": 22.123587, + "nameAirport": "Kallax", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "8", + "airportId": 4383, + "codeIataAirport": "LLB", + "codeIataCity": "LLB", + "codeIcaoAirport": "ZULB", + "codeIso2Country": "CN", + "geonameId": "8260852", + "latitudeAirport": 25.452477, + "longitudeAirport": 107.961914, + "nameAirport": "Libo", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "airportId": 4384, + "codeIataAirport": "LLE", + "codeIataCity": "LLE", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "979837", + "latitudeAirport": -25.466667, + "longitudeAirport": 31.566668, + "nameAirport": "Malelane", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "8", + "airportId": 4385, + "codeIataAirport": "LLF", + "codeIataCity": "LLF", + "codeIcaoAirport": "ZGLG", + "codeIso2Country": "CN", + "geonameId": "8298784", + "latitudeAirport": 26.345556, + "longitudeAirport": 111.61222, + "nameAirport": "LingLing", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "airportId": 4386, + "codeIataAirport": "LLG", + "codeIataCity": "LLG", + "codeIcaoAirport": "YCGO", + "codeIso2Country": "AU", + "geonameId": "2171623", + "latitudeAirport": -17.133333, + "longitudeAirport": 144.53334, + "nameAirport": "Chillagoe", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "airportId": 4387, + "codeIataAirport": "LLH", + "codeIataCity": "LLH", + "codeIcaoAirport": "", + "codeIso2Country": "HN", + "geonameId": "0", + "latitudeAirport": 15.443056, + "longitudeAirport": -87.89889, + "nameAirport": "Las Limas", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "3", + "airportId": 4388, + "codeIataAirport": "LLI", + "codeIataCity": "LLI", + "codeIcaoAirport": "HALL", + "codeIso2Country": "ET", + "geonameId": "7649173", + "latitudeAirport": 12.016667, + "longitudeAirport": 39.066666, + "nameAirport": "Lalibela", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "4", + "airportId": 4389, + "codeIataAirport": "LLK", + "codeIataCity": "LLK", + "codeIcaoAirport": "UBBL", + "codeIso2Country": "AZ", + "geonameId": "388727", + "latitudeAirport": 38.74203, + "longitudeAirport": 48.824093, + "nameAirport": "Lankaran", + "nameCountry": "Azerbaijan", + "phone": "", + "timezone": "Asia/Baku" + }, + { + "GMT": "8", + "airportId": 4390, + "codeIataAirport": "LLL", + "codeIataCity": "LLL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8299067", + "latitudeAirport": -16.566668, + "longitudeAirport": 128.63333, + "nameAirport": "Lissadell", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "airportId": 4391, + "codeIataAirport": "LLM", + "codeIataCity": "LLM", + "codeIcaoAirport": "", + "codeIso2Country": "MY", + "geonameId": "1737957", + "latitudeAirport": 3.766667, + "longitudeAirport": 114.46667, + "nameAirport": "Long Lama", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "9", + "airportId": 4392, + "codeIataAirport": "LLN", + "codeIataCity": "LLN", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731230", + "latitudeAirport": -3.75, + "longitudeAirport": 138.66667, + "nameAirport": "Kelila", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "10", + "airportId": 4393, + "codeIataAirport": "LLP", + "codeIataCity": "LLP", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8299152", + "latitudeAirport": -23.166668, + "longitudeAirport": 138.7, + "nameAirport": "Linda Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "airportId": 4394, + "codeIataAirport": "LLS", + "codeIataCity": "LLS", + "codeIcaoAirport": "SATK", + "codeIso2Country": "AR", + "geonameId": "6300560", + "latitudeAirport": -24.716667, + "longitudeAirport": -60.583332, + "nameAirport": "Las Lomitas", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "1", + "airportId": 4395, + "codeIataAirport": "LLT", + "codeIataCity": "LLT", + "codeIcaoAirport": "", + "codeIso2Country": "AO", + "geonameId": "8299217", + "latitudeAirport": -12.3711, + "longitudeAirport": 13.5367, + "nameAirport": "Lobito", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-3", + "airportId": 4396, + "codeIataAirport": "LLU", + "codeIataCity": "LLU", + "codeIcaoAirport": "BGAP", + "codeIso2Country": "GL", + "geonameId": "3424682", + "latitudeAirport": 60.46417, + "longitudeAirport": -45.56889, + "nameAirport": "Alluitsup Paa", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "2", + "airportId": 4397, + "codeIataAirport": "LLW", + "codeIataCity": "LLW", + "codeIcaoAirport": "FWLI", + "codeIso2Country": "MW", + "geonameId": "6297121", + "latitudeAirport": -13.780039, + "longitudeAirport": 33.780197, + "nameAirport": "Kumuzu International Airport", + "nameCountry": "Malawi", + "phone": "", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "-5", + "airportId": 4398, + "codeIataAirport": "LLX", + "codeIataCity": "LLX", + "codeIcaoAirport": "KCDA", + "codeIso2Country": "US", + "geonameId": "5238203", + "latitudeAirport": 44.5, + "longitudeAirport": -72.01667, + "nameAirport": "Lyndonville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 4399, + "codeIataAirport": "LLY", + "codeIataCity": "LLY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.916668, + "longitudeAirport": -74.75, + "nameAirport": "Burlington County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 4400, + "codeIataAirport": "LMA", + "codeIataCity": "LMA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5867107", + "latitudeAirport": 63.88333, + "longitudeAirport": -152.31667, + "nameAirport": "Lake Minchumina", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 4401, + "codeIataAirport": "LMB", + "codeIataCity": "LMB", + "codeIcaoAirport": "FWSM", + "codeIso2Country": "MW", + "geonameId": "924055", + "latitudeAirport": -13.75, + "longitudeAirport": 34.583332, + "nameAirport": "Salima", + "nameCountry": "Malawi", + "phone": "", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "-5", + "airportId": 4402, + "codeIataAirport": "LMC", + "codeIataCity": "LMC", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8260961", + "latitudeAirport": 3.316667, + "longitudeAirport": -73.9, + "nameAirport": "Lamacarena", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "airportId": 4403, + "codeIataAirport": "LMD", + "codeIataCity": "LMD", + "codeIcaoAirport": "", + "codeIso2Country": "AR", + "geonameId": "7731231", + "latitudeAirport": -40.833332, + "longitudeAirport": -68.13333, + "nameAirport": "Los Menucos", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "1", + "airportId": 4404, + "codeIataAirport": "LME", + "codeIataCity": "LME", + "codeIcaoAirport": "LFRM", + "codeIso2Country": "FR", + "geonameId": "6299458", + "latitudeAirport": 48.0, + "longitudeAirport": 1.25, + "nameAirport": "Arnage", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "airportId": 4405, + "codeIataAirport": "LMG", + "codeIataCity": "LMG", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2092633", + "latitudeAirport": -4.7, + "longitudeAirport": 152.75, + "nameAirport": "Lamassa", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 4406, + "codeIataAirport": "LMH", + "codeIataCity": "LMH", + "codeIcaoAirport": "", + "codeIso2Country": "HN", + "geonameId": "8298998", + "latitudeAirport": 15.866667, + "longitudeAirport": -85.55, + "nameAirport": "Limon", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "10", + "airportId": 4407, + "codeIataAirport": "LMI", + "codeIataCity": "LMI", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731232", + "latitudeAirport": -3.483333, + "longitudeAirport": 142.03334, + "nameAirport": "Lumi", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "airportId": 4408, + "codeIataAirport": "LMJ", + "codeIataCity": "TYO", + "codeIcaoAirport": "", + "codeIso2Country": "JP", + "geonameId": "0", + "latitudeAirport": 35.6894875, + "longitudeAirport": 139.6917064, + "nameAirport": "Tokyo Bus Station", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "12", + "airportId": 4409, + "codeIataAirport": "LML", + "codeIataCity": "LML", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 8.916667, + "longitudeAirport": 166.25, + "nameAirport": "Lae Island", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-7", + "airportId": 4410, + "codeIataAirport": "LMM", + "codeIataCity": "LMM", + "codeIcaoAirport": "MMLM", + "codeIso2Country": "MX", + "geonameId": "6299850", + "latitudeAirport": 25.816668, + "longitudeAirport": -108.98333, + "nameAirport": "Federal (Valle Del Fuerte)", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mazatlan" + }, + { + "GMT": "8", + "airportId": 4411, + "codeIataAirport": "LMN", + "codeIataCity": "LMN", + "codeIcaoAirport": "WBGJ", + "codeIso2Country": "MY", + "geonameId": "7668670", + "latitudeAirport": 4.666667, + "longitudeAirport": 115.0, + "nameAirport": "Limbang", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "0", + "airportId": 4412, + "codeIataAirport": "LMO", + "codeIataCity": "LMO", + "codeIcaoAirport": "EGQS", + "codeIso2Country": "GB", + "geonameId": "6296641", + "latitudeAirport": 57.716667, + "longitudeAirport": -3.333333, + "nameAirport": "RAF Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 4413, + "codeIataAirport": "LMP", + "codeIataCity": "LMP", + "codeIcaoAirport": "LICD", + "codeIso2Country": "IT", + "geonameId": "6299552", + "latitudeAirport": 35.5, + "longitudeAirport": 12.616667, + "nameAirport": "Lampedusa", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "2", + "airportId": 4414, + "codeIataAirport": "LMQ", + "codeIataCity": "LMQ", + "codeIcaoAirport": "HLMB", + "codeIso2Country": "LY", + "geonameId": "7668298", + "latitudeAirport": 30.379444, + "longitudeAirport": 19.579445, + "nameAirport": "Marsa Brega", + "nameCountry": "Libya", + "phone": "", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "2", + "airportId": 4415, + "codeIataAirport": "LMR", + "codeIataCity": "LMR", + "codeIcaoAirport": "FALC", + "codeIso2Country": "ZA", + "geonameId": "7730072", + "latitudeAirport": -28.366667, + "longitudeAirport": 23.45, + "nameAirport": "Lime Acres", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-6", + "airportId": 4416, + "codeIataAirport": "LMS", + "codeIataCity": "LMS", + "codeIcaoAirport": "KLMS", + "codeIso2Country": "US", + "geonameId": "4434291", + "latitudeAirport": 33.11667, + "longitudeAirport": -89.05, + "nameAirport": "Winston County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 4417, + "codeIataAirport": "LMT", + "codeIataCity": "LMT", + "codeIcaoAirport": "KLMT", + "codeIso2Country": "US", + "geonameId": "5735238", + "latitudeAirport": 42.163055, + "longitudeAirport": -121.73583, + "nameAirport": "Kingsley Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 4418, + "codeIataAirport": "LMX", + "codeIataCity": "LMX", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8261069", + "latitudeAirport": 3.05, + "longitudeAirport": -77.55, + "nameAirport": "Lopez De Micay", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "airportId": 4419, + "codeIataAirport": "LMY", + "codeIataCity": "LMY", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731233", + "latitudeAirport": -6.833333, + "longitudeAirport": 141.36667, + "nameAirport": "Lake Murray", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "airportId": 4420, + "codeIataAirport": "LMZ", + "codeIataCity": "LMZ", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "1029248", + "latitudeAirport": -10.766667, + "longitudeAirport": 40.483334, + "nameAirport": "Palma", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-5", + "airportId": 4421, + "codeIataAirport": "LNA", + "codeIataCity": "PBI", + "codeIcaoAirport": "KLNA", + "codeIso2Country": "US", + "geonameId": "4167512", + "latitudeAirport": 26.716667, + "longitudeAirport": -80.05, + "nameAirport": "Palm Beach County Park", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "11", + "airportId": 4422, + "codeIataAirport": "LNB", + "codeIataCity": "LNB", + "codeIcaoAirport": "NVSM", + "codeIso2Country": "VU", + "geonameId": "7730712", + "latitudeAirport": -16.583332, + "longitudeAirport": 168.18333, + "nameAirport": "Lamen Bay", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "10", + "airportId": 4423, + "codeIataAirport": "LNC", + "codeIataCity": "LNC", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2092408", + "latitudeAirport": -6.366667, + "longitudeAirport": 147.36667, + "nameAirport": "Lengbati", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "airportId": 4424, + "codeIataAirport": "LND", + "codeIataCity": "LND", + "codeIcaoAirport": "KLND", + "codeIso2Country": "US", + "geonameId": "5830007", + "latitudeAirport": 42.833332, + "longitudeAirport": -108.73333, + "nameAirport": "Hunt Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "11", + "airportId": 4425, + "codeIataAirport": "LNE", + "codeIataCity": "LNE", + "codeIcaoAirport": "NVSO", + "codeIso2Country": "VU", + "geonameId": "7730714", + "latitudeAirport": -15.860106, + "longitudeAirport": 168.17007, + "nameAirport": "Lonorore", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "10", + "airportId": 4426, + "codeIataAirport": "LNF", + "codeIataCity": "LNF", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298836", + "latitudeAirport": -4.866667, + "longitudeAirport": 141.21666, + "nameAirport": "Munbil", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 4427, + "codeIataAirport": "LNG", + "codeIataCity": "LNG", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298822", + "latitudeAirport": -8.166667, + "longitudeAirport": 146.11667, + "nameAirport": "Lese", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9.30", + "airportId": 4428, + "codeIataAirport": "LNH", + "codeIataCity": "LNH", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298902", + "latitudeAirport": -20.95, + "longitudeAirport": 138.0, + "nameAirport": "Lake Nash", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-9", + "airportId": 4429, + "codeIataAirport": "LNI", + "codeIataCity": "LNI", + "codeIcaoAirport": "PALN", + "codeIso2Country": "US", + "geonameId": "5867754", + "latitudeAirport": 70.916664, + "longitudeAirport": -153.25, + "nameAirport": "Dew Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 4430, + "codeIataAirport": "LNJ", + "codeIataCity": "LNJ", + "codeIcaoAirport": "ZPLC", + "codeIso2Country": "CN", + "geonameId": "7910203", + "latitudeAirport": 23.744106, + "longitudeAirport": 100.026245, + "nameAirport": "Lincang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 4431, + "codeIataAirport": "LNK", + "codeIataCity": "LNK", + "codeIcaoAirport": "KLNK", + "codeIso2Country": "US", + "geonameId": "5072047", + "latitudeAirport": 40.846176, + "longitudeAirport": -96.75471, + "nameAirport": "Lincoln", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 4432, + "codeIataAirport": "LNM", + "codeIataCity": "LNM", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8261007", + "latitudeAirport": -7.216667, + "longitudeAirport": 146.21666, + "nameAirport": "Langimar", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 4433, + "codeIataAirport": "LNN", + "codeIataCity": "LNN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5161325", + "latitudeAirport": 41.63333, + "longitudeAirport": -81.416664, + "nameAirport": "Lost Nation", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 4434, + "codeIataAirport": "LNO", + "codeIataCity": "LNO", + "codeIcaoAirport": "YLEO", + "codeIso2Country": "AU", + "geonameId": "7668730", + "latitudeAirport": -28.879345, + "longitudeAirport": 121.316925, + "nameAirport": "Leonora", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "airportId": 4435, + "codeIataAirport": "LNP", + "codeIataCity": "LNP", + "codeIcaoAirport": "KLNP", + "codeIso2Country": "US", + "geonameId": "4829341", + "latitudeAirport": 36.983334, + "longitudeAirport": -82.566666, + "nameAirport": "Wise", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 4436, + "codeIataAirport": "LNR", + "codeIataCity": "LNR", + "codeIcaoAirport": "KLNR", + "codeIso2Country": "US", + "geonameId": "5276122", + "latitudeAirport": 43.183334, + "longitudeAirport": -90.2, + "nameAirport": "Tri County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 4437, + "codeIataAirport": "LNS", + "codeIataCity": "LNS", + "codeIcaoAirport": "KLNS", + "codeIso2Country": "US", + "geonameId": "5197080", + "latitudeAirport": 40.121113, + "longitudeAirport": -76.29972, + "nameAirport": "Lancaster", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 4438, + "codeIataAirport": "LNV", + "codeIataCity": "LNV", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7730410", + "latitudeAirport": -3.043223, + "longitudeAirport": 152.6272, + "nameAirport": "Lihir Island", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 4439, + "codeIataAirport": "LNX", + "codeIataCity": "LNX", + "codeIcaoAirport": "UUBS", + "codeIso2Country": "RU", + "geonameId": "7668550", + "latitudeAirport": 54.8, + "longitudeAirport": 32.05, + "nameAirport": "Smolensk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-10", + "airportId": 4440, + "codeIataAirport": "LNY", + "codeIataCity": "LNY", + "codeIcaoAirport": "PHNY", + "codeIso2Country": "US", + "geonameId": "5850057", + "latitudeAirport": 20.790085, + "longitudeAirport": -156.95049, + "nameAirport": "Lanai City", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "1", + "airportId": 4441, + "codeIataAirport": "LNZ", + "codeIataCity": "LNZ", + "codeIcaoAirport": "LOWL", + "codeIso2Country": "AT", + "geonameId": "6299670", + "latitudeAirport": 48.23987, + "longitudeAirport": 14.193345, + "nameAirport": "Blue Danube", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "10", + "airportId": 4442, + "codeIataAirport": "LOA", + "codeIataCity": "LOA", + "codeIcaoAirport": "YLOR", + "codeIso2Country": "AU", + "geonameId": "7731234", + "latitudeAirport": -19.0, + "longitudeAirport": 139.9, + "nameAirport": "Lorraine", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-4", + "airportId": 4443, + "codeIataAirport": "LOB", + "codeIataCity": "LOB", + "codeIcaoAirport": "SCAN", + "codeIso2Country": "CL", + "geonameId": "7730784", + "latitudeAirport": -29.966667, + "longitudeAirport": -71.53333, + "nameAirport": "Los Andes", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "9.30", + "airportId": 4444, + "codeIataAirport": "LOC", + "codeIataCity": "LOC", + "codeIcaoAirport": "YLOK", + "codeIso2Country": "AU", + "geonameId": "7731235", + "latitudeAirport": -33.55, + "longitudeAirport": 135.75, + "nameAirport": "Lock", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "11", + "airportId": 4445, + "codeIataAirport": "LOD", + "codeIataCity": "LOD", + "codeIcaoAirport": "NVSG", + "codeIso2Country": "VU", + "geonameId": "6354962", + "latitudeAirport": -15.316667, + "longitudeAirport": 167.96666, + "nameAirport": "Longana", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "7", + "airportId": 4446, + "codeIataAirport": "LOE", + "codeIataCity": "LOE", + "codeIcaoAirport": "VTUL", + "codeIso2Country": "TH", + "geonameId": "1609071", + "latitudeAirport": 17.45, + "longitudeAirport": 101.73333, + "nameAirport": "Loei", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "12", + "airportId": 4447, + "codeIataAirport": "LOF", + "codeIataCity": "LOF", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 7.916667, + "longitudeAirport": 169.91667, + "nameAirport": "Loen", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-8", + "airportId": 4448, + "codeIataAirport": "LOG", + "codeIataCity": "LOG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 46.11667, + "longitudeAirport": -122.88333, + "nameAirport": "Longview", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 4449, + "codeIataAirport": "LOH", + "codeIataCity": "LOH", + "codeIcaoAirport": "SELO", + "codeIso2Country": "EC", + "geonameId": "6300715", + "latitudeAirport": -3.993611, + "longitudeAirport": -79.37361, + "nameAirport": "Camilo Ponce Enríquez Airport", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-3", + "airportId": 4450, + "codeIataAirport": "LOI", + "codeIataCity": "LOI", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8260688", + "latitudeAirport": -27.159721, + "longitudeAirport": -49.542778, + "nameAirport": "Helmuth Baungartem", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "3", + "airportId": 4451, + "codeIataAirport": "LOK", + "codeIataCity": "LOK", + "codeIcaoAirport": "HKLO", + "codeIso2Country": "KE", + "geonameId": "6297313", + "latitudeAirport": 3.15, + "longitudeAirport": 35.6, + "nameAirport": "Lodwar", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-8", + "airportId": 4452, + "codeIataAirport": "LOL", + "codeIataCity": "LOL", + "codeIcaoAirport": "KLOL", + "codeIso2Country": "US", + "geonameId": "5705957", + "latitudeAirport": 40.058334, + "longitudeAirport": -118.566666, + "nameAirport": "Derby Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 4453, + "codeIataAirport": "LOM", + "codeIataCity": "LOM", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "4002224", + "latitudeAirport": 21.266666, + "longitudeAirport": -101.933334, + "nameAirport": "Francisco P. V. Y R.", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "1", + "airportId": 4454, + "codeIataAirport": "LOO", + "codeIataCity": "LOO", + "codeIcaoAirport": "DAUL", + "codeIso2Country": "DZ", + "geonameId": "6296393", + "latitudeAirport": 33.833332, + "longitudeAirport": 2.983333, + "nameAirport": "L'Mekrareg", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "8", + "airportId": 4455, + "codeIataAirport": "LOP", + "codeIataCity": "LOP", + "codeIcaoAirport": "WADL", + "codeIso2Country": "ID", + "geonameId": "8051259", + "latitudeAirport": -8.757322, + "longitudeAirport": 116.27667, + "nameAirport": "Lombok International", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "2", + "airportId": 4456, + "codeIataAirport": "LOQ", + "codeIataCity": "LOQ", + "codeIcaoAirport": "", + "codeIso2Country": "BW", + "geonameId": "933521", + "latitudeAirport": -25.190277, + "longitudeAirport": 25.681944, + "nameAirport": "Lobatse", + "nameCountry": "Botswana", + "phone": "", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "-6", + "airportId": 4457, + "codeIataAirport": "LOR", + "codeIataCity": "OZR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 31.5, + "longitudeAirport": -85.433334, + "nameAirport": "Lowe Army Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 4458, + "codeIataAirport": "LOS", + "codeIataCity": "LOS", + "codeIcaoAirport": "DNMM", + "codeIso2Country": "NG", + "geonameId": "2332459", + "latitudeAirport": 6.577871, + "longitudeAirport": 3.321178, + "nameAirport": "Murtala Muhammed", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-6", + "airportId": 4459, + "codeIataAirport": "LOT", + "codeIataCity": "LOT", + "codeIcaoAirport": "KLOT", + "codeIso2Country": "US", + "geonameId": "4899664", + "latitudeAirport": 41.583332, + "longitudeAirport": -88.05, + "nameAirport": "Lewis Lockport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 4460, + "codeIataAirport": "LOU", + "codeIataCity": "SDF", + "codeIcaoAirport": "KLOU", + "codeIso2Country": "US", + "geonameId": "4285281", + "latitudeAirport": 38.266666, + "longitudeAirport": -85.75, + "nameAirport": "Bowman Field Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Kentucky/Louisville" + }, + { + "GMT": "-6", + "airportId": 4461, + "codeIataAirport": "LOV", + "codeIataCity": "LOV", + "codeIcaoAirport": "MMMV", + "codeIso2Country": "MX", + "geonameId": "6299858", + "latitudeAirport": 26.9, + "longitudeAirport": -101.416664, + "nameAirport": "Monclova", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Monterrey" + }, + { + "GMT": "-5", + "airportId": 4462, + "codeIataAirport": "LOW", + "codeIataCity": "LOW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.0, + "longitudeAirport": -77.96667, + "nameAirport": "Louisa", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 4463, + "codeIataAirport": "LOX", + "codeIataCity": "LOX", + "codeIcaoAirport": "", + "codeIso2Country": "GT", + "geonameId": "0", + "latitudeAirport": 14.97, + "longitudeAirport": -90.17, + "nameAirport": "Los Tablones Airport", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "3", + "airportId": 4464, + "codeIataAirport": "LOY", + "codeIataCity": "LOY", + "codeIcaoAirport": "HKLY", + "codeIso2Country": "KE", + "geonameId": "7730615", + "latitudeAirport": 2.75, + "longitudeAirport": 36.716667, + "nameAirport": "Loyangalani", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-5", + "airportId": 4465, + "codeIataAirport": "LOZ", + "codeIataCity": "LOZ", + "codeIcaoAirport": "KLOZ", + "codeIso2Country": "US", + "geonameId": "6298569", + "latitudeAirport": 37.087223, + "longitudeAirport": -84.07694, + "nameAirport": "Corbin-london", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 4466, + "codeIataAirport": "LPA", + "codeIataCity": "LPA", + "codeIcaoAirport": "GCLP", + "codeIso2Country": "ES", + "geonameId": "6297188", + "latitudeAirport": 27.938944, + "longitudeAirport": -15.389351, + "nameAirport": "Gran Canaria", + "nameCountry": "Spain", + "phone": "902 404 704", + "timezone": "Atlantic/Canary" + }, + { + "GMT": "-4", + "airportId": 4467, + "codeIataAirport": "LPB", + "codeIataCity": "LPB", + "codeIcaoAirport": "SLLP", + "codeIso2Country": "BO", + "geonameId": "3913354", + "latitudeAirport": -16.50889, + "longitudeAirport": -68.1769, + "nameAirport": "El Alto", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-8", + "airportId": 4468, + "codeIataAirport": "LPC", + "codeIataCity": "LPC", + "codeIcaoAirport": "KLPC", + "codeIso2Country": "US", + "geonameId": "5367790", + "latitudeAirport": 34.63333, + "longitudeAirport": -120.45, + "nameAirport": "Lompoc Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 4469, + "codeIataAirport": "LPD", + "codeIataCity": "LPD", + "codeIcaoAirport": "SKLP", + "codeIso2Country": "CO", + "geonameId": "7668461", + "latitudeAirport": -1.3, + "longitudeAirport": -69.71667, + "nameAirport": "La Pedrera", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 4470, + "codeIataAirport": "LPE", + "codeIataCity": "LPE", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8299072", + "latitudeAirport": 3.733333, + "longitudeAirport": -76.21667, + "nameAirport": "La Primavera", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "airportId": 4471, + "codeIataAirport": "LPG", + "codeIataCity": "LPG", + "codeIcaoAirport": "SADL", + "codeIso2Country": "AR", + "geonameId": "6300523", + "latitudeAirport": -34.916668, + "longitudeAirport": -57.95, + "nameAirport": "La Plata", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "1", + "airportId": 4472, + "codeIataAirport": "LPI", + "codeIataCity": "LPI", + "codeIcaoAirport": "ESSL", + "codeIso2Country": "SE", + "geonameId": "6296817", + "latitudeAirport": 58.406944, + "longitudeAirport": 15.656944, + "nameAirport": "Linkoping", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-4", + "airportId": 4473, + "codeIataAirport": "LPJ", + "codeIataCity": "LPJ", + "codeIcaoAirport": "SVAS", + "codeIso2Country": "VE", + "geonameId": "7731236", + "latitudeAirport": 7.0, + "longitudeAirport": -67.666664, + "nameAirport": "Pijiguaos", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "3", + "airportId": 4474, + "codeIataAirport": "LPK", + "codeIataCity": "LPK", + "codeIcaoAirport": "UUOL", + "codeIso2Country": "RU", + "geonameId": "7668552", + "latitudeAirport": 52.61667, + "longitudeAirport": 39.6, + "nameAirport": "Lipetsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "0", + "airportId": 4475, + "codeIataAirport": "LPL", + "codeIataCity": "LPL", + "codeIcaoAirport": "EGGP", + "codeIso2Country": "GB", + "geonameId": "6296588", + "latitudeAirport": 53.337616, + "longitudeAirport": -2.854905, + "nameAirport": "Liverpool John Lennon", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "11", + "airportId": 4476, + "codeIataAirport": "LPM", + "codeIataCity": "LPM", + "codeIcaoAirport": "NVSL", + "codeIso2Country": "VU", + "geonameId": "6299970", + "latitudeAirport": -16.466667, + "longitudeAirport": 167.81667, + "nameAirport": "Lamap", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "10", + "airportId": 4477, + "codeIataAirport": "LPN", + "codeIataCity": "LPN", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298938", + "latitudeAirport": -6.58, + "longitudeAirport": 146.45, + "nameAirport": "Leron Plains", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 4478, + "codeIataAirport": "LPO", + "codeIataCity": "LPO", + "codeIcaoAirport": "KPPO", + "codeIso2Country": "US", + "geonameId": "4922456", + "latitudeAirport": 41.6, + "longitudeAirport": -86.71667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 4479, + "codeIataAirport": "LPP", + "codeIataCity": "LPP", + "codeIcaoAirport": "EFLP", + "codeIso2Country": "FI", + "geonameId": "6252050", + "latitudeAirport": 61.046112, + "longitudeAirport": 28.156668, + "nameAirport": "Lappeenranta", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "7", + "airportId": 4480, + "codeIataAirport": "LPQ", + "codeIataCity": "LPQ", + "codeIcaoAirport": "VLLB", + "codeIso2Country": "LA", + "geonameId": "6301107", + "latitudeAirport": 19.897055, + "longitudeAirport": 102.16371, + "nameAirport": "Luang Prabang", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-8", + "airportId": 4481, + "codeIataAirport": "LPS", + "codeIataCity": "LPS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5801681", + "latitudeAirport": 48.482777, + "longitudeAirport": -122.935555, + "nameAirport": "Lopez Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "7", + "airportId": 4482, + "codeIataAirport": "LPT", + "codeIataCity": "LPT", + "codeIcaoAirport": "VTCL", + "codeIso2Country": "TH", + "geonameId": "1152473", + "latitudeAirport": 18.274166, + "longitudeAirport": 99.507225, + "nameAirport": "Lampang", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "8", + "airportId": 4483, + "codeIataAirport": "LPU", + "codeIataCity": "LPU", + "codeIcaoAirport": "WRLP", + "codeIso2Country": "ID", + "geonameId": "7731237", + "latitudeAirport": 1.707091, + "longitudeAirport": 114.969986, + "nameAirport": "Long Apung", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-9", + "airportId": 4484, + "codeIataAirport": "LPW", + "codeIataCity": "LPW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299148", + "latitudeAirport": 56.38333, + "longitudeAirport": -134.83333, + "nameAirport": "Little Port Walter", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "2", + "airportId": 4485, + "codeIataAirport": "LPX", + "codeIataCity": "LPX", + "codeIcaoAirport": "EVLA", + "codeIso2Country": "LV", + "geonameId": "457953", + "latitudeAirport": 56.516666, + "longitudeAirport": 21.1, + "nameAirport": "Liepaja", + "nameCountry": "Latvia", + "phone": "", + "timezone": "Europe/Riga" + }, + { + "GMT": "1", + "airportId": 4486, + "codeIataAirport": "LPY", + "codeIataCity": "LPY", + "codeIcaoAirport": "LFHP", + "codeIso2Country": "FR", + "geonameId": "6299389", + "latitudeAirport": 45.083332, + "longitudeAirport": 3.766667, + "nameAirport": "Loudes", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 4487, + "codeIataAirport": "LQK", + "codeIataCity": "LQK", + "codeIcaoAirport": "KLQK", + "codeIso2Country": "US", + "geonameId": "4590955", + "latitudeAirport": 34.88333, + "longitudeAirport": -82.7, + "nameAirport": "Pickens", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 4488, + "codeIataAirport": "LQM", + "codeIataCity": "LQM", + "codeIcaoAirport": "SKLG", + "codeIso2Country": "CO", + "geonameId": "7668459", + "latitudeAirport": -0.3, + "longitudeAirport": -74.583336, + "nameAirport": "Puerto Leguizamo", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "4.30", + "airportId": 4489, + "codeIataAirport": "LQN", + "codeIataCity": "LQN", + "codeIcaoAirport": "OAQN", + "codeIso2Country": "AF", + "geonameId": "7668389", + "latitudeAirport": 34.95, + "longitudeAirport": 63.666668, + "nameAirport": "Qala Nau", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "8", + "airportId": 4490, + "codeIataAirport": "LQS", + "codeIataCity": "LQS", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 43.826687, + "longitudeAirport": 18.336065, + "nameAirport": "Lingshui Railway Station", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "airportId": 4491, + "codeIataAirport": "LRA", + "codeIataCity": "LRA", + "codeIcaoAirport": "LGLR", + "codeIso2Country": "GR", + "geonameId": "6299499", + "latitudeAirport": 39.65111, + "longitudeAirport": 22.463888, + "nameAirport": "Larisa", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "2", + "airportId": 4492, + "codeIataAirport": "LRB", + "codeIataCity": "LRB", + "codeIcaoAirport": "FXLR", + "codeIso2Country": "LS", + "geonameId": "7730535", + "latitudeAirport": -28.966667, + "longitudeAirport": 28.0, + "nameAirport": "Leribe", + "nameCountry": "Lesotho", + "phone": "", + "timezone": "Africa/Maseru" + }, + { + "GMT": "-6", + "airportId": 4493, + "codeIataAirport": "LRD", + "codeIataCity": "LRD", + "codeIcaoAirport": "KLRD", + "codeIso2Country": "US", + "geonameId": "4705349", + "latitudeAirport": 27.543667, + "longitudeAirport": -99.455124, + "nameAirport": "Laredo International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 4494, + "codeIataAirport": "LRE", + "codeIataCity": "LRE", + "codeIcaoAirport": "YBLR", + "codeIso2Country": "AU", + "geonameId": "6301297", + "latitudeAirport": -23.439474, + "longitudeAirport": 144.27147, + "nameAirport": "Longreach", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "airportId": 4495, + "codeIataAirport": "LRF", + "codeIataCity": "LRF", + "codeIcaoAirport": "KLRF", + "codeIso2Country": "US", + "geonameId": "4128589", + "latitudeAirport": 34.916668, + "longitudeAirport": -92.15, + "nameAirport": "Little Rock AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5", + "airportId": 4496, + "codeIataAirport": "LRG", + "codeIataCity": "LRG", + "codeIcaoAirport": "OPLL", + "codeIso2Country": "PK", + "geonameId": "7730752", + "latitudeAirport": 27.85, + "longitudeAirport": 65.083336, + "nameAirport": "Lora Lai", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "1", + "airportId": 4497, + "codeIataAirport": "LRH", + "codeIataCity": "LRH", + "codeIcaoAirport": "LFBH", + "codeIso2Country": "FR", + "geonameId": "6299371", + "latitudeAirport": 46.180557, + "longitudeAirport": -1.185833, + "nameAirport": "Laleu", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 4498, + "codeIataAirport": "LRI", + "codeIataCity": "LRI", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8299081", + "latitudeAirport": 9.033333, + "longitudeAirport": -75.7, + "nameAirport": "Lorica", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 4499, + "codeIataAirport": "LRJ", + "codeIataCity": "LRJ", + "codeIcaoAirport": "KLRJ", + "codeIso2Country": "US", + "geonameId": "4864345", + "latitudeAirport": 42.8, + "longitudeAirport": -96.166664, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 4500, + "codeIataAirport": "LRK", + "codeIataCity": "LRK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299071", + "latitudeAirport": -16.12, + "longitudeAirport": -68.32, + "nameAirport": "Coast Guard", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "0", + "airportId": 4501, + "codeIataAirport": "LRL", + "codeIataCity": "LRL", + "codeIcaoAirport": "DXNG", + "codeIso2Country": "TG", + "geonameId": "6296479", + "latitudeAirport": 9.833333, + "longitudeAirport": 1.133333, + "nameAirport": "Niamtougou", + "nameCountry": "Togo", + "phone": "", + "timezone": "Africa/Lome" + }, + { + "GMT": "-4", + "airportId": 4502, + "codeIataAirport": "LRM", + "codeIataCity": "LRM", + "codeIcaoAirport": "MDLR", + "codeIso2Country": "DO", + "geonameId": "3500958", + "latitudeAirport": 18.416668, + "longitudeAirport": -68.9, + "nameAirport": "Casa de Campo International", + "nameCountry": "Dominican Republic", + "phone": "", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "-8", + "airportId": 4503, + "codeIataAirport": "LRN", + "codeIataCity": "MWH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 47.13333, + "longitudeAirport": -119.28333, + "nameAirport": "Larson AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 4504, + "codeIataAirport": "LRQ", + "codeIataCity": "LRQ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298678", + "latitudeAirport": 56.216667, + "longitudeAirport": -101.0, + "nameAirport": "Laurie River", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "3.30", + "airportId": 4505, + "codeIataAirport": "LRR", + "codeIataCity": "LRR", + "codeIcaoAirport": "OISL", + "codeIso2Country": "IR", + "geonameId": "6300073", + "latitudeAirport": 27.66969, + "longitudeAirport": 54.38276, + "nameAirport": "Lar Airport", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "2", + "airportId": 4506, + "codeIataAirport": "LRS", + "codeIataCity": "LRS", + "codeIcaoAirport": "LGLE", + "codeIso2Country": "GR", + "geonameId": "6453425", + "latitudeAirport": 37.516666, + "longitudeAirport": 26.783333, + "nameAirport": "Leros", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "1", + "airportId": 4507, + "codeIataAirport": "LRT", + "codeIataCity": "LRT", + "codeIcaoAirport": "LFRH", + "codeIso2Country": "FR", + "geonameId": "6301773", + "latitudeAirport": 47.75374, + "longitudeAirport": -3.436394, + "nameAirport": "Lann Bihoue", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-7", + "airportId": 4508, + "codeIataAirport": "LRU", + "codeIataCity": "LRU", + "codeIcaoAirport": "KLRU", + "codeIso2Country": "US", + "geonameId": "5475361", + "latitudeAirport": 32.290833, + "longitudeAirport": -106.92167, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-4", + "airportId": 4509, + "codeIataAirport": "LRV", + "codeIataCity": "LRV", + "codeIcaoAirport": "SVRS", + "codeIso2Country": "VE", + "geonameId": "7668481", + "latitudeAirport": 11.833333, + "longitudeAirport": -66.75, + "nameAirport": "Los Roques", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "10", + "airportId": 4510, + "codeIataAirport": "LSA", + "codeIataCity": "LSA", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7730408", + "latitudeAirport": -8.363889, + "longitudeAirport": 151.025, + "nameAirport": "Losuia", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "airportId": 4511, + "codeIataAirport": "LSB", + "codeIataCity": "LSB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5476799", + "latitudeAirport": 32.416668, + "longitudeAirport": -108.666664, + "nameAirport": "Lordsburg", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-4", + "airportId": 4512, + "codeIataAirport": "LSC", + "codeIataCity": "LSC", + "codeIcaoAirport": "SCSE", + "codeIso2Country": "CL", + "geonameId": "6300706", + "latitudeAirport": -29.917297, + "longitudeAirport": -71.20369, + "nameAirport": "La Florida", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-5", + "airportId": 4513, + "codeIataAirport": "LSD", + "codeIataCity": "LEX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.0317136, + "longitudeAirport": -84.4951359, + "nameAirport": "Blue Grass Station Army Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 4514, + "codeIataAirport": "LSE", + "codeIataCity": "LSE", + "codeIcaoAirport": "KLSE", + "codeIso2Country": "US", + "geonameId": "5258965", + "latitudeAirport": 43.875244, + "longitudeAirport": -91.264336, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 4515, + "codeIataAirport": "LSF", + "codeIataCity": "LSF", + "codeIcaoAirport": "KLSF", + "codeIso2Country": "US", + "geonameId": "4195789", + "latitudeAirport": 32.3405, + "longitudeAirport": -84.986046, + "nameAirport": "Lawson AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "6.30", + "airportId": 4516, + "codeIataAirport": "LSH", + "codeIataCity": "LSH", + "codeIcaoAirport": "VYLS", + "codeIso2Country": "MM", + "geonameId": "1314759", + "latitudeAirport": 22.966667, + "longitudeAirport": 97.75, + "nameAirport": "Lashio", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "0", + "airportId": 4517, + "codeIataAirport": "LSI", + "codeIataCity": "SDZ", + "codeIcaoAirport": "EGPB", + "codeIso2Country": "GB", + "geonameId": "6296622", + "latitudeAirport": 59.877888, + "longitudeAirport": -1.287111, + "nameAirport": "Sumburgh", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "10", + "airportId": 4518, + "codeIataAirport": "LSJ", + "codeIataCity": "LSJ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260855", + "latitudeAirport": -5.333333, + "longitudeAirport": 147.08333, + "nameAirport": "Long Island", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "airportId": 4519, + "codeIataAirport": "LSK", + "codeIataCity": "LSK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.788082, + "longitudeAirport": -104.445526, + "nameAirport": "Lusk", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 4520, + "codeIataAirport": "LSL", + "codeIataCity": "LSL", + "codeIcaoAirport": "MRLC", + "codeIso2Country": "CR", + "geonameId": "7730111", + "latitudeAirport": 11.033333, + "longitudeAirport": -84.7, + "nameAirport": "Los Chiles", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "8", + "airportId": 4521, + "codeIataAirport": "LSM", + "codeIataCity": "LSM", + "codeIcaoAirport": "WBGD", + "codeIso2Country": "MY", + "geonameId": "7731238", + "latitudeAirport": 4.002778, + "longitudeAirport": 118.00833, + "nameAirport": "Lawas", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-8", + "airportId": 4522, + "codeIataAirport": "LSN", + "codeIataCity": "LSN", + "codeIcaoAirport": "KLSN", + "codeIso2Country": "US", + "geonameId": "5368467", + "latitudeAirport": 37.066666, + "longitudeAirport": -120.85, + "nameAirport": "Los Banos", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 4523, + "codeIataAirport": "LSO", + "codeIataCity": "LSO", + "codeIcaoAirport": "LFOO", + "codeIso2Country": "FR", + "geonameId": "2999683", + "latitudeAirport": 46.5, + "longitudeAirport": -1.783333, + "nameAirport": "Talmont", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-4", + "airportId": 4524, + "codeIataAirport": "LSP", + "codeIataCity": "LSP", + "codeIcaoAirport": "SVJC", + "codeIso2Country": "VE", + "geonameId": "6300855", + "latitudeAirport": 11.777155, + "longitudeAirport": -70.14961, + "nameAirport": "Josefa Camejo", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-4", + "airportId": 4525, + "codeIataAirport": "LSQ", + "codeIataCity": "LSQ", + "codeIcaoAirport": "SCGE", + "codeIso2Country": "CL", + "geonameId": "8261056", + "latitudeAirport": -37.3975, + "longitudeAirport": -72.422775, + "nameAirport": "Los Angeles", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-9", + "airportId": 4526, + "codeIataAirport": "LSR", + "codeIataCity": "LSR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5867916", + "latitudeAirport": 59.55, + "longitudeAirport": -139.73334, + "nameAirport": "Lost River", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "-4", + "airportId": 4527, + "codeIataAirport": "LSS", + "codeIataCity": "LSS", + "codeIcaoAirport": "", + "codeIso2Country": "GP", + "geonameId": "3578347", + "latitudeAirport": 15.866944, + "longitudeAirport": -61.576668, + "nameAirport": "Terre-de-Haut", + "nameCountry": "Guadeloupe", + "phone": "", + "timezone": "America/Guadeloupe" + }, + { + "GMT": "10", + "airportId": 4528, + "codeIataAirport": "LST", + "codeIataCity": "LST", + "codeIcaoAirport": "YMLT", + "codeIso2Country": "AU", + "geonameId": "6301314", + "latitudeAirport": -41.54351, + "longitudeAirport": 147.20532, + "nameAirport": "Launceston", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Hobart" + }, + { + "GMT": "8", + "airportId": 4529, + "codeIataAirport": "LSU", + "codeIataCity": "LSU", + "codeIcaoAirport": "WBGU", + "codeIso2Country": "MY", + "geonameId": "7731239", + "latitudeAirport": 4.55, + "longitudeAirport": 115.5, + "nameAirport": "Long Sukang", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-8", + "airportId": 4530, + "codeIataAirport": "LSV", + "codeIataCity": "LAS", + "codeIcaoAirport": "KLSV", + "codeIso2Country": "US", + "geonameId": "5506960", + "latitudeAirport": 36.3, + "longitudeAirport": -115.8, + "nameAirport": "Nellis AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "7", + "airportId": 4531, + "codeIataAirport": "LSW", + "codeIataCity": "LSW", + "codeIcaoAirport": "WITM", + "codeIso2Country": "ID", + "geonameId": "6301250", + "latitudeAirport": 5.166667, + "longitudeAirport": 97.166664, + "nameAirport": "Lhoksumawe", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "7", + "airportId": 4532, + "codeIataAirport": "LSX", + "codeIataCity": "LSX", + "codeIcaoAirport": "WITL", + "codeIso2Country": "ID", + "geonameId": "7730237", + "latitudeAirport": 5.066667, + "longitudeAirport": 97.316666, + "nameAirport": "Lhok Sukon", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "10", + "airportId": 4533, + "codeIataAirport": "LSY", + "codeIataCity": "LSY", + "codeIcaoAirport": "YLIS", + "codeIso2Country": "AU", + "geonameId": "7668733", + "latitudeAirport": -28.836653, + "longitudeAirport": 153.26337, + "nameAirport": "Lismore", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "airportId": 4534, + "codeIataAirport": "LSZ", + "codeIataCity": "LSZ", + "codeIcaoAirport": "LDLO", + "codeIso2Country": "HR", + "geonameId": "3217445", + "latitudeAirport": 44.566944, + "longitudeAirport": 14.385833, + "nameAirport": "Losinj Airport", + "nameCountry": "Croatia", + "phone": "", + "timezone": "Europe/Zagreb" + }, + { + "GMT": "2", + "airportId": 4535, + "codeIataAirport": "LTA", + "codeIataCity": "LTA", + "codeIcaoAirport": "FATZ", + "codeIso2Country": "ZA", + "geonameId": "6296932", + "latitudeAirport": -23.833332, + "longitudeAirport": 30.15, + "nameAirport": "Letaba", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "10", + "airportId": 4536, + "codeIataAirport": "LTB", + "codeIataCity": "LTB", + "codeIcaoAirport": "YLTV", + "codeIso2Country": "AU", + "geonameId": "7668737", + "latitudeAirport": -41.233334, + "longitudeAirport": 146.4, + "nameAirport": "Latrobe", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Hobart" + }, + { + "GMT": "1", + "airportId": 4537, + "codeIataAirport": "LTC", + "codeIataCity": "LTC", + "codeIcaoAirport": "", + "codeIso2Country": "TD", + "geonameId": "0", + "latitudeAirport": 9.416667, + "longitudeAirport": 16.3, + "nameAirport": "Lai", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "2", + "airportId": 4538, + "codeIataAirport": "LTD", + "codeIataCity": "LTD", + "codeIcaoAirport": "HLTD", + "codeIso2Country": "LY", + "geonameId": "6297333", + "latitudeAirport": 30.129168, + "longitudeAirport": 9.509722, + "nameAirport": "Ghadames", + "nameCountry": "Libya", + "phone": "", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "10", + "airportId": 4539, + "codeIataAirport": "LTF", + "codeIataCity": "LTF", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2092443", + "latitudeAirport": -2.833333, + "longitudeAirport": 141.61667, + "nameAirport": "Leitre", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5.45", + "airportId": 4540, + "codeIataAirport": "LTG", + "codeIataCity": "LTG", + "codeIcaoAirport": "VNLT", + "codeIso2Country": "NP", + "geonameId": "7731240", + "latitudeAirport": 28.233334, + "longitudeAirport": 85.6, + "nameAirport": "Langtang", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "7", + "airportId": 4541, + "codeIataAirport": "LTI", + "codeIataCity": "LTI", + "codeIcaoAirport": "ZMAT", + "codeIso2Country": "MN", + "geonameId": "7668793", + "latitudeAirport": 46.65, + "longitudeAirport": 96.416664, + "nameAirport": "Altai", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Hovd" + }, + { + "GMT": "2", + "airportId": 4542, + "codeIataAirport": "LTK", + "codeIataCity": "LTK", + "codeIcaoAirport": "OSLK", + "codeIso2Country": "SY", + "geonameId": "6300131", + "latitudeAirport": 35.407352, + "longitudeAirport": 35.943993, + "nameAirport": "Latakia", + "nameCountry": "Syria", + "phone": "", + "timezone": "Asia/Damascus" + }, + { + "GMT": "1", + "airportId": 4543, + "codeIataAirport": "LTL", + "codeIataCity": "LTL", + "codeIcaoAirport": "FOOR", + "codeIso2Country": "GA", + "geonameId": "6297075", + "latitudeAirport": -0.833333, + "longitudeAirport": 12.716667, + "nameAirport": "Lastourville", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-4", + "airportId": 4544, + "codeIataAirport": "LTM", + "codeIataCity": "LTM", + "codeIcaoAirport": "SYLT", + "codeIso2Country": "GY", + "geonameId": "7730181", + "latitudeAirport": 3.371667, + "longitudeAirport": -59.79, + "nameAirport": "Lethem", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "0", + "airportId": 4545, + "codeIataAirport": "LTN", + "codeIataCity": "LON", + "codeIcaoAirport": "EGGW", + "codeIso2Country": "GB", + "geonameId": "6296589", + "latitudeAirport": 51.87977, + "longitudeAirport": -0.376232, + "nameAirport": "Luton Airport", + "nameCountry": "United Kingdom", + "phone": "+44(0) 1582 4", + "timezone": "Europe/London" + }, + { + "GMT": "-7", + "airportId": 4546, + "codeIataAirport": "LTO", + "codeIataCity": "LTO", + "codeIcaoAirport": "MMLT", + "codeIso2Country": "MX", + "geonameId": "6299853", + "latitudeAirport": 25.983334, + "longitudeAirport": -111.35, + "nameAirport": "Loreto", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mazatlan" + }, + { + "GMT": "10", + "airportId": 4547, + "codeIataAirport": "LTP", + "codeIataCity": "LTP", + "codeIcaoAirport": "YLHS", + "codeIso2Country": "AU", + "geonameId": "7731241", + "latitudeAirport": -30.283333, + "longitudeAirport": 138.35, + "nameAirport": "Lyndhurst", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "airportId": 4548, + "codeIataAirport": "LTQ", + "codeIataCity": "LTQ", + "codeIcaoAirport": "LFAT", + "codeIso2Country": "FR", + "geonameId": "6299364", + "latitudeAirport": 50.515, + "longitudeAirport": 1.628056, + "nameAirport": "Le Touquet", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "0", + "airportId": 4549, + "codeIataAirport": "LTR", + "codeIataCity": "LTR", + "codeIcaoAirport": "EILT", + "codeIso2Country": "IE", + "geonameId": "7730482", + "latitudeAirport": 54.95, + "longitudeAirport": -7.733333, + "nameAirport": "Letterkenny", + "nameCountry": "Ireland", + "phone": "", + "timezone": "Europe/Dublin" + }, + { + "GMT": "-6", + "airportId": 4550, + "codeIataAirport": "LTS", + "codeIataCity": "LTS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4529292", + "latitudeAirport": 34.696667, + "longitudeAirport": -99.33806, + "nameAirport": "Altus AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 4551, + "codeIataAirport": "LTT", + "codeIataCity": "LTT", + "codeIcaoAirport": "LFTZ", + "codeIso2Country": "FR", + "geonameId": "6452627", + "latitudeAirport": 43.283333, + "longitudeAirport": 6.633333, + "nameAirport": "La Mole", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "5.30", + "airportId": 4552, + "codeIataAirport": "LTU", + "codeIataCity": "LTU", + "codeIcaoAirport": "", + "codeIso2Country": "IN", + "geonameId": "8260967", + "latitudeAirport": 18.409552, + "longitudeAirport": 76.46629, + "nameAirport": "Latur", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "airportId": 4553, + "codeIataAirport": "LTV", + "codeIataCity": "LTV", + "codeIcaoAirport": "YLOV", + "codeIso2Country": "AU", + "geonameId": "7731242", + "latitudeAirport": -17.05, + "longitudeAirport": 141.38333, + "nameAirport": "Lotusvale", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 4554, + "codeIataAirport": "LTW", + "codeIataCity": "LTW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4368301", + "latitudeAirport": 38.25, + "longitudeAirport": -76.666664, + "nameAirport": "St Marys County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 4555, + "codeIataAirport": "LTX", + "codeIataCity": "LTX", + "codeIcaoAirport": "", + "codeIso2Country": "EC", + "geonameId": "6300716", + "latitudeAirport": -0.901111, + "longitudeAirport": -78.6025, + "nameAirport": "Cotopaxi International", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "1", + "airportId": 4556, + "codeIataAirport": "LTZ", + "codeIataCity": "SUF", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 38.91, + "longitudeAirport": 16.24, + "nameAirport": "Lamezia Terme Central Railway Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "5.45", + "airportId": 4557, + "codeIataAirport": "LUA", + "codeIataCity": "LUA", + "codeIcaoAirport": "VNLK", + "codeIso2Country": "NP", + "geonameId": "7668622", + "latitudeAirport": 27.683332, + "longitudeAirport": 86.73333, + "nameAirport": "Lukla", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-4", + "airportId": 4558, + "codeIataAirport": "LUB", + "codeIataCity": "LUB", + "codeIcaoAirport": "SYLP", + "codeIso2Country": "GY", + "geonameId": "7731243", + "latitudeAirport": 2.4, + "longitudeAirport": -59.433334, + "nameAirport": "Lumid Pau", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "12", + "airportId": 4559, + "codeIataAirport": "LUC", + "codeIataCity": "LUC", + "codeIcaoAirport": "NFNH", + "codeIso2Country": "FJ", + "geonameId": "7730689", + "latitudeAirport": -16.75, + "longitudeAirport": 179.41667, + "nameAirport": "Laucala Island", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "2", + "airportId": 4560, + "codeIataAirport": "LUD", + "codeIataCity": "LUD", + "codeIcaoAirport": "FYLZ", + "codeIso2Country": "NA", + "geonameId": "3355674", + "latitudeAirport": -26.68639, + "longitudeAirport": 15.243889, + "nameAirport": "Luderitz", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "1", + "airportId": 4561, + "codeIataAirport": "LUE", + "codeIataCity": "LUE", + "codeIcaoAirport": "", + "codeIso2Country": "SK", + "geonameId": "0", + "latitudeAirport": 48.333332, + "longitudeAirport": 19.666668, + "nameAirport": "Lucenec", + "nameCountry": "Slovakia", + "phone": "", + "timezone": "Europe/Bratislava" + }, + { + "GMT": "-7", + "airportId": 4562, + "codeIataAirport": "LUF", + "codeIataCity": "PHX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.61667, + "longitudeAirport": -111.916664, + "nameAirport": "Luke AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "1", + "airportId": 4563, + "codeIataAirport": "LUG", + "codeIataCity": "LUG", + "codeIcaoAirport": "LSZA", + "codeIso2Country": "CH", + "geonameId": "6299719", + "latitudeAirport": 46.016666, + "longitudeAirport": 8.966667, + "nameAirport": "Lugano", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "5.30", + "airportId": 4564, + "codeIataAirport": "LUH", + "codeIataCity": "LUH", + "codeIcaoAirport": "VILD", + "codeIso2Country": "IN", + "geonameId": "7668605", + "latitudeAirport": 30.9, + "longitudeAirport": 75.85, + "nameAirport": "Ludhiana Sahnewal Airport", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-6", + "airportId": 4565, + "codeIataAirport": "LUI", + "codeIataCity": "LUI", + "codeIcaoAirport": "", + "codeIso2Country": "HN", + "geonameId": "8298733", + "latitudeAirport": 13.333333, + "longitudeAirport": -87.85, + "nameAirport": "La Union", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-5", + "airportId": 4566, + "codeIataAirport": "LUK", + "codeIataCity": "CVG", + "codeIcaoAirport": "KLUK", + "codeIso2Country": "US", + "geonameId": "6298580", + "latitudeAirport": 39.033333, + "longitudeAirport": -84.666664, + "nameAirport": "Cincinnati Municipal-Lunken Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 4567, + "codeIataAirport": "LUL", + "codeIataCity": "LUL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4433039", + "latitudeAirport": 31.666668, + "longitudeAirport": -89.166664, + "nameAirport": "Hesler-Noble Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 4568, + "codeIataAirport": "LUM", + "codeIataCity": "LUM", + "codeIcaoAirport": "ZPLX", + "codeIso2Country": "CN", + "geonameId": "7730293", + "latitudeAirport": 24.40528, + "longitudeAirport": 98.5319, + "nameAirport": "Mangshi", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "airportId": 4569, + "codeIataAirport": "LUN", + "codeIataCity": "LUN", + "codeIcaoAirport": "FLLS", + "codeIso2Country": "ZM", + "geonameId": "6297016", + "latitudeAirport": -15.325017, + "longitudeAirport": 28.445747, + "nameAirport": "Lusaka", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "1", + "airportId": 4570, + "codeIataAirport": "LUO", + "codeIataCity": "LUO", + "codeIcaoAirport": "FNUE", + "codeIso2Country": "AO", + "geonameId": "7668258", + "latitudeAirport": -11.5, + "longitudeAirport": 20.166668, + "nameAirport": "Luena", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-10", + "airportId": 4571, + "codeIataAirport": "LUP", + "codeIataCity": "LUP", + "codeIcaoAirport": "PHLU", + "codeIso2Country": "US", + "geonameId": "5847787", + "latitudeAirport": 21.211111, + "longitudeAirport": -156.97444, + "nameAirport": "Kalaupapa", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "-3", + "airportId": 4572, + "codeIataAirport": "LUQ", + "codeIataCity": "LUQ", + "codeIcaoAirport": "SAOU", + "codeIso2Country": "AR", + "geonameId": "6300545", + "latitudeAirport": -33.274445, + "longitudeAirport": -66.35861, + "nameAirport": "San Luis", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/San_Luis" + }, + { + "GMT": "-9", + "airportId": 4573, + "codeIataAirport": "LUR", + "codeIataCity": "LUR", + "codeIcaoAirport": "PALU", + "codeIso2Country": "US", + "geonameId": "5858623", + "latitudeAirport": 68.87583, + "longitudeAirport": -166.10695, + "nameAirport": "Cape Lisburne", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "1", + "airportId": 4574, + "codeIataAirport": "LUS", + "codeIataCity": "LUS", + "codeIcaoAirport": "FZCE", + "codeIso2Country": "CD", + "geonameId": "7730557", + "latitudeAirport": -4.804654, + "longitudeAirport": 18.718885, + "nameAirport": "Lusanga", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "10", + "airportId": 4575, + "codeIataAirport": "LUT", + "codeIataCity": "LUT", + "codeIcaoAirport": "YLRS", + "codeIso2Country": "AU", + "geonameId": "7731244", + "latitudeAirport": -15.433333, + "longitudeAirport": 144.81667, + "nameAirport": "Laura Station", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 4576, + "codeIataAirport": "LUU", + "codeIataCity": "LUU", + "codeIcaoAirport": "YLRA", + "codeIso2Country": "AU", + "geonameId": "7731245", + "latitudeAirport": -15.666667, + "longitudeAirport": 144.16667, + "nameAirport": "Laura", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "9", + "airportId": 4577, + "codeIataAirport": "LUV", + "codeIataCity": "LUV", + "codeIcaoAirport": "WAPL", + "codeIso2Country": "ID", + "geonameId": "7668669", + "latitudeAirport": -5.666667, + "longitudeAirport": 132.71666, + "nameAirport": "Langgur", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "airportId": 4578, + "codeIataAirport": "LUW", + "codeIataCity": "LUW", + "codeIcaoAirport": "WAMW", + "codeIso2Country": "ID", + "geonameId": "6301198", + "latitudeAirport": -0.933333, + "longitudeAirport": 122.78333, + "nameAirport": "Bubung / Aminuddin Amir", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "1", + "airportId": 4579, + "codeIataAirport": "LUX", + "codeIataCity": "LUX", + "codeIcaoAirport": "ELLX", + "codeIso2Country": "LU", + "geonameId": "6296718", + "latitudeAirport": 49.63111, + "longitudeAirport": 6.209539, + "nameAirport": "Findel", + "nameCountry": "Luxembourg", + "phone": "", + "timezone": "Europe/Luxembourg" + }, + { + "GMT": "1", + "airportId": 4580, + "codeIataAirport": "LUZ", + "codeIataCity": "LUZ", + "codeIcaoAirport": "", + "codeIso2Country": "PL", + "geonameId": "765876", + "latitudeAirport": 51.231945, + "longitudeAirport": 22.690277, + "nameAirport": "Lushan", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "1", + "airportId": 4581, + "codeIataAirport": "LVA", + "codeIataCity": "LVA", + "codeIcaoAirport": "LFOV", + "codeIso2Country": "FR", + "geonameId": "6694637", + "latitudeAirport": 48.066666, + "longitudeAirport": -0.766667, + "nameAirport": "Entrammes", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-3", + "airportId": 4582, + "codeIataAirport": "LVB", + "codeIataCity": "LVB", + "codeIcaoAirport": "SNLB", + "codeIso2Country": "BR", + "geonameId": "7731247", + "latitudeAirport": -30.833332, + "longitudeAirport": -55.61667, + "nameAirport": "Dos Galpoes", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-9", + "airportId": 4583, + "codeIataAirport": "LVD", + "codeIataCity": "LVD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5867390", + "latitudeAirport": 61.35, + "longitudeAirport": -155.46666, + "nameAirport": "Lime Village", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 4584, + "codeIataAirport": "LVI", + "codeIataCity": "LVI", + "codeIcaoAirport": "FLLI", + "codeIso2Country": "ZM", + "geonameId": "910111", + "latitudeAirport": -17.820557, + "longitudeAirport": 25.822222, + "nameAirport": "Livingstone", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-8", + "airportId": 4585, + "codeIataAirport": "LVK", + "codeIataCity": "LVK", + "codeIcaoAirport": "KLVK", + "codeIso2Country": "US", + "geonameId": "5367440", + "latitudeAirport": 37.69389, + "longitudeAirport": -121.81722, + "nameAirport": "Livermore", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 4586, + "codeIataAirport": "LVL", + "codeIataCity": "LVL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 36.75, + "longitudeAirport": -77.833336, + "nameAirport": "Lawrenceville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 4587, + "codeIataAirport": "LVM", + "codeIataCity": "LVM", + "codeIcaoAirport": "KLVM", + "codeIso2Country": "US", + "geonameId": "5666608", + "latitudeAirport": 45.666668, + "longitudeAirport": -110.566666, + "nameAirport": "Mission Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "airportId": 4588, + "codeIataAirport": "LVO", + "codeIataCity": "LVO", + "codeIcaoAirport": "YLTN", + "codeIso2Country": "AU", + "geonameId": "7668736", + "latitudeAirport": -28.633333, + "longitudeAirport": 122.36667, + "nameAirport": "Laverton", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "3.30", + "airportId": 4589, + "codeIataAirport": "LVP", + "codeIataCity": "LVP", + "codeIcaoAirport": "", + "codeIso2Country": "IR", + "geonameId": "0", + "latitudeAirport": 26.810278, + "longitudeAirport": 53.35611, + "nameAirport": "Lavan", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-4", + "airportId": 4590, + "codeIataAirport": "LVR", + "codeIataCity": "LVR", + "codeIcaoAirport": "SWFE", + "codeIso2Country": "BR", + "geonameId": "8260746", + "latitudeAirport": -13.03684, + "longitudeAirport": -55.94835, + "nameAirport": "Mun. Do Bom Futuro", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-7", + "airportId": 4591, + "codeIataAirport": "LVS", + "codeIataCity": "LVS", + "codeIcaoAirport": "KLVS", + "codeIso2Country": "US", + "geonameId": "5475446", + "latitudeAirport": 35.6, + "longitudeAirport": -105.21667, + "nameAirport": "Las Vegas", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "airportId": 4592, + "codeIataAirport": "LWA", + "codeIataCity": "LWA", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "8299267", + "latitudeAirport": 17.35, + "longitudeAirport": 121.183334, + "nameAirport": "Lwbak", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-5", + "airportId": 4593, + "codeIataAirport": "LWB", + "codeIataCity": "LWB", + "codeIcaoAirport": "KLWB", + "codeIso2Country": "US", + "geonameId": "4812015", + "latitudeAirport": 37.859722, + "longitudeAirport": -80.39861, + "nameAirport": "Greenbrier Valley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 4594, + "codeIataAirport": "LWC", + "codeIataCity": "LWC", + "codeIcaoAirport": "KLWC", + "codeIso2Country": "US", + "geonameId": "4274285", + "latitudeAirport": 39.009167, + "longitudeAirport": -95.2175, + "nameAirport": "Lawrence", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 4595, + "codeIataAirport": "LWE", + "codeIataCity": "LWE", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731248", + "latitudeAirport": -8.5, + "longitudeAirport": 123.36667, + "nameAirport": "Lewoleba", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "10", + "airportId": 4596, + "codeIataAirport": "LWH", + "codeIataCity": "LWH", + "codeIcaoAirport": "YLAH", + "codeIso2Country": "AU", + "geonameId": "7731249", + "latitudeAirport": -18.583332, + "longitudeAirport": 138.58333, + "nameAirport": "Lawn Hill", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 4597, + "codeIataAirport": "LWI", + "codeIataCity": "LWI", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2092132", + "latitudeAirport": -6.316667, + "longitudeAirport": 146.58333, + "nameAirport": "Lowai", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 4598, + "codeIataAirport": "LWK", + "codeIataCity": "SDZ", + "codeIcaoAirport": "EGET", + "codeIso2Country": "GB", + "geonameId": "7668202", + "latitudeAirport": 60.15, + "longitudeAirport": -1.15, + "nameAirport": "Lerwick/Tingwall", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-8", + "airportId": 4599, + "codeIataAirport": "LWL", + "codeIataCity": "LWL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.11667, + "longitudeAirport": -114.96667, + "nameAirport": "Harriet Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 4600, + "codeIataAirport": "LWM", + "codeIataCity": "LWM", + "codeIcaoAirport": "KLWM", + "codeIso2Country": "US", + "geonameId": "4941740", + "latitudeAirport": 42.7175, + "longitudeAirport": -71.1225, + "nameAirport": "Lawrence", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "4", + "airportId": 4601, + "codeIataAirport": "LWN", + "codeIataCity": "LWN", + "codeIcaoAirport": "UDSG", + "codeIso2Country": "AM", + "geonameId": "6453423", + "latitudeAirport": 40.716667, + "longitudeAirport": 43.833332, + "nameAirport": "Gyoumri", + "nameCountry": "Armenia", + "phone": "", + "timezone": "Asia/Yerevan" + }, + { + "GMT": "2", + "airportId": 4602, + "codeIataAirport": "LWO", + "codeIataCity": "LWO", + "codeIcaoAirport": "UKLL", + "codeIso2Country": "UA", + "geonameId": "6300963", + "latitudeAirport": 49.816418, + "longitudeAirport": 23.955318, + "nameAirport": "Snilow", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "1", + "airportId": 4603, + "codeIataAirport": "LWR", + "codeIataCity": "LWR", + "codeIcaoAirport": "EHLW", + "codeIso2Country": "NL", + "geonameId": "6296689", + "latitudeAirport": 53.25, + "longitudeAirport": 5.8, + "nameAirport": "Leeuwarden", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "-8", + "airportId": 4604, + "codeIataAirport": "LWS", + "codeIataCity": "LWS", + "codeIcaoAirport": "KLWS", + "codeIso2Country": "US", + "geonameId": "5598539", + "latitudeAirport": 46.37472, + "longitudeAirport": -117.01444, + "nameAirport": "Nez Perce County Rgnl", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-7", + "airportId": 4605, + "codeIataAirport": "LWT", + "codeIataCity": "LWT", + "codeIcaoAirport": "KLWT", + "codeIso2Country": "US", + "geonameId": "5662170", + "latitudeAirport": 47.05111, + "longitudeAirport": -109.47111, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 4606, + "codeIataAirport": "LWV", + "codeIataCity": "LWV", + "codeIcaoAirport": "KLWV", + "codeIso2Country": "US", + "geonameId": "4242774", + "latitudeAirport": 38.733334, + "longitudeAirport": -87.683334, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 4607, + "codeIataAirport": "LWY", + "codeIataCity": "LWY", + "codeIcaoAirport": "WBGW", + "codeIso2Country": "MY", + "geonameId": "7731250", + "latitudeAirport": 4.916667, + "longitudeAirport": 115.416664, + "nameAirport": "Lawas", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "8", + "airportId": 4608, + "codeIataAirport": "LXA", + "codeIataCity": "LXA", + "codeIcaoAirport": "ZULS", + "codeIso2Country": "CN", + "geonameId": "6301884", + "latitudeAirport": 29.29305, + "longitudeAirport": 90.90051, + "nameAirport": "Gonggar/Lhasa", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "7", + "airportId": 4609, + "codeIataAirport": "LXG", + "codeIataCity": "LXG", + "codeIcaoAirport": "VLLN", + "codeIso2Country": "LA", + "geonameId": "7668611", + "latitudeAirport": 21.05, + "longitudeAirport": 101.46667, + "nameAirport": "Luang Namtha", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-6", + "airportId": 4610, + "codeIataAirport": "LXN", + "codeIataCity": "LXN", + "codeIcaoAirport": "KLXN", + "codeIso2Country": "US", + "geonameId": "5071934", + "latitudeAirport": 40.783333, + "longitudeAirport": -99.75, + "nameAirport": "Lexington", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 4611, + "codeIataAirport": "LXR", + "codeIataCity": "LXR", + "codeIcaoAirport": "HELX", + "codeIso2Country": "EG", + "geonameId": "6297295", + "latitudeAirport": 25.67492, + "longitudeAirport": 32.699684, + "nameAirport": "Luxor", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "2", + "airportId": 4612, + "codeIataAirport": "LXS", + "codeIataCity": "LXS", + "codeIcaoAirport": "LGLM", + "codeIso2Country": "GR", + "geonameId": "6299498", + "latitudeAirport": 39.923904, + "longitudeAirport": 25.233446, + "nameAirport": "Limnos", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "2", + "airportId": 4613, + "codeIataAirport": "LXU", + "codeIataCity": "LXU", + "codeIcaoAirport": "", + "codeIso2Country": "ZM", + "geonameId": "909488", + "latitudeAirport": -14.416667, + "longitudeAirport": 23.2, + "nameAirport": "Lukulu", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-7", + "airportId": 4614, + "codeIataAirport": "LXV", + "codeIataCity": "LXV", + "codeIcaoAirport": "KLXV", + "codeIso2Country": "US", + "geonameId": "5428184", + "latitudeAirport": 39.22028, + "longitudeAirport": -106.31611, + "nameAirport": "Leadville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "airportId": 4615, + "codeIataAirport": "LYA", + "codeIataCity": "LYA", + "codeIcaoAirport": "ZHLY", + "codeIso2Country": "CN", + "geonameId": "7731251", + "latitudeAirport": 34.736362, + "longitudeAirport": 112.38541, + "nameAirport": "Luoyang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 4616, + "codeIataAirport": "LYB", + "codeIataCity": "LYB", + "codeIcaoAirport": "MWCL", + "codeIso2Country": "KY", + "geonameId": "7730680", + "latitudeAirport": 19.6592, + "longitudeAirport": -80.08472, + "nameAirport": "Little Cayman", + "nameCountry": "Cayman Islands", + "phone": "", + "timezone": "America/Cayman" + }, + { + "GMT": "1", + "airportId": 4617, + "codeIataAirport": "LYC", + "codeIataCity": "LYC", + "codeIcaoAirport": "ESNL", + "codeIso2Country": "SE", + "geonameId": "6296803", + "latitudeAirport": 64.55071, + "longitudeAirport": 18.70967, + "nameAirport": "Lycksele", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "0", + "airportId": 4618, + "codeIataAirport": "LYE", + "codeIataCity": "LYE", + "codeIcaoAirport": "EGDL", + "codeIso2Country": "GB", + "geonameId": "6296580", + "latitudeAirport": 51.516666, + "longitudeAirport": -1.966667, + "nameAirport": "RAF Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "8", + "airportId": 4619, + "codeIataAirport": "LYG", + "codeIataCity": "LYG", + "codeIcaoAirport": "ZSLG", + "codeIso2Country": "CN", + "geonameId": "7731252", + "latitudeAirport": 34.565937, + "longitudeAirport": 118.87698, + "nameAirport": "Lianyungang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 4620, + "codeIataAirport": "LYH", + "codeIataCity": "LYH", + "codeIcaoAirport": "KLYH", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 37.326942, + "longitudeAirport": -79.20111, + "nameAirport": "Preston-glenn Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 4621, + "codeIataAirport": "LYI", + "codeIataCity": "LYI", + "codeIcaoAirport": "ZSLY", + "codeIso2Country": "CN", + "geonameId": "7668804", + "latitudeAirport": 35.047478, + "longitudeAirport": 118.40707, + "nameAirport": "Linyi", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 4622, + "codeIataAirport": "LYK", + "codeIataCity": "LYK", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "1637038", + "latitudeAirport": -9.0, + "longitudeAirport": 117.26667, + "nameAirport": "Lunyuk", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "1", + "airportId": 4623, + "codeIataAirport": "LYN", + "codeIataCity": "LYS", + "codeIcaoAirport": "LFLY", + "codeIso2Country": "FR", + "geonameId": "6299409", + "latitudeAirport": 45.73083, + "longitudeAirport": 4.943333, + "nameAirport": "Bron", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "airportId": 4624, + "codeIataAirport": "LYO", + "codeIataCity": "LYO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.35, + "longitudeAirport": -98.2, + "nameAirport": "Lyons-Rice County Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5", + "airportId": 4625, + "codeIataAirport": "LYP", + "codeIataCity": "LYP", + "codeIcaoAirport": "OPFA", + "codeIso2Country": "PK", + "geonameId": "7668396", + "latitudeAirport": 31.363043, + "longitudeAirport": 72.98757, + "nameAirport": "Faisalabad", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "1", + "airportId": 4626, + "codeIataAirport": "LYR", + "codeIataCity": "LYR", + "codeIcaoAirport": "ENSB", + "codeIso2Country": "SJ", + "geonameId": "6296766", + "latitudeAirport": 78.208885, + "longitudeAirport": 15.8, + "nameAirport": "Svalbard", + "nameCountry": "Svalbard and Jan Mayen", + "phone": "", + "timezone": "Arctic/Longyearbyen" + }, + { + "GMT": "1", + "airportId": 4627, + "codeIataAirport": "LYS", + "codeIataCity": "LYS", + "codeIcaoAirport": "LFLL", + "codeIso2Country": "FR", + "geonameId": "6299401", + "latitudeAirport": 45.721424, + "longitudeAirport": 5.080334, + "nameAirport": "St-Exupéry", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "airportId": 4628, + "codeIataAirport": "LYT", + "codeIataCity": "LYT", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8260970", + "latitudeAirport": -24.116667, + "longitudeAirport": 152.7, + "nameAirport": "Lady Elliot Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "airportId": 4629, + "codeIataAirport": "LYU", + "codeIataCity": "LYU", + "codeIcaoAirport": "KELO", + "codeIso2Country": "US", + "geonameId": "5025636", + "latitudeAirport": 47.82389, + "longitudeAirport": -91.82917, + "nameAirport": "Ely", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 4630, + "codeIataAirport": "LYX", + "codeIataCity": "LYX", + "codeIcaoAirport": "EGMD", + "codeIso2Country": "GB", + "geonameId": "6296602", + "latitudeAirport": 50.95, + "longitudeAirport": 0.933333, + "nameAirport": "London Ashford International (Ferryfield)", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "airportId": 4631, + "codeIataAirport": "LZA", + "codeIataCity": "LZA", + "codeIcaoAirport": "FZUG", + "codeIso2Country": "CD", + "geonameId": "7730572", + "latitudeAirport": -7.666667, + "longitudeAirport": 22.5, + "nameAirport": "Luiza", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-6", + "airportId": 4632, + "codeIataAirport": "LZC", + "codeIataCity": "LZC", + "codeIcaoAirport": "MMLC", + "codeIso2Country": "MX", + "geonameId": "6299849", + "latitudeAirport": 18.0, + "longitudeAirport": -102.21667, + "nameAirport": "Lazaro Cardenas", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "8", + "airportId": 4633, + "codeIataAirport": "LZH", + "codeIataCity": "LZH", + "codeIcaoAirport": "ZGZH", + "codeIso2Country": "CN", + "geonameId": "7730286", + "latitudeAirport": 24.206156, + "longitudeAirport": 109.39843, + "nameAirport": "Liuzhou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 4634, + "codeIataAirport": "LZI", + "codeIataCity": "LZI", + "codeIcaoAirport": "FZAL", + "codeIso2Country": "CD", + "geonameId": "7730553", + "latitudeAirport": -4.9, + "longitudeAirport": 14.0, + "nameAirport": "Luozi", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "1", + "airportId": 4635, + "codeIataAirport": "LZM", + "codeIataCity": "LZM", + "codeIcaoAirport": "", + "codeIso2Country": "AO", + "geonameId": "8299040", + "latitudeAirport": -9.05, + "longitudeAirport": 18.083332, + "nameAirport": "Luzamba", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "8", + "airportId": 4636, + "codeIataAirport": "LZN", + "codeIataCity": "LZN", + "codeIcaoAirport": "RCFG", + "codeIso2Country": "TW", + "geonameId": "7552914", + "latitudeAirport": 26.159445, + "longitudeAirport": 119.958336, + "nameAirport": "Nangan", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "8", + "airportId": 4637, + "codeIataAirport": "LZO", + "codeIataCity": "LZO", + "codeIcaoAirport": "ZULZ", + "codeIso2Country": "CN", + "geonameId": "7731254", + "latitudeAirport": 28.844757, + "longitudeAirport": 105.37902, + "nameAirport": "Luzhou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "airportId": 4638, + "codeIataAirport": "LZR", + "codeIataCity": "LZR", + "codeIcaoAirport": "YLZI", + "codeIso2Country": "AU", + "geonameId": "6354938", + "latitudeAirport": -14.666667, + "longitudeAirport": 145.46666, + "nameAirport": "Lizard Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 4639, + "codeIataAirport": "LZU", + "codeIataCity": "LZU", + "codeIcaoAirport": "KLZU", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.08075, + "longitudeAirport": -84.07378, + "nameAirport": "Gwinnett County Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 4640, + "codeIataAirport": "LZY", + "codeIataCity": "LZY", + "codeIcaoAirport": "ZUNZ", + "codeIso2Country": "CN", + "geonameId": "7730303", + "latitudeAirport": 29.309076, + "longitudeAirport": 94.335884, + "nameAirport": "Nyingchi", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "5.30", + "airportId": 4641, + "codeIataAirport": "MAA", + "codeIataCity": "MAA", + "codeIcaoAirport": "VOMM", + "codeIso2Country": "IN", + "geonameId": "6301127", + "latitudeAirport": 12.982267, + "longitudeAirport": 80.16378, + "nameAirport": "Madras International (Meenambakkam)", + "nameCountry": "India", + "phone": "044/2256-1818", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-3", + "airportId": 4642, + "codeIataAirport": "MAB", + "codeIataCity": "MAB", + "codeIcaoAirport": "SBMA", + "codeIso2Country": "BR", + "geonameId": "6300640", + "latitudeAirport": -5.366667, + "longitudeAirport": -49.166668, + "nameAirport": "Maraba", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Belem" + }, + { + "GMT": "-5", + "airportId": 4643, + "codeIataAirport": "MAC", + "codeIataCity": "MCN", + "codeIcaoAirport": "KMAC", + "codeIso2Country": "US", + "geonameId": "4200100", + "latitudeAirport": 32.833332, + "longitudeAirport": -83.63333, + "nameAirport": "Smart", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 4644, + "codeIataAirport": "MAD", + "codeIataCity": "MAD", + "codeIcaoAirport": "LEMD", + "codeIso2Country": "ES", + "geonameId": "6299345", + "latitudeAirport": 40.46515, + "longitudeAirport": -3.570209, + "nameAirport": "Barajas", + "nameCountry": "Spain", + "phone": "902-404-704", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-8", + "airportId": 4645, + "codeIataAirport": "MAE", + "codeIataCity": "MAE", + "codeIcaoAirport": "KMAE", + "codeIso2Country": "US", + "geonameId": "5369601", + "latitudeAirport": 36.95, + "longitudeAirport": -120.066666, + "nameAirport": "Madera", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 4646, + "codeIataAirport": "MAF", + "codeIataCity": "MAF", + "codeIcaoAirport": "KMAF", + "codeIso2Country": "US", + "geonameId": "5526351", + "latitudeAirport": 31.937145, + "longitudeAirport": -102.20817, + "nameAirport": "Midland International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 4647, + "codeIataAirport": "MAG", + "codeIataCity": "MAG", + "codeIcaoAirport": "AYMD", + "codeIso2Country": "PG", + "geonameId": "6295683", + "latitudeAirport": -5.210852, + "longitudeAirport": 145.78784, + "nameAirport": "Madang", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 4648, + "codeIataAirport": "MAH", + "codeIataCity": "MAH", + "codeIcaoAirport": "LEMH", + "codeIso2Country": "ES", + "geonameId": "6299347", + "latitudeAirport": 39.864746, + "longitudeAirport": 4.226256, + "nameAirport": "Mahon", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "2", + "airportId": 4649, + "codeIataAirport": "MAI", + "codeIataCity": "MAI", + "codeIcaoAirport": "", + "codeIso2Country": "MW", + "geonameId": "927246", + "latitudeAirport": -14.5, + "longitudeAirport": 35.25, + "nameAirport": "Mangochi", + "nameCountry": "Malawi", + "phone": "", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "12", + "airportId": 4650, + "codeIataAirport": "MAJ", + "codeIataCity": "MAJ", + "codeIcaoAirport": "PKMJ", + "codeIso2Country": "MH", + "geonameId": "4040398", + "latitudeAirport": 7.068717, + "longitudeAirport": 171.2825, + "nameAirport": "Amata Kabua International", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "3", + "airportId": 4651, + "codeIataAirport": "MAK", + "codeIataCity": "MAK", + "codeIcaoAirport": "HSSM", + "codeIso2Country": "SS", + "geonameId": "6297349", + "latitudeAirport": 9.555556, + "longitudeAirport": 31.644444, + "nameAirport": "Malakal", + "nameCountry": "South Sudan", + "phone": "", + "timezone": "Africa/Juba" + }, + { + "GMT": "9", + "airportId": 4652, + "codeIataAirport": "MAL", + "codeIataCity": "MAL", + "codeIcaoAirport": "WAPE", + "codeIso2Country": "ID", + "geonameId": "7731255", + "latitudeAirport": -1.833333, + "longitudeAirport": 125.916664, + "nameAirport": "Mangole", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-6", + "airportId": 4653, + "codeIataAirport": "MAM", + "codeIataCity": "MAM", + "codeIcaoAirport": "MMMA", + "codeIso2Country": "MX", + "geonameId": "3523465", + "latitudeAirport": 25.770279, + "longitudeAirport": -97.52361, + "nameAirport": "Matamoros", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Matamoros" + }, + { + "GMT": "0", + "airportId": 4654, + "codeIataAirport": "MAN", + "codeIataCity": "MAN", + "codeIcaoAirport": "EGCC", + "codeIso2Country": "GB", + "geonameId": "6296575", + "latitudeAirport": 53.362907, + "longitudeAirport": -2.273354, + "nameAirport": "Manchester Airport", + "nameCountry": "United Kingdom", + "phone": "+44 (0) 8712", + "timezone": "Europe/London" + }, + { + "GMT": "-4", + "airportId": 4655, + "codeIataAirport": "MAO", + "codeIataCity": "MAO", + "codeIcaoAirport": "SBEG", + "codeIso2Country": "BR", + "geonameId": "6300620", + "latitudeAirport": -3.031327, + "longitudeAirport": -60.046093, + "nameAirport": "Eduardo Gomes International", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "10", + "airportId": 4656, + "codeIataAirport": "MAP", + "codeIataCity": "MAP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260958", + "latitudeAirport": -10.333333, + "longitudeAirport": 149.5, + "nameAirport": "Mamai", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "7", + "airportId": 4657, + "codeIataAirport": "MAQ", + "codeIataCity": "MAQ", + "codeIcaoAirport": "VTPM", + "codeIso2Country": "TH", + "geonameId": "1152188", + "latitudeAirport": 16.666668, + "longitudeAirport": 98.583336, + "nameAirport": "Mae Sot", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-4", + "airportId": 4658, + "codeIataAirport": "MAR", + "codeIataCity": "MAR", + "codeIcaoAirport": "SVMC", + "codeIso2Country": "VE", + "geonameId": "3638474", + "latitudeAirport": 10.555564, + "longitudeAirport": -71.72351, + "nameAirport": "La Chinita", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "10", + "airportId": 4659, + "codeIataAirport": "MAS", + "codeIataCity": "MAS", + "codeIcaoAirport": "AYMO", + "codeIso2Country": "PG", + "geonameId": "6295684", + "latitudeAirport": -2.056667, + "longitudeAirport": 147.42444, + "nameAirport": "Momote", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 4660, + "codeIataAirport": "MAT", + "codeIataCity": "MAT", + "codeIcaoAirport": "FZAM", + "codeIso2Country": "CD", + "geonameId": "6297140", + "latitudeAirport": -5.798333, + "longitudeAirport": 13.441667, + "nameAirport": "Matadi", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "-10", + "airportId": 4661, + "codeIataAirport": "MAU", + "codeIataCity": "MAU", + "codeIcaoAirport": "NTTP", + "codeIso2Country": "PF", + "geonameId": "7730132", + "latitudeAirport": -16.427385, + "longitudeAirport": -152.24236, + "nameAirport": "Maupiti", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "12", + "airportId": 4662, + "codeIataAirport": "MAV", + "codeIataCity": "MAV", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 8.75, + "longitudeAirport": 171.1, + "nameAirport": "Maloelap Island", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-6", + "airportId": 4663, + "codeIataAirport": "MAW", + "codeIataCity": "MAW", + "codeIcaoAirport": "KMAW", + "codeIso2Country": "US", + "geonameId": "4396882", + "latitudeAirport": 36.605556, + "longitudeAirport": -89.98889, + "nameAirport": "Malden", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 4664, + "codeIataAirport": "MAX", + "codeIataCity": "MAX", + "codeIcaoAirport": "GOSM", + "codeIso2Country": "SN", + "geonameId": "6297228", + "latitudeAirport": 15.593056, + "longitudeAirport": -13.323611, + "nameAirport": "Matam", + "nameCountry": "Senegal", + "phone": "", + "timezone": "Africa/Dakar" + }, + { + "GMT": "-5", + "airportId": 4665, + "codeIataAirport": "MAY", + "codeIataCity": "MAY", + "codeIcaoAirport": "", + "codeIso2Country": "BS", + "geonameId": "3571944", + "latitudeAirport": 24.289722, + "longitudeAirport": -77.680275, + "nameAirport": "Mangrove Cay", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-4", + "airportId": 4666, + "codeIataAirport": "MAZ", + "codeIataCity": "MAZ", + "codeIcaoAirport": "TJMZ", + "codeIso2Country": "PR", + "geonameId": "4564916", + "latitudeAirport": 18.257778, + "longitudeAirport": -67.14889, + "nameAirport": "Eugenio M De Hostos", + "nameCountry": "Puerto Rico", + "phone": "", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "3", + "airportId": 4667, + "codeIataAirport": "MBA", + "codeIataCity": "MBA", + "codeIcaoAirport": "HKMO", + "codeIso2Country": "KE", + "geonameId": "6297319", + "latitudeAirport": -4.0327, + "longitudeAirport": 39.60325, + "nameAirport": "Moi International", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "8", + "airportId": 4668, + "codeIataAirport": "MBB", + "codeIataCity": "MBB", + "codeIcaoAirport": "YMBL", + "codeIso2Country": "AU", + "geonameId": "7731256", + "latitudeAirport": -21.25, + "longitudeAirport": 119.583336, + "nameAirport": "Marble Bar", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "airportId": 4669, + "codeIataAirport": "MBC", + "codeIataCity": "MBC", + "codeIcaoAirport": "FOGG", + "codeIso2Country": "GA", + "geonameId": "7730525", + "latitudeAirport": -2.0, + "longitudeAirport": 12.0, + "nameAirport": "Mbigou", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "2", + "airportId": 4670, + "codeIataAirport": "MBD", + "codeIataCity": "MBD", + "codeIcaoAirport": "FAMM", + "codeIso2Country": "ZA", + "geonameId": "975436", + "latitudeAirport": -25.816668, + "longitudeAirport": 25.5, + "nameAirport": "Mafikeng International Airport", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "9", + "airportId": 4671, + "codeIataAirport": "MBE", + "codeIataCity": "MBE", + "codeIcaoAirport": "RJEB", + "codeIso2Country": "JP", + "geonameId": "6300339", + "latitudeAirport": 44.266666, + "longitudeAirport": 143.38333, + "nameAirport": "Monbetsu", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "10", + "airportId": 4672, + "codeIataAirport": "MBF", + "codeIataCity": "MBF", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -36.75, + "longitudeAirport": 146.75, + "nameAirport": "Mount Buffalo", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-6", + "airportId": 4673, + "codeIataAirport": "MBG", + "codeIataCity": "MBG", + "codeIcaoAirport": "KMBG", + "codeIso2Country": "US", + "geonameId": "5767189", + "latitudeAirport": 45.533333, + "longitudeAirport": -100.433334, + "nameAirport": "Mobridge", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 4674, + "codeIataAirport": "MBH", + "codeIataCity": "MBH", + "codeIcaoAirport": "YMYB", + "codeIso2Country": "AU", + "geonameId": "7668748", + "latitudeAirport": -25.516666, + "longitudeAirport": 152.71333, + "nameAirport": "Maryborough", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "airportId": 4675, + "codeIataAirport": "MBI", + "codeIataCity": "MBI", + "codeIcaoAirport": "HTMB", + "codeIso2Country": "TZ", + "geonameId": "6297359", + "latitudeAirport": -8.914722, + "longitudeAirport": 33.461945, + "nameAirport": "Mbeya", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-5", + "airportId": 4676, + "codeIataAirport": "MBJ", + "codeIataCity": "MBJ", + "codeIcaoAirport": "MKJS", + "codeIso2Country": "JM", + "geonameId": "3489460", + "latitudeAirport": 18.498465, + "longitudeAirport": -77.91663, + "nameAirport": "Sangster International", + "nameCountry": "", + "phone": "876-952-3124", + "timezone": "America/Jamaica" + }, + { + "GMT": "-4", + "airportId": 4677, + "codeIataAirport": "MBK", + "codeIataCity": "MBK", + "codeIcaoAirport": "SWXM", + "codeIso2Country": "BR", + "geonameId": "7731257", + "latitudeAirport": -10.0575, + "longitudeAirport": -54.932777, + "nameAirport": "Matupa", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-5", + "airportId": 4678, + "codeIataAirport": "MBL", + "codeIataCity": "MBL", + "codeIcaoAirport": "KMBL", + "codeIso2Country": "US", + "geonameId": "5000613", + "latitudeAirport": 44.273888, + "longitudeAirport": -86.253334, + "nameAirport": "Blacker", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "2", + "airportId": 4679, + "codeIataAirport": "MBM", + "codeIataCity": "MBM", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "7731258", + "latitudeAirport": -31.283333, + "longitudeAirport": 29.966667, + "nameAirport": "Mkambati", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "8", + "airportId": 4680, + "codeIataAirport": "MBN", + "codeIataCity": "MBN", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298871", + "latitudeAirport": -15.0, + "longitudeAirport": 125.0, + "nameAirport": "Mt Barnett", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "airportId": 4681, + "codeIataAirport": "MBO", + "codeIataCity": "MBO", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "1702263", + "latitudeAirport": 13.211389, + "longitudeAirport": 120.60333, + "nameAirport": "Mamburao", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-5", + "airportId": 4682, + "codeIataAirport": "MBP", + "codeIataCity": "MBP", + "codeIcaoAirport": "SPBB", + "codeIso2Country": "PE", + "geonameId": "7731259", + "latitudeAirport": -6.2, + "longitudeAirport": -77.166664, + "nameAirport": "Moyobamba", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "3", + "airportId": 4683, + "codeIataAirport": "MBQ", + "codeIataCity": "MBQ", + "codeIcaoAirport": "HUMA", + "codeIso2Country": "UG", + "geonameId": "6297381", + "latitudeAirport": -0.616667, + "longitudeAirport": 30.65, + "nameAirport": "Mbarara", + "nameCountry": "Uganda", + "phone": "", + "timezone": "Africa/Kampala" + }, + { + "GMT": "0", + "airportId": 4684, + "codeIataAirport": "MBR", + "codeIataCity": "MBR", + "codeIcaoAirport": "", + "codeIso2Country": "MR", + "geonameId": "8261062", + "latitudeAirport": 16.033333, + "longitudeAirport": -12.583333, + "nameAirport": "Mbout", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "-5", + "airportId": 4685, + "codeIataAirport": "MBS", + "codeIataCity": "MBS", + "codeIcaoAirport": "KMBS", + "codeIso2Country": "US", + "geonameId": "5012574", + "latitudeAirport": 43.53339, + "longitudeAirport": -84.090744, + "nameAirport": "MBS International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "8", + "airportId": 4686, + "codeIataAirport": "MBT", + "codeIataCity": "MBT", + "codeIcaoAirport": "RPVJ", + "codeIso2Country": "PH", + "geonameId": "6300497", + "latitudeAirport": 12.366667, + "longitudeAirport": 123.066666, + "nameAirport": "Masbate", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "11", + "airportId": 4687, + "codeIataAirport": "MBU", + "codeIataCity": "MBU", + "codeIcaoAirport": "", + "codeIso2Country": "SB", + "geonameId": "2106111", + "latitudeAirport": -9.733333, + "longitudeAirport": 160.75, + "nameAirport": "Mbambanakira", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "10", + "airportId": 4688, + "codeIataAirport": "MBV", + "codeIataCity": "MBV", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2091289", + "latitudeAirport": -6.35, + "longitudeAirport": 147.63333, + "nameAirport": "Masa", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 4689, + "codeIataAirport": "MBW", + "codeIataCity": "MEL", + "codeIcaoAirport": "YMMB", + "codeIso2Country": "AU", + "geonameId": "6301316", + "latitudeAirport": -37.975834, + "longitudeAirport": 145.10222, + "nameAirport": "Moorabbin", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "1", + "airportId": 4690, + "codeIataAirport": "MBX", + "codeIataCity": "MBX", + "codeIcaoAirport": "LJMB", + "codeIso2Country": "SI", + "geonameId": "6299644", + "latitudeAirport": 46.55, + "longitudeAirport": 15.65, + "nameAirport": "Maribor International Airport", + "nameCountry": "Slovenia", + "phone": "", + "timezone": "Europe/Ljubljana" + }, + { + "GMT": "-6", + "airportId": 4691, + "codeIataAirport": "MBY", + "codeIataCity": "MBY", + "codeIcaoAirport": "KMBY", + "codeIso2Country": "US", + "geonameId": "4401946", + "latitudeAirport": 39.46389, + "longitudeAirport": -92.42667, + "nameAirport": "Moberly", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 4692, + "codeIataAirport": "MBZ", + "codeIataCity": "MBZ", + "codeIcaoAirport": "SWMW", + "codeIso2Country": "BR", + "geonameId": "7731260", + "latitudeAirport": -3.4, + "longitudeAirport": -57.7, + "nameAirport": "Maues", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "0", + "airportId": 4693, + "codeIataAirport": "MCA", + "codeIataCity": "MCA", + "codeIcaoAirport": "GUMA", + "codeIso2Country": "GN", + "geonameId": "6297251", + "latitudeAirport": 8.55, + "longitudeAirport": -9.466667, + "nameAirport": "Macenta", + "nameCountry": "Guinea", + "phone": "", + "timezone": "Africa/Conakry" + }, + { + "GMT": "-6", + "airportId": 4694, + "codeIataAirport": "MCB", + "codeIataCity": "MCB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 31.175556, + "longitudeAirport": -90.469444, + "nameAirport": "Pike County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 4695, + "codeIataAirport": "MCC", + "codeIataCity": "SAC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.676224, + "longitudeAirport": -121.405945, + "nameAirport": "Mcclellan AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 4696, + "codeIataAirport": "MCD", + "codeIataCity": "MCD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5000452", + "latitudeAirport": 45.86667, + "longitudeAirport": -84.63333, + "nameAirport": "Mackinac Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-8", + "airportId": 4697, + "codeIataAirport": "MCE", + "codeIataCity": "MCE", + "codeIcaoAirport": "KMCE", + "codeIso2Country": "US", + "geonameId": "5372280", + "latitudeAirport": 37.28472, + "longitudeAirport": -120.51278, + "nameAirport": "Merced Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 4698, + "codeIataAirport": "MCF", + "codeIataCity": "TPA", + "codeIcaoAirport": "KMCF", + "codeIso2Country": "US", + "geonameId": "6298615", + "latitudeAirport": 27.95, + "longitudeAirport": -82.45, + "nameAirport": "Mac Dill AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 4699, + "codeIataAirport": "MCG", + "codeIataCity": "MCG", + "codeIcaoAirport": "PAMC", + "codeIso2Country": "US", + "geonameId": "5868548", + "latitudeAirport": 62.97875, + "longitudeAirport": -155.65764, + "nameAirport": "Mcgrath", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 4700, + "codeIataAirport": "MCH", + "codeIataCity": "MCH", + "codeIcaoAirport": "SEMH", + "codeIso2Country": "EC", + "geonameId": "6300718", + "latitudeAirport": -3.266667, + "longitudeAirport": -79.98333, + "nameAirport": "Machala", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-6", + "airportId": 4701, + "codeIataAirport": "MCI", + "codeIataCity": "MKC", + "codeIcaoAirport": "KMCI", + "codeIso2Country": "US", + "geonameId": "4393219", + "latitudeAirport": 39.293808, + "longitudeAirport": -94.719925, + "nameAirport": "Kansas City International Airport", + "nameCountry": "United States", + "phone": "816-243-5237", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 4702, + "codeIataAirport": "MCJ", + "codeIataCity": "MCJ", + "codeIcaoAirport": "SKLM", + "codeIso2Country": "CO", + "geonameId": "7668460", + "latitudeAirport": 11.391667, + "longitudeAirport": -72.24167, + "nameAirport": "Maicao", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 4703, + "codeIataAirport": "MCK", + "codeIataCity": "MCK", + "codeIcaoAirport": "KMCK", + "codeIso2Country": "US", + "geonameId": "5697396", + "latitudeAirport": 40.26389, + "longitudeAirport": -100.66805, + "nameAirport": "Mccook", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 4704, + "codeIataAirport": "MCL", + "codeIataCity": "MCL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 63.875973, + "longitudeAirport": -149.0064, + "nameAirport": "Mt Mckinley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 4705, + "codeIataAirport": "MCM", + "codeIataCity": "MCM", + "codeIcaoAirport": "LNMC", + "codeIso2Country": "MC", + "geonameId": "2993458", + "latitudeAirport": 43.733334, + "longitudeAirport": 7.416667, + "nameAirport": "Fontvieille Heliport", + "nameCountry": "Monaco", + "phone": "", + "timezone": "Europe/Monaco" + }, + { + "GMT": "-5", + "airportId": 4706, + "codeIataAirport": "MCN", + "codeIataCity": "MCN", + "codeIcaoAirport": "KMCN", + "codeIso2Country": "US", + "geonameId": "4209058", + "latitudeAirport": 32.70199, + "longitudeAirport": -83.64865, + "nameAirport": "Lewis B Wilson", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 4707, + "codeIataAirport": "MCO", + "codeIataCity": "ORL", + "codeIcaoAirport": "KMCO", + "codeIso2Country": "US", + "geonameId": "4167162", + "latitudeAirport": 28.432177, + "longitudeAirport": -81.308304, + "nameAirport": "Orlando International", + "nameCountry": "United States", + "phone": "407-825-2001", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 4708, + "codeIataAirport": "MCP", + "codeIataCity": "MCP", + "codeIcaoAirport": "SBMQ", + "codeIso2Country": "BR", + "geonameId": "6300645", + "latitudeAirport": 0.049895, + "longitudeAirport": -51.068382, + "nameAirport": "Internacional", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Belem" + }, + { + "GMT": "1", + "airportId": 4709, + "codeIataAirport": "MCQ", + "codeIataCity": "MCQ", + "codeIcaoAirport": "", + "codeIso2Country": "HU", + "geonameId": "717582", + "latitudeAirport": 48.11667, + "longitudeAirport": 20.833332, + "nameAirport": "Miskolc", + "nameCountry": "Hungary", + "phone": "", + "timezone": "Europe/Budapest" + }, + { + "GMT": "-6", + "airportId": 4710, + "codeIataAirport": "MCR", + "codeIataCity": "MCR", + "codeIcaoAirport": "MGMM", + "codeIso2Country": "GT", + "geonameId": "7730653", + "latitudeAirport": 17.0, + "longitudeAirport": -92.00833, + "nameAirport": "Melchor De Menco", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "-3", + "airportId": 4711, + "codeIataAirport": "MCS", + "codeIataCity": "MCS", + "codeIcaoAirport": "SARM", + "codeIso2Country": "AR", + "geonameId": "6300551", + "latitudeAirport": -30.270832, + "longitudeAirport": -57.64111, + "nameAirport": "Monte Caseros", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "4", + "airportId": 4712, + "codeIataAirport": "MCT", + "codeIataCity": "MCT", + "codeIcaoAirport": "OOMS", + "codeIso2Country": "OM", + "geonameId": "287286", + "latitudeAirport": 23.588078, + "longitudeAirport": 58.29022, + "nameAirport": "Seeb", + "nameCountry": "Oman", + "phone": "", + "timezone": "Asia/Muscat" + }, + { + "GMT": "1", + "airportId": 4713, + "codeIataAirport": "MCU", + "codeIataCity": "MCU", + "codeIcaoAirport": "LFLT", + "codeIso2Country": "FR", + "geonameId": "6299373", + "latitudeAirport": 46.35, + "longitudeAirport": 2.6, + "nameAirport": "Gueret (Lepaud)", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "9.30", + "airportId": 4714, + "codeIataAirport": "MCV", + "codeIataCity": "MCV", + "codeIcaoAirport": "YMHU", + "codeIso2Country": "AU", + "geonameId": "7910449", + "latitudeAirport": -16.466667, + "longitudeAirport": 136.095, + "nameAirport": "Mcarthur River", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-6", + "airportId": 4715, + "codeIataAirport": "MCW", + "codeIataCity": "MCW", + "codeIcaoAirport": "KMCW", + "codeIso2Country": "US", + "geonameId": "4866456", + "latitudeAirport": 43.156944, + "longitudeAirport": -93.329445, + "nameAirport": "Mason City Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 4716, + "codeIataAirport": "MCX", + "codeIataCity": "MCX", + "codeIcaoAirport": "URML", + "codeIso2Country": "RU", + "geonameId": "7730193", + "latitudeAirport": 42.82095, + "longitudeAirport": 47.65611, + "nameAirport": "Makhachkala", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "10", + "airportId": 4717, + "codeIataAirport": "MCY", + "codeIataCity": "MCY", + "codeIcaoAirport": "YBMC", + "codeIso2Country": "AU", + "geonameId": "7668691", + "latitudeAirport": -26.60538, + "longitudeAirport": 153.08821, + "nameAirport": "Maroochydore", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "airportId": 4718, + "codeIataAirport": "MCZ", + "codeIataCity": "MCZ", + "codeIcaoAirport": "SBMO", + "codeIso2Country": "BR", + "geonameId": "6300644", + "latitudeAirport": -9.512521, + "longitudeAirport": -35.800446, + "nameAirport": "Palmares", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Maceio" + }, + { + "GMT": "-6", + "airportId": 4719, + "codeIataAirport": "MDA", + "codeIataCity": "SAT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 29.416668, + "longitudeAirport": -98.5, + "nameAirport": "Martindale Army Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 4720, + "codeIataAirport": "MDB", + "codeIataCity": "MDB", + "codeIcaoAirport": "", + "codeIso2Country": "BZ", + "geonameId": "0", + "latitudeAirport": 16.998611, + "longitudeAirport": -88.32056, + "nameAirport": "Melinda", + "nameCountry": "Belize", + "phone": "", + "timezone": "America/Belize" + }, + { + "GMT": "8", + "airportId": 4721, + "codeIataAirport": "MDC", + "codeIataCity": "MDC", + "codeIcaoAirport": "WAMM", + "codeIso2Country": "ID", + "geonameId": "6301195", + "latitudeAirport": 1.543533, + "longitudeAirport": 124.92203, + "nameAirport": "Samratulangi", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-6", + "airportId": 4722, + "codeIataAirport": "MDD", + "codeIataCity": "MAF", + "codeIcaoAirport": "KMDD", + "codeIso2Country": "US", + "geonameId": "5526346", + "latitudeAirport": 32.0, + "longitudeAirport": -102.05, + "nameAirport": "Airpark", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 4723, + "codeIataAirport": "MDE", + "codeIataCity": "MDE", + "codeIcaoAirport": "SKRG", + "codeIso2Country": "CO", + "geonameId": "6300755", + "latitudeAirport": 6.171382, + "longitudeAirport": -75.42821, + "nameAirport": "Jose Maria Cordova", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 4724, + "codeIataAirport": "MDF", + "codeIataCity": "MDF", + "codeIcaoAirport": "KMDZ", + "codeIso2Country": "US", + "geonameId": "5275452", + "latitudeAirport": 45.15, + "longitudeAirport": -90.333336, + "nameAirport": "Medford", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 4725, + "codeIataAirport": "MDG", + "codeIataCity": "MDG", + "codeIcaoAirport": "ZYMD", + "codeIso2Country": "CN", + "geonameId": "7668814", + "latitudeAirport": 44.534943, + "longitudeAirport": 129.58385, + "nameAirport": "Mudanjiang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 4726, + "codeIataAirport": "MDH", + "codeIataCity": "MDH", + "codeIcaoAirport": "KMDH", + "codeIso2Country": "US", + "geonameId": "4250394", + "latitudeAirport": 37.781387, + "longitudeAirport": -89.24694, + "nameAirport": "Southern Illinois", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 4727, + "codeIataAirport": "MDI", + "codeIataCity": "MDI", + "codeIcaoAirport": "DNMK", + "codeIso2Country": "NG", + "geonameId": "2331140", + "latitudeAirport": 7.75, + "longitudeAirport": 8.533333, + "nameAirport": "Makurdi", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-8", + "airportId": 4728, + "codeIataAirport": "MDJ", + "codeIataCity": "MDJ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5719287", + "latitudeAirport": 44.812305, + "longitudeAirport": -121.281, + "nameAirport": "City-county", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 4729, + "codeIataAirport": "MDK", + "codeIataCity": "MDK", + "codeIcaoAirport": "FZEA", + "codeIso2Country": "CD", + "geonameId": "6297146", + "latitudeAirport": 0.023333, + "longitudeAirport": 18.292221, + "nameAirport": "Mbandaka", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "6.30", + "airportId": 4730, + "codeIataAirport": "MDL", + "codeIataCity": "MDL", + "codeIcaoAirport": "VYCZ", + "codeIso2Country": "MM", + "geonameId": "1311876", + "latitudeAirport": 21.940052, + "longitudeAirport": 96.0875, + "nameAirport": "Mandalay International", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "10", + "airportId": 4731, + "codeIataAirport": "MDM", + "codeIataCity": "MDM", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260871", + "latitudeAirport": -4.633333, + "longitudeAirport": 143.45, + "nameAirport": "Munduku", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 4732, + "codeIataAirport": "MDN", + "codeIataCity": "MDN", + "codeIcaoAirport": "KIMS", + "codeIso2Country": "US", + "geonameId": "4260857", + "latitudeAirport": 38.733334, + "longitudeAirport": -85.38333, + "nameAirport": "Jefferson Proving Grd", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-9", + "airportId": 4733, + "codeIataAirport": "MDO", + "codeIataCity": "MDO", + "codeIcaoAirport": "PAMD", + "codeIso2Country": "US", + "geonameId": "5868862", + "latitudeAirport": 59.453056, + "longitudeAirport": -146.3, + "nameAirport": "Intermediate", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "9", + "airportId": 4734, + "codeIataAirport": "MDP", + "codeIataCity": "MDP", + "codeIcaoAirport": "WAKD", + "codeIso2Country": "ID", + "geonameId": "7731261", + "latitudeAirport": -5.833333, + "longitudeAirport": 140.83333, + "nameAirport": "Mindiptana", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-3", + "airportId": 4735, + "codeIataAirport": "MDQ", + "codeIataCity": "MDQ", + "codeIcaoAirport": "SAZM", + "codeIso2Country": "AR", + "geonameId": "3430864", + "latitudeAirport": -37.934723, + "longitudeAirport": -57.572224, + "nameAirport": "Mar Del Plata", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "-9", + "airportId": 4736, + "codeIataAirport": "MDR", + "codeIataCity": "MDR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5868663", + "latitudeAirport": 63.106945, + "longitudeAirport": -154.71666, + "nameAirport": "Medfra", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "airportId": 4737, + "codeIataAirport": "MDS", + "codeIataCity": "MDS", + "codeIcaoAirport": "MBMC", + "codeIso2Country": "TC", + "geonameId": "7730647", + "latitudeAirport": 21.783333, + "longitudeAirport": -71.71667, + "nameAirport": "Middle Caicos", + "nameCountry": "Turks and Caicos Islands", + "phone": "", + "timezone": "America/Grand_Turk" + }, + { + "GMT": "-5", + "airportId": 4738, + "codeIataAirport": "MDT", + "codeIataCity": "HAR", + "codeIcaoAirport": "KMDT", + "codeIso2Country": "US", + "geonameId": "5192735", + "latitudeAirport": 40.196007, + "longitudeAirport": -76.75606, + "nameAirport": "Harrisburg International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 4739, + "codeIataAirport": "MDU", + "codeIataCity": "MDU", + "codeIcaoAirport": "AYMN", + "codeIso2Country": "PG", + "geonameId": "7668085", + "latitudeAirport": -6.158611, + "longitudeAirport": 143.65, + "nameAirport": "Mendi", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 4740, + "codeIataAirport": "MDV", + "codeIataCity": "MDV", + "codeIcaoAirport": "", + "codeIso2Country": "GA", + "geonameId": "0", + "latitudeAirport": 0.95, + "longitudeAirport": 10.783333, + "nameAirport": "Medouneu", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-6", + "airportId": 4741, + "codeIataAirport": "MDW", + "codeIataCity": "CHI", + "codeIcaoAirport": "KMDW", + "codeIso2Country": "US", + "geonameId": "4887472", + "latitudeAirport": 41.788136, + "longitudeAirport": -87.74087, + "nameAirport": "Midway", + "nameCountry": "United States", + "phone": "773-838-9111", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 4742, + "codeIataAirport": "MDX", + "codeIataCity": "MDX", + "codeIcaoAirport": "SATM", + "codeIso2Country": "AR", + "geonameId": "7730769", + "latitudeAirport": -29.167221, + "longitudeAirport": -58.075558, + "nameAirport": "Mercedes", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-11", + "airportId": 4743, + "codeIataAirport": "MDY", + "codeIataCity": "MDY", + "codeIcaoAirport": "PMDY", + "codeIso2Country": "UM", + "geonameId": "5854944", + "latitudeAirport": 28.2, + "longitudeAirport": -177.38333, + "nameAirport": "Sand Island Field", + "nameCountry": "United States Minor Outlying Islands", + "phone": "", + "timezone": "Pacific/Midway" + }, + { + "GMT": "-3", + "airportId": 4744, + "codeIataAirport": "MDZ", + "codeIataCity": "MDZ", + "codeIcaoAirport": "SAME", + "codeIso2Country": "AR", + "geonameId": "6300525", + "latitudeAirport": -32.82789, + "longitudeAirport": -68.79891, + "nameAirport": "El Plumerillo", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Mendoza" + }, + { + "GMT": "-3", + "airportId": 4745, + "codeIataAirport": "MEA", + "codeIataCity": "MEA", + "codeIcaoAirport": "SBME", + "codeIso2Country": "BR", + "geonameId": "6300641", + "latitudeAirport": -22.35, + "longitudeAirport": -41.8, + "nameAirport": "Macae", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "airportId": 4746, + "codeIataAirport": "MEB", + "codeIataCity": "MEL", + "codeIcaoAirport": "YMEN", + "codeIso2Country": "AU", + "geonameId": "6301311", + "latitudeAirport": -37.736668, + "longitudeAirport": 144.8975, + "nameAirport": "Essendon", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-5", + "airportId": 4747, + "codeIataAirport": "MEC", + "codeIataCity": "MEC", + "codeIcaoAirport": "SEMT", + "codeIso2Country": "EC", + "geonameId": "6300719", + "latitudeAirport": -0.953035, + "longitudeAirport": -80.684, + "nameAirport": "Manta", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "3", + "airportId": 4748, + "codeIataAirport": "MED", + "codeIataCity": "MED", + "codeIcaoAirport": "OEMA", + "codeIso2Country": "SA", + "geonameId": "6300021", + "latitudeAirport": 24.544369, + "longitudeAirport": 39.698967, + "nameAirport": "Mohammad Bin Abdulaziz", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "11", + "airportId": 4749, + "codeIataAirport": "MEE", + "codeIataCity": "MEE", + "codeIcaoAirport": "NWWR", + "codeIso2Country": "NC", + "geonameId": "6299977", + "latitudeAirport": -21.482311, + "longitudeAirport": 168.03609, + "nameAirport": "Mare", + "nameCountry": "New Caledonia", + "phone": "", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "1", + "airportId": 4750, + "codeIataAirport": "MEF", + "codeIataCity": "MEF", + "codeIcaoAirport": "", + "codeIso2Country": "TD", + "geonameId": "2427949", + "latitudeAirport": 11.05, + "longitudeAirport": 17.95, + "nameAirport": "Melfi", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "1", + "airportId": 4751, + "codeIataAirport": "MEG", + "codeIataCity": "MEG", + "codeIcaoAirport": "FNMA", + "codeIso2Country": "AO", + "geonameId": "7668248", + "latitudeAirport": -9.533333, + "longitudeAirport": 16.333332, + "nameAirport": "Malange", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "1", + "airportId": 4752, + "codeIataAirport": "MEH", + "codeIataCity": "MEH", + "codeIcaoAirport": "ENMR", + "codeIso2Country": "NO", + "geonameId": "6296751", + "latitudeAirport": 71.03333, + "longitudeAirport": 27.833332, + "nameAirport": "Mehamn", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "airportId": 4753, + "codeIataAirport": "MEI", + "codeIataCity": "MEI", + "codeIcaoAirport": "KMEI", + "codeIso2Country": "US", + "geonameId": "4435764", + "latitudeAirport": 32.337223, + "longitudeAirport": -88.74917, + "nameAirport": "Key Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 4754, + "codeIataAirport": "MEJ", + "codeIataCity": "MEJ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.63333, + "longitudeAirport": -80.166664, + "nameAirport": "Meadville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 4755, + "codeIataAirport": "MEK", + "codeIataCity": "MEK", + "codeIcaoAirport": "GMFM", + "codeIso2Country": "MA", + "geonameId": "6297203", + "latitudeAirport": 33.88333, + "longitudeAirport": -5.533333, + "nameAirport": "Meknes", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "10", + "airportId": 4756, + "codeIataAirport": "MEL", + "codeIataCity": "MEL", + "codeIcaoAirport": "YMML", + "codeIso2Country": "AU", + "geonameId": "6290242", + "latitudeAirport": -37.669613, + "longitudeAirport": 144.84978, + "nameAirport": "Melbourne - Tullamarine Airport", + "nameCountry": "Australia", + "phone": "+61 3 9297 16", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-6", + "airportId": 4757, + "codeIataAirport": "MEM", + "codeIataCity": "MEM", + "codeIcaoAirport": "KMEM", + "codeIso2Country": "US", + "geonameId": "4641253", + "latitudeAirport": 35.04458, + "longitudeAirport": -89.98226, + "nameAirport": "Memphis International", + "nameCountry": "United States", + "phone": "901-922-8000", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 4758, + "codeIataAirport": "MEN", + "codeIataCity": "MEN", + "codeIcaoAirport": "LFNB", + "codeIso2Country": "FR", + "geonameId": "6299425", + "latitudeAirport": 44.5, + "longitudeAirport": 3.533333, + "nameAirport": "Brenoux", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 4759, + "codeIataAirport": "MEO", + "codeIataCity": "MEO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4477895", + "latitudeAirport": 35.919167, + "longitudeAirport": -75.695274, + "nameAirport": "Dare County Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 4760, + "codeIataAirport": "MEP", + "codeIataCity": "MEP", + "codeIcaoAirport": "WMAU", + "codeIso2Country": "MY", + "geonameId": "7731262", + "latitudeAirport": 2.416667, + "longitudeAirport": 103.833336, + "nameAirport": "Mersing", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "7", + "airportId": 4761, + "codeIataAirport": "MEQ", + "codeIataCity": "MEQ", + "codeIcaoAirport": "WITC", + "codeIso2Country": "ID", + "geonameId": "6301249", + "latitudeAirport": 4.15, + "longitudeAirport": 96.11667, + "nameAirport": "Seunagan", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-8", + "airportId": 4762, + "codeIataAirport": "MER", + "codeIataCity": "MCE", + "codeIcaoAirport": "KMER", + "codeIso2Country": "US", + "geonameId": "5334831", + "latitudeAirport": 37.3, + "longitudeAirport": -120.48333, + "nameAirport": "Castle AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "7", + "airportId": 4763, + "codeIataAirport": "MES", + "codeIataCity": "MES", + "codeIcaoAirport": "WIMM", + "codeIso2Country": "ID", + "geonameId": "6301237", + "latitudeAirport": 3.561111, + "longitudeAirport": 98.672775, + "nameAirport": "Polonia", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "10", + "airportId": 4764, + "codeIataAirport": "MET", + "codeIataCity": "MET", + "codeIcaoAirport": "YMOT", + "codeIso2Country": "AU", + "geonameId": "7731263", + "latitudeAirport": -12.75, + "longitudeAirport": 142.76666, + "nameAirport": "Moreton", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "airportId": 4765, + "codeIataAirport": "MEU", + "codeIataCity": "MEU", + "codeIcaoAirport": "SBMD", + "codeIso2Country": "BR", + "geonameId": "7730159", + "latitudeAirport": -0.883333, + "longitudeAirport": -52.583332, + "nameAirport": "Monte Dourado", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Santarem" + }, + { + "GMT": "-8", + "airportId": 4766, + "codeIataAirport": "MEV", + "codeIataCity": "MEV", + "codeIcaoAirport": "KMEV", + "codeIso2Country": "US", + "geonameId": "5503129", + "latitudeAirport": 39.0, + "longitudeAirport": -119.75, + "nameAirport": "Douglas County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "airportId": 4767, + "codeIataAirport": "MEW", + "codeIataCity": "MEW", + "codeIcaoAirport": "FZVM", + "codeIso2Country": "CD", + "geonameId": "7730573", + "latitudeAirport": -4.85, + "longitudeAirport": 21.566668, + "nameAirport": "Mweka", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-6", + "airportId": 4768, + "codeIataAirport": "MEX", + "codeIataCity": "MEX", + "codeIcaoAirport": "MMMX", + "codeIso2Country": "MX", + "geonameId": "6299859", + "latitudeAirport": 19.435278, + "longitudeAirport": -99.07278, + "nameAirport": "Internacional Benito Juarez", + "nameCountry": "Mexico", + "phone": "2482-2424", + "timezone": "America/Mexico_City" + }, + { + "GMT": "5.45", + "airportId": 4769, + "codeIataAirport": "MEY", + "codeIataCity": "MEY", + "codeIcaoAirport": "VNMG", + "codeIso2Country": "NP", + "geonameId": "7668623", + "latitudeAirport": 27.57639, + "longitudeAirport": 84.23139, + "nameAirport": "Meghauli", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "2", + "airportId": 4770, + "codeIataAirport": "MEZ", + "codeIataCity": "MEZ", + "codeIcaoAirport": "FAMS", + "codeIso2Country": "ZA", + "geonameId": "7730074", + "latitudeAirport": -22.366667, + "longitudeAirport": 29.833332, + "nameAirport": "Messina", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "3", + "airportId": 4771, + "codeIataAirport": "MFA", + "codeIataCity": "MFA", + "codeIcaoAirport": "HTMA", + "codeIso2Country": "TZ", + "geonameId": "7730621", + "latitudeAirport": -7.913889, + "longitudeAirport": 39.665, + "nameAirport": "Mafia", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-5", + "airportId": 4772, + "codeIataAirport": "MFB", + "codeIataCity": "MFB", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "3674584", + "latitudeAirport": 0.616667, + "longitudeAirport": -69.75, + "nameAirport": "Monfort", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "2", + "airportId": 4773, + "codeIataAirport": "MFC", + "codeIataCity": "MFC", + "codeIcaoAirport": "FXMF", + "codeIso2Country": "LS", + "geonameId": "7730537", + "latitudeAirport": -29.75, + "longitudeAirport": 27.3, + "nameAirport": "Mafeteng", + "nameCountry": "Lesotho", + "phone": "", + "timezone": "Africa/Maseru" + }, + { + "GMT": "-5", + "airportId": 4774, + "codeIataAirport": "MFD", + "codeIataCity": "MFD", + "codeIcaoAirport": "KMFD", + "codeIso2Country": "US", + "geonameId": "6298629", + "latitudeAirport": 40.82, + "longitudeAirport": -82.51278, + "nameAirport": "Lahm Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 4775, + "codeIataAirport": "MFE", + "codeIataCity": "MFE", + "codeIcaoAirport": "KMFE", + "codeIso2Country": "US", + "geonameId": "4709809", + "latitudeAirport": 26.181295, + "longitudeAirport": -98.23978, + "nameAirport": "Mc Allen Miller International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 4776, + "codeIataAirport": "MFF", + "codeIataCity": "MFF", + "codeIcaoAirport": "FOOD", + "codeIso2Country": "GA", + "geonameId": "6297068", + "latitudeAirport": -1.536944, + "longitudeAirport": 13.270833, + "nameAirport": "Moanda", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "5", + "airportId": 4777, + "codeIataAirport": "MFG", + "codeIataCity": "MFG", + "codeIcaoAirport": "OPMF", + "codeIso2Country": "PK", + "geonameId": "7668400", + "latitudeAirport": 34.36667, + "longitudeAirport": 73.46667, + "nameAirport": "Muzaffarabad", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-8", + "airportId": 4778, + "codeIataAirport": "MFH", + "codeIataCity": "MFH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5508181", + "latitudeAirport": 36.83611, + "longitudeAirport": -114.05861, + "nameAirport": "Mesquite", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 4779, + "codeIataAirport": "MFI", + "codeIataCity": "MFI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5261969", + "latitudeAirport": 44.63389, + "longitudeAirport": -90.18667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "12", + "airportId": 4780, + "codeIataAirport": "MFJ", + "codeIataCity": "MFJ", + "codeIcaoAirport": "NFMO", + "codeIso2Country": "FJ", + "geonameId": "6453424", + "latitudeAirport": -18.566668, + "longitudeAirport": 179.93333, + "nameAirport": "Moala", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "8", + "airportId": 4781, + "codeIataAirport": "MFK", + "codeIataCity": "MFK", + "codeIcaoAirport": "RCMT", + "codeIso2Country": "TW", + "geonameId": "7668414", + "latitudeAirport": 26.166668, + "longitudeAirport": 119.916664, + "nameAirport": "Matsu", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "10", + "airportId": 4782, + "codeIataAirport": "MFL", + "codeIataCity": "MFL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298786", + "latitudeAirport": -19.666668, + "longitudeAirport": 144.9, + "nameAirport": "Mount Full Stop", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "airportId": 4783, + "codeIataAirport": "MFM", + "codeIataCity": "MFM", + "codeIcaoAirport": "VMMC", + "codeIso2Country": "MO", + "geonameId": "6284950", + "latitudeAirport": 22.156588, + "longitudeAirport": 113.57285, + "nameAirport": "Macau International", + "nameCountry": "Macao", + "phone": "", + "timezone": "Asia/Macau" + }, + { + "GMT": "12", + "airportId": 4784, + "codeIataAirport": "MFN", + "codeIataCity": "MFN", + "codeIcaoAirport": "NZMF", + "codeIso2Country": "NZ", + "geonameId": "7668386", + "latitudeAirport": -44.669445, + "longitudeAirport": 167.91112, + "nameAirport": "Milford Sound", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "10", + "airportId": 4785, + "codeIataAirport": "MFO", + "codeIataCity": "MFO", + "codeIcaoAirport": "AYNG", + "codeIso2Country": "PG", + "geonameId": "8299034", + "latitudeAirport": -5.566667, + "longitudeAirport": 151.78334, + "nameAirport": "Manguna", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9.30", + "airportId": 4786, + "codeIataAirport": "MFP", + "codeIataCity": "MFP", + "codeIcaoAirport": "YMCR", + "codeIso2Country": "AU", + "geonameId": "7731264", + "latitudeAirport": -22.1, + "longitudeAirport": 137.98334, + "nameAirport": "Manners Creek", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "1", + "airportId": 4787, + "codeIataAirport": "MFQ", + "codeIataCity": "MFQ", + "codeIcaoAirport": "DRRM", + "codeIso2Country": "NE", + "geonameId": "6296455", + "latitudeAirport": 13.5025, + "longitudeAirport": 7.125278, + "nameAirport": "Maradi", + "nameCountry": "Niger", + "phone": "", + "timezone": "Africa/Niamey" + }, + { + "GMT": "-8", + "airportId": 4788, + "codeIataAirport": "MFR", + "codeIataCity": "MFR", + "codeIcaoAirport": "KMFR", + "codeIso2Country": "US", + "geonameId": "5740108", + "latitudeAirport": 42.369026, + "longitudeAirport": -122.87312, + "nameAirport": "Rogue Valley International - Medford Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 4789, + "codeIataAirport": "MFS", + "codeIataCity": "MFS", + "codeIcaoAirport": "SKMF", + "codeIso2Country": "CO", + "geonameId": "7731265", + "latitudeAirport": 5.166667, + "longitudeAirport": -73.25, + "nameAirport": "Miraflores", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 4790, + "codeIataAirport": "MFT", + "codeIataCity": "MFT", + "codeIcaoAirport": "", + "codeIso2Country": "PE", + "geonameId": "7731266", + "latitudeAirport": -13.116667, + "longitudeAirport": -72.566666, + "nameAirport": "Machu Picchu", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "2", + "airportId": 4791, + "codeIataAirport": "MFU", + "codeIataCity": "MFU", + "codeIcaoAirport": "FLMF", + "codeIso2Country": "ZM", + "geonameId": "6355146", + "latitudeAirport": -13.266667, + "longitudeAirport": 31.933332, + "nameAirport": "Mfuwe", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-5", + "airportId": 4792, + "codeIataAirport": "MFV", + "codeIataCity": "MFV", + "codeIcaoAirport": "KFMV", + "codeIso2Country": "US", + "geonameId": "4772630", + "latitudeAirport": 37.63333, + "longitudeAirport": -75.78333, + "nameAirport": "Accomack County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 4793, + "codeIataAirport": "MFX", + "codeIataCity": "MFX", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 45.416668, + "longitudeAirport": 6.566667, + "nameAirport": "Meribel", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "3", + "airportId": 4794, + "codeIataAirport": "MFY", + "codeIataCity": "MFY", + "codeIcaoAirport": "", + "codeIso2Country": "YE", + "geonameId": "8260947", + "latitudeAirport": 13.666667, + "longitudeAirport": 46.00833, + "nameAirport": "Mayfa'ah", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "10", + "airportId": 4795, + "codeIataAirport": "MFZ", + "codeIataCity": "MFZ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298844", + "latitudeAirport": -6.133333, + "longitudeAirport": 149.11667, + "nameAirport": "Mesalia", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 4796, + "codeIataAirport": "MGA", + "codeIataCity": "MGA", + "codeIcaoAirport": "MNMG", + "codeIso2Country": "NI", + "geonameId": "6299891", + "latitudeAirport": 12.144838, + "longitudeAirport": -86.171265, + "nameAirport": "Augusto C Sandino", + "nameCountry": "Nicaragua", + "phone": "", + "timezone": "America/Managua" + }, + { + "GMT": "9.30", + "airportId": 4797, + "codeIataAirport": "MGB", + "codeIataCity": "MGB", + "codeIcaoAirport": "YMTG", + "codeIso2Country": "AU", + "geonameId": "7668746", + "latitudeAirport": -37.744072, + "longitudeAirport": 140.78271, + "nameAirport": "Mount Gambier", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-6", + "airportId": 4798, + "codeIataAirport": "MGC", + "codeIataCity": "MGC", + "codeIcaoAirport": "KMGC", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.7, + "longitudeAirport": -86.816666, + "nameAirport": "Michigan City Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 4799, + "codeIataAirport": "MGD", + "codeIataCity": "MGD", + "codeIcaoAirport": "SLMG", + "codeIso2Country": "BO", + "geonameId": "6300777", + "latitudeAirport": -13.325278, + "longitudeAirport": -64.124725, + "nameAirport": "Magdalena", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-5", + "airportId": 4800, + "codeIataAirport": "MGE", + "codeIataCity": "MGE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.916668, + "longitudeAirport": -84.51667, + "nameAirport": "Dobbins AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 4801, + "codeIataAirport": "MGF", + "codeIataCity": "MGF", + "codeIcaoAirport": "SBMG", + "codeIso2Country": "BR", + "geonameId": "6300642", + "latitudeAirport": -23.383612, + "longitudeAirport": -51.933334, + "nameAirport": "Regional De Maringa SBMG", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "2", + "airportId": 4802, + "codeIataAirport": "MGH", + "codeIataCity": "MGH", + "codeIcaoAirport": "FAMG", + "codeIso2Country": "ZA", + "geonameId": "6296909", + "latitudeAirport": -30.916668, + "longitudeAirport": 30.25, + "nameAirport": "Margate", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-5", + "airportId": 4803, + "codeIataAirport": "MGJ", + "codeIataCity": "MGJ", + "codeIcaoAirport": "KMGJ", + "codeIso2Country": "US", + "geonameId": "5129916", + "latitudeAirport": 41.516666, + "longitudeAirport": -74.26667, + "nameAirport": "Orange County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "6.30", + "airportId": 4804, + "codeIataAirport": "MGK", + "codeIataCity": "MGK", + "codeIcaoAirport": "VYMT", + "codeIso2Country": "MM", + "geonameId": "7731267", + "latitudeAirport": 20.283333, + "longitudeAirport": 98.9, + "nameAirport": "Mong Ton", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "1", + "airportId": 4805, + "codeIataAirport": "MGL", + "codeIataCity": "DUS", + "codeIcaoAirport": "EDLN", + "codeIso2Country": "DE", + "geonameId": "3206109", + "latitudeAirport": 51.35278, + "longitudeAirport": 6.544444, + "nameAirport": "Moenchen-gl. - Dus Exp", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "airportId": 4806, + "codeIataAirport": "MGM", + "codeIataCity": "MGM", + "codeIcaoAirport": "KMGM", + "codeIso2Country": "US", + "geonameId": "4076784", + "latitudeAirport": 32.305042, + "longitudeAirport": -86.39029, + "nameAirport": "Dannelly Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 4807, + "codeIataAirport": "MGN", + "codeIataCity": "MGN", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 9.288056, + "longitudeAirport": -74.845, + "nameAirport": "Baracoa", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "airportId": 4808, + "codeIataAirport": "MGO", + "codeIataCity": "MGO", + "codeIcaoAirport": "", + "codeIso2Country": "GA", + "geonameId": "2399211", + "latitudeAirport": -1.733333, + "longitudeAirport": 10.216667, + "nameAirport": "Manega", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "10", + "airportId": 4809, + "codeIataAirport": "MGP", + "codeIataCity": "MGP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298762", + "latitudeAirport": -4.033333, + "longitudeAirport": 152.96666, + "nameAirport": "Manga", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 4810, + "codeIataAirport": "MGQ", + "codeIataCity": "MGQ", + "codeIcaoAirport": "HCMM", + "codeIso2Country": "SO", + "geonameId": "6297286", + "latitudeAirport": 2.013333, + "longitudeAirport": 45.31333, + "nameAirport": "Mogadishu International Airport", + "nameCountry": "Somalia", + "phone": "", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-5", + "airportId": 4811, + "codeIataAirport": "MGR", + "codeIataCity": "MGR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4210397", + "latitudeAirport": 31.069445, + "longitudeAirport": -83.80278, + "nameAirport": "Moultrie Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-10", + "airportId": 4812, + "codeIataAirport": "MGS", + "codeIataCity": "MGS", + "codeIcaoAirport": "NCGO", + "codeIso2Country": "CK", + "geonameId": "0", + "latitudeAirport": -21.933332, + "longitudeAirport": -157.93333, + "nameAirport": "Mangaia Island", + "nameCountry": "Cook Islands", + "phone": "", + "timezone": "Pacific/Rarotonga" + }, + { + "GMT": "9.30", + "airportId": 4813, + "codeIataAirport": "MGT", + "codeIataCity": "MGT", + "codeIcaoAirport": "YMGB", + "codeIso2Country": "AU", + "geonameId": "7731268", + "latitudeAirport": -12.093703, + "longitudeAirport": 134.89352, + "nameAirport": "Milingimbi", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "6.30", + "airportId": 4814, + "codeIataAirport": "MGU", + "codeIataCity": "MGU", + "codeIcaoAirport": "VYMN", + "codeIso2Country": "MM", + "geonameId": "7731269", + "latitudeAirport": 18.958332, + "longitudeAirport": 93.73889, + "nameAirport": "Manaung", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "8", + "airportId": 4815, + "codeIataAirport": "MGV", + "codeIataCity": "MGV", + "codeIcaoAirport": "YMGR", + "codeIso2Country": "AU", + "geonameId": "7910395", + "latitudeAirport": -18.616667, + "longitudeAirport": 126.86667, + "nameAirport": "Margaret River", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "airportId": 4816, + "codeIataAirport": "MGW", + "codeIataCity": "MGW", + "codeIcaoAirport": "KMGW", + "codeIso2Country": "US", + "geonameId": "4815362", + "latitudeAirport": 39.642776, + "longitudeAirport": -79.91583, + "nameAirport": "Morgantown", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 4817, + "codeIataAirport": "MGX", + "codeIataCity": "MGX", + "codeIcaoAirport": "FOGI", + "codeIso2Country": "GA", + "geonameId": "7730526", + "latitudeAirport": -2.25, + "longitudeAirport": 11.0, + "nameAirport": "Moabi", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-5", + "airportId": 4818, + "codeIataAirport": "MGY", + "codeIataCity": "DAY", + "codeIcaoAirport": "KMGY", + "codeIso2Country": "US", + "geonameId": "4509896", + "latitudeAirport": 39.933334, + "longitudeAirport": -84.25444, + "nameAirport": "Dayton-Wright Brothers Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "6.30", + "airportId": 4819, + "codeIataAirport": "MGZ", + "codeIataCity": "MGZ", + "codeIcaoAirport": "VYME", + "codeIso2Country": "MM", + "geonameId": "7668660", + "latitudeAirport": 12.45, + "longitudeAirport": 98.61667, + "nameAirport": "Myeik", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-4", + "airportId": 4820, + "codeIataAirport": "MHA", + "codeIataCity": "MHA", + "codeIcaoAirport": "SYMD", + "codeIso2Country": "GY", + "geonameId": "7731271", + "latitudeAirport": 5.25, + "longitudeAirport": -59.15, + "nameAirport": "Mahdia", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "12", + "airportId": 4821, + "codeIataAirport": "MHB", + "codeIataCity": "AKL", + "codeIcaoAirport": "", + "codeIso2Country": "NZ", + "geonameId": "0", + "latitudeAirport": -36.845, + "longitudeAirport": 174.78473, + "nameAirport": "Mechanics Bay", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-4", + "airportId": 4822, + "codeIataAirport": "MHC", + "codeIataCity": "WCA", + "codeIcaoAirport": "SCPQ", + "codeIso2Country": "CL", + "geonameId": "8410843", + "latitudeAirport": -42.34611, + "longitudeAirport": -73.71389, + "nameAirport": "Macmahon Camp 4", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "3.30", + "airportId": 4823, + "codeIataAirport": "MHD", + "codeIataCity": "MHD", + "codeIcaoAirport": "OIMM", + "codeIso2Country": "IR", + "geonameId": "6300065", + "latitudeAirport": 36.227173, + "longitudeAirport": 59.64165, + "nameAirport": "Mashad", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-6", + "airportId": 4824, + "codeIataAirport": "MHE", + "codeIataCity": "MHE", + "codeIcaoAirport": "KMHE", + "codeIso2Country": "US", + "geonameId": "5229797", + "latitudeAirport": 43.775276, + "longitudeAirport": -98.038055, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 4825, + "codeIataAirport": "MHF", + "codeIataCity": "MHF", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8298725", + "latitudeAirport": 2.15, + "longitudeAirport": -70.583336, + "nameAirport": "Morichal", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "airportId": 4826, + "codeIataAirport": "MHG", + "codeIataCity": "MHG", + "codeIcaoAirport": "EDFM", + "codeIso2Country": "DE", + "geonameId": "6296513", + "latitudeAirport": 49.476578, + "longitudeAirport": 8.521081, + "nameAirport": "Mannheim Airport", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "airportId": 4827, + "codeIataAirport": "MHH", + "codeIataCity": "MHH", + "codeIcaoAirport": "MYAM", + "codeIso2Country": "BS", + "geonameId": "7910174", + "latitudeAirport": 26.513428, + "longitudeAirport": -77.07712, + "nameAirport": "Marsh Harbour Airport", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "3", + "airportId": 4828, + "codeIataAirport": "MHI", + "codeIataCity": "MHI", + "codeIcaoAirport": "HDMO", + "codeIso2Country": "DJ", + "geonameId": "7730607", + "latitudeAirport": 11.0, + "longitudeAirport": 43.0, + "nameAirport": "Musha", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Djibouti" + }, + { + "GMT": "-6", + "airportId": 4829, + "codeIataAirport": "MHK", + "codeIataCity": "MHK", + "codeIcaoAirport": "KMHK", + "codeIso2Country": "US", + "geonameId": "4274998", + "latitudeAirport": 39.142223, + "longitudeAirport": -96.66889, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 4830, + "codeIataAirport": "MHL", + "codeIataCity": "MHL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.11667, + "longitudeAirport": -93.2, + "nameAirport": "Memorial Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 4831, + "codeIataAirport": "MHM", + "codeIataCity": "MHM", + "codeIcaoAirport": "PAMH", + "codeIso2Country": "US", + "geonameId": "5868953", + "latitudeAirport": 63.869167, + "longitudeAirport": -152.28583, + "nameAirport": "Intermediate", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "airportId": 4832, + "codeIataAirport": "MHN", + "codeIataCity": "MHN", + "codeIcaoAirport": "KMHN", + "codeIso2Country": "US", + "geonameId": "5697774", + "latitudeAirport": 42.05, + "longitudeAirport": -101.01667, + "nameAirport": "Mullen", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "airportId": 4833, + "codeIataAirport": "MHO", + "codeIataCity": "MHO", + "codeIcaoAirport": "YMHO", + "codeIso2Country": "AU", + "geonameId": "7731272", + "latitudeAirport": -17.133333, + "longitudeAirport": 125.76667, + "nameAirport": "Mount House", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "3", + "airportId": 4834, + "codeIataAirport": "MHP", + "codeIataCity": "MSQ", + "codeIcaoAirport": "UMMM", + "codeIso2Country": "BY", + "geonameId": "6300981", + "latitudeAirport": 53.85, + "longitudeAirport": 27.55, + "nameAirport": "Minsk International 1", + "nameCountry": "Belarus", + "phone": "", + "timezone": "Europe/Minsk" + }, + { + "GMT": "2", + "airportId": 4835, + "codeIataAirport": "MHQ", + "codeIataCity": "MHQ", + "codeIcaoAirport": "EFMA", + "codeIso2Country": "AX", + "geonameId": "6296553", + "latitudeAirport": 60.123333, + "longitudeAirport": 19.896667, + "nameAirport": "Mariehamn", + "nameCountry": "Aland Islands", + "phone": "", + "timezone": "Europe/Mariehamn" + }, + { + "GMT": "-8", + "airportId": 4836, + "codeIataAirport": "MHR", + "codeIataCity": "SAC", + "codeIcaoAirport": "KMHR", + "codeIso2Country": "US", + "geonameId": "5371066", + "latitudeAirport": 38.05, + "longitudeAirport": -121.933334, + "nameAirport": "Sacramento Mather Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-8", + "airportId": 4837, + "codeIataAirport": "MHS", + "codeIataCity": "MHS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5568295", + "latitudeAirport": 41.316666, + "longitudeAirport": -122.316666, + "nameAirport": "Rep", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 4838, + "codeIataAirport": "MHT", + "codeIataCity": "MHT", + "codeIcaoAirport": "KMHT", + "codeIso2Country": "US", + "geonameId": "5089194", + "latitudeAirport": 42.92786, + "longitudeAirport": -71.43844, + "nameAirport": "Manchester-boston Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 4839, + "codeIataAirport": "MHU", + "codeIataCity": "MHU", + "codeIcaoAirport": "YHOT", + "codeIso2Country": "AU", + "geonameId": "7668722", + "latitudeAirport": -36.966667, + "longitudeAirport": 147.18333, + "nameAirport": "Mount Hotham", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-8", + "airportId": 4840, + "codeIataAirport": "MHV", + "codeIataCity": "MHV", + "codeIcaoAirport": "KMHV", + "codeIso2Country": "US", + "geonameId": "5373966", + "latitudeAirport": 35.066666, + "longitudeAirport": -118.15, + "nameAirport": "Kern County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "airportId": 4841, + "codeIataAirport": "MHW", + "codeIataCity": "MHW", + "codeIcaoAirport": "SLAG", + "codeIso2Country": "BO", + "geonameId": "7731273", + "latitudeAirport": -19.8325, + "longitudeAirport": -63.966667, + "nameAirport": "Monteagudo", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-10", + "airportId": 4842, + "codeIataAirport": "MHX", + "codeIataCity": "MHX", + "codeIcaoAirport": "NCMH", + "codeIso2Country": "CK", + "geonameId": "7730685", + "latitudeAirport": -10.366667, + "longitudeAirport": -161.0, + "nameAirport": "Manihiki Island", + "nameCountry": "Cook Islands", + "phone": "", + "timezone": "Pacific/Rarotonga" + }, + { + "GMT": "10", + "airportId": 4843, + "codeIataAirport": "MHY", + "codeIataCity": "MHY", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8261035", + "latitudeAirport": -8.7, + "longitudeAirport": 141.63333, + "nameAirport": "Morehead", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 4844, + "codeIataAirport": "MHZ", + "codeIataCity": "MHZ", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2642543", + "latitudeAirport": 52.36667, + "longitudeAirport": 0.483333, + "nameAirport": "Mildenhall Airport", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "airportId": 4845, + "codeIataAirport": "MIA", + "codeIataCity": "MIA", + "codeIcaoAirport": "KMIA", + "codeIso2Country": "US", + "geonameId": "4164181", + "latitudeAirport": 25.796, + "longitudeAirport": -80.27824, + "nameAirport": "Miami International Airport", + "nameCountry": "United States", + "phone": "305-876-7000", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 4846, + "codeIataAirport": "MIB", + "codeIataCity": "MOT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 48.233334, + "longitudeAirport": -101.3, + "nameAirport": "Minot AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 4847, + "codeIataAirport": "MIC", + "codeIataCity": "MSP", + "codeIcaoAirport": "KMIC", + "codeIso2Country": "US", + "geonameId": "5023572", + "latitudeAirport": 45.061943, + "longitudeAirport": -93.35389, + "nameAirport": "Crystal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 4848, + "codeIataAirport": "MID", + "codeIataCity": "MID", + "codeIcaoAirport": "MMMD", + "codeIso2Country": "MX", + "geonameId": "6299855", + "latitudeAirport": 20.933823, + "longitudeAirport": -89.66375, + "nameAirport": "Rejon", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Merida" + }, + { + "GMT": "-5", + "airportId": 4849, + "codeIataAirport": "MIE", + "codeIataCity": "MIE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "6298650", + "latitudeAirport": 40.239723, + "longitudeAirport": -85.39445, + "nameAirport": "Delaware County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-6", + "airportId": 4850, + "codeIataAirport": "MIF", + "codeIataCity": "MIF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5526514", + "latitudeAirport": 31.6, + "longitudeAirport": -102.9, + "nameAirport": "Roy Hurd Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 4851, + "codeIataAirport": "MIG", + "codeIataCity": "MIG", + "codeIcaoAirport": "EDPN", + "codeIso2Country": "CN", + "geonameId": "7730302", + "latitudeAirport": 31.43111, + "longitudeAirport": 104.73805, + "nameAirport": "Mian Yang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 4852, + "codeIataAirport": "MIH", + "codeIataCity": "MIH", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -26.483334, + "longitudeAirport": 147.96666, + "nameAirport": "Mitchell Plateau", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-3", + "airportId": 4853, + "codeIataAirport": "MII", + "codeIataCity": "MII", + "codeIcaoAirport": "SBML", + "codeIso2Country": "BR", + "geonameId": "7730160", + "latitudeAirport": -22.2, + "longitudeAirport": -49.933334, + "nameAirport": "Dr Gastao Vidigal", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "12", + "airportId": 4854, + "codeIataAirport": "MIJ", + "codeIataCity": "MIJ", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 6.083333, + "longitudeAirport": 171.75, + "nameAirport": "Mili Island", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "2", + "airportId": 4855, + "codeIataAirport": "MIK", + "codeIataCity": "MIK", + "codeIcaoAirport": "EFMI", + "codeIso2Country": "FI", + "geonameId": "6296554", + "latitudeAirport": 61.683887, + "longitudeAirport": 27.213057, + "nameAirport": "Mikkeli", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "10", + "airportId": 4856, + "codeIataAirport": "MIM", + "codeIataCity": "MIM", + "codeIcaoAirport": "YMER", + "codeIso2Country": "AU", + "geonameId": "7668741", + "latitudeAirport": -36.910046, + "longitudeAirport": 149.90202, + "nameAirport": "Merimbula", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "9.30", + "airportId": 4857, + "codeIataAirport": "MIN", + "codeIataCity": "MIN", + "codeIcaoAirport": "YMPA", + "codeIso2Country": "AU", + "geonameId": "7731274", + "latitudeAirport": -32.833332, + "longitudeAirport": 134.83333, + "nameAirport": "Minnipa", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-6", + "airportId": 4858, + "codeIataAirport": "MIO", + "codeIataCity": "MIO", + "codeIcaoAirport": "KMIO", + "codeIso2Country": "US", + "geonameId": "4542697", + "latitudeAirport": 36.88333, + "longitudeAirport": -94.9, + "nameAirport": "Miami", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 4859, + "codeIataAirport": "MIP", + "codeIataCity": "MIP", + "codeIcaoAirport": "LLMR", + "codeIso2Country": "IL", + "geonameId": "6354941", + "latitudeAirport": 30.6, + "longitudeAirport": 34.8, + "nameAirport": "Mitspeh Ramon", + "nameCountry": "Israel", + "phone": "", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "-6", + "airportId": 4860, + "codeIataAirport": "MIQ", + "codeIataCity": "OMA", + "codeIcaoAirport": "KMLE", + "codeIso2Country": "US", + "geonameId": "5073146", + "latitudeAirport": 41.301945, + "longitudeAirport": -95.89445, + "nameAirport": "Simón Bolívar International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 4861, + "codeIataAirport": "MIR", + "codeIataCity": "MIR", + "codeIcaoAirport": "DTMB", + "codeIso2Country": "TN", + "geonameId": "6296464", + "latitudeAirport": 35.76108, + "longitudeAirport": 10.753155, + "nameAirport": "Habib Bourguiba", + "nameCountry": "Tunisia", + "phone": "", + "timezone": "Africa/Tunis" + }, + { + "GMT": "10", + "airportId": 4862, + "codeIataAirport": "MIS", + "codeIataCity": "MIS", + "codeIcaoAirport": "AYMS", + "codeIso2Country": "PG", + "geonameId": "7730412", + "latitudeAirport": -10.5, + "longitudeAirport": 152.84166, + "nameAirport": "Misima Island", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "airportId": 4863, + "codeIataAirport": "MIT", + "codeIataCity": "MIT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 35.5, + "longitudeAirport": -119.26667, + "nameAirport": "Kern County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 4864, + "codeIataAirport": "MIU", + "codeIataCity": "MIU", + "codeIcaoAirport": "DNMA", + "codeIso2Country": "NG", + "geonameId": "2331447", + "latitudeAirport": 11.844167, + "longitudeAirport": 13.068056, + "nameAirport": "Maiduguri", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-5", + "airportId": 4865, + "codeIataAirport": "MIV", + "codeIataCity": "MIV", + "codeIcaoAirport": "KMIV", + "codeIso2Country": "US", + "geonameId": "4503079", + "latitudeAirport": 39.4, + "longitudeAirport": -75.03333, + "nameAirport": "Millville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 4866, + "codeIataAirport": "MIW", + "codeIataCity": "MIW", + "codeIcaoAirport": "KMIW", + "codeIso2Country": "US", + "geonameId": "4866382", + "latitudeAirport": 42.166668, + "longitudeAirport": -92.916664, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 4867, + "codeIataAirport": "MIX", + "codeIataCity": "MIX", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8298726", + "latitudeAirport": -6.25, + "longitudeAirport": -59.0, + "nameAirport": "Miriti", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "9.30", + "airportId": 4868, + "codeIataAirport": "MIY", + "codeIataCity": "MIY", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8299234", + "latitudeAirport": -18.81, + "longitudeAirport": 137.08, + "nameAirport": "Mittiebah", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "9.30", + "airportId": 4869, + "codeIataAirport": "MIZ", + "codeIataCity": "MIZ", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298954", + "latitudeAirport": -14.0, + "longitudeAirport": 134.1, + "nameAirport": "Mainoru", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "3", + "airportId": 4870, + "codeIataAirport": "MJA", + "codeIataCity": "MJA", + "codeIcaoAirport": "FMSJ", + "codeIso2Country": "MG", + "geonameId": "1060682", + "latitudeAirport": -21.416668, + "longitudeAirport": 44.316666, + "nameAirport": "Manja", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "12", + "airportId": 4871, + "codeIataAirport": "MJB", + "codeIataCity": "MJB", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 10.283333, + "longitudeAirport": 170.88333, + "nameAirport": "Mejit Island", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "0", + "airportId": 4872, + "codeIataAirport": "MJC", + "codeIataCity": "MJC", + "codeIcaoAirport": "DIMN", + "codeIso2Country": "CI", + "geonameId": "6296440", + "latitudeAirport": 7.381667, + "longitudeAirport": -7.528333, + "nameAirport": "Man", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "5", + "airportId": 4873, + "codeIataAirport": "MJD", + "codeIataCity": "MJD", + "codeIcaoAirport": "OPMJ", + "codeIso2Country": "PK", + "geonameId": "7668401", + "latitudeAirport": 27.33639, + "longitudeAirport": 68.14167, + "nameAirport": "Mohenjodaro", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "12", + "airportId": 4874, + "codeIataAirport": "MJE", + "codeIataCity": "MJE", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "7303978", + "latitudeAirport": 9.0, + "longitudeAirport": 170.0, + "nameAirport": "Majkin", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "1", + "airportId": 4875, + "codeIataAirport": "MJF", + "codeIataCity": "MJF", + "codeIcaoAirport": "ENMS", + "codeIso2Country": "NO", + "geonameId": "6296753", + "latitudeAirport": 65.78439, + "longitudeAirport": 13.218328, + "nameAirport": "Kjaerstad", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "airportId": 4876, + "codeIataAirport": "MJG", + "codeIataCity": "MJG", + "codeIcaoAirport": "", + "codeIso2Country": "CU", + "geonameId": "3547324", + "latitudeAirport": 21.758333, + "longitudeAirport": -79.0, + "nameAirport": "Mayajigua", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "2", + "airportId": 4877, + "codeIataAirport": "MJI", + "codeIataCity": "TIP", + "codeIcaoAirport": "HLLM", + "codeIso2Country": "LY", + "geonameId": "7730096", + "latitudeAirport": 32.89722, + "longitudeAirport": 13.277778, + "nameAirport": "Mitiga", + "nameCountry": "Libya", + "phone": "", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "10", + "airportId": 4878, + "codeIataAirport": "MJJ", + "codeIataCity": "MJJ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298831", + "latitudeAirport": -5.7, + "longitudeAirport": 145.25, + "nameAirport": "Moki", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 4879, + "codeIataAirport": "MJK", + "codeIataCity": "MJK", + "codeIcaoAirport": "YSHK", + "codeIso2Country": "AU", + "geonameId": "2065971", + "latitudeAirport": -25.888159, + "longitudeAirport": 113.57695, + "nameAirport": "Shark Bay", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "airportId": 4880, + "codeIataAirport": "MJL", + "codeIataCity": "MJL", + "codeIcaoAirport": "FOGM", + "codeIso2Country": "GA", + "geonameId": "6297064", + "latitudeAirport": -1.817778, + "longitudeAirport": 10.924167, + "nameAirport": "Mouila", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "2", + "airportId": 4881, + "codeIataAirport": "MJM", + "codeIataCity": "MJM", + "codeIcaoAirport": "FZWA", + "codeIso2Country": "CD", + "geonameId": "6297165", + "latitudeAirport": -6.15, + "longitudeAirport": 23.633333, + "nameAirport": "Mbuji-Mayi", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "3", + "airportId": 4882, + "codeIataAirport": "MJN", + "codeIataCity": "MJN", + "codeIcaoAirport": "FMNM", + "codeIso2Country": "MG", + "geonameId": "6297047", + "latitudeAirport": -15.665833, + "longitudeAirport": 46.353058, + "nameAirport": "Amborovy", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "2", + "airportId": 4883, + "codeIataAirport": "MJO", + "codeIataCity": "MJO", + "codeIcaoAirport": "", + "codeIso2Country": "NA", + "geonameId": "8260868", + "latitudeAirport": -21.018333, + "longitudeAirport": 16.469168, + "nameAirport": "Mount Etjo Lodge", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "8", + "airportId": 4884, + "codeIataAirport": "MJP", + "codeIataCity": "MJP", + "codeIcaoAirport": "YMJM", + "codeIso2Country": "AU", + "geonameId": "7731275", + "latitudeAirport": -34.233334, + "longitudeAirport": 116.1, + "nameAirport": "Manjimup", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "airportId": 4885, + "codeIataAirport": "MJQ", + "codeIataCity": "MJQ", + "codeIcaoAirport": "KMJQ", + "codeIso2Country": "US", + "geonameId": "5031701", + "latitudeAirport": 43.61667, + "longitudeAirport": -95.01667, + "nameAirport": "Jackson", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 4886, + "codeIataAirport": "MJR", + "codeIataCity": "MJR", + "codeIcaoAirport": "", + "codeIso2Country": "AR", + "geonameId": "3430668", + "latitudeAirport": -38.25, + "longitudeAirport": -57.833332, + "nameAirport": "Miramar", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "2", + "airportId": 4887, + "codeIataAirport": "MJS", + "codeIataCity": "MJS", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "8299150", + "latitudeAirport": -25.35, + "longitudeAirport": 32.22, + "nameAirport": "Maganja Da Costa", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "2", + "airportId": 4888, + "codeIataAirport": "MJT", + "codeIataCity": "MJT", + "codeIcaoAirport": "LGMT", + "codeIso2Country": "GR", + "geonameId": "6299501", + "latitudeAirport": 39.05611, + "longitudeAirport": 26.599443, + "nameAirport": "Mytilene International Airport", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "8", + "airportId": 4889, + "codeIataAirport": "MJU", + "codeIataCity": "MJU", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "1636556", + "latitudeAirport": -2.5, + "longitudeAirport": 118.833336, + "nameAirport": "Mamuju", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "1", + "airportId": 4890, + "codeIataAirport": "MJV", + "codeIataCity": "MJV", + "codeIcaoAirport": "LELC", + "codeIso2Country": "ES", + "geonameId": "6299341", + "latitudeAirport": 37.77521, + "longitudeAirport": -0.81904, + "nameAirport": "San Javier", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "2", + "airportId": 4891, + "codeIataAirport": "MJW", + "codeIataCity": "MJW", + "codeIcaoAirport": "", + "codeIso2Country": "ZW", + "geonameId": "8298816", + "latitudeAirport": -21.233334, + "longitudeAirport": 32.333332, + "nameAirport": "Mahenye", + "nameCountry": "Zimbabwe", + "phone": "", + "timezone": "Africa/Harare" + }, + { + "GMT": "-5", + "airportId": 4892, + "codeIataAirport": "MJX", + "codeIataCity": "MJX", + "codeIcaoAirport": "KMJX", + "codeIso2Country": "US", + "geonameId": "4504476", + "latitudeAirport": 39.966667, + "longitudeAirport": -74.2, + "nameAirport": "Robert J. Miller", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "7", + "airportId": 4893, + "codeIataAirport": "MJY", + "codeIataCity": "MJY", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "0", + "latitudeAirport": -2.733333, + "longitudeAirport": 103.566666, + "nameAirport": "Mangunjaya", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "9", + "airportId": 4894, + "codeIataAirport": "MJZ", + "codeIataCity": "MJZ", + "codeIcaoAirport": "UERR", + "codeIso2Country": "RU", + "geonameId": "6300928", + "latitudeAirport": 62.533333, + "longitudeAirport": 114.03333, + "nameAirport": "Mirnyj", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "1", + "airportId": 4895, + "codeIataAirport": "MKA", + "codeIataCity": "MKA", + "codeIcaoAirport": "LKMR", + "codeIso2Country": "CZ", + "geonameId": "7730634", + "latitudeAirport": 49.983334, + "longitudeAirport": 12.716667, + "nameAirport": "Marianske Lazne", + "nameCountry": "Czech Republic", + "phone": "", + "timezone": "Europe/Prague" + }, + { + "GMT": "1", + "airportId": 4896, + "codeIataAirport": "MKB", + "codeIataCity": "MKB", + "codeIcaoAirport": "FOOE", + "codeIso2Country": "GA", + "geonameId": "6297069", + "latitudeAirport": 1.05, + "longitudeAirport": 13.833333, + "nameAirport": "Mekambo", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-6", + "airportId": 4897, + "codeIataAirport": "MKC", + "codeIataCity": "MKC", + "codeIcaoAirport": "KMKC", + "codeIso2Country": "US", + "geonameId": "6298654", + "latitudeAirport": 39.12417, + "longitudeAirport": -94.59194, + "nameAirport": "Downtown", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 4898, + "codeIataAirport": "MKE", + "codeIataCity": "MKE", + "codeIcaoAirport": "KMKE", + "codeIso2Country": "US", + "geonameId": "5263045", + "latitudeAirport": 42.948093, + "longitudeAirport": -87.90267, + "nameAirport": "General Mitchell International", + "nameCountry": "United States", + "phone": "414-747-5300", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 4899, + "codeIataAirport": "MKF", + "codeIataCity": "CSG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.466667, + "longitudeAirport": -84.98333, + "nameAirport": "Mckenna AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 4900, + "codeIataAirport": "MKG", + "codeIataCity": "MKG", + "codeIcaoAirport": "KMKG", + "codeIso2Country": "US", + "geonameId": "5003137", + "latitudeAirport": 43.170555, + "longitudeAirport": -86.2375, + "nameAirport": "Muskegon", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "2", + "airportId": 4901, + "codeIataAirport": "MKH", + "codeIataCity": "MKH", + "codeIcaoAirport": "FXMK", + "codeIso2Country": "LS", + "geonameId": "7730538", + "latitudeAirport": -29.166668, + "longitudeAirport": 29.166668, + "nameAirport": "Mokhotlong", + "nameCountry": "Lesotho", + "phone": "", + "timezone": "Africa/Maseru" + }, + { + "GMT": "1", + "airportId": 4902, + "codeIataAirport": "MKI", + "codeIataCity": "MKI", + "codeIcaoAirport": "FEGE", + "codeIso2Country": "CF", + "geonameId": "236950", + "latitudeAirport": 5.316667, + "longitudeAirport": 25.95, + "nameAirport": "Mboki", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "1", + "airportId": 4903, + "codeIataAirport": "MKJ", + "codeIataCity": "MKJ", + "codeIcaoAirport": "FCOM", + "codeIso2Country": "CG", + "geonameId": "2573519", + "latitudeAirport": -0.020278, + "longitudeAirport": 15.576667, + "nameAirport": "Makoua", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-10", + "airportId": 4904, + "codeIataAirport": "MKK", + "codeIataCity": "MKK", + "codeIcaoAirport": "PHMK", + "codeIso2Country": "US", + "geonameId": "5851208", + "latitudeAirport": 21.152779, + "longitudeAirport": -157.1, + "nameAirport": "Molokai", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "-6", + "airportId": 4905, + "codeIataAirport": "MKL", + "codeIataCity": "MKL", + "codeIcaoAirport": "KMKL", + "codeIso2Country": "US", + "geonameId": "4640715", + "latitudeAirport": 35.60139, + "longitudeAirport": -88.915276, + "nameAirport": "Mc Kellar-Sipes Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 4906, + "codeIataAirport": "MKM", + "codeIataCity": "MKM", + "codeIcaoAirport": "WBGK", + "codeIso2Country": "MY", + "geonameId": "7731278", + "latitudeAirport": 2.906944, + "longitudeAirport": 112.07972, + "nameAirport": "Mukah", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "10", + "airportId": 4907, + "codeIataAirport": "MKN", + "codeIataCity": "MKN", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2091715", + "latitudeAirport": -4.016667, + "longitudeAirport": 153.675, + "nameAirport": "Malekolon", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 4908, + "codeIataAirport": "MKO", + "codeIataCity": "MKO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4543338", + "latitudeAirport": 35.660557, + "longitudeAirport": -95.36667, + "nameAirport": "Davis Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-10", + "airportId": 4909, + "codeIataAirport": "MKP", + "codeIataCity": "MKP", + "codeIcaoAirport": "NTGM", + "codeIso2Country": "PF", + "geonameId": "7730124", + "latitudeAirport": -16.587921, + "longitudeAirport": -143.65436, + "nameAirport": "Makemo", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "9", + "airportId": 4910, + "codeIataAirport": "MKQ", + "codeIataCity": "MKQ", + "codeIcaoAirport": "WAKK", + "codeIso2Country": "ID", + "geonameId": "6301188", + "latitudeAirport": -8.516667, + "longitudeAirport": 140.5, + "nameAirport": "Mopah", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "airportId": 4911, + "codeIataAirport": "MKR", + "codeIataCity": "MKR", + "codeIcaoAirport": "YMEK", + "codeIso2Country": "AU", + "geonameId": "6301335", + "latitudeAirport": -26.61113, + "longitudeAirport": 118.54596, + "nameAirport": "Meekatharra", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "3", + "airportId": 4912, + "codeIataAirport": "MKS", + "codeIataCity": "MKS", + "codeIcaoAirport": "HAMA", + "codeIso2Country": "ET", + "geonameId": "331195", + "latitudeAirport": 11.683333, + "longitudeAirport": 38.15, + "nameAirport": "Mekane Selam", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-6", + "airportId": 4913, + "codeIataAirport": "MKT", + "codeIataCity": "MKT", + "codeIcaoAirport": "KMKT", + "codeIso2Country": "US", + "geonameId": "5036429", + "latitudeAirport": 44.22361, + "longitudeAirport": -93.918335, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 4914, + "codeIataAirport": "MKU", + "codeIataCity": "MKU", + "codeIcaoAirport": "FOOK", + "codeIso2Country": "GA", + "geonameId": "6297071", + "latitudeAirport": 0.559167, + "longitudeAirport": 12.861111, + "nameAirport": "Makokou", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "9.30", + "airportId": 4915, + "codeIataAirport": "MKV", + "codeIataCity": "MKV", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8299181", + "latitudeAirport": -25.966667, + "longitudeAirport": 133.25, + "nameAirport": "Mt Cavenagh", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "9", + "airportId": 4916, + "codeIataAirport": "MKW", + "codeIataCity": "MKW", + "codeIcaoAirport": "WASR", + "codeIso2Country": "ID", + "geonameId": "6301207", + "latitudeAirport": -0.893056, + "longitudeAirport": 134.05278, + "nameAirport": "Rendani", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "10", + "airportId": 4917, + "codeIataAirport": "MKY", + "codeIataCity": "MKY", + "codeIcaoAirport": "YBMK", + "codeIso2Country": "AU", + "geonameId": "6301299", + "latitudeAirport": -21.176285, + "longitudeAirport": 149.1818, + "nameAirport": "Mackay", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "airportId": 4918, + "codeIataAirport": "MKZ", + "codeIataCity": "MKZ", + "codeIcaoAirport": "WMKM", + "codeIso2Country": "MY", + "geonameId": "1755346", + "latitudeAirport": 2.264167, + "longitudeAirport": 102.253334, + "nameAirport": "Batu Berendam", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "1", + "airportId": 4919, + "codeIataAirport": "MLA", + "codeIataCity": "MLA", + "codeIcaoAirport": "LMML", + "codeIso2Country": "MT", + "geonameId": "2562787", + "latitudeAirport": 35.849777, + "longitudeAirport": 14.495401, + "nameAirport": "Malta International", + "nameCountry": "Malta", + "phone": "", + "timezone": "Europe/Malta" + }, + { + "GMT": "-5", + "airportId": 4920, + "codeIataAirport": "MLB", + "codeIataCity": "MLB", + "codeIcaoAirport": "KMLB", + "codeIso2Country": "US", + "geonameId": "6298661", + "latitudeAirport": 28.1025, + "longitudeAirport": -80.63028, + "nameAirport": "Melbourne International Airport", + "nameCountry": "United States", + "phone": "321-723-6227", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 4921, + "codeIataAirport": "MLC", + "codeIataCity": "MLC", + "codeIcaoAirport": "KMLC", + "codeIso2Country": "US", + "geonameId": "4542370", + "latitudeAirport": 34.88028, + "longitudeAirport": -95.785, + "nameAirport": "Mc Alester", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 4922, + "codeIataAirport": "MLD", + "codeIataCity": "MLD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5600035", + "latitudeAirport": 42.2, + "longitudeAirport": -112.45, + "nameAirport": "Malad City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Boise" + }, + { + "GMT": "5", + "airportId": 4923, + "codeIataAirport": "MLE", + "codeIataCity": "MLE", + "codeIcaoAirport": "VRMM", + "codeIso2Country": "MV", + "geonameId": "6301875", + "latitudeAirport": 4.201389, + "longitudeAirport": 73.524445, + "nameAirport": "Malé International Airport", + "nameCountry": "Maldives", + "phone": "", + "timezone": "Indian/Maldives" + }, + { + "GMT": "-7", + "airportId": 4924, + "codeIataAirport": "MLF", + "codeIataCity": "MLF", + "codeIcaoAirport": "KMLF", + "codeIso2Country": "US", + "geonameId": "5543140", + "latitudeAirport": 38.433334, + "longitudeAirport": -113.01667, + "nameAirport": "Milford", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "7", + "airportId": 4925, + "codeIataAirport": "MLG", + "codeIataCity": "MLG", + "codeIcaoAirport": "WIAS", + "codeIso2Country": "ID", + "geonameId": "0", + "latitudeAirport": -7.930615, + "longitudeAirport": 112.71099, + "nameAirport": "Abdul Rahman Saleh", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "1", + "airportId": 4926, + "codeIataAirport": "MLH", + "codeIataCity": "EAP", + "codeIcaoAirport": "LFSB", + "codeIso2Country": "CH", + "geonameId": "6299466", + "latitudeAirport": 47.599323, + "longitudeAirport": 7.532864, + "nameAirport": "Euroairport France", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "-6", + "airportId": 4927, + "codeIataAirport": "MLI", + "codeIataCity": "MLI", + "codeIcaoAirport": "KMLI", + "codeIso2Country": "US", + "geonameId": "4906974", + "latitudeAirport": 41.453896, + "longitudeAirport": -90.50611, + "nameAirport": "Quad-City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 4928, + "codeIataAirport": "MLJ", + "codeIataCity": "MLJ", + "codeIcaoAirport": "KMLJ", + "codeIso2Country": "US", + "geonameId": "4180873", + "latitudeAirport": 33.083332, + "longitudeAirport": -83.23333, + "nameAirport": "Baldwin County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 4929, + "codeIataAirport": "MLK", + "codeIataCity": "MLK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 48.494415, + "longitudeAirport": -107.9095, + "nameAirport": "Malta", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "airportId": 4930, + "codeIataAirport": "MLL", + "codeIataCity": "MLL", + "codeIcaoAirport": "PADM", + "codeIso2Country": "US", + "geonameId": "5868317", + "latitudeAirport": 61.865833, + "longitudeAirport": -162.0689, + "nameAirport": "Marshall", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 4931, + "codeIataAirport": "MLM", + "codeIataCity": "MLM", + "codeIcaoAirport": "MMMM", + "codeIso2Country": "MX", + "geonameId": "6299856", + "latitudeAirport": 19.84351, + "longitudeAirport": -101.02693, + "nameAirport": "Francisco J. Múgica Internacional", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "1", + "airportId": 4932, + "codeIataAirport": "MLN", + "codeIataCity": "MLN", + "codeIcaoAirport": "GEML", + "codeIso2Country": "ES", + "geonameId": "6297192", + "latitudeAirport": 35.277077, + "longitudeAirport": -2.957473, + "nameAirport": "Melilla", + "nameCountry": "Spain", + "phone": "", + "timezone": "Africa/Ceuta" + }, + { + "GMT": "2", + "airportId": 4933, + "codeIataAirport": "MLO", + "codeIataCity": "MLO", + "codeIcaoAirport": "LGML", + "codeIso2Country": "GR", + "geonameId": "6453409", + "latitudeAirport": 36.69611, + "longitudeAirport": 24.475, + "nameAirport": "Milos", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "8", + "airportId": 4934, + "codeIataAirport": "MLP", + "codeIataCity": "MLP", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "1703352", + "latitudeAirport": 7.618333, + "longitudeAirport": 124.0575, + "nameAirport": "Malabang", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "10", + "airportId": 4935, + "codeIataAirport": "MLQ", + "codeIataCity": "MLQ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2091756", + "latitudeAirport": -7.991667, + "longitudeAirport": 146.085, + "nameAirport": "Malalaua", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9.30", + "airportId": 4936, + "codeIataAirport": "MLR", + "codeIataCity": "MLR", + "codeIcaoAirport": "YMCT", + "codeIso2Country": "AU", + "geonameId": "7731279", + "latitudeAirport": -37.483334, + "longitudeAirport": 140.01666, + "nameAirport": "Millicent", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-7", + "airportId": 4937, + "codeIataAirport": "MLS", + "codeIataCity": "MLS", + "codeIcaoAirport": "KMLS", + "codeIso2Country": "US", + "geonameId": "5666176", + "latitudeAirport": 46.430557, + "longitudeAirport": -105.880554, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 4938, + "codeIataAirport": "MLT", + "codeIataCity": "MLT", + "codeIcaoAirport": "KMLT", + "codeIso2Country": "US", + "geonameId": "4972220", + "latitudeAirport": 45.65, + "longitudeAirport": -68.71667, + "nameAirport": "Millinocket", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 4939, + "codeIataAirport": "MLU", + "codeIataCity": "MLU", + "codeIcaoAirport": "KMLU", + "codeIso2Country": "US", + "geonameId": "4333683", + "latitudeAirport": 32.51184, + "longitudeAirport": -92.043655, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 4940, + "codeIataAirport": "MLV", + "codeIataCity": "MLV", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298878", + "latitudeAirport": -13.016667, + "longitudeAirport": 142.98334, + "nameAirport": "Merluna", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "0", + "airportId": 4941, + "codeIataAirport": "MLW", + "codeIataCity": "MLW", + "codeIcaoAirport": "GLMR", + "codeIso2Country": "LR", + "geonameId": "2274895", + "latitudeAirport": 6.289444, + "longitudeAirport": -10.758333, + "nameAirport": "Sprigg Payne", + "nameCountry": "Liberia", + "phone": "", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "3", + "airportId": 4942, + "codeIataAirport": "MLX", + "codeIataCity": "MLX", + "codeIcaoAirport": "LTAT", + "codeIso2Country": "TR", + "geonameId": "6299737", + "latitudeAirport": 38.354443, + "longitudeAirport": 38.253613, + "nameAirport": "Malatya", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-9", + "airportId": 4943, + "codeIataAirport": "MLY", + "codeIataCity": "MLY", + "codeIcaoAirport": "PAML", + "codeIso2Country": "US", + "geonameId": "5868236", + "latitudeAirport": 64.996666, + "longitudeAirport": -150.64305, + "nameAirport": "Manley Hot Springs", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "airportId": 4944, + "codeIataAirport": "MLZ", + "codeIataCity": "MLZ", + "codeIcaoAirport": "SUMO", + "codeIso2Country": "UY", + "geonameId": "6300832", + "latitudeAirport": -32.333332, + "longitudeAirport": -54.2, + "nameAirport": "Cerro Largo", + "nameCountry": "Uruguay", + "phone": "", + "timezone": "America/Montevideo" + }, + { + "GMT": "9", + "airportId": 4945, + "codeIataAirport": "MMB", + "codeIataCity": "MMB", + "codeIcaoAirport": "RJCM", + "codeIso2Country": "JP", + "geonameId": "6300325", + "latitudeAirport": 43.9, + "longitudeAirport": 144.16722, + "nameAirport": "Memanbetsu", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-6", + "airportId": 4946, + "codeIataAirport": "MMC", + "codeIataCity": "MMC", + "codeIcaoAirport": "MMDM", + "codeIso2Country": "MX", + "geonameId": "7730664", + "latitudeAirport": 22.833332, + "longitudeAirport": -99.0, + "nameAirport": "Ciudad Mante", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Monterrey" + }, + { + "GMT": "9", + "airportId": 4947, + "codeIataAirport": "MMD", + "codeIataCity": "MMD", + "codeIcaoAirport": "ROMD", + "codeIso2Country": "JP", + "geonameId": "6300463", + "latitudeAirport": 25.841389, + "longitudeAirport": 131.24722, + "nameAirport": "Maridor", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "0", + "airportId": 4948, + "codeIataAirport": "MME", + "codeIataCity": "MME", + "codeIcaoAirport": "EGNV", + "codeIso2Country": "GB", + "geonameId": "6296612", + "latitudeAirport": 54.512226, + "longitudeAirport": -1.434013, + "nameAirport": "Tees Valley", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 4949, + "codeIataAirport": "MMF", + "codeIataCity": "MMF", + "codeIcaoAirport": "FKKF", + "codeIso2Country": "CM", + "geonameId": "6296999", + "latitudeAirport": 5.716667, + "longitudeAirport": 9.3, + "nameAirport": "Mamfe", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "8", + "airportId": 4950, + "codeIataAirport": "MMG", + "codeIataCity": "MMG", + "codeIcaoAirport": "YMOG", + "codeIso2Country": "AU", + "geonameId": "7668742", + "latitudeAirport": -28.083332, + "longitudeAirport": 117.85, + "nameAirport": "Mount Magnet", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-8", + "airportId": 4951, + "codeIataAirport": "MMH", + "codeIataCity": "MMH", + "codeIcaoAirport": "KMMH", + "codeIso2Country": "US", + "geonameId": "5370008", + "latitudeAirport": 37.63111, + "longitudeAirport": -118.85139, + "nameAirport": "Mammoth Lakes", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 4952, + "codeIataAirport": "MMI", + "codeIataCity": "MMI", + "codeIcaoAirport": "KMMI", + "codeIso2Country": "US", + "geonameId": "4640874", + "latitudeAirport": 35.52303, + "longitudeAirport": -84.6757, + "nameAirport": "McMinn County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "airportId": 4953, + "codeIataAirport": "MMJ", + "codeIataCity": "MMJ", + "codeIcaoAirport": "RJAF", + "codeIso2Country": "JP", + "geonameId": "6300308", + "latitudeAirport": 36.233334, + "longitudeAirport": 137.96666, + "nameAirport": "Matsumoto", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "3", + "airportId": 4954, + "codeIataAirport": "MMK", + "codeIataCity": "MMK", + "codeIcaoAirport": "ULMM", + "codeIso2Country": "RU", + "geonameId": "6300972", + "latitudeAirport": 68.785095, + "longitudeAirport": 32.759155, + "nameAirport": "Murmansk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "airportId": 4955, + "codeIataAirport": "MML", + "codeIataCity": "MML", + "codeIcaoAirport": "KMML", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 44.447224, + "longitudeAirport": -95.8175, + "nameAirport": "Municipal-Ryan Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 4956, + "codeIataAirport": "MMM", + "codeIataCity": "MMM", + "codeIcaoAirport": "YMMU", + "codeIso2Country": "AU", + "geonameId": "7731280", + "latitudeAirport": -22.8025, + "longitudeAirport": 148.70473, + "nameAirport": "Middlemount", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 4957, + "codeIataAirport": "MMN", + "codeIataCity": "MMN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.433334, + "longitudeAirport": -71.5, + "nameAirport": "Minute Man Airfield", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-1", + "airportId": 4958, + "codeIataAirport": "MMO", + "codeIataCity": "MMO", + "codeIcaoAirport": "GVMA", + "codeIso2Country": "CV", + "geonameId": "6452623", + "latitudeAirport": 15.25, + "longitudeAirport": -23.166668, + "nameAirport": "Vila Do Maio", + "nameCountry": "Cape Verde", + "phone": "", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "-5", + "airportId": 4959, + "codeIataAirport": "MMP", + "codeIataCity": "MMP", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "3680402", + "latitudeAirport": 9.261667, + "longitudeAirport": -74.43611, + "nameAirport": "Mompos", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "2", + "airportId": 4960, + "codeIataAirport": "MMQ", + "codeIataCity": "MMQ", + "codeIcaoAirport": "FLBA", + "codeIso2Country": "ZM", + "geonameId": "6297006", + "latitudeAirport": -8.857222, + "longitudeAirport": 31.336111, + "nameAirport": "Mbala", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-6", + "airportId": 4961, + "codeIataAirport": "MMR", + "codeIataCity": "AUS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.283333, + "longitudeAirport": -97.75, + "nameAirport": "Camp Maybry AHP", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 4962, + "codeIataAirport": "MMS", + "codeIataCity": "MMS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.266666, + "longitudeAirport": -90.26667, + "nameAirport": "Selfs", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 4963, + "codeIataAirport": "MMT", + "codeIataCity": "CAE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.93667, + "longitudeAirport": -81.115555, + "nameAirport": "Mc Entire ANG Base", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 4964, + "codeIataAirport": "MMU", + "codeIataCity": "MMU", + "codeIcaoAirport": "KMMU", + "codeIso2Country": "US", + "geonameId": "5101433", + "latitudeAirport": 40.799168, + "longitudeAirport": -74.41583, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 4965, + "codeIataAirport": "MMV", + "codeIataCity": "MMV", + "codeIcaoAirport": "KMMV", + "codeIso2Country": "PG", + "geonameId": "5739932", + "latitudeAirport": 45.19, + "longitudeAirport": -123.14, + "nameAirport": "Mal", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "airportId": 4966, + "codeIataAirport": "MMW", + "codeIataCity": "MMW", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "1037225", + "latitudeAirport": -16.783333, + "longitudeAirport": 39.066666, + "nameAirport": "Moma", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "1", + "airportId": 4967, + "codeIataAirport": "MMX", + "codeIataCity": "MMA", + "codeIcaoAirport": "ESMS", + "codeIso2Country": "SE", + "geonameId": "2692957", + "latitudeAirport": 55.538757, + "longitudeAirport": 13.363727, + "nameAirport": "Sturup", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "9", + "airportId": 4968, + "codeIataAirport": "MMY", + "codeIataCity": "MMY", + "codeIcaoAirport": "ROMY", + "codeIso2Country": "JP", + "geonameId": "6300464", + "latitudeAirport": 24.779198, + "longitudeAirport": 125.29778, + "nameAirport": "Hirara", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "4.30", + "airportId": 4969, + "codeIataAirport": "MMZ", + "codeIataCity": "MMZ", + "codeIcaoAirport": "OAMN", + "codeIso2Country": "AF", + "geonameId": "0", + "latitudeAirport": 35.916668, + "longitudeAirport": 64.73333, + "nameAirport": "Maimana", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "8", + "airportId": 4970, + "codeIataAirport": "MNA", + "codeIataCity": "MNA", + "codeIcaoAirport": "WAMN", + "codeIso2Country": "ID", + "geonameId": "7731281", + "latitudeAirport": 4.05, + "longitudeAirport": 126.7, + "nameAirport": "Melangguane", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "1", + "airportId": 4971, + "codeIataAirport": "MNB", + "codeIataCity": "MNB", + "codeIcaoAirport": "FZAG", + "codeIso2Country": "CD", + "geonameId": "6297139", + "latitudeAirport": -5.926944, + "longitudeAirport": 12.352778, + "nameAirport": "Moanda", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "2", + "airportId": 4972, + "codeIataAirport": "MNC", + "codeIataCity": "MNC", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "0", + "latitudeAirport": -14.48, + "longitudeAirport": 40.70861, + "nameAirport": "Nacala", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-5", + "airportId": 4973, + "codeIataAirport": "MND", + "codeIataCity": "MND", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "3674931", + "latitudeAirport": 4.516667, + "longitudeAirport": -73.28333, + "nameAirport": "Medina", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "9.30", + "airportId": 4974, + "codeIataAirport": "MNE", + "codeIataCity": "MNE", + "codeIcaoAirport": "YMUG", + "codeIso2Country": "AU", + "geonameId": "7731282", + "latitudeAirport": -28.0, + "longitudeAirport": 138.6, + "nameAirport": "Mungeranie", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "12", + "airportId": 4975, + "codeIataAirport": "MNF", + "codeIataCity": "MNF", + "codeIcaoAirport": "NFMA", + "codeIso2Country": "FJ", + "geonameId": "7668366", + "latitudeAirport": -17.633333, + "longitudeAirport": 177.11667, + "nameAirport": "Mana Island Airstrip", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "9.30", + "airportId": 4976, + "codeIataAirport": "MNG", + "codeIataCity": "MNG", + "codeIcaoAirport": "YMGD", + "codeIso2Country": "AU", + "geonameId": "7730264", + "latitudeAirport": -12.05492, + "longitudeAirport": 134.23227, + "nameAirport": "Maningrida", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "5.30", + "airportId": 4977, + "codeIataAirport": "MNH", + "codeIataCity": "MNH", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "7731283", + "latitudeAirport": 7.75, + "longitudeAirport": 83.0, + "nameAirport": "Minneriya", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "-4", + "airportId": 4978, + "codeIataAirport": "MNI", + "codeIataCity": "MNI", + "codeIcaoAirport": "", + "codeIso2Country": "MS", + "geonameId": "0", + "latitudeAirport": 16.75, + "longitudeAirport": -62.233334, + "nameAirport": "Gerald's Airport", + "nameCountry": "Montserrat", + "phone": "", + "timezone": "America/Montserrat" + }, + { + "GMT": "3", + "airportId": 4979, + "codeIataAirport": "MNJ", + "codeIataCity": "MNJ", + "codeIcaoAirport": "FMSM", + "codeIso2Country": "MG", + "geonameId": "6297055", + "latitudeAirport": -21.2, + "longitudeAirport": 48.36667, + "nameAirport": "Mananjary", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "12", + "airportId": 4980, + "codeIataAirport": "MNK", + "codeIataCity": "MNK", + "codeIcaoAirport": "", + "codeIso2Country": "KI", + "geonameId": "0", + "latitudeAirport": 1.0, + "longitudeAirport": 173.0, + "nameAirport": "Maiana", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "8", + "airportId": 4981, + "codeIataAirport": "MNL", + "codeIataCity": "MNL", + "codeIcaoAirport": "RPLL", + "codeIso2Country": "PH", + "geonameId": "1701661", + "latitudeAirport": 14.509602, + "longitudeAirport": 121.01251, + "nameAirport": "Ninoy Aquino International", + "nameCountry": "Philippines", + "phone": "+63 (02) 877", + "timezone": "Asia/Manila" + }, + { + "GMT": "-6", + "airportId": 4982, + "codeIataAirport": "MNM", + "codeIataCity": "MNM", + "codeIcaoAirport": "KMNM", + "codeIso2Country": "US", + "geonameId": "8299187", + "latitudeAirport": 45.121666, + "longitudeAirport": -87.63611, + "nameAirport": "Menominee", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Menominee" + }, + { + "GMT": "-5", + "airportId": 4983, + "codeIataAirport": "MNN", + "codeIataCity": "MNN", + "codeIcaoAirport": "KMNN", + "codeIso2Country": "US", + "geonameId": "5161923", + "latitudeAirport": 40.583332, + "longitudeAirport": -83.13333, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 4984, + "codeIataAirport": "MNO", + "codeIataCity": "MNO", + "codeIcaoAirport": "FZRA", + "codeIso2Country": "CD", + "geonameId": "6297156", + "latitudeAirport": -7.288056, + "longitudeAirport": 27.393888, + "nameAirport": "Manono", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "10", + "airportId": 4985, + "codeIataAirport": "MNQ", + "codeIataCity": "MNQ", + "codeIcaoAirport": "YMTO", + "codeIso2Country": "AU", + "geonameId": "7731284", + "latitudeAirport": -24.883333, + "longitudeAirport": 151.1, + "nameAirport": "Monto", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "airportId": 4986, + "codeIataAirport": "MNR", + "codeIataCity": "MNR", + "codeIcaoAirport": "FLMG", + "codeIso2Country": "ZM", + "geonameId": "6297019", + "latitudeAirport": -15.225556, + "longitudeAirport": 23.157778, + "nameAirport": "Mongu", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "2", + "airportId": 4987, + "codeIataAirport": "MNS", + "codeIataCity": "MNS", + "codeIcaoAirport": "FLMA", + "codeIso2Country": "ZM", + "geonameId": "907770", + "latitudeAirport": -11.125, + "longitudeAirport": 28.866667, + "nameAirport": "Mansa", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-9", + "airportId": 4988, + "codeIataAirport": "MNT", + "codeIataCity": "MNT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5869009", + "latitudeAirport": 64.895, + "longitudeAirport": -149.17084, + "nameAirport": "Minto", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "6.30", + "airportId": 4989, + "codeIataAirport": "MNU", + "codeIataCity": "MNU", + "codeIcaoAirport": "VYMM", + "codeIso2Country": "MM", + "geonameId": "7910380", + "latitudeAirport": 16.441668, + "longitudeAirport": 97.66944, + "nameAirport": "Maulmyine", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "9.30", + "airportId": 4990, + "codeIataAirport": "MNV", + "codeIataCity": "MNV", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8260870", + "latitudeAirport": -14.116667, + "longitudeAirport": 133.83333, + "nameAirport": "Mountain Valley", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-4", + "airportId": 4991, + "codeIataAirport": "MNX", + "codeIataCity": "MNX", + "codeIcaoAirport": "SBMY", + "codeIso2Country": "BR", + "geonameId": "6300648", + "latitudeAirport": -5.816667, + "longitudeAirport": -61.283333, + "nameAirport": "Manicore", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "11", + "airportId": 4992, + "codeIataAirport": "MNY", + "codeIataCity": "MNY", + "codeIcaoAirport": "AGGO", + "codeIso2Country": "SB", + "geonameId": "7668069", + "latitudeAirport": -7.35, + "longitudeAirport": 155.56667, + "nameAirport": "Mono", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-5", + "airportId": 4993, + "codeIataAirport": "MNZ", + "codeIataCity": "MNZ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.721943, + "longitudeAirport": -77.51806, + "nameAirport": "Manassas Regional Airport/Harry P. Davis Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 4994, + "codeIataAirport": "MOA", + "codeIataCity": "MOA", + "codeIcaoAirport": "MUMO", + "codeIso2Country": "CU", + "geonameId": "6299926", + "latitudeAirport": 20.5, + "longitudeAirport": -74.88333, + "nameAirport": "Orestes Acosta", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "-6", + "airportId": 4995, + "codeIataAirport": "MOB", + "codeIataCity": "MOB", + "codeIcaoAirport": "KMOB", + "codeIso2Country": "US", + "geonameId": "4831635", + "latitudeAirport": 30.681086, + "longitudeAirport": -88.24475, + "nameAirport": "Mobile Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 4996, + "codeIataAirport": "MOC", + "codeIataCity": "MOC", + "codeIcaoAirport": "SBMK", + "codeIso2Country": "BR", + "geonameId": "6300643", + "latitudeAirport": -16.707779, + "longitudeAirport": -43.817223, + "nameAirport": "Montes Claros", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "airportId": 4997, + "codeIataAirport": "MOD", + "codeIataCity": "MOD", + "codeIcaoAirport": "KMOD", + "codeIso2Country": "US", + "geonameId": "5373906", + "latitudeAirport": 37.626945, + "longitudeAirport": -120.95528, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "6.30", + "airportId": 4998, + "codeIataAirport": "MOE", + "codeIataCity": "MOE", + "codeIcaoAirport": "VYMO", + "codeIso2Country": "MM", + "geonameId": "7730229", + "latitudeAirport": 23.1, + "longitudeAirport": 96.65, + "nameAirport": "Momeik", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "8", + "airportId": 4999, + "codeIataAirport": "MOF", + "codeIataCity": "MOF", + "codeIcaoAirport": "WRKC", + "codeIso2Country": "ID", + "geonameId": "1635815", + "latitudeAirport": -8.633333, + "longitudeAirport": 122.25, + "nameAirport": "Waioti", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "6.30", + "airportId": 5000, + "codeIataAirport": "MOG", + "codeIataCity": "MOG", + "codeIcaoAirport": "VYMS", + "codeIso2Country": "MM", + "geonameId": "7668661", + "latitudeAirport": 20.533333, + "longitudeAirport": 99.26667, + "nameAirport": "Mong Hsat", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-10", + "airportId": 5001, + "codeIataAirport": "MOI", + "codeIataCity": "MOI", + "codeIcaoAirport": "NCMR", + "codeIso2Country": "CK", + "geonameId": "7730687", + "latitudeAirport": -19.84166, + "longitudeAirport": -157.71121, + "nameAirport": "Mitiaro Island", + "nameCountry": "Cook Islands", + "phone": "", + "timezone": "Pacific/Rarotonga" + }, + { + "GMT": "-3", + "airportId": 5002, + "codeIataAirport": "MOJ", + "codeIataCity": "MOJ", + "codeIcaoAirport": "", + "codeIso2Country": "SR", + "geonameId": "3383494", + "latitudeAirport": 5.75, + "longitudeAirport": -54.333332, + "nameAirport": "Moengo", + "nameCountry": "Suriname", + "phone": "", + "timezone": "America/Paramaribo" + }, + { + "GMT": "1", + "airportId": 5003, + "codeIataAirport": "MOL", + "codeIataCity": "MOL", + "codeIcaoAirport": "ENML", + "codeIso2Country": "NO", + "geonameId": "6296752", + "latitudeAirport": 62.747303, + "longitudeAirport": 7.262118, + "nameAirport": "Aro", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "0", + "airportId": 5004, + "codeIataAirport": "MOM", + "codeIataCity": "MOM", + "codeIcaoAirport": "GQNL", + "codeIso2Country": "MR", + "geonameId": "7668286", + "latitudeAirport": 17.75, + "longitudeAirport": -12.5, + "nameAirport": "Moudjeria", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "12", + "airportId": 5005, + "codeIataAirport": "MON", + "codeIataCity": "MON", + "codeIcaoAirport": "NZGT", + "codeIso2Country": "NZ", + "geonameId": "6943153", + "latitudeAirport": -43.766666, + "longitudeAirport": 170.13611, + "nameAirport": "Mount Cook Airport", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "9.30", + "airportId": 5006, + "codeIataAirport": "MOO", + "codeIataCity": "MOO", + "codeIcaoAirport": "YOOM", + "codeIso2Country": "AU", + "geonameId": "7731286", + "latitudeAirport": -27.5, + "longitudeAirport": 149.83333, + "nameAirport": "Moomba", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-5", + "airportId": 5007, + "codeIataAirport": "MOP", + "codeIataCity": "MOP", + "codeIcaoAirport": "KMOP", + "codeIso2Country": "US", + "geonameId": "5002724", + "latitudeAirport": 43.61667, + "longitudeAirport": -84.73333, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "3", + "airportId": 5008, + "codeIataAirport": "MOQ", + "codeIataCity": "MOQ", + "codeIcaoAirport": "FMMV", + "codeIso2Country": "MG", + "geonameId": "1058382", + "latitudeAirport": -20.283611, + "longitudeAirport": 44.318333, + "nameAirport": "Morondava", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-5", + "airportId": 5009, + "codeIataAirport": "MOR", + "codeIataCity": "MOR", + "codeIcaoAirport": "KMOR", + "codeIso2Country": "US", + "geonameId": "4642938", + "latitudeAirport": 36.216667, + "longitudeAirport": -83.3, + "nameAirport": "Moore-Murrell", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 5010, + "codeIataAirport": "MOS", + "codeIataCity": "MOS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5869322", + "latitudeAirport": 64.69556, + "longitudeAirport": -162.04333, + "nameAirport": "Intermediate", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 5011, + "codeIataAirport": "MOT", + "codeIataCity": "MOT", + "codeIcaoAirport": "KMOT", + "codeIso2Country": "US", + "geonameId": "5690534", + "latitudeAirport": 48.259724, + "longitudeAirport": -101.28083, + "nameAirport": "Minot International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 5012, + "codeIataAirport": "MOU", + "codeIataCity": "MOU", + "codeIcaoAirport": "PAMO", + "codeIso2Country": "US", + "geonameId": "5869367", + "latitudeAirport": 62.089443, + "longitudeAirport": -163.71666, + "nameAirport": "Mountain Village", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 5013, + "codeIataAirport": "MOV", + "codeIataCity": "MOV", + "codeIcaoAirport": "YMRB", + "codeIso2Country": "AU", + "geonameId": "7730266", + "latitudeAirport": -22.06057, + "longitudeAirport": 148.07442, + "nameAirport": "Moranbah", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "airportId": 5014, + "codeIataAirport": "MOX", + "codeIataCity": "MOX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 45.583332, + "longitudeAirport": -95.916664, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 5015, + "codeIataAirport": "MOY", + "codeIataCity": "MOY", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 4.884167, + "longitudeAirport": -72.89528, + "nameAirport": "Monterrey", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-10", + "airportId": 5016, + "codeIataAirport": "MOZ", + "codeIataCity": "MOZ", + "codeIcaoAirport": "NTTM", + "codeIso2Country": "PF", + "geonameId": "6354944", + "latitudeAirport": -17.490433, + "longitudeAirport": -149.76414, + "nameAirport": "Temae", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "2", + "airportId": 5017, + "codeIataAirport": "MPA", + "codeIataCity": "MPA", + "codeIcaoAirport": "FAMP", + "codeIso2Country": "NA", + "geonameId": "877034", + "latitudeAirport": -17.5, + "longitudeAirport": 24.266666, + "nameAirport": "Mpacha", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-5", + "airportId": 5018, + "codeIataAirport": "MPB", + "codeIataCity": "MIA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4177559", + "latitudeAirport": 25.75, + "longitudeAirport": -80.166664, + "nameAirport": "Miami Sea Plane Base", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "7", + "airportId": 5019, + "codeIataAirport": "MPC", + "codeIataCity": "MPC", + "codeIcaoAirport": "WIPU", + "codeIso2Country": "ID", + "geonameId": "7731287", + "latitudeAirport": -2.55, + "longitudeAirport": 101.1, + "nameAirport": "Muko-Muko", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "5", + "airportId": 5020, + "codeIataAirport": "MPD", + "codeIataCity": "MPD", + "codeIcaoAirport": "OPMP", + "codeIso2Country": "PK", + "geonameId": "8298744", + "latitudeAirport": 25.65, + "longitudeAirport": 69.03333, + "nameAirport": "Mirpur Khas", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "10", + "airportId": 5021, + "codeIataAirport": "MPF", + "codeIataCity": "MPF", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299166", + "latitudeAirport": -7.966667, + "longitudeAirport": 143.16667, + "nameAirport": "Mapoda", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 5022, + "codeIataAirport": "MPG", + "codeIataCity": "MPG", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299167", + "latitudeAirport": -6.533333, + "longitudeAirport": 147.71666, + "nameAirport": "Makini", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 5023, + "codeIataAirport": "MPH", + "codeIataCity": "MPH", + "codeIcaoAirport": "RPWY", + "codeIso2Country": "PH", + "geonameId": "6619258", + "latitudeAirport": 11.925263, + "longitudeAirport": 121.9521, + "nameAirport": "Malay", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-5", + "airportId": 5024, + "codeIataAirport": "MPI", + "codeIataCity": "MPI", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "0", + "latitudeAirport": 9.578333, + "longitudeAirport": -79.843056, + "nameAirport": "Mamitupo", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "-6", + "airportId": 5025, + "codeIataAirport": "MPJ", + "codeIataCity": "MPJ", + "codeIcaoAirport": "KMPJ", + "codeIso2Country": "US", + "geonameId": "4125926", + "latitudeAirport": 35.15, + "longitudeAirport": -92.73333, + "nameAirport": "Petit Jean Park", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "airportId": 5026, + "codeIataAirport": "MPK", + "codeIataCity": "MPK", + "codeIcaoAirport": "", + "codeIso2Country": "KR", + "geonameId": "0", + "latitudeAirport": 34.756668, + "longitudeAirport": 126.385, + "nameAirport": "Mokpo", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "1", + "airportId": 5027, + "codeIataAirport": "MPL", + "codeIataCity": "MPL", + "codeIcaoAirport": "LFMT", + "codeIso2Country": "FR", + "geonameId": "6299421", + "latitudeAirport": 43.57843, + "longitudeAirport": 3.959174, + "nameAirport": "Montpellier Méditerranée", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "2", + "airportId": 5028, + "codeIataAirport": "MPM", + "codeIataCity": "MPM", + "codeIcaoAirport": "FQMA", + "codeIso2Country": "MZ", + "geonameId": "1106276", + "latitudeAirport": -25.924389, + "longitudeAirport": 32.57429, + "nameAirport": "Maputo International", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-3", + "airportId": 5029, + "codeIataAirport": "MPN", + "codeIataCity": "MPN", + "codeIcaoAirport": "EGYP", + "codeIso2Country": "FK", + "geonameId": "6296679", + "latitudeAirport": -51.816666, + "longitudeAirport": -58.45, + "nameAirport": "Mount Pleasant", + "nameCountry": "Falkland Islands", + "phone": "", + "timezone": "Atlantic/Stanley" + }, + { + "GMT": "-5", + "airportId": 5030, + "codeIataAirport": "MPO", + "codeIataCity": "MPO", + "codeIcaoAirport": "KMPO", + "codeIso2Country": "US", + "geonameId": "5206715", + "latitudeAirport": 41.13333, + "longitudeAirport": -75.36667, + "nameAirport": "Mt Pocono", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 5031, + "codeIataAirport": "MPP", + "codeIataCity": "MPP", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "0", + "latitudeAirport": 9.0, + "longitudeAirport": -77.86667, + "nameAirport": "Mulatupo", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "2", + "airportId": 5032, + "codeIataAirport": "MPQ", + "codeIataCity": "MPQ", + "codeIcaoAirport": "", + "codeIso2Country": "JO", + "geonameId": "248382", + "latitudeAirport": 30.166668, + "longitudeAirport": 35.766666, + "nameAirport": "Maan", + "nameCountry": "Jordan", + "phone": "", + "timezone": "Asia/Amman" + }, + { + "GMT": "-6", + "airportId": 5033, + "codeIataAirport": "MPR", + "codeIataCity": "MPR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4275262", + "latitudeAirport": 38.37436, + "longitudeAirport": -97.763306, + "nameAirport": "Mcpherson", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 5034, + "codeIataAirport": "MPS", + "codeIataCity": "MPS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.166668, + "longitudeAirport": -94.98333, + "nameAirport": "Mount Pleasant", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "airportId": 5035, + "codeIataAirport": "MPT", + "codeIataCity": "MPT", + "codeIcaoAirport": "", + "codeIso2Country": "TL", + "geonameId": "1636670", + "latitudeAirport": -8.066667, + "longitudeAirport": 125.25, + "nameAirport": "Maliana", + "nameCountry": "East Timor", + "phone": "", + "timezone": "Asia/Dili" + }, + { + "GMT": "10", + "airportId": 5036, + "codeIataAirport": "MPU", + "codeIataCity": "MPU", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2091468", + "latitudeAirport": -2.9, + "longitudeAirport": 151.4, + "nameAirport": "Mapua", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 5037, + "codeIataAirport": "MPV", + "codeIataCity": "MPV", + "codeIcaoAirport": "KMPV", + "codeIso2Country": "US", + "geonameId": "5235845", + "latitudeAirport": 44.203335, + "longitudeAirport": -72.566666, + "nameAirport": "Edward F Knapp State", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 5038, + "codeIataAirport": "MPW", + "codeIataCity": "MPW", + "codeIcaoAirport": "UKCM", + "codeIso2Country": "UA", + "geonameId": "7668507", + "latitudeAirport": 47.1, + "longitudeAirport": 37.55, + "nameAirport": "Mariupol", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "10", + "airportId": 5039, + "codeIataAirport": "MPX", + "codeIataCity": "MPX", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299036", + "latitudeAirport": -4.9, + "longitudeAirport": 141.61667, + "nameAirport": "Miyanmin", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "airportId": 5040, + "codeIataAirport": "MPY", + "codeIataCity": "MPY", + "codeIcaoAirport": "", + "codeIso2Country": "GF", + "geonameId": "3380994", + "latitudeAirport": 3.666667, + "longitudeAirport": -54.033333, + "nameAirport": "Maripasoula", + "nameCountry": "French Guiana", + "phone": "", + "timezone": "America/Cayenne" + }, + { + "GMT": "-6", + "airportId": 5041, + "codeIataAirport": "MPZ", + "codeIataCity": "MPZ", + "codeIcaoAirport": "KMPZ", + "codeIso2Country": "US", + "geonameId": "4868224", + "latitudeAirport": 40.966667, + "longitudeAirport": -91.55, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 5042, + "codeIataAirport": "MQA", + "codeIataCity": "MQA", + "codeIcaoAirport": "YMDI", + "codeIso2Country": "AU", + "geonameId": "7731288", + "latitudeAirport": -19.75, + "longitudeAirport": 120.833336, + "nameAirport": "Mandora", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "airportId": 5043, + "codeIataAirport": "MQB", + "codeIataCity": "MQB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4900828", + "latitudeAirport": 40.4525, + "longitudeAirport": -90.62139, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 5044, + "codeIataAirport": "MQC", + "codeIataCity": "MQC", + "codeIcaoAirport": "LFVM", + "codeIso2Country": "PM", + "geonameId": "7668308", + "latitudeAirport": 47.05, + "longitudeAirport": -56.333332, + "nameAirport": "Miquelon Airport", + "nameCountry": "Saint Pierre and Miquelon", + "phone": "", + "timezone": "America/Miquelon" + }, + { + "GMT": "-3", + "airportId": 5045, + "codeIataAirport": "MQD", + "codeIataCity": "MQD", + "codeIcaoAirport": "SAVQ", + "codeIso2Country": "AR", + "geonameId": "7730772", + "latitudeAirport": -41.25, + "longitudeAirport": -68.73333, + "nameAirport": "Maquinchao", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "9.30", + "airportId": 5046, + "codeIataAirport": "MQE", + "codeIataCity": "MQE", + "codeIcaoAirport": "YMQA", + "codeIso2Country": "AU", + "geonameId": "7731289", + "latitudeAirport": -22.816668, + "longitudeAirport": 137.35, + "nameAirport": "Marqua", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "5", + "airportId": 5047, + "codeIataAirport": "MQF", + "codeIataCity": "MQF", + "codeIcaoAirport": "USCM", + "codeIso2Country": "RU", + "geonameId": "7668530", + "latitudeAirport": 53.45, + "longitudeAirport": 59.066666, + "nameAirport": "Magnitogorsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "2", + "airportId": 5048, + "codeIataAirport": "MQG", + "codeIataCity": "MQG", + "codeIcaoAirport": "", + "codeIso2Country": "NA", + "geonameId": "0", + "latitudeAirport": -22.083332, + "longitudeAirport": 17.366667, + "nameAirport": "Midgard", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-3", + "airportId": 5049, + "codeIataAirport": "MQH", + "codeIataCity": "MQH", + "codeIcaoAirport": "SBMC", + "codeIso2Country": "BR", + "geonameId": "7730158", + "latitudeAirport": -13.533333, + "longitudeAirport": -48.233334, + "nameAirport": "Municipal", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "airportId": 5050, + "codeIataAirport": "MQI", + "codeIataCity": "MQI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.25, + "longitudeAirport": -71.0, + "nameAirport": "Quincy", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "airportId": 5051, + "codeIataAirport": "MQK", + "codeIataCity": "MQK", + "codeIcaoAirport": "SLTI", + "codeIso2Country": "BO", + "geonameId": "7731290", + "latitudeAirport": -16.334444, + "longitudeAirport": -58.385555, + "nameAirport": "San Matias", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "10", + "airportId": 5052, + "codeIataAirport": "MQL", + "codeIataCity": "MQL", + "codeIcaoAirport": "YMIA", + "codeIso2Country": "AU", + "geonameId": "6301318", + "latitudeAirport": -34.230835, + "longitudeAirport": 142.08455, + "nameAirport": "Mildura", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "3", + "airportId": 5053, + "codeIataAirport": "MQM", + "codeIataCity": "MQM", + "codeIcaoAirport": "LTCR", + "codeIso2Country": "TR", + "geonameId": "6453408", + "latitudeAirport": 37.2233, + "longitudeAirport": 40.6317, + "nameAirport": "Mardin", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "1", + "airportId": 5054, + "codeIataAirport": "MQN", + "codeIataCity": "MQN", + "codeIcaoAirport": "ENRA", + "codeIso2Country": "NO", + "geonameId": "6296761", + "latitudeAirport": 66.36465, + "longitudeAirport": 14.302748, + "nameAirport": "Mo I Rana", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "10", + "airportId": 5055, + "codeIataAirport": "MQO", + "codeIataCity": "MQO", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2091753", + "latitudeAirport": -8.703889, + "longitudeAirport": 142.65111, + "nameAirport": "Malam", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "airportId": 5056, + "codeIataAirport": "MQP", + "codeIataCity": "NLP", + "codeIcaoAirport": "FAKN", + "codeIso2Country": "ZA", + "geonameId": "7668228", + "latitudeAirport": -25.384947, + "longitudeAirport": 31.098131, + "nameAirport": "Kruger Mpumalanga International Airport", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "1", + "airportId": 5057, + "codeIataAirport": "MQQ", + "codeIataCity": "MQQ", + "codeIcaoAirport": "FTTD", + "codeIso2Country": "TD", + "geonameId": "2427456", + "latitudeAirport": 8.625, + "longitudeAirport": 16.073334, + "nameAirport": "Moundou", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "-5", + "airportId": 5058, + "codeIataAirport": "MQR", + "codeIataCity": "MQR", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8261010", + "latitudeAirport": 2.5, + "longitudeAirport": -78.416664, + "nameAirport": "Mosquera", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-4", + "airportId": 5059, + "codeIataAirport": "MQS", + "codeIataCity": "MQS", + "codeIcaoAirport": "TVSM", + "codeIso2Country": "VC", + "geonameId": "7668485", + "latitudeAirport": 12.888333, + "longitudeAirport": -61.181946, + "nameAirport": "Mustique", + "nameCountry": "Saint Vincent and the Grenadines", + "phone": "", + "timezone": "America/St_Vincent" + }, + { + "GMT": "-5", + "airportId": 5060, + "codeIataAirport": "MQT", + "codeIataCity": "MQT", + "codeIcaoAirport": "KSAW", + "codeIso2Country": "US", + "geonameId": "6299041", + "latitudeAirport": 46.35361, + "longitudeAirport": -87.39528, + "nameAirport": "Sawyer International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-5", + "airportId": 5061, + "codeIataAirport": "MQU", + "codeIataCity": "MQU", + "codeIcaoAirport": "SKQU", + "codeIso2Country": "CO", + "geonameId": "7523307", + "latitudeAirport": 5.216667, + "longitudeAirport": -74.88333, + "nameAirport": "Mariquita", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "airportId": 5062, + "codeIataAirport": "MQV", + "codeIataCity": "MQV", + "codeIcaoAirport": "", + "codeIso2Country": "DZ", + "geonameId": "2487134", + "latitudeAirport": 35.9, + "longitudeAirport": 0.083333, + "nameAirport": "Mostaganem", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-5", + "airportId": 5063, + "codeIataAirport": "MQW", + "codeIataCity": "MQW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.20778, + "longitudeAirport": -83.000275, + "nameAirport": "Telfair-Wheeler", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 5064, + "codeIataAirport": "MQX", + "codeIataCity": "MQX", + "codeIcaoAirport": "HAMK", + "codeIso2Country": "ET", + "geonameId": "6297276", + "latitudeAirport": 13.468333, + "longitudeAirport": 39.52639, + "nameAirport": "Makale", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-6", + "airportId": 5065, + "codeIataAirport": "MQY", + "codeIataCity": "MQY", + "codeIcaoAirport": "KMQY", + "codeIso2Country": "US", + "geonameId": "4658592", + "latitudeAirport": 35.983334, + "longitudeAirport": -86.5, + "nameAirport": "Smyrna", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 5066, + "codeIataAirport": "MQZ", + "codeIataCity": "MQZ", + "codeIcaoAirport": "YMGT", + "codeIso2Country": "AU", + "geonameId": "7731270", + "latitudeAirport": -33.933334, + "longitudeAirport": 115.1, + "nameAirport": "Margaret River", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "2", + "airportId": 5067, + "codeIataAirport": "MRA", + "codeIataCity": "MRA", + "codeIcaoAirport": "", + "codeIso2Country": "LY", + "geonameId": "7731292", + "latitudeAirport": 32.4, + "longitudeAirport": 15.066667, + "nameAirport": "Misurata", + "nameCountry": "Libya", + "phone": "", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "-5", + "airportId": 5068, + "codeIataAirport": "MRB", + "codeIataCity": "MRB", + "codeIcaoAirport": "KMRB", + "codeIso2Country": "US", + "geonameId": "4804783", + "latitudeAirport": 39.40167, + "longitudeAirport": -77.985, + "nameAirport": "Eastern Wv Regional Airport/Shepherd Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 5069, + "codeIataAirport": "MRC", + "codeIataCity": "MRC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 35.61667, + "longitudeAirport": -87.03333, + "nameAirport": "Maury County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 5070, + "codeIataAirport": "MRD", + "codeIataCity": "MRD", + "codeIcaoAirport": "SVMD", + "codeIso2Country": "VE", + "geonameId": "3649499", + "latitudeAirport": 8.583333, + "longitudeAirport": -71.157776, + "nameAirport": "A Carnevalli", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "3", + "airportId": 5071, + "codeIataAirport": "MRE", + "codeIataCity": "MRE", + "codeIcaoAirport": "", + "codeIso2Country": "KE", + "geonameId": "0", + "latitudeAirport": -1.300368, + "longitudeAirport": 35.05885, + "nameAirport": "Mara Lodges", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-6", + "airportId": 5072, + "codeIataAirport": "MRF", + "codeIataCity": "MRF", + "codeIcaoAirport": "KMRF", + "codeIso2Country": "US", + "geonameId": "5525778", + "latitudeAirport": 30.3, + "longitudeAirport": -104.01667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 5073, + "codeIataAirport": "MRG", + "codeIataCity": "MRG", + "codeIcaoAirport": "YMBA", + "codeIso2Country": "AU", + "geonameId": "7668738", + "latitudeAirport": -17.0, + "longitudeAirport": 145.46666, + "nameAirport": "Mareeba", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 5074, + "codeIataAirport": "MRH", + "codeIataCity": "MRH", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7910504", + "latitudeAirport": -8.466667, + "longitudeAirport": 145.33333, + "nameAirport": "May River", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 5075, + "codeIataAirport": "MRI", + "codeIataCity": "ANC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 61.233334, + "longitudeAirport": -149.9, + "nameAirport": "Merrill Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 5076, + "codeIataAirport": "MRK", + "codeIataCity": "MRK", + "codeIcaoAirport": "KMKY", + "codeIso2Country": "US", + "geonameId": "4163389", + "latitudeAirport": 25.944445, + "longitudeAirport": -81.72389, + "nameAirport": "Marco Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 5077, + "codeIataAirport": "MRL", + "codeIataCity": "MRL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298774", + "latitudeAirport": -20.066668, + "longitudeAirport": 145.58333, + "nameAirport": "Miners Lake", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 5078, + "codeIataAirport": "MRM", + "codeIataCity": "MRM", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298962", + "latitudeAirport": -9.166667, + "longitudeAirport": 147.6, + "nameAirport": "Manare", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 5079, + "codeIataAirport": "MRN", + "codeIataCity": "MRN", + "codeIcaoAirport": "KMRN", + "codeIso2Country": "US", + "geonameId": "4480227", + "latitudeAirport": 35.75, + "longitudeAirport": -81.683334, + "nameAirport": "Lenoir", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "12", + "airportId": 5080, + "codeIataAirport": "MRO", + "codeIataCity": "MRO", + "codeIcaoAirport": "NZMS", + "codeIso2Country": "NZ", + "geonameId": "6241111", + "latitudeAirport": -40.975, + "longitudeAirport": 175.63333, + "nameAirport": "Masterton/Hood Aerodrome", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "9.30", + "airportId": 5081, + "codeIataAirport": "MRP", + "codeIataCity": "MRP", + "codeIcaoAirport": "YALA", + "codeIso2Country": "AU", + "geonameId": "7731293", + "latitudeAirport": -27.0, + "longitudeAirport": 135.0, + "nameAirport": "Marla", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "8", + "airportId": 5082, + "codeIataAirport": "MRQ", + "codeIataCity": "MRQ", + "codeIcaoAirport": "RPUW", + "codeIso2Country": "PH", + "geonameId": "1700904", + "latitudeAirport": 13.363056, + "longitudeAirport": 121.82361, + "nameAirport": "Marinduque", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-5", + "airportId": 5083, + "codeIataAirport": "MRR", + "codeIataCity": "MRR", + "codeIcaoAirport": "SEMA", + "codeIso2Country": "EC", + "geonameId": "3655440", + "latitudeAirport": -4.383333, + "longitudeAirport": -79.933334, + "nameAirport": "Macara", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "1", + "airportId": 5084, + "codeIataAirport": "MRS", + "codeIataCity": "MRS", + "codeIcaoAirport": "LFML", + "codeIso2Country": "FR", + "geonameId": "6299417", + "latitudeAirport": 43.44178, + "longitudeAirport": 5.222137, + "nameAirport": "Marseille Provence Airport", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "9.30", + "airportId": 5085, + "codeIataAirport": "MRT", + "codeIataCity": "MRT", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8260865", + "latitudeAirport": -14.483333, + "longitudeAirport": 133.41667, + "nameAirport": "Moroak", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "4", + "airportId": 5086, + "codeIataAirport": "MRU", + "codeIataCity": "MRU", + "codeIcaoAirport": "FIMP", + "codeIso2Country": "MU", + "geonameId": "1106588", + "latitudeAirport": -20.431997, + "longitudeAirport": 57.67663, + "nameAirport": "Sir Seewoosagur Ramgoolam International", + "nameCountry": "Mauritius", + "phone": "230-603-6000", + "timezone": "Indian/Mauritius" + }, + { + "GMT": "3", + "airportId": 5087, + "codeIataAirport": "MRV", + "codeIataCity": "MRV", + "codeIcaoAirport": "URMM", + "codeIso2Country": "RU", + "geonameId": "6300991", + "latitudeAirport": 44.218105, + "longitudeAirport": 43.085815, + "nameAirport": "Mineralnye Vodyj", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "airportId": 5088, + "codeIataAirport": "MRW", + "codeIataCity": "MRW", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "2617072", + "latitudeAirport": 54.685833, + "longitudeAirport": 11.435, + "nameAirport": "Maribo", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "3.30", + "airportId": 5089, + "codeIataAirport": "MRX", + "codeIataCity": "MRX", + "codeIcaoAirport": "OIAM", + "codeIso2Country": "IR", + "geonameId": "6300039", + "latitudeAirport": 30.535557, + "longitudeAirport": 49.16722, + "nameAirport": "Mahshahr", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-8", + "airportId": 5090, + "codeIataAirport": "MRY", + "codeIataCity": "MRY", + "codeIcaoAirport": "KMRY", + "codeIso2Country": "US", + "geonameId": "5374415", + "latitudeAirport": 36.587296, + "longitudeAirport": -121.850815, + "nameAirport": "Monterey Peninsula", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 5091, + "codeIataAirport": "MRZ", + "codeIataCity": "MRZ", + "codeIcaoAirport": "YMOR", + "codeIso2Country": "AU", + "geonameId": "7668743", + "latitudeAirport": -29.496346, + "longitudeAirport": 149.85019, + "nameAirport": "Moree", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "airportId": 5092, + "codeIataAirport": "MSA", + "codeIataCity": "MSA", + "codeIcaoAirport": "CZMD", + "codeIso2Country": "CA", + "geonameId": "7668162", + "latitudeAirport": 53.816666, + "longitudeAirport": -91.98333, + "nameAirport": "Muskrat Dam", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-4", + "airportId": 5093, + "codeIataAirport": "MSB", + "codeIataCity": "SFG", + "codeIcaoAirport": "", + "codeIso2Country": "MF", + "geonameId": "0", + "latitudeAirport": 18.066668, + "longitudeAirport": -63.066666, + "nameAirport": "Marigot SPB", + "nameCountry": "Saint Martin", + "phone": "", + "timezone": "America/Marigot" + }, + { + "GMT": "-7", + "airportId": 5094, + "codeIataAirport": "MSC", + "codeIataCity": "MSC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5304391", + "latitudeAirport": 33.416668, + "longitudeAirport": -111.833336, + "nameAirport": "Falcon Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "-7", + "airportId": 5095, + "codeIataAirport": "MSD", + "codeIataCity": "MSD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.524723, + "longitudeAirport": -111.47444, + "nameAirport": "Mt Pleasant", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "9.30", + "airportId": 5096, + "codeIataAirport": "MSF", + "codeIataCity": "MSF", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298986", + "latitudeAirport": -22.516666, + "longitudeAirport": 135.0, + "nameAirport": "Mount Swan", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "2", + "airportId": 5097, + "codeIataAirport": "MSG", + "codeIataCity": "MSG", + "codeIcaoAirport": "", + "codeIso2Country": "LS", + "geonameId": "932472", + "latitudeAirport": -29.733334, + "longitudeAirport": 28.75, + "nameAirport": "Matsaile", + "nameCountry": "Lesotho", + "phone": "", + "timezone": "Africa/Maseru" + }, + { + "GMT": "4", + "airportId": 5098, + "codeIataAirport": "MSH", + "codeIataCity": "MSH", + "codeIcaoAirport": "OOMA", + "codeIso2Country": "OM", + "geonameId": "6300103", + "latitudeAirport": 20.680555, + "longitudeAirport": 58.891666, + "nameAirport": "Masirah", + "nameCountry": "Oman", + "phone": "", + "timezone": "Asia/Muscat" + }, + { + "GMT": "7", + "airportId": 5099, + "codeIataAirport": "MSI", + "codeIataCity": "MSI", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731294", + "latitudeAirport": -5.583333, + "longitudeAirport": 114.433334, + "nameAirport": "Masalembo", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "9", + "airportId": 5100, + "codeIataAirport": "MSJ", + "codeIataCity": "MSJ", + "codeIcaoAirport": "RJSM", + "codeIso2Country": "JP", + "geonameId": "6300395", + "latitudeAirport": 40.696316, + "longitudeAirport": 141.3869, + "nameAirport": "Misawa", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "airportId": 5101, + "codeIataAirport": "MSK", + "codeIataCity": "MSK", + "codeIcaoAirport": "", + "codeIso2Country": "BS", + "geonameId": "3571904", + "latitudeAirport": 25.033333, + "longitudeAirport": -78.0, + "nameAirport": "Mastic Point", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-6", + "airportId": 5102, + "codeIataAirport": "MSL", + "codeIataCity": "MSL", + "codeIcaoAirport": "KMSL", + "codeIso2Country": "US", + "geonameId": "4078964", + "latitudeAirport": 34.74861, + "longitudeAirport": -87.61611, + "nameAirport": "Sheffield", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 5103, + "codeIataAirport": "MSM", + "codeIataCity": "MSM", + "codeIcaoAirport": "FZCV", + "codeIso2Country": "CD", + "geonameId": "7730558", + "latitudeAirport": -4.766667, + "longitudeAirport": 17.916668, + "nameAirport": "Masi Manimba", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "-6", + "airportId": 5104, + "codeIataAirport": "MSN", + "codeIataCity": "MSN", + "codeIcaoAirport": "KMSN", + "codeIso2Country": "US", + "geonameId": "5261457", + "latitudeAirport": 43.136375, + "longitudeAirport": -89.3465, + "nameAirport": "Dane County Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 5105, + "codeIataAirport": "MSO", + "codeIataCity": "MSO", + "codeIcaoAirport": "KMSO", + "codeIso2Country": "US", + "geonameId": "5666675", + "latitudeAirport": 46.918964, + "longitudeAirport": -114.08321, + "nameAirport": "Missoula International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 5106, + "codeIataAirport": "MSP", + "codeIataCity": "MSP", + "codeIcaoAirport": "KMSP", + "codeIso2Country": "US", + "geonameId": "5037658", + "latitudeAirport": 44.883015, + "longitudeAirport": -93.21092, + "nameAirport": "Minneapolis - St. Paul International", + "nameCountry": "United States", + "phone": "612-726-5555", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 5107, + "codeIataAirport": "MSQ", + "codeIataCity": "MSQ", + "codeIcaoAirport": "UMMS", + "codeIso2Country": "BY", + "geonameId": "6301868", + "latitudeAirport": 53.889725, + "longitudeAirport": 28.032442, + "nameAirport": "Minsk National 2", + "nameCountry": "Belarus", + "phone": "", + "timezone": "Europe/Minsk" + }, + { + "GMT": "3", + "airportId": 5108, + "codeIataAirport": "MSR", + "codeIataCity": "MSR", + "codeIcaoAirport": "LTCK", + "codeIso2Country": "TR", + "geonameId": "6299769", + "latitudeAirport": 38.725, + "longitudeAirport": 41.625, + "nameAirport": "Mus", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-5", + "airportId": 5109, + "codeIataAirport": "MSS", + "codeIataCity": "MSS", + "codeIcaoAirport": "KMSS", + "codeIso2Country": "US", + "geonameId": "5126194", + "latitudeAirport": 44.93778, + "longitudeAirport": -74.846664, + "nameAirport": "Richards Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 5110, + "codeIataAirport": "MST", + "codeIataCity": "MST", + "codeIcaoAirport": "EHBK", + "codeIso2Country": "NL", + "geonameId": "6296681", + "latitudeAirport": 50.91562, + "longitudeAirport": 5.768827, + "nameAirport": "Maastricht/aachen", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "2", + "airportId": 5111, + "codeIataAirport": "MSU", + "codeIataCity": "MSU", + "codeIcaoAirport": "FXMM", + "codeIso2Country": "LS", + "geonameId": "6297128", + "latitudeAirport": -29.30139, + "longitudeAirport": 27.505556, + "nameAirport": "Moshoeshoe International", + "nameCountry": "Lesotho", + "phone": "", + "timezone": "Africa/Maseru" + }, + { + "GMT": "-5", + "airportId": 5112, + "codeIataAirport": "MSV", + "codeIataCity": "MSV", + "codeIcaoAirport": "KMSV", + "codeIso2Country": "US", + "geonameId": "5140137", + "latitudeAirport": 41.70139, + "longitudeAirport": -74.795, + "nameAirport": "Sullivan County International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 5113, + "codeIataAirport": "MSW", + "codeIataCity": "MSW", + "codeIcaoAirport": "HHMS", + "codeIso2Country": "ER", + "geonameId": "7730092", + "latitudeAirport": 15.603333, + "longitudeAirport": 39.441113, + "nameAirport": "Massawa International", + "nameCountry": "Eritrea", + "phone": "", + "timezone": "Africa/Asmara" + }, + { + "GMT": "1", + "airportId": 5114, + "codeIataAirport": "MSX", + "codeIataCity": "MSX", + "codeIcaoAirport": "", + "codeIso2Country": "CG", + "geonameId": "2256895", + "latitudeAirport": -2.95, + "longitudeAirport": 12.733333, + "nameAirport": "Mossendjo", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-6", + "airportId": 5115, + "codeIataAirport": "MSY", + "codeIataCity": "MSY", + "codeIcaoAirport": "KMSY", + "codeIso2Country": "US", + "geonameId": "4335061", + "latitudeAirport": 29.984564, + "longitudeAirport": -90.25639, + "nameAirport": "Louis Armstrong New Orléans International Airport", + "nameCountry": "United States", + "phone": "504-303-7500", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 5116, + "codeIataAirport": "MSZ", + "codeIataCity": "MSZ", + "codeIcaoAirport": "FNMO", + "codeIso2Country": "AO", + "geonameId": "7668250", + "latitudeAirport": -15.208611, + "longitudeAirport": 12.160833, + "nameAirport": "Namibe", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "12", + "airportId": 5117, + "codeIataAirport": "MTA", + "codeIataCity": "MTA", + "codeIcaoAirport": "", + "codeIso2Country": "NZ", + "geonameId": "6235764", + "latitudeAirport": -37.816666, + "longitudeAirport": 175.76666, + "nameAirport": "Matamata", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-5", + "airportId": 5118, + "codeIataAirport": "MTB", + "codeIataCity": "MTB", + "codeIcaoAirport": "SKML", + "codeIso2Country": "CO", + "geonameId": "7731295", + "latitudeAirport": 8.066667, + "longitudeAirport": -75.46667, + "nameAirport": "Monte Libano", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 5119, + "codeIataAirport": "MTC", + "codeIataCity": "MTC", + "codeIcaoAirport": "KMTC", + "codeIso2Country": "US", + "geonameId": "6298708", + "latitudeAirport": 42.583332, + "longitudeAirport": -82.88333, + "nameAirport": "Selfridge ANGB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "9.30", + "airportId": 5120, + "codeIataAirport": "MTD", + "codeIataCity": "MTD", + "codeIcaoAirport": "YMSF", + "codeIso2Country": "AU", + "geonameId": "7731296", + "latitudeAirport": -17.0, + "longitudeAirport": 130.56667, + "nameAirport": "Mt Sandford", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-3", + "airportId": 5121, + "codeIataAirport": "MTE", + "codeIataCity": "MTE", + "codeIcaoAirport": "SNMA", + "codeIso2Country": "BR", + "geonameId": "7731297", + "latitudeAirport": -1.983333, + "longitudeAirport": -54.066666, + "nameAirport": "Monte Alegre", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Santarem" + }, + { + "GMT": "3", + "airportId": 5122, + "codeIataAirport": "MTF", + "codeIataCity": "MTF", + "codeIcaoAirport": "HAMT", + "codeIso2Country": "ET", + "geonameId": "7730591", + "latitudeAirport": 6.966667, + "longitudeAirport": 35.533333, + "nameAirport": "Mizan Teferi", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-4", + "airportId": 5123, + "codeIataAirport": "MTG", + "codeIataCity": "MTG", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8260862", + "latitudeAirport": -14.0, + "longitudeAirport": -55.0, + "nameAirport": "Mato Grosso", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-5", + "airportId": 5124, + "codeIataAirport": "MTH", + "codeIataCity": "MTH", + "codeIcaoAirport": "KMTH", + "codeIso2Country": "US", + "geonameId": "4163380", + "latitudeAirport": 24.719444, + "longitudeAirport": -81.05139, + "nameAirport": "The Florida Keys Marathon", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-1", + "airportId": 5125, + "codeIataAirport": "MTI", + "codeIataCity": "MTI", + "codeIcaoAirport": "GVMT", + "codeIso2Country": "CV", + "geonameId": "7730582", + "latitudeAirport": 15.0, + "longitudeAirport": -24.433332, + "nameAirport": "Mosteiros", + "nameCountry": "Cape Verde", + "phone": "", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "-7", + "airportId": 5126, + "codeIataAirport": "MTJ", + "codeIataCity": "MTJ", + "codeIcaoAirport": "KMTJ", + "codeIso2Country": "US", + "geonameId": "5431733", + "latitudeAirport": 38.51029, + "longitudeAirport": -107.89696, + "nameAirport": "Montrose Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "12", + "airportId": 5127, + "codeIataAirport": "MTK", + "codeIataCity": "MTK", + "codeIcaoAirport": "", + "codeIso2Country": "KI", + "geonameId": "0", + "latitudeAirport": 3.0, + "longitudeAirport": 174.0, + "nameAirport": "Makin Island", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "10", + "airportId": 5128, + "codeIataAirport": "MTL", + "codeIataCity": "MTL", + "codeIcaoAirport": "YMND", + "codeIso2Country": "AU", + "geonameId": "7731298", + "latitudeAirport": -32.733334, + "longitudeAirport": 151.55, + "nameAirport": "Maitland", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-9", + "airportId": 5129, + "codeIataAirport": "MTM", + "codeIataCity": "MTM", + "codeIcaoAirport": "PAMM", + "codeIso2Country": "US", + "geonameId": "5555695", + "latitudeAirport": 55.13333, + "longitudeAirport": -131.58333, + "nameAirport": "SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Metlakatla" + }, + { + "GMT": "-5", + "airportId": 5130, + "codeIataAirport": "MTN", + "codeIataCity": "BWI", + "codeIcaoAirport": "KMTN", + "codeIso2Country": "US", + "geonameId": "4361793", + "latitudeAirport": 39.321667, + "longitudeAirport": -76.41167, + "nameAirport": "Glenn L Martin", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 5131, + "codeIataAirport": "MTO", + "codeIataCity": "MTO", + "codeIcaoAirport": "KMTO", + "codeIso2Country": "US", + "geonameId": "4236160", + "latitudeAirport": 39.47861, + "longitudeAirport": -88.278336, + "nameAirport": "Coles County Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 5132, + "codeIataAirport": "MTP", + "codeIataCity": "MTP", + "codeIcaoAirport": "KMTP", + "codeIso2Country": "US", + "geonameId": "5127322", + "latitudeAirport": 41.074444, + "longitudeAirport": -71.923615, + "nameAirport": "Montauk Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 5133, + "codeIataAirport": "MTQ", + "codeIataCity": "MTQ", + "codeIcaoAirport": "YMIT", + "codeIso2Country": "AU", + "geonameId": "7731299", + "latitudeAirport": -26.583332, + "longitudeAirport": 147.96666, + "nameAirport": "Mitchell", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 5134, + "codeIataAirport": "MTR", + "codeIataCity": "MTR", + "codeIcaoAirport": "SKMR", + "codeIso2Country": "CO", + "geonameId": "6300747", + "latitudeAirport": 8.825035, + "longitudeAirport": -75.82392, + "nameAirport": "S. Jeronimo", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "2", + "airportId": 5135, + "codeIataAirport": "MTS", + "codeIataCity": "MTS", + "codeIcaoAirport": "FDMS", + "codeIso2Country": "SZ", + "geonameId": "6296968", + "latitudeAirport": -26.52033, + "longitudeAirport": 31.314133, + "nameAirport": "Matsapha International", + "nameCountry": "Swaziland", + "phone": "", + "timezone": "Africa/Mbabane" + }, + { + "GMT": "-6", + "airportId": 5136, + "codeIataAirport": "MTT", + "codeIataCity": "MTT", + "codeIcaoAirport": "MMMT", + "codeIso2Country": "MX", + "geonameId": "6299857", + "latitudeAirport": 17.983334, + "longitudeAirport": -94.51667, + "nameAirport": "Minatitlan", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "2", + "airportId": 5137, + "codeIataAirport": "MTU", + "codeIataCity": "MTU", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "7731300", + "latitudeAirport": -13.133333, + "longitudeAirport": 38.983334, + "nameAirport": "Montepuez", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "11", + "airportId": 5138, + "codeIataAirport": "MTV", + "codeIataCity": "MTV", + "codeIcaoAirport": "NVSA", + "codeIso2Country": "VU", + "geonameId": "7668373", + "latitudeAirport": -13.666667, + "longitudeAirport": 167.66667, + "nameAirport": "Mota Lava", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-6", + "airportId": 5139, + "codeIataAirport": "MTW", + "codeIataCity": "MTW", + "codeIcaoAirport": "KMTW", + "codeIso2Country": "US", + "geonameId": "5261588", + "latitudeAirport": 44.129723, + "longitudeAirport": -87.68222, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 5140, + "codeIataAirport": "MTX", + "codeIataCity": "FAI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 64.816666, + "longitudeAirport": -147.86667, + "nameAirport": "Metro Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 5141, + "codeIataAirport": "MTY", + "codeIataCity": "MTY", + "codeIcaoAirport": "MMMY", + "codeIso2Country": "MX", + "geonameId": "6299860", + "latitudeAirport": 25.77657, + "longitudeAirport": -100.114395, + "nameAirport": "Gen Mariano Escobedo", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Monterrey" + }, + { + "GMT": "2", + "airportId": 5142, + "codeIataAirport": "MTZ", + "codeIataCity": "MTZ", + "codeIcaoAirport": "LLMZ", + "codeIso2Country": "IL", + "geonameId": "7668323", + "latitudeAirport": 33.233334, + "longitudeAirport": 35.75, + "nameAirport": "Masada", + "nameCountry": "Israel", + "phone": "", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "11", + "airportId": 5143, + "codeIataAirport": "MUA", + "codeIataCity": "MUA", + "codeIcaoAirport": "AGGM", + "codeIso2Country": "SB", + "geonameId": "6295681", + "latitudeAirport": -8.32794, + "longitudeAirport": 157.26971, + "nameAirport": "Munda", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "2", + "airportId": 5144, + "codeIataAirport": "MUB", + "codeIataCity": "MUB", + "codeIcaoAirport": "FBMN", + "codeIso2Country": "BW", + "geonameId": "6296948", + "latitudeAirport": -19.970833, + "longitudeAirport": 23.430555, + "nameAirport": "Maun", + "nameCountry": "Botswana", + "phone": "", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "1", + "airportId": 5145, + "codeIataAirport": "MUC", + "codeIataCity": "MUC", + "codeIcaoAirport": "EDDM", + "codeIso2Country": "DE", + "geonameId": "3208399", + "latitudeAirport": 48.353004, + "longitudeAirport": 11.790143, + "nameAirport": "Franz Josef Strauss", + "nameCountry": "Germany", + "phone": "089/97500", + "timezone": "Europe/Berlin" + }, + { + "GMT": "2", + "airportId": 5146, + "codeIataAirport": "MUD", + "codeIataCity": "MUD", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "1036263", + "latitudeAirport": -11.666667, + "longitudeAirport": 39.516666, + "nameAirport": "Mueda", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-10", + "airportId": 5147, + "codeIataAirport": "MUE", + "codeIataCity": "MUE", + "codeIcaoAirport": "PHMU", + "codeIso2Country": "US", + "geonameId": "5854593", + "latitudeAirport": 20.0125, + "longitudeAirport": -155.67334, + "nameAirport": "Kamuela", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "9", + "airportId": 5148, + "codeIataAirport": "MUF", + "codeIataCity": "MUF", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731301", + "latitudeAirport": -7.5, + "longitudeAirport": 140.33333, + "nameAirport": "Muting", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-7", + "airportId": 5149, + "codeIataAirport": "MUG", + "codeIataCity": "MUG", + "codeIcaoAirport": "MMMG", + "codeIso2Country": "MX", + "geonameId": "7730666", + "latitudeAirport": 26.916668, + "longitudeAirport": -111.98333, + "nameAirport": "Mulege", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mazatlan" + }, + { + "GMT": "2", + "airportId": 5150, + "codeIataAirport": "MUH", + "codeIataCity": "MUH", + "codeIcaoAirport": "HEMM", + "codeIso2Country": "EG", + "geonameId": "6297296", + "latitudeAirport": 31.35, + "longitudeAirport": 27.25, + "nameAirport": "Mersa Matruh", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-5", + "airportId": 5151, + "codeIataAirport": "MUI", + "codeIataCity": "MUI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.447582, + "longitudeAirport": -76.59661, + "nameAirport": "Muir AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 5152, + "codeIataAirport": "MUJ", + "codeIataCity": "MUJ", + "codeIcaoAirport": "", + "codeIso2Country": "ET", + "geonameId": "0", + "latitudeAirport": 6.333333, + "longitudeAirport": 35.0, + "nameAirport": "Mui", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-10", + "airportId": 5153, + "codeIataAirport": "MUK", + "codeIataCity": "MUK", + "codeIcaoAirport": "NCMK", + "codeIso2Country": "CK", + "geonameId": "7730686", + "latitudeAirport": -19.333332, + "longitudeAirport": -158.5, + "nameAirport": "Mauke Island", + "nameCountry": "Cook Islands", + "phone": "", + "timezone": "Pacific/Rarotonga" + }, + { + "GMT": "-5", + "airportId": 5154, + "codeIataAirport": "MUL", + "codeIataCity": "MGR", + "codeIcaoAirport": "KMUL", + "codeIso2Country": "US", + "geonameId": "4223905", + "latitudeAirport": 31.183332, + "longitudeAirport": -83.78333, + "nameAirport": "Spence", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "airportId": 5155, + "codeIataAirport": "MUN", + "codeIataCity": "MUN", + "codeIcaoAirport": "SVMT", + "codeIso2Country": "VE", + "geonameId": "3789620", + "latitudeAirport": 9.749384, + "longitudeAirport": -63.156933, + "nameAirport": "Quiriquire", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-7", + "airportId": 5156, + "codeIataAirport": "MUO", + "codeIataCity": "MUO", + "codeIcaoAirport": "KMUO", + "codeIso2Country": "US", + "geonameId": "5613037", + "latitudeAirport": 43.13333, + "longitudeAirport": -115.683334, + "nameAirport": "Mountain Home AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Boise" + }, + { + "GMT": "8", + "airportId": 5157, + "codeIataAirport": "MUQ", + "codeIataCity": "MUQ", + "codeIcaoAirport": "YMUC", + "codeIso2Country": "AU", + "geonameId": "7731304", + "latitudeAirport": -20.666668, + "longitudeAirport": 120.0, + "nameAirport": "Muccan", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "airportId": 5158, + "codeIataAirport": "MUR", + "codeIataCity": "MUR", + "codeIcaoAirport": "WBGM", + "codeIso2Country": "MY", + "geonameId": "1737919", + "latitudeAirport": 4.183333, + "longitudeAirport": 114.316666, + "nameAirport": "Marudi", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "9", + "airportId": 5159, + "codeIataAirport": "MUS", + "codeIataCity": "MUS", + "codeIcaoAirport": "", + "codeIso2Country": "JP", + "geonameId": "0", + "latitudeAirport": 24.29, + "longitudeAirport": 153.98, + "nameAirport": "Marcus Island", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-6", + "airportId": 5160, + "codeIataAirport": "MUT", + "codeIataCity": "MUT", + "codeIcaoAirport": "KMUT", + "codeIso2Country": "US", + "geonameId": "4868426", + "latitudeAirport": 41.36667, + "longitudeAirport": -91.145, + "nameAirport": "Muscatine", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 5161, + "codeIataAirport": "MUU", + "codeIataCity": "MUU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.38333, + "longitudeAirport": -77.88333, + "nameAirport": "Mount Union", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 5162, + "codeIataAirport": "MUV", + "codeIataCity": "PHL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.868057, + "longitudeAirport": -75.24861, + "nameAirport": "Mustin Alf", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 5163, + "codeIataAirport": "MUW", + "codeIataCity": "MUW", + "codeIcaoAirport": "DAOV", + "codeIso2Country": "DZ", + "geonameId": "6296383", + "latitudeAirport": 35.333332, + "longitudeAirport": 0.15, + "nameAirport": "Mascara-Ghriss", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "5", + "airportId": 5164, + "codeIataAirport": "MUX", + "codeIataCity": "MUX", + "codeIcaoAirport": "OPMT", + "codeIso2Country": "PK", + "geonameId": "6300114", + "latitudeAirport": 30.199507, + "longitudeAirport": 71.41498, + "nameAirport": "Multan International", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "1", + "airportId": 5165, + "codeIataAirport": "MUY", + "codeIataCity": "MUY", + "codeIcaoAirport": "FCBM", + "codeIso2Country": "CG", + "geonameId": "6296957", + "latitudeAirport": -3.983333, + "longitudeAirport": 13.919444, + "nameAirport": "Mouyondzi", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "3", + "airportId": 5166, + "codeIataAirport": "MUZ", + "codeIataCity": "MUZ", + "codeIcaoAirport": "HTMU", + "codeIso2Country": "TZ", + "geonameId": "6297364", + "latitudeAirport": -1.497222, + "longitudeAirport": 33.8, + "nameAirport": "Musoma", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "0", + "airportId": 5167, + "codeIataAirport": "MVA", + "codeIataCity": "MVA", + "codeIcaoAirport": "BIRL", + "codeIso2Country": "IS", + "geonameId": "7730437", + "latitudeAirport": 65.61667, + "longitudeAirport": -16.966667, + "nameAirport": "Reykiahlid", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "1", + "airportId": 5168, + "codeIataAirport": "MVB", + "codeIataCity": "MVB", + "codeIcaoAirport": "FOON", + "codeIso2Country": "GA", + "geonameId": "6297074", + "latitudeAirport": -1.65, + "longitudeAirport": 13.433333, + "nameAirport": "Franceville/Mvengue", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-6", + "airportId": 5169, + "codeIataAirport": "MVC", + "codeIataCity": "MVC", + "codeIcaoAirport": "KMVC", + "codeIso2Country": "US", + "geonameId": "4076725", + "latitudeAirport": 31.516666, + "longitudeAirport": -87.333336, + "nameAirport": "Monroe - Walton County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 5170, + "codeIataAirport": "MVD", + "codeIataCity": "MVD", + "codeIcaoAirport": "SUMU", + "codeIso2Country": "UY", + "geonameId": "3443317", + "latitudeAirport": -34.841152, + "longitudeAirport": -56.026466, + "nameAirport": "Carrasco International", + "nameCountry": "Uruguay", + "phone": "", + "timezone": "America/Montevideo" + }, + { + "GMT": "-6", + "airportId": 5171, + "codeIataAirport": "MVE", + "codeIataCity": "MVE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 44.95, + "longitudeAirport": -95.71667, + "nameAirport": "Montevideo-Chippewa", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 5172, + "codeIataAirport": "MVF", + "codeIataCity": "MVF", + "codeIcaoAirport": "SBMW", + "codeIso2Country": "BR", + "geonameId": "6300646", + "latitudeAirport": -5.166667, + "longitudeAirport": -37.25, + "nameAirport": "Dixsept Rosado", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "1", + "airportId": 5173, + "codeIataAirport": "MVG", + "codeIataCity": "MVG", + "codeIcaoAirport": "", + "codeIso2Country": "GA", + "geonameId": "2398621", + "latitudeAirport": 0.116667, + "longitudeAirport": 11.083333, + "nameAirport": "Mevang", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "10", + "airportId": 5174, + "codeIataAirport": "MVH", + "codeIataCity": "MVH", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2159194", + "latitudeAirport": -30.75, + "longitudeAirport": 152.9, + "nameAirport": "Macksville", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "9.30", + "airportId": 5175, + "codeIataAirport": "MVK", + "codeIataCity": "MVK", + "codeIcaoAirport": "YMUK", + "codeIso2Country": "AU", + "geonameId": "7731305", + "latitudeAirport": -27.25, + "longitudeAirport": 138.0, + "nameAirport": "Mulka", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-5", + "airportId": 5176, + "codeIataAirport": "MVL", + "codeIataCity": "MVL", + "codeIcaoAirport": "KMVL", + "codeIso2Country": "US", + "geonameId": "5238772", + "latitudeAirport": 44.566666, + "longitudeAirport": -72.6, + "nameAirport": "Morrisville-Stowe", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 5177, + "codeIataAirport": "MVM", + "codeIataCity": "MVM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5300831", + "latitudeAirport": 36.702778, + "longitudeAirport": -110.23333, + "nameAirport": "Monument Valley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Shiprock" + }, + { + "GMT": "-6", + "airportId": 5178, + "codeIataAirport": "MVN", + "codeIataCity": "MVN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4245170", + "latitudeAirport": 38.323055, + "longitudeAirport": -88.85861, + "nameAirport": "Mt Vernon-Outland", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 5179, + "codeIataAirport": "MVO", + "codeIataCity": "MVO", + "codeIcaoAirport": "", + "codeIso2Country": "TD", + "geonameId": "2427637", + "latitudeAirport": 12.2, + "longitudeAirport": 18.783333, + "nameAirport": "Mongo", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "-5", + "airportId": 5180, + "codeIataAirport": "MVP", + "codeIataCity": "MVP", + "codeIcaoAirport": "SKMU", + "codeIso2Country": "CO", + "geonameId": "6300748", + "latitudeAirport": 1.133333, + "longitudeAirport": -70.05, + "nameAirport": "Mitu", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "airportId": 5181, + "codeIataAirport": "MVQ", + "codeIataCity": "MVQ", + "codeIcaoAirport": "UMOO", + "codeIso2Country": "BY", + "geonameId": "7668522", + "latitudeAirport": 53.95, + "longitudeAirport": 30.133333, + "nameAirport": "Mogilev", + "nameCountry": "Belarus", + "phone": "", + "timezone": "Europe/Minsk" + }, + { + "GMT": "1", + "airportId": 5182, + "codeIataAirport": "MVR", + "codeIataCity": "MVR", + "codeIcaoAirport": "FKKL", + "codeIso2Country": "CM", + "geonameId": "7668241", + "latitudeAirport": 10.452222, + "longitudeAirport": 14.256389, + "nameAirport": "Salam", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "-3", + "airportId": 5183, + "codeIataAirport": "MVS", + "codeIataCity": "MVS", + "codeIcaoAirport": "SNMU", + "codeIso2Country": "BR", + "geonameId": "7731306", + "latitudeAirport": -18.083332, + "longitudeAirport": -39.566666, + "nameAirport": "Aeroporto Max Feffer", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "-10", + "airportId": 5184, + "codeIataAirport": "MVT", + "codeIataCity": "MVT", + "codeIcaoAirport": "NTGV", + "codeIso2Country": "PF", + "geonameId": "7730128", + "latitudeAirport": -14.833333, + "longitudeAirport": -148.41667, + "nameAirport": "Mataiva", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "10", + "airportId": 5185, + "codeIataAirport": "MVU", + "codeIataCity": "MVU", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298781", + "latitudeAirport": -14.166667, + "longitudeAirport": 143.68333, + "nameAirport": "Musgrave", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "airportId": 5186, + "codeIataAirport": "MVV", + "codeIataCity": "MVV", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 45.816666, + "longitudeAirport": 6.65, + "nameAirport": "Megeve", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-8", + "airportId": 5187, + "codeIataAirport": "MVW", + "codeIataCity": "MVW", + "codeIcaoAirport": "KBVS", + "codeIso2Country": "US", + "geonameId": "5786501", + "latitudeAirport": 48.416668, + "longitudeAirport": -122.333336, + "nameAirport": "Skagit Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 5188, + "codeIataAirport": "MVX", + "codeIataCity": "MVX", + "codeIcaoAirport": "FOGV", + "codeIso2Country": "GA", + "geonameId": "7730528", + "latitudeAirport": 2.15, + "longitudeAirport": 12.133333, + "nameAirport": "Minvoul", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-5", + "airportId": 5189, + "codeIataAirport": "MVY", + "codeIataCity": "MVY", + "codeIcaoAirport": "KMVY", + "codeIso2Country": "US", + "geonameId": "4943237", + "latitudeAirport": 41.389336, + "longitudeAirport": -70.61182, + "nameAirport": "Martha's Vineyard", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 5190, + "codeIataAirport": "MVZ", + "codeIataCity": "MVZ", + "codeIcaoAirport": "FVMV", + "codeIso2Country": "ZW", + "geonameId": "6297113", + "latitudeAirport": -20.054167, + "longitudeAirport": 30.860556, + "nameAirport": "Masvingo", + "nameCountry": "Zimbabwe", + "phone": "", + "timezone": "Africa/Harare" + }, + { + "GMT": "-6", + "airportId": 5191, + "codeIataAirport": "MWA", + "codeIataCity": "MWA", + "codeIcaoAirport": "KMWA", + "codeIso2Country": "US", + "geonameId": "4253176", + "latitudeAirport": 37.751945, + "longitudeAirport": -89.01639, + "nameAirport": "Williamson County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 5192, + "codeIataAirport": "MWB", + "codeIataCity": "MWB", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731307", + "latitudeAirport": -29.204166, + "longitudeAirport": 116.0225, + "nameAirport": "Morawa", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "airportId": 5193, + "codeIataAirport": "MWC", + "codeIataCity": "MKE", + "codeIcaoAirport": "KMWC", + "codeIso2Country": "US", + "geonameId": "5259610", + "latitudeAirport": 43.033333, + "longitudeAirport": -87.916664, + "nameAirport": "Lawrence J Timmerman", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5", + "airportId": 5194, + "codeIataAirport": "MWD", + "codeIataCity": "MWD", + "codeIcaoAirport": "OPMI", + "codeIso2Country": "PK", + "geonameId": "1333471", + "latitudeAirport": 32.55, + "longitudeAirport": 71.55, + "nameAirport": "Mianwali", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "3", + "airportId": 5195, + "codeIataAirport": "MWE", + "codeIataCity": "MWE", + "codeIcaoAirport": "HSMR", + "codeIso2Country": "SD", + "geonameId": "8224629", + "latitudeAirport": 18.45, + "longitudeAirport": 31.833332, + "nameAirport": "Merowe", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "11", + "airportId": 5196, + "codeIataAirport": "MWF", + "codeIataCity": "MWF", + "codeIcaoAirport": "NVSN", + "codeIso2Country": "VU", + "geonameId": "7730713", + "latitudeAirport": -15.166667, + "longitudeAirport": 168.16667, + "nameAirport": "Maewo", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "10", + "airportId": 5197, + "codeIataAirport": "MWG", + "codeIataCity": "MWG", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8261032", + "latitudeAirport": -6.133333, + "longitudeAirport": 146.13333, + "nameAirport": "Marawaka", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "airportId": 5198, + "codeIataAirport": "MWH", + "codeIataCity": "MWH", + "codeIcaoAirport": "KMWH", + "codeIso2Country": "US", + "geonameId": "5803990", + "latitudeAirport": 47.205, + "longitudeAirport": -119.31556, + "nameAirport": "Grant County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 5199, + "codeIataAirport": "MWI", + "codeIataCity": "MWI", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299221", + "latitudeAirport": -5.15, + "longitudeAirport": 143.48334, + "nameAirport": "Maramuni", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "airportId": 5200, + "codeIataAirport": "MWJ", + "codeIataCity": "MWJ", + "codeIcaoAirport": "", + "codeIso2Country": "GY", + "geonameId": "8261024", + "latitudeAirport": 6.55, + "longitudeAirport": -59.9, + "nameAirport": "Matthews Ridge", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "7", + "airportId": 5201, + "codeIataAirport": "MWK", + "codeIataCity": "MWK", + "codeIcaoAirport": "WIOM", + "codeIso2Country": "ID", + "geonameId": "7668673", + "latitudeAirport": 3.3, + "longitudeAirport": 106.26667, + "nameAirport": "Matak", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-6", + "airportId": 5202, + "codeIataAirport": "MWL", + "codeIataCity": "MWL", + "codeIcaoAirport": "KMWL", + "codeIso2Country": "US", + "geonameId": "4711648", + "latitudeAirport": 32.783333, + "longitudeAirport": -98.066666, + "nameAirport": "Mineral Wells Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 5203, + "codeIataAirport": "MWM", + "codeIataCity": "MWM", + "codeIcaoAirport": "KMWM", + "codeIso2Country": "US", + "geonameId": "5053092", + "latitudeAirport": 43.916668, + "longitudeAirport": -95.1, + "nameAirport": "Windom Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 5204, + "codeIataAirport": "MWN", + "codeIataCity": "MWN", + "codeIcaoAirport": "HTMD", + "codeIso2Country": "TZ", + "geonameId": "7730622", + "latitudeAirport": -3.55, + "longitudeAirport": 33.6, + "nameAirport": "Mwadui", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-5", + "airportId": 5205, + "codeIataAirport": "MWO", + "codeIataCity": "MWO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.516666, + "longitudeAirport": -84.4, + "nameAirport": "Hook Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "5.45", + "airportId": 5206, + "codeIataAirport": "MWP", + "codeIataCity": "MWP", + "codeIcaoAirport": "", + "codeIso2Country": "NP", + "geonameId": "7731308", + "latitudeAirport": 28.0, + "longitudeAirport": 85.333336, + "nameAirport": "Mountain", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "6.30", + "airportId": 5207, + "codeIataAirport": "MWQ", + "codeIataCity": "MWQ", + "codeIcaoAirport": "VYMW", + "codeIso2Country": "MM", + "geonameId": "7731309", + "latitudeAirport": 20.166668, + "longitudeAirport": 94.94111, + "nameAirport": "Magwe", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "2", + "airportId": 5208, + "codeIataAirport": "MWR", + "codeIataCity": "MWR", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Motswari Airfield", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-8", + "airportId": 5209, + "codeIataAirport": "MWS", + "codeIataCity": "MWS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.216667, + "longitudeAirport": -118.066666, + "nameAirport": "Mount Wilson", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "airportId": 5210, + "codeIataAirport": "MWT", + "codeIataCity": "MWT", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298794", + "latitudeAirport": -28.5, + "longitudeAirport": 138.0, + "nameAirport": "Moolawatana", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "10", + "airportId": 5211, + "codeIataAirport": "MWU", + "codeIataCity": "MWU", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260863", + "latitudeAirport": -1.5, + "longitudeAirport": 149.66667, + "nameAirport": "Mussau", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "7", + "airportId": 5212, + "codeIataAirport": "MWV", + "codeIataCity": "MWV", + "codeIcaoAirport": "", + "codeIso2Country": "KH", + "geonameId": "8261060", + "latitudeAirport": 12.460556, + "longitudeAirport": 107.190834, + "nameAirport": "Mundulkiri", + "nameCountry": "Cambodia", + "phone": "", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "9", + "airportId": 5213, + "codeIataAirport": "MWX", + "codeIataCity": "MWX", + "codeIcaoAirport": "RKJB", + "codeIso2Country": "KR", + "geonameId": "8299100", + "latitudeAirport": 34.991405, + "longitudeAirport": 126.38281, + "nameAirport": "Muan International", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "10", + "airportId": 5214, + "codeIataAirport": "MWY", + "codeIataCity": "MWY", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731310", + "latitudeAirport": -25.783333, + "longitudeAirport": 141.51666, + "nameAirport": "Miranda Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "airportId": 5215, + "codeIataAirport": "MWZ", + "codeIataCity": "MWZ", + "codeIcaoAirport": "HTMW", + "codeIso2Country": "TZ", + "geonameId": "6297365", + "latitudeAirport": -2.441221, + "longitudeAirport": 32.923225, + "nameAirport": "Mwanza", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-6", + "airportId": 5216, + "codeIataAirport": "MXA", + "codeIataCity": "MXA", + "codeIcaoAirport": "KMXA", + "codeIso2Country": "US", + "geonameId": "4120424", + "latitudeAirport": 35.88333, + "longitudeAirport": -90.183334, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 5217, + "codeIataAirport": "MXB", + "codeIataCity": "MXB", + "codeIcaoAirport": "WAWM", + "codeIso2Country": "ID", + "geonameId": "7731311", + "latitudeAirport": -2.333333, + "longitudeAirport": 120.333336, + "nameAirport": "Masamba", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-7", + "airportId": 5218, + "codeIataAirport": "MXC", + "codeIataCity": "MXC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5546330", + "latitudeAirport": 37.88333, + "longitudeAirport": -109.36667, + "nameAirport": "San Juan County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "airportId": 5219, + "codeIataAirport": "MXD", + "codeIataCity": "MXD", + "codeIcaoAirport": "YMWX", + "codeIso2Country": "AU", + "geonameId": "7731312", + "latitudeAirport": -23.333332, + "longitudeAirport": 139.6, + "nameAirport": "Marion Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 5220, + "codeIataAirport": "MXE", + "codeIataCity": "MXE", + "codeIcaoAirport": "KMEB", + "codeIso2Country": "US", + "geonameId": "4478372", + "latitudeAirport": 34.716667, + "longitudeAirport": -79.333336, + "nameAirport": "Maxton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 5221, + "codeIataAirport": "MXF", + "codeIataCity": "MGM", + "codeIcaoAirport": "KMXF", + "codeIso2Country": "US", + "geonameId": "6301653", + "latitudeAirport": 32.38333, + "longitudeAirport": -86.316666, + "nameAirport": "Maxwell AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 5222, + "codeIataAirport": "MXG", + "codeIataCity": "MXG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.333332, + "longitudeAirport": -71.55, + "nameAirport": "Marlborough", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 5223, + "codeIataAirport": "MXH", + "codeIataCity": "MXH", + "codeIcaoAirport": "AYMR", + "codeIso2Country": "PG", + "geonameId": "7730411", + "latitudeAirport": -6.3525, + "longitudeAirport": 143.25055, + "nameAirport": "Moro", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 5224, + "codeIataAirport": "MXI", + "codeIataCity": "MXI", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "0", + "latitudeAirport": 6.916667, + "longitudeAirport": 126.25, + "nameAirport": "Imelda Romualdez Marcos", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "1", + "airportId": 5225, + "codeIataAirport": "MXJ", + "codeIataCity": "MXJ", + "codeIcaoAirport": "DNMN", + "codeIso2Country": "NG", + "geonameId": "7668188", + "latitudeAirport": 9.616667, + "longitudeAirport": 6.533333, + "nameAirport": "Minna", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "10", + "airportId": 5226, + "codeIataAirport": "MXK", + "codeIataCity": "MXK", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2090785", + "latitudeAirport": -6.383333, + "longitudeAirport": 147.61667, + "nameAirport": "Mindik", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "airportId": 5227, + "codeIataAirport": "MXL", + "codeIataCity": "MXL", + "codeIcaoAirport": "MMML", + "codeIso2Country": "MX", + "geonameId": "7910158", + "latitudeAirport": 32.6282, + "longitudeAirport": -115.248215, + "nameAirport": "Mexicali", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Tijuana" + }, + { + "GMT": "3", + "airportId": 5228, + "codeIataAirport": "MXM", + "codeIataCity": "MXM", + "codeIcaoAirport": "FMSR", + "codeIso2Country": "MG", + "geonameId": "1058391", + "latitudeAirport": -21.75, + "longitudeAirport": 43.36667, + "nameAirport": "Morombe", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "1", + "airportId": 5229, + "codeIataAirport": "MXN", + "codeIataCity": "MXN", + "codeIcaoAirport": "LFRU", + "codeIso2Country": "FR", + "geonameId": "6299463", + "latitudeAirport": 48.6, + "longitudeAirport": -3.816667, + "nameAirport": "Morlaix", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "airportId": 5230, + "codeIataAirport": "MXO", + "codeIataCity": "MXO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4867814", + "latitudeAirport": 42.25, + "longitudeAirport": -91.2, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 5231, + "codeIataAirport": "MXP", + "codeIataCity": "MIL", + "codeIcaoAirport": "LIMC", + "codeIso2Country": "IT", + "geonameId": "3174133", + "latitudeAirport": 45.627403, + "longitudeAirport": 8.71237, + "nameAirport": "Milano Malpensa", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "2", + "airportId": 5232, + "codeIataAirport": "MXR", + "codeIataCity": "MXR", + "codeIcaoAirport": "", + "codeIso2Country": "UA", + "geonameId": "8260989", + "latitudeAirport": 49.966667, + "longitudeAirport": 33.6, + "nameAirport": "Mirgorod", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "13", + "airportId": 5233, + "codeIataAirport": "MXS", + "codeIataCity": "MXS", + "codeIcaoAirport": "NSMA", + "codeIso2Country": "WS", + "geonameId": "7667898", + "latitudeAirport": -13.716667, + "longitudeAirport": -172.23334, + "nameAirport": "Maota Savaii Island", + "nameCountry": "Samoa", + "phone": "", + "timezone": "Pacific/Apia" + }, + { + "GMT": "3", + "airportId": 5234, + "codeIataAirport": "MXT", + "codeIataCity": "MXT", + "codeIcaoAirport": "FMMO", + "codeIso2Country": "MG", + "geonameId": "1061913", + "latitudeAirport": -18.047777, + "longitudeAirport": 44.03278, + "nameAirport": "Maintirano", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "8", + "airportId": 5235, + "codeIataAirport": "MXU", + "codeIataCity": "MXU", + "codeIcaoAirport": "YMWA", + "codeIso2Country": "AU", + "geonameId": "7731313", + "latitudeAirport": -28.55, + "longitudeAirport": 115.51667, + "nameAirport": "Mullewa", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "airportId": 5236, + "codeIataAirport": "MXV", + "codeIataCity": "MXV", + "codeIcaoAirport": "ZMMN", + "codeIso2Country": "MN", + "geonameId": "7668799", + "latitudeAirport": 49.63333, + "longitudeAirport": 100.166664, + "nameAirport": "Moron", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "8", + "airportId": 5237, + "codeIataAirport": "MXW", + "codeIataCity": "MXW", + "codeIcaoAirport": "ZMMG", + "codeIso2Country": "MN", + "geonameId": "7731314", + "latitudeAirport": 45.766666, + "longitudeAirport": 106.28333, + "nameAirport": "Mandalgobi", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "1", + "airportId": 5238, + "codeIataAirport": "MXX", + "codeIataCity": "MXX", + "codeIcaoAirport": "ESKM", + "codeIso2Country": "SE", + "geonameId": "2691383", + "latitudeAirport": 60.95812, + "longitudeAirport": 14.504529, + "nameAirport": "Mora", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-9", + "airportId": 5239, + "codeIataAirport": "MXY", + "codeIataCity": "MXY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5868503", + "latitudeAirport": 61.47061, + "longitudeAirport": -142.93736, + "nameAirport": "Mccarthy", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 5240, + "codeIataAirport": "MXZ", + "codeIataCity": "MXZ", + "codeIcaoAirport": "ZGMX", + "codeIso2Country": "CN", + "geonameId": "7731315", + "latitudeAirport": 24.266811, + "longitudeAirport": 116.10449, + "nameAirport": "Meixian", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "airportId": 5241, + "codeIataAirport": "MYA", + "codeIataCity": "MYA", + "codeIcaoAirport": "YMRY", + "codeIso2Country": "AU", + "geonameId": "7668744", + "latitudeAirport": -35.90251, + "longitudeAirport": 150.14717, + "nameAirport": "Moruya", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "airportId": 5242, + "codeIataAirport": "MYB", + "codeIataCity": "MYB", + "codeIcaoAirport": "FOOY", + "codeIso2Country": "GA", + "geonameId": "6297077", + "latitudeAirport": -3.45, + "longitudeAirport": 10.683333, + "nameAirport": "Mayoumba", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-4", + "airportId": 5243, + "codeIataAirport": "MYC", + "codeIataCity": "MYC", + "codeIcaoAirport": "SVBS", + "codeIso2Country": "VE", + "geonameId": "3632998", + "latitudeAirport": 10.5, + "longitudeAirport": -68.166664, + "nameAirport": "Maracay", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "3", + "airportId": 5244, + "codeIataAirport": "MYD", + "codeIataCity": "MYD", + "codeIcaoAirport": "HKML", + "codeIso2Country": "KE", + "geonameId": "6297318", + "latitudeAirport": -3.230755, + "longitudeAirport": 40.10048, + "nameAirport": "Malindi", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "9", + "airportId": 5245, + "codeIataAirport": "MYE", + "codeIataCity": "MYE", + "codeIcaoAirport": "RJTQ", + "codeIso2Country": "JP", + "geonameId": "6300411", + "latitudeAirport": 34.069443, + "longitudeAirport": 139.5625, + "nameAirport": "Miyake Jima", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-8", + "airportId": 5246, + "codeIataAirport": "MYF", + "codeIataCity": "SAN", + "codeIcaoAirport": null, + "codeIso2Country": "US", + "geonameId": "5374485", + "latitudeAirport": 32.716667, + "longitudeAirport": -117.15, + "nameAirport": "Montgomery Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 5247, + "codeIataAirport": "MYG", + "codeIataCity": "MYG", + "codeIcaoAirport": "MYMM", + "codeIso2Country": "BS", + "geonameId": "0", + "latitudeAirport": 22.376667, + "longitudeAirport": -73.01833, + "nameAirport": "Mayaguana", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-7", + "airportId": 5248, + "codeIataAirport": "MYH", + "codeIataCity": "MYH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5303720", + "latitudeAirport": 36.8125, + "longitudeAirport": -111.645836, + "nameAirport": "Marble Canyon", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "10", + "airportId": 5249, + "codeIataAirport": "MYI", + "codeIataCity": "MYI", + "codeIcaoAirport": "YMUI", + "codeIso2Country": "AU", + "geonameId": "7668747", + "latitudeAirport": -9.920066, + "longitudeAirport": 144.06497, + "nameAirport": "Murray Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "9", + "airportId": 5250, + "codeIataAirport": "MYJ", + "codeIataCity": "MYJ", + "codeIcaoAirport": "RJOM", + "codeIso2Country": "JP", + "geonameId": "6300379", + "latitudeAirport": 33.822224, + "longitudeAirport": 132.70416, + "nameAirport": "Matsuyama", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-9", + "airportId": 5251, + "codeIataAirport": "MYK", + "codeIataCity": "MYK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5868464", + "latitudeAirport": 61.416668, + "longitudeAirport": -142.91667, + "nameAirport": "May Creek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "airportId": 5252, + "codeIataAirport": "MYL", + "codeIataCity": "MYL", + "codeIcaoAirport": "KMYL", + "codeIso2Country": "US", + "geonameId": "5600364", + "latitudeAirport": 44.916668, + "longitudeAirport": -116.1, + "nameAirport": "Mccall", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Boise" + }, + { + "GMT": "-4", + "airportId": 5253, + "codeIataAirport": "MYM", + "codeIataCity": "MYM", + "codeIcaoAirport": "SYMM", + "codeIso2Country": "GY", + "geonameId": "7731316", + "latitudeAirport": 4.6, + "longitudeAirport": -59.63333, + "nameAirport": "Monkey Mountain", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "3", + "airportId": 5254, + "codeIataAirport": "MYN", + "codeIataCity": "MYN", + "codeIcaoAirport": "OYMB", + "codeIso2Country": "YE", + "geonameId": "6300138", + "latitudeAirport": 15.483333, + "longitudeAirport": 45.333332, + "nameAirport": "Mareb", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "8", + "airportId": 5255, + "codeIataAirport": "MYO", + "codeIataCity": "MYO", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731317", + "latitudeAirport": -18.116667, + "longitudeAirport": 124.26667, + "nameAirport": "Myroodah", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "5", + "airportId": 5256, + "codeIataAirport": "MYP", + "codeIataCity": "MYP", + "codeIcaoAirport": "UTAM", + "codeIso2Country": "TM", + "geonameId": "7730200", + "latitudeAirport": 37.666668, + "longitudeAirport": 61.833332, + "nameAirport": "Mary", + "nameCountry": "Turkmenistan", + "phone": "", + "timezone": "Asia/Ashgabat" + }, + { + "GMT": "5.30", + "airportId": 5257, + "codeIataAirport": "MYQ", + "codeIataCity": "MYQ", + "codeIcaoAirport": "VOMY", + "codeIso2Country": "IN", + "geonameId": "7731318", + "latitudeAirport": 12.3, + "longitudeAirport": 76.65, + "nameAirport": "Mysore", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "airportId": 5258, + "codeIataAirport": "MYR", + "codeIataCity": "MYR", + "codeIcaoAirport": "KMYR", + "codeIso2Country": "US", + "geonameId": "4588725", + "latitudeAirport": 33.682674, + "longitudeAirport": -78.92294, + "nameAirport": "Myrtle Beach AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "6.30", + "airportId": 5259, + "codeIataAirport": "MYT", + "codeIataCity": "MYT", + "codeIcaoAirport": "VYMK", + "codeIso2Country": "MM", + "geonameId": "7910373", + "latitudeAirport": 25.354168, + "longitudeAirport": 97.29889, + "nameAirport": "Myitkyina", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-9", + "airportId": 5260, + "codeIataAirport": "MYU", + "codeIataCity": "MYU", + "codeIcaoAirport": "PAMY", + "codeIso2Country": "US", + "geonameId": "5868684", + "latitudeAirport": 60.37278, + "longitudeAirport": -166.26805, + "nameAirport": "Ellis Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "airportId": 5261, + "codeIataAirport": "MYV", + "codeIataCity": "MYV", + "codeIcaoAirport": "KMYV", + "codeIso2Country": "US", + "geonameId": "5411027", + "latitudeAirport": 39.098057, + "longitudeAirport": -121.569725, + "nameAirport": "Yuba County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "airportId": 5262, + "codeIataAirport": "MYW", + "codeIataCity": "MYW", + "codeIcaoAirport": "HTMT", + "codeIso2Country": "TZ", + "geonameId": "6297363", + "latitudeAirport": -10.338889, + "longitudeAirport": 40.19361, + "nameAirport": "Mtwara", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "10", + "airportId": 5263, + "codeIataAirport": "MYX", + "codeIataCity": "MYX", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2090951", + "latitudeAirport": -7.2, + "longitudeAirport": 146.01666, + "nameAirport": "Menyamya", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 5264, + "codeIataAirport": "MYY", + "codeIataCity": "MYY", + "codeIcaoAirport": "WBGR", + "codeIso2Country": "MY", + "geonameId": "6301210", + "latitudeAirport": 4.325261, + "longitudeAirport": 113.983116, + "nameAirport": "Miri", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "2", + "airportId": 5265, + "codeIataAirport": "MYZ", + "codeIataCity": "MYZ", + "codeIcaoAirport": "FWMY", + "codeIso2Country": "MW", + "geonameId": "6297124", + "latitudeAirport": -14.1, + "longitudeAirport": 34.533333, + "nameAirport": "Monkey Bay", + "nameCountry": "Malawi", + "phone": "", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "2", + "airportId": 5266, + "codeIataAirport": "MZB", + "codeIataCity": "MZB", + "codeIcaoAirport": "FQMP", + "codeIso2Country": "MZ", + "geonameId": "1085265", + "latitudeAirport": -11.356111, + "longitudeAirport": 40.354168, + "nameAirport": "Mocimboa Praia", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "1", + "airportId": 5267, + "codeIataAirport": "MZC", + "codeIataCity": "MZC", + "codeIcaoAirport": "FOOM", + "codeIso2Country": "GA", + "geonameId": "6297073", + "latitudeAirport": 0.783333, + "longitudeAirport": 11.566667, + "nameAirport": "Mitzic", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-5", + "airportId": 5268, + "codeIataAirport": "MZD", + "codeIataCity": "MZD", + "codeIcaoAirport": "", + "codeIso2Country": "EC", + "geonameId": "7731319", + "latitudeAirport": -2.733333, + "longitudeAirport": -78.316666, + "nameAirport": "Mendez", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-6", + "airportId": 5269, + "codeIataAirport": "MZE", + "codeIataCity": "MZE", + "codeIcaoAirport": "", + "codeIso2Country": "BZ", + "geonameId": "0", + "latitudeAirport": 17.083332, + "longitudeAirport": -89.6, + "nameAirport": "Manatee", + "nameCountry": "Belize", + "phone": "", + "timezone": "America/Belize" + }, + { + "GMT": "2", + "airportId": 5270, + "codeIataAirport": "MZF", + "codeIataCity": "MZF", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "8299241", + "latitudeAirport": -32.75, + "longitudeAirport": 28.5, + "nameAirport": "Mzamba(Wild Coast Sun)", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "8", + "airportId": 5271, + "codeIataAirport": "MZG", + "codeIataCity": "MZG", + "codeIcaoAirport": "RCQC", + "codeIso2Country": "TW", + "geonameId": "6300304", + "latitudeAirport": 23.569166, + "longitudeAirport": 119.618614, + "nameAirport": "Makung", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "3", + "airportId": 5272, + "codeIataAirport": "MZH", + "codeIataCity": "MZH", + "codeIcaoAirport": "LTAP", + "codeIso2Country": "TR", + "geonameId": "6299733", + "latitudeAirport": 40.88333, + "longitudeAirport": 35.533333, + "nameAirport": "Merzifon", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "0", + "airportId": 5273, + "codeIataAirport": "MZI", + "codeIataCity": "MZI", + "codeIcaoAirport": "GAMB", + "codeIso2Country": "ML", + "geonameId": "6297175", + "latitudeAirport": 14.508333, + "longitudeAirport": -4.085, + "nameAirport": "Mopti", + "nameCountry": "Mali", + "phone": "", + "timezone": "Africa/Bamako" + }, + { + "GMT": "-7", + "airportId": 5274, + "codeIataAirport": "MZJ", + "codeIataCity": "MZJ", + "codeIcaoAirport": "KMZJ", + "codeIso2Country": "US", + "geonameId": "5308914", + "latitudeAirport": 32.516666, + "longitudeAirport": -111.333336, + "nameAirport": "Marana", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "12", + "airportId": 5275, + "codeIataAirport": "MZK", + "codeIataCity": "MZK", + "codeIcaoAirport": "", + "codeIso2Country": "KI", + "geonameId": "0", + "latitudeAirport": 1.983333, + "longitudeAirport": 173.66667, + "nameAirport": "Marakei", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "-5", + "airportId": 5276, + "codeIataAirport": "MZL", + "codeIataCity": "MZL", + "codeIcaoAirport": "SKMZ", + "codeIso2Country": "CO", + "geonameId": "7668462", + "latitudeAirport": 5.029005, + "longitudeAirport": -75.46878, + "nameAirport": "Santaguida", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "airportId": 5277, + "codeIataAirport": "MZM", + "codeIataCity": "ETZ", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 49.0725, + "longitudeAirport": 6.134444, + "nameAirport": "Frescaty", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "airportId": 5278, + "codeIataAirport": "MZN", + "codeIataCity": "MZN", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2090763", + "latitudeAirport": -5.905556, + "longitudeAirport": 144.67667, + "nameAirport": "Minj", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 5279, + "codeIataAirport": "MZO", + "codeIataCity": "MZO", + "codeIcaoAirport": "MUMZ", + "codeIso2Country": "CU", + "geonameId": "6299927", + "latitudeAirport": 20.325, + "longitudeAirport": -77.12889, + "nameAirport": "Sierra Maestra", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "12", + "airportId": 5280, + "codeIataAirport": "MZP", + "codeIataCity": "MZP", + "codeIcaoAirport": "", + "codeIso2Country": "NZ", + "geonameId": "2184361", + "latitudeAirport": -41.11667, + "longitudeAirport": 173.0, + "nameAirport": "Motueka", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "2", + "airportId": 5281, + "codeIataAirport": "MZQ", + "codeIataCity": "MZQ", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "975511", + "latitudeAirport": -27.633333, + "longitudeAirport": 32.05, + "nameAirport": "Mkuze", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "4.30", + "airportId": 5282, + "codeIataAirport": "MZR", + "codeIataCity": "MZR", + "codeIcaoAirport": "OAMS", + "codeIso2Country": "AF", + "geonameId": "6252379", + "latitudeAirport": 36.70919, + "longitudeAirport": 67.20849, + "nameAirport": "Mazar-i-sharif", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "8", + "airportId": 5283, + "codeIataAirport": "MZS", + "codeIataCity": "MZS", + "codeIcaoAirport": "", + "codeIso2Country": "MY", + "geonameId": "0", + "latitudeAirport": 4.616667, + "longitudeAirport": 118.15, + "nameAirport": "Mostyn", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-7", + "airportId": 5284, + "codeIataAirport": "MZT", + "codeIataCity": "MZT", + "codeIcaoAirport": "MMMZ", + "codeIso2Country": "MX", + "geonameId": "6299861", + "latitudeAirport": 23.167315, + "longitudeAirport": -106.27015, + "nameAirport": "Gen Rafael Buelna", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mazatlan" + }, + { + "GMT": "5.30", + "airportId": 5285, + "codeIataAirport": "MZU", + "codeIataCity": "MZU", + "codeIcaoAirport": "VEMZ", + "codeIso2Country": "IN", + "geonameId": "7668594", + "latitudeAirport": 26.116667, + "longitudeAirport": 85.38333, + "nameAirport": "Muzaffarpur", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "8", + "airportId": 5286, + "codeIataAirport": "MZV", + "codeIataCity": "MZV", + "codeIcaoAirport": "WBFC", + "codeIso2Country": "MY", + "geonameId": "6354945", + "latitudeAirport": 4.033333, + "longitudeAirport": 114.8, + "nameAirport": "Mulu,", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "1", + "airportId": 5287, + "codeIataAirport": "MZW", + "codeIataCity": "MZW", + "codeIcaoAirport": "DAAY", + "codeIso2Country": "DZ", + "geonameId": "6296369", + "latitudeAirport": 33.521942, + "longitudeAirport": -0.283056, + "nameAirport": "Mechria", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "3", + "airportId": 5288, + "codeIataAirport": "MZX", + "codeIataCity": "MZX", + "codeIcaoAirport": "", + "codeIso2Country": "ET", + "geonameId": "331064", + "latitudeAirport": 6.35, + "longitudeAirport": 39.716667, + "nameAirport": "Mena", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "2", + "airportId": 5289, + "codeIataAirport": "MZY", + "codeIataCity": "MZY", + "codeIcaoAirport": "FAMO", + "codeIso2Country": "ZA", + "geonameId": "973709", + "latitudeAirport": -34.183334, + "longitudeAirport": 22.083332, + "nameAirport": "Mossel Bay", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-5", + "airportId": 5290, + "codeIataAirport": "MZZ", + "codeIataCity": "MZZ", + "codeIcaoAirport": "KMZZ", + "codeIso2Country": "US", + "geonameId": "4923214", + "latitudeAirport": 40.490833, + "longitudeAirport": -85.67944, + "nameAirport": "Marion", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "10", + "airportId": 5291, + "codeIataAirport": "NAA", + "codeIataCity": "NAA", + "codeIcaoAirport": "YNBR", + "codeIso2Country": "AU", + "geonameId": "7668749", + "latitudeAirport": -30.31829, + "longitudeAirport": 149.82912, + "nameAirport": "Narrabri", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-5", + "airportId": 5292, + "codeIataAirport": "NAB", + "codeIataCity": "ABY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 31.583332, + "longitudeAirport": -84.166664, + "nameAirport": "Albany NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9.30", + "airportId": 5293, + "codeIataAirport": "NAC", + "codeIataCity": "NAC", + "codeIcaoAirport": "YNRC", + "codeIso2Country": "AU", + "geonameId": "7731321", + "latitudeAirport": -36.95, + "longitudeAirport": 140.83333, + "nameAirport": "Naracoorte", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-5", + "airportId": 5294, + "codeIataAirport": "NAD", + "codeIataCity": "NAD", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8260856", + "latitudeAirport": 2.566667, + "longitudeAirport": -67.583336, + "nameAirport": "Macanal", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "airportId": 5295, + "codeIataAirport": "NAE", + "codeIataCity": "NAE", + "codeIcaoAirport": "", + "codeIso2Country": "BJ", + "geonameId": "2392601", + "latitudeAirport": 10.383333, + "longitudeAirport": 1.366667, + "nameAirport": "Natitingou", + "nameCountry": "Benin", + "phone": "", + "timezone": "Africa/Porto-Novo" + }, + { + "GMT": "8", + "airportId": 5296, + "codeIataAirport": "NAF", + "codeIataCity": "NAF", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731322", + "latitudeAirport": 2.75, + "longitudeAirport": 117.05, + "nameAirport": "Banaina", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "5.30", + "airportId": 5297, + "codeIataAirport": "NAG", + "codeIataCity": "NAG", + "codeIcaoAirport": "VANP", + "codeIso2Country": "IN", + "geonameId": "6301042", + "latitudeAirport": 21.090036, + "longitudeAirport": 79.05636, + "nameAirport": "Dr. Babasaheb Ambedkar International", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "8", + "airportId": 5298, + "codeIataAirport": "NAH", + "codeIataCity": "NAH", + "codeIcaoAirport": "WAMH", + "codeIso2Country": "ID", + "geonameId": "6301192", + "latitudeAirport": 3.716667, + "longitudeAirport": 125.36667, + "nameAirport": "Naha", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-4", + "airportId": 5299, + "codeIataAirport": "NAI", + "codeIataCity": "NAI", + "codeIcaoAirport": "SYAN", + "codeIso2Country": "GY", + "geonameId": "7731323", + "latitudeAirport": 3.75, + "longitudeAirport": -59.0, + "nameAirport": "Annai", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "4", + "airportId": 5300, + "codeIataAirport": "NAJ", + "codeIataCity": "NAJ", + "codeIcaoAirport": "UBBN", + "codeIso2Country": "AZ", + "geonameId": "7730185", + "latitudeAirport": 39.190277, + "longitudeAirport": 45.45889, + "nameAirport": "Nakhichevan", + "nameCountry": "Azerbaijan", + "phone": "", + "timezone": "Asia/Baku" + }, + { + "GMT": "7", + "airportId": 5301, + "codeIataAirport": "NAK", + "codeIataCity": "NAK", + "codeIcaoAirport": "VTUQ", + "codeIso2Country": "TH", + "geonameId": "7668647", + "latitudeAirport": 14.933333, + "longitudeAirport": 102.083336, + "nameAirport": "Nakhon Ratchasima", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "3", + "airportId": 5302, + "codeIataAirport": "NAL", + "codeIataCity": "NAL", + "codeIcaoAirport": "URMN", + "codeIso2Country": "RU", + "geonameId": "6300992", + "latitudeAirport": 43.533333, + "longitudeAirport": 43.7, + "nameAirport": "Nalchik", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "9", + "airportId": 5303, + "codeIataAirport": "NAM", + "codeIataCity": "NAM", + "codeIcaoAirport": "WAPR", + "codeIso2Country": "ID", + "geonameId": "6301204", + "latitudeAirport": -3.3, + "longitudeAirport": 127.1, + "nameAirport": "Namlea", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "12", + "airportId": 5304, + "codeIataAirport": "NAN", + "codeIataCity": "NAN", + "codeIcaoAirport": "NFFN", + "codeIso2Country": "FJ", + "geonameId": "6299945", + "latitudeAirport": -17.75327, + "longitudeAirport": 177.45161, + "nameAirport": "Nadi International", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "8", + "airportId": 5305, + "codeIataAirport": "NAO", + "codeIataCity": "NAO", + "codeIcaoAirport": "ZUNC", + "codeIso2Country": "CN", + "geonameId": "7731324", + "latitudeAirport": 30.8, + "longitudeAirport": 106.066666, + "nameAirport": "Nanchong", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 5306, + "codeIataAirport": "NAP", + "codeIataCity": "NAP", + "codeIcaoAirport": "LIRN", + "codeIso2Country": "IT", + "geonameId": "6299627", + "latitudeAirport": 40.886112, + "longitudeAirport": 14.291667, + "nameAirport": "Capodichino", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-3", + "airportId": 5307, + "codeIataAirport": "NAQ", + "codeIataCity": "NAQ", + "codeIcaoAirport": "BGQQ", + "codeIso2Country": "GL", + "geonameId": "7668096", + "latitudeAirport": 77.48564, + "longitudeAirport": -69.37486, + "nameAirport": "Qaanaaq", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "-5", + "airportId": 5308, + "codeIataAirport": "NAR", + "codeIataCity": "NAR", + "codeIcaoAirport": "SKPN", + "codeIso2Country": "CO", + "geonameId": "7731326", + "latitudeAirport": 6.2, + "longitudeAirport": -74.583336, + "nameAirport": "Nare", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 5309, + "codeIataAirport": "NAS", + "codeIataCity": "NAS", + "codeIcaoAirport": "MYNN", + "codeIso2Country": "BS", + "geonameId": "3571824", + "latitudeAirport": 25.048223, + "longitudeAirport": -77.463776, + "nameAirport": "Nassau International", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-3", + "airportId": 5310, + "codeIataAirport": "NAT", + "codeIataCity": "NAT", + "codeIcaoAirport": "SBNT", + "codeIso2Country": "BR", + "geonameId": "3406959", + "latitudeAirport": -5.916787, + "longitudeAirport": -35.250244, + "nameAirport": "Augusto Severo", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-10", + "airportId": 5311, + "codeIataAirport": "NAU", + "codeIataCity": "NAU", + "codeIcaoAirport": "NTGN", + "codeIso2Country": "PF", + "geonameId": "7730697", + "latitudeAirport": -14.166667, + "longitudeAirport": -141.58333, + "nameAirport": "Napuka Island", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "3", + "airportId": 5312, + "codeIataAirport": "NAV", + "codeIataCity": "NAV", + "codeIcaoAirport": "LTAZ", + "codeIso2Country": "TR", + "geonameId": "6299742", + "latitudeAirport": 38.63333, + "longitudeAirport": 34.716667, + "nameAirport": "Nevsehir", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "7", + "airportId": 5313, + "codeIataAirport": "NAW", + "codeIataCity": "NAW", + "codeIcaoAirport": "VTSC", + "codeIso2Country": "TH", + "geonameId": "1608409", + "latitudeAirport": 6.516667, + "longitudeAirport": 101.75, + "nameAirport": "Narathiwat", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-10", + "airportId": 5314, + "codeIataAirport": "NAX", + "codeIataCity": "NAX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 21.3, + "longitudeAirport": -158.11667, + "nameAirport": "Kalaeloa John Rodgers Field", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "8", + "airportId": 5315, + "codeIataAirport": "NAY", + "codeIataCity": "BJS", + "codeIcaoAirport": "ZBBB", + "codeIso2Country": "CN", + "geonameId": "7729998", + "latitudeAirport": 39.7825, + "longitudeAirport": 116.38778, + "nameAirport": "Nanyuan Airport", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "11", + "airportId": 5316, + "codeIataAirport": "NAZ", + "codeIataCity": "NAZ", + "codeIcaoAirport": "", + "codeIso2Country": "SB", + "geonameId": "8299099", + "latitudeAirport": -14.866667, + "longitudeAirport": -74.95, + "nameAirport": "Nana", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "10", + "airportId": 5317, + "codeIataAirport": "NBA", + "codeIataCity": "NBA", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2090012", + "latitudeAirport": -6.25, + "longitudeAirport": 145.23334, + "nameAirport": "Nambaiyufa", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 5318, + "codeIataAirport": "NBB", + "codeIataCity": "NBB", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "7731327", + "latitudeAirport": 3.333333, + "longitudeAirport": -70.333336, + "nameAirport": "Barrancominas", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "airportId": 5319, + "codeIataAirport": "NBC", + "codeIataCity": "NBC", + "codeIcaoAirport": "KNBC", + "codeIso2Country": "RU", + "geonameId": "7668562", + "latitudeAirport": 55.564125, + "longitudeAirport": 52.10341, + "nameAirport": "Naberevnye Chelny", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "airportId": 5320, + "codeIataAirport": "NBE", + "codeIataCity": "NBE", + "codeIcaoAirport": "DTNZ", + "codeIso2Country": "TN", + "geonameId": "7165890", + "latitudeAirport": 36.075832, + "longitudeAirport": 10.438611, + "nameAirport": "Zine El Abidine Ben Ali International Airport", + "nameCountry": "Tunisia", + "phone": "", + "timezone": "Africa/Tunis" + }, + { + "GMT": "-6", + "airportId": 5321, + "codeIataAirport": "NBG", + "codeIataCity": "MSY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 29.833332, + "longitudeAirport": -90.03333, + "nameAirport": "NAS/Alvin Callendar", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 5322, + "codeIataAirport": "NBH", + "codeIataCity": "NBH", + "codeIcaoAirport": "YNHS", + "codeIso2Country": "AU", + "geonameId": "7731328", + "latitudeAirport": -30.633333, + "longitudeAirport": 152.98334, + "nameAirport": "Nambucca Heads", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-5", + "airportId": 5323, + "codeIataAirport": "NBL", + "codeIataCity": "NBL", + "codeIcaoAirport": "MPWN", + "codeIso2Country": "PA", + "geonameId": "7730674", + "latitudeAirport": 9.3, + "longitudeAirport": -79.0, + "nameAirport": "San Blas", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "3", + "airportId": 5324, + "codeIataAirport": "NBO", + "codeIataCity": "NBO", + "codeIcaoAirport": "HKJK", + "codeIso2Country": "KE", + "geonameId": "6297307", + "latitudeAirport": -1.319167, + "longitudeAirport": 36.92578, + "nameAirport": "Jomo Kenyatta International", + "nameCountry": "Kenya", + "phone": "020-82-2111", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-5", + "airportId": 5325, + "codeIataAirport": "NBP", + "codeIataCity": "NYC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.706112, + "longitudeAirport": -74.02167, + "nameAirport": "Battery Pk City/N. Cov", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 5326, + "codeIataAirport": "NBS", + "codeIataCity": "NBS", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "7910372", + "latitudeAirport": 42.083332, + "longitudeAirport": 127.6, + "nameAirport": "Changbaishan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 5327, + "codeIataAirport": "NBU", + "codeIataCity": "NBU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.55, + "longitudeAirport": -107.316666, + "nameAirport": "NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 5328, + "codeIataAirport": "NBV", + "codeIataCity": "NBV", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "0", + "latitudeAirport": -17.383333, + "longitudeAirport": -45.86667, + "nameAirport": "Cana Brava", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "airportId": 5329, + "codeIataAirport": "NBW", + "codeIataCity": "GAO", + "codeIcaoAirport": "MUGM", + "codeIso2Country": "CU", + "geonameId": "6299922", + "latitudeAirport": 20.166668, + "longitudeAirport": -75.23333, + "nameAirport": "Guantanamo NAS", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "9", + "airportId": 5330, + "codeIataAirport": "NBX", + "codeIataCity": "NBX", + "codeIcaoAirport": "WABI", + "codeIso2Country": "ID", + "geonameId": "6301181", + "latitudeAirport": -3.366667, + "longitudeAirport": 135.43333, + "nameAirport": "Nabire", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-4", + "airportId": 5331, + "codeIataAirport": "NCA", + "codeIataCity": "NCA", + "codeIcaoAirport": "MBNC", + "codeIso2Country": "TC", + "geonameId": "7668340", + "latitudeAirport": 21.933332, + "longitudeAirport": -71.98333, + "nameAirport": "North Caicos", + "nameCountry": "Turks and Caicos Islands", + "phone": "", + "timezone": "America/Grand_Turk" + }, + { + "GMT": "1", + "airportId": 5332, + "codeIataAirport": "NCE", + "codeIataCity": "NCE", + "codeIcaoAirport": "LFMN", + "codeIso2Country": "FR", + "geonameId": "6299418", + "latitudeAirport": 43.66049, + "longitudeAirport": 7.205232, + "nameAirport": "Cote D'azur International Airport", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-7", + "airportId": 5333, + "codeIataAirport": "NCG", + "codeIataCity": "NCG", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "0", + "latitudeAirport": 30.416668, + "longitudeAirport": -107.916664, + "nameAirport": "Nueva Casas Grandes", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Chihuahua" + }, + { + "GMT": "3", + "airportId": 5334, + "codeIataAirport": "NCH", + "codeIataCity": "NCH", + "codeIcaoAirport": "HTNA", + "codeIso2Country": "TZ", + "geonameId": "6297366", + "latitudeAirport": -10.363889, + "longitudeAirport": 38.775, + "nameAirport": "Nachingwea", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-5", + "airportId": 5335, + "codeIataAirport": "NCI", + "codeIataCity": "NCI", + "codeIcaoAirport": "SKNC", + "codeIso2Country": "CO", + "geonameId": "7731329", + "latitudeAirport": 8.483333, + "longitudeAirport": -76.75, + "nameAirport": "Necocli", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "airportId": 5336, + "codeIataAirport": "NCJ", + "codeIataCity": "NCJ", + "codeIcaoAirport": "", + "codeIso2Country": "AR", + "geonameId": "3834971", + "latitudeAirport": -30.94404, + "longitudeAirport": -61.56148, + "nameAirport": "Sunchales", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "0", + "airportId": 5337, + "codeIataAirport": "NCL", + "codeIataCity": "NCL", + "codeIcaoAirport": "EGNT", + "codeIso2Country": "GB", + "geonameId": "6296611", + "latitudeAirport": 55.037064, + "longitudeAirport": -1.710629, + "nameAirport": "Newcastle Airport", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-9", + "airportId": 5338, + "codeIataAirport": "NCN", + "codeIataCity": "NCN", + "codeIcaoAirport": "PFCB", + "codeIso2Country": "US", + "geonameId": "8114008", + "latitudeAirport": 60.07831, + "longitudeAirport": -147.99773, + "nameAirport": "New Chenega", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 5339, + "codeIataAirport": "NCO", + "codeIataCity": "NCO", + "codeIcaoAirport": "KOQU", + "codeIso2Country": "US", + "geonameId": "5224229", + "latitudeAirport": 41.0, + "longitudeAirport": -71.0, + "nameAirport": "NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 5340, + "codeIataAirport": "NCP", + "codeIataCity": "NCP", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "0", + "latitudeAirport": 16.0, + "longitudeAirport": 121.0, + "nameAirport": "Cubi Pt NAS", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-5", + "airportId": 5341, + "codeIataAirport": "NCQ", + "codeIataCity": "MGE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.916668, + "longitudeAirport": -84.51667, + "nameAirport": "Atlanta NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 5342, + "codeIataAirport": "NCR", + "codeIataCity": "NCR", + "codeIcaoAirport": "MNSC", + "codeIso2Country": "NI", + "geonameId": "7730671", + "latitudeAirport": 11.25, + "longitudeAirport": -84.833336, + "nameAirport": "San Carlos", + "nameCountry": "Nicaragua", + "phone": "", + "timezone": "America/Managua" + }, + { + "GMT": "2", + "airportId": 5343, + "codeIataAirport": "NCS", + "codeIataCity": "NCS", + "codeIcaoAirport": "FANC", + "codeIso2Country": "ZA", + "geonameId": "971430", + "latitudeAirport": -27.774166, + "longitudeAirport": 29.99, + "nameAirport": "Newcastle", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-6", + "airportId": 5344, + "codeIataAirport": "NCT", + "codeIataCity": "NCT", + "codeIcaoAirport": "", + "codeIso2Country": "CR", + "geonameId": "3622716", + "latitudeAirport": 10.138889, + "longitudeAirport": -85.445, + "nameAirport": "Guanacaste", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "5", + "airportId": 5345, + "codeIataAirport": "NCU", + "codeIataCity": "NCU", + "codeIcaoAirport": "UTNN", + "codeIso2Country": "UZ", + "geonameId": "6301008", + "latitudeAirport": 42.483334, + "longitudeAirport": 59.63333, + "nameAirport": "Nukus", + "nameCountry": "Uzbekistan", + "phone": "", + "timezone": "Asia/Samarkand" + }, + { + "GMT": "1", + "airportId": 5346, + "codeIataAirport": "NCY", + "codeIataCity": "NCY", + "codeIcaoAirport": "LFLP", + "codeIso2Country": "FR", + "geonameId": "6694618", + "latitudeAirport": 45.930557, + "longitudeAirport": 6.100833, + "nameAirport": "Annecy-Meythe", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "9", + "airportId": 5347, + "codeIataAirport": "NDA", + "codeIataCity": "NDA", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731330", + "latitudeAirport": -4.533333, + "longitudeAirport": 129.9, + "nameAirport": "Bandanaira", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "0", + "airportId": 5348, + "codeIataAirport": "NDB", + "codeIataCity": "NDB", + "codeIcaoAirport": "GQPP", + "codeIso2Country": "MR", + "geonameId": "6297243", + "latitudeAirport": 20.934168, + "longitudeAirport": -17.028334, + "nameAirport": "Nouadhibou", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "5.30", + "airportId": 5349, + "codeIataAirport": "NDC", + "codeIataCity": "NDC", + "codeIcaoAirport": "VAND", + "codeIso2Country": "IN", + "geonameId": "7668576", + "latitudeAirport": 19.183332, + "longitudeAirport": 77.316666, + "nameAirport": "Nanded", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "airportId": 5350, + "codeIataAirport": "NDD", + "codeIataCity": "NDD", + "codeIcaoAirport": "FNSU", + "codeIso2Country": "AO", + "geonameId": "7668255", + "latitudeAirport": -11.166667, + "longitudeAirport": 13.866667, + "nameAirport": "Sumbe", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "3", + "airportId": 5351, + "codeIataAirport": "NDE", + "codeIataCity": "NDE", + "codeIcaoAirport": "HKMA", + "codeIso2Country": "KE", + "geonameId": "6297315", + "latitudeAirport": 3.933333, + "longitudeAirport": 41.86667, + "nameAirport": "Mandera", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "1", + "airportId": 5352, + "codeIataAirport": "NDF", + "codeIataCity": "NDF", + "codeIcaoAirport": "", + "codeIso2Country": "AO", + "geonameId": "7731331", + "latitudeAirport": -9.333333, + "longitudeAirport": 14.833333, + "nameAirport": "Ndalatandos", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "8", + "airportId": 5353, + "codeIataAirport": "NDG", + "codeIataCity": "NDG", + "codeIcaoAirport": "ZYQQ", + "codeIso2Country": "CN", + "geonameId": "6301400", + "latitudeAirport": 47.316666, + "longitudeAirport": 123.916664, + "nameAirport": "Qiqihar", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 5354, + "codeIataAirport": "NDH", + "codeIataCity": "ZAS", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "CZ Bus Station", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "airportId": 5355, + "codeIataAirport": "NDI", + "codeIataCity": "NDI", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2089966", + "latitudeAirport": -9.433333, + "longitudeAirport": 148.26666, + "nameAirport": "Namudi", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 5356, + "codeIataAirport": "NDJ", + "codeIataCity": "NDJ", + "codeIcaoAirport": "FTTJ", + "codeIso2Country": "TD", + "geonameId": "2432548", + "latitudeAirport": 12.129056, + "longitudeAirport": 15.034215, + "nameAirport": "N'Djamena", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "12", + "airportId": 5357, + "codeIataAirport": "NDK", + "codeIataCity": "NDK", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 5.633333, + "longitudeAirport": 168.11667, + "nameAirport": "Namdrik Island", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "1", + "airportId": 5358, + "codeIataAirport": "NDL", + "codeIataCity": "NDL", + "codeIcaoAirport": "FEFN", + "codeIso2Country": "CF", + "geonameId": "6296976", + "latitudeAirport": 8.416667, + "longitudeAirport": 20.6, + "nameAirport": "Ndele", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "3", + "airportId": 5359, + "codeIataAirport": "NDM", + "codeIataCity": "NDM", + "codeIcaoAirport": "HAMN", + "codeIso2Country": "ET", + "geonameId": "7730590", + "latitudeAirport": 9.816667, + "longitudeAirport": 35.083332, + "nameAirport": "Mendi", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "10", + "airportId": 5360, + "codeIataAirport": "NDN", + "codeIataCity": "NDN", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299070", + "latitudeAirport": -9.133333, + "longitudeAirport": 147.68333, + "nameAirport": "Nadunumu", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 5361, + "codeIataAirport": "NDO", + "codeIataCity": "NDO", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "2515679", + "latitudeAirport": 37.38333, + "longitudeAirport": -6.583333, + "nameAirport": "La Palma Del Condado", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-6", + "airportId": 5362, + "codeIataAirport": "NDP", + "codeIataCity": "PNS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.4725, + "longitudeAirport": -87.18833, + "nameAirport": "Ellyson NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 5363, + "codeIataAirport": "NDR", + "codeIataCity": "NDR", + "codeIcaoAirport": "GMFN", + "codeIso2Country": "MA", + "geonameId": "0", + "latitudeAirport": 34.988888, + "longitudeAirport": -3.028333, + "nameAirport": "Nador", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "8", + "airportId": 5364, + "codeIataAirport": "NDS", + "codeIataCity": "NDS", + "codeIcaoAirport": "YSAN", + "codeIso2Country": "AU", + "geonameId": "7731332", + "latitudeAirport": -27.983334, + "longitudeAirport": 119.3, + "nameAirport": "Sandstone", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "2", + "airportId": 5365, + "codeIataAirport": "NDU", + "codeIataCity": "NDU", + "codeIcaoAirport": "FYRU", + "codeIso2Country": "NA", + "geonameId": "6297135", + "latitudeAirport": -17.95, + "longitudeAirport": 19.716667, + "nameAirport": "Rundu", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-5", + "airportId": 5366, + "codeIataAirport": "NDV", + "codeIataCity": "NDV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4137523", + "latitudeAirport": 38.86667, + "longitudeAirport": -77.0, + "nameAirport": "USN Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 5367, + "codeIataAirport": "NDY", + "codeIataCity": "NDY", + "codeIcaoAirport": "EGES", + "codeIso2Country": "GB", + "geonameId": "7668201", + "latitudeAirport": 59.25, + "longitudeAirport": -2.583333, + "nameAirport": "Sanday", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "airportId": 5368, + "codeIataAirport": "NEA", + "codeIataCity": "NEA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4197377", + "latitudeAirport": 31.25, + "longitudeAirport": -81.46667, + "nameAirport": "Brunswick Golden Isles", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 5369, + "codeIataAirport": "NEC", + "codeIataCity": "NEC", + "codeIcaoAirport": "", + "codeIso2Country": "AR", + "geonameId": "3430443", + "latitudeAirport": -38.566666, + "longitudeAirport": -58.75, + "nameAirport": "Necochea", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "5", + "airportId": 5370, + "codeIataAirport": "NEF", + "codeIataCity": "NEF", + "codeIcaoAirport": "UWUF", + "codeIso2Country": "RU", + "geonameId": "7668566", + "latitudeAirport": 56.1, + "longitudeAirport": 54.35, + "nameAirport": "Neftekamsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-5", + "airportId": 5371, + "codeIataAirport": "NEG", + "codeIataCity": "NEG", + "codeIcaoAirport": "", + "codeIso2Country": "JM", + "geonameId": "3489331", + "latitudeAirport": 18.308332, + "longitudeAirport": -78.333336, + "nameAirport": "Negril", + "nameCountry": "", + "phone": "", + "timezone": "America/Jamaica" + }, + { + "GMT": "3", + "airportId": 5372, + "codeIataAirport": "NEJ", + "codeIataCity": "NEJ", + "codeIcaoAirport": "HANJ", + "codeIso2Country": "ET", + "geonameId": "7730592", + "latitudeAirport": 9.5, + "longitudeAirport": 35.466667, + "nameAirport": "Nejjo", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "3", + "airportId": 5373, + "codeIataAirport": "NEK", + "codeIataCity": "NEK", + "codeIcaoAirport": "HANK", + "codeIso2Country": "ET", + "geonameId": "7730593", + "latitudeAirport": 9.066667, + "longitudeAirport": 36.5, + "nameAirport": "Nekemt", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-5", + "airportId": 5374, + "codeIataAirport": "NEL", + "codeIataCity": "NEL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5100269", + "latitudeAirport": 40.016666, + "longitudeAirport": -74.316666, + "nameAirport": "Naec", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 5375, + "codeIataAirport": "NEN", + "codeIataCity": "NEN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.316668, + "longitudeAirport": -81.85, + "nameAirport": "Olf Usn", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "airportId": 5376, + "codeIataAirport": "NER", + "codeIataCity": "NER", + "codeIcaoAirport": "UELL", + "codeIso2Country": "RU", + "geonameId": "6301866", + "latitudeAirport": 56.65, + "longitudeAirport": 124.6, + "nameAirport": "Neryungri", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "-5", + "airportId": 5377, + "codeIataAirport": "NES", + "codeIataCity": "NYC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.743332, + "longitudeAirport": -73.975, + "nameAirport": "East 34th St Landing", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 5378, + "codeIataAirport": "NET", + "codeIataCity": "NET", + "codeIcaoAirport": "", + "codeIso2Country": "BS", + "geonameId": "0", + "latitudeAirport": 24.32, + "longitudeAirport": -75.45, + "nameAirport": "New Bight", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "7", + "airportId": 5379, + "codeIataAirport": "NEU", + "codeIataCity": "NEU", + "codeIcaoAirport": "VLSN", + "codeIso2Country": "LA", + "geonameId": "7730220", + "latitudeAirport": 20.416668, + "longitudeAirport": 104.066666, + "nameAirport": "Sam Neua", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-4", + "airportId": 5380, + "codeIataAirport": "NEV", + "codeIataCity": "NEV", + "codeIcaoAirport": "TKPN", + "codeIso2Country": "KN", + "geonameId": "3575260", + "latitudeAirport": 17.205, + "longitudeAirport": -62.5925, + "nameAirport": "Vance Winkworth Amory International", + "nameCountry": "Saint Kitts and Nevis", + "phone": "", + "timezone": "America/St_Kitts" + }, + { + "GMT": "-6", + "airportId": 5381, + "codeIataAirport": "NEW", + "codeIataCity": "MSY", + "codeIcaoAirport": "KNEW", + "codeIso2Country": "US", + "geonameId": "4330381", + "latitudeAirport": 30.039444, + "longitudeAirport": -90.026665, + "nameAirport": "Lakefront", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 5382, + "codeIataAirport": "NFB", + "codeIataCity": "MTC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.966667, + "longitudeAirport": -82.96667, + "nameAirport": "Detroit NAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "8", + "airportId": 5383, + "codeIataAirport": "NFF", + "codeIataCity": "ZEF", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 36.28, + "longitudeAirport": -80.79, + "nameAirport": "CZ Bus Station", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "5", + "airportId": 5384, + "codeIataAirport": "NFG", + "codeIataCity": "NFG", + "codeIcaoAirport": "USRN", + "codeIso2Country": "RU", + "geonameId": "7668538", + "latitudeAirport": 61.13333, + "longitudeAirport": 73.05, + "nameAirport": "Nefteyugansk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-8", + "airportId": 5385, + "codeIataAirport": "NFL", + "codeIataCity": "NFL", + "codeIcaoAirport": "KNFL", + "codeIso2Country": "US", + "geonameId": "5503921", + "latitudeAirport": 39.466667, + "longitudeAirport": -118.78333, + "nameAirport": "NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "13", + "airportId": 5386, + "codeIataAirport": "NFO", + "codeIataCity": "NFO", + "codeIcaoAirport": "NFTO", + "codeIso2Country": "TO", + "geonameId": "7730693", + "latitudeAirport": -15.6, + "longitudeAirport": -175.65, + "nameAirport": "Mata'aho", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Tongatapu" + }, + { + "GMT": "2", + "airportId": 5387, + "codeIataAirport": "NFR", + "codeIataCity": "NFR", + "codeIcaoAirport": "", + "codeIso2Country": "LY", + "geonameId": "8260872", + "latitudeAirport": 29.216667, + "longitudeAirport": 21.583332, + "nameAirport": "Nafoora", + "nameCountry": "Libya", + "phone": "", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "10", + "airportId": 5388, + "codeIataAirport": "NGA", + "codeIataCity": "NGA", + "codeIcaoAirport": "YYNG", + "codeIso2Country": "AU", + "geonameId": "7668787", + "latitudeAirport": -34.25, + "longitudeAirport": 148.25, + "nameAirport": "Young", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "8", + "airportId": 5389, + "codeIataAirport": "NGB", + "codeIataCity": "NGB", + "codeIcaoAirport": "ZSNB", + "codeIso2Country": "CN", + "geonameId": "7668805", + "latitudeAirport": 29.820415, + "longitudeAirport": 121.462395, + "nameAirport": "Lishe International Airport", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-7", + "airportId": 5390, + "codeIataAirport": "NGC", + "codeIataCity": "GCN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 36.38972, + "longitudeAirport": -112.129166, + "nameAirport": "North Rim", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "-4", + "airportId": 5391, + "codeIataAirport": "NGD", + "codeIataCity": "NGD", + "codeIcaoAirport": "", + "codeIso2Country": "VG", + "geonameId": "0", + "latitudeAirport": 18.716667, + "longitudeAirport": -64.3, + "nameAirport": "Captain Auguste George", + "nameCountry": "British Virgin Islands", + "phone": "", + "timezone": "America/Tortola" + }, + { + "GMT": "1", + "airportId": 5392, + "codeIataAirport": "NGE", + "codeIataCity": "NGE", + "codeIcaoAirport": "FKKN", + "codeIso2Country": "CM", + "geonameId": "6297002", + "latitudeAirport": 7.356389, + "longitudeAirport": 13.561389, + "nameAirport": "Ngaoundéré", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "12", + "airportId": 5393, + "codeIataAirport": "NGI", + "codeIataCity": "NGI", + "codeIcaoAirport": "NFNG", + "codeIso2Country": "FJ", + "geonameId": "7668368", + "latitudeAirport": -18.0, + "longitudeAirport": 179.33333, + "nameAirport": "Ngau Island", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "11", + "airportId": 5394, + "codeIataAirport": "NGK", + "codeIataCity": "NGK", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "8260750", + "latitudeAirport": 51.8, + "longitudeAirport": 143.16667, + "nameAirport": "Nogliki", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Sakhalin" + }, + { + "GMT": "2", + "airportId": 5395, + "codeIataAirport": "NGL", + "codeIataCity": "NGL", + "codeIcaoAirport": "FANG", + "codeIso2Country": "ZA", + "geonameId": "7730490", + "latitudeAirport": 2.45, + "longitudeAirport": 21.55, + "nameAirport": "Ngala Airfield", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-5", + "airportId": 5396, + "codeIataAirport": "NGN", + "codeIataCity": "NGN", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "8299211", + "latitudeAirport": 9.568611, + "longitudeAirport": -79.25, + "nameAirport": "Nargana", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "9", + "airportId": 5397, + "codeIataAirport": "NGO", + "codeIataCity": "NGO", + "codeIcaoAirport": "RJGG", + "codeIso2Country": "JP", + "geonameId": "6300359", + "latitudeAirport": 34.858334, + "longitudeAirport": 136.80528, + "nameAirport": "Chu-Bu Centrair International (Central Japan International)", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-6", + "airportId": 5398, + "codeIataAirport": "NGP", + "codeIataCity": "CRP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 27.7, + "longitudeAirport": -97.28333, + "nameAirport": "NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 5399, + "codeIataAirport": "NGQ", + "codeIataCity": "NGQ", + "codeIcaoAirport": "ZUAL", + "codeIso2Country": "CN", + "geonameId": "8260713", + "latitudeAirport": 32.103817, + "longitudeAirport": 80.054276, + "nameAirport": "Ngari Gunsa/Ali Kunsha", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "airportId": 5400, + "codeIataAirport": "NGR", + "codeIataCity": "NGR", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2089599", + "latitudeAirport": -6.5, + "longitudeAirport": 141.0, + "nameAirport": "Ningerum", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "airportId": 5401, + "codeIataAirport": "NGS", + "codeIataCity": "NGS", + "codeIcaoAirport": "RJFU", + "codeIso2Country": "JP", + "geonameId": "6300355", + "latitudeAirport": 32.9144, + "longitudeAirport": 129.92258, + "nameAirport": "Nagasaki", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "airportId": 5402, + "codeIataAirport": "NGU", + "codeIataCity": "ORF", + "codeIcaoAirport": "KNGU", + "codeIso2Country": "US", + "geonameId": "7910320", + "latitudeAirport": 35.833332, + "longitudeAirport": -76.28333, + "nameAirport": "NAS Chambers", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 5403, + "codeIataAirport": "NGW", + "codeIataCity": "CRP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 27.783333, + "longitudeAirport": -97.4, + "nameAirport": "Cabaniss Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5.45", + "airportId": 5404, + "codeIataAirport": "NGX", + "codeIataCity": "NGX", + "codeIcaoAirport": "VNMA", + "codeIso2Country": "NP", + "geonameId": "6941684", + "latitudeAirport": 27.700556, + "longitudeAirport": 85.36305, + "nameAirport": "Manang", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "7", + "airportId": 5405, + "codeIataAirport": "NHA", + "codeIataCity": "NHA", + "codeIcaoAirport": "VVNT", + "codeIso2Country": "VN", + "geonameId": "6301171", + "latitudeAirport": 12.227912, + "longitudeAirport": 109.19666, + "nameAirport": "Nha Trang", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "4", + "airportId": 5406, + "codeIataAirport": "NHD", + "codeIataCity": "DXB", + "codeIcaoAirport": "", + "codeIso2Country": "AE", + "geonameId": "0", + "latitudeAirport": 25.023756, + "longitudeAirport": 55.373653, + "nameAirport": "Minhad AB", + "nameCountry": "United Arab Emirates", + "phone": "", + "timezone": "Asia/Dubai" + }, + { + "GMT": "3", + "airportId": 5407, + "codeIataAirport": "NHF", + "codeIataCity": "NHF", + "codeIcaoAirport": "", + "codeIso2Country": "SD", + "geonameId": "374272", + "latitudeAirport": 15.35, + "longitudeAirport": 35.733334, + "nameAirport": "New Halfa", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "-5", + "airportId": 5408, + "codeIataAirport": "NHK", + "codeIataCity": "NHK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.3, + "longitudeAirport": -76.433334, + "nameAirport": "Patuxent River NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "5", + "airportId": 5409, + "codeIataAirport": "NHS", + "codeIataCity": "NHS", + "codeIcaoAirport": "OPNK", + "codeIso2Country": "PK", + "geonameId": "7730753", + "latitudeAirport": 29.583332, + "longitudeAirport": 66.0, + "nameAirport": "Nushki", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "0", + "airportId": 5410, + "codeIataAirport": "NHT", + "codeIataCity": "NHT", + "codeIcaoAirport": "EGWU", + "codeIso2Country": "GB", + "geonameId": "6301524", + "latitudeAirport": 51.533333, + "longitudeAirport": -0.366667, + "nameAirport": "Northolt", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-9:30", + "airportId": 5411, + "codeIataAirport": "NHV", + "codeIataCity": "NHV", + "codeIcaoAirport": "NTMD", + "codeIso2Country": "PF", + "geonameId": "7730130", + "latitudeAirport": -8.795214, + "longitudeAirport": -140.22223, + "nameAirport": "Nuku Hiva", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Marquesas" + }, + { + "GMT": "-6", + "airportId": 5412, + "codeIataAirport": "NHX", + "codeIataCity": "NHX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.4, + "longitudeAirport": -87.683334, + "nameAirport": "Barin Olf Osn", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 5413, + "codeIataAirport": "NHZ", + "codeIataCity": "NHZ", + "codeIcaoAirport": "KNHZ", + "codeIso2Country": "US", + "geonameId": "6298757", + "latitudeAirport": 43.916668, + "longitudeAirport": -69.96667, + "nameAirport": "NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 5414, + "codeIataAirport": "NIA", + "codeIataCity": "NIA", + "codeIcaoAirport": "", + "codeIso2Country": "LR", + "geonameId": "0", + "latitudeAirport": 7.491111, + "longitudeAirport": -8.591667, + "nameAirport": "Nimba", + "nameCountry": "Liberia", + "phone": "", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-9", + "airportId": 5415, + "codeIataAirport": "NIB", + "codeIataCity": "NIB", + "codeIcaoAirport": "PAFS", + "codeIso2Country": "US", + "geonameId": "5869969", + "latitudeAirport": 63.016666, + "longitudeAirport": -154.38333, + "nameAirport": "Nikolai", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 5416, + "codeIataAirport": "NIE", + "codeIataCity": "NIE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8298687", + "latitudeAirport": 55.066666, + "longitudeAirport": -132.15, + "nameAirport": "Niblack", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 5417, + "codeIataAirport": "NIF", + "codeIataCity": "NIF", + "codeIcaoAirport": "YCNF", + "codeIso2Country": "AU", + "geonameId": "7731333", + "latitudeAirport": -21.675, + "longitudeAirport": 121.58611, + "nameAirport": "Nifty", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "12", + "airportId": 5418, + "codeIataAirport": "NIG", + "codeIataCity": "NIG", + "codeIcaoAirport": "", + "codeIso2Country": "KI", + "geonameId": "0", + "latitudeAirport": -1.333333, + "longitudeAirport": 176.41667, + "nameAirport": "Nikunau", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "0", + "airportId": 5419, + "codeIataAirport": "NIK", + "codeIataCity": "NIK", + "codeIcaoAirport": "", + "codeIso2Country": "SN", + "geonameId": "8298915", + "latitudeAirport": 13.066667, + "longitudeAirport": -12.716667, + "nameAirport": "Niokolo Koba", + "nameCountry": "Senegal", + "phone": "", + "timezone": "Africa/Dakar" + }, + { + "GMT": "1", + "airportId": 5420, + "codeIataAirport": "NIM", + "codeIataCity": "NIM", + "codeIcaoAirport": "DRRN", + "codeIso2Country": "NE", + "geonameId": "6296456", + "latitudeAirport": 13.476534, + "longitudeAirport": 2.177158, + "nameAirport": "Niamey", + "nameCountry": "Niger", + "phone": "", + "timezone": "Africa/Niamey" + }, + { + "GMT": "-9", + "airportId": 5421, + "codeIataAirport": "NIN", + "codeIataCity": "NIN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5870043", + "latitudeAirport": 60.066666, + "longitudeAirport": -151.73334, + "nameAirport": "Ninilchik", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 5422, + "codeIataAirport": "NIO", + "codeIataCity": "NIO", + "codeIcaoAirport": "FZBI", + "codeIso2Country": "CD", + "geonameId": "7668266", + "latitudeAirport": -2.75, + "longitudeAirport": 17.7, + "nameAirport": "Nioki", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "-5", + "airportId": 5423, + "codeIataAirport": "NIP", + "codeIataCity": "JAX", + "codeIcaoAirport": "KNIP", + "codeIso2Country": "US", + "geonameId": "6298759", + "latitudeAirport": 30.25, + "longitudeAirport": -81.68056, + "nameAirport": "Jacksonville NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 5424, + "codeIataAirport": "NIR", + "codeIataCity": "NIR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4673258", + "latitudeAirport": 28.4, + "longitudeAirport": -97.75, + "nameAirport": "Chase Field NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 5425, + "codeIataAirport": "NIS", + "codeIataCity": "NIS", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298798", + "latitudeAirport": -2.666667, + "longitudeAirport": 152.0, + "nameAirport": "Simberi", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 5426, + "codeIataAirport": "NIT", + "codeIataCity": "NIT", + "codeIcaoAirport": "LFBN", + "codeIso2Country": "FR", + "geonameId": "6299376", + "latitudeAirport": 46.316666, + "longitudeAirport": -0.45, + "nameAirport": "Niort", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-10", + "airportId": 5427, + "codeIataAirport": "NIU", + "codeIataCity": "NIU", + "codeIcaoAirport": "NTKN", + "codeIso2Country": "PF", + "geonameId": "8298709", + "latitudeAirport": -16.121988, + "longitudeAirport": -146.37325, + "nameAirport": "Niau", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "0", + "airportId": 5428, + "codeIataAirport": "NIX", + "codeIataCity": "NIX", + "codeIcaoAirport": "GANR", + "codeIso2Country": "ML", + "geonameId": "6297178", + "latitudeAirport": 15.239167, + "longitudeAirport": -9.577222, + "nameAirport": "Nioro", + "nameCountry": "Mali", + "phone": "", + "timezone": "Africa/Bamako" + }, + { + "GMT": "9", + "airportId": 5429, + "codeIataAirport": "NJA", + "codeIataCity": "NJA", + "codeIcaoAirport": "RJTA", + "codeIso2Country": "JP", + "geonameId": "6300402", + "latitudeAirport": 35.416668, + "longitudeAirport": 139.35, + "nameAirport": "Atsugi NAS", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "5", + "airportId": 5430, + "codeIataAirport": "NJC", + "codeIataCity": "NJC", + "codeIcaoAirport": "USNN", + "codeIso2Country": "RU", + "geonameId": "6301001", + "latitudeAirport": 60.9476, + "longitudeAirport": 76.49145, + "nameAirport": "Nizhnevartovsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "3", + "airportId": 5431, + "codeIataAirport": "NJF", + "codeIataCity": "NJF", + "codeIcaoAirport": "ORNI", + "codeIso2Country": "IQ", + "geonameId": "7910618", + "latitudeAirport": 31.993563, + "longitudeAirport": 44.389187, + "nameAirport": "Al-Ashraf International", + "nameCountry": "Iraq", + "phone": "", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "-8", + "airportId": 5432, + "codeIataAirport": "NJK", + "codeIataCity": "IPL", + "codeIcaoAirport": "KNJK", + "codeIso2Country": "US", + "geonameId": "6301667", + "latitudeAirport": 32.837223, + "longitudeAirport": -115.57472, + "nameAirport": "El Centro NAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 5433, + "codeIataAirport": "NKA", + "codeIataCity": "NKA", + "codeIcaoAirport": "", + "codeIso2Country": "GA", + "geonameId": "2397354", + "latitudeAirport": 0.7, + "longitudeAirport": 9.983333, + "nameAirport": "Nkan", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "0", + "airportId": 5434, + "codeIataAirport": "NKC", + "codeIataCity": "NKC", + "codeIcaoAirport": "GQNN", + "codeIso2Country": "MR", + "geonameId": "6297240", + "latitudeAirport": 18.098148, + "longitudeAirport": -15.952041, + "nameAirport": "Nouakchott", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "9", + "airportId": 5435, + "codeIataAirport": "NKD", + "codeIataCity": "NKD", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "8299153", + "latitudeAirport": -5.85, + "longitudeAirport": 110.46667, + "nameAirport": "Sinak", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "airportId": 5436, + "codeIataAirport": "NKG", + "codeIataCity": "NKG", + "codeIcaoAirport": "ZSNJ", + "codeIso2Country": "CN", + "geonameId": "6301384", + "latitudeAirport": 31.735737, + "longitudeAirport": 118.86652, + "nameAirport": "Nanjing Lukou International Airport", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-9", + "airportId": 5437, + "codeIataAirport": "NKI", + "codeIataCity": "NKI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 55.36667, + "longitudeAirport": -133.21666, + "nameAirport": "Naukiti", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 5438, + "codeIataAirport": "NKL", + "codeIataCity": "NKL", + "codeIcaoAirport": "FZAR", + "codeIso2Country": "CD", + "geonameId": "7730554", + "latitudeAirport": -1.983333, + "longitudeAirport": 16.466667, + "nameAirport": "Nkolo", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "9", + "airportId": 5439, + "codeIataAirport": "NKM", + "codeIataCity": "NGO", + "codeIcaoAirport": "RJNA", + "codeIso2Country": "JP", + "geonameId": "0", + "latitudeAirport": 35.25389, + "longitudeAirport": 136.91957, + "nameAirport": "Komaki AFB", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "10", + "airportId": 5440, + "codeIataAirport": "NKN", + "codeIataCity": "NKN", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299113", + "latitudeAirport": -5.833333, + "longitudeAirport": 143.45, + "nameAirport": "Nankina", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 5441, + "codeIataAirport": "NKO", + "codeIataCity": "NKO", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "8299298", + "latitudeAirport": -16.583332, + "longitudeAirport": -44.45, + "nameAirport": "Ankokoambo", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "1", + "airportId": 5442, + "codeIataAirport": "NKS", + "codeIataCity": "NKS", + "codeIcaoAirport": "", + "codeIso2Country": "CM", + "geonameId": "2223763", + "latitudeAirport": 4.95, + "longitudeAirport": 9.933333, + "nameAirport": "Nkongsamba", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "2", + "airportId": 5443, + "codeIataAirport": "NKU", + "codeIataCity": "NKU", + "codeIcaoAirport": "FXNK", + "codeIso2Country": "LS", + "geonameId": "7730539", + "latitudeAirport": -29.5, + "longitudeAirport": 28.0, + "nameAirport": "Nkaus", + "nameCountry": "Lesotho", + "phone": "", + "timezone": "Africa/Maseru" + }, + { + "GMT": "-9", + "airportId": 5444, + "codeIataAirport": "NKV", + "codeIataCity": "NKV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 55.85, + "longitudeAirport": -133.21666, + "nameAirport": "Nichen Cove", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "airportId": 5445, + "codeIataAirport": "NKX", + "codeIataCity": "SAN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.86667, + "longitudeAirport": -117.11667, + "nameAirport": "Miramar MS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 5446, + "codeIataAirport": "NKY", + "codeIataCity": "NKY", + "codeIcaoAirport": "", + "codeIso2Country": "CG", + "geonameId": "0", + "latitudeAirport": -4.216667, + "longitudeAirport": 13.3, + "nameAirport": "Nkayi", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "2", + "airportId": 5447, + "codeIataAirport": "NLA", + "codeIataCity": "NLA", + "codeIcaoAirport": "FLND", + "codeIso2Country": "ZM", + "geonameId": "6297022", + "latitudeAirport": -12.993449, + "longitudeAirport": 28.665024, + "nameAirport": "Ndola", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-8", + "airportId": 5448, + "codeIataAirport": "NLC", + "codeIataCity": "NLC", + "codeIcaoAirport": "KNLC", + "codeIso2Country": "US", + "geonameId": "5399082", + "latitudeAirport": 36.3, + "longitudeAirport": -119.76667, + "nameAirport": "Lemoore NAS (Reeves Field)", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 5449, + "codeIataAirport": "NLD", + "codeIataCity": "NLD", + "codeIcaoAirport": "MMNL", + "codeIso2Country": "MX", + "geonameId": "3522551", + "latitudeAirport": 27.434723, + "longitudeAirport": -99.566666, + "nameAirport": "International Quetzalcoatl", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Matamoros" + }, + { + "GMT": "-5", + "airportId": 5450, + "codeIataAirport": "NLE", + "codeIataCity": "NLE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.841667, + "longitudeAirport": -86.225, + "nameAirport": "Jerry Tyler Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "10", + "airportId": 5451, + "codeIataAirport": "NLF", + "codeIataCity": "NLF", + "codeIcaoAirport": "YDNI", + "codeIso2Country": "AU", + "geonameId": "7731335", + "latitudeAirport": -9.584515, + "longitudeAirport": 143.7869, + "nameAirport": "Darnley Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "airportId": 5452, + "codeIataAirport": "NLG", + "codeIataCity": "NLG", + "codeIcaoAirport": "PAOU", + "codeIso2Country": "US", + "geonameId": "5869806", + "latitudeAirport": 56.00139, + "longitudeAirport": -161.1525, + "nameAirport": "Nelson Lagoon", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "11", + "airportId": 5453, + "codeIataAirport": "NLK", + "codeIataCity": "NLK", + "codeIcaoAirport": "YSNF", + "codeIso2Country": "NF", + "geonameId": "6301347", + "latitudeAirport": -29.0425, + "longitudeAirport": 167.93944, + "nameAirport": "Norfolk Island", + "nameCountry": "Norfolk Island", + "phone": "", + "timezone": "Pacific/Norfolk" + }, + { + "GMT": "8", + "airportId": 5454, + "codeIataAirport": "NLL", + "codeIataCity": "NLL", + "codeIcaoAirport": "YNUL", + "codeIso2Country": "AU", + "geonameId": "7731336", + "latitudeAirport": -21.75, + "longitudeAirport": 120.2, + "nameAirport": "Nullagine", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-8", + "airportId": 5455, + "codeIataAirport": "NLN", + "codeIataCity": "NLN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5566367", + "latitudeAirport": 40.7193, + "longitudeAirport": -123.9282, + "nameAirport": "Kneeland", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 5456, + "codeIataAirport": "NLO", + "codeIataCity": "FIH", + "codeIcaoAirport": "FZAB", + "codeIso2Country": "CD", + "geonameId": "7668265", + "latitudeAirport": -4.325, + "longitudeAirport": 15.326389, + "nameAirport": "N'dolo", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "2", + "airportId": 5457, + "codeIataAirport": "NLP", + "codeIataCity": "NLP", + "codeIcaoAirport": "FANS", + "codeIso2Country": "ZA", + "geonameId": "6296913", + "latitudeAirport": -25.500834, + "longitudeAirport": 30.913889, + "nameAirport": "Nelspruit Airport", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "8", + "airportId": 5458, + "codeIataAirport": "NLS", + "codeIataCity": "NLS", + "codeIcaoAirport": "YNIC", + "codeIso2Country": "AU", + "geonameId": "7731337", + "latitudeAirport": -18.050833, + "longitudeAirport": 128.89583, + "nameAirport": "Nicholson", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "airportId": 5459, + "codeIataAirport": "NLT", + "codeIataCity": "NLT", + "codeIcaoAirport": "ZWNL", + "codeIso2Country": "CN", + "geonameId": "8260762", + "latitudeAirport": 43.43222, + "longitudeAirport": 83.382225, + "nameAirport": "Nalati", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 5460, + "codeIataAirport": "NLU", + "codeIataCity": "MEX", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "0", + "latitudeAirport": 19.4, + "longitudeAirport": -99.15, + "nameAirport": "Santa Lucia", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "2", + "airportId": 5461, + "codeIataAirport": "NLV", + "codeIataCity": "NLV", + "codeIcaoAirport": "UKON", + "codeIso2Country": "UA", + "geonameId": "6300967", + "latitudeAirport": 47.05, + "longitudeAirport": 31.916668, + "nameAirport": "Nikolaev (Mykolaiv)", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "5", + "airportId": 5462, + "codeIataAirport": "NMA", + "codeIataCity": "NMA", + "codeIcaoAirport": "UTKN", + "codeIso2Country": "UZ", + "geonameId": "7537044", + "latitudeAirport": 40.983334, + "longitudeAirport": 71.6, + "nameAirport": "Namangan", + "nameCountry": "Uzbekistan", + "phone": "", + "timezone": "Asia/Tashkent" + }, + { + "GMT": "5.30", + "airportId": 5463, + "codeIataAirport": "NMB", + "codeIataCity": "NMB", + "codeIcaoAirport": "VADN", + "codeIso2Country": "IN", + "geonameId": "7668570", + "latitudeAirport": 20.416668, + "longitudeAirport": 72.95, + "nameAirport": "Daman", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "airportId": 5464, + "codeIataAirport": "NMC", + "codeIataCity": "NMC", + "codeIcaoAirport": "MYEN", + "codeIso2Country": "BS", + "geonameId": "3571802", + "latitudeAirport": 24.59361, + "longitudeAirport": -76.82, + "nameAirport": "Norman's Cay", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-9", + "airportId": 5465, + "codeIataAirport": "NME", + "codeIataCity": "NME", + "codeIcaoAirport": "PAGT", + "codeIso2Country": "US", + "geonameId": "5869941", + "latitudeAirport": 60.471046, + "longitudeAirport": -164.70084, + "nameAirport": "Nightmute", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 5466, + "codeIataAirport": "NMG", + "codeIataCity": "NMG", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "0", + "latitudeAirport": 8.366667, + "longitudeAirport": -78.28333, + "nameAirport": "San Miguel", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "-7", + "airportId": 5467, + "codeIataAirport": "NML", + "codeIataCity": "NML", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6073569", + "latitudeAirport": 57.03353, + "longitudeAirport": -111.60191, + "nameAirport": "Mildred Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "10", + "airportId": 5468, + "codeIataAirport": "NMN", + "codeIataCity": "NMN", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2089539", + "latitudeAirport": -16.316668, + "longitudeAirport": 145.06667, + "nameAirport": "Nomane", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 5469, + "codeIataAirport": "NMP", + "codeIataCity": "NMP", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298780", + "latitudeAirport": -20.166668, + "longitudeAirport": 143.96666, + "nameAirport": "New Moon", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 5470, + "codeIataAirport": "NMR", + "codeIataCity": "NMR", + "codeIcaoAirport": "YNAP", + "codeIso2Country": "AU", + "geonameId": "7731338", + "latitudeAirport": -27.6, + "longitudeAirport": 141.11667, + "nameAirport": "Nappa Merry", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "6.30", + "airportId": 5471, + "codeIataAirport": "NMS", + "codeIataCity": "NMS", + "codeIcaoAirport": "VYNS", + "codeIso2Country": "MM", + "geonameId": "7730230", + "latitudeAirport": 20.883333, + "longitudeAirport": 97.75, + "nameAirport": "Namsang", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "6.30", + "airportId": 5472, + "codeIataAirport": "NMT", + "codeIataCity": "NMT", + "codeIcaoAirport": "VNMT", + "codeIso2Country": "MM", + "geonameId": "7731339", + "latitudeAirport": 23.083332, + "longitudeAirport": 97.4, + "nameAirport": "Namtu", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "12", + "airportId": 5473, + "codeIataAirport": "NMU", + "codeIataCity": "NMU", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 8.0, + "longitudeAirport": 168.13333, + "nameAirport": "Namu", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "0", + "airportId": 5474, + "codeIataAirport": "NNA", + "codeIataCity": "NNA", + "codeIcaoAirport": "GMMY", + "codeIso2Country": "MA", + "geonameId": "2544572", + "latitudeAirport": 34.266666, + "longitudeAirport": -6.666667, + "nameAirport": "NAF", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "11", + "airportId": 5475, + "codeIataAirport": "NNB", + "codeIataCity": "NNB", + "codeIcaoAirport": "AGGT", + "codeIso2Country": "SB", + "geonameId": "8298772", + "latitudeAirport": -10.833333, + "longitudeAirport": 162.5, + "nameAirport": "Santa Ana", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "2", + "airportId": 5476, + "codeIataAirport": "NND", + "codeIataCity": "NND", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "1033128", + "latitudeAirport": -11.083333, + "longitudeAirport": 39.1, + "nameAirport": "Nangade", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "8", + "airportId": 5477, + "codeIataAirport": "NNG", + "codeIataCity": "NNG", + "codeIcaoAirport": "ZGNN", + "codeIso2Country": "CN", + "geonameId": "6301363", + "latitudeAirport": 22.61321, + "longitudeAirport": 108.1675, + "nameAirport": "Nanning", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "airportId": 5478, + "codeIataAirport": "NNI", + "codeIataCity": "NNI", + "codeIcaoAirport": "FYNA", + "codeIso2Country": "NA", + "geonameId": "7730550", + "latitudeAirport": -18.816668, + "longitudeAirport": 16.916668, + "nameAirport": "Namutoni", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-9", + "airportId": 5479, + "codeIataAirport": "NNK", + "codeIataCity": "NNK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5869588", + "latitudeAirport": 58.733334, + "longitudeAirport": -157.01694, + "nameAirport": "Naknek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 5480, + "codeIataAirport": "NNL", + "codeIataCity": "NNL", + "codeIcaoAirport": "PANO", + "codeIso2Country": "US", + "geonameId": "5870146", + "latitudeAirport": 59.978527, + "longitudeAirport": -154.83777, + "nameAirport": "Nondalton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "airportId": 5481, + "codeIataAirport": "NNM", + "codeIataCity": "NNM", + "codeIcaoAirport": "ULAM", + "codeIso2Country": "RU", + "geonameId": "7668513", + "latitudeAirport": 67.61667, + "longitudeAirport": 53.15, + "nameAirport": "Naryan-Mar", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "0", + "airportId": 5482, + "codeIataAirport": "NNR", + "codeIataCity": "NNR", + "codeIcaoAirport": "EICA", + "codeIso2Country": "IE", + "geonameId": "7730479", + "latitudeAirport": 53.216667, + "longitudeAirport": -9.466667, + "nameAirport": "Connemara", + "nameCountry": "Ireland", + "phone": "", + "timezone": "Europe/Dublin" + }, + { + "GMT": "7", + "airportId": 5483, + "codeIataAirport": "NNT", + "codeIataCity": "NNT", + "codeIcaoAirport": "VTCN", + "codeIso2Country": "TH", + "geonameId": "1608452", + "latitudeAirport": 18.8, + "longitudeAirport": 100.78333, + "nameAirport": "Nan", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-3", + "airportId": 5484, + "codeIataAirport": "NNU", + "codeIataCity": "NNU", + "codeIcaoAirport": "SNNU", + "codeIso2Country": "BR", + "geonameId": "7731340", + "latitudeAirport": -17.816668, + "longitudeAirport": -40.333332, + "nameAirport": "Nanuque", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "8", + "airportId": 5485, + "codeIataAirport": "NNX", + "codeIataCity": "NNX", + "codeIcaoAirport": "WRLF", + "codeIso2Country": "ID", + "geonameId": "7668678", + "latitudeAirport": 4.15, + "longitudeAirport": 117.65, + "nameAirport": "Nunukan", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "8", + "airportId": 5486, + "codeIataAirport": "NNY", + "codeIataCity": "NNY", + "codeIcaoAirport": "ZHNY", + "codeIso2Country": "CN", + "geonameId": "7731341", + "latitudeAirport": 32.9837, + "longitudeAirport": 112.61305, + "nameAirport": "Nanyang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "airportId": 5487, + "codeIataAirport": "NOA", + "codeIataCity": "NOA", + "codeIcaoAirport": "YSNW", + "codeIso2Country": "AU", + "geonameId": "6301348", + "latitudeAirport": -34.950558, + "longitudeAirport": 150.5375, + "nameAirport": "Nowra", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "airportId": 5488, + "codeIataAirport": "NOB", + "codeIataCity": "NOB", + "codeIcaoAirport": "MRNS", + "codeIso2Country": "CR", + "geonameId": "7730112", + "latitudeAirport": 9.976398, + "longitudeAirport": -85.65305, + "nameAirport": "Nosara Beach", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "0", + "airportId": 5489, + "codeIataAirport": "NOC", + "codeIataCity": "NOC", + "codeIcaoAirport": "EIKN", + "codeIso2Country": "IE", + "geonameId": "6296698", + "latitudeAirport": 53.914, + "longitudeAirport": -8.810468, + "nameAirport": "Ireland West Airport Knock", + "nameCountry": "Ireland", + "phone": "", + "timezone": "Europe/Dublin" + }, + { + "GMT": "1", + "airportId": 5490, + "codeIataAirport": "NOD", + "codeIataCity": "NOD", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 53.583332, + "longitudeAirport": 7.2, + "nameAirport": "Norden", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-7", + "airportId": 5491, + "codeIataAirport": "NOG", + "codeIataCity": "NOG", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "0", + "latitudeAirport": 31.333332, + "longitudeAirport": -110.933334, + "nameAirport": "Nogales", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Hermosillo" + }, + { + "GMT": "-6", + "airportId": 5492, + "codeIataAirport": "NOH", + "codeIataCity": "CHI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.880554, + "longitudeAirport": -87.61667, + "nameAirport": "Chicago NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 5493, + "codeIataAirport": "NOI", + "codeIataCity": "NOI", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "8298919", + "latitudeAirport": 44.716667, + "longitudeAirport": 37.766666, + "nameAirport": "Novorossijsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "5", + "airportId": 5494, + "codeIataAirport": "NOJ", + "codeIataCity": "NOJ", + "codeIcaoAirport": "USRO", + "codeIso2Country": "RU", + "geonameId": "7668539", + "latitudeAirport": 63.17673, + "longitudeAirport": 75.29459, + "nameAirport": "Nojabrxsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-4", + "airportId": 5495, + "codeIataAirport": "NOK", + "codeIataCity": "NOK", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "6317775", + "latitudeAirport": -14.690278, + "longitudeAirport": -52.34861, + "nameAirport": "Nova Xavantina", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-9", + "airportId": 5496, + "codeIataAirport": "NOL", + "codeIataCity": "NOL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8261017", + "latitudeAirport": 67.9, + "longitudeAirport": -160.71666, + "nameAirport": "Nakolik River", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 5497, + "codeIataAirport": "NOM", + "codeIataCity": "NOM", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298839", + "latitudeAirport": -6.3, + "longitudeAirport": 142.21666, + "nameAirport": "Nomad River", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "12", + "airportId": 5498, + "codeIataAirport": "NON", + "codeIataCity": "NON", + "codeIcaoAirport": "", + "codeIso2Country": "KI", + "geonameId": "0", + "latitudeAirport": -0.680556, + "longitudeAirport": 174.35, + "nameAirport": "Nonouti", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "10", + "airportId": 5499, + "codeIataAirport": "NOO", + "codeIataCity": "NOO", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2089920", + "latitudeAirport": -9.2, + "longitudeAirport": 147.53334, + "nameAirport": "Naoro", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 5500, + "codeIataAirport": "NOP", + "codeIataCity": "NOP", + "codeIcaoAirport": "", + "codeIso2Country": "TR", + "geonameId": "7668331", + "latitudeAirport": 42.0175, + "longitudeAirport": 35.06889, + "nameAirport": "Sinop", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "0", + "airportId": 5501, + "codeIataAirport": "NOR", + "codeIataCity": "NOR", + "codeIcaoAirport": "BINF", + "codeIso2Country": "IS", + "geonameId": "7730434", + "latitudeAirport": 65.166664, + "longitudeAirport": -22.0, + "nameAirport": "Nordfjordur", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "3", + "airportId": 5502, + "codeIataAirport": "NOS", + "codeIataCity": "NOS", + "codeIcaoAirport": "FMNN", + "codeIso2Country": "MG", + "geonameId": "6297048", + "latitudeAirport": -13.311111, + "longitudeAirport": 48.31389, + "nameAirport": "Fascene", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-8", + "airportId": 5503, + "codeIataAirport": "NOT", + "codeIataCity": "NOT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5378044", + "latitudeAirport": 38.143333, + "longitudeAirport": -122.55583, + "nameAirport": "Novato", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "11", + "airportId": 5504, + "codeIataAirport": "NOU", + "codeIataCity": "NOU", + "codeIcaoAirport": "NWWW", + "codeIso2Country": "NC", + "geonameId": "6299979", + "latitudeAirport": -22.01639, + "longitudeAirport": 166.21611, + "nameAirport": "Tontouta", + "nameCountry": "New Caledonia", + "phone": "", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "1", + "airportId": 5505, + "codeIataAirport": "NOV", + "codeIataCity": "NOV", + "codeIcaoAirport": "FNHU", + "codeIso2Country": "AO", + "geonameId": "6297061", + "latitudeAirport": -12.805556, + "longitudeAirport": 15.757222, + "nameAirport": "Huambo", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "7", + "airportId": 5506, + "codeIataAirport": "NOZ", + "codeIataCity": "NOZ", + "codeIcaoAirport": "UNWW", + "codeIso2Country": "RU", + "geonameId": "6300988", + "latitudeAirport": 53.75, + "longitudeAirport": 87.166664, + "nameAirport": "Novokuznetsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Novokuznetsk" + }, + { + "GMT": "-6", + "airportId": 5507, + "codeIataAirport": "NPA", + "codeIataCity": "PNS", + "codeIcaoAirport": "KNPA", + "codeIso2Country": "US", + "geonameId": "6301670", + "latitudeAirport": 30.416668, + "longitudeAirport": -87.21667, + "nameAirport": "Pensacola NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "12", + "airportId": 5508, + "codeIataAirport": "NPE", + "codeIataCity": "NPE", + "codeIcaoAirport": "NZNR", + "codeIso2Country": "NZ", + "geonameId": "6246614", + "latitudeAirport": -39.46667, + "longitudeAirport": 176.87225, + "nameAirport": "Hawkes Bay", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "10", + "airportId": 5509, + "codeIataAirport": "NPG", + "codeIataCity": "NPG", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2089578", + "latitudeAirport": -6.133333, + "longitudeAirport": 143.36667, + "nameAirport": "Nipa", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "airportId": 5510, + "codeIataAirport": "NPH", + "codeIataCity": "NPH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5543853", + "latitudeAirport": 39.738888, + "longitudeAirport": -111.870834, + "nameAirport": "Nephi", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "12", + "airportId": 5511, + "codeIataAirport": "NPL", + "codeIataCity": "NPL", + "codeIcaoAirport": "NZNP", + "codeIso2Country": "NZ", + "geonameId": "6223717", + "latitudeAirport": -39.01013, + "longitudeAirport": 174.17932, + "nameAirport": "New Plymouth", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "8", + "airportId": 5512, + "codeIataAirport": "NPO", + "codeIataCity": "NPO", + "codeIcaoAirport": "WIOG", + "codeIso2Country": "ID", + "geonameId": "7730235", + "latitudeAirport": -0.333333, + "longitudeAirport": 111.73333, + "nameAirport": "Nangapinoh", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "9.30", + "airportId": 5513, + "codeIataAirport": "NPP", + "codeIataCity": "NPP", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8260874", + "latitudeAirport": -22.5, + "longitudeAirport": 132.68333, + "nameAirport": "Napperby", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-3", + "airportId": 5514, + "codeIataAirport": "NPR", + "codeIataCity": "NPR", + "codeIcaoAirport": "SJNP", + "codeIso2Country": "BR", + "geonameId": "8260751", + "latitudeAirport": -7.126, + "longitudeAirport": -55.4, + "nameAirport": "Novo Progresso Municipal", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Santarem" + }, + { + "GMT": "-5", + "airportId": 5515, + "codeIataAirport": "NPT", + "codeIataCity": "NPT", + "codeIcaoAirport": "KUUU", + "codeIso2Country": "US", + "geonameId": "5223619", + "latitudeAirport": 41.530834, + "longitudeAirport": -71.2825, + "nameAirport": "State", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 5516, + "codeIataAirport": "NPU", + "codeIataCity": "NPU", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8299255", + "latitudeAirport": 4.95, + "longitudeAirport": -71.916664, + "nameAirport": "San Pedro Uraba", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 5517, + "codeIataAirport": "NQA", + "codeIataCity": "MEM", + "codeIcaoAirport": "KNQA", + "codeIso2Country": "US", + "geonameId": "6298767", + "latitudeAirport": 35.13333, + "longitudeAirport": -90.05, + "nameAirport": "Millington Regional Jetport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 5518, + "codeIataAirport": "NQI", + "codeIataCity": "NQI", + "codeIcaoAirport": "KNQI", + "codeIso2Country": "US", + "geonameId": "6298768", + "latitudeAirport": 27.516666, + "longitudeAirport": -97.86667, + "nameAirport": "NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 5519, + "codeIataAirport": "NQL", + "codeIataCity": "NQL", + "codeIcaoAirport": "SWNQ", + "codeIso2Country": "BR", + "geonameId": "7731342", + "latitudeAirport": -14.0, + "longitudeAirport": -48.983334, + "nameAirport": "Niquelandia", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-3", + "airportId": 5520, + "codeIataAirport": "NQN", + "codeIataCity": "NQN", + "codeIcaoAirport": "SAZN", + "codeIso2Country": "AR", + "geonameId": "6300586", + "latitudeAirport": -38.95, + "longitudeAirport": -68.15222, + "nameAirport": "Neuquen", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "0", + "airportId": 5521, + "codeIataAirport": "NQT", + "codeIataCity": "NQT", + "codeIcaoAirport": "EGBN", + "codeIso2Country": "GB", + "geonameId": "7668195", + "latitudeAirport": 52.966667, + "longitudeAirport": -1.166667, + "nameAirport": "Nottingham Airport", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "airportId": 5522, + "codeIataAirport": "NQU", + "codeIataCity": "NQU", + "codeIcaoAirport": "SKNQ", + "codeIso2Country": "CO", + "geonameId": "7668463", + "latitudeAirport": 5.7, + "longitudeAirport": -77.28333, + "nameAirport": "Nuqui", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 5523, + "codeIataAirport": "NQX", + "codeIataCity": "EYW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 24.55, + "longitudeAirport": -81.8, + "nameAirport": "Key West NAS /Boca Chica Field (private U. S. Navy )", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 5524, + "codeIataAirport": "NQY", + "codeIataCity": "NQY", + "codeIcaoAirport": "EGDG", + "codeIso2Country": "GB", + "geonameId": "6296578", + "latitudeAirport": 50.43745, + "longitudeAirport": -4.997922, + "nameAirport": "Newquay Cornwall Airport", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "10", + "airportId": 5525, + "codeIataAirport": "NRA", + "codeIataCity": "NRA", + "codeIcaoAirport": "YNAR", + "codeIso2Country": "AU", + "geonameId": "7730267", + "latitudeAirport": -34.705643, + "longitudeAirport": 146.5117, + "nameAirport": "Narrandera", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "airportId": 5526, + "codeIataAirport": "NRB", + "codeIataCity": "NRB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.333332, + "longitudeAirport": -81.65, + "nameAirport": "Ns", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 5527, + "codeIataAirport": "NRD", + "codeIataCity": "NRD", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2862041", + "latitudeAirport": 53.833332, + "longitudeAirport": 7.166667, + "nameAirport": "Norderney", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "9", + "airportId": 5528, + "codeIataAirport": "NRE", + "codeIataCity": "NRE", + "codeIcaoAirport": "WAPG", + "codeIso2Country": "ID", + "geonameId": "7731343", + "latitudeAirport": -3.816667, + "longitudeAirport": 126.71667, + "nameAirport": "Namrole", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "airportId": 5529, + "codeIataAirport": "NRG", + "codeIataCity": "NRG", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8261003", + "latitudeAirport": -32.933334, + "longitudeAirport": 117.166664, + "nameAirport": "Narrogin", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "airportId": 5530, + "codeIataAirport": "NRI", + "codeIataCity": "NRI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 35.166668, + "longitudeAirport": -99.833336, + "nameAirport": "Shangri-la", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 5531, + "codeIataAirport": "NRK", + "codeIataCity": "NRK", + "codeIcaoAirport": "ESSP", + "codeIso2Country": "SE", + "geonameId": "2698736", + "latitudeAirport": 58.583298, + "longitudeAirport": 16.232393, + "nameAirport": "Kungsangen", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "0", + "airportId": 5532, + "codeIataAirport": "NRL", + "codeIataCity": "NRL", + "codeIcaoAirport": "EGEN", + "codeIso2Country": "GB", + "geonameId": "7668198", + "latitudeAirport": 59.370277, + "longitudeAirport": -2.433333, + "nameAirport": "North Ronaldsay", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 5533, + "codeIataAirport": "NRM", + "codeIataCity": "NRM", + "codeIcaoAirport": "GANK", + "codeIso2Country": "ML", + "geonameId": "8298668", + "latitudeAirport": 15.25, + "longitudeAirport": -7.283333, + "nameAirport": "Nara", + "nameCountry": "Mali", + "phone": "", + "timezone": "Africa/Bamako" + }, + { + "GMT": "1", + "airportId": 5534, + "codeIataAirport": "NRN", + "codeIataCity": "DUS", + "codeIcaoAirport": "EDLV", + "codeIso2Country": "DE", + "geonameId": "6296519", + "latitudeAirport": 51.599285, + "longitudeAirport": 6.150168, + "nameAirport": "Weeze", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-4", + "airportId": 5535, + "codeIataAirport": "NRR", + "codeIataCity": "NRR", + "codeIcaoAirport": "TJNR", + "codeIso2Country": "PR", + "geonameId": "4567993", + "latitudeAirport": 18.25, + "longitudeAirport": -65.638885, + "nameAirport": "Roosevelt NAS", + "nameCountry": "Puerto Rico", + "phone": "", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "-8", + "airportId": 5536, + "codeIataAirport": "NRS", + "codeIataCity": "NRS", + "codeIcaoAirport": "KNRS", + "codeIso2Country": "US", + "geonameId": "5386417", + "latitudeAirport": 32.837223, + "longitudeAirport": -115.57472, + "nameAirport": "NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9", + "airportId": 5537, + "codeIataAirport": "NRT", + "codeIataCity": "TYO", + "codeIcaoAirport": "RJAA", + "codeIso2Country": "JP", + "geonameId": "6300307", + "latitudeAirport": 35.773212, + "longitudeAirport": 140.38744, + "nameAirport": "Narita International Airport", + "nameCountry": "Japan", + "phone": "87", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "9.30", + "airportId": 5538, + "codeIataAirport": "NRY", + "codeIataCity": "NRY", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298705", + "latitudeAirport": -16.016666, + "longitudeAirport": 129.23334, + "nameAirport": "Newry", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-5", + "airportId": 5539, + "codeIataAirport": "NSB", + "codeIataCity": "BIM", + "codeIcaoAirport": "", + "codeIso2Country": "BS", + "geonameId": "7731344", + "latitudeAirport": 25.775, + "longitudeAirport": -79.25, + "nameAirport": "North SPB", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-6", + "airportId": 5540, + "codeIataAirport": "NSE", + "codeIataCity": "NSE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.633333, + "longitudeAirport": -87.05, + "nameAirport": "Whiting Field NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 5541, + "codeIataAirport": "NSF", + "codeIataCity": "ADW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.816666, + "longitudeAirport": -76.833336, + "nameAirport": "Andrews NAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3.30", + "airportId": 5542, + "codeIataAirport": "NSH", + "codeIataCity": "NSH", + "codeIcaoAirport": "OINN", + "codeIso2Country": "IR", + "geonameId": "7457199", + "latitudeAirport": 36.666668, + "longitudeAirport": 51.5, + "nameAirport": "Now Shahr", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "1", + "airportId": 5543, + "codeIataAirport": "NSI", + "codeIataCity": "YAO", + "codeIcaoAirport": "FKYS", + "codeIso2Country": "CM", + "geonameId": "6301544", + "latitudeAirport": 3.702222, + "longitudeAirport": 11.550278, + "nameAirport": "Nsimalen International", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "7", + "airportId": 5544, + "codeIataAirport": "NSK", + "codeIataCity": "NSK", + "codeIcaoAirport": "UOOO", + "codeIso2Country": "RU", + "geonameId": "7730191", + "latitudeAirport": 69.32312, + "longitudeAirport": 87.339806, + "nameAirport": "Norilsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "-6", + "airportId": 5545, + "codeIataAirport": "NSL", + "codeIataCity": "NSL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5047587", + "latitudeAirport": 43.98774, + "longitudeAirport": -95.75585, + "nameAirport": "Slayton Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 5546, + "codeIataAirport": "NSM", + "codeIataCity": "NSM", + "codeIcaoAirport": "YNSM", + "codeIso2Country": "AU", + "geonameId": "7731345", + "latitudeAirport": -32.2, + "longitudeAirport": 121.75, + "nameAirport": "Norseman", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "12", + "airportId": 5547, + "codeIataAirport": "NSN", + "codeIataCity": "NSN", + "codeIcaoAirport": "NZNS", + "codeIso2Country": "NZ", + "geonameId": "2207510", + "latitudeAirport": -41.299976, + "longitudeAirport": 173.22498, + "nameAirport": "Nelson", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "10", + "airportId": 5548, + "codeIataAirport": "NSO", + "codeIataCity": "NSO", + "codeIcaoAirport": "YSCO", + "codeIso2Country": "AU", + "geonameId": "7731346", + "latitudeAirport": -32.03611, + "longitudeAirport": 150.8325, + "nameAirport": "Scone", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "8", + "airportId": 5549, + "codeIataAirport": "NSP", + "codeIataCity": "NSP", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "0", + "latitudeAirport": 14.5, + "longitudeAirport": 120.9, + "nameAirport": "NAF", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "7", + "airportId": 5550, + "codeIataAirport": "NST", + "codeIataCity": "NST", + "codeIcaoAirport": "VTSN", + "codeIso2Country": "TH", + "geonameId": "1151933", + "latitudeAirport": 8.466667, + "longitudeAirport": 99.95, + "nameAirport": "Nakhon Si Thammarat", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "10", + "airportId": 5551, + "codeIataAirport": "NSV", + "codeIataCity": "NSV", + "codeIcaoAirport": "YNSH", + "codeIso2Country": "AU", + "geonameId": "7731347", + "latitudeAirport": -26.416668, + "longitudeAirport": 153.03334, + "nameAirport": "Noosaville", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-4", + "airportId": 5552, + "codeIataAirport": "NSX", + "codeIataCity": "NSX", + "codeIcaoAirport": "", + "codeIso2Country": "VG", + "geonameId": "0", + "latitudeAirport": 18.5, + "longitudeAirport": -64.36667, + "nameAirport": "Hovercraft/Launch Pt", + "nameCountry": "British Virgin Islands", + "phone": "", + "timezone": "America/Tortola" + }, + { + "GMT": "1", + "airportId": 5553, + "codeIataAirport": "NSY", + "codeIataCity": "NSY", + "codeIcaoAirport": "LICZ", + "codeIso2Country": "IT", + "geonameId": "6299564", + "latitudeAirport": 37.4, + "longitudeAirport": 14.933333, + "nameAirport": "NAS Sigonella", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "8", + "airportId": 5554, + "codeIataAirport": "NSZ", + "codeIataCity": "NSZ", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "1913164", + "latitudeAirport": 22.75027, + "longitudeAirport": 113.57085, + "nameAirport": "Nansha Ferry Port", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 5555, + "codeIataAirport": "NTB", + "codeIataCity": "NTB", + "codeIcaoAirport": "ENNO", + "codeIso2Country": "NO", + "geonameId": "6296757", + "latitudeAirport": 59.583332, + "longitudeAirport": 9.283333, + "nameAirport": "Notodden", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "2", + "airportId": 5556, + "codeIataAirport": "NTC", + "codeIataCity": "NTC", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "1103934", + "latitudeAirport": -13.366667, + "longitudeAirport": 33.85, + "nameAirport": "Santa Carolina", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-8", + "airportId": 5557, + "codeIataAirport": "NTD", + "codeIataCity": "NTD", + "codeIcaoAirport": "KNTD", + "codeIso2Country": "US", + "geonameId": "5384339", + "latitudeAirport": 34.15, + "longitudeAirport": -119.2, + "nameAirport": "Point Mugu NAS (Naval Base Ventura County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 5558, + "codeIataAirport": "NTE", + "codeIataCity": "NTE", + "codeIcaoAirport": "LFRS", + "codeIso2Country": "FR", + "geonameId": "6299461", + "latitudeAirport": 47.157623, + "longitudeAirport": -1.601402, + "nameAirport": "Nantes Atlantique", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "8", + "airportId": 5559, + "codeIataAirport": "NTG", + "codeIataCity": "NTG", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "7731348", + "latitudeAirport": 32.07292, + "longitudeAirport": 120.9756, + "nameAirport": "Nantong", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9", + "airportId": 5560, + "codeIataAirport": "NTI", + "codeIataCity": "NTI", + "codeIcaoAirport": "WASB", + "codeIso2Country": "ID", + "geonameId": "7731349", + "latitudeAirport": -2.333333, + "longitudeAirport": 133.25, + "nameAirport": "Bintuni", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-7", + "airportId": 5561, + "codeIataAirport": "NTJ", + "codeIataCity": "NTJ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5542758", + "latitudeAirport": 39.266666, + "longitudeAirport": -111.63333, + "nameAirport": "Manti-Ephraim", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "airportId": 5562, + "codeIataAirport": "NTL", + "codeIataCity": "NTL", + "codeIcaoAirport": "YWLM", + "codeIso2Country": "AU", + "geonameId": "7910156", + "latitudeAirport": -32.804592, + "longitudeAirport": 151.84006, + "nameAirport": "Williamtown", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-3", + "airportId": 5563, + "codeIataAirport": "NTM", + "codeIataCity": "NTM", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8260864", + "latitudeAirport": -9.183333, + "longitudeAirport": -48.5, + "nameAirport": "Miracema Do Norte", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Araguaina" + }, + { + "GMT": "10", + "airportId": 5564, + "codeIataAirport": "NTN", + "codeIataCity": "NTN", + "codeIcaoAirport": "YNTN", + "codeIso2Country": "AU", + "geonameId": "7730269", + "latitudeAirport": -17.685398, + "longitudeAirport": 141.07307, + "nameAirport": "Normanton", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-1", + "airportId": 5565, + "codeIataAirport": "NTO", + "codeIataCity": "NTO", + "codeIcaoAirport": "GVAN", + "codeIso2Country": "CV", + "geonameId": "7668291", + "latitudeAirport": 17.066668, + "longitudeAirport": -25.083332, + "nameAirport": "Santo Antao", + "nameCountry": "Cape Verde", + "phone": "", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "9", + "airportId": 5566, + "codeIataAirport": "NTQ", + "codeIataCity": "NTQ", + "codeIcaoAirport": "RJNW", + "codeIso2Country": "JP", + "geonameId": "7668415", + "latitudeAirport": 37.294678, + "longitudeAirport": 136.9568, + "nameAirport": "Noto Airport", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-6", + "airportId": 5567, + "codeIataAirport": "NTR", + "codeIataCity": "MTY", + "codeIcaoAirport": "MMAN", + "codeIso2Country": "MX", + "geonameId": "6299827", + "latitudeAirport": 25.666668, + "longitudeAirport": -100.316666, + "nameAirport": "Aeropuerto del Norte International Airport", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Monterrey" + }, + { + "GMT": "13", + "airportId": 5568, + "codeIataAirport": "NTT", + "codeIataCity": "NTT", + "codeIcaoAirport": "NFTP", + "codeIso2Country": "TO", + "geonameId": "7730694", + "latitudeAirport": -15.5, + "longitudeAirport": -174.0, + "nameAirport": "Kuini Lavenia", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Tongatapu" + }, + { + "GMT": "-5", + "airportId": 5569, + "codeIataAirport": "NTU", + "codeIataCity": "NTU", + "codeIcaoAirport": "KNTU", + "codeIso2Country": "US", + "geonameId": "6301675", + "latitudeAirport": 36.816666, + "longitudeAirport": -76.03333, + "nameAirport": "NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "7", + "airportId": 5570, + "codeIataAirport": "NTX", + "codeIataCity": "NTX", + "codeIcaoAirport": "WION", + "codeIso2Country": "ID", + "geonameId": "6301241", + "latitudeAirport": 3.95, + "longitudeAirport": 108.38333, + "nameAirport": "Natuna Ranai", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "2", + "airportId": 5571, + "codeIataAirport": "NTY", + "codeIataCity": "NTY", + "codeIcaoAirport": "FAPN", + "codeIso2Country": "ZA", + "geonameId": "7668230", + "latitudeAirport": -26.033333, + "longitudeAirport": 27.916668, + "nameAirport": "Pilanesberg", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "5.30", + "airportId": 5572, + "codeIataAirport": "NUA", + "codeIataCity": "NUA", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "8261059", + "latitudeAirport": 6.966667, + "longitudeAirport": 80.76667, + "nameAirport": "Gregory's Lake", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "9.30", + "airportId": 5573, + "codeIataAirport": "NUB", + "codeIataCity": "NUB", + "codeIcaoAirport": "YNUM", + "codeIso2Country": "AU", + "geonameId": "7731350", + "latitudeAirport": -14.271667, + "longitudeAirport": 135.71638, + "nameAirport": "Numbulwar", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "3", + "airportId": 5574, + "codeIataAirport": "NUD", + "codeIataCity": "NUD", + "codeIcaoAirport": "HSNH", + "codeIso2Country": "SD", + "geonameId": "7668302", + "latitudeAirport": 12.75, + "longitudeAirport": 28.416668, + "nameAirport": "En Nahud", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "1", + "airportId": 5575, + "codeIataAirport": "NUE", + "codeIataCity": "NUE", + "codeIcaoAirport": "EDDN", + "codeIso2Country": "DE", + "geonameId": "6296511", + "latitudeAirport": 49.494167, + "longitudeAirport": 11.077062, + "nameAirport": "Nürnberg", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "5.30", + "airportId": 5576, + "codeIataAirport": "NUF", + "codeIataCity": "NUF", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "1244596", + "latitudeAirport": 6.8916, + "longitudeAirport": 80.5955, + "nameAirport": "Castlereigh Reservoir", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "10", + "airportId": 5577, + "codeIataAirport": "NUG", + "codeIataCity": "NUG", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260878", + "latitudeAirport": -3.466667, + "longitudeAirport": 150.81667, + "nameAirport": "Nuguria", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 5578, + "codeIataAirport": "NUH", + "codeIataCity": "NUH", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 5.616667, + "longitudeAirport": -72.21667, + "nameAirport": "Nunchia", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-9", + "airportId": 5579, + "codeIataAirport": "NUI", + "codeIataCity": "NUI", + "codeIcaoAirport": "PAQT", + "codeIso2Country": "US", + "geonameId": "5870441", + "latitudeAirport": 70.209724, + "longitudeAirport": -151.00555, + "nameAirport": "Nuiqsut", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3.30", + "airportId": 5580, + "codeIataAirport": "NUJ", + "codeIataCity": "NUJ", + "codeIcaoAirport": "", + "codeIso2Country": "IR", + "geonameId": "0", + "latitudeAirport": 35.2, + "longitudeAirport": 48.666668, + "nameAirport": "Nojeh", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-10", + "airportId": 5581, + "codeIataAirport": "NUK", + "codeIataCity": "NUK", + "codeIcaoAirport": "NTGW", + "codeIso2Country": "PF", + "geonameId": "7730700", + "latitudeAirport": -19.183332, + "longitudeAirport": -138.7, + "nameAirport": "Nukutavake", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-9", + "airportId": 5582, + "codeIataAirport": "NUL", + "codeIataCity": "NUL", + "codeIcaoAirport": "PANU", + "codeIso2Country": "US", + "geonameId": "5870463", + "latitudeAirport": 64.727776, + "longitudeAirport": -158.07666, + "nameAirport": "Nulato", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 5583, + "codeIataAirport": "NUN", + "codeIataCity": "PNS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.4725, + "longitudeAirport": -87.18833, + "nameAirport": "Saufley NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 5584, + "codeIataAirport": "NUP", + "codeIataCity": "NUP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5870503", + "latitudeAirport": 60.894444, + "longitudeAirport": -162.46666, + "nameAirport": "Nunapitchuk", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "airportId": 5585, + "codeIataAirport": "NUQ", + "codeIataCity": "NUQ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 37.38333, + "longitudeAirport": -122.083336, + "nameAirport": "Moffett Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "airportId": 5586, + "codeIataAirport": "NUR", + "codeIataCity": "NUR", + "codeIcaoAirport": "YNUB", + "codeIso2Country": "AU", + "geonameId": "7731351", + "latitudeAirport": -31.433332, + "longitudeAirport": 130.91667, + "nameAirport": "Nullarbor", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "11", + "airportId": 5587, + "codeIataAirport": "NUS", + "codeIataCity": "NUS", + "codeIcaoAirport": "NVSP", + "codeIso2Country": "VU", + "geonameId": "7668375", + "latitudeAirport": -16.058332, + "longitudeAirport": 167.4, + "nameAirport": "Norsup", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "10", + "airportId": 5588, + "codeIataAirport": "NUT", + "codeIataCity": "NUT", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299205", + "latitudeAirport": -5.633333, + "longitudeAirport": 151.38333, + "nameAirport": "Nutuve", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 5589, + "codeIataAirport": "NUU", + "codeIataCity": "NUU", + "codeIcaoAirport": "HKNK", + "codeIso2Country": "KE", + "geonameId": "6297323", + "latitudeAirport": -0.3, + "longitudeAirport": 36.15, + "nameAirport": "Nakuru", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-8", + "airportId": 5590, + "codeIataAirport": "NUW", + "codeIataCity": "NUW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 48.351944, + "longitudeAirport": -122.65583, + "nameAirport": "Whidbey Island NAS (Ault Field)", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "5", + "airportId": 5591, + "codeIataAirport": "NUX", + "codeIataCity": "NUX", + "codeIcaoAirport": "USMU", + "codeIso2Country": "RU", + "geonameId": "7668535", + "latitudeAirport": 66.07335, + "longitudeAirport": 76.522835, + "nameAirport": "Novy Urengoy", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-5", + "airportId": 5592, + "codeIataAirport": "NVA", + "codeIataCity": "NVA", + "codeIcaoAirport": "SKNV", + "codeIso2Country": "CO", + "geonameId": "6300749", + "latitudeAirport": 2.946824, + "longitudeAirport": -75.295525, + "nameAirport": "La Marguita", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 5593, + "codeIataAirport": "NVD", + "codeIataCity": "NVD", + "codeIcaoAirport": "KNVD", + "codeIso2Country": "US", + "geonameId": "4400208", + "latitudeAirport": 37.85139, + "longitudeAirport": -94.30389, + "nameAirport": "Nevada", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 5594, + "codeIataAirport": "NVG", + "codeIataCity": "NVG", + "codeIcaoAirport": "MNNG", + "codeIso2Country": "NI", + "geonameId": "7730670", + "latitudeAirport": 11.666667, + "longitudeAirport": -84.45, + "nameAirport": "Nueva Guinea", + "nameCountry": "Nicaragua", + "phone": "", + "timezone": "America/Managua" + }, + { + "GMT": "5", + "airportId": 5595, + "codeIataAirport": "NVI", + "codeIataCity": "NVI", + "codeIcaoAirport": "UTSA", + "codeIso2Country": "UZ", + "geonameId": "7668546", + "latitudeAirport": 40.115, + "longitudeAirport": 65.159164, + "nameAirport": "Navoi International Airport", + "nameCountry": "Uzbekistan", + "phone": "", + "timezone": "Asia/Samarkand" + }, + { + "GMT": "1", + "airportId": 5596, + "codeIataAirport": "NVK", + "codeIataCity": "NVK", + "codeIcaoAirport": "ENNK", + "codeIso2Country": "NO", + "geonameId": "3144987", + "latitudeAirport": 68.425, + "longitudeAirport": 17.425, + "nameAirport": "Framnes", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-8", + "airportId": 5597, + "codeIataAirport": "NVN", + "codeIataCity": "NVN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5327158", + "latitudeAirport": 39.82018, + "longitudeAirport": -120.37882, + "nameAirport": "Nervino", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "airportId": 5598, + "codeIataAirport": "NVP", + "codeIataCity": "NVP", + "codeIcaoAirport": "SWNA", + "codeIso2Country": "BR", + "geonameId": "7731353", + "latitudeAirport": -5.133333, + "longitudeAirport": -60.36667, + "nameAirport": "Novo Aripuana", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "3", + "airportId": 5599, + "codeIataAirport": "NVR", + "codeIataCity": "NVR", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "0", + "latitudeAirport": 58.516666, + "longitudeAirport": 31.3, + "nameAirport": "Novgorod", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "airportId": 5600, + "codeIataAirport": "NVS", + "codeIataCity": "NVS", + "codeIcaoAirport": "LFQG", + "codeIso2Country": "FR", + "geonameId": "6299445", + "latitudeAirport": 47.0, + "longitudeAirport": 3.15, + "nameAirport": "Nevers", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-3", + "airportId": 5601, + "codeIataAirport": "NVT", + "codeIataCity": "NVT", + "codeIcaoAirport": "SBNF", + "codeIso2Country": "BR", + "geonameId": "7668439", + "latitudeAirport": -26.866667, + "longitudeAirport": -48.63333, + "nameAirport": "Navegantes", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "5.30", + "airportId": 5602, + "codeIataAirport": "NVY", + "codeIataCity": "NVY", + "codeIcaoAirport": "", + "codeIso2Country": "IN", + "geonameId": "7731354", + "latitudeAirport": 11.6, + "longitudeAirport": 79.433334, + "nameAirport": "Neyveli", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "3", + "airportId": 5603, + "codeIataAirport": "NWA", + "codeIataCity": "NWA", + "codeIcaoAirport": "FMCI", + "codeIso2Country": "KM", + "geonameId": "7668244", + "latitudeAirport": -12.283333, + "longitudeAirport": 43.766666, + "nameAirport": "Moheli", + "nameCountry": "Comoros", + "phone": "", + "timezone": "Indian/Comoro" + }, + { + "GMT": "-5", + "airportId": 5604, + "codeIataAirport": "NWH", + "codeIataCity": "NWH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5090821", + "latitudeAirport": 43.36667, + "longitudeAirport": -72.166664, + "nameAirport": "Parlin Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 5605, + "codeIataAirport": "NWI", + "codeIataCity": "NWI", + "codeIcaoAirport": "EGSH", + "codeIso2Country": "GB", + "geonameId": "6296644", + "latitudeAirport": 52.669533, + "longitudeAirport": 1.276782, + "nameAirport": "Norwich International Airport", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-2:30", + "airportId": 5606, + "codeIataAirport": "NWP", + "codeIataCity": "NWP", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "7732472", + "latitudeAirport": 47.3, + "longitudeAirport": -53.966667, + "nameAirport": "NS", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/St_Johns" + }, + { + "GMT": "-5", + "airportId": 5607, + "codeIataAirport": "NWS", + "codeIataCity": "NYC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.703056, + "longitudeAirport": -74.01056, + "nameAirport": "Pier 11/Wall St. SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 5608, + "codeIataAirport": "NWT", + "codeIataCity": "NWT", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298827", + "latitudeAirport": -9.983333, + "longitudeAirport": 149.73334, + "nameAirport": "Nowata", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "airportId": 5609, + "codeIataAirport": "NWU", + "codeIataCity": "BDA", + "codeIcaoAirport": "", + "codeIso2Country": "BM", + "geonameId": "0", + "latitudeAirport": 32.75, + "longitudeAirport": -65.0, + "nameAirport": "Bermuda NAS", + "nameCountry": "Bermuda", + "phone": "", + "timezone": "Atlantic/Bermuda" + }, + { + "GMT": "-5", + "airportId": 5610, + "codeIataAirport": "NXX", + "codeIataCity": "NXX", + "codeIcaoAirport": "KNXX", + "codeIso2Country": "US", + "geonameId": "6301677", + "latitudeAirport": 40.2, + "longitudeAirport": -75.13333, + "nameAirport": "Willow Grove NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "5", + "airportId": 5611, + "codeIataAirport": "NYA", + "codeIataCity": "NYA", + "codeIcaoAirport": "USHN", + "codeIso2Country": "RU", + "geonameId": "7668531", + "latitudeAirport": 62.101074, + "longitudeAirport": 65.60563, + "nameAirport": "Nyagan", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "3", + "airportId": 5612, + "codeIataAirport": "NYE", + "codeIataCity": "NYE", + "codeIcaoAirport": "HKNI", + "codeIso2Country": "KE", + "geonameId": "6297322", + "latitudeAirport": -0.416667, + "longitudeAirport": 36.95, + "nameAirport": "Nyeri", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-5", + "airportId": 5613, + "codeIataAirport": "NYG", + "codeIataCity": "NYG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.516666, + "longitudeAirport": -77.28333, + "nameAirport": "Quantico NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 5614, + "codeIataAirport": "NYI", + "codeIataCity": "NYI", + "codeIcaoAirport": "DGSN", + "codeIso2Country": "GH", + "geonameId": "6296428", + "latitudeAirport": 7.333333, + "longitudeAirport": -2.333333, + "nameAirport": "Sunyani", + "nameCountry": "Ghana", + "phone": "", + "timezone": "Africa/Accra" + }, + { + "GMT": "3", + "airportId": 5615, + "codeIataAirport": "NYK", + "codeIataCity": "NYK", + "codeIcaoAirport": "HKNY", + "codeIso2Country": "KE", + "geonameId": "6297325", + "latitudeAirport": 0.016667, + "longitudeAirport": 37.066666, + "nameAirport": "Nanyuki", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "5", + "airportId": 5616, + "codeIataAirport": "NYM", + "codeIataCity": "NYM", + "codeIcaoAirport": "USMM", + "codeIso2Country": "RU", + "geonameId": "7668534", + "latitudeAirport": 65.48333, + "longitudeAirport": 72.71667, + "nameAirport": "Nadym", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "10", + "airportId": 5617, + "codeIataAirport": "NYN", + "codeIataCity": "NYN", + "codeIcaoAirport": "YNYN", + "codeIso2Country": "AU", + "geonameId": "7668752", + "latitudeAirport": -31.566668, + "longitudeAirport": 147.18333, + "nameAirport": "Nyngan", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "airportId": 5618, + "codeIataAirport": "NYO", + "codeIataCity": "STO", + "codeIcaoAirport": "ESKN", + "codeIso2Country": "SE", + "geonameId": "6296795", + "latitudeAirport": 58.78425, + "longitudeAirport": 16.922867, + "nameAirport": "Skavsta", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "6.30", + "airportId": 5619, + "codeIataAirport": "NYT", + "codeIataCity": "NYT", + "codeIcaoAirport": "VYNT", + "codeIso2Country": "MM", + "geonameId": "8260875", + "latitudeAirport": 19.6225, + "longitudeAirport": 96.201385, + "nameAirport": "Nay Pyi Taw", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "6.30", + "airportId": 5620, + "codeIataAirport": "NYU", + "codeIataCity": "NYU", + "codeIcaoAirport": "VBNU", + "codeIso2Country": "MM", + "geonameId": "7668653", + "latitudeAirport": 21.175343, + "longitudeAirport": 94.92832, + "nameAirport": "Nyaung-u", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "1", + "airportId": 5621, + "codeIataAirport": "NZA", + "codeIataCity": "NZA", + "codeIcaoAirport": "FNZG", + "codeIso2Country": "AO", + "geonameId": "6354953", + "latitudeAirport": -8.383333, + "longitudeAirport": -21.433332, + "nameAirport": "Nzagi", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "0", + "airportId": 5622, + "codeIataAirport": "NZE", + "codeIataCity": "NZE", + "codeIcaoAirport": "GUNZ", + "codeIso2Country": "GN", + "geonameId": "0", + "latitudeAirport": 7.808333, + "longitudeAirport": -8.702778, + "nameAirport": "Nzerekore", + "nameCountry": "Guinea", + "phone": "", + "timezone": "Africa/Conakry" + }, + { + "GMT": "8", + "airportId": 5623, + "codeIataAirport": "NZH", + "codeIataCity": "NZH", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "7910171", + "latitudeAirport": 49.57059, + "longitudeAirport": 117.33163, + "nameAirport": "Manzhouli", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 5624, + "codeIataAirport": "NZW", + "codeIataCity": "NZW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4951568", + "latitudeAirport": 42.166668, + "longitudeAirport": -70.933334, + "nameAirport": "South Weymouth", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "airportId": 5625, + "codeIataAirport": "NZY", + "codeIataCity": "SAN", + "codeIcaoAirport": "KNZY", + "codeIso2Country": "US", + "geonameId": "6301679", + "latitudeAirport": 32.7, + "longitudeAirport": -117.2, + "nameAirport": "North Island NAS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "4.30", + "airportId": 5626, + "codeIataAirport": "OAA", + "codeIataCity": "OAA", + "codeIcaoAirport": "", + "codeIso2Country": "AF", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Shank Air Base", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "10", + "airportId": 5627, + "codeIataAirport": "OAG", + "codeIataCity": "OAG", + "codeIcaoAirport": "YORG", + "codeIso2Country": "AU", + "geonameId": "7668754", + "latitudeAirport": -33.3816, + "longitudeAirport": 149.12447, + "nameAirport": "Springhill", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "4.30", + "airportId": 5628, + "codeIataAirport": "OAH", + "codeIataCity": "OAH", + "codeIcaoAirport": "", + "codeIso2Country": "AF", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Shindand Air Base", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "4.30", + "airportId": 5629, + "codeIataAirport": "OAI", + "codeIataCity": "OAI", + "codeIcaoAirport": "OAIX", + "codeIso2Country": "AF", + "geonameId": "0", + "latitudeAirport": 34.959614, + "longitudeAirport": 69.27051, + "nameAirport": "Bagram", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "-5", + "airportId": 5630, + "codeIataAirport": "OAJ", + "codeIataCity": "OAJ", + "codeIcaoAirport": "KOAJ", + "codeIso2Country": "US", + "geonameId": "4452320", + "latitudeAirport": 34.83044, + "longitudeAirport": -77.605835, + "nameAirport": "Albert J Ellis", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "airportId": 5631, + "codeIataAirport": "OAK", + "codeIataCity": "OAK", + "codeIcaoAirport": "KOAK", + "codeIso2Country": "US", + "geonameId": "5378538", + "latitudeAirport": 37.71188, + "longitudeAirport": -122.21201, + "nameAirport": "Metropolitan Oak International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "airportId": 5632, + "codeIataAirport": "OAL", + "codeIataCity": "OAL", + "codeIcaoAirport": "SSKW", + "codeIso2Country": "BR", + "geonameId": "7909880", + "latitudeAirport": -11.433889, + "longitudeAirport": -61.4825, + "nameAirport": "Cacoal", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Porto_Velho" + }, + { + "GMT": "12", + "airportId": 5633, + "codeIataAirport": "OAM", + "codeIataCity": "OAM", + "codeIcaoAirport": "NZOU", + "codeIso2Country": "NZ", + "geonameId": "6215073", + "latitudeAirport": -44.97028, + "longitudeAirport": 171.0819, + "nameAirport": "Oamaru", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-6", + "airportId": 5634, + "codeIataAirport": "OAN", + "codeIataCity": "OAN", + "codeIcaoAirport": "", + "codeIso2Country": "HN", + "geonameId": "8298922", + "latitudeAirport": 15.504444, + "longitudeAirport": -86.57472, + "nameAirport": "Olanchito", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-8", + "airportId": 5635, + "codeIataAirport": "OAR", + "codeIataCity": "MRY", + "codeIcaoAirport": "KOAR", + "codeIso2Country": "US", + "geonameId": "5370516", + "latitudeAirport": 36.61667, + "longitudeAirport": -121.916664, + "nameAirport": "Marina Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "4.30", + "airportId": 5636, + "codeIataAirport": "OAS", + "codeIataCity": "OAS", + "codeIcaoAirport": "", + "codeIso2Country": "AF", + "geonameId": "8298993", + "latitudeAirport": 33.1258, + "longitudeAirport": 68.8386, + "nameAirport": "Sharana Air Base", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "-6", + "airportId": 5637, + "codeIataAirport": "OAX", + "codeIataCity": "OAX", + "codeIcaoAirport": "MMOX", + "codeIso2Country": "MX", + "geonameId": "6299862", + "latitudeAirport": 17.000883, + "longitudeAirport": -96.721634, + "nameAirport": "Xoxocotlan", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "4.30", + "airportId": 5638, + "codeIataAirport": "OAZ", + "codeIataCity": "OAZ", + "codeIcaoAirport": "OAZJ", + "codeIso2Country": "AF", + "geonameId": "0", + "latitudeAirport": 31.1, + "longitudeAirport": 61.983334, + "nameAirport": "Camp Bastion", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "10", + "airportId": 5639, + "codeIataAirport": "OBA", + "codeIataCity": "OBA", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2154542", + "latitudeAirport": -21.0, + "longitudeAirport": 139.0, + "nameAirport": "Oban", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "airportId": 5640, + "codeIataAirport": "OBC", + "codeIataCity": "OBC", + "codeIcaoAirport": "HDOB", + "codeIso2Country": "DJ", + "geonameId": "7730608", + "latitudeAirport": 11.983333, + "longitudeAirport": 43.266666, + "nameAirport": "Obock", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Djibouti" + }, + { + "GMT": "9", + "airportId": 5641, + "codeIataAirport": "OBD", + "codeIataCity": "OBD", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731355", + "latitudeAirport": -3.9, + "longitudeAirport": 136.2, + "nameAirport": "Obano", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-5", + "airportId": 5642, + "codeIataAirport": "OBE", + "codeIataCity": "OBE", + "codeIcaoAirport": "KOBE", + "codeIso2Country": "US", + "geonameId": "4166839", + "latitudeAirport": 27.25, + "longitudeAirport": -80.833336, + "nameAirport": "County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 5643, + "codeIataAirport": "OBF", + "codeIataCity": "OBF", + "codeIcaoAirport": "EDMO", + "codeIso2Country": "DE", + "geonameId": "6296521", + "latitudeAirport": 48.083332, + "longitudeAirport": 11.283333, + "nameAirport": "Oberpfaffenhofen", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-3", + "airportId": 5644, + "codeIataAirport": "OBI", + "codeIataCity": "OBI", + "codeIcaoAirport": "SBTS", + "codeIso2Country": "BR", + "geonameId": "7730162", + "latitudeAirport": -1.916667, + "longitudeAirport": -55.516666, + "nameAirport": "Obidos", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Santarem" + }, + { + "GMT": "1", + "airportId": 5645, + "codeIataAirport": "OBL", + "codeIataCity": "OBL", + "codeIcaoAirport": "EBZR", + "codeIso2Country": "BE", + "geonameId": "7668192", + "latitudeAirport": 51.266666, + "longitudeAirport": 4.75, + "nameAirport": "Zoersel", + "nameCountry": "Belgium", + "phone": "", + "timezone": "Europe/Brussels" + }, + { + "GMT": "10", + "airportId": 5646, + "codeIataAirport": "OBM", + "codeIataCity": "OBM", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260866", + "latitudeAirport": -7.75, + "longitudeAirport": 147.6, + "nameAirport": "Morobe", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 5647, + "codeIataAirport": "OBN", + "codeIataCity": "OBN", + "codeIcaoAirport": "EGEO", + "codeIso2Country": "GB", + "geonameId": "7668199", + "latitudeAirport": 56.465275, + "longitudeAirport": -5.396494, + "nameAirport": "Oban Airport", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "9", + "airportId": 5648, + "codeIataAirport": "OBO", + "codeIataCity": "OBO", + "codeIcaoAirport": "RJCB", + "codeIso2Country": "JP", + "geonameId": "6300321", + "latitudeAirport": 42.732002, + "longitudeAirport": 143.21243, + "nameAirport": "Obihiro", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "airportId": 5649, + "codeIataAirport": "OBS", + "codeIataCity": "OBS", + "codeIcaoAirport": "LFHO", + "codeIso2Country": "FR", + "geonameId": "6694606", + "latitudeAirport": 44.666668, + "longitudeAirport": 4.7, + "nameAirport": "Vals-Lanas", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 5650, + "codeIataAirport": "OBT", + "codeIataCity": "OBT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.4, + "longitudeAirport": -79.416664, + "nameAirport": "Oakland/Coliseum Stat", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 5651, + "codeIataAirport": "OBU", + "codeIataCity": "OBU", + "codeIcaoAirport": "PAOB", + "codeIso2Country": "US", + "geonameId": "5866557", + "latitudeAirport": 66.91055, + "longitudeAirport": -156.88333, + "nameAirport": "Kobuk/Wien", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 5652, + "codeIataAirport": "OBX", + "codeIataCity": "OBX", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731356", + "latitudeAirport": -7.583333, + "longitudeAirport": 141.31667, + "nameAirport": "Obo", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-1", + "airportId": 5653, + "codeIataAirport": "OBY", + "codeIataCity": "OBY", + "codeIcaoAirport": "BGSC", + "codeIso2Country": "GL", + "geonameId": "6301404", + "latitudeAirport": 70.583336, + "longitudeAirport": -21.666668, + "nameAirport": "Ittoqqortoormiit", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Scoresbysund" + }, + { + "GMT": "1", + "airportId": 5654, + "codeIataAirport": "OBZ", + "codeIataCity": "HAM", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 53.553813, + "longitudeAirport": 9.991586, + "nameAirport": "Hamburg Bus Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "airportId": 5655, + "codeIataAirport": "OCA", + "codeIataCity": "OCA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 25.325277, + "longitudeAirport": -80.27472, + "nameAirport": "Ocean Reef", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 5656, + "codeIataAirport": "OCC", + "codeIataCity": "OCC", + "codeIcaoAirport": "SECO", + "codeIso2Country": "EC", + "geonameId": "7668448", + "latitudeAirport": -0.462171, + "longitudeAirport": -76.98596, + "nameAirport": "Coca", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-5", + "airportId": 5657, + "codeIataAirport": "OCE", + "codeIataCity": "OCE", + "codeIcaoAirport": "KOXB", + "codeIso2Country": "US", + "geonameId": "4364313", + "latitudeAirport": 38.316666, + "longitudeAirport": -75.11667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 5658, + "codeIataAirport": "OCF", + "codeIataCity": "OCF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 29.175556, + "longitudeAirport": -82.226944, + "nameAirport": "Taylor Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 5659, + "codeIataAirport": "OCH", + "codeIataCity": "OCH", + "codeIcaoAirport": "KOCH", + "codeIso2Country": "US", + "geonameId": "4713735", + "latitudeAirport": 31.583332, + "longitudeAirport": -94.7, + "nameAirport": "A L Mangham Jr. Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 5660, + "codeIataAirport": "OCI", + "codeIataCity": "OCI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299109", + "latitudeAirport": 60.25, + "longitudeAirport": -147.86667, + "nameAirport": "Oceanic", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 5661, + "codeIataAirport": "OCJ", + "codeIataCity": "OCJ", + "codeIcaoAirport": "", + "codeIso2Country": "JM", + "geonameId": "3489239", + "latitudeAirport": 18.400557, + "longitudeAirport": -76.96972, + "nameAirport": "Boscobel", + "nameCountry": "", + "phone": "", + "timezone": "America/Jamaica" + }, + { + "GMT": "-8", + "airportId": 5662, + "codeIataAirport": "OCN", + "codeIataCity": "OCN", + "codeIcaoAirport": "KOKB", + "codeIso2Country": "US", + "geonameId": "5378781", + "latitudeAirport": 33.218613, + "longitudeAirport": -117.35333, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 5663, + "codeIataAirport": "OCV", + "codeIataCity": "OCV", + "codeIcaoAirport": "SKOC", + "codeIso2Country": "CO", + "geonameId": "7668464", + "latitudeAirport": 8.25, + "longitudeAirport": -73.333336, + "nameAirport": "Aguasclaras", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 5664, + "codeIataAirport": "OCW", + "codeIataCity": "OCW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 35.55, + "longitudeAirport": -77.05, + "nameAirport": "Warren Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 5665, + "codeIataAirport": "ODA", + "codeIataCity": "ODA", + "codeIcaoAirport": "FEFW", + "codeIso2Country": "CF", + "geonameId": "7668233", + "latitudeAirport": 8.003889, + "longitudeAirport": 22.401667, + "nameAirport": "Ouadda", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "1", + "airportId": 5666, + "codeIataAirport": "ODB", + "codeIataCity": "ODB", + "codeIcaoAirport": "LEBA", + "codeIso2Country": "ES", + "geonameId": "6299327", + "latitudeAirport": 37.84111, + "longitudeAirport": -4.847222, + "nameAirport": "Cordoba", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-8", + "airportId": 5667, + "codeIataAirport": "ODC", + "codeIataCity": "ODC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5378502", + "latitudeAirport": 37.75691, + "longitudeAirport": -120.79951, + "nameAirport": "Oakdale", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "airportId": 5668, + "codeIataAirport": "ODD", + "codeIataCity": "ODD", + "codeIcaoAirport": "YOOD", + "codeIso2Country": "AU", + "geonameId": "7731357", + "latitudeAirport": -27.550278, + "longitudeAirport": 135.45, + "nameAirport": "Oodnadatta", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "1", + "airportId": 5669, + "codeIataAirport": "ODE", + "codeIataCity": "ODE", + "codeIcaoAirport": "EKOD", + "codeIso2Country": "DK", + "geonameId": "6296708", + "latitudeAirport": 55.47639, + "longitudeAirport": 10.328611, + "nameAirport": "Beldringe", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "0", + "airportId": 5670, + "codeIataAirport": "ODH", + "codeIataCity": "ODH", + "codeIcaoAirport": "EGVO", + "codeIso2Country": "GB", + "geonameId": "6296661", + "latitudeAirport": 51.25, + "longitudeAirport": -0.95, + "nameAirport": "RAF Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 5671, + "codeIataAirport": "ODJ", + "codeIataCity": "ODJ", + "codeIcaoAirport": "FEGO", + "codeIso2Country": "CF", + "geonameId": "7668238", + "latitudeAirport": 8.916667, + "longitudeAirport": 22.883333, + "nameAirport": "Ouanda Djalle", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "9.30", + "airportId": 5672, + "codeIataAirport": "ODL", + "codeIataCity": "ODL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298945", + "latitudeAirport": -26.716667, + "longitudeAirport": 140.63333, + "nameAirport": "Cordillo Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "8", + "airportId": 5673, + "codeIataAirport": "ODN", + "codeIataCity": "ODN", + "codeIcaoAirport": "WBGI", + "codeIso2Country": "MY", + "geonameId": "7731358", + "latitudeAirport": 4.033333, + "longitudeAirport": 115.066666, + "nameAirport": "Long Seridan", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "8", + "airportId": 5674, + "codeIataAirport": "ODO", + "codeIataCity": "ODO", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "8260785", + "latitudeAirport": 57.86639, + "longitudeAirport": 114.2425, + "nameAirport": "Bodaybo", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Irkutsk" + }, + { + "GMT": "8", + "airportId": 5675, + "codeIataAirport": "ODR", + "codeIataCity": "ODR", + "codeIcaoAirport": "YORV", + "codeIso2Country": "AU", + "geonameId": "7731359", + "latitudeAirport": -17.5, + "longitudeAirport": 128.8, + "nameAirport": "Ord River", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "2", + "airportId": 5676, + "codeIataAirport": "ODS", + "codeIataCity": "ODS", + "codeIcaoAirport": "UKOO", + "codeIso2Country": "UA", + "geonameId": "6300968", + "latitudeAirport": 46.44101, + "longitudeAirport": 30.676718, + "nameAirport": "Odessa International", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-8", + "airportId": 5677, + "codeIataAirport": "ODW", + "codeIataCity": "ODW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 48.25139, + "longitudeAirport": -122.68611, + "nameAirport": "Oak Harbor", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "7", + "airportId": 5678, + "codeIataAirport": "ODY", + "codeIataCity": "ODY", + "codeIcaoAirport": "VLOS", + "codeIso2Country": "LA", + "geonameId": "7731360", + "latitudeAirport": 20.583332, + "longitudeAirport": 104.166664, + "nameAirport": "Oudomxai", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-5", + "airportId": 5679, + "codeIataAirport": "OEA", + "codeIataCity": "OEA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.683334, + "longitudeAirport": -87.53333, + "nameAirport": "Oneal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Vincennes" + }, + { + "GMT": "9", + "airportId": 5680, + "codeIataAirport": "OEC", + "codeIataCity": "OEC", + "codeIcaoAirport": "WPOC", + "codeIso2Country": "TL", + "geonameId": "6301261", + "latitudeAirport": -9.205, + "longitudeAirport": 124.34167, + "nameAirport": "Ocussi", + "nameCountry": "East Timor", + "phone": "", + "timezone": "Asia/Dili" + }, + { + "GMT": "3", + "airportId": 5681, + "codeIataAirport": "OEL", + "codeIataCity": "OEL", + "codeIcaoAirport": "UUOR", + "codeIso2Country": "RU", + "geonameId": "7668553", + "latitudeAirport": 52.983334, + "longitudeAirport": 36.1, + "nameAirport": "Orel", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-3", + "airportId": 5682, + "codeIataAirport": "OEM", + "codeIataCity": "OEM", + "codeIcaoAirport": "", + "codeIso2Country": "SR", + "geonameId": "0", + "latitudeAirport": 3.35, + "longitudeAirport": -55.45, + "nameAirport": "Vincent Fayks", + "nameCountry": "Suriname", + "phone": "", + "timezone": "America/Paramaribo" + }, + { + "GMT": "-6", + "airportId": 5683, + "codeIataAirport": "OEO", + "codeIataCity": "OEO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 45.3, + "longitudeAirport": -92.7, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 5684, + "codeIataAirport": "OER", + "codeIataCity": "OER", + "codeIcaoAirport": "ESNO", + "codeIso2Country": "SE", + "geonameId": "6296805", + "latitudeAirport": 63.412582, + "longitudeAirport": 18.992073, + "nameAirport": "Ornskoldsvik", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-3", + "airportId": 5685, + "codeIataAirport": "OES", + "codeIataCity": "OES", + "codeIcaoAirport": "SAVN", + "codeIso2Country": "AR", + "geonameId": "6300565", + "latitudeAirport": -40.733334, + "longitudeAirport": -64.95, + "nameAirport": "San Antonio Oeste", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "0", + "airportId": 5686, + "codeIataAirport": "OFI", + "codeIataCity": "OFI", + "codeIcaoAirport": "DIOF", + "codeIso2Country": "CI", + "geonameId": "7668186", + "latitudeAirport": 9.6, + "longitudeAirport": -4.033333, + "nameAirport": "Ouango Fitini", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "0", + "airportId": 5687, + "codeIataAirport": "OFJ", + "codeIataCity": "OFJ", + "codeIcaoAirport": "BIOF", + "codeIso2Country": "IS", + "geonameId": "7730435", + "latitudeAirport": 65.583336, + "longitudeAirport": -19.833332, + "nameAirport": "Olafsfjordur", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-6", + "airportId": 5688, + "codeIataAirport": "OFK", + "codeIataCity": "OFK", + "codeIcaoAirport": "KOFK", + "codeIso2Country": "US", + "geonameId": "5073965", + "latitudeAirport": 41.984165, + "longitudeAirport": -97.434166, + "nameAirport": "Stefan Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-11", + "airportId": 5689, + "codeIataAirport": "OFU", + "codeIataCity": "OFU", + "codeIcaoAirport": "", + "codeIso2Country": "AS", + "geonameId": "5881562", + "latitudeAirport": -14.166667, + "longitudeAirport": -169.7, + "nameAirport": "Airstrip", + "nameCountry": "American Samoa", + "phone": "", + "timezone": "Pacific/Pago_Pago" + }, + { + "GMT": "-7", + "airportId": 5690, + "codeIataAirport": "OGA", + "codeIataCity": "OGA", + "codeIcaoAirport": "KOGA", + "codeIso2Country": "US", + "geonameId": "5699436", + "latitudeAirport": 41.13333, + "longitudeAirport": -101.71667, + "nameAirport": "Searle Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 5691, + "codeIataAirport": "OGB", + "codeIataCity": "OGB", + "codeIcaoAirport": "KOGB", + "codeIso2Country": "US", + "geonameId": "4590194", + "latitudeAirport": 33.5, + "longitudeAirport": -80.86667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 5692, + "codeIataAirport": "OGD", + "codeIataCity": "OGD", + "codeIcaoAirport": "KOGD", + "codeIso2Country": "US", + "geonameId": "5779226", + "latitudeAirport": 41.19639, + "longitudeAirport": -112.01083, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "airportId": 5693, + "codeIataAirport": "OGE", + "codeIataCity": "OGE", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298855", + "latitudeAirport": -6.466667, + "longitudeAirport": 147.46666, + "nameAirport": "Ogeranang", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-10", + "airportId": 5694, + "codeIataAirport": "OGG", + "codeIataCity": "OGG", + "codeIcaoAirport": "PHOG", + "codeIso2Country": "US", + "geonameId": "5847412", + "latitudeAirport": 20.892883, + "longitudeAirport": -156.43863, + "nameAirport": "Kahului", + "nameCountry": "United States", + "phone": "808-872-3830", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "-4", + "airportId": 5695, + "codeIataAirport": "OGL", + "codeIataCity": "OGL", + "codeIcaoAirport": "", + "codeIso2Country": "GY", + "geonameId": "0", + "latitudeAirport": 6.8, + "longitudeAirport": -58.105556, + "nameAirport": "Ogle", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "-5", + "airportId": 5696, + "codeIataAirport": "OGM", + "codeIataCity": "OGM", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "0", + "latitudeAirport": 83.382225, + "longitudeAirport": -77.933266, + "nameAirport": "Ogobsucum", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "9", + "airportId": 5697, + "codeIataAirport": "OGN", + "codeIataCity": "OGN", + "codeIcaoAirport": "ROYN", + "codeIso2Country": "JP", + "geonameId": "6300470", + "latitudeAirport": 24.461111, + "longitudeAirport": 122.97639, + "nameAirport": "Yonaguni Jima", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "0", + "airportId": 5698, + "codeIataAirport": "OGO", + "codeIataCity": "OGO", + "codeIcaoAirport": "DIAU", + "codeIso2Country": "CI", + "geonameId": "7668182", + "latitudeAirport": 6.7, + "longitudeAirport": -3.45, + "nameAirport": "Abengourou", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "1", + "airportId": 5699, + "codeIataAirport": "OGR", + "codeIataCity": "OGR", + "codeIcaoAirport": "", + "codeIso2Country": "TD", + "geonameId": "2434910", + "latitudeAirport": 10.289444, + "longitudeAirport": 15.383333, + "nameAirport": "Bongor", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "-5", + "airportId": 5700, + "codeIataAirport": "OGS", + "codeIataCity": "OGS", + "codeIcaoAirport": "KOGS", + "codeIso2Country": "US", + "geonameId": "5129629", + "latitudeAirport": 44.681667, + "longitudeAirport": -75.465836, + "nameAirport": "Ogdensburg", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 5701, + "codeIataAirport": "OGV", + "codeIataCity": "OGV", + "codeIcaoAirport": "", + "codeIso2Country": "NA", + "geonameId": "8299159", + "latitudeAirport": -22.18, + "longitudeAirport": 18.53, + "nameAirport": "Ongava Game Reserve", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "1", + "airportId": 5702, + "codeIataAirport": "OGX", + "codeIataCity": "OGX", + "codeIcaoAirport": "DAUU", + "codeIso2Country": "DZ", + "geonameId": "6296396", + "latitudeAirport": 31.916668, + "longitudeAirport": 5.4, + "nameAirport": "Ain Beida", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "3", + "airportId": 5703, + "codeIataAirport": "OGZ", + "codeIataCity": "OGZ", + "codeIcaoAirport": "URMO", + "codeIso2Country": "RU", + "geonameId": "7668529", + "latitudeAirport": 43.2, + "longitudeAirport": 44.6, + "nameAirport": "Vladikavkaz", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "12", + "airportId": 5704, + "codeIataAirport": "OHA", + "codeIataCity": "OHA", + "codeIcaoAirport": "NZOH", + "codeIso2Country": "NZ", + "geonameId": "6224598", + "latitudeAirport": -40.208332, + "longitudeAirport": 175.38667, + "nameAirport": "Royal Air Force Base", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "3", + "airportId": 5705, + "codeIataAirport": "OHB", + "codeIataCity": "OHB", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1058532", + "latitudeAirport": -18.94948, + "longitudeAirport": 48.23007, + "nameAirport": "Ambohibary", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-9", + "airportId": 5706, + "codeIataAirport": "OHC", + "codeIataCity": "OHC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 63.32639, + "longitudeAirport": -168.96889, + "nameAirport": "AFS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 5707, + "codeIataAirport": "OHD", + "codeIataCity": "OHD", + "codeIcaoAirport": "LWOH", + "codeIso2Country": "MK", + "geonameId": "6299777", + "latitudeAirport": 41.185, + "longitudeAirport": 20.743055, + "nameAirport": "Ohrid", + "nameCountry": "Macedonia", + "phone": "", + "timezone": "Europe/Skopje" + }, + { + "GMT": "8", + "airportId": 5708, + "codeIataAirport": "OHE", + "codeIataCity": "OHE", + "codeIcaoAirport": "ZYMH", + "codeIso2Country": "CN", + "geonameId": "7910232", + "latitudeAirport": 52.92113, + "longitudeAirport": 122.42059, + "nameAirport": "Gulian", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "11", + "airportId": 5709, + "codeIataAirport": "OHH", + "codeIataCity": "OHH", + "codeIcaoAirport": "UHSH", + "codeIso2Country": "RU", + "geonameId": "7910385", + "latitudeAirport": 53.516666, + "longitudeAirport": 142.88333, + "nameAirport": "Novostroyka", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Sakhalin" + }, + { + "GMT": "2", + "airportId": 5710, + "codeIataAirport": "OHI", + "codeIataCity": "OHI", + "codeIcaoAirport": "", + "codeIso2Country": "NA", + "geonameId": "8299053", + "latitudeAirport": -17.783333, + "longitudeAirport": 15.8, + "nameAirport": "Oshakati", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "10", + "airportId": 5711, + "codeIataAirport": "OHO", + "codeIataCity": "OHO", + "codeIcaoAirport": "UHOO", + "codeIso2Country": "RU", + "geonameId": "7730186", + "latitudeAirport": 59.416668, + "longitudeAirport": 143.05, + "nameAirport": "Okhotsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Vladivostok" + }, + { + "GMT": "1", + "airportId": 5712, + "codeIataAirport": "OHR", + "codeIataCity": "OHR", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 54.685833, + "longitudeAirport": 8.529167, + "nameAirport": "Wyk Auf Foehr", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "5", + "airportId": 5713, + "codeIataAirport": "OHT", + "codeIataCity": "OHT", + "codeIcaoAirport": "OPKT", + "codeIso2Country": "PK", + "geonameId": "7668398", + "latitudeAirport": 33.583332, + "longitudeAirport": 71.433334, + "nameAirport": "Kohat", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-3", + "airportId": 5714, + "codeIataAirport": "OIA", + "codeIataCity": "OIA", + "codeIcaoAirport": "SDOW", + "codeIso2Country": "BR", + "geonameId": "7910025", + "latitudeAirport": -6.761303, + "longitudeAirport": -51.049, + "nameAirport": "Ourilandia", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Belem" + }, + { + "GMT": "-5", + "airportId": 5715, + "codeIataAirport": "OIC", + "codeIataCity": "OIC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.533333, + "longitudeAirport": -75.53333, + "nameAirport": "Eaton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "airportId": 5716, + "codeIataAirport": "OIM", + "codeIataCity": "OIM", + "codeIcaoAirport": "RJTO", + "codeIso2Country": "JP", + "geonameId": "6300410", + "latitudeAirport": 34.779167, + "longitudeAirport": 139.365, + "nameAirport": "Oshima", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "9", + "airportId": 5717, + "codeIataAirport": "OIR", + "codeIataCity": "OIR", + "codeIcaoAirport": "RJEO", + "codeIso2Country": "JP", + "geonameId": "6300341", + "latitudeAirport": 42.166668, + "longitudeAirport": 139.51666, + "nameAirport": "Okushiri", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "9", + "airportId": 5718, + "codeIataAirport": "OIT", + "codeIataCity": "OIT", + "codeIcaoAirport": "RJFO", + "codeIso2Country": "JP", + "geonameId": "6300351", + "latitudeAirport": 33.477238, + "longitudeAirport": 131.73236, + "nameAirport": "Oita", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-6", + "airportId": 5719, + "codeIataAirport": "OJC", + "codeIataCity": "MKC", + "codeIcaoAirport": "KOJC", + "codeIso2Country": "US", + "geonameId": "4273641", + "latitudeAirport": 38.85, + "longitudeAirport": -94.73333, + "nameAirport": "Johnson Executive", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "airportId": 5720, + "codeIataAirport": "OKA", + "codeIataCity": "OKA", + "codeIcaoAirport": "ROAH", + "codeIso2Country": "JP", + "geonameId": "6300458", + "latitudeAirport": 26.195833, + "longitudeAirport": 127.645836, + "nameAirport": "Naha", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "10", + "airportId": 5721, + "codeIataAirport": "OKB", + "codeIataCity": "OKB", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731361", + "latitudeAirport": -25.25, + "longitudeAirport": 153.16667, + "nameAirport": "Fraser Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "airportId": 5722, + "codeIataAirport": "OKC", + "codeIataCity": "OKC", + "codeIcaoAirport": "KOKC", + "codeIso2Country": "US", + "geonameId": "4555726", + "latitudeAirport": 35.39563, + "longitudeAirport": -97.59609, + "nameAirport": "Will Rogers World Airport", + "nameCountry": "United States", + "phone": "405-316-3271", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "airportId": 5723, + "codeIataAirport": "OKD", + "codeIataCity": "SPK", + "codeIcaoAirport": "RJCO", + "codeIso2Country": "JP", + "geonameId": "6300327", + "latitudeAirport": 43.110374, + "longitudeAirport": 141.382, + "nameAirport": "Okadama", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "9", + "airportId": 5724, + "codeIataAirport": "OKE", + "codeIataCity": "OKE", + "codeIcaoAirport": "RJKB", + "codeIso2Country": "JP", + "geonameId": "6300361", + "latitudeAirport": 27.431667, + "longitudeAirport": 128.70555, + "nameAirport": "Okino Erabu", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "2", + "airportId": 5725, + "codeIataAirport": "OKF", + "codeIataCity": "OKF", + "codeIcaoAirport": "", + "codeIso2Country": "NA", + "geonameId": "3354716", + "latitudeAirport": -19.166668, + "longitudeAirport": 16.0, + "nameAirport": "Okaukuejo", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "1", + "airportId": 5726, + "codeIataAirport": "OKG", + "codeIataCity": "OKG", + "codeIcaoAirport": "", + "codeIso2Country": "CG", + "geonameId": "7731362", + "latitudeAirport": -1.466667, + "longitudeAirport": 15.0, + "nameAirport": "Okoyo", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "0", + "airportId": 5727, + "codeIataAirport": "OKH", + "codeIataCity": "OKH", + "codeIcaoAirport": "EGXJ", + "codeIso2Country": "GB", + "geonameId": "6301526", + "latitudeAirport": 52.666668, + "longitudeAirport": -0.716667, + "nameAirport": "Cottesmor RAF", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "9", + "airportId": 5728, + "codeIataAirport": "OKI", + "codeIataCity": "OKI", + "codeIcaoAirport": "RJNO", + "codeIso2Country": "JP", + "geonameId": "6300368", + "latitudeAirport": 36.166668, + "longitudeAirport": 133.31667, + "nameAirport": "Oki Island", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "9", + "airportId": 5729, + "codeIataAirport": "OKJ", + "codeIataCity": "OKJ", + "codeIcaoAirport": "RJOB", + "codeIso2Country": "JP", + "geonameId": "6300372", + "latitudeAirport": 34.76022, + "longitudeAirport": 133.85277, + "nameAirport": "Okayama", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "airportId": 5730, + "codeIataAirport": "OKK", + "codeIataCity": "OKK", + "codeIcaoAirport": "KOKK", + "codeIso2Country": "US", + "geonameId": "4922393", + "latitudeAirport": 40.52972, + "longitudeAirport": -86.05806, + "nameAirport": "Kokomo", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "9", + "airportId": 5731, + "codeIataAirport": "OKL", + "codeIataCity": "OKL", + "codeIcaoAirport": "WAJO", + "codeIso2Country": "ID", + "geonameId": "7731363", + "latitudeAirport": -5.1, + "longitudeAirport": 140.66667, + "nameAirport": "Oksibil", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-6", + "airportId": 5732, + "codeIataAirport": "OKM", + "codeIataCity": "OKM", + "codeIcaoAirport": "KOKM", + "codeIso2Country": "US", + "geonameId": "4544397", + "latitudeAirport": 35.61667, + "longitudeAirport": -95.96667, + "nameAirport": "Okmulgee", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 5733, + "codeIataAirport": "OKN", + "codeIataCity": "OKN", + "codeIcaoAirport": "FOGQ", + "codeIso2Country": "GA", + "geonameId": "7730081", + "latitudeAirport": -1.0, + "longitudeAirport": 14.008333, + "nameAirport": "Okondja", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "9", + "airportId": 5734, + "codeIataAirport": "OKO", + "codeIataCity": "TYO", + "codeIcaoAirport": "RJTY", + "codeIso2Country": "JP", + "geonameId": "6301831", + "latitudeAirport": 35.75, + "longitudeAirport": 139.35, + "nameAirport": "Yokota AFB", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "10", + "airportId": 5735, + "codeIataAirport": "OKP", + "codeIataCity": "OKP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299029", + "latitudeAirport": -5.25, + "longitudeAirport": 142.08333, + "nameAirport": "Oksapmin", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "airportId": 5736, + "codeIataAirport": "OKQ", + "codeIataCity": "OKQ", + "codeIcaoAirport": "WAKO", + "codeIso2Country": "ID", + "geonameId": "7731364", + "latitudeAirport": -8.1, + "longitudeAirport": 139.7, + "nameAirport": "Okaba", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "10", + "airportId": 5737, + "codeIataAirport": "OKR", + "codeIataCity": "OKR", + "codeIcaoAirport": "YYKI", + "codeIso2Country": "AU", + "geonameId": "7731365", + "latitudeAirport": -9.751593, + "longitudeAirport": 143.40556, + "nameAirport": "Yorke Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "airportId": 5738, + "codeIataAirport": "OKS", + "codeIataCity": "OKS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.4, + "longitudeAirport": -102.35, + "nameAirport": "Oshkosh", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5", + "airportId": 5739, + "codeIataAirport": "OKT", + "codeIataCity": "OKT", + "codeIcaoAirport": "UWUK", + "codeIso2Country": "RU", + "geonameId": "7668567", + "latitudeAirport": 54.433334, + "longitudeAirport": 53.38333, + "nameAirport": "Oktiabrskij", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "2", + "airportId": 5740, + "codeIataAirport": "OKU", + "codeIataCity": "OKU", + "codeIcaoAirport": "FYMO", + "codeIso2Country": "NA", + "geonameId": "7730549", + "latitudeAirport": -18.808332, + "longitudeAirport": 17.05, + "nameAirport": "Mokuti Lodge", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "10", + "airportId": 5741, + "codeIataAirport": "OKV", + "codeIataCity": "OKV", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "0", + "latitudeAirport": -5.561111, + "longitudeAirport": 141.03667, + "nameAirport": "Okao", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 5742, + "codeIataAirport": "OKY", + "codeIataCity": "OKY", + "codeIcaoAirport": "YBOK", + "codeIso2Country": "AU", + "geonameId": "6301300", + "latitudeAirport": -27.406668, + "longitudeAirport": 151.735, + "nameAirport": "Oakey", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "airportId": 5743, + "codeIataAirport": "OLA", + "codeIataCity": "OLA", + "codeIcaoAirport": "ENOL", + "codeIso2Country": "NO", + "geonameId": "6296759", + "latitudeAirport": 63.7, + "longitudeAirport": 9.616667, + "nameAirport": "Orland", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 5744, + "codeIataAirport": "OLB", + "codeIataCity": "OLB", + "codeIcaoAirport": "LIEO", + "codeIso2Country": "IT", + "geonameId": "6299573", + "latitudeAirport": 40.903145, + "longitudeAirport": 9.514823, + "nameAirport": "Costa Smeralda", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-4", + "airportId": 5745, + "codeIataAirport": "OLC", + "codeIataCity": "OLC", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "0", + "latitudeAirport": -3.470869, + "longitudeAirport": -68.95853, + "nameAirport": "Sen. Eunice Micheles", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "-5", + "airportId": 5746, + "codeIataAirport": "OLD", + "codeIataCity": "OLD", + "codeIcaoAirport": "KOLD", + "codeIso2Country": "US", + "geonameId": "6298802", + "latitudeAirport": 44.933334, + "longitudeAirport": -68.65, + "nameAirport": "Old Town", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 5747, + "codeIataAirport": "OLE", + "codeIataCity": "OLE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.240833, + "longitudeAirport": -78.37666, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 5748, + "codeIataAirport": "OLF", + "codeIataCity": "OLF", + "codeIcaoAirport": "KOLF", + "codeIso2Country": "US", + "geonameId": "5687028", + "latitudeAirport": 48.094723, + "longitudeAirport": -105.56639, + "nameAirport": "L. M. Clayton Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "airportId": 5749, + "codeIataAirport": "OLH", + "codeIataCity": "OLH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5870747", + "latitudeAirport": 57.204166, + "longitudeAirport": -153.3, + "nameAirport": "Old Harbor SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 5750, + "codeIataAirport": "OLI", + "codeIataCity": "OLI", + "codeIcaoAirport": "", + "codeIso2Country": "IS", + "geonameId": "8298735", + "latitudeAirport": 65.0, + "longitudeAirport": -23.983334, + "nameAirport": "Rif", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "11", + "airportId": 5751, + "codeIataAirport": "OLJ", + "codeIataCity": "OLJ", + "codeIcaoAirport": "NVSZ", + "codeIso2Country": "VU", + "geonameId": "7730721", + "latitudeAirport": -14.884605, + "longitudeAirport": 166.56003, + "nameAirport": "Olpoi", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-4", + "airportId": 5752, + "codeIataAirport": "OLK", + "codeIataCity": "OLK", + "codeIcaoAirport": "", + "codeIso2Country": "PY", + "geonameId": "7731366", + "latitudeAirport": -21.996944, + "longitudeAirport": -57.883057, + "nameAirport": "Fuerte Olimpo", + "nameCountry": "Paraguay", + "phone": "", + "timezone": "America/Asuncion" + }, + { + "GMT": "1", + "airportId": 5753, + "codeIataAirport": "OLL", + "codeIataCity": "OLL", + "codeIcaoAirport": "", + "codeIso2Country": "CG", + "geonameId": "8051170", + "latitudeAirport": 32.004417, + "longitudeAirport": -92.229164, + "nameAirport": "Ollombo", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-8", + "airportId": 5754, + "codeIataAirport": "OLM", + "codeIataCity": "OLM", + "codeIcaoAirport": "KOLM", + "codeIso2Country": "US", + "geonameId": "5805690", + "latitudeAirport": 46.97361, + "longitudeAirport": -122.903336, + "nameAirport": "Olympia", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "airportId": 5755, + "codeIataAirport": "OLN", + "codeIataCity": "OLN", + "codeIcaoAirport": "", + "codeIso2Country": "AR", + "geonameId": "0", + "latitudeAirport": -45.57, + "longitudeAirport": -69.0, + "nameAirport": "Colonia Sarmiento", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "1", + "airportId": 5756, + "codeIataAirport": "OLO", + "codeIataCity": "OLO", + "codeIcaoAirport": "LKOL", + "codeIso2Country": "CZ", + "geonameId": "3069011", + "latitudeAirport": 49.63333, + "longitudeAirport": 17.2, + "nameAirport": "Olomouc", + "nameCountry": "Czech Republic", + "phone": "", + "timezone": "Europe/Prague" + }, + { + "GMT": "9.30", + "airportId": 5757, + "codeIataAirport": "OLP", + "codeIataCity": "OLP", + "codeIcaoAirport": "YOLD", + "codeIso2Country": "AU", + "geonameId": "7668753", + "latitudeAirport": -30.483898, + "longitudeAirport": 136.88411, + "nameAirport": "Olympic Dam", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "10", + "airportId": 5758, + "codeIataAirport": "OLQ", + "codeIataCity": "OLQ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2089137", + "latitudeAirport": -5.466667, + "longitudeAirport": 141.5, + "nameAirport": "Olsobip", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "4.30", + "airportId": 5759, + "codeIataAirport": "OLR", + "codeIataCity": "OLR", + "codeIcaoAirport": "", + "codeIso2Country": "AF", + "geonameId": "0", + "latitudeAirport": 34.023167, + "longitudeAirport": 36.130333, + "nameAirport": "Salerno Air Base", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "-7", + "airportId": 5760, + "codeIataAirport": "OLS", + "codeIataCity": "OLS", + "codeIcaoAirport": "KOLS", + "codeIso2Country": "US", + "geonameId": "5306615", + "latitudeAirport": 31.416668, + "longitudeAirport": -110.85, + "nameAirport": "Nogales International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "-6", + "airportId": 5761, + "codeIataAirport": "OLU", + "codeIataCity": "OLU", + "codeIcaoAirport": "KOLU", + "codeIso2Country": "US", + "geonameId": "5066019", + "latitudeAirport": 41.447224, + "longitudeAirport": -97.34167, + "nameAirport": "Columbus Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 5762, + "codeIataAirport": "OLV", + "codeIataCity": "OLV", + "codeIcaoAirport": "KOLV", + "codeIso2Country": "US", + "geonameId": "6298807", + "latitudeAirport": 34.966667, + "longitudeAirport": -89.833336, + "nameAirport": "Olive Branch Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 5763, + "codeIataAirport": "OLY", + "codeIataCity": "OLY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.716667, + "longitudeAirport": -88.083336, + "nameAirport": "Olney-Noble", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 5764, + "codeIataAirport": "OMA", + "codeIataCity": "OMA", + "codeIcaoAirport": "KOMA", + "codeIso2Country": "US", + "geonameId": "5074472", + "latitudeAirport": 41.29957, + "longitudeAirport": -95.89972, + "nameAirport": "Eppley Airfield", + "nameCountry": "United States", + "phone": "402-661-8017", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 5765, + "codeIataAirport": "OMB", + "codeIataCity": "OMB", + "codeIcaoAirport": "FOOH", + "codeIso2Country": "GA", + "geonameId": "7730082", + "latitudeAirport": -1.6, + "longitudeAirport": 9.266667, + "nameAirport": "Omboue", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "8", + "airportId": 5766, + "codeIataAirport": "OMC", + "codeIataCity": "OMC", + "codeIcaoAirport": "RPVO", + "codeIso2Country": "PH", + "geonameId": "7668425", + "latitudeAirport": 11.05, + "longitudeAirport": 124.566666, + "nameAirport": "Ormoc", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "2", + "airportId": 5767, + "codeIataAirport": "OMD", + "codeIataCity": "OMD", + "codeIcaoAirport": "FYOG", + "codeIso2Country": "NA", + "geonameId": "3354071", + "latitudeAirport": -28.583332, + "longitudeAirport": 16.45, + "nameAirport": "Oranjemund", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-9", + "airportId": 5768, + "codeIataAirport": "OME", + "codeIataCity": "OME", + "codeIcaoAirport": "PAOM", + "codeIso2Country": "US", + "geonameId": "5870137", + "latitudeAirport": 64.51139, + "longitudeAirport": -165.44167, + "nameAirport": "Nome", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "2", + "airportId": 5769, + "codeIataAirport": "OMF", + "codeIataCity": "OMF", + "codeIcaoAirport": "OJMF", + "codeIso2Country": "JO", + "geonameId": "248251", + "latitudeAirport": 32.35, + "longitudeAirport": 36.25, + "nameAirport": "King Hussein", + "nameCountry": "Jordan", + "phone": "", + "timezone": "Asia/Amman" + }, + { + "GMT": "2", + "airportId": 5770, + "codeIataAirport": "OMG", + "codeIataCity": "OMG", + "codeIcaoAirport": "FYOE", + "codeIso2Country": "NA", + "geonameId": "7730551", + "latitudeAirport": -18.0, + "longitudeAirport": 22.066668, + "nameAirport": "Omega", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "3.30", + "airportId": 5771, + "codeIataAirport": "OMH", + "codeIataCity": "OMH", + "codeIcaoAirport": "OITR", + "codeIso2Country": "IR", + "geonameId": "6300078", + "latitudeAirport": 37.662525, + "longitudeAirport": 45.05877, + "nameAirport": "Urmieh", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "3.30", + "airportId": 5772, + "codeIataAirport": "OMI", + "codeIataCity": "OMI", + "codeIcaoAirport": "", + "codeIso2Country": "IR", + "geonameId": "385041", + "latitudeAirport": 30.833332, + "longitudeAirport": 49.533333, + "nameAirport": "Omidieh", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "9", + "airportId": 5773, + "codeIataAirport": "OMJ", + "codeIataCity": "OMJ", + "codeIcaoAirport": "", + "codeIso2Country": "JP", + "geonameId": "0", + "latitudeAirport": 32.924442, + "longitudeAirport": 129.93611, + "nameAirport": "Omura", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-8", + "airportId": 5774, + "codeIataAirport": "OMK", + "codeIataCity": "OMK", + "codeIcaoAirport": "KOMK", + "codeIso2Country": "US", + "geonameId": "5805735", + "latitudeAirport": 48.416668, + "longitudeAirport": -119.51667, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "4", + "airportId": 5775, + "codeIataAirport": "OMM", + "codeIataCity": "OMM", + "codeIcaoAirport": "OONR", + "codeIso2Country": "OM", + "geonameId": "7730747", + "latitudeAirport": 18.133333, + "longitudeAirport": 55.266666, + "nameAirport": "Marmul", + "nameCountry": "Oman", + "phone": "", + "timezone": "Asia/Muscat" + }, + { + "GMT": "1", + "airportId": 5776, + "codeIataAirport": "OMO", + "codeIataCity": "OMO", + "codeIcaoAirport": "LQMO", + "codeIso2Country": "BA", + "geonameId": "6299695", + "latitudeAirport": 43.285557, + "longitudeAirport": 17.846666, + "nameAirport": "Mostar", + "nameCountry": "Bosnia and Herzegovina", + "phone": "", + "timezone": "Europe/Sarajevo" + }, + { + "GMT": "2", + "airportId": 5777, + "codeIataAirport": "OMR", + "codeIataCity": "OMR", + "codeIcaoAirport": "LROD", + "codeIso2Country": "RO", + "geonameId": "6299707", + "latitudeAirport": 47.0275, + "longitudeAirport": 21.903055, + "nameAirport": "Oradea", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "6", + "airportId": 5778, + "codeIataAirport": "OMS", + "codeIataCity": "OMS", + "codeIcaoAirport": "UNOO", + "codeIso2Country": "RU", + "geonameId": "6300987", + "latitudeAirport": 54.957455, + "longitudeAirport": 73.3167, + "nameAirport": "Omsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Omsk" + }, + { + "GMT": "7", + "airportId": 5779, + "codeIataAirport": "OMY", + "codeIataCity": "OMY", + "codeIcaoAirport": "", + "codeIso2Country": "KH", + "geonameId": "8298737", + "latitudeAirport": 13.816667, + "longitudeAirport": 104.96667, + "nameAirport": "Oddor Meanche", + "nameCountry": "Cambodia", + "phone": "", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "-6", + "airportId": 5780, + "codeIataAirport": "ONA", + "codeIataCity": "ONA", + "codeIcaoAirport": "KONA", + "codeIso2Country": "US", + "geonameId": "5053173", + "latitudeAirport": 44.076668, + "longitudeAirport": -91.70611, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 5781, + "codeIataAirport": "ONB", + "codeIataCity": "ONB", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2089029", + "latitudeAirport": -8.583333, + "longitudeAirport": 147.2, + "nameAirport": "Ononge", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "airportId": 5782, + "codeIataAirport": "OND", + "codeIataCity": "OND", + "codeIcaoAirport": "FAOA", + "codeIso2Country": "NA", + "geonameId": "6297133", + "latitudeAirport": -17.885496, + "longitudeAirport": 15.942233, + "nameAirport": "Ondangwa", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "11", + "airportId": 5783, + "codeIataAirport": "ONE", + "codeIataCity": "ONE", + "codeIcaoAirport": "", + "codeIso2Country": "SB", + "geonameId": "2104665", + "latitudeAirport": -9.166667, + "longitudeAirport": 161.06667, + "nameAirport": "Onepusu", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "10", + "airportId": 5784, + "codeIataAirport": "ONG", + "codeIataCity": "ONG", + "codeIcaoAirport": "YMTI", + "codeIso2Country": "AU", + "geonameId": "7731367", + "latitudeAirport": -16.662558, + "longitudeAirport": 139.17004, + "nameAirport": "Mornington", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 5785, + "codeIataAirport": "ONH", + "codeIataCity": "ONH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5129857", + "latitudeAirport": 42.482777, + "longitudeAirport": -75.00056, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "airportId": 5786, + "codeIataAirport": "ONI", + "codeIataCity": "ONI", + "codeIcaoAirport": "WABD", + "codeIso2Country": "ID", + "geonameId": "7731368", + "latitudeAirport": -3.333333, + "longitudeAirport": 135.5, + "nameAirport": "Moanamani", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "9", + "airportId": 5787, + "codeIataAirport": "ONJ", + "codeIataCity": "ONJ", + "codeIcaoAirport": "RJSR", + "codeIso2Country": "JP", + "geonameId": "6300398", + "latitudeAirport": 40.196415, + "longitudeAirport": 140.37383, + "nameAirport": "Odate Noshiro", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-6", + "airportId": 5788, + "codeIataAirport": "ONL", + "codeIataCity": "ONL", + "codeIcaoAirport": "KONL", + "codeIso2Country": "US", + "geonameId": "5080203", + "latitudeAirport": 42.45, + "longitudeAirport": -98.65, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 5789, + "codeIataAirport": "ONM", + "codeIataCity": "ONM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.066666, + "longitudeAirport": -106.9, + "nameAirport": "Socorro", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "airportId": 5790, + "codeIataAirport": "ONN", + "codeIataCity": "ONN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8298960", + "latitudeAirport": 58.233334, + "longitudeAirport": -152.83333, + "nameAirport": "Onion Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "airportId": 5791, + "codeIataAirport": "ONO", + "codeIataCity": "ONO", + "codeIcaoAirport": "KONO", + "codeIso2Country": "US", + "geonameId": "5744172", + "latitudeAirport": 44.022778, + "longitudeAirport": -117.013885, + "nameAirport": "Ontario Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Boise" + }, + { + "GMT": "-8", + "airportId": 5792, + "codeIataAirport": "ONP", + "codeIataCity": "ONP", + "codeIcaoAirport": "KONP", + "codeIso2Country": "US", + "geonameId": "5742751", + "latitudeAirport": 44.63333, + "longitudeAirport": -124.05, + "nameAirport": "Newport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "airportId": 5793, + "codeIataAirport": "ONQ", + "codeIataCity": "ONQ", + "codeIcaoAirport": "LTAS", + "codeIso2Country": "TR", + "geonameId": "8041548", + "latitudeAirport": 41.516666, + "longitudeAirport": 32.1, + "nameAirport": "Zonguldak", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "10", + "airportId": 5794, + "codeIataAirport": "ONR", + "codeIataCity": "ONR", + "codeIcaoAirport": "YMNK", + "codeIso2Country": "AU", + "geonameId": "7731369", + "latitudeAirport": -24.816668, + "longitudeAirport": 140.56667, + "nameAirport": "Monkira", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "airportId": 5795, + "codeIataAirport": "ONS", + "codeIataCity": "ONS", + "codeIcaoAirport": "YOLW", + "codeIso2Country": "AU", + "geonameId": "8261072", + "latitudeAirport": -21.666668, + "longitudeAirport": 115.1, + "nameAirport": "Onslow", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-8", + "airportId": 5796, + "codeIataAirport": "ONT", + "codeIataCity": "ONT", + "codeIcaoAirport": "KONT", + "codeIso2Country": "US", + "geonameId": "5379449", + "latitudeAirport": 34.06068, + "longitudeAirport": -117.59765, + "nameAirport": "Ontario International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "12", + "airportId": 5797, + "codeIataAirport": "ONU", + "codeIataCity": "ONU", + "codeIcaoAirport": "NFOL", + "codeIso2Country": "FJ", + "geonameId": "7730692", + "latitudeAirport": -16.333332, + "longitudeAirport": 179.0, + "nameAirport": "Ono I Lau", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-5", + "airportId": 5798, + "codeIataAirport": "ONX", + "codeIataCity": "ONX", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "0", + "latitudeAirport": 9.35, + "longitudeAirport": -79.9, + "nameAirport": "Enrique Adolfo Jimenez", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "-6", + "airportId": 5799, + "codeIataAirport": "ONY", + "codeIataCity": "ONY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.36667, + "longitudeAirport": -98.75, + "nameAirport": "Olney", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 5800, + "codeIataAirport": "OOA", + "codeIataCity": "OOA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.3, + "longitudeAirport": -92.65, + "nameAirport": "Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 5801, + "codeIataAirport": "OOK", + "codeIataCity": "OOK", + "codeIcaoAirport": "PAOO", + "codeIso2Country": "US", + "geonameId": "5876385", + "latitudeAirport": 60.531944, + "longitudeAirport": -165.10834, + "nameAirport": "Toksook Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 5802, + "codeIataAirport": "OOL", + "codeIataCity": "OOL", + "codeIcaoAirport": "YBCG", + "codeIso2Country": "AU", + "geonameId": "6301293", + "latitudeAirport": -28.166164, + "longitudeAirport": 153.51314, + "nameAirport": "Gold Coast (coolangatta)", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 5803, + "codeIataAirport": "OOM", + "codeIataCity": "OOM", + "codeIcaoAirport": "YCOM", + "codeIso2Country": "AU", + "geonameId": "7730250", + "latitudeAirport": -36.308334, + "longitudeAirport": 148.97333, + "nameAirport": "Cooma", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "airportId": 5804, + "codeIataAirport": "OOR", + "codeIataCity": "OOR", + "codeIcaoAirport": "YMOO", + "codeIso2Country": "AU", + "geonameId": "7731370", + "latitudeAirport": -25.05, + "longitudeAirport": 141.23334, + "nameAirport": "Mooraberree", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "12", + "airportId": 5805, + "codeIataAirport": "OOT", + "codeIataCity": "OOT", + "codeIcaoAirport": "", + "codeIso2Country": "KI", + "geonameId": "0", + "latitudeAirport": -1.916667, + "longitudeAirport": 175.56667, + "nameAirport": "Onotoa", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "0", + "airportId": 5806, + "codeIataAirport": "OPA", + "codeIataCity": "OPA", + "codeIcaoAirport": "BIKP", + "codeIso2Country": "IS", + "geonameId": "7730433", + "latitudeAirport": 66.416664, + "longitudeAirport": -16.483334, + "nameAirport": "Kopasker", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "10", + "airportId": 5807, + "codeIataAirport": "OPB", + "codeIataCity": "OPB", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298972", + "latitudeAirport": -4.933333, + "longitudeAirport": 151.66667, + "nameAirport": "Open Bay", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 5808, + "codeIataAirport": "OPF", + "codeIataCity": "MIA", + "codeIcaoAirport": "KOPF", + "codeIso2Country": "US", + "geonameId": "4166998", + "latitudeAirport": 25.9, + "longitudeAirport": -80.28333, + "nameAirport": "Opa Locka", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9.30", + "airportId": 5809, + "codeIataAirport": "OPI", + "codeIataCity": "OPI", + "codeIcaoAirport": "YOEN", + "codeIso2Country": "AU", + "geonameId": "7731371", + "latitudeAirport": -12.333333, + "longitudeAirport": 133.06667, + "nameAirport": "Oenpelli", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-6", + "airportId": 5810, + "codeIataAirport": "OPL", + "codeIataCity": "OPL", + "codeIcaoAirport": "KOPL", + "codeIso2Country": "US", + "geonameId": "4336153", + "latitudeAirport": 30.533333, + "longitudeAirport": -92.083336, + "nameAirport": "St Landry Parish", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 5811, + "codeIataAirport": "OPO", + "codeIataCity": "OPO", + "codeIcaoAirport": "LPPR", + "codeIso2Country": "PT", + "geonameId": "6299688", + "latitudeAirport": 41.237774, + "longitudeAirport": -8.670272, + "nameAirport": "Francisco Sá Carneiro", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "-4", + "airportId": 5812, + "codeIataAirport": "OPS", + "codeIataCity": "OPS", + "codeIcaoAirport": "SWSI", + "codeIso2Country": "BR", + "geonameId": "7731372", + "latitudeAirport": -11.878573, + "longitudeAirport": -55.58156, + "nameAirport": "Sinop", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "10", + "airportId": 5813, + "codeIataAirport": "OPU", + "codeIataCity": "OPU", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7730316", + "latitudeAirport": -8.033333, + "longitudeAirport": 142.93333, + "nameAirport": "Balimo", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "airportId": 5814, + "codeIataAirport": "OPW", + "codeIataCity": "OPW", + "codeIcaoAirport": "", + "codeIso2Country": "NA", + "geonameId": "8261046", + "latitudeAirport": -18.066668, + "longitudeAirport": 13.833333, + "nameAirport": "Opuwa", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-3", + "airportId": 5815, + "codeIataAirport": "ORA", + "codeIataCity": "ORA", + "codeIcaoAirport": "SASO", + "codeIso2Country": "AR", + "geonameId": "6300556", + "latitudeAirport": -23.333332, + "longitudeAirport": -64.166664, + "nameAirport": "Oran", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "1", + "airportId": 5816, + "codeIataAirport": "ORB", + "codeIataCity": "ORB", + "codeIcaoAirport": "ESOE", + "codeIso2Country": "SE", + "geonameId": "6296809", + "latitudeAirport": 59.225758, + "longitudeAirport": 15.047543, + "nameAirport": "Orebro-bofors", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "airportId": 5817, + "codeIataAirport": "ORC", + "codeIataCity": "ORC", + "codeIcaoAirport": "SKOE", + "codeIso2Country": "CO", + "geonameId": "7668465", + "latitudeAirport": 4.9, + "longitudeAirport": -71.333336, + "nameAirport": "Orocue", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 5818, + "codeIataAirport": "ORD", + "codeIataCity": "CHI", + "codeIcaoAirport": "KORD", + "codeIso2Country": "US", + "geonameId": "4887479", + "latitudeAirport": 41.976913, + "longitudeAirport": -87.90488, + "nameAirport": "Chicago O'hare International", + "nameCountry": "United States", + "phone": "773-686-2200", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 5819, + "codeIataAirport": "ORE", + "codeIataCity": "ORE", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 47.916668, + "longitudeAirport": 1.9, + "nameAirport": "Orleans", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 5820, + "codeIataAirport": "ORF", + "codeIataCity": "ORF", + "codeIcaoAirport": "KORF", + "codeIso2Country": "US", + "geonameId": "4776235", + "latitudeAirport": 36.898582, + "longitudeAirport": -76.20629, + "nameAirport": "Norfolk International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 5821, + "codeIataAirport": "ORG", + "codeIataCity": "PBM", + "codeIcaoAirport": "", + "codeIso2Country": "SR", + "geonameId": "0", + "latitudeAirport": 5.809444, + "longitudeAirport": -55.191113, + "nameAirport": "Zorg En Hoop", + "nameCountry": "Suriname", + "phone": "", + "timezone": "America/Paramaribo" + }, + { + "GMT": "-5", + "airportId": 5822, + "codeIataAirport": "ORH", + "codeIataCity": "ORH", + "codeIcaoAirport": "KORH", + "codeIso2Country": "US", + "geonameId": "6298825", + "latitudeAirport": 42.26917, + "longitudeAirport": -71.87444, + "nameAirport": "Worcester Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 5823, + "codeIataAirport": "ORI", + "codeIataCity": "ORI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5871926", + "latitudeAirport": 57.886112, + "longitudeAirport": -152.84389, + "nameAirport": "Port Lions SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "airportId": 5824, + "codeIataAirport": "ORJ", + "codeIataCity": "ORJ", + "codeIcaoAirport": "SYOR", + "codeIso2Country": "GY", + "geonameId": "7731373", + "latitudeAirport": 4.716667, + "longitudeAirport": -60.033333, + "nameAirport": "Orinduik", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "0", + "airportId": 5825, + "codeIataAirport": "ORK", + "codeIataCity": "ORK", + "codeIcaoAirport": "EICK", + "codeIso2Country": "IE", + "geonameId": "6296696", + "latitudeAirport": 51.846645, + "longitudeAirport": -8.48914, + "nameAirport": "Cork", + "nameCountry": "Ireland", + "phone": "", + "timezone": "Europe/Dublin" + }, + { + "GMT": "-5", + "airportId": 5826, + "codeIataAirport": "ORL", + "codeIataCity": "ORL", + "codeIcaoAirport": "KORL", + "codeIso2Country": "US", + "geonameId": "4167147", + "latitudeAirport": 28.544167, + "longitudeAirport": -81.335556, + "nameAirport": "Orlando Executive", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 5827, + "codeIataAirport": "ORM", + "codeIataCity": "ORM", + "codeIcaoAirport": "EGBK", + "codeIso2Country": "GB", + "geonameId": "7668194", + "latitudeAirport": 52.233334, + "longitudeAirport": -0.9, + "nameAirport": "Northampton", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 5828, + "codeIataAirport": "ORN", + "codeIataCity": "ORN", + "codeIcaoAirport": "DAOO", + "codeIso2Country": "DZ", + "geonameId": "6301508", + "latitudeAirport": 35.620018, + "longitudeAirport": -0.606108, + "nameAirport": "Es Senia", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-6", + "airportId": 5829, + "codeIataAirport": "ORO", + "codeIataCity": "ORO", + "codeIcaoAirport": "", + "codeIso2Country": "HN", + "geonameId": "8299079", + "latitudeAirport": 15.125278, + "longitudeAirport": -87.13389, + "nameAirport": "Yoro", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "2", + "airportId": 5830, + "codeIataAirport": "ORP", + "codeIataCity": "ORP", + "codeIcaoAirport": "FBOR", + "codeIso2Country": "BW", + "geonameId": "7668231", + "latitudeAirport": -21.0, + "longitudeAirport": 24.5, + "nameAirport": "Orapa", + "nameCountry": "Botswana", + "phone": "", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "-5", + "airportId": 5831, + "codeIataAirport": "ORQ", + "codeIataCity": "ORQ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.11667, + "longitudeAirport": -73.36667, + "nameAirport": "Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9.30", + "airportId": 5832, + "codeIataAirport": "ORR", + "codeIataCity": "ORR", + "codeIcaoAirport": "YYOR", + "codeIso2Country": "AU", + "geonameId": "7731374", + "latitudeAirport": -35.033333, + "longitudeAirport": 137.58333, + "nameAirport": "Yorketown", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "10", + "airportId": 5833, + "codeIataAirport": "ORS", + "codeIataCity": "ORS", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8299176", + "latitudeAirport": -18.633333, + "longitudeAirport": 146.48334, + "nameAirport": "Waterport", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "airportId": 5834, + "codeIataAirport": "ORT", + "codeIataCity": "ORT", + "codeIcaoAirport": "PAOR", + "codeIso2Country": "US", + "geonameId": "5870346", + "latitudeAirport": 62.961945, + "longitudeAirport": -141.92389, + "nameAirport": "Northway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "airportId": 5835, + "codeIataAirport": "ORU", + "codeIataCity": "ORU", + "codeIcaoAirport": "SLOR", + "codeIso2Country": "BO", + "geonameId": "6300778", + "latitudeAirport": -17.964167, + "longitudeAirport": -67.08083, + "nameAirport": "Oruro", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-9", + "airportId": 5836, + "codeIataAirport": "ORV", + "codeIataCity": "ORV", + "codeIcaoAirport": "PFNO", + "codeIso2Country": "US", + "geonameId": "5872796", + "latitudeAirport": 66.82917, + "longitudeAirport": -161.0236, + "nameAirport": "Curtis Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "5", + "airportId": 5837, + "codeIataAirport": "ORW", + "codeIataCity": "ORW", + "codeIcaoAirport": "OPOR", + "codeIso2Country": "PK", + "geonameId": "7668402", + "latitudeAirport": 25.3, + "longitudeAirport": 64.583336, + "nameAirport": "Ormara", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-3", + "airportId": 5838, + "codeIataAirport": "ORX", + "codeIataCity": "ORX", + "codeIcaoAirport": "SNOX", + "codeIso2Country": "BR", + "geonameId": "7731375", + "latitudeAirport": -1.75, + "longitudeAirport": -55.86667, + "nameAirport": "Oriximina", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Santarem" + }, + { + "GMT": "1", + "airportId": 5839, + "codeIataAirport": "ORY", + "codeIataCity": "PAR", + "codeIcaoAirport": "LFPO", + "codeIso2Country": "FR", + "geonameId": "2988500", + "latitudeAirport": 48.728283, + "longitudeAirport": 2.3597, + "nameAirport": "Orly", + "nameCountry": "France", + "phone": "01-49-75-5252", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "airportId": 5840, + "codeIataAirport": "ORZ", + "codeIataCity": "ORZ", + "codeIcaoAirport": "", + "codeIso2Country": "BZ", + "geonameId": "0", + "latitudeAirport": 17.166668, + "longitudeAirport": -88.75, + "nameAirport": "Orange Walk", + "nameCountry": "Belize", + "phone": "", + "timezone": "America/Belize" + }, + { + "GMT": "-6", + "airportId": 5841, + "codeIataAirport": "OSB", + "codeIataCity": "OSB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4402040", + "latitudeAirport": 38.11437, + "longitudeAirport": -92.68217, + "nameAirport": "Osage Beach", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 5842, + "codeIataAirport": "OSC", + "codeIataCity": "OSC", + "codeIcaoAirport": "KOSC", + "codeIso2Country": "US", + "geonameId": "5004623", + "latitudeAirport": 44.433334, + "longitudeAirport": -83.333336, + "nameAirport": "Wurtsmith AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "1", + "airportId": 5843, + "codeIataAirport": "OSD", + "codeIataCity": "OSD", + "codeIcaoAirport": "ESPC", + "codeIso2Country": "SE", + "geonameId": "2685748", + "latitudeAirport": 63.198612, + "longitudeAirport": 14.494444, + "nameAirport": "Åre Östersund Airport", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "10", + "airportId": 5844, + "codeIataAirport": "OSE", + "codeIataCity": "OSE", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260881", + "latitudeAirport": -7.833333, + "longitudeAirport": 147.08333, + "nameAirport": "Omora", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 5845, + "codeIataAirport": "OSG", + "codeIataCity": "OSG", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2088906", + "latitudeAirport": -2.966667, + "longitudeAirport": 141.33333, + "nameAirport": "Ossima", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 5846, + "codeIataAirport": "OSH", + "codeIataCity": "OSH", + "codeIcaoAirport": "KOSH", + "codeIso2Country": "US", + "geonameId": "5279490", + "latitudeAirport": 43.98389, + "longitudeAirport": -88.556946, + "nameAirport": "Wittman Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 5847, + "codeIataAirport": "OSI", + "codeIataCity": "OSI", + "codeIcaoAirport": "LDOS", + "codeIso2Country": "HR", + "geonameId": "6299318", + "latitudeAirport": 45.55, + "longitudeAirport": 18.683332, + "nameAirport": "Osijek", + "nameCountry": "Croatia", + "phone": "", + "timezone": "Europe/Zagreb" + }, + { + "GMT": "1", + "airportId": 5848, + "codeIataAirport": "OSK", + "codeIataCity": "OSK", + "codeIcaoAirport": "ESMO", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 57.266666, + "longitudeAirport": 16.433332, + "nameAirport": "Oskarshamn", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 5849, + "codeIataAirport": "OSL", + "codeIataCity": "OSL", + "codeIcaoAirport": "ENGM", + "codeIso2Country": "NO", + "geonameId": "3156088", + "latitudeAirport": 60.19419, + "longitudeAirport": 11.100411, + "nameAirport": "Gardermoen", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "3", + "airportId": 5850, + "codeIataAirport": "OSM", + "codeIataCity": "OSM", + "codeIcaoAirport": "ORBM", + "codeIso2Country": "IQ", + "geonameId": "6300125", + "latitudeAirport": 36.3075, + "longitudeAirport": 43.149445, + "nameAirport": "Mosul", + "nameCountry": "Iraq", + "phone": "", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "9", + "airportId": 5851, + "codeIataAirport": "OSN", + "codeIataCity": "OSN", + "codeIcaoAirport": "RKSO", + "codeIso2Country": "KR", + "geonameId": "6300437", + "latitudeAirport": 37.083332, + "longitudeAirport": 127.03333, + "nameAirport": "Osan AB", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "10", + "airportId": 5852, + "codeIataAirport": "OSO", + "codeIataCity": "OSO", + "codeIcaoAirport": "YOSB", + "codeIso2Country": "AU", + "geonameId": "8260869", + "latitudeAirport": -22.08254, + "longitudeAirport": 140.55779, + "nameAirport": "Osborne Mine", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "airportId": 5853, + "codeIataAirport": "OSR", + "codeIataCity": "OSR", + "codeIcaoAirport": "LKMT", + "codeIso2Country": "CZ", + "geonameId": "6299652", + "latitudeAirport": 49.69552, + "longitudeAirport": 18.121284, + "nameAirport": "Mosnov", + "nameCountry": "Czech Republic", + "phone": "", + "timezone": "Europe/Prague" + }, + { + "GMT": "6", + "airportId": 5854, + "codeIataAirport": "OSS", + "codeIataCity": "OSS", + "codeIcaoAirport": "UAFO", + "codeIso2Country": "KG", + "geonameId": "7668491", + "latitudeAirport": 40.60769, + "longitudeAirport": 72.78648, + "nameAirport": "Osh International Airport", + "nameCountry": "Kyrgyzstan", + "phone": "", + "timezone": "Asia/Bishkek" + }, + { + "GMT": "1", + "airportId": 5855, + "codeIataAirport": "OST", + "codeIataCity": "OST", + "codeIcaoAirport": "EBOS", + "codeIso2Country": "BE", + "geonameId": "6296498", + "latitudeAirport": 51.199722, + "longitudeAirport": 2.863611, + "nameAirport": "Ostend/Bruges International Airport", + "nameCountry": "Belgium", + "phone": "", + "timezone": "Europe/Brussels" + }, + { + "GMT": "-5", + "airportId": 5856, + "codeIataAirport": "OSU", + "codeIataCity": "CMH", + "codeIcaoAirport": "KOSU", + "codeIso2Country": "US", + "geonameId": "5165405", + "latitudeAirport": 40.078056, + "longitudeAirport": -83.07333, + "nameAirport": "Ohio State University", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "5", + "airportId": 5857, + "codeIataAirport": "OSW", + "codeIataCity": "OSW", + "codeIcaoAirport": "UWOR", + "codeIso2Country": "RU", + "geonameId": "7668564", + "latitudeAirport": 51.2, + "longitudeAirport": 58.566666, + "nameAirport": "Orsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-6", + "airportId": 5858, + "codeIataAirport": "OSX", + "codeIataCity": "OSX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.066666, + "longitudeAirport": -89.583336, + "nameAirport": "Attala County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 5859, + "codeIataAirport": "OSY", + "codeIataCity": "OSY", + "codeIcaoAirport": "ENNM", + "codeIso2Country": "NO", + "geonameId": "6296756", + "latitudeAirport": 64.47273, + "longitudeAirport": 11.570002, + "nameAirport": "Namsos", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 5860, + "codeIataAirport": "OSZ", + "codeIataCity": "OSZ", + "codeIcaoAirport": "EPKO", + "codeIso2Country": "PL", + "geonameId": "3095049", + "latitudeAirport": 54.042778, + "longitudeAirport": 16.264444, + "nameAirport": "Koszalin", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "3", + "airportId": 5861, + "codeIataAirport": "OTA", + "codeIataCity": "OTA", + "codeIcaoAirport": "", + "codeIso2Country": "ET", + "geonameId": "8298800", + "latitudeAirport": 11.066667, + "longitudeAirport": 37.88333, + "nameAirport": "Mota", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "1", + "airportId": 5862, + "codeIataAirport": "OTC", + "codeIataCity": "OTC", + "codeIcaoAirport": "FTTL", + "codeIso2Country": "TD", + "geonameId": "2434972", + "latitudeAirport": 13.433333, + "longitudeAirport": 14.733333, + "nameAirport": "Bol", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "-5", + "airportId": 5863, + "codeIataAirport": "OTD", + "codeIataCity": "OTD", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "7731376", + "latitudeAirport": 8.666667, + "longitudeAirport": -79.566666, + "nameAirport": "Contadora", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "-6", + "airportId": 5864, + "codeIataAirport": "OTG", + "codeIataCity": "OTG", + "codeIcaoAirport": "KOTG", + "codeIso2Country": "US", + "geonameId": "5053468", + "latitudeAirport": 43.65222, + "longitudeAirport": -95.58361, + "nameAirport": "Worthington", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 5865, + "codeIataAirport": "OTH", + "codeIataCity": "OTH", + "codeIcaoAirport": "KOTH", + "codeIso2Country": "US", + "geonameId": "5742977", + "latitudeAirport": 43.418888, + "longitudeAirport": -124.24, + "nameAirport": "North Bend", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9", + "airportId": 5866, + "codeIataAirport": "OTI", + "codeIataCity": "OTI", + "codeIcaoAirport": "WAMR", + "codeIso2Country": "ID", + "geonameId": "7730231", + "latitudeAirport": 2.833333, + "longitudeAirport": 128.5, + "nameAirport": "Pitu", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "2", + "airportId": 5867, + "codeIataAirport": "OTJ", + "codeIataCity": "OTJ", + "codeIcaoAirport": "", + "codeIso2Country": "NA", + "geonameId": "8260882", + "latitudeAirport": -20.430555, + "longitudeAirport": 16.6625, + "nameAirport": "Otjiwarongo", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-8", + "airportId": 5868, + "codeIataAirport": "OTK", + "codeIataCity": "OTK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5756777", + "latitudeAirport": 45.45622, + "longitudeAirport": -123.84401, + "nameAirport": "Tillamook", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "0", + "airportId": 5869, + "codeIataAirport": "OTL", + "codeIataCity": "OTL", + "codeIcaoAirport": "GQNB", + "codeIso2Country": "MR", + "geonameId": "6297234", + "latitudeAirport": 17.75, + "longitudeAirport": -14.666667, + "nameAirport": "Boutilimit", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "-6", + "airportId": 5870, + "codeIataAirport": "OTM", + "codeIataCity": "OTM", + "codeIcaoAirport": "KOTM", + "codeIso2Country": "US", + "geonameId": "4870398", + "latitudeAirport": 41.106388, + "longitudeAirport": -92.449165, + "nameAirport": "Industrial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 5871, + "codeIataAirport": "OTN", + "codeIataCity": "OTN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4262433", + "latitudeAirport": 38.86667, + "longitudeAirport": -87.45, + "nameAirport": "Green", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Vincennes" + }, + { + "GMT": "-7", + "airportId": 5872, + "codeIataAirport": "OTO", + "codeIataCity": "OTO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299218", + "latitudeAirport": 35.066666, + "longitudeAirport": -105.933334, + "nameAirport": "Vor", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "2", + "airportId": 5873, + "codeIataAirport": "OTP", + "codeIataCity": "BUH", + "codeIcaoAirport": "LROP", + "codeIso2Country": "RO", + "geonameId": "6301793", + "latitudeAirport": 44.571156, + "longitudeAirport": 26.077063, + "nameAirport": "Henri Coanda International", + "nameCountry": "Romania", + "phone": "+4 021-204-10", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "-6", + "airportId": 5874, + "codeIataAirport": "OTR", + "codeIataCity": "OTR", + "codeIcaoAirport": "MRCC", + "codeIso2Country": "CR", + "geonameId": "7668355", + "latitudeAirport": 8.566667, + "longitudeAirport": -82.933334, + "nameAirport": "Coto 47", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-8", + "airportId": 5875, + "codeIataAirport": "OTS", + "codeIataCity": "OTS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5785670", + "latitudeAirport": 48.49917, + "longitudeAirport": -122.66111, + "nameAirport": "Anacortes", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "airportId": 5876, + "codeIataAirport": "OTT", + "codeIataCity": "OTT", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8298840", + "latitudeAirport": -9.902215, + "longitudeAirport": -58.581287, + "nameAirport": "Andre Maggi", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-5", + "airportId": 5877, + "codeIataAirport": "OTU", + "codeIataCity": "OTU", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 7.0, + "longitudeAirport": -74.71667, + "nameAirport": "Otu", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "airportId": 5878, + "codeIataAirport": "OTY", + "codeIataCity": "OTY", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8261012", + "latitudeAirport": -6.6, + "longitudeAirport": 155.76666, + "nameAirport": "Oria", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 5879, + "codeIataAirport": "OTZ", + "codeIataCity": "OTZ", + "codeIcaoAirport": "PAOT", + "codeIso2Country": "US", + "geonameId": "5872433", + "latitudeAirport": 66.888054, + "longitudeAirport": -162.60583, + "nameAirport": "Kotzebue", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "0", + "airportId": 5880, + "codeIataAirport": "OUA", + "codeIataCity": "OUA", + "codeIcaoAirport": "DFFD", + "codeIso2Country": "BF", + "geonameId": "6296409", + "latitudeAirport": 12.355019, + "longitudeAirport": -1.514283, + "nameAirport": "Ouagadougou", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "0", + "airportId": 5881, + "codeIataAirport": "OUD", + "codeIataCity": "OUD", + "codeIcaoAirport": "GMFO", + "codeIso2Country": "MA", + "geonameId": "6297205", + "latitudeAirport": 34.783333, + "longitudeAirport": -1.933333, + "nameAirport": "Les Anglades", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "1", + "airportId": 5882, + "codeIataAirport": "OUE", + "codeIataCity": "OUE", + "codeIcaoAirport": "FCOU", + "codeIso2Country": "CG", + "geonameId": "2572142", + "latitudeAirport": 1.616667, + "longitudeAirport": 16.04861, + "nameAirport": "Ouesso", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "0", + "airportId": 5883, + "codeIataAirport": "OUG", + "codeIataCity": "OUG", + "codeIcaoAirport": "DFCC", + "codeIso2Country": "BF", + "geonameId": "6296404", + "latitudeAirport": 13.516667, + "longitudeAirport": -2.333333, + "nameAirport": "Ouahigouya", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "2", + "airportId": 5884, + "codeIataAirport": "OUH", + "codeIataCity": "OUH", + "codeIcaoAirport": "FAOH", + "codeIso2Country": "ZA", + "geonameId": "967110", + "latitudeAirport": -33.603333, + "longitudeAirport": 22.188334, + "nameAirport": "Oudtshoorn", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "7", + "airportId": 5885, + "codeIataAirport": "OUI", + "codeIataCity": "OUI", + "codeIcaoAirport": "VLHS", + "codeIso2Country": "LA", + "geonameId": "7668610", + "latitudeAirport": 18.936111, + "longitudeAirport": 102.67083, + "nameAirport": "Ban Houei", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "0", + "airportId": 5886, + "codeIataAirport": "OUK", + "codeIataCity": "OUK", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "7670764", + "latitudeAirport": 60.416668, + "longitudeAirport": -0.75, + "nameAirport": "Outer Skerries", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "airportId": 5887, + "codeIataAirport": "OUL", + "codeIataCity": "OUL", + "codeIcaoAirport": "EFOU", + "codeIso2Country": "FI", + "geonameId": "6296555", + "latitudeAirport": 64.93012, + "longitudeAirport": 25.375425, + "nameAirport": "Oulu", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "1", + "airportId": 5888, + "codeIataAirport": "OUM", + "codeIataCity": "OUM", + "codeIcaoAirport": "", + "codeIso2Country": "TD", + "geonameId": "2426370", + "latitudeAirport": 13.216667, + "longitudeAirport": 19.616667, + "nameAirport": "Oum Hadjer", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "-6", + "airportId": 5889, + "codeIataAirport": "OUN", + "codeIataCity": "OUN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4543762", + "latitudeAirport": 35.216667, + "longitudeAirport": -97.433334, + "nameAirport": "Max Westheimer", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 5890, + "codeIataAirport": "OUR", + "codeIataCity": "OUR", + "codeIcaoAirport": "FKKI", + "codeIso2Country": "CM", + "geonameId": "6297000", + "latitudeAirport": 4.473056, + "longitudeAirport": 14.363611, + "nameAirport": "Batouri", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "-3", + "airportId": 5891, + "codeIataAirport": "OUS", + "codeIataCity": "OUS", + "codeIcaoAirport": "SDOU", + "codeIso2Country": "BR", + "geonameId": "7731377", + "latitudeAirport": -22.966667, + "longitudeAirport": -49.916668, + "nameAirport": "Ourinhos", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 5892, + "codeIataAirport": "OUT", + "codeIataCity": "OUT", + "codeIcaoAirport": "", + "codeIso2Country": "TD", + "geonameId": "2434584", + "latitudeAirport": 10.483333, + "longitudeAirport": 16.716667, + "nameAirport": "Bousso", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "1", + "airportId": 5893, + "codeIataAirport": "OUU", + "codeIataCity": "OUU", + "codeIcaoAirport": "", + "codeIso2Country": "GA", + "geonameId": "8298856", + "latitudeAirport": -2.983333, + "longitudeAirport": 10.3, + "nameAirport": "Ouanga", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "0", + "airportId": 5894, + "codeIataAirport": "OUZ", + "codeIataCity": "OUZ", + "codeIcaoAirport": "GQPZ", + "codeIso2Country": "MR", + "geonameId": "7730581", + "latitudeAirport": 22.733334, + "longitudeAirport": -12.35, + "nameAirport": "Zouerate", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "3", + "airportId": 5895, + "codeIataAirport": "OVA", + "codeIataCity": "OVA", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1067982", + "latitudeAirport": -24.2325, + "longitudeAirport": 45.305, + "nameAirport": "Bekily", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "7", + "airportId": 5896, + "codeIataAirport": "OVB", + "codeIataCity": "OVB", + "codeIcaoAirport": "UNNT", + "codeIso2Country": "RU", + "geonameId": "7668525", + "latitudeAirport": 55.00901, + "longitudeAirport": 82.667, + "nameAirport": "Tolmachevo", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Novosibirsk" + }, + { + "GMT": "1", + "airportId": 5897, + "codeIataAirport": "OVD", + "codeIataCity": "OVD", + "codeIcaoAirport": "LEAS", + "codeIso2Country": "ES", + "geonameId": "6299326", + "latitudeAirport": 43.55891, + "longitudeAirport": -6.032094, + "nameAirport": "Asturias", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-8", + "airportId": 5898, + "codeIataAirport": "OVE", + "codeIataCity": "OVE", + "codeIcaoAirport": "KOVE", + "codeIso2Country": "US", + "geonameId": "5379770", + "latitudeAirport": 39.5, + "longitudeAirport": -121.61667, + "nameAirport": "Oroville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "airportId": 5899, + "codeIataAirport": "OVG", + "codeIataCity": "OVG", + "codeIcaoAirport": "FAOB", + "codeIso2Country": "ZA", + "geonameId": "6296914", + "latitudeAirport": -34.551666, + "longitudeAirport": 20.235832, + "nameAirport": "Overberg (FAOB)", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-4", + "airportId": 5900, + "codeIataAirport": "OVL", + "codeIataCity": "OVL", + "codeIcaoAirport": "", + "codeIso2Country": "CL", + "geonameId": "3877918", + "latitudeAirport": -30.566668, + "longitudeAirport": -71.0, + "nameAirport": "Ovalle", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-3", + "airportId": 5901, + "codeIataAirport": "OVR", + "codeIataCity": "OVR", + "codeIcaoAirport": "SAZF", + "codeIso2Country": "AR", + "geonameId": "7730778", + "latitudeAirport": -36.88889, + "longitudeAirport": -60.22778, + "nameAirport": "Olavarria", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "5", + "airportId": 5902, + "codeIataAirport": "OVS", + "codeIataCity": "OVS", + "codeIcaoAirport": "USHS", + "codeIso2Country": "RU", + "geonameId": "7730196", + "latitudeAirport": 61.33209, + "longitudeAirport": 63.601887, + "nameAirport": "Sovetsky", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-6", + "airportId": 5903, + "codeIataAirport": "OWA", + "codeIataCity": "OWA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5040647", + "latitudeAirport": 44.1, + "longitudeAirport": -93.166664, + "nameAirport": "Owatonna", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 5904, + "codeIataAirport": "OWB", + "codeIataCity": "OWB", + "codeIcaoAirport": "KOWB", + "codeIso2Country": "US", + "geonameId": "4303438", + "latitudeAirport": 37.740833, + "longitudeAirport": -87.16583, + "nameAirport": "Daviess County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 5905, + "codeIataAirport": "OWD", + "codeIataCity": "OWD", + "codeIcaoAirport": "KOWD", + "codeIso2Country": "US", + "geonameId": "4945959", + "latitudeAirport": 42.0, + "longitudeAirport": -71.0, + "nameAirport": "Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 5906, + "codeIataAirport": "OWE", + "codeIataCity": "OWE", + "codeIcaoAirport": "", + "codeIso2Country": "GA", + "geonameId": "2396657", + "latitudeAirport": 0.35, + "longitudeAirport": 9.483333, + "nameAirport": "Owendo", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-5", + "airportId": 5907, + "codeIataAirport": "OWK", + "codeIataCity": "OWK", + "codeIcaoAirport": "KOWK", + "codeIso2Country": "US", + "geonameId": "4973430", + "latitudeAirport": 44.716667, + "longitudeAirport": -69.8, + "nameAirport": "Central Maine Airport of Norridgewock", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 5908, + "codeIataAirport": "OXB", + "codeIataCity": "OXB", + "codeIcaoAirport": "GGOV", + "codeIso2Country": "GW", + "geonameId": "6297195", + "latitudeAirport": 11.888889, + "longitudeAirport": -15.657222, + "nameAirport": "Osvaldo Vieira International", + "nameCountry": "Guinea-Bissau", + "phone": "", + "timezone": "Africa/Bissau" + }, + { + "GMT": "-5", + "airportId": 5909, + "codeIataAirport": "OXC", + "codeIataCity": "OXC", + "codeIcaoAirport": "KOXC", + "codeIso2Country": "US", + "geonameId": "4845215", + "latitudeAirport": 41.479168, + "longitudeAirport": -73.13639, + "nameAirport": "Waterbury-oxford", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 5910, + "codeIataAirport": "OXD", + "codeIataCity": "OXD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4520760", + "latitudeAirport": 39.86028, + "longitudeAirport": -84.76111, + "nameAirport": "Miami University", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 5911, + "codeIataAirport": "OXF", + "codeIataCity": "OXF", + "codeIcaoAirport": "EGTK", + "codeIso2Country": "GB", + "geonameId": "6453432", + "latitudeAirport": 51.766666, + "longitudeAirport": -1.25, + "nameAirport": "Oxford (Kidlington)", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "10", + "airportId": 5912, + "codeIataAirport": "OXO", + "codeIataCity": "OXO", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298783", + "latitudeAirport": -27.666668, + "longitudeAirport": 141.33333, + "nameAirport": "Orientos", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-8", + "airportId": 5913, + "codeIataAirport": "OXR", + "codeIataCity": "OXR", + "codeIcaoAirport": "KOXR", + "codeIso2Country": "US", + "geonameId": "5380186", + "latitudeAirport": 34.20111, + "longitudeAirport": -119.20639, + "nameAirport": "Ventura", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 5914, + "codeIataAirport": "OXY", + "codeIataCity": "OXY", + "codeIcaoAirport": "YMNY", + "codeIso2Country": "AU", + "geonameId": "7731378", + "latitudeAirport": -25.35, + "longitudeAirport": 141.36667, + "nameAirport": "Morney", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "airportId": 5915, + "codeIataAirport": "OYA", + "codeIataCity": "OYA", + "codeIcaoAirport": "SATG", + "codeIso2Country": "AR", + "geonameId": "7730149", + "latitudeAirport": -29.103333, + "longitudeAirport": -59.216667, + "nameAirport": "Goya", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "1", + "airportId": 5916, + "codeIataAirport": "OYE", + "codeIataCity": "OYE", + "codeIcaoAirport": "FOGO", + "codeIso2Country": "GA", + "geonameId": "7730080", + "latitudeAirport": 1.566667, + "longitudeAirport": 11.583333, + "nameAirport": "Oyem", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "3", + "airportId": 5917, + "codeIataAirport": "OYG", + "codeIataCity": "OYG", + "codeIcaoAirport": "", + "codeIso2Country": "UG", + "geonameId": "7731379", + "latitudeAirport": 3.65, + "longitudeAirport": 31.716667, + "nameAirport": "Moyo", + "nameCountry": "Uganda", + "phone": "", + "timezone": "Africa/Kampala" + }, + { + "GMT": "-3", + "airportId": 5918, + "codeIataAirport": "OYK", + "codeIataCity": "OYK", + "codeIcaoAirport": "SBOI", + "codeIso2Country": "BR", + "geonameId": "6300650", + "latitudeAirport": 3.883333, + "longitudeAirport": -51.783333, + "nameAirport": "Oiapoque", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Belem" + }, + { + "GMT": "3", + "airportId": 5919, + "codeIataAirport": "OYL", + "codeIataCity": "OYL", + "codeIcaoAirport": "HKMY", + "codeIso2Country": "KE", + "geonameId": "6297320", + "latitudeAirport": 3.533333, + "longitudeAirport": 39.05, + "nameAirport": "Moyale", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "10", + "airportId": 5920, + "codeIataAirport": "OYN", + "codeIataCity": "OYN", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8261038", + "latitudeAirport": -35.066666, + "longitudeAirport": 142.33333, + "nameAirport": "Ouyen", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-3", + "airportId": 5921, + "codeIataAirport": "OYO", + "codeIataCity": "OYO", + "codeIcaoAirport": "SAZH", + "codeIso2Country": "AR", + "geonameId": "3833860", + "latitudeAirport": -38.36667, + "longitudeAirport": -60.25, + "nameAirport": "Tres Arroyos", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "-3", + "airportId": 5922, + "codeIataAirport": "OYP", + "codeIataCity": "OYP", + "codeIcaoAirport": "", + "codeIso2Country": "GF", + "geonameId": "0", + "latitudeAirport": 3.9, + "longitudeAirport": -51.8, + "nameAirport": "St-Georges de lOyapock", + "nameCountry": "French Guiana", + "phone": "", + "timezone": "America/Cayenne" + }, + { + "GMT": "-8", + "airportId": 5923, + "codeIataAirport": "OYS", + "codeIataCity": "OYS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8298858", + "latitudeAirport": 37.85, + "longitudeAirport": -119.55, + "nameAirport": "Yosemite Ntl Park", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 5924, + "codeIataAirport": "OZA", + "codeIataCity": "OZA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.716667, + "longitudeAirport": -101.21667, + "nameAirport": "Ozona Municipalcipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 5925, + "codeIataAirport": "OZC", + "codeIataCity": "OZC", + "codeIcaoAirport": "RPMO", + "codeIso2Country": "PH", + "geonameId": "7668423", + "latitudeAirport": 8.181967, + "longitudeAirport": 123.84541, + "nameAirport": "Labo", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "0", + "airportId": 5926, + "codeIataAirport": "OZG", + "codeIataCity": "OZG", + "codeIcaoAirport": "", + "codeIso2Country": "MA", + "geonameId": "8261015", + "latitudeAirport": 30.267143, + "longitudeAirport": -5.852456, + "nameAirport": "Zagora", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "2", + "airportId": 5927, + "codeIataAirport": "OZH", + "codeIataCity": "OZH", + "codeIcaoAirport": "UKDE", + "codeIso2Country": "UA", + "geonameId": "6300955", + "latitudeAirport": 47.8675, + "longitudeAirport": 35.315834, + "nameAirport": "Zaporozhye", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Zaporozhye" + }, + { + "GMT": "1", + "airportId": 5928, + "codeIataAirport": "OZI", + "codeIataCity": "OZI", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 37.6625, + "longitudeAirport": -24.9, + "nameAirport": "Bobadilla", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "0", + "airportId": 5929, + "codeIataAirport": "OZL", + "codeIataCity": "OZL", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Orzola Ferry Port", + "nameCountry": "Spain", + "phone": "", + "timezone": "Atlantic/Canary" + }, + { + "GMT": "1", + "airportId": 5930, + "codeIataAirport": "OZP", + "codeIataCity": "OZP", + "codeIcaoAirport": "LEMO", + "codeIso2Country": "ES", + "geonameId": "6299348", + "latitudeAirport": 37.24917, + "longitudeAirport": -5.759444, + "nameAirport": "Moron", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-6", + "airportId": 5931, + "codeIataAirport": "OZR", + "codeIataCity": "OZR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 31.45, + "longitudeAirport": -85.666664, + "nameAirport": "Cairns AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 5932, + "codeIataAirport": "OZU", + "codeIataCity": "OZU", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "2513601", + "latitudeAirport": 37.6, + "longitudeAirport": -4.633333, + "nameAirport": "Montilla", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "0", + "airportId": 5933, + "codeIataAirport": "OZZ", + "codeIataCity": "OZZ", + "codeIcaoAirport": "GMMZ", + "codeIso2Country": "MA", + "geonameId": "6297217", + "latitudeAirport": 30.916668, + "longitudeAirport": -6.916667, + "nameAirport": "Ouarzazate", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "6.30", + "airportId": 5934, + "codeIataAirport": "PAA", + "codeIataCity": "PAA", + "codeIcaoAirport": "", + "codeIso2Country": "MM", + "geonameId": "8298859", + "latitudeAirport": 16.892778, + "longitudeAirport": 97.67833, + "nameAirport": "Pa-an", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "5.30", + "airportId": 5935, + "codeIataAirport": "PAB", + "codeIataCity": "PAB", + "codeIcaoAirport": "VABI", + "codeIso2Country": "IN", + "geonameId": "6301033", + "latitudeAirport": 31.316668, + "longitudeAirport": 76.833336, + "nameAirport": "Bilaspur", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "airportId": 5936, + "codeIataAirport": "PAC", + "codeIataCity": "PTY", + "codeIcaoAirport": "MPMG", + "codeIso2Country": "PA", + "geonameId": "3704579", + "latitudeAirport": 8.983333, + "longitudeAirport": -79.21667, + "nameAirport": "Paitilla-Marcos A. Gelabert", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "1", + "airportId": 5937, + "codeIataAirport": "PAD", + "codeIataCity": "PAD", + "codeIcaoAirport": "EDLP", + "codeIso2Country": "DE", + "geonameId": "3207070", + "latitudeAirport": 51.610332, + "longitudeAirport": 8.619832, + "nameAirport": "Paderborn/lippstadt", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-8", + "airportId": 5938, + "codeIataAirport": "PAE", + "codeIataCity": "PAE", + "codeIcaoAirport": "KPAE", + "codeIso2Country": "US", + "geonameId": "5810983", + "latitudeAirport": 47.90972, + "longitudeAirport": -122.28445, + "nameAirport": "Snohomish County - Paine Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "airportId": 5939, + "codeIataAirport": "PAF", + "codeIataCity": "PAF", + "codeIcaoAirport": "HUPA", + "codeIso2Country": "UG", + "geonameId": "226837", + "latitudeAirport": 2.2, + "longitudeAirport": 31.616667, + "nameAirport": "Pakuba", + "nameCountry": "Uganda", + "phone": "", + "timezone": "Africa/Kampala" + }, + { + "GMT": "8", + "airportId": 5940, + "codeIataAirport": "PAG", + "codeIataCity": "PAG", + "codeIcaoAirport": "RPMP", + "codeIso2Country": "PH", + "geonameId": "7668424", + "latitudeAirport": 7.826667, + "longitudeAirport": 123.4575, + "nameAirport": "Pagadian", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-6", + "airportId": 5941, + "codeIataAirport": "PAH", + "codeIataCity": "PAH", + "codeIcaoAirport": "KPAH", + "codeIso2Country": "US", + "geonameId": "4283176", + "latitudeAirport": 37.06111, + "longitudeAirport": -88.7725, + "nameAirport": "Barkley Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5", + "airportId": 5942, + "codeIataAirport": "PAJ", + "codeIataCity": "PAJ", + "codeIcaoAirport": "", + "codeIso2Country": "PK", + "geonameId": "0", + "latitudeAirport": 33.9, + "longitudeAirport": 70.1, + "nameAirport": "Para Chinar", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-10", + "airportId": 5943, + "codeIataAirport": "PAK", + "codeIataCity": "PAK", + "codeIcaoAirport": "PHPA", + "codeIso2Country": "US", + "geonameId": "5852586", + "latitudeAirport": 21.933332, + "longitudeAirport": -159.61667, + "nameAirport": "Port Allen", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "-5", + "airportId": 5944, + "codeIataAirport": "PAL", + "codeIataCity": "PAL", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 52.15, + "longitudeAirport": -74.65, + "nameAirport": "Palanquero", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 5945, + "codeIataAirport": "PAM", + "codeIataCity": "PFN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.166668, + "longitudeAirport": -85.683334, + "nameAirport": "Tyndall AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "airportId": 5946, + "codeIataAirport": "PAN", + "codeIataCity": "PAN", + "codeIcaoAirport": "VTSK", + "codeIso2Country": "TH", + "geonameId": "1607978", + "latitudeAirport": 6.777222, + "longitudeAirport": 101.15833, + "nameAirport": "Pattani", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-8", + "airportId": 5947, + "codeIataAirport": "PAO", + "codeIataCity": "PAO", + "codeIcaoAirport": "KPAO", + "codeIso2Country": "US", + "geonameId": "5380749", + "latitudeAirport": 37.460835, + "longitudeAirport": -122.11389, + "nameAirport": "Palo Alto", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 5948, + "codeIataAirport": "PAP", + "codeIataCity": "PAP", + "codeIcaoAirport": "MTPP", + "codeIso2Country": "HT", + "geonameId": "3718423", + "latitudeAirport": 18.575394, + "longitudeAirport": -72.29471, + "nameAirport": "Toussaint Louverture International", + "nameCountry": "Haiti", + "phone": "", + "timezone": "America/Port-au-Prince" + }, + { + "GMT": "-9", + "airportId": 5949, + "codeIataAirport": "PAQ", + "codeIataCity": "PAQ", + "codeIcaoAirport": "PAAQ", + "codeIso2Country": "US", + "geonameId": "5871155", + "latitudeAirport": 61.6, + "longitudeAirport": -149.11667, + "nameAirport": "Palmer Municipalcipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 5950, + "codeIataAirport": "PAS", + "codeIataCity": "PAS", + "codeIcaoAirport": "LGPA", + "codeIso2Country": "GR", + "geonameId": "6299503", + "latitudeAirport": 37.066666, + "longitudeAirport": 25.1, + "nameAirport": "Paros", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "5.30", + "airportId": 5951, + "codeIataAirport": "PAT", + "codeIataCity": "PAT", + "codeIcaoAirport": "VEPT", + "codeIso2Country": "IN", + "geonameId": "6301079", + "latitudeAirport": 25.59489, + "longitudeAirport": 85.09067, + "nameAirport": "Patna", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "6.30", + "airportId": 5952, + "codeIataAirport": "PAU", + "codeIataCity": "PAU", + "codeIcaoAirport": "VYPK", + "codeIso2Country": "MM", + "geonameId": "7731381", + "latitudeAirport": 21.45, + "longitudeAirport": 94.51667, + "nameAirport": "Pauk", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-3", + "airportId": 5953, + "codeIataAirport": "PAV", + "codeIataCity": "PAV", + "codeIcaoAirport": "SBUF", + "codeIso2Country": "BR", + "geonameId": "6300681", + "latitudeAirport": -9.397778, + "longitudeAirport": -38.22222, + "nameAirport": "Paulo Afonso", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "10", + "airportId": 5954, + "codeIataAirport": "PAW", + "codeIataCity": "PAW", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260982", + "latitudeAirport": -11.416667, + "longitudeAirport": 154.03334, + "nameAirport": "Pambwa", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 5955, + "codeIataAirport": "PAX", + "codeIataCity": "PAX", + "codeIcaoAirport": "", + "codeIso2Country": "HT", + "geonameId": "0", + "latitudeAirport": 19.933332, + "longitudeAirport": -72.84167, + "nameAirport": "Port De Paix", + "nameCountry": "Haiti", + "phone": "", + "timezone": "America/Port-au-Prince" + }, + { + "GMT": "8", + "airportId": 5956, + "codeIataAirport": "PAY", + "codeIataCity": "PAY", + "codeIcaoAirport": "WBKP", + "codeIso2Country": "MY", + "geonameId": "7731382", + "latitudeAirport": 5.993056, + "longitudeAirport": 117.39445, + "nameAirport": "Pamol", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-6", + "airportId": 5957, + "codeIataAirport": "PAZ", + "codeIataCity": "PAZ", + "codeIcaoAirport": "MMPA", + "codeIso2Country": "MX", + "geonameId": "6299863", + "latitudeAirport": 20.516666, + "longitudeAirport": -97.467224, + "nameAirport": "Tajin", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-9", + "airportId": 5958, + "codeIataAirport": "PBA", + "codeIataCity": "BRW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 71.28333, + "longitudeAirport": -156.76666, + "nameAirport": "Point Barrow", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "airportId": 5959, + "codeIataAirport": "PBB", + "codeIataCity": "PBB", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8298812", + "latitudeAirport": -19.666668, + "longitudeAirport": -51.183334, + "nameAirport": "Paranaiba", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Campo_Grande" + }, + { + "GMT": "-6", + "airportId": 5960, + "codeIataAirport": "PBC", + "codeIataCity": "PBC", + "codeIcaoAirport": "MMPB", + "codeIso2Country": "MX", + "geonameId": "6299864", + "latitudeAirport": 19.135, + "longitudeAirport": -98.3675, + "nameAirport": "Hermanos Serdan International", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "5.30", + "airportId": 5961, + "codeIataAirport": "PBD", + "codeIataCity": "PBD", + "codeIcaoAirport": "VAPR", + "codeIso2Country": "IN", + "geonameId": "7668578", + "latitudeAirport": 21.647223, + "longitudeAirport": 69.656944, + "nameAirport": "Porbandar", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "airportId": 5962, + "codeIataAirport": "PBE", + "codeIataCity": "PBE", + "codeIcaoAirport": "SKPR", + "codeIso2Country": "CO", + "geonameId": "7731383", + "latitudeAirport": 6.483333, + "longitudeAirport": -74.48333, + "nameAirport": "Puerto Berrio", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 5963, + "codeIataAirport": "PBF", + "codeIataCity": "PBF", + "codeIcaoAirport": "KPBF", + "codeIso2Country": "US", + "geonameId": "4126226", + "latitudeAirport": 34.175556, + "longitudeAirport": -91.935555, + "nameAirport": "Grider Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 5964, + "codeIataAirport": "PBG", + "codeIataCity": "PBG", + "codeIcaoAirport": "KPBG", + "codeIso2Country": "US", + "geonameId": "6298872", + "latitudeAirport": 44.7, + "longitudeAirport": -73.48333, + "nameAirport": "Plattsburgh International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "6", + "airportId": 5965, + "codeIataAirport": "PBH", + "codeIataCity": "PBH", + "codeIcaoAirport": "VQPR", + "codeIso2Country": "BT", + "geonameId": "7668639", + "latitudeAirport": 27.433332, + "longitudeAirport": 89.416664, + "nameAirport": "Paro", + "nameCountry": "Bhutan", + "phone": "", + "timezone": "Asia/Thimphu" + }, + { + "GMT": "-5", + "airportId": 5966, + "codeIataAirport": "PBI", + "codeIataCity": "PBI", + "codeIcaoAirport": "KPBI", + "codeIso2Country": "US", + "geonameId": "6298874", + "latitudeAirport": 26.688885, + "longitudeAirport": -80.09044, + "nameAirport": "Palm Beach International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "11", + "airportId": 5967, + "codeIataAirport": "PBJ", + "codeIataCity": "PBJ", + "codeIcaoAirport": "NVSI", + "codeIso2Country": "VU", + "geonameId": "7730711", + "latitudeAirport": -16.433332, + "longitudeAirport": 168.21666, + "nameAirport": "Paama", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-9", + "airportId": 5968, + "codeIataAirport": "PBK", + "codeIataCity": "PBK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8298929", + "latitudeAirport": 57.8, + "longitudeAirport": -134.7, + "nameAirport": "Pack Creek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "airportId": 5969, + "codeIataAirport": "PBL", + "codeIataCity": "PBL", + "codeIcaoAirport": "SVPC", + "codeIso2Country": "VE", + "geonameId": "6300866", + "latitudeAirport": 10.479167, + "longitudeAirport": -68.07361, + "nameAirport": "Puerto Cabello", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-3", + "airportId": 5970, + "codeIataAirport": "PBM", + "codeIataCity": "PBM", + "codeIcaoAirport": "SMJP", + "codeIso2Country": "SR", + "geonameId": "6300795", + "latitudeAirport": 5.451389, + "longitudeAirport": -55.191113, + "nameAirport": "Zanderij International", + "nameCountry": "Suriname", + "phone": "", + "timezone": "America/Paramaribo" + }, + { + "GMT": "1", + "airportId": 5971, + "codeIataAirport": "PBN", + "codeIataCity": "PBN", + "codeIcaoAirport": "FNPA", + "codeIso2Country": "AO", + "geonameId": "7668252", + "latitudeAirport": -10.7, + "longitudeAirport": 13.75, + "nameAirport": "Porto Amboim", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "8", + "airportId": 5972, + "codeIataAirport": "PBO", + "codeIataCity": "PBO", + "codeIcaoAirport": "APPB", + "codeIso2Country": "AU", + "geonameId": "7668756", + "latitudeAirport": -23.173908, + "longitudeAirport": 117.748, + "nameAirport": "Paraburdoo", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "airportId": 5973, + "codeIataAirport": "PBP", + "codeIataCity": "PBP", + "codeIcaoAirport": "MRIA", + "codeIso2Country": "CR", + "geonameId": "7668358", + "latitudeAirport": 10.416667, + "longitudeAirport": -85.166664, + "nameAirport": "Punta Islita", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-4", + "airportId": 5974, + "codeIataAirport": "PBQ", + "codeIataCity": "PBQ", + "codeIcaoAirport": "SWPM", + "codeIso2Country": "BR", + "geonameId": "7731384", + "latitudeAirport": -11.7, + "longitudeAirport": -61.2, + "nameAirport": "Pimenta Bueno", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Porto_Velho" + }, + { + "GMT": "-6", + "airportId": 5975, + "codeIataAirport": "PBR", + "codeIataCity": "PBR", + "codeIcaoAirport": "MGPB", + "codeIso2Country": "GT", + "geonameId": "6299803", + "latitudeAirport": 15.723056, + "longitudeAirport": -88.60611, + "nameAirport": "Puerto Barrios", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "7", + "airportId": 5976, + "codeIataAirport": "PBS", + "codeIataCity": "PBS", + "codeIcaoAirport": "", + "codeIso2Country": "TH", + "geonameId": "6941772", + "latitudeAirport": 7.895278, + "longitudeAirport": 98.291664, + "nameAirport": "Patong Beach", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-4", + "airportId": 5977, + "codeIataAirport": "PBT", + "codeIataCity": "PBT", + "codeIcaoAirport": "", + "codeIso2Country": "PY", + "geonameId": "7731385", + "latitudeAirport": -20.616667, + "longitudeAirport": -58.026943, + "nameAirport": "Puerto Leda", + "nameCountry": "Paraguay", + "phone": "", + "timezone": "America/Asuncion" + }, + { + "GMT": "6.30", + "airportId": 5978, + "codeIataAirport": "PBU", + "codeIataCity": "PBU", + "codeIcaoAirport": "VYPT", + "codeIso2Country": "MM", + "geonameId": "0", + "latitudeAirport": 27.333332, + "longitudeAirport": 97.416664, + "nameAirport": "Putao", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-4", + "airportId": 5979, + "codeIataAirport": "PBV", + "codeIataCity": "PBV", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8260888", + "latitudeAirport": -11.516667, + "longitudeAirport": -57.333332, + "nameAirport": "Porto Dos Gauchos", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "8", + "airportId": 5980, + "codeIataAirport": "PBW", + "codeIataCity": "PBW", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "0", + "latitudeAirport": 9.53, + "longitudeAirport": -0.22, + "nameAirport": "Palibelo", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-4", + "airportId": 5981, + "codeIataAirport": "PBX", + "codeIataCity": "PBX", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8299066", + "latitudeAirport": -10.860833, + "longitudeAirport": -51.684444, + "nameAirport": "Porto Alegre Do Norte", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "10", + "airportId": 5982, + "codeIataAirport": "PBY", + "codeIataCity": "PBY", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -20.283333, + "longitudeAirport": 148.83333, + "nameAirport": "Hamilton/Proserpine", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "airportId": 5983, + "codeIataAirport": "PBZ", + "codeIataCity": "PBZ", + "codeIcaoAirport": "FAPG", + "codeIso2Country": "ZA", + "geonameId": "6296918", + "latitudeAirport": -34.0875, + "longitudeAirport": 23.329166, + "nameAirport": "Plettenberg Bay", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-9", + "airportId": 5984, + "codeIataAirport": "PCA", + "codeIataCity": "PCA", + "codeIcaoAirport": "MMPC", + "codeIso2Country": "US", + "geonameId": "5871977", + "latitudeAirport": 58.90139, + "longitudeAirport": -157.70195, + "nameAirport": "Portage Creek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "airportId": 5985, + "codeIataAirport": "PCB", + "codeIataCity": "PCB", + "codeIcaoAirport": "WIHP", + "codeIso2Country": "ID", + "geonameId": "7668675", + "latitudeAirport": -6.35, + "longitudeAirport": 106.76667, + "nameAirport": "Pondok Cabe", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-5", + "airportId": 5986, + "codeIataAirport": "PCC", + "codeIataCity": "PCC", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 1.9, + "longitudeAirport": -75.15, + "nameAirport": "Puerto Rico", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 5987, + "codeIataAirport": "PCD", + "codeIataCity": "PCD", + "codeIcaoAirport": "KPDC", + "codeIso2Country": "US", + "geonameId": "5267942", + "latitudeAirport": 43.016666, + "longitudeAirport": -91.11667, + "nameAirport": "Prairie du Chien Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 5988, + "codeIataAirport": "PCE", + "codeIataCity": "PCE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299016", + "latitudeAirport": 57.164165, + "longitudeAirport": -157.43306, + "nameAirport": "Painter Creek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 5989, + "codeIataAirport": "PCF", + "codeIataCity": "PCF", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "964349", + "latitudeAirport": -26.71667, + "longitudeAirport": 27.1, + "nameAirport": "Potchefstroom", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-6", + "airportId": 5990, + "codeIataAirport": "PCG", + "codeIataCity": "PCG", + "codeIcaoAirport": "", + "codeIso2Country": "GT", + "geonameId": "7731386", + "latitudeAirport": 17.26, + "longitudeAirport": -90.24722, + "nameAirport": "Paso Caballos", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "-6", + "airportId": 5991, + "codeIataAirport": "PCH", + "codeIataCity": "PCH", + "codeIcaoAirport": "", + "codeIso2Country": "HN", + "geonameId": "3604104", + "latitudeAirport": 15.0, + "longitudeAirport": -89.0, + "nameAirport": "Palacios", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-4", + "airportId": 5992, + "codeIataAirport": "PCJ", + "codeIataCity": "PCJ", + "codeIcaoAirport": "", + "codeIso2Country": "PY", + "geonameId": "7731387", + "latitudeAirport": -22.268888, + "longitudeAirport": -57.92861, + "nameAirport": "Puerto La Victoria", + "nameCountry": "Paraguay", + "phone": "", + "timezone": "America/Asuncion" + }, + { + "GMT": "-9", + "airportId": 5993, + "codeIataAirport": "PCK", + "codeIataCity": "PCK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 67.22889, + "longitudeAirport": -150.28334, + "nameAirport": "Porcupine Creek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 5994, + "codeIataAirport": "PCL", + "codeIataCity": "PCL", + "codeIcaoAirport": "SPCL", + "codeIso2Country": "PE", + "geonameId": "6300799", + "latitudeAirport": -8.333333, + "longitudeAirport": -74.63333, + "nameAirport": "Captain Rolden International Airport", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "-5", + "airportId": 5995, + "codeIataAirport": "PCM", + "codeIataCity": "PCM", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "7731388", + "latitudeAirport": 20.6, + "longitudeAirport": -87.1, + "nameAirport": "Playa Del Carmen", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Cancun" + }, + { + "GMT": "12", + "airportId": 5996, + "codeIataAirport": "PCN", + "codeIataCity": "PCN", + "codeIcaoAirport": "NZPN", + "codeIso2Country": "NZ", + "geonameId": "7730730", + "latitudeAirport": -41.35, + "longitudeAirport": 174.03334, + "nameAirport": "Koromiko", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-7", + "airportId": 5997, + "codeIataAirport": "PCO", + "codeIataCity": "PCO", + "codeIcaoAirport": "MMPL", + "codeIso2Country": "MX", + "geonameId": "8298893", + "latitudeAirport": 23.583332, + "longitudeAirport": -109.5, + "nameAirport": "Punta Colorada", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mazatlan" + }, + { + "GMT": "0", + "airportId": 5998, + "codeIataAirport": "PCP", + "codeIataCity": "PCP", + "codeIcaoAirport": "FPPR", + "codeIso2Country": "ST", + "geonameId": "6297078", + "latitudeAirport": 1.666667, + "longitudeAirport": 7.416667, + "nameAirport": "Principe", + "nameCountry": "Sao Tome and Principe", + "phone": "", + "timezone": "Africa/Sao_Tome" + }, + { + "GMT": "7", + "airportId": 5999, + "codeIataAirport": "PCQ", + "codeIataCity": "PCQ", + "codeIcaoAirport": "", + "codeIso2Country": "LA", + "geonameId": "8260755", + "latitudeAirport": 21.645832, + "longitudeAirport": 101.90583, + "nameAirport": "Bounneua", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-5", + "airportId": 6000, + "codeIataAirport": "PCR", + "codeIataCity": "PCR", + "codeIcaoAirport": "SKPC", + "codeIso2Country": "CO", + "geonameId": "6300750", + "latitudeAirport": 6.183333, + "longitudeAirport": -67.63333, + "nameAirport": "Puerto Carreno", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "airportId": 6001, + "codeIataAirport": "PCS", + "codeIataCity": "PCS", + "codeIcaoAirport": "SNPC", + "codeIso2Country": "BR", + "geonameId": "7731389", + "latitudeAirport": -7.083333, + "longitudeAirport": -41.466667, + "nameAirport": "Picos", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-5", + "airportId": 6002, + "codeIataAirport": "PCT", + "codeIataCity": "PCT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5102923", + "latitudeAirport": 40.35, + "longitudeAirport": -74.65, + "nameAirport": "Princeton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 6003, + "codeIataAirport": "PCU", + "codeIataCity": "PCU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4440975", + "latitudeAirport": 30.433332, + "longitudeAirport": -89.683334, + "nameAirport": "Pearl River County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 6004, + "codeIataAirport": "PCV", + "codeIataCity": "PCV", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "7731390", + "latitudeAirport": 27.083332, + "longitudeAirport": -112.0, + "nameAirport": "Punta Chivato", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mazatlan" + }, + { + "GMT": "-5", + "airportId": 6005, + "codeIataAirport": "PDA", + "codeIataCity": "PDA", + "codeIcaoAirport": "SKPD", + "codeIso2Country": "CO", + "geonameId": "7668466", + "latitudeAirport": 3.883333, + "longitudeAirport": -67.88333, + "nameAirport": "Puerto Inirida", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-9", + "airportId": 6006, + "codeIataAirport": "PDB", + "codeIataCity": "PDB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5871372", + "latitudeAirport": 59.783333, + "longitudeAirport": -154.11667, + "nameAirport": "Pedro Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "11", + "airportId": 6007, + "codeIataAirport": "PDC", + "codeIataCity": "PDC", + "codeIcaoAirport": "NWWQ", + "codeIso2Country": "NC", + "geonameId": "7730726", + "latitudeAirport": -21.316668, + "longitudeAirport": 165.0, + "nameAirport": "Mueo", + "nameCountry": "New Caledonia", + "phone": "", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "2", + "airportId": 6008, + "codeIataAirport": "PDD", + "codeIataCity": "PDD", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "8298900", + "latitudeAirport": -26.783056, + "longitudeAirport": 32.880554, + "nameAirport": "Ponta de Ouro", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "9.30", + "airportId": 6009, + "codeIataAirport": "PDE", + "codeIataCity": "PDE", + "codeIcaoAirport": "YPDI", + "codeIso2Country": "AU", + "geonameId": "7731391", + "latitudeAirport": -26.0, + "longitudeAirport": 138.66667, + "nameAirport": "Pandie Pandie", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-3", + "airportId": 6010, + "codeIataAirport": "PDF", + "codeIataCity": "PDF", + "codeIcaoAirport": "SNRD", + "codeIso2Country": "BR", + "geonameId": "7731392", + "latitudeAirport": -17.35, + "longitudeAirport": -39.216667, + "nameAirport": "Prado", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "7", + "airportId": 6011, + "codeIataAirport": "PDG", + "codeIataCity": "PDG", + "codeIcaoAirport": "WIMG", + "codeIso2Country": "ID", + "geonameId": "6301236", + "latitudeAirport": -0.786667, + "longitudeAirport": 100.280556, + "nameAirport": "Minangkabau International Airport", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "10", + "airportId": 6012, + "codeIataAirport": "PDI", + "codeIataCity": "PDI", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2088350", + "latitudeAirport": -6.5, + "longitudeAirport": 147.58333, + "nameAirport": "Pindiu", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 6013, + "codeIataAirport": "PDK", + "codeIataCity": "ATL", + "codeIcaoAirport": "KPDK", + "codeIso2Country": "US", + "geonameId": "4191027", + "latitudeAirport": 33.88333, + "longitudeAirport": -84.25, + "nameAirport": "Dekalb-Peachtree", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-1", + "airportId": 6014, + "codeIataAirport": "PDL", + "codeIataCity": "PDL", + "codeIcaoAirport": "LPPD", + "codeIso2Country": "PT", + "geonameId": "6299687", + "latitudeAirport": 37.743847, + "longitudeAirport": -25.696468, + "nameAirport": "Nordela (São Miguel Island)", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Atlantic/Azores" + }, + { + "GMT": "9.30", + "airportId": 6015, + "codeIataAirport": "PDN", + "codeIataCity": "PDN", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298932", + "latitudeAirport": -35.916668, + "longitudeAirport": 138.08333, + "nameAirport": "Parndana", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "7", + "airportId": 6016, + "codeIataAirport": "PDO", + "codeIataCity": "PDO", + "codeIcaoAirport": "WIPQ", + "codeIso2Country": "ID", + "geonameId": "7730236", + "latitudeAirport": -3.283333, + "longitudeAirport": 103.86667, + "nameAirport": "Pendopo", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-3", + "airportId": 6017, + "codeIataAirport": "PDP", + "codeIataCity": "PDP", + "codeIcaoAirport": "SUPE", + "codeIso2Country": "UY", + "geonameId": "6300830", + "latitudeAirport": -34.914444, + "longitudeAirport": -54.919167, + "nameAirport": "Capitan Corbeta CA Curbelo International Airport", + "nameCountry": "Uruguay", + "phone": "", + "timezone": "America/Montevideo" + }, + { + "GMT": "-3", + "airportId": 6018, + "codeIataAirport": "PDR", + "codeIataCity": "PDR", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8298805", + "latitudeAirport": -5.311111, + "longitudeAirport": -44.480278, + "nameAirport": "Presidente Dutra", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-6", + "airportId": 6019, + "codeIataAirport": "PDS", + "codeIataCity": "PDS", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "0", + "latitudeAirport": 28.7, + "longitudeAirport": -100.51667, + "nameAirport": "Piedras Negras", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Matamoros" + }, + { + "GMT": "-8", + "airportId": 6020, + "codeIataAirport": "PDT", + "codeIataCity": "PDT", + "codeIcaoAirport": "KPDT", + "codeIso2Country": "US", + "geonameId": "5745389", + "latitudeAirport": 45.698334, + "longitudeAirport": -118.83611, + "nameAirport": "Pendleton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "airportId": 6021, + "codeIataAirport": "PDU", + "codeIataCity": "PDU", + "codeIcaoAirport": "SUPU", + "codeIso2Country": "UY", + "geonameId": "6300835", + "latitudeAirport": -32.365833, + "longitudeAirport": -58.064167, + "nameAirport": "Paysandu", + "nameCountry": "Uruguay", + "phone": "", + "timezone": "America/Montevideo" + }, + { + "GMT": "2", + "airportId": 6022, + "codeIataAirport": "PDV", + "codeIataCity": "PDV", + "codeIcaoAirport": "LBPD", + "codeIso2Country": "BG", + "geonameId": "6299307", + "latitudeAirport": 42.3, + "longitudeAirport": 24.716667, + "nameAirport": "Plovdiv", + "nameCountry": "Bulgaria", + "phone": "", + "timezone": "Europe/Sofia" + }, + { + "GMT": "-8", + "airportId": 6023, + "codeIataAirport": "PDX", + "codeIataCity": "PDX", + "codeIcaoAirport": "KPDX", + "codeIso2Country": "US", + "geonameId": "5746563", + "latitudeAirport": 45.588997, + "longitudeAirport": -122.5929, + "nameAirport": "Portland International", + "nameCountry": "United States", + "phone": "+1 503 460 4234", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "airportId": 6024, + "codeIataAirport": "PDZ", + "codeIataCity": "PDZ", + "codeIcaoAirport": "SVPE", + "codeIso2Country": "VE", + "geonameId": "7731393", + "latitudeAirport": 9.966667, + "longitudeAirport": -62.233334, + "nameAirport": "Pedernales", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "9.30", + "airportId": 6025, + "codeIataAirport": "PEA", + "codeIataCity": "PEA", + "codeIcaoAirport": "YPSH", + "codeIso2Country": "AU", + "geonameId": "7731394", + "latitudeAirport": -35.733334, + "longitudeAirport": 137.93333, + "nameAirport": "Penneshaw", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "2", + "airportId": 6026, + "codeIataAirport": "PEB", + "codeIataCity": "PEB", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "1028970", + "latitudeAirport": -17.166668, + "longitudeAirport": 38.13333, + "nameAirport": "Pebane", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-9", + "airportId": 6027, + "codeIataAirport": "PEC", + "codeIataCity": "PEC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5556309", + "latitudeAirport": 57.95, + "longitudeAirport": -136.23334, + "nameAirport": "Pelican SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 6028, + "codeIataAirport": "PED", + "codeIataCity": "PED", + "codeIcaoAirport": "LKPD", + "codeIso2Country": "CZ", + "geonameId": "7668321", + "latitudeAirport": 50.013332, + "longitudeAirport": 15.738611, + "nameAirport": "Pardubice", + "nameCountry": "Czech Republic", + "phone": "", + "timezone": "Europe/Prague" + }, + { + "GMT": "5", + "airportId": 6029, + "codeIataAirport": "PEE", + "codeIataCity": "PEE", + "codeIcaoAirport": "USPP", + "codeIso2Country": "RU", + "geonameId": "6301002", + "latitudeAirport": 57.920025, + "longitudeAirport": 56.01918, + "nameAirport": "Bolshoye Savino", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "1", + "airportId": 6030, + "codeIataAirport": "PEF", + "codeIataCity": "PEF", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 54.166668, + "longitudeAirport": 13.766667, + "nameAirport": "Peenemuende", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 6031, + "codeIataAirport": "PEG", + "codeIataCity": "PEG", + "codeIcaoAirport": "LIRZ", + "codeIso2Country": "IT", + "geonameId": "6299634", + "latitudeAirport": 43.13333, + "longitudeAirport": 12.366667, + "nameAirport": "Sant Egidio", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-3", + "airportId": 6032, + "codeIataAirport": "PEH", + "codeIataCity": "PEH", + "codeIcaoAirport": "SAZP", + "codeIso2Country": "AR", + "geonameId": "6300587", + "latitudeAirport": -35.85, + "longitudeAirport": -61.86667, + "nameAirport": "Pehuajo", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "-5", + "airportId": 6033, + "codeIataAirport": "PEI", + "codeIataCity": "PEI", + "codeIcaoAirport": "SKPE", + "codeIso2Country": "CO", + "geonameId": "6300751", + "latitudeAirport": 4.815945, + "longitudeAirport": -75.736534, + "nameAirport": "Matecana", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "airportId": 6034, + "codeIataAirport": "PEJ", + "codeIataCity": "PEJ", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 41.701668, + "longitudeAirport": 15.730556, + "nameAirport": "Peschiei", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "8", + "airportId": 6035, + "codeIataAirport": "PEK", + "codeIataCity": "BJS", + "codeIcaoAirport": "ZBAA", + "codeIso2Country": "CN", + "geonameId": "6301354", + "latitudeAirport": 40.078537, + "longitudeAirport": 116.5871, + "nameAirport": "Beijing Capital International", + "nameCountry": "China", + "phone": "010-64541100", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "airportId": 6036, + "codeIataAirport": "PEL", + "codeIataCity": "PEL", + "codeIcaoAirport": "FXPG", + "codeIso2Country": "LS", + "geonameId": "7730540", + "latitudeAirport": -30.55, + "longitudeAirport": 27.916668, + "nameAirport": "Pelaneng", + "nameCountry": "Lesotho", + "phone": "", + "timezone": "Africa/Maseru" + }, + { + "GMT": "-5", + "airportId": 6037, + "codeIataAirport": "PEM", + "codeIataCity": "PEM", + "codeIcaoAirport": "SPTU", + "codeIso2Country": "PE", + "geonameId": "6300822", + "latitudeAirport": -12.583333, + "longitudeAirport": -69.23333, + "nameAirport": "Puerto Maldonado", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "8", + "airportId": 6038, + "codeIataAirport": "PEN", + "codeIataCity": "PEN", + "codeIcaoAirport": "WMKP", + "codeIso2Country": "MY", + "geonameId": "6301257", + "latitudeAirport": 5.292961, + "longitudeAirport": 100.265175, + "nameAirport": "Penang International", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "9.30", + "airportId": 6039, + "codeIataAirport": "PEP", + "codeIataCity": "PEP", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731395", + "latitudeAirport": -14.15, + "longitudeAirport": 130.1, + "nameAirport": "Peppimenarti", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-6", + "airportId": 6040, + "codeIataAirport": "PEQ", + "codeIataCity": "PEQ", + "codeIcaoAirport": "KPEQ", + "codeIso2Country": "US", + "geonameId": "5528191", + "latitudeAirport": 31.433332, + "longitudeAirport": -103.5, + "nameAirport": "Pecos City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 6041, + "codeIataAirport": "PER", + "codeIataCity": "PER", + "codeIcaoAirport": "YPPH", + "codeIso2Country": "AU", + "geonameId": "2079187", + "latitudeAirport": -31.933603, + "longitudeAirport": 115.960236, + "nameAirport": "Perth International", + "nameCountry": "Australia", + "phone": "+61 8 9478 88", + "timezone": "Australia/Perth" + }, + { + "GMT": "3", + "airportId": 6042, + "codeIataAirport": "PES", + "codeIataCity": "PES", + "codeIcaoAirport": "ULPB", + "codeIso2Country": "RU", + "geonameId": "7668520", + "latitudeAirport": 61.683334, + "longitudeAirport": 34.333332, + "nameAirport": "Petrozavodsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-3", + "airportId": 6043, + "codeIataAirport": "PET", + "codeIataCity": "PET", + "codeIcaoAirport": "SBPK", + "codeIso2Country": "BR", + "geonameId": "6300655", + "latitudeAirport": -31.718056, + "longitudeAirport": -52.324444, + "nameAirport": "Federal", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "airportId": 6044, + "codeIataAirport": "PEU", + "codeIataCity": "PEU", + "codeIcaoAirport": "MHPL", + "codeIso2Country": "HN", + "geonameId": "3603157", + "latitudeAirport": 15.216667, + "longitudeAirport": -83.76667, + "nameAirport": "Puerto Lempira", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "1", + "airportId": 6045, + "codeIataAirport": "PEV", + "codeIataCity": "PEV", + "codeIcaoAirport": "LHPP", + "codeIso2Country": "HU", + "geonameId": "6299526", + "latitudeAirport": 45.99083, + "longitudeAirport": 18.24083, + "nameAirport": "Pecs Pogany", + "nameCountry": "Hungary", + "phone": "", + "timezone": "Europe/Budapest" + }, + { + "GMT": "5", + "airportId": 6046, + "codeIataAirport": "PEW", + "codeIataCity": "PEW", + "codeIcaoAirport": "OPPS", + "codeIso2Country": "PK", + "geonameId": "6300117", + "latitudeAirport": 33.989082, + "longitudeAirport": 71.51925, + "nameAirport": "Peshawar", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "3", + "airportId": 6047, + "codeIataAirport": "PEX", + "codeIataCity": "PEX", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "7668558", + "latitudeAirport": 65.11667, + "longitudeAirport": 57.13333, + "nameAirport": "Pechora", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "9.30", + "airportId": 6048, + "codeIataAirport": "PEY", + "codeIataCity": "PEY", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2063588", + "latitudeAirport": -31.916668, + "longitudeAirport": 133.01666, + "nameAirport": "Penong", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "3", + "airportId": 6049, + "codeIataAirport": "PEZ", + "codeIataCity": "PEZ", + "codeIcaoAirport": "UWPP", + "codeIso2Country": "RU", + "geonameId": "6301025", + "latitudeAirport": 53.11852, + "longitudeAirport": 45.02305, + "nameAirport": "Penza", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-9", + "airportId": 6050, + "codeIataAirport": "PFA", + "codeIataCity": "PFA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299208", + "latitudeAirport": 58.666668, + "longitudeAirport": -156.83333, + "nameAirport": "Paf Warren", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "airportId": 6051, + "codeIataAirport": "PFB", + "codeIataCity": "PFB", + "codeIcaoAirport": "SBPF", + "codeIso2Country": "BR", + "geonameId": "6300653", + "latitudeAirport": -28.25, + "longitudeAirport": -52.333332, + "nameAirport": "Passo Fundo", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "airportId": 6052, + "codeIataAirport": "PFC", + "codeIataCity": "PFC", + "codeIcaoAirport": "KPFC", + "codeIso2Country": "US", + "geonameId": "5744637", + "latitudeAirport": 45.233334, + "longitudeAirport": -123.95, + "nameAirport": "Pacific City State", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-9", + "airportId": 6053, + "codeIataAirport": "PFD", + "codeIataCity": "PFD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299042", + "latitudeAirport": 57.95, + "longitudeAirport": -135.65, + "nameAirport": "Port Frederick", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 6054, + "codeIataAirport": "PFJ", + "codeIataCity": "PFJ", + "codeIcaoAirport": "BIPA", + "codeIso2Country": "IS", + "geonameId": "7668105", + "latitudeAirport": 65.03333, + "longitudeAirport": -19.008333, + "nameAirport": "Patreksfjordur", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "1", + "airportId": 6055, + "codeIataAirport": "PFL", + "codeIataCity": "PRG", + "codeIcaoAirport": "", + "codeIso2Country": "CZ", + "geonameId": "0", + "latitudeAirport": 50.0878114, + "longitudeAirport": 14.4204598, + "nameAirport": "Florenc Bus Station", + "nameCountry": "Czech Republic", + "phone": "", + "timezone": "Europe/Prague" + }, + { + "GMT": "2", + "airportId": 6056, + "codeIataAirport": "PFO", + "codeIataCity": "PFO", + "codeIcaoAirport": "LCPH", + "codeIso2Country": "CY", + "geonameId": "414582", + "latitudeAirport": 34.71155, + "longitudeAirport": 32.489105, + "nameAirport": "Paphos International Airport", + "nameCountry": "Cyprus", + "phone": "+357 26 00700", + "timezone": "Asia/Nicosia" + }, + { + "GMT": "3.30", + "airportId": 6057, + "codeIataAirport": "PFQ", + "codeIataCity": "PFQ", + "codeIcaoAirport": "OITP", + "codeIso2Country": "IR", + "geonameId": "388962", + "latitudeAirport": 39.60689, + "longitudeAirport": 47.87752, + "nameAirport": "Parsabad", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "2", + "airportId": 6058, + "codeIataAirport": "PFR", + "codeIataCity": "PFR", + "codeIcaoAirport": "FZVS", + "codeIso2Country": "CD", + "geonameId": "6297164", + "latitudeAirport": -4.316667, + "longitudeAirport": 20.583332, + "nameAirport": "Ilebo", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-7", + "airportId": 6059, + "codeIataAirport": "PGA", + "codeIataCity": "PGA", + "codeIcaoAirport": "KPGA", + "codeIso2Country": "US", + "geonameId": "5307784", + "latitudeAirport": 36.926388, + "longitudeAirport": -111.44722, + "nameAirport": "Page", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "10", + "airportId": 6060, + "codeIataAirport": "PGB", + "codeIataCity": "PGB", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2088662", + "latitudeAirport": -7.016667, + "longitudeAirport": 141.55, + "nameAirport": "Pangoa", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 6061, + "codeIataAirport": "PGC", + "codeIataCity": "PGC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.0, + "longitudeAirport": -79.11667, + "nameAirport": "Grant County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 6062, + "codeIataAirport": "PGD", + "codeIataCity": "PGD", + "codeIcaoAirport": "KPGD", + "codeIso2Country": "US", + "geonameId": "4169452", + "latitudeAirport": 26.919167, + "longitudeAirport": -81.99139, + "nameAirport": "Charlotte County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 6063, + "codeIataAirport": "PGE", + "codeIataCity": "PGE", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299245", + "latitudeAirport": -7.133333, + "longitudeAirport": 146.15, + "nameAirport": "Yegepa", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 6064, + "codeIataAirport": "PGF", + "codeIataCity": "PGF", + "codeIcaoAirport": "LFMP", + "codeIso2Country": "FR", + "geonameId": "6299420", + "latitudeAirport": 42.741016, + "longitudeAirport": 2.868183, + "nameAirport": "Llabanere", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-3", + "airportId": 6065, + "codeIataAirport": "PGG", + "codeIataCity": "PGG", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8260890", + "latitudeAirport": -6.954167, + "longitudeAirport": -55.46111, + "nameAirport": "Progresso", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Santarem" + }, + { + "GMT": "5.30", + "airportId": 6066, + "codeIataAirport": "PGH", + "codeIataCity": "PGH", + "codeIcaoAirport": "VIPT", + "codeIso2Country": "IN", + "geonameId": "7730218", + "latitudeAirport": 29.031944, + "longitudeAirport": 79.47361, + "nameAirport": "Pantnagar", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "airportId": 6067, + "codeIataAirport": "PGI", + "codeIataCity": "PGI", + "codeIcaoAirport": "FNCH", + "codeIso2Country": "AO", + "geonameId": "145778", + "latitudeAirport": -7.333333, + "longitudeAirport": 20.8, + "nameAirport": "Chitato", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "7", + "airportId": 6068, + "codeIataAirport": "PGK", + "codeIataCity": "PGK", + "codeIcaoAirport": "WIKK", + "codeIso2Country": "ID", + "geonameId": "6301232", + "latitudeAirport": -2.164017, + "longitudeAirport": 106.13707, + "nameAirport": "Pangkalpinang", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-6", + "airportId": 6069, + "codeIataAirport": "PGL", + "codeIataCity": "PGL", + "codeIcaoAirport": "KPQL", + "codeIso2Country": "US", + "geonameId": "8113387", + "latitudeAirport": 30.383333, + "longitudeAirport": -88.51667, + "nameAirport": "Jackson County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 6070, + "codeIataAirport": "PGM", + "codeIataCity": "PGM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5871953", + "latitudeAirport": 59.35, + "longitudeAirport": -151.83333, + "nameAirport": "Port Graham", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 6071, + "codeIataAirport": "PGN", + "codeIataCity": "PGN", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2088666", + "latitudeAirport": -6.3, + "longitudeAirport": 144.2, + "nameAirport": "Pangia", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "airportId": 6072, + "codeIataAirport": "PGO", + "codeIataCity": "PGO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5433784", + "latitudeAirport": 37.268612, + "longitudeAirport": -107.050835, + "nameAirport": "Stevens Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "0", + "airportId": 6073, + "codeIataAirport": "PGP", + "codeIataCity": "PGP", + "codeIcaoAirport": "", + "codeIso2Country": "ST", + "geonameId": "2410892", + "latitudeAirport": 0.033333, + "longitudeAirport": 6.533333, + "nameAirport": "Porto Alegre", + "nameCountry": "Sao Tome and Principe", + "phone": "", + "timezone": "Africa/Sao_Tome" + }, + { + "GMT": "-6", + "airportId": 6074, + "codeIataAirport": "PGR", + "codeIataCity": "PGR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4125388", + "latitudeAirport": 36.033333, + "longitudeAirport": -90.5, + "nameAirport": "Paragould Kirk Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 6075, + "codeIataAirport": "PGS", + "codeIataCity": "PGS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5308335", + "latitudeAirport": 35.533333, + "longitudeAirport": -113.416664, + "nameAirport": "Peach Springs", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "3.30", + "airportId": 6076, + "codeIataAirport": "PGU", + "codeIataCity": "PGU", + "codeIcaoAirport": "OIBP", + "codeIso2Country": "IR", + "geonameId": "7730141", + "latitudeAirport": 27.383959, + "longitudeAirport": 52.735516, + "nameAirport": "Persian Gulf International", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-5", + "airportId": 6077, + "codeIataAirport": "PGV", + "codeIataCity": "PGV", + "codeIcaoAirport": "KPGV", + "codeIso2Country": "US", + "geonameId": "4485641", + "latitudeAirport": 35.63333, + "longitudeAirport": -77.38528, + "nameAirport": "Pitt-Greenville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 6078, + "codeIataAirport": "PGX", + "codeIataCity": "PGX", + "codeIcaoAirport": "LFBX", + "codeIso2Country": "FR", + "geonameId": "6299380", + "latitudeAirport": 45.183334, + "longitudeAirport": 0.716667, + "nameAirport": "Bassillac", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-3", + "airportId": 6079, + "codeIataAirport": "PGZ", + "codeIataCity": "PGZ", + "codeIcaoAirport": "SSZW", + "codeIso2Country": "BR", + "geonameId": "7668479", + "latitudeAirport": -25.083332, + "longitudeAirport": -50.15, + "nameAirport": "Sant'Ana", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "7", + "airportId": 6080, + "codeIataAirport": "PHA", + "codeIataCity": "PHA", + "codeIcaoAirport": "", + "codeIso2Country": "VN", + "geonameId": "0", + "latitudeAirport": 11.633333, + "longitudeAirport": 108.95, + "nameAirport": "Phan Rang", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-3", + "airportId": 6081, + "codeIataAirport": "PHB", + "codeIataCity": "PHB", + "codeIcaoAirport": "SBPB", + "codeIso2Country": "BR", + "geonameId": "6300651", + "latitudeAirport": -2.891667, + "longitudeAirport": -41.738335, + "nameAirport": "Santos Dumont", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "1", + "airportId": 6082, + "codeIataAirport": "PHC", + "codeIataCity": "PHC", + "codeIcaoAirport": "DNPO", + "codeIso2Country": "NG", + "geonameId": "2324773", + "latitudeAirport": 5.006506, + "longitudeAirport": 6.9499, + "nameAirport": "Port Harcourt", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-5", + "airportId": 6083, + "codeIataAirport": "PHD", + "codeIataCity": "PHD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.5, + "longitudeAirport": -81.45, + "nameAirport": "Harry Clever Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 6084, + "codeIataAirport": "PHE", + "codeIataCity": "PHE", + "codeIcaoAirport": "YPPD", + "codeIso2Country": "AU", + "geonameId": "6301336", + "latitudeAirport": -20.377945, + "longitudeAirport": 118.63164, + "nameAirport": "Port Hedland", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "airportId": 6085, + "codeIataAirport": "PHF", + "codeIataCity": "PHF", + "codeIcaoAirport": "KPHF", + "codeIso2Country": "US", + "geonameId": "4776038", + "latitudeAirport": 37.13033, + "longitudeAirport": -76.50282, + "nameAirport": "Newport News/williamsb", + "nameCountry": "United States", + "phone": "757-877-0221", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 6086, + "codeIataAirport": "PHG", + "codeIataCity": "PHC", + "codeIcaoAirport": "DNPM", + "codeIso2Country": "NG", + "geonameId": "7910163", + "latitudeAirport": 4.845833, + "longitudeAirport": 7.020833, + "nameAirport": "Port Harcourt City", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "7", + "airportId": 6087, + "codeIataAirport": "PHH", + "codeIataCity": "PHH", + "codeIcaoAirport": "", + "codeIso2Country": "VN", + "geonameId": "0", + "latitudeAirport": 10.9, + "longitudeAirport": 108.066666, + "nameAirport": "Phan Thiet", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-3", + "airportId": 6088, + "codeIataAirport": "PHI", + "codeIataCity": "PHI", + "codeIcaoAirport": "SNYE", + "codeIso2Country": "BR", + "geonameId": "7731398", + "latitudeAirport": -2.516667, + "longitudeAirport": -45.083332, + "nameAirport": "Pinheiro", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "10", + "airportId": 6089, + "codeIataAirport": "PHJ", + "codeIataCity": "NTL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -32.916668, + "longitudeAirport": 151.76666, + "nameAirport": "Port Hunter", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-5", + "airportId": 6090, + "codeIataAirport": "PHK", + "codeIataCity": "PHK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4167511", + "latitudeAirport": 26.816668, + "longitudeAirport": -80.666664, + "nameAirport": "Palm Beach Co Glades", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 6091, + "codeIataAirport": "PHL", + "codeIataCity": "PHL", + "codeIcaoAirport": "KPHL", + "codeIso2Country": "US", + "geonameId": "4560349", + "latitudeAirport": 39.87641, + "longitudeAirport": -75.2433, + "nameAirport": "Philadelphia International", + "nameCountry": "United States", + "phone": "215-937-6937", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 6092, + "codeIataAirport": "PHN", + "codeIataCity": "PHN", + "codeIcaoAirport": "KPHN", + "codeIso2Country": "US", + "geonameId": "5008113", + "latitudeAirport": 42.913055, + "longitudeAirport": -82.52611, + "nameAirport": "St Clair County International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-9", + "airportId": 6093, + "codeIataAirport": "PHO", + "codeIataCity": "PHO", + "codeIcaoAirport": "PAPO", + "codeIso2Country": "US", + "geonameId": "5871791", + "latitudeAirport": 68.35, + "longitudeAirport": -166.8, + "nameAirport": "Point Hope", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 6094, + "codeIataAirport": "PHP", + "codeIataCity": "PHP", + "codeIcaoAirport": "KPHP", + "codeIso2Country": "US", + "geonameId": "5767898", + "latitudeAirport": 44.333332, + "longitudeAirport": -101.666664, + "nameAirport": "Philip", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "12", + "airportId": 6095, + "codeIataAirport": "PHR", + "codeIataCity": "PHR", + "codeIcaoAirport": "", + "codeIso2Country": "FJ", + "geonameId": "7910240", + "latitudeAirport": -18.2, + "longitudeAirport": 178.05, + "nameAirport": "Pacific Harbor", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "7", + "airportId": 6096, + "codeIataAirport": "PHS", + "codeIataCity": "PHS", + "codeIcaoAirport": "VTPP", + "codeIso2Country": "TH", + "geonameId": "1607708", + "latitudeAirport": 16.771307, + "longitudeAirport": 100.2812, + "nameAirport": "Phitsanulok", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-6", + "airportId": 6097, + "codeIataAirport": "PHT", + "codeIataCity": "PHT", + "codeIcaoAirport": "KPHT", + "codeIso2Country": "US", + "geonameId": "4647963", + "latitudeAirport": 36.33361, + "longitudeAirport": -88.38333, + "nameAirport": "Henry County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "airportId": 6098, + "codeIataAirport": "PHU", + "codeIataCity": "PHU", + "codeIcaoAirport": "", + "codeIso2Country": "VN", + "geonameId": "8298896", + "latitudeAirport": 9.95, + "longitudeAirport": 106.333336, + "nameAirport": "Phu Vinh", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "2", + "airportId": 6099, + "codeIataAirport": "PHW", + "codeIataCity": "PHW", + "codeIcaoAirport": "FAPH", + "codeIso2Country": "ZA", + "geonameId": "996937", + "latitudeAirport": -23.93361, + "longitudeAirport": 31.15611, + "nameAirport": "Phalaborwa", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-7", + "airportId": 6100, + "codeIataAirport": "PHX", + "codeIataCity": "PHX", + "codeIcaoAirport": "KPHX", + "codeIso2Country": "US", + "geonameId": "5308700", + "latitudeAirport": 33.435036, + "longitudeAirport": -112.00016, + "nameAirport": "Sky Harbor International", + "nameCountry": "United States", + "phone": "602-273-3300", + "timezone": "America/Phoenix" + }, + { + "GMT": "7", + "airportId": 6101, + "codeIataAirport": "PHY", + "codeIataCity": "PHY", + "codeIcaoAirport": "VTPB", + "codeIso2Country": "TH", + "geonameId": "7668644", + "latitudeAirport": 16.681944, + "longitudeAirport": 101.19833, + "nameAirport": "Phetchabun", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "7", + "airportId": 6102, + "codeIataAirport": "PHZ", + "codeIataCity": "PHZ", + "codeIcaoAirport": "", + "codeIso2Country": "TH", + "geonameId": "8298849", + "latitudeAirport": 8.166667, + "longitudeAirport": 98.28333, + "nameAirport": "Phi Phi Island", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-6", + "airportId": 6103, + "codeIataAirport": "PIA", + "codeIataCity": "PIA", + "codeIcaoAirport": "KPIA", + "codeIso2Country": "US", + "geonameId": "4905687", + "latitudeAirport": 40.66643, + "longitudeAirport": -89.69012, + "nameAirport": "Greater Peoria", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 6104, + "codeIataAirport": "PIB", + "codeIataCity": "LUL", + "codeIcaoAirport": "KPIB", + "codeIso2Country": "US", + "geonameId": "4441168", + "latitudeAirport": 31.4675, + "longitudeAirport": -89.33667, + "nameAirport": "Hattiesburg-Laurel Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 6105, + "codeIataAirport": "PIC", + "codeIataCity": "PIC", + "codeIcaoAirport": "MBPI", + "codeIso2Country": "TC", + "geonameId": "7730648", + "latitudeAirport": 21.883333, + "longitudeAirport": -72.1, + "nameAirport": "Pine Cay", + "nameCountry": "Turks and Caicos Islands", + "phone": "", + "timezone": "America/Grand_Turk" + }, + { + "GMT": "-5", + "airportId": 6106, + "codeIataAirport": "PIE", + "codeIataCity": "TPA", + "codeIcaoAirport": "KPIE", + "codeIso2Country": "US", + "geonameId": "6298899", + "latitudeAirport": 27.912004, + "longitudeAirport": -82.69511, + "nameAirport": "St. Petersburg-Clearwater International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 6107, + "codeIataAirport": "PIF", + "codeIataCity": "PIF", + "codeIcaoAirport": "RCDC", + "codeIso2Country": "TW", + "geonameId": "6300291", + "latitudeAirport": 22.705004, + "longitudeAirport": 120.490234, + "nameAirport": "Pingtung", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "-4", + "airportId": 6108, + "codeIataAirport": "PIG", + "codeIataCity": "PIG", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8260886", + "latitudeAirport": -24.75, + "longitudeAirport": -51.716667, + "nameAirport": "Pitinga", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Boa_Vista" + }, + { + "GMT": "-7", + "airportId": 6109, + "codeIataAirport": "PIH", + "codeIataCity": "PIH", + "codeIcaoAirport": "KPIH", + "codeIso2Country": "US", + "geonameId": "5604053", + "latitudeAirport": 42.913334, + "longitudeAirport": -112.594444, + "nameAirport": "Pocatello", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Boise" + }, + { + "GMT": "-9", + "airportId": 6110, + "codeIataAirport": "PII", + "codeIataCity": "FAI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 64.86389, + "longitudeAirport": -147.71388, + "nameAirport": "Phillips Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 6111, + "codeIataAirport": "PIK", + "codeIataCity": "GLA", + "codeIcaoAirport": "EGPK", + "codeIso2Country": "GB", + "geonameId": "6296629", + "latitudeAirport": 55.50843, + "longitudeAirport": -4.611286, + "nameAirport": "Prestwick", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-4", + "airportId": 6112, + "codeIataAirport": "PIL", + "codeIataCity": "PIL", + "codeIcaoAirport": "SGPI", + "codeIso2Country": "PY", + "geonameId": "7668452", + "latitudeAirport": -26.866667, + "longitudeAirport": -58.333332, + "nameAirport": "Pilar", + "nameCountry": "Paraguay", + "phone": "", + "timezone": "America/Asuncion" + }, + { + "GMT": "-5", + "airportId": 6113, + "codeIataAirport": "PIM", + "codeIataCity": "PIM", + "codeIcaoAirport": "KPIM", + "codeIso2Country": "US", + "geonameId": "4185703", + "latitudeAirport": 32.86667, + "longitudeAirport": -84.833336, + "nameAirport": "Garden Harris County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "airportId": 6114, + "codeIataAirport": "PIN", + "codeIataCity": "PIN", + "codeIcaoAirport": "SWPI", + "codeIso2Country": "BR", + "geonameId": "7731399", + "latitudeAirport": -2.669208, + "longitudeAirport": -56.770027, + "nameAirport": "Parintins", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "-5", + "airportId": 6115, + "codeIataAirport": "PIO", + "codeIataCity": "PIO", + "codeIcaoAirport": "SPSO", + "codeIso2Country": "PE", + "geonameId": "6300819", + "latitudeAirport": -13.75, + "longitudeAirport": -76.21667, + "nameAirport": "Pisco", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "-9", + "airportId": 6116, + "codeIataAirport": "PIP", + "codeIataCity": "PIP", + "codeIcaoAirport": "PAPN", + "codeIso2Country": "US", + "geonameId": "5871599", + "latitudeAirport": 57.56361, + "longitudeAirport": -157.56084, + "nameAirport": "Pilot Point", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "airportId": 6117, + "codeIataAirport": "PIQ", + "codeIataCity": "PIQ", + "codeIcaoAirport": "", + "codeIso2Country": "GY", + "geonameId": "3661070", + "latitudeAirport": 5.5, + "longitudeAirport": -59.0, + "nameAirport": "Pipillipai", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "-6", + "airportId": 6118, + "codeIataAirport": "PIR", + "codeIataCity": "PIR", + "codeIcaoAirport": "KPIR", + "codeIso2Country": "US", + "geonameId": "5767923", + "latitudeAirport": 44.380363, + "longitudeAirport": -100.29319, + "nameAirport": "Pierre", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 6119, + "codeIataAirport": "PIS", + "codeIataCity": "PIS", + "codeIcaoAirport": "LFBI", + "codeIso2Country": "FR", + "geonameId": "6299372", + "latitudeAirport": 46.58611, + "longitudeAirport": 0.306389, + "nameAirport": "Biard", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 6120, + "codeIataAirport": "PIT", + "codeIataCity": "PIT", + "codeIcaoAirport": "KPIT", + "codeIso2Country": "US", + "geonameId": "5206379", + "latitudeAirport": 40.49585, + "longitudeAirport": -80.25657, + "nameAirport": "Pittsburgh International", + "nameCountry": "United States", + "phone": "412-472-3525", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 6121, + "codeIataAirport": "PIU", + "codeIataCity": "PIU", + "codeIcaoAirport": "SPUR", + "codeIso2Country": "PE", + "geonameId": "6300823", + "latitudeAirport": -5.201667, + "longitudeAirport": -80.613335, + "nameAirport": "Piura", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "-3", + "airportId": 6122, + "codeIataAirport": "PIV", + "codeIataCity": "PIV", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8260885", + "latitudeAirport": -17.338612, + "longitudeAirport": -44.93222, + "nameAirport": "Pirapora", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "airportId": 6123, + "codeIataAirport": "PIW", + "codeIataCity": "PIW", + "codeIcaoAirport": "CZMN", + "codeIso2Country": "CA", + "geonameId": "7668163", + "latitudeAirport": 55.7, + "longitudeAirport": -97.333336, + "nameAirport": "Pikwitonei", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-1", + "airportId": 6124, + "codeIataAirport": "PIX", + "codeIataCity": "PIX", + "codeIcaoAirport": "LPPI", + "codeIso2Country": "PT", + "geonameId": "6618992", + "latitudeAirport": 38.466667, + "longitudeAirport": -28.3, + "nameAirport": "Pico Island", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Atlantic/Azores" + }, + { + "GMT": "-9", + "airportId": 6125, + "codeIataAirport": "PIZ", + "codeIataCity": "PIZ", + "codeIcaoAirport": "PPIZ", + "codeIso2Country": "US", + "geonameId": "5871779", + "latitudeAirport": 69.75, + "longitudeAirport": -163.16667, + "nameAirport": "Dew Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 6126, + "codeIataAirport": "PJA", + "codeIataCity": "PJA", + "codeIcaoAirport": "ESUP", + "codeIso2Country": "SE", + "geonameId": "7668226", + "latitudeAirport": 67.246666, + "longitudeAirport": 23.075, + "nameAirport": "Pajala", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-7", + "airportId": 6127, + "codeIataAirport": "PJB", + "codeIataCity": "PJB", + "codeIcaoAirport": "KPAN", + "codeIso2Country": "US", + "geonameId": "5308306", + "latitudeAirport": 34.261112, + "longitudeAirport": -111.34167, + "nameAirport": "Payson", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "-4", + "airportId": 6128, + "codeIataAirport": "PJC", + "codeIataCity": "PJC", + "codeIcaoAirport": "SGPJ", + "codeIso2Country": "PY", + "geonameId": "7668453", + "latitudeAirport": -22.5, + "longitudeAirport": -55.666668, + "nameAirport": "Pedro Juan Caballero", + "nameCountry": "Paraguay", + "phone": "", + "timezone": "America/Asuncion" + }, + { + "GMT": "5", + "airportId": 6129, + "codeIataAirport": "PJG", + "codeIataCity": "PJG", + "codeIcaoAirport": "OPPG", + "codeIso2Country": "PK", + "geonameId": "6300116", + "latitudeAirport": 26.966667, + "longitudeAirport": 64.1, + "nameAirport": "Panjgur", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-6", + "airportId": 6130, + "codeIataAirport": "PJM", + "codeIataCity": "PJM", + "codeIcaoAirport": "MRPJ", + "codeIso2Country": "CR", + "geonameId": "7730113", + "latitudeAirport": 8.583333, + "longitudeAirport": -83.333336, + "nameAirport": "Puerto Jimenez", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-9", + "airportId": 6131, + "codeIataAirport": "PJS", + "codeIataCity": "PJS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5871935", + "latitudeAirport": 60.04861, + "longitudeAirport": -148.06389, + "nameAirport": "Port San Juan", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 6132, + "codeIataAirport": "PJZ", + "codeIataCity": "PJZ", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "8299232", + "latitudeAirport": 21.166668, + "longitudeAirport": -86.833336, + "nameAirport": "Puerto Juarez", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Cancun" + }, + { + "GMT": "-9", + "airportId": 6133, + "codeIataAirport": "PKA", + "codeIataCity": "PKA", + "codeIcaoAirport": "PAPK", + "codeIso2Country": "US", + "geonameId": "5869649", + "latitudeAirport": 60.710835, + "longitudeAirport": -161.75806, + "nameAirport": "SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 6134, + "codeIataAirport": "PKB", + "codeIataCity": "PKB", + "codeIcaoAirport": "KPKB", + "codeIso2Country": "US", + "geonameId": "4827707", + "latitudeAirport": 39.345554, + "longitudeAirport": -81.43889, + "nameAirport": "Wood County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "12", + "airportId": 6135, + "codeIataAirport": "PKC", + "codeIataCity": "PKC", + "codeIcaoAirport": "UHPP", + "codeIso2Country": "RU", + "geonameId": "6300940", + "latitudeAirport": 53.016666, + "longitudeAirport": 158.65, + "nameAirport": "Petropavlovsk-Kamchatsky", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Kamchatka" + }, + { + "GMT": "-6", + "airportId": 6136, + "codeIataAirport": "PKD", + "codeIataCity": "PKD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 46.898335, + "longitudeAirport": -95.07167, + "nameAirport": "Park Rapids", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 6137, + "codeIataAirport": "PKE", + "codeIataCity": "PKE", + "codeIcaoAirport": "YPKS", + "codeIso2Country": "AU", + "geonameId": "7668759", + "latitudeAirport": -33.138454, + "longitudeAirport": 148.2329, + "nameAirport": "Parkes", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "airportId": 6138, + "codeIataAirport": "PKF", + "codeIataCity": "PKF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5266230", + "latitudeAirport": 45.933334, + "longitudeAirport": -90.53333, + "nameAirport": "Park Falls", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 6139, + "codeIataAirport": "PKG", + "codeIataCity": "PKG", + "codeIcaoAirport": "WMPA", + "codeIso2Country": "MY", + "geonameId": "7731400", + "latitudeAirport": 4.216667, + "longitudeAirport": 100.7, + "nameAirport": "Pangkor Airport", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "2", + "airportId": 6140, + "codeIataAirport": "PKH", + "codeIataCity": "PKH", + "codeIcaoAirport": "LGHL", + "codeIso2Country": "GR", + "geonameId": "7668310", + "latitudeAirport": 37.301388, + "longitudeAirport": 23.147223, + "nameAirport": "Alexion", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "-6", + "airportId": 6141, + "codeIataAirport": "PKJ", + "codeIataCity": "PKJ", + "codeIcaoAirport": "", + "codeIso2Country": "GT", + "geonameId": "7731401", + "latitudeAirport": 15.6425, + "longitudeAirport": -90.76195, + "nameAirport": "Playa Grande", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "6.30", + "airportId": 6142, + "codeIataAirport": "PKK", + "codeIataCity": "PKK", + "codeIcaoAirport": "VYPU", + "codeIso2Country": "MM", + "geonameId": "7731402", + "latitudeAirport": 21.343332, + "longitudeAirport": 95.10639, + "nameAirport": "Pakokku", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "12", + "airportId": 6143, + "codeIataAirport": "PKL", + "codeIataCity": "PKL", + "codeIcaoAirport": "", + "codeIso2Country": "NZ", + "geonameId": "8298860", + "latitudeAirport": -37.806946, + "longitudeAirport": 174.85333, + "nameAirport": "Pakatoa Island", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-4", + "airportId": 6144, + "codeIataAirport": "PKM", + "codeIataCity": "PKM", + "codeIcaoAirport": "", + "codeIso2Country": "GY", + "geonameId": "3376398", + "latitudeAirport": 7.733333, + "longitudeAirport": -59.88333, + "nameAirport": "Port Kaituma", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "7", + "airportId": 6145, + "codeIataAirport": "PKN", + "codeIataCity": "PKN", + "codeIcaoAirport": "WRBI", + "codeIso2Country": "ID", + "geonameId": "6301263", + "latitudeAirport": -2.7, + "longitudeAirport": 111.666664, + "nameAirport": "Pangkalanbuun", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Pontianak" + }, + { + "GMT": "1", + "airportId": 6146, + "codeIataAirport": "PKO", + "codeIataCity": "PKO", + "codeIcaoAirport": "DBBP", + "codeIso2Country": "BJ", + "geonameId": "6296402", + "latitudeAirport": 9.35, + "longitudeAirport": 2.616667, + "nameAirport": "Parakou", + "nameCountry": "Benin", + "phone": "", + "timezone": "Africa/Porto-Novo" + }, + { + "GMT": "-10", + "airportId": 6147, + "codeIataAirport": "PKP", + "codeIataCity": "PKP", + "codeIcaoAirport": "NTGP", + "codeIso2Country": "PF", + "geonameId": "7730125", + "latitudeAirport": -14.75, + "longitudeAirport": -138.96666, + "nameAirport": "Puka Puka", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "5.45", + "airportId": 6148, + "codeIataAirport": "PKR", + "codeIataCity": "PKR", + "codeIcaoAirport": "VNPK", + "codeIso2Country": "NP", + "geonameId": "6301113", + "latitudeAirport": 28.197222, + "longitudeAirport": 83.986115, + "nameAirport": "Pokhara", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "7", + "airportId": 6149, + "codeIataAirport": "PKS", + "codeIataCity": "PKS", + "codeIcaoAirport": "", + "codeIso2Country": "LA", + "geonameId": "0", + "latitudeAirport": 18.366667, + "longitudeAirport": 103.683334, + "nameAirport": "Paksane", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "9.30", + "airportId": 6150, + "codeIataAirport": "PKT", + "codeIataCity": "PKT", + "codeIcaoAirport": "YPKT", + "codeIso2Country": "AU", + "geonameId": "7668760", + "latitudeAirport": -14.25, + "longitudeAirport": 129.53334, + "nameAirport": "Port Keats", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "7", + "airportId": 6151, + "codeIataAirport": "PKU", + "codeIataCity": "PKU", + "codeIcaoAirport": "WIBB", + "codeIso2Country": "ID", + "geonameId": "6301221", + "latitudeAirport": 0.464563, + "longitudeAirport": 101.446884, + "nameAirport": "Sultan Syarif Kasim Ii", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "3", + "airportId": 6152, + "codeIataAirport": "PKV", + "codeIataCity": "PKV", + "codeIcaoAirport": "ULOO", + "codeIso2Country": "RU", + "geonameId": "7668519", + "latitudeAirport": 57.816666, + "longitudeAirport": 28.3, + "nameAirport": "Pskov", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "2", + "airportId": 6153, + "codeIataAirport": "PKW", + "codeIataCity": "PKW", + "codeIcaoAirport": "FBSP", + "codeIso2Country": "BW", + "geonameId": "6296951", + "latitudeAirport": -22.05, + "longitudeAirport": 27.816668, + "nameAirport": "Selebi-Phikwe", + "nameCountry": "Botswana", + "phone": "", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "7", + "airportId": 6154, + "codeIataAirport": "PKY", + "codeIataCity": "PKY", + "codeIcaoAirport": "WRBP", + "codeIso2Country": "ID", + "geonameId": "7731403", + "latitudeAirport": -2.223958, + "longitudeAirport": 113.945786, + "nameAirport": "Cilik Riwut (Tjilik Riwoet)", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Pontianak" + }, + { + "GMT": "7", + "airportId": 6155, + "codeIataAirport": "PKZ", + "codeIataCity": "PKZ", + "codeIcaoAirport": "VLPS", + "codeIso2Country": "LA", + "geonameId": "7730219", + "latitudeAirport": 15.136257, + "longitudeAirport": 105.781296, + "nameAirport": "Pakse", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-5", + "airportId": 6156, + "codeIataAirport": "PLA", + "codeIataCity": "PLA", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8299213", + "latitudeAirport": 3.3, + "longitudeAirport": -75.7, + "nameAirport": "Planadas", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 6157, + "codeIataAirport": "PLC", + "codeIataCity": "PLC", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "3672068", + "latitudeAirport": 8.416667, + "longitudeAirport": -75.6, + "nameAirport": "Planeta Rica", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 6158, + "codeIataAirport": "PLD", + "codeIataCity": "PLD", + "codeIcaoAirport": "MRSR", + "codeIso2Country": "CR", + "geonameId": "7730679", + "latitudeAirport": 10.25, + "longitudeAirport": -85.416664, + "nameAirport": "Playa Samara", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "10", + "airportId": 6159, + "codeIataAirport": "PLE", + "codeIataCity": "PLE", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298937", + "latitudeAirport": -5.383333, + "longitudeAirport": 142.98334, + "nameAirport": "Paiela", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 6160, + "codeIataAirport": "PLF", + "codeIataCity": "PLF", + "codeIcaoAirport": "FTTP", + "codeIso2Country": "TD", + "geonameId": "2426242", + "latitudeAirport": 9.383333, + "longitudeAirport": 14.933333, + "nameAirport": "Pala", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "-4", + "airportId": 6161, + "codeIataAirport": "PLI", + "codeIataCity": "PLI", + "codeIcaoAirport": "", + "codeIso2Country": "VC", + "geonameId": "0", + "latitudeAirport": 12.35, + "longitudeAirport": -61.233334, + "nameAirport": "Palm Island", + "nameCountry": "Saint Vincent and the Grenadines", + "phone": "", + "timezone": "America/St_Vincent" + }, + { + "GMT": "-6", + "airportId": 6162, + "codeIataAirport": "PLJ", + "codeIataCity": "PLJ", + "codeIcaoAirport": "", + "codeIso2Country": "BZ", + "geonameId": "7910454", + "latitudeAirport": 16.533333, + "longitudeAirport": -88.352776, + "nameAirport": "Placencia", + "nameCountry": "Belize", + "phone": "", + "timezone": "America/Belize" + }, + { + "GMT": "-6", + "airportId": 6163, + "codeIataAirport": "PLK", + "codeIataCity": "PLK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 36.65, + "longitudeAirport": -93.21667, + "nameAirport": "M. Graham Clark - Taney County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 6164, + "codeIataAirport": "PLL", + "codeIataCity": "PLL", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "6301856", + "latitudeAirport": -3.145556, + "longitudeAirport": -59.984444, + "nameAirport": "Ponta Pelada", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "7", + "airportId": 6165, + "codeIataAirport": "PLM", + "codeIataCity": "PLM", + "codeIcaoAirport": "WIPP", + "codeIso2Country": "ID", + "geonameId": "6301247", + "latitudeAirport": -2.900146, + "longitudeAirport": 104.69861, + "nameAirport": "Mahmud Badaruddin Ii", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-5", + "airportId": 6166, + "codeIataAirport": "PLN", + "codeIataCity": "PLN", + "codeIcaoAirport": "KPLN", + "codeIso2Country": "US", + "geonameId": "5005249", + "latitudeAirport": 45.57083, + "longitudeAirport": -84.79278, + "nameAirport": "Emmet County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "9.30", + "airportId": 6167, + "codeIataAirport": "PLO", + "codeIataCity": "PLO", + "codeIcaoAirport": "YPLC", + "codeIso2Country": "AU", + "geonameId": "7668761", + "latitudeAirport": -34.603333, + "longitudeAirport": 135.87454, + "nameAirport": "Port Lincoln", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-5", + "airportId": 6168, + "codeIataAirport": "PLP", + "codeIataCity": "PLP", + "codeIcaoAirport": "MPLP", + "codeIso2Country": "PA", + "geonameId": "0", + "latitudeAirport": 8.333333, + "longitudeAirport": -78.13333, + "nameAirport": "La Palma", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "2", + "airportId": 6169, + "codeIataAirport": "PLQ", + "codeIataCity": "PLQ", + "codeIcaoAirport": "EYPA", + "codeIso2Country": "LT", + "geonameId": "596239", + "latitudeAirport": 55.95, + "longitudeAirport": 21.083332, + "nameAirport": "Palanga International", + "nameCountry": "Lithuania", + "phone": "", + "timezone": "Europe/Vilnius" + }, + { + "GMT": "-6", + "airportId": 6170, + "codeIataAirport": "PLR", + "codeIataCity": "PLR", + "codeIcaoAirport": "KPLR", + "codeIso2Country": "US", + "geonameId": "4082589", + "latitudeAirport": 33.583332, + "longitudeAirport": -86.28333, + "nameAirport": "St Clair County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 6171, + "codeIataAirport": "PLS", + "codeIataCity": "PLS", + "codeIcaoAirport": "MBPV", + "codeIso2Country": "TC", + "geonameId": "6299791", + "latitudeAirport": 21.769167, + "longitudeAirport": -72.26833, + "nameAirport": "Providenciales International Airport", + "nameCountry": "Turks and Caicos Islands", + "phone": "", + "timezone": "America/Grand_Turk" + }, + { + "GMT": "-5", + "airportId": 6172, + "codeIataAirport": "PLT", + "codeIataCity": "PLT", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 9.783333, + "longitudeAirport": -74.78333, + "nameAirport": "Plato", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "airportId": 6173, + "codeIataAirport": "PLU", + "codeIataCity": "BHZ", + "codeIcaoAirport": "SBBH", + "codeIso2Country": "BR", + "geonameId": "6300602", + "latitudeAirport": -19.75, + "longitudeAirport": -43.75, + "nameAirport": "Pampulha", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "2", + "airportId": 6174, + "codeIataAirport": "PLV", + "codeIataCity": "PLV", + "codeIcaoAirport": "UKHP", + "codeIso2Country": "UA", + "geonameId": "7668509", + "latitudeAirport": 49.583332, + "longitudeAirport": 34.533333, + "nameAirport": "Poltava", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "8", + "airportId": 6175, + "codeIataAirport": "PLW", + "codeIataCity": "PLW", + "codeIcaoAirport": "WAML", + "codeIso2Country": "ID", + "geonameId": "6301194", + "latitudeAirport": -0.917945, + "longitudeAirport": 119.90671, + "nameAirport": "Mutiara", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "6", + "airportId": 6176, + "codeIataAirport": "PLX", + "codeIataCity": "PLX", + "codeIcaoAirport": "UASS", + "codeIso2Country": "KZ", + "geonameId": "0", + "latitudeAirport": 50.333332, + "longitudeAirport": 80.25, + "nameAirport": "Semipalatinsk", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-5", + "airportId": 6177, + "codeIataAirport": "PLY", + "codeIataCity": "PLY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4924958", + "latitudeAirport": 41.365276, + "longitudeAirport": -86.30167, + "nameAirport": "Plymouth", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "2", + "airportId": 6178, + "codeIataAirport": "PLZ", + "codeIataCity": "PLZ", + "codeIcaoAirport": "FAPE", + "codeIso2Country": "ZA", + "geonameId": "996962", + "latitudeAirport": -33.98371, + "longitudeAirport": 25.611422, + "nameAirport": "Port Elizabeth", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "3", + "airportId": 6179, + "codeIataAirport": "PMA", + "codeIataCity": "PMA", + "codeIcaoAirport": "HTPE", + "codeIso2Country": "TZ", + "geonameId": "6301557", + "latitudeAirport": -5.242222, + "longitudeAirport": 39.801945, + "nameAirport": "Wawi", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-6", + "airportId": 6180, + "codeIataAirport": "PMB", + "codeIataCity": "PMB", + "codeIcaoAirport": "KPMB", + "codeIso2Country": "US", + "geonameId": "5060894", + "latitudeAirport": 49.0, + "longitudeAirport": -98.083336, + "nameAirport": "Intermediate", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 6181, + "codeIataAirport": "PMC", + "codeIataCity": "PMC", + "codeIcaoAirport": "SCTE", + "codeIso2Country": "CL", + "geonameId": "6301859", + "latitudeAirport": -41.433727, + "longitudeAirport": -73.09831, + "nameAirport": "Tepual", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-8", + "airportId": 6182, + "codeIataAirport": "PMD", + "codeIataCity": "PMD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.6275, + "longitudeAirport": -118.083336, + "nameAirport": "La Palmdale Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "0", + "airportId": 6183, + "codeIataAirport": "PME", + "codeIataCity": "PME", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 50.8, + "longitudeAirport": -1.083333, + "nameAirport": "Portsmouth", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 6184, + "codeIataAirport": "PMF", + "codeIataCity": "MIL", + "codeIcaoAirport": "LIMP", + "codeIso2Country": "IT", + "geonameId": "6299582", + "latitudeAirport": 44.8, + "longitudeAirport": 10.333333, + "nameAirport": "Giuseppe Verdi", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-4", + "airportId": 6185, + "codeIataAirport": "PMG", + "codeIataCity": "PMG", + "codeIcaoAirport": "SBPP", + "codeIso2Country": "BR", + "geonameId": "6300658", + "latitudeAirport": -22.55, + "longitudeAirport": -55.7, + "nameAirport": "Ponta Porã International Airport", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Campo_Grande" + }, + { + "GMT": "-5", + "airportId": 6186, + "codeIataAirport": "PMH", + "codeIataCity": "PMH", + "codeIcaoAirport": "KPMH", + "codeIso2Country": "US", + "geonameId": "4521816", + "latitudeAirport": 38.75, + "longitudeAirport": -82.98333, + "nameAirport": "Greater Portsmouth Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 6187, + "codeIataAirport": "PMI", + "codeIataCity": "PMI", + "codeIcaoAirport": "LEPA", + "codeIso2Country": "ES", + "geonameId": "6299349", + "latitudeAirport": 39.547653, + "longitudeAirport": 2.730388, + "nameAirport": "Son Sant Joan Airport", + "nameCountry": "Spain", + "phone": "902-404-704", + "timezone": "Europe/Madrid" + }, + { + "GMT": "10", + "airportId": 6188, + "codeIataAirport": "PMK", + "codeIataCity": "PMK", + "codeIcaoAirport": "YPAM", + "codeIso2Country": "AU", + "geonameId": "7668755", + "latitudeAirport": -18.333332, + "longitudeAirport": 146.66667, + "nameAirport": "Palm Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "airportId": 6189, + "codeIataAirport": "PML", + "codeIataCity": "PML", + "codeIcaoAirport": "PAAL", + "codeIso2Country": "US", + "geonameId": "8114010", + "latitudeAirport": 56.005554, + "longitudeAirport": -160.55833, + "nameAirport": "AFS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "airportId": 6190, + "codeIataAirport": "PMM", + "codeIataCity": "PMM", + "codeIcaoAirport": "", + "codeIso2Country": "TH", + "geonameId": "1607801", + "latitudeAirport": 13.75, + "longitudeAirport": 101.35, + "nameAirport": "Phanom Sarakham", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "10", + "airportId": 6191, + "codeIataAirport": "PMN", + "codeIataCity": "PMN", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299252", + "latitudeAirport": -9.716667, + "longitudeAirport": 149.4, + "nameAirport": "Pumani", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 6192, + "codeIataAirport": "PMO", + "codeIataCity": "PMO", + "codeIcaoAirport": "LICJ", + "codeIso2Country": "IT", + "geonameId": "6299556", + "latitudeAirport": 38.186523, + "longitudeAirport": 13.104779, + "nameAirport": "Punta Raisi", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "10", + "airportId": 6193, + "codeIataAirport": "PMP", + "codeIataCity": "PMP", + "codeIcaoAirport": "KPMP", + "codeIso2Country": "PG", + "geonameId": "8260373", + "latitudeAirport": -6.666667, + "longitudeAirport": 143.41667, + "nameAirport": "Pimaga", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "airportId": 6194, + "codeIataAirport": "PMQ", + "codeIataCity": "PMQ", + "codeIcaoAirport": "SAWP", + "codeIso2Country": "AR", + "geonameId": "6300576", + "latitudeAirport": -46.53639, + "longitudeAirport": -70.98361, + "nameAirport": "Perito Moreno", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "12", + "airportId": 6195, + "codeIataAirport": "PMR", + "codeIataCity": "PMR", + "codeIcaoAirport": "NZPM", + "codeIso2Country": "NZ", + "geonameId": "6227749", + "latitudeAirport": -40.323532, + "longitudeAirport": 175.62126, + "nameAirport": "Palmerston North", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "2", + "airportId": 6196, + "codeIataAirport": "PMS", + "codeIataCity": "PMS", + "codeIcaoAirport": "OSPR", + "codeIso2Country": "SY", + "geonameId": "6300132", + "latitudeAirport": 34.6, + "longitudeAirport": 38.25, + "nameAirport": "Palmyra", + "nameCountry": "Syria", + "phone": "", + "timezone": "Asia/Damascus" + }, + { + "GMT": "-4", + "airportId": 6197, + "codeIataAirport": "PMT", + "codeIataCity": "PMT", + "codeIcaoAirport": "", + "codeIso2Country": "GY", + "geonameId": "8298956", + "latitudeAirport": 7.566667, + "longitudeAirport": -57.183334, + "nameAirport": "Paramakotoi", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "-9", + "airportId": 6198, + "codeIataAirport": "PMU", + "codeIataCity": "PMU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5871128", + "latitudeAirport": 61.983334, + "longitudeAirport": -160.33333, + "nameAirport": "SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "airportId": 6199, + "codeIataAirport": "PMV", + "codeIataCity": "PMV", + "codeIcaoAirport": "SVMG", + "codeIso2Country": "VE", + "geonameId": "6300861", + "latitudeAirport": 10.917189, + "longitudeAirport": -63.96899, + "nameAirport": "Del Caribe International (Gen. Santiago Marino)", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-3", + "airportId": 6200, + "codeIataAirport": "PMW", + "codeIataCity": "PMW", + "codeIcaoAirport": "SWPJ", + "codeIso2Country": "BR", + "geonameId": "7668441", + "latitudeAirport": -10.241667, + "longitudeAirport": -48.35278, + "nameAirport": "Palmas", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Araguaina" + }, + { + "GMT": "-5", + "airportId": 6201, + "codeIataAirport": "PMX", + "codeIataCity": "PMX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.15, + "longitudeAirport": -72.316666, + "nameAirport": "Metropolitan", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 6202, + "codeIataAirport": "PMY", + "codeIataCity": "PMY", + "codeIcaoAirport": "SAVY", + "codeIso2Country": "AR", + "geonameId": "6300569", + "latitudeAirport": -42.733334, + "longitudeAirport": -65.066666, + "nameAirport": "El Tehuelche", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "-6", + "airportId": 6203, + "codeIataAirport": "PMZ", + "codeIataCity": "PMZ", + "codeIcaoAirport": "MRPM", + "codeIso2Country": "CR", + "geonameId": "6299907", + "latitudeAirport": 8.950836, + "longitudeAirport": -83.46598, + "nameAirport": "Palmar Sur", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "1", + "airportId": 6204, + "codeIataAirport": "PNA", + "codeIataCity": "PNA", + "codeIcaoAirport": "LEPP", + "codeIso2Country": "ES", + "geonameId": "6299350", + "latitudeAirport": 42.767498, + "longitudeAirport": -1.639347, + "nameAirport": "Pamplona", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-3", + "airportId": 6205, + "codeIataAirport": "PNB", + "codeIataCity": "PNB", + "codeIcaoAirport": "SBPN", + "codeIso2Country": "BR", + "geonameId": "6300657", + "latitudeAirport": -10.7, + "longitudeAirport": -48.416668, + "nameAirport": "Porto Nacional", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Araguaina" + }, + { + "GMT": "-6", + "airportId": 6206, + "codeIataAirport": "PNC", + "codeIataCity": "PNC", + "codeIcaoAirport": "KPNC", + "codeIso2Country": "US", + "geonameId": "4548270", + "latitudeAirport": 36.728058, + "longitudeAirport": -97.09944, + "nameAirport": "Ponca City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 6207, + "codeIataAirport": "PND", + "codeIataCity": "PND", + "codeIcaoAirport": "", + "codeIso2Country": "BZ", + "geonameId": "3581398", + "latitudeAirport": 16.1, + "longitudeAirport": -88.816666, + "nameAirport": "Punta Gorda", + "nameCountry": "Belize", + "phone": "", + "timezone": "America/Belize" + }, + { + "GMT": "-5", + "airportId": 6208, + "codeIataAirport": "PNE", + "codeIataCity": "PHL", + "codeIcaoAirport": "KPNE", + "codeIso2Country": "US", + "geonameId": "5203732", + "latitudeAirport": 40.080276, + "longitudeAirport": -75.0125, + "nameAirport": "North Philadelphia", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 6209, + "codeIataAirport": "PNF", + "codeIataCity": "PNF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299223", + "latitudeAirport": 58.683334, + "longitudeAirport": -156.83333, + "nameAirport": "Peterson's Point", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "airportId": 6210, + "codeIataAirport": "PNG", + "codeIataCity": "PNG", + "codeIcaoAirport": "SSPG", + "codeIso2Country": "BR", + "geonameId": "6300654", + "latitudeAirport": -25.516666, + "longitudeAirport": -48.5, + "nameAirport": "Paranagua", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "7", + "airportId": 6211, + "codeIataAirport": "PNH", + "codeIataCity": "PNH", + "codeIcaoAirport": "VDPP", + "codeIso2Country": "KH", + "geonameId": "1821306", + "latitudeAirport": 11.546111, + "longitudeAirport": 104.84778, + "nameAirport": "Phnom Penh International", + "nameCountry": "Cambodia", + "phone": "", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "11", + "airportId": 6212, + "codeIataAirport": "PNI", + "codeIataCity": "PNI", + "codeIcaoAirport": "PTPN", + "codeIso2Country": "FM", + "geonameId": "2082097", + "latitudeAirport": 6.980947, + "longitudeAirport": 158.20334, + "nameAirport": "Pohnpei", + "nameCountry": "Micronesia", + "phone": "", + "timezone": "Pacific/Pohnpei" + }, + { + "GMT": "8", + "airportId": 6213, + "codeIataAirport": "PNJ", + "codeIataCity": "PNJ", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "8298775", + "latitudeAirport": 37.808887, + "longitudeAirport": 120.812775, + "nameAirport": "Peng Lai/Sha He Kou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "7", + "airportId": 6214, + "codeIataAirport": "PNK", + "codeIataCity": "PNK", + "codeIcaoAirport": "WIOO", + "codeIso2Country": "ID", + "geonameId": "6301242", + "latitudeAirport": -0.14735, + "longitudeAirport": 109.40533, + "nameAirport": "Supadio", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Pontianak" + }, + { + "GMT": "1", + "airportId": 6215, + "codeIataAirport": "PNL", + "codeIataCity": "PNL", + "codeIcaoAirport": "LICG", + "codeIso2Country": "IT", + "geonameId": "6299555", + "latitudeAirport": 36.81361, + "longitudeAirport": 11.966111, + "nameAirport": "Pantelleria", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "airportId": 6216, + "codeIataAirport": "PNN", + "codeIataCity": "PNN", + "codeIcaoAirport": "KPNN", + "codeIso2Country": "US", + "geonameId": "4976041", + "latitudeAirport": 45.233334, + "longitudeAirport": -67.566666, + "nameAirport": "Princeton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 6217, + "codeIataAirport": "PNP", + "codeIataCity": "PNP", + "codeIcaoAirport": "AYGR", + "codeIso2Country": "PG", + "geonameId": "7668079", + "latitudeAirport": -8.807474, + "longitudeAirport": 148.30873, + "nameAirport": "Girua", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5.30", + "airportId": 6218, + "codeIataAirport": "PNQ", + "codeIataCity": "PNQ", + "codeIcaoAirport": "VAPO", + "codeIso2Country": "IN", + "geonameId": "6452628", + "latitudeAirport": 18.581388, + "longitudeAirport": 73.920555, + "nameAirport": "Lohegaon", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "airportId": 6219, + "codeIataAirport": "PNR", + "codeIataCity": "PNR", + "codeIcaoAirport": "FCPP", + "codeIso2Country": "CG", + "geonameId": "6296967", + "latitudeAirport": -4.809799, + "longitudeAirport": 11.882377, + "nameAirport": "Pointe-Noire", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-6", + "airportId": 6220, + "codeIataAirport": "PNS", + "codeIataCity": "PNS", + "codeIcaoAirport": "KPNS", + "codeIso2Country": "US", + "geonameId": "4168228", + "latitudeAirport": 30.475943, + "longitudeAirport": -87.19416, + "nameAirport": "Pensacola International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 6221, + "codeIataAirport": "PNT", + "codeIataCity": "PNT", + "codeIcaoAirport": "SCNT", + "codeIso2Country": "CL", + "geonameId": "7730166", + "latitudeAirport": -51.683334, + "longitudeAirport": -72.51667, + "nameAirport": "Teniente J. Gallardo", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-7", + "airportId": 6222, + "codeIataAirport": "PNU", + "codeIataCity": "PNU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5544525", + "latitudeAirport": 37.833332, + "longitudeAirport": -112.38333, + "nameAirport": "Panguitch", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "2", + "airportId": 6223, + "codeIataAirport": "PNV", + "codeIataCity": "PNV", + "codeIcaoAirport": "EYPP", + "codeIso2Country": "LT", + "geonameId": "596129", + "latitudeAirport": 55.733334, + "longitudeAirport": 24.383333, + "nameAirport": "Panevezys", + "nameCountry": "Lithuania", + "phone": "", + "timezone": "Europe/Vilnius" + }, + { + "GMT": "-6", + "airportId": 6224, + "codeIataAirport": "PNX", + "codeIataCity": "PNX", + "codeIcaoAirport": "KGYI", + "codeIso2Country": "US", + "geonameId": "4694711", + "latitudeAirport": 33.63889, + "longitudeAirport": -96.611115, + "nameAirport": "Grayson County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5.30", + "airportId": 6225, + "codeIataAirport": "PNY", + "codeIataCity": "PNY", + "codeIcaoAirport": "VOPC", + "codeIso2Country": "IN", + "geonameId": "7730221", + "latitudeAirport": 12.016667, + "longitudeAirport": 79.8, + "nameAirport": "Pondicherry", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-3", + "airportId": 6226, + "codeIataAirport": "PNZ", + "codeIataCity": "PNZ", + "codeIcaoAirport": "SBPL", + "codeIso2Country": "BR", + "geonameId": "6300656", + "latitudeAirport": -9.393333, + "longitudeAirport": -40.490555, + "nameAirport": "Internacional", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Recife" + }, + { + "GMT": "-3", + "airportId": 6227, + "codeIataAirport": "POA", + "codeIataCity": "POA", + "codeIcaoAirport": "SBPA", + "codeIso2Country": "BR", + "geonameId": "3473902", + "latitudeAirport": -29.98961, + "longitudeAirport": -51.17709, + "nameAirport": "Salgado Filho", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "airportId": 6228, + "codeIataAirport": "POB", + "codeIataCity": "FAY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 35.05, + "longitudeAirport": -78.88333, + "nameAirport": "Pope AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "airportId": 6229, + "codeIataAirport": "POC", + "codeIataCity": "POC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5364134", + "latitudeAirport": 34.033333, + "longitudeAirport": -117.51667, + "nameAirport": "Brackett Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "0", + "airportId": 6230, + "codeIataAirport": "POD", + "codeIataCity": "POD", + "codeIcaoAirport": "GOSP", + "codeIso2Country": "SN", + "geonameId": "6650652", + "latitudeAirport": 16.666668, + "longitudeAirport": -14.966667, + "nameAirport": "Podor", + "nameCountry": "Senegal", + "phone": "", + "timezone": "Africa/Dakar" + }, + { + "GMT": "-6", + "airportId": 6231, + "codeIataAirport": "POE", + "codeIataCity": "POE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4325018", + "latitudeAirport": 31.045834, + "longitudeAirport": -93.19222, + "nameAirport": "Polk AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 6232, + "codeIataAirport": "POF", + "codeIataCity": "POF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4404233", + "latitudeAirport": 36.71111, + "longitudeAirport": -90.31389, + "nameAirport": "Earl Fields Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 6233, + "codeIataAirport": "POG", + "codeIataCity": "POG", + "codeIcaoAirport": "FOOG", + "codeIso2Country": "GA", + "geonameId": "6297070", + "latitudeAirport": -0.719964, + "longitudeAirport": 8.753584, + "nameAirport": "Port Gentil", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-6", + "airportId": 6234, + "codeIataAirport": "POH", + "codeIataCity": "POH", + "codeIcaoAirport": "KPOH", + "codeIso2Country": "US", + "geonameId": "4871743", + "latitudeAirport": 42.74222, + "longitudeAirport": -94.644165, + "nameAirport": "Pocahontas Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 6235, + "codeIataAirport": "POI", + "codeIataCity": "POI", + "codeIcaoAirport": "SLPO", + "codeIso2Country": "BO", + "geonameId": "6300779", + "latitudeAirport": -19.543056, + "longitudeAirport": -65.72361, + "nameAirport": "Potosi", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-3", + "airportId": 6236, + "codeIataAirport": "POJ", + "codeIataCity": "QPT", + "codeIcaoAirport": "SNPD", + "codeIso2Country": "BR", + "geonameId": "7731405", + "latitudeAirport": -18.671667, + "longitudeAirport": -46.490833, + "nameAirport": "Patos De Minas", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "2", + "airportId": 6237, + "codeIataAirport": "POL", + "codeIataCity": "POL", + "codeIcaoAirport": "FQPB", + "codeIso2Country": "MZ", + "geonameId": "6297089", + "latitudeAirport": -12.988333, + "longitudeAirport": 40.5225, + "nameAirport": "Porto Amelia", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "10", + "airportId": 6238, + "codeIataAirport": "POM", + "codeIataCity": "POM", + "codeIcaoAirport": "AYPY", + "codeIso2Country": "PG", + "geonameId": "6295685", + "latitudeAirport": -9.444308, + "longitudeAirport": 147.21446, + "nameAirport": "Jackson Field", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 6239, + "codeIataAirport": "PON", + "codeIataCity": "PON", + "codeIcaoAirport": "MGPP", + "codeIso2Country": "GT", + "geonameId": "7730654", + "latitudeAirport": 16.35, + "longitudeAirport": -89.433334, + "nameAirport": "Poptun", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "-3", + "airportId": 6240, + "codeIataAirport": "POO", + "codeIataCity": "POO", + "codeIcaoAirport": "SBPC", + "codeIso2Country": "BR", + "geonameId": "6300652", + "latitudeAirport": -21.841389, + "longitudeAirport": -46.5675, + "nameAirport": "Pocos De Caldas", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-4", + "airportId": 6241, + "codeIataAirport": "POP", + "codeIataCity": "POP", + "codeIcaoAirport": "MDPP", + "codeIso2Country": "DO", + "geonameId": "3500019", + "latitudeAirport": 19.754942, + "longitudeAirport": -70.56315, + "nameAirport": "La Union", + "nameCountry": "Dominican Republic", + "phone": "", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "-9", + "airportId": 6242, + "codeIataAirport": "POQ", + "codeIataCity": "POQ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5556445", + "latitudeAirport": 55.35, + "longitudeAirport": -132.5, + "nameAirport": "Polk Inlet", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 6243, + "codeIataAirport": "POR", + "codeIataCity": "POR", + "codeIcaoAirport": "EFPO", + "codeIso2Country": "FI", + "geonameId": "6296557", + "latitudeAirport": 61.46866, + "longitudeAirport": 21.791382, + "nameAirport": "Pori", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-4", + "airportId": 6244, + "codeIataAirport": "POS", + "codeIataCity": "POS", + "codeIcaoAirport": "TTPP", + "codeIso2Country": "TT", + "geonameId": "6300909", + "latitudeAirport": 10.602089, + "longitudeAirport": -61.339413, + "nameAirport": "Piarco International", + "nameCountry": "Trinidad and Tobago", + "phone": "868-669 2288", + "timezone": "America/Port_of_Spain" + }, + { + "GMT": "-5", + "airportId": 6245, + "codeIataAirport": "POT", + "codeIataCity": "POT", + "codeIcaoAirport": "", + "codeIso2Country": "JM", + "geonameId": "3489005", + "latitudeAirport": 18.198334, + "longitudeAirport": -76.53555, + "nameAirport": "Ken Jones", + "nameCountry": "", + "phone": "", + "timezone": "America/Jamaica" + }, + { + "GMT": "-5", + "airportId": 6246, + "codeIataAirport": "POU", + "codeIataCity": "POU", + "codeIcaoAirport": "KPOU", + "codeIso2Country": "US", + "geonameId": "5132143", + "latitudeAirport": 41.628056, + "longitudeAirport": -73.882774, + "nameAirport": "Dutchess County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 6247, + "codeIataAirport": "POV", + "codeIataCity": "POV", + "codeIcaoAirport": "LZPW", + "codeIso2Country": "SK", + "geonameId": "7730646", + "latitudeAirport": 49.0, + "longitudeAirport": 21.25, + "nameAirport": "Presov", + "nameCountry": "Slovakia", + "phone": "", + "timezone": "Europe/Bratislava" + }, + { + "GMT": "1", + "airportId": 6248, + "codeIataAirport": "POW", + "codeIataCity": "POW", + "codeIcaoAirport": "LJPZ", + "codeIso2Country": "SI", + "geonameId": "3215897", + "latitudeAirport": 45.516666, + "longitudeAirport": 13.583333, + "nameAirport": "Portoroz", + "nameCountry": "Slovenia", + "phone": "", + "timezone": "Europe/Ljubljana" + }, + { + "GMT": "1", + "airportId": 6249, + "codeIataAirport": "POX", + "codeIataCity": "PAR", + "codeIcaoAirport": "LFPT", + "codeIso2Country": "FR", + "geonameId": "6612094", + "latitudeAirport": 49.05, + "longitudeAirport": 2.1, + "nameAirport": "Paris Cergy Pontoise", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-7", + "airportId": 6250, + "codeIataAirport": "POY", + "codeIataCity": "POY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 44.75, + "longitudeAirport": -108.76667, + "nameAirport": "Powell", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 6251, + "codeIataAirport": "POZ", + "codeIataCity": "POZ", + "codeIcaoAirport": "EPPO", + "codeIso2Country": "PL", + "geonameId": "3088243", + "latitudeAirport": 52.414326, + "longitudeAirport": 16.828844, + "nameAirport": "Lawica", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "-6", + "airportId": 6252, + "codeIataAirport": "PPA", + "codeIataCity": "PPA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299254", + "latitudeAirport": 35.533333, + "longitudeAirport": -100.96667, + "nameAirport": "Perry Lefors Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 6253, + "codeIataAirport": "PPB", + "codeIataCity": "PPB", + "codeIcaoAirport": "SBDN", + "codeIso2Country": "BR", + "geonameId": "6300619", + "latitudeAirport": -22.1, + "longitudeAirport": -51.45, + "nameAirport": "Adhemar De Barros", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-9", + "airportId": 6254, + "codeIataAirport": "PPC", + "codeIataCity": "PPC", + "codeIcaoAirport": "PAPR", + "codeIso2Country": "US", + "geonameId": "5872116", + "latitudeAirport": 66.79667, + "longitudeAirport": -150.7, + "nameAirport": "Prospect Creek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "airportId": 6255, + "codeIataAirport": "PPE", + "codeIataCity": "PPE", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "0", + "latitudeAirport": 31.383333, + "longitudeAirport": -113.5, + "nameAirport": "Puerto Penasco", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Hermosillo" + }, + { + "GMT": "-6", + "airportId": 6256, + "codeIataAirport": "PPF", + "codeIataCity": "PPF", + "codeIcaoAirport": "KPPF", + "codeIso2Country": "US", + "geonameId": "4280619", + "latitudeAirport": 37.332222, + "longitudeAirport": -95.50861, + "nameAirport": "Tri-City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-11", + "airportId": 6257, + "codeIataAirport": "PPG", + "codeIataCity": "PPG", + "codeIcaoAirport": "NSTU", + "codeIso2Country": "AS", + "geonameId": "5881593", + "latitudeAirport": -14.326389, + "longitudeAirport": -170.6964, + "nameAirport": "Pago Pago International Airport", + "nameCountry": "American Samoa", + "phone": "", + "timezone": "Pacific/Pago_Pago" + }, + { + "GMT": "-4", + "airportId": 6258, + "codeIataAirport": "PPH", + "codeIataCity": "PPH", + "codeIcaoAirport": "SVPH", + "codeIso2Country": "VE", + "geonameId": "7731407", + "latitudeAirport": 4.583333, + "longitudeAirport": -61.516666, + "nameAirport": "Peraitepuy", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "9.30", + "airportId": 6259, + "codeIataAirport": "PPI", + "codeIataCity": "PPI", + "codeIcaoAirport": "YPIR", + "codeIso2Country": "AU", + "geonameId": "7730271", + "latitudeAirport": -33.233334, + "longitudeAirport": 138.0, + "nameAirport": "Port Pirie", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "7", + "airportId": 6260, + "codeIataAirport": "PPJ", + "codeIataCity": "PPJ", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "8299132", + "latitudeAirport": -0.633333, + "longitudeAirport": 103.3, + "nameAirport": "Pulau Panjang", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "6", + "airportId": 6261, + "codeIataAirport": "PPK", + "codeIataCity": "PPK", + "codeIcaoAirport": "UACP", + "codeIso2Country": "KZ", + "geonameId": "7668489", + "latitudeAirport": 54.783333, + "longitudeAirport": 69.183334, + "nameAirport": "Petropavlovsk", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "5.45", + "airportId": 6262, + "codeIataAirport": "PPL", + "codeIataCity": "PPL", + "codeIcaoAirport": "VNPL", + "codeIso2Country": "NP", + "geonameId": "7668626", + "latitudeAirport": 27.516666, + "longitudeAirport": 86.6, + "nameAirport": "Phaplu", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-5", + "airportId": 6263, + "codeIataAirport": "PPM", + "codeIataCity": "PPM", + "codeIcaoAirport": "KPMP", + "codeIso2Country": "US", + "geonameId": "4169015", + "latitudeAirport": 26.25, + "longitudeAirport": -80.11667, + "nameAirport": "Pompano Beach", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 6264, + "codeIataAirport": "PPN", + "codeIataCity": "PPN", + "codeIcaoAirport": "SKPP", + "codeIso2Country": "CO", + "geonameId": "6300752", + "latitudeAirport": 2.45, + "longitudeAirport": -76.60889, + "nameAirport": "Machangara", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 6265, + "codeIataAirport": "PPO", + "codeIataCity": "PPO", + "codeIcaoAirport": "", + "codeIso2Country": "BS", + "geonameId": "8299154", + "latitudeAirport": 24.9, + "longitudeAirport": -76.35, + "nameAirport": "Powell Point", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "10", + "airportId": 6266, + "codeIataAirport": "PPP", + "codeIataCity": "PPP", + "codeIcaoAirport": "YBPN", + "codeIso2Country": "AU", + "geonameId": "6301301", + "latitudeAirport": -20.488922, + "longitudeAirport": 148.55194, + "nameAirport": "Whitsunday Coast", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "12", + "airportId": 6267, + "codeIataAirport": "PPQ", + "codeIataCity": "PPQ", + "codeIcaoAirport": "NZPP", + "codeIso2Country": "NZ", + "geonameId": "6224752", + "latitudeAirport": -40.9, + "longitudeAirport": 174.98334, + "nameAirport": "Paraparaumu", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "7", + "airportId": 6268, + "codeIataAirport": "PPR", + "codeIataCity": "PPR", + "codeIcaoAirport": "WIDE", + "codeIso2Country": "ID", + "geonameId": "7731408", + "latitudeAirport": 0.833333, + "longitudeAirport": 100.36667, + "nameAirport": "Pasir Pangarayan", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "8", + "airportId": 6269, + "codeIataAirport": "PPS", + "codeIataCity": "PPS", + "codeIcaoAirport": "RPVP", + "codeIso2Country": "PH", + "geonameId": "1692686", + "latitudeAirport": 9.740198, + "longitudeAirport": 118.75674, + "nameAirport": "Puerto Princesa", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-10", + "airportId": 6270, + "codeIataAirport": "PPT", + "codeIataCity": "PPT", + "codeIcaoAirport": "NTAA", + "codeIso2Country": "PF", + "geonameId": "6299963", + "latitudeAirport": -17.55963, + "longitudeAirport": -149.60938, + "nameAirport": "Faa'a", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "6.30", + "airportId": 6271, + "codeIataAirport": "PPU", + "codeIataCity": "PPU", + "codeIcaoAirport": "", + "codeIso2Country": "MM", + "geonameId": "8299080", + "latitudeAirport": 18.066668, + "longitudeAirport": 97.45, + "nameAirport": "Papun", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-9", + "airportId": 6272, + "codeIataAirport": "PPV", + "codeIataCity": "PPV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5556493", + "latitudeAirport": 56.333332, + "longitudeAirport": -133.66667, + "nameAirport": "Port Protection", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 6273, + "codeIataAirport": "PPW", + "codeIataCity": "PPW", + "codeIcaoAirport": "EGEP", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 59.351265, + "longitudeAirport": -2.898974, + "nameAirport": "Papa Westray", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "10", + "airportId": 6274, + "codeIataAirport": "PPX", + "codeIataCity": "PPX", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260985", + "latitudeAirport": -9.995833, + "longitudeAirport": 149.59166, + "nameAirport": "Param", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "airportId": 6275, + "codeIataAirport": "PPY", + "codeIataCity": "PPY", + "codeIcaoAirport": "SNZA", + "codeIso2Country": "BR", + "geonameId": "7731409", + "latitudeAirport": -22.288334, + "longitudeAirport": -45.918888, + "nameAirport": "Pouso Alegre", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-4", + "airportId": 6276, + "codeIataAirport": "PPZ", + "codeIataCity": "PPZ", + "codeIcaoAirport": "", + "codeIso2Country": "VE", + "geonameId": "0", + "latitudeAirport": 6.226111, + "longitudeAirport": -67.446945, + "nameAirport": "Puerto Paez", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "7", + "airportId": 6277, + "codeIataAirport": "PQC", + "codeIataCity": "PQC", + "codeIcaoAirport": "VVPQ", + "codeIso2Country": "VN", + "geonameId": "7730227", + "latitudeAirport": 10.223722, + "longitudeAirport": 103.96324, + "nameAirport": "Duong Dong", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "5.30", + "airportId": 6278, + "codeIataAirport": "PQD", + "codeIataCity": "BTC", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "0", + "latitudeAirport": 7.71, + "longitudeAirport": 81.68, + "nameAirport": "Pasikudha SPB", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "-5", + "airportId": 6279, + "codeIataAirport": "PQI", + "codeIataCity": "PQI", + "codeIcaoAirport": "KPQI", + "codeIso2Country": "US", + "geonameId": "4975966", + "latitudeAirport": 46.685, + "longitudeAirport": -68.0475, + "nameAirport": "Presque Isle Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 6280, + "codeIataAirport": "PQM", + "codeIataCity": "PQM", + "codeIcaoAirport": "MMPQ", + "codeIso2Country": "MX", + "geonameId": "7730667", + "latitudeAirport": 17.5, + "longitudeAirport": -92.00833, + "nameAirport": "Palenque", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "10", + "airportId": 6281, + "codeIataAirport": "PQQ", + "codeIataCity": "PQQ", + "codeIcaoAirport": "YPMQ", + "codeIso2Country": "AU", + "geonameId": "7668762", + "latitudeAirport": -31.431402, + "longitudeAirport": 152.86723, + "nameAirport": "Port Macquarie", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-9", + "airportId": 6282, + "codeIataAirport": "PQS", + "codeIataCity": "PQS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5871602", + "latitudeAirport": 61.934723, + "longitudeAirport": -162.89055, + "nameAirport": "Pilot Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "airportId": 6283, + "codeIataAirport": "PQT", + "codeIataCity": "PQT", + "codeIcaoAirport": "", + "codeIso2Country": "GL", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Heliport", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "-3", + "airportId": 6284, + "codeIataAirport": "PRA", + "codeIataCity": "PRA", + "codeIcaoAirport": "SAAP", + "codeIso2Country": "AR", + "geonameId": "6300512", + "latitudeAirport": -31.795, + "longitudeAirport": -60.48, + "nameAirport": "Parana", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-8", + "airportId": 6285, + "codeIataAirport": "PRB", + "codeIataCity": "PRB", + "codeIcaoAirport": "KPRB", + "codeIso2Country": "US", + "geonameId": "5381445", + "latitudeAirport": 35.670555, + "longitudeAirport": -120.62583, + "nameAirport": "Paso Robles", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-7", + "airportId": 6286, + "codeIataAirport": "PRC", + "codeIataCity": "PRC", + "codeIcaoAirport": "KPRC", + "codeIso2Country": "US", + "geonameId": "5309842", + "latitudeAirport": 34.65, + "longitudeAirport": -112.424164, + "nameAirport": "Prescott", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "8", + "airportId": 6287, + "codeIataAirport": "PRD", + "codeIataCity": "PRD", + "codeIcaoAirport": "YPDO", + "codeIso2Country": "AU", + "geonameId": "7731411", + "latitudeAirport": -20.1, + "longitudeAirport": 119.11667, + "nameAirport": "Pardoo", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "airportId": 6288, + "codeIataAirport": "PRE", + "codeIataCity": "PRE", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 5.7, + "longitudeAirport": -71.98333, + "nameAirport": "Pore", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-9", + "airportId": 6289, + "codeIataAirport": "PRF", + "codeIataCity": "PRF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8298834", + "latitudeAirport": 55.13333, + "longitudeAirport": -132.0, + "nameAirport": "Port Johnson", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 6290, + "codeIataAirport": "PRG", + "codeIataCity": "PRG", + "codeIcaoAirport": "LKPR", + "codeIso2Country": "CZ", + "geonameId": "6299654", + "latitudeAirport": 50.10619, + "longitudeAirport": 14.266638, + "nameAirport": "Prague Vaclav Havel Airport", + "nameCountry": "Czech Republic", + "phone": "+420 220-111-", + "timezone": "Europe/Prague" + }, + { + "GMT": "7", + "airportId": 6291, + "codeIataAirport": "PRH", + "codeIataCity": "PRH", + "codeIcaoAirport": "VTCP", + "codeIso2Country": "TH", + "geonameId": "1607552", + "latitudeAirport": 18.15, + "longitudeAirport": 100.13333, + "nameAirport": "Phrae", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "4", + "airportId": 6292, + "codeIataAirport": "PRI", + "codeIataCity": "PRI", + "codeIcaoAirport": "FSPP", + "codeIso2Country": "SC", + "geonameId": "6453411", + "latitudeAirport": -4.323883, + "longitudeAirport": 55.692314, + "nameAirport": "Praslin Island", + "nameCountry": "Seychelles", + "phone": "", + "timezone": "Indian/Mahe" + }, + { + "GMT": "1", + "airportId": 6293, + "codeIataAirport": "PRJ", + "codeIataCity": "PRJ", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "3180630", + "latitudeAirport": 40.55, + "longitudeAirport": 14.233333, + "nameAirport": "Capri", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "2", + "airportId": 6294, + "codeIataAirport": "PRK", + "codeIataCity": "PRK", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "964090", + "latitudeAirport": -29.666668, + "longitudeAirport": 22.7, + "nameAirport": "Prieska", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-9", + "airportId": 6295, + "codeIataAirport": "PRL", + "codeIataCity": "PRL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299120", + "latitudeAirport": 60.208332, + "longitudeAirport": -147.81944, + "nameAirport": "Port Oceanic", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 6296, + "codeIataAirport": "PRM", + "codeIataCity": "PRM", + "codeIcaoAirport": "LPPM", + "codeIso2Country": "PT", + "geonameId": "7668328", + "latitudeAirport": 37.13333, + "longitudeAirport": -8.533333, + "nameAirport": "Portimao", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "1", + "airportId": 6297, + "codeIataAirport": "PRN", + "codeIataCity": "PRN", + "codeIcaoAirport": "LYPR", + "codeIso2Country": "RS", + "geonameId": "6299782", + "latitudeAirport": 42.573612, + "longitudeAirport": 21.035557, + "nameAirport": "Pristina International", + "nameCountry": "Serbia", + "phone": "", + "timezone": "Europe/Belgrade" + }, + { + "GMT": "-6", + "airportId": 6298, + "codeIataAirport": "PRO", + "codeIataCity": "PRO", + "codeIcaoAirport": "KPRO", + "codeIso2Country": "US", + "geonameId": "4871036", + "latitudeAirport": 41.85, + "longitudeAirport": -94.1, + "nameAirport": "Perry Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 6299, + "codeIataAirport": "PRP", + "codeIataCity": "PRP", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "2985266", + "latitudeAirport": 41.666668, + "longitudeAirport": 8.9, + "nameAirport": "Propriano", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-3", + "airportId": 6300, + "codeIataAirport": "PRQ", + "codeIataCity": "PRQ", + "codeIcaoAirport": "", + "codeIso2Country": "AR", + "geonameId": "8299142", + "latitudeAirport": -26.833332, + "longitudeAirport": -60.666668, + "nameAirport": "Pres. Roque Saenz Pena", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-4", + "airportId": 6301, + "codeIataAirport": "PRR", + "codeIataCity": "PRR", + "codeIcaoAirport": "SYPR", + "codeIso2Country": "GY", + "geonameId": "7731412", + "latitudeAirport": 5.8, + "longitudeAirport": -61.05, + "nameAirport": "Paruima", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "11", + "airportId": 6302, + "codeIataAirport": "PRS", + "codeIataCity": "PRS", + "codeIcaoAirport": "AGGP", + "codeIso2Country": "SB", + "geonameId": "7730405", + "latitudeAirport": -8.166667, + "longitudeAirport": 158.0, + "nameAirport": "Parasi", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-9", + "airportId": 6303, + "codeIataAirport": "PRT", + "codeIataCity": "PRT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 58.35, + "longitudeAirport": -134.55, + "nameAirport": "Coast Guard Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "6.30", + "airportId": 6304, + "codeIataAirport": "PRU", + "codeIataCity": "PRU", + "codeIcaoAirport": "VYPY", + "codeIso2Country": "MM", + "geonameId": "7731413", + "latitudeAirport": 18.825, + "longitudeAirport": 95.26861, + "nameAirport": "Prome", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "1", + "airportId": 6305, + "codeIataAirport": "PRV", + "codeIataCity": "PRV", + "codeIcaoAirport": "LKPO", + "codeIso2Country": "CZ", + "geonameId": "7730635", + "latitudeAirport": 49.59028, + "longitudeAirport": 17.208332, + "nameAirport": "Prerov", + "nameCountry": "Czech Republic", + "phone": "", + "timezone": "Europe/Prague" + }, + { + "GMT": "-6", + "airportId": 6306, + "codeIataAirport": "PRW", + "codeIataCity": "PRW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 45.55, + "longitudeAirport": -90.28333, + "nameAirport": "Prentice", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 6307, + "codeIataAirport": "PRX", + "codeIataCity": "PRX", + "codeIcaoAirport": "KPRX", + "codeIso2Country": "US", + "geonameId": "4717560", + "latitudeAirport": 33.636665, + "longitudeAirport": -95.45028, + "nameAirport": "Cox Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 6308, + "codeIataAirport": "PRY", + "codeIataCity": "PRY", + "codeIcaoAirport": "FAWB", + "codeIso2Country": "ZA", + "geonameId": "964137", + "latitudeAirport": -25.654444, + "longitudeAirport": 28.220833, + "nameAirport": "Wonderboom Airport.", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-8", + "airportId": 6309, + "codeIataAirport": "PRZ", + "codeIataCity": "PRZ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5746902", + "latitudeAirport": 44.3, + "longitudeAirport": -120.85, + "nameAirport": "Prineville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 6310, + "codeIataAirport": "PSA", + "codeIataCity": "PSA", + "codeIcaoAirport": "LIRP", + "codeIso2Country": "IT", + "geonameId": "6299628", + "latitudeAirport": 43.69871, + "longitudeAirport": 10.399915, + "nameAirport": "Galileo Galilei", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "airportId": 6311, + "codeIataAirport": "PSB", + "codeIataCity": "PSB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.88333, + "longitudeAirport": -78.08583, + "nameAirport": "Bellefonte", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "airportId": 6312, + "codeIataAirport": "PSC", + "codeIataCity": "PSC", + "codeIcaoAirport": "KPSC", + "codeIso2Country": "US", + "geonameId": "5813894", + "latitudeAirport": 46.259094, + "longitudeAirport": -119.1152, + "nameAirport": "Tri-cities", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "airportId": 6313, + "codeIataAirport": "PSD", + "codeIataCity": "PSD", + "codeIcaoAirport": "HEPS", + "codeIso2Country": "EG", + "geonameId": "6297297", + "latitudeAirport": 31.266666, + "longitudeAirport": 32.3, + "nameAirport": "Port Said", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-4", + "airportId": 6314, + "codeIataAirport": "PSE", + "codeIataCity": "PSE", + "codeIcaoAirport": "TJPS", + "codeIso2Country": "PR", + "geonameId": "4566880", + "latitudeAirport": 18.010702, + "longitudeAirport": -66.563545, + "nameAirport": "Mercedita", + "nameCountry": "Puerto Rico", + "phone": "", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "-5", + "airportId": 6315, + "codeIataAirport": "PSF", + "codeIataCity": "PSF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4947459", + "latitudeAirport": 42.426666, + "longitudeAirport": -73.291664, + "nameAirport": "Pittsfield", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 6316, + "codeIataAirport": "PSG", + "codeIataCity": "PSG", + "codeIcaoAirport": "PAPG", + "codeIso2Country": "US", + "geonameId": "5556350", + "latitudeAirport": 56.80417, + "longitudeAirport": -132.9425, + "nameAirport": "Petersburg James A Johnson", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 6317, + "codeIataAirport": "PSH", + "codeIataCity": "PSH", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 54.5, + "longitudeAirport": 8.116667, + "nameAirport": "St Peter", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "5", + "airportId": 6318, + "codeIataAirport": "PSI", + "codeIataCity": "PSI", + "codeIcaoAirport": "", + "codeIso2Country": "PK", + "geonameId": "1168312", + "latitudeAirport": 25.3, + "longitudeAirport": 63.36111, + "nameAirport": "Pasni", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "8", + "airportId": 6319, + "codeIataAirport": "PSJ", + "codeIataCity": "PSJ", + "codeIcaoAirport": "WAMP", + "codeIso2Country": "ID", + "geonameId": "6301196", + "latitudeAirport": -1.383333, + "longitudeAirport": 120.73333, + "nameAirport": "Poso", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-5", + "airportId": 6320, + "codeIataAirport": "PSK", + "codeIataCity": "PSK", + "codeIcaoAirport": "KPSK", + "codeIso2Country": "US", + "geonameId": "4775918", + "latitudeAirport": 37.137222, + "longitudeAirport": -80.67861, + "nameAirport": "New River Valley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 6321, + "codeIataAirport": "PSL", + "codeIataCity": "PSL", + "codeIcaoAirport": "EGPT", + "codeIso2Country": "GB", + "geonameId": "6296634", + "latitudeAirport": 56.233334, + "longitudeAirport": -3.566667, + "nameAirport": "Perth", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "airportId": 6322, + "codeIataAirport": "PSM", + "codeIataCity": "BOS", + "codeIcaoAirport": "KPSM", + "codeIso2Country": "US", + "geonameId": "5090907", + "latitudeAirport": 43.179585, + "longitudeAirport": -70.88272, + "nameAirport": "Pease International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 6323, + "codeIataAirport": "PSN", + "codeIataCity": "PSN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 31.783333, + "longitudeAirport": -95.71667, + "nameAirport": "Palestine Municipalcipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 6324, + "codeIataAirport": "PSO", + "codeIataCity": "PSO", + "codeIcaoAirport": "SKPS", + "codeIso2Country": "CO", + "geonameId": "6300753", + "latitudeAirport": 1.466667, + "longitudeAirport": -77.25, + "nameAirport": "Cano", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-8", + "airportId": 6325, + "codeIataAirport": "PSP", + "codeIataCity": "PSP", + "codeIcaoAirport": "KPSP", + "codeIso2Country": "US", + "geonameId": "5380677", + "latitudeAirport": 33.822975, + "longitudeAirport": -116.508446, + "nameAirport": "Palm Springs Metropolitan Area", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 6326, + "codeIataAirport": "PSQ", + "codeIataCity": "PHL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.868057, + "longitudeAirport": -75.24861, + "nameAirport": "SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 6327, + "codeIataAirport": "PSR", + "codeIataCity": "PSR", + "codeIcaoAirport": "LIBP", + "codeIso2Country": "IT", + "geonameId": "6299540", + "latitudeAirport": 42.43722, + "longitudeAirport": 14.187222, + "nameAirport": "Liberi", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-3", + "airportId": 6328, + "codeIataAirport": "PSS", + "codeIataCity": "PSS", + "codeIcaoAirport": "SARP", + "codeIso2Country": "AR", + "geonameId": "6300552", + "latitudeAirport": -27.383888, + "longitudeAirport": -55.9675, + "nameAirport": "Posadas", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-5", + "airportId": 6329, + "codeIataAirport": "PST", + "codeIataCity": "PST", + "codeIcaoAirport": "", + "codeIso2Country": "CU", + "geonameId": "0", + "latitudeAirport": 20.75, + "longitudeAirport": -75.666664, + "nameAirport": "Preston", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "8", + "airportId": 6330, + "codeIataAirport": "PSU", + "codeIataCity": "PSU", + "codeIcaoAirport": "WIOP", + "codeIso2Country": "ID", + "geonameId": "7668674", + "latitudeAirport": 0.833333, + "longitudeAirport": 112.933334, + "nameAirport": "Putussibau", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "0", + "airportId": 6331, + "codeIataAirport": "PSV", + "codeIataCity": "PSV", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "7670765", + "latitudeAirport": 60.316666, + "longitudeAirport": -1.7, + "nameAirport": "Papa Stour", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-3", + "airportId": 6332, + "codeIataAirport": "PSW", + "codeIataCity": "PSW", + "codeIcaoAirport": "SNOS", + "codeIso2Country": "BR", + "geonameId": "7731414", + "latitudeAirport": -20.716667, + "longitudeAirport": -46.61667, + "nameAirport": "Passos", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "airportId": 6333, + "codeIataAirport": "PSX", + "codeIataCity": "PSX", + "codeIcaoAirport": "KPSX", + "codeIso2Country": "US", + "geonameId": "4717224", + "latitudeAirport": 28.7, + "longitudeAirport": -96.25, + "nameAirport": "Palacios", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 6334, + "codeIataAirport": "PSY", + "codeIataCity": "PSY", + "codeIcaoAirport": "SFAL", + "codeIso2Country": "FK", + "geonameId": "6300726", + "latitudeAirport": -51.7, + "longitudeAirport": -57.85, + "nameAirport": "Port Stanley", + "nameCountry": "Falkland Islands", + "phone": "", + "timezone": "Atlantic/Stanley" + }, + { + "GMT": "-4", + "airportId": 6335, + "codeIataAirport": "PSZ", + "codeIataCity": "PSZ", + "codeIcaoAirport": "SLPS", + "codeIso2Country": "BO", + "geonameId": "6300780", + "latitudeAirport": -18.966667, + "longitudeAirport": -57.8, + "nameAirport": "Puerto Suarez", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-9", + "airportId": 6336, + "codeIataAirport": "PTA", + "codeIataCity": "PTA", + "codeIcaoAirport": "PALJ", + "codeIso2Country": "US", + "geonameId": "5871907", + "latitudeAirport": 60.2, + "longitudeAirport": -145.33333, + "nameAirport": "Port Alsworth", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 6337, + "codeIataAirport": "PTB", + "codeIataCity": "PTB", + "codeIcaoAirport": "KPTB", + "codeIso2Country": "US", + "geonameId": "6298936", + "latitudeAirport": 37.216667, + "longitudeAirport": -77.4, + "nameAirport": "Dinwiddie County Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 6338, + "codeIataAirport": "PTC", + "codeIataCity": "PTC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5556481", + "latitudeAirport": 55.78361, + "longitudeAirport": -133.585, + "nameAirport": "Port Alice", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 6339, + "codeIataAirport": "PTD", + "codeIataCity": "PTD", + "codeIcaoAirport": "PAAP", + "codeIso2Country": "US", + "geonameId": "5556494", + "latitudeAirport": 56.25, + "longitudeAirport": -134.65, + "nameAirport": "Port Alexander", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "12", + "airportId": 6340, + "codeIataAirport": "PTF", + "codeIataCity": "PTF", + "codeIcaoAirport": "NFFO", + "codeIso2Country": "FJ", + "geonameId": "7730688", + "latitudeAirport": -17.783333, + "longitudeAirport": 177.21666, + "nameAirport": "Malololailai", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "2", + "airportId": 6341, + "codeIataAirport": "PTG", + "codeIataCity": "PTG", + "codeIcaoAirport": "FAPI", + "codeIso2Country": "ZA", + "geonameId": "965294", + "latitudeAirport": -23.916668, + "longitudeAirport": 29.966667, + "nameAirport": "Polokwane", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-9", + "airportId": 6342, + "codeIataAirport": "PTH", + "codeIataCity": "PTH", + "codeIcaoAirport": "PAPH", + "codeIso2Country": "US", + "geonameId": "5871922", + "latitudeAirport": 56.95667, + "longitudeAirport": -158.6375, + "nameAirport": "Port Heiden", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 6343, + "codeIataAirport": "PTI", + "codeIataCity": "PTI", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2152681", + "latitudeAirport": -16.48611, + "longitudeAirport": 145.46388, + "nameAirport": "Port Douglas", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 6344, + "codeIataAirport": "PTJ", + "codeIataCity": "PTJ", + "codeIcaoAirport": "YPOR", + "codeIso2Country": "AU", + "geonameId": "7730272", + "latitudeAirport": -38.384167, + "longitudeAirport": 141.625, + "nameAirport": "Portland", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-5", + "airportId": 6345, + "codeIataAirport": "PTK", + "codeIataCity": "PTK", + "codeIcaoAirport": "KPTK", + "codeIso2Country": "US", + "geonameId": "5006166", + "latitudeAirport": 42.664722, + "longitudeAirport": -83.41139, + "nameAirport": "Pontiac", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-9", + "airportId": 6346, + "codeIataAirport": "PTL", + "codeIataCity": "PTL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5556484", + "latitudeAirport": 56.297222, + "longitudeAirport": -134.6625, + "nameAirport": "Port Armstrong", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "airportId": 6347, + "codeIataAirport": "PTM", + "codeIataCity": "PTM", + "codeIcaoAirport": "", + "codeIso2Country": "VE", + "geonameId": "3805351", + "latitudeAirport": 7.566667, + "longitudeAirport": -70.183334, + "nameAirport": "Palmarito", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-6", + "airportId": 6348, + "codeIataAirport": "PTN", + "codeIataCity": "PTN", + "codeIcaoAirport": "KPTN", + "codeIso2Country": "US", + "geonameId": "4336646", + "latitudeAirport": 29.708332, + "longitudeAirport": -91.3375, + "nameAirport": "Williams Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 6349, + "codeIataAirport": "PTO", + "codeIataCity": "PTO", + "codeIcaoAirport": "SSPB", + "codeIso2Country": "BR", + "geonameId": "7731415", + "latitudeAirport": -26.216667, + "longitudeAirport": -52.666668, + "nameAirport": "Pato Branco", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-4", + "airportId": 6350, + "codeIataAirport": "PTP", + "codeIataCity": "PTP", + "codeIcaoAirport": "TFFR", + "codeIso2Country": "GP", + "geonameId": "3578597", + "latitudeAirport": 16.2675, + "longitudeAirport": -61.52639, + "nameAirport": "Le Raizet", + "nameCountry": "Guadeloupe", + "phone": "", + "timezone": "America/Guadeloupe" + }, + { + "GMT": "-3", + "airportId": 6351, + "codeIataAirport": "PTQ", + "codeIataCity": "PTQ", + "codeIcaoAirport": "SNMZ", + "codeIso2Country": "BR", + "geonameId": "7731416", + "latitudeAirport": -1.738889, + "longitudeAirport": -52.244446, + "nameAirport": "Porto de Moz", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Belem" + }, + { + "GMT": "-9", + "airportId": 6352, + "codeIataAirport": "PTR", + "codeIataCity": "PTR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 57.75, + "longitudeAirport": -152.83333, + "nameAirport": "Pleasant Harbour", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 6353, + "codeIataAirport": "PTS", + "codeIataCity": "PTS", + "codeIcaoAirport": "KPTS", + "codeIso2Country": "US", + "geonameId": "4277241", + "latitudeAirport": 37.446667, + "longitudeAirport": -94.73055, + "nameAirport": "Atkinson Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 6354, + "codeIataAirport": "PTT", + "codeIataCity": "PTT", + "codeIcaoAirport": "KPTT", + "codeIso2Country": "US", + "geonameId": "4277737", + "latitudeAirport": 37.716667, + "longitudeAirport": -98.75, + "nameAirport": "Pratt", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 6355, + "codeIataAirport": "PTU", + "codeIataCity": "PTU", + "codeIcaoAirport": "PAPM", + "codeIso2Country": "US", + "geonameId": "5871731", + "latitudeAirport": 59.01139, + "longitudeAirport": -161.81694, + "nameAirport": "Platinum", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "airportId": 6356, + "codeIataAirport": "PTV", + "codeIataCity": "PTV", + "codeIcaoAirport": "KPTV", + "codeIso2Country": "US", + "geonameId": "5384471", + "latitudeAirport": 36.066666, + "longitudeAirport": -119.01667, + "nameAirport": "Porterville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 6357, + "codeIataAirport": "PTW", + "codeIataCity": "PTW", + "codeIcaoAirport": "KPTW", + "codeIso2Country": "US", + "geonameId": "5207075", + "latitudeAirport": 40.25, + "longitudeAirport": -75.63333, + "nameAirport": "Pottstown/Limerick", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 6358, + "codeIataAirport": "PTX", + "codeIataCity": "PTX", + "codeIcaoAirport": "SKPI", + "codeIso2Country": "CO", + "geonameId": "7730173", + "latitudeAirport": 1.85, + "longitudeAirport": -76.03333, + "nameAirport": "Pitalito", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 6359, + "codeIataAirport": "PTY", + "codeIataCity": "PTY", + "codeIcaoAirport": "MPTO", + "codeIso2Country": "PA", + "geonameId": "3700562", + "latitudeAirport": 9.066897, + "longitudeAirport": -79.38764, + "nameAirport": "Tocumen International", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "-5", + "airportId": 6360, + "codeIataAirport": "PTZ", + "codeIataCity": "PTZ", + "codeIcaoAirport": "SEPA", + "codeIso2Country": "EC", + "geonameId": "6300720", + "latitudeAirport": -2.0, + "longitudeAirport": -77.0, + "nameAirport": "Pastaza", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "10", + "airportId": 6361, + "codeIataAirport": "PUA", + "codeIataCity": "PUA", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2088070", + "latitudeAirport": -2.4, + "longitudeAirport": 150.23334, + "nameAirport": "Puas", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "airportId": 6362, + "codeIataAirport": "PUB", + "codeIataCity": "PUB", + "codeIcaoAirport": "KPUB", + "codeIso2Country": "US", + "geonameId": "5435472", + "latitudeAirport": 38.292778, + "longitudeAirport": -104.49611, + "nameAirport": "Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-7", + "airportId": 6363, + "codeIataAirport": "PUC", + "codeIataCity": "PUC", + "codeIcaoAirport": "KPUC", + "codeIso2Country": "US", + "geonameId": "5545269", + "latitudeAirport": 39.609722, + "longitudeAirport": -110.75278, + "nameAirport": "Carbon County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-3", + "airportId": 6364, + "codeIataAirport": "PUD", + "codeIataCity": "PUD", + "codeIcaoAirport": "SAWD", + "codeIso2Country": "AR", + "geonameId": "6300571", + "latitudeAirport": -47.75, + "longitudeAirport": -65.916664, + "nameAirport": "Puerto Deseado", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "-5", + "airportId": 6365, + "codeIataAirport": "PUE", + "codeIataCity": "PUE", + "codeIcaoAirport": "MPOA", + "codeIso2Country": "PA", + "geonameId": "8299139", + "latitudeAirport": 8.66694, + "longitudeAirport": -77.41694, + "nameAirport": "Puerto Obaldia", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "1", + "airportId": 6366, + "codeIataAirport": "PUF", + "codeIataCity": "PUF", + "codeIcaoAirport": "LFBP", + "codeIso2Country": "FR", + "geonameId": "6299377", + "latitudeAirport": 43.382347, + "longitudeAirport": -0.413573, + "nameAirport": "Pau-Pyrénées", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "9.30", + "airportId": 6367, + "codeIataAirport": "PUG", + "codeIataCity": "PUG", + "codeIcaoAirport": "YPAG", + "codeIso2Country": "AU", + "geonameId": "7730270", + "latitudeAirport": -32.5, + "longitudeAirport": 137.76666, + "nameAirport": "Port Augusta", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-6", + "airportId": 6368, + "codeIataAirport": "PUH", + "codeIataCity": "PUH", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "3992259", + "latitudeAirport": 15.733333, + "longitudeAirport": -96.46667, + "nameAirport": "Pochutla", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-4", + "airportId": 6369, + "codeIataAirport": "PUJ", + "codeIataCity": "PUJ", + "codeIcaoAirport": "MDPC", + "codeIso2Country": "DO", + "geonameId": "3494242", + "latitudeAirport": 18.562477, + "longitudeAirport": -68.364, + "nameAirport": "Punta Cana International", + "nameCountry": "Dominican Republic", + "phone": "809-959-2376", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "-10", + "airportId": 6370, + "codeIataAirport": "PUK", + "codeIataCity": "PUK", + "codeIcaoAirport": "NTGQ", + "codeIso2Country": "PF", + "geonameId": "7730699", + "latitudeAirport": -18.296125, + "longitudeAirport": -137.01784, + "nameAirport": "Pukarua", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-8", + "airportId": 6371, + "codeIataAirport": "PUL", + "codeIataCity": "PUL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5807337", + "latitudeAirport": 47.733334, + "longitudeAirport": -122.65, + "nameAirport": "Poulsbo", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 6372, + "codeIataAirport": "PUM", + "codeIataCity": "PUM", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "6966079", + "latitudeAirport": -4.183333, + "longitudeAirport": 121.61667, + "nameAirport": "Pomala", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "2", + "airportId": 6373, + "codeIataAirport": "PUN", + "codeIataCity": "PUN", + "codeIcaoAirport": "FZOP", + "codeIso2Country": "CD", + "geonameId": "7730565", + "latitudeAirport": -1.366667, + "longitudeAirport": 26.333332, + "nameAirport": "Punia", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-9", + "airportId": 6374, + "codeIataAirport": "PUO", + "codeIataCity": "PUO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299230", + "latitudeAirport": 70.25139, + "longitudeAirport": -148.33694, + "nameAirport": "Prudhoe Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 6375, + "codeIataAirport": "PUP", + "codeIataCity": "PUP", + "codeIcaoAirport": "DFCP", + "codeIso2Country": "BF", + "geonameId": "6296406", + "latitudeAirport": 11.183333, + "longitudeAirport": -1.166667, + "nameAirport": "Po", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-4", + "airportId": 6376, + "codeIataAirport": "PUQ", + "codeIataCity": "PUQ", + "codeIcaoAirport": "SCCI", + "codeIso2Country": "CL", + "geonameId": "6300693", + "latitudeAirport": -53.005356, + "longitudeAirport": -70.84307, + "nameAirport": "Pres Ibanez", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-4", + "airportId": 6377, + "codeIataAirport": "PUR", + "codeIataCity": "PUR", + "codeIcaoAirport": "SLPR", + "codeIso2Country": "BO", + "geonameId": "7731417", + "latitudeAirport": -11.1125, + "longitudeAirport": -67.52, + "nameAirport": "Puerto Rico", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "9", + "airportId": 6378, + "codeIataAirport": "PUS", + "codeIataCity": "PUS", + "codeIcaoAirport": "RKPK", + "codeIso2Country": "KR", + "geonameId": "6300424", + "latitudeAirport": 35.179317, + "longitudeAirport": 128.94873, + "nameAirport": "Gimhae", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "5.30", + "airportId": 6379, + "codeIataAirport": "PUT", + "codeIataCity": "PUT", + "codeIcaoAirport": "VOPN", + "codeIso2Country": "IN", + "geonameId": "7729986", + "latitudeAirport": 14.133333, + "longitudeAirport": 77.78333, + "nameAirport": "Puttaprathe", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "airportId": 6380, + "codeIataAirport": "PUU", + "codeIataCity": "PUU", + "codeIcaoAirport": "SKAS", + "codeIso2Country": "CO", + "geonameId": "6300734", + "latitudeAirport": 0.533333, + "longitudeAirport": -76.53333, + "nameAirport": "Puerto Asis", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "11", + "airportId": 6381, + "codeIataAirport": "PUV", + "codeIataCity": "PUV", + "codeIcaoAirport": "NWWP", + "codeIso2Country": "NC", + "geonameId": "7730725", + "latitudeAirport": -20.294443, + "longitudeAirport": 164.1014, + "nameAirport": "Poum", + "nameCountry": "New Caledonia", + "phone": "", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "-8", + "airportId": 6382, + "codeIataAirport": "PUW", + "codeIataCity": "PUW", + "codeIcaoAirport": "KPUW", + "codeIso2Country": "US", + "geonameId": "5807536", + "latitudeAirport": 46.74472, + "longitudeAirport": -117.105, + "nameAirport": "Pullman-Moscow Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "airportId": 6383, + "codeIataAirport": "PUX", + "codeIataCity": "PUX", + "codeIcaoAirport": "SCPV", + "codeIso2Country": "CL", + "geonameId": "7731418", + "latitudeAirport": -40.34028, + "longitudeAirport": -72.94444, + "nameAirport": "Puerto Varas", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "1", + "airportId": 6384, + "codeIataAirport": "PUY", + "codeIataCity": "PUY", + "codeIcaoAirport": "LDPL", + "codeIso2Country": "HR", + "geonameId": "6299319", + "latitudeAirport": 44.891666, + "longitudeAirport": 13.923611, + "nameAirport": "Pula", + "nameCountry": "Croatia", + "phone": "", + "timezone": "Europe/Zagreb" + }, + { + "GMT": "-6", + "airportId": 6385, + "codeIataAirport": "PUZ", + "codeIataCity": "PUZ", + "codeIcaoAirport": "MNPC", + "codeIso2Country": "NI", + "geonameId": "6299892", + "latitudeAirport": 14.045278, + "longitudeAirport": -83.38361, + "nameAirport": "Puerto Cabezas", + "nameCountry": "Nicaragua", + "phone": "", + "timezone": "America/Managua" + }, + { + "GMT": "-5", + "airportId": 6386, + "codeIataAirport": "PVA", + "codeIataCity": "PVA", + "codeIcaoAirport": "SKPV", + "codeIso2Country": "CO", + "geonameId": "6300754", + "latitudeAirport": 13.35, + "longitudeAirport": -81.35, + "nameAirport": "Providencia", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "airportId": 6387, + "codeIataAirport": "PVB", + "codeIataCity": "PDP", + "codeIcaoAirport": "", + "codeIso2Country": "UY", + "geonameId": "0", + "latitudeAirport": 42.743557, + "longitudeAirport": -90.543915, + "nameAirport": "Punta Del Este Bus Station", + "nameCountry": "Uruguay", + "phone": "", + "timezone": "America/Montevideo" + }, + { + "GMT": "-5", + "airportId": 6388, + "codeIataAirport": "PVC", + "codeIataCity": "PVC", + "codeIcaoAirport": "KPVC", + "codeIso2Country": "US", + "geonameId": "4948092", + "latitudeAirport": 42.071945, + "longitudeAirport": -70.221664, + "nameAirport": "Provincetown", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 6389, + "codeIataAirport": "PVD", + "codeIataCity": "PVD", + "codeIcaoAirport": "KPVD", + "codeIso2Country": "US", + "geonameId": "5225207", + "latitudeAirport": 41.72631, + "longitudeAirport": -71.43632, + "nameAirport": "T. F. Green Airport", + "nameCountry": "United States", + "phone": "888-268-7222", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 6390, + "codeIataAirport": "PVE", + "codeIataCity": "PVE", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "0", + "latitudeAirport": 9.0, + "longitudeAirport": -81.0, + "nameAirport": "El Porvenir", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "-8", + "airportId": 6391, + "codeIataAirport": "PVF", + "codeIataCity": "PVF", + "codeIcaoAirport": "KPVF", + "codeIso2Country": "US", + "geonameId": "5383561", + "latitudeAirport": 38.716667, + "longitudeAirport": -120.8, + "nameAirport": "Placerville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 6392, + "codeIataAirport": "PVG", + "codeIataCity": "SHA", + "codeIcaoAirport": "ZSPD", + "codeIso2Country": "CN", + "geonameId": "6301386", + "latitudeAirport": 31.151825, + "longitudeAirport": 121.799805, + "nameAirport": "Shanghai Pudong International", + "nameCountry": "China", + "phone": "021-96990", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-4", + "airportId": 6393, + "codeIataAirport": "PVH", + "codeIataCity": "PVH", + "codeIcaoAirport": "SBPV", + "codeIso2Country": "BR", + "geonameId": "6300660", + "latitudeAirport": -8.714311, + "longitudeAirport": -63.898308, + "nameAirport": "Governador Jorge Teixeira", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Porto_Velho" + }, + { + "GMT": "-3", + "airportId": 6394, + "codeIataAirport": "PVI", + "codeIataCity": "PVI", + "codeIcaoAirport": "SSPI", + "codeIso2Country": "BR", + "geonameId": "7731419", + "latitudeAirport": -23.066668, + "longitudeAirport": -52.466667, + "nameAirport": "Edu Chaves", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "2", + "airportId": 6395, + "codeIataAirport": "PVK", + "codeIataCity": "PVK", + "codeIcaoAirport": "LGPZ", + "codeIso2Country": "GR", + "geonameId": "6299504", + "latitudeAirport": 38.926388, + "longitudeAirport": 20.765833, + "nameAirport": "Aktion", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "-5", + "airportId": 6396, + "codeIataAirport": "PVO", + "codeIataCity": "PVO", + "codeIcaoAirport": "SEPV", + "codeIso2Country": "EC", + "geonameId": "7668450", + "latitudeAirport": -1.033333, + "longitudeAirport": -80.46667, + "nameAirport": "Reales Tamarindos", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-6", + "airportId": 6397, + "codeIataAirport": "PVR", + "codeIataCity": "PVR", + "codeIcaoAirport": "MMPR", + "codeIso2Country": "MX", + "geonameId": "3998605", + "latitudeAirport": 20.678297, + "longitudeAirport": -105.24898, + "nameAirport": "Licenciado Gustavo Díaz Ordaz International", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "12", + "airportId": 6398, + "codeIataAirport": "PVS", + "codeIataCity": "PVS", + "codeIcaoAirport": "UHMD", + "codeIso2Country": "RU", + "geonameId": "6300937", + "latitudeAirport": 64.38333, + "longitudeAirport": -173.24333, + "nameAirport": "Provideniya", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Anadyr" + }, + { + "GMT": "-7", + "airportId": 6399, + "codeIataAirport": "PVU", + "codeIataCity": "PVU", + "codeIcaoAirport": "KPVU", + "codeIso2Country": "US", + "geonameId": "5780035", + "latitudeAirport": 40.218056, + "longitudeAirport": -111.72222, + "nameAirport": "Provo", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 6400, + "codeIataAirport": "PVW", + "codeIataCity": "PVW", + "codeIcaoAirport": "KPVW", + "codeIso2Country": "US", + "geonameId": "5528450", + "latitudeAirport": 34.183334, + "longitudeAirport": -101.71667, + "nameAirport": "Hale County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 6401, + "codeIataAirport": "PVY", + "codeIataCity": "PVY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299171", + "latitudeAirport": 59.316666, + "longitudeAirport": -154.91667, + "nameAirport": "Pope Vanoy", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 6402, + "codeIataAirport": "PWA", + "codeIataCity": "OKC", + "codeIcaoAirport": "KPWA", + "codeIso2Country": "US", + "geonameId": "4555696", + "latitudeAirport": 35.466667, + "longitudeAirport": -97.53333, + "nameAirport": "Wiley Post", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 6403, + "codeIataAirport": "PWD", + "codeIataCity": "PWD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5671807", + "latitudeAirport": 48.783333, + "longitudeAirport": -104.566666, + "nameAirport": "Sherwood", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "12", + "airportId": 6404, + "codeIataAirport": "PWE", + "codeIataCity": "PWE", + "codeIcaoAirport": "UHMP", + "codeIso2Country": "RU", + "geonameId": "6453417", + "latitudeAirport": 69.78333, + "longitudeAirport": 170.6, + "nameAirport": "Pevek", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Anadyr" + }, + { + "GMT": "3", + "airportId": 6405, + "codeIataAirport": "PWI", + "codeIataCity": "PWI", + "codeIcaoAirport": "", + "codeIso2Country": "ET", + "geonameId": "8261030", + "latitudeAirport": 11.333333, + "longitudeAirport": 36.416668, + "nameAirport": "Beles", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-6", + "airportId": 6406, + "codeIataAirport": "PWK", + "codeIataCity": "CHI", + "codeIcaoAirport": "KPWK", + "codeIso2Country": "US", + "geonameId": "4905209", + "latitudeAirport": 42.114166, + "longitudeAirport": -87.901665, + "nameAirport": "Pal-Waukee", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "airportId": 6407, + "codeIataAirport": "PWL", + "codeIataCity": "PWL", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "6370849", + "latitudeAirport": -7.466667, + "longitudeAirport": 109.15, + "nameAirport": "Purwokerto", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-5", + "airportId": 6408, + "codeIataAirport": "PWM", + "codeIataCity": "PWM", + "codeIcaoAirport": "KPWM", + "codeIso2Country": "US", + "geonameId": "4975822", + "latitudeAirport": 43.64749, + "longitudeAirport": -70.31031, + "nameAirport": "International Jetport", + "nameCountry": "United States", + "phone": "207-874-8877", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 6409, + "codeIataAirport": "PWN", + "codeIataCity": "PWN", + "codeIcaoAirport": "MYCP", + "codeIso2Country": "BS", + "geonameId": "7730682", + "latitudeAirport": 22.833332, + "longitudeAirport": -74.35, + "nameAirport": "Pitts Town", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "2", + "airportId": 6410, + "codeIataAirport": "PWO", + "codeIataCity": "PWO", + "codeIcaoAirport": "FZQC", + "codeIso2Country": "CD", + "geonameId": "7730566", + "latitudeAirport": -8.466667, + "longitudeAirport": 28.9, + "nameAirport": "Pweto", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "6", + "airportId": 6411, + "codeIataAirport": "PWQ", + "codeIataCity": "PWQ", + "codeIcaoAirport": "UASP", + "codeIso2Country": "KZ", + "geonameId": "7668493", + "latitudeAirport": 52.183334, + "longitudeAirport": 77.066666, + "nameAirport": "Pavlodar", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-9", + "airportId": 6412, + "codeIataAirport": "PWR", + "codeIataCity": "PWR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5556495", + "latitudeAirport": 56.38333, + "longitudeAirport": -134.65, + "nameAirport": "Port Walter", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "airportId": 6413, + "codeIataAirport": "PWT", + "codeIataCity": "PWT", + "codeIcaoAirport": "KPWT", + "codeIso2Country": "US", + "geonameId": "5788062", + "latitudeAirport": 47.485, + "longitudeAirport": -122.763336, + "nameAirport": "Bremerton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "airportId": 6414, + "codeIataAirport": "PXH", + "codeIataCity": "PXH", + "codeIcaoAirport": "YPMH", + "codeIso2Country": "AU", + "geonameId": "8260756", + "latitudeAirport": -29.72108, + "longitudeAirport": 135.52348, + "nameAirport": "Prominent Hill", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-7", + "airportId": 6415, + "codeIataAirport": "PXL", + "codeIataCity": "PXL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5309471", + "latitudeAirport": 35.8, + "longitudeAirport": -110.333336, + "nameAirport": "Polacca", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "-6", + "airportId": 6416, + "codeIataAirport": "PXM", + "codeIataCity": "PXM", + "codeIcaoAirport": "MMPS", + "codeIso2Country": "MX", + "geonameId": "6299868", + "latitudeAirport": 15.85, + "longitudeAirport": -97.083336, + "nameAirport": "Puerto Escondido", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "0", + "airportId": 6417, + "codeIataAirport": "PXO", + "codeIataCity": "PXO", + "codeIcaoAirport": "LPPS", + "codeIso2Country": "PT", + "geonameId": "6299689", + "latitudeAirport": 33.070023, + "longitudeAirport": -16.345015, + "nameAirport": "Porto Santo", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Atlantic/Madeira" + }, + { + "GMT": "7", + "airportId": 6418, + "codeIataAirport": "PXR", + "codeIataCity": "PXR", + "codeIcaoAirport": "", + "codeIso2Country": "TH", + "geonameId": "1606030", + "latitudeAirport": 14.866667, + "longitudeAirport": 103.5, + "nameAirport": "Surin", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "1", + "airportId": 6419, + "codeIataAirport": "PXS", + "codeIataCity": "PXS", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 36.6, + "longitudeAirport": -6.216667, + "nameAirport": "Puerto De Santa Maria", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "7", + "airportId": 6420, + "codeIataAirport": "PXU", + "codeIataCity": "PXU", + "codeIcaoAirport": "VVPK", + "codeIso2Country": "VN", + "geonameId": "6301173", + "latitudeAirport": 14.006346, + "longitudeAirport": 108.00896, + "nameAirport": "Pleiku", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-5", + "airportId": 6421, + "codeIataAirport": "PYA", + "codeIataCity": "PYA", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8298994", + "latitudeAirport": 5.966667, + "longitudeAirport": -74.6, + "nameAirport": "Puerto Boyaca", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "5.30", + "airportId": 6422, + "codeIataAirport": "PYB", + "codeIataCity": "PYB", + "codeIcaoAirport": "VEJP", + "codeIso2Country": "IN", + "geonameId": "7731420", + "latitudeAirport": 18.833332, + "longitudeAirport": 82.63333, + "nameAirport": "Jeypore", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "airportId": 6423, + "codeIataAirport": "PYC", + "codeIataCity": "PYC", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "0", + "latitudeAirport": 9.574444, + "longitudeAirport": -79.605835, + "nameAirport": "Playon Chico", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "-10", + "airportId": 6424, + "codeIataAirport": "PYE", + "codeIataCity": "PYE", + "codeIcaoAirport": "", + "codeIso2Country": "CK", + "geonameId": "0", + "latitudeAirport": -9.016667, + "longitudeAirport": -158.03334, + "nameAirport": "Penrhyn Island", + "nameCountry": "Cook Islands", + "phone": "", + "timezone": "Pacific/Rarotonga" + }, + { + "GMT": "-4", + "airportId": 6425, + "codeIataAirport": "PYH", + "codeIataCity": "PYH", + "codeIcaoAirport": "SVPA", + "codeIso2Country": "VE", + "geonameId": "6300865", + "latitudeAirport": 5.6, + "longitudeAirport": -67.5, + "nameAirport": "Puerto Ayacucho", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "9", + "airportId": 6426, + "codeIataAirport": "PYJ", + "codeIataCity": "PYJ", + "codeIcaoAirport": "UERP", + "codeIso2Country": "RU", + "geonameId": "6300927", + "latitudeAirport": 66.416664, + "longitudeAirport": 112.05, + "nameAirport": "Polyarnyj", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "3.30", + "airportId": 6427, + "codeIataAirport": "PYK", + "codeIataCity": "PYK", + "codeIcaoAirport": "", + "codeIso2Country": "IR", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Payam", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-9", + "airportId": 6428, + "codeIataAirport": "PYL", + "codeIataCity": "PYL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5871441", + "latitudeAirport": 35.033333, + "longitudeAirport": -92.816666, + "nameAirport": "Perry SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 6429, + "codeIataAirport": "PYM", + "codeIataCity": "PYM", + "codeIcaoAirport": "KPYM", + "codeIso2Country": "US", + "geonameId": "4947618", + "latitudeAirport": 41.966667, + "longitudeAirport": -70.683334, + "nameAirport": "Plymouth", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 6430, + "codeIataAirport": "PYN", + "codeIataCity": "PYN", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8298722", + "latitudeAirport": 1.816667, + "longitudeAirport": -78.13333, + "nameAirport": "Payan", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 6431, + "codeIataAirport": "PYO", + "codeIataCity": "PYO", + "codeIcaoAirport": "SEPT", + "codeIso2Country": "EC", + "geonameId": "7731421", + "latitudeAirport": 0.083333, + "longitudeAirport": -75.9, + "nameAirport": "Putumayo", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "2", + "airportId": 6432, + "codeIataAirport": "PYR", + "codeIataCity": "PYR", + "codeIcaoAirport": "LGAD", + "codeIso2Country": "GR", + "geonameId": "6299482", + "latitudeAirport": 37.683334, + "longitudeAirport": 21.466667, + "nameAirport": "Andravida", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "-8", + "airportId": 6433, + "codeIataAirport": "PYS", + "codeIataCity": "PYS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299146", + "latitudeAirport": 39.7106, + "longitudeAirport": -120.616, + "nameAirport": "Skypark", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 6434, + "codeIataAirport": "PYV", + "codeIataCity": "PYV", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "3699980", + "latitudeAirport": 8.166667, + "longitudeAirport": -77.833336, + "nameAirport": "Yaviza", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "7", + "airportId": 6435, + "codeIataAirport": "PYX", + "codeIataCity": "PYX", + "codeIcaoAirport": "", + "codeIso2Country": "TH", + "geonameId": "0", + "latitudeAirport": 12.95, + "longitudeAirport": 100.88333, + "nameAirport": "Pattaya", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "7", + "airportId": 6436, + "codeIataAirport": "PYY", + "codeIataCity": "PYY", + "codeIcaoAirport": "VTCI", + "codeIso2Country": "TH", + "geonameId": "7910241", + "latitudeAirport": 19.371666, + "longitudeAirport": 98.43667, + "nameAirport": "Pai", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-5", + "airportId": 6437, + "codeIataAirport": "PZA", + "codeIataCity": "PZA", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 5.877778, + "longitudeAirport": -71.885, + "nameAirport": "Casanare", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "2", + "airportId": 6438, + "codeIataAirport": "PZB", + "codeIataCity": "PZB", + "codeIcaoAirport": "FAPM", + "codeIso2Country": "ZA", + "geonameId": "965302", + "latitudeAirport": -29.643047, + "longitudeAirport": 30.396738, + "nameAirport": "Pietermaritzburg Oribi", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "5", + "airportId": 6439, + "codeIataAirport": "PZH", + "codeIataCity": "PZH", + "codeIcaoAirport": "OPZB", + "codeIso2Country": "PK", + "geonameId": "1162105", + "latitudeAirport": 31.333332, + "longitudeAirport": 69.5, + "nameAirport": "Zhob", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "8", + "airportId": 6440, + "codeIataAirport": "PZI", + "codeIataCity": "PZI", + "codeIcaoAirport": "ZUZH", + "codeIso2Country": "CN", + "geonameId": "7910215", + "latitudeAirport": 26.538734, + "longitudeAirport": 101.79386, + "nameAirport": "Pan Zhi Hua Bao An Ying", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-10", + "airportId": 6441, + "codeIataAirport": "PZK", + "codeIataCity": "PZK", + "codeIcaoAirport": "", + "codeIso2Country": "CK", + "geonameId": "8260891", + "latitudeAirport": -10.883333, + "longitudeAirport": -165.81667, + "nameAirport": "Puka Puka Island", + "nameCountry": "Cook Islands", + "phone": "", + "timezone": "Pacific/Rarotonga" + }, + { + "GMT": "2", + "airportId": 6442, + "codeIataAirport": "PZL", + "codeIataCity": "PZL", + "codeIcaoAirport": "FADQ", + "codeIso2Country": "ZA", + "geonameId": "7730487", + "latitudeAirport": -27.866667, + "longitudeAirport": 32.3, + "nameAirport": "Zulu Inyala", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-4", + "airportId": 6443, + "codeIataAirport": "PZO", + "codeIataCity": "PZO", + "codeIcaoAirport": "SVPR", + "codeIso2Country": "VE", + "geonameId": "6300868", + "latitudeAirport": 8.286533, + "longitudeAirport": -62.759136, + "nameAirport": "Puerto Ordaz", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "3", + "airportId": 6444, + "codeIataAirport": "PZU", + "codeIataCity": "PZU", + "codeIcaoAirport": "HSSP", + "codeIso2Country": "SD", + "geonameId": "6297346", + "latitudeAirport": 19.577778, + "longitudeAirport": 37.21389, + "nameAirport": "Port Sudan", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "1", + "airportId": 6445, + "codeIataAirport": "PZY", + "codeIataCity": "PZY", + "codeIcaoAirport": "", + "codeIso2Country": "SK", + "geonameId": "0", + "latitudeAirport": 48.63333, + "longitudeAirport": 17.833332, + "nameAirport": "Piestany", + "nameCountry": "Slovakia", + "phone": "", + "timezone": "Europe/Bratislava" + }, + { + "GMT": "-6", + "airportId": 6446, + "codeIataAirport": "QAW", + "codeIataCity": "ANB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.6598257, + "longitudeAirport": -85.8316318, + "nameAirport": "Ft Mcclellan Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 6447, + "codeIataAirport": "QBC", + "codeIataCity": "QBC", + "codeIcaoAirport": "CYBD", + "codeIso2Country": "CA", + "geonameId": "8062543", + "latitudeAirport": 52.333332, + "longitudeAirport": -126.666664, + "nameAirport": "Bella Coola", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "airportId": 6448, + "codeIataAirport": "QBF", + "codeIataCity": "EGE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.6402638, + "longitudeAirport": -106.3741955, + "nameAirport": "Vail Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 6449, + "codeIataAirport": "QBO", + "codeIataCity": "QBO", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2947416", + "latitudeAirport": 51.48165, + "longitudeAirport": 7.21648, + "nameAirport": "Bochum Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "3", + "airportId": 6450, + "codeIataAirport": "QCA", + "codeIataCity": "QCA", + "codeIcaoAirport": "", + "codeIso2Country": "SA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Makkah Bus Station", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-7", + "airportId": 6451, + "codeIataAirport": "QCE", + "codeIataCity": "QCE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5417975", + "latitudeAirport": 49.3, + "longitudeAirport": -1.5, + "nameAirport": "Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-3", + "airportId": 6452, + "codeIataAirport": "QCU", + "codeIataCity": "QCU", + "codeIcaoAirport": "", + "codeIso2Country": "GL", + "geonameId": "3424720", + "latitudeAirport": 68.75, + "longitudeAirport": -52.333332, + "nameAirport": "Heliport", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "0", + "airportId": 6453, + "codeIataAirport": "QCY", + "codeIataCity": "QCY", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2652461", + "latitudeAirport": 53.10598, + "longitudeAirport": -0.17595, + "nameAirport": "Coningsby RAF Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 6454, + "codeIataAirport": "QDH", + "codeIataCity": "QDH", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "International Rail Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 6455, + "codeIataAirport": "QDI", + "codeIataCity": "HOH", + "codeIcaoAirport": "", + "codeIso2Country": "AT", + "geonameId": "0", + "latitudeAirport": 47.36081, + "longitudeAirport": 9.68671, + "nameAirport": "Dornbirn Bus Station", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "-5", + "airportId": 6456, + "codeIataAirport": "QDK", + "codeIataCity": "CHA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.055555, + "longitudeAirport": 70.50278, + "nameAirport": "Greyhound Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 6457, + "codeIataAirport": "QDU", + "codeIataCity": "DUS", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 51.2249429, + "longitudeAirport": 6.7756524, + "nameAirport": "Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 6458, + "codeIataAirport": "QEQ", + "codeIataCity": "QEQ", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 69.25, + "longitudeAirport": -53.566666, + "nameAirport": "Embrach/Rorbas Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "0", + "airportId": 6459, + "codeIataAirport": "QEW", + "codeIataCity": "QEW", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2644668", + "latitudeAirport": 52.6386, + "longitudeAirport": -1.13169, + "nameAirport": "Leicester Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 6460, + "codeIataAirport": "QFB", + "codeIataCity": "QFB", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Freiburg Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 6461, + "codeIataAirport": "QFH", + "codeIataCity": "QFH", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "2621927", + "latitudeAirport": 57.44073, + "longitudeAirport": 10.53661, + "nameAirport": "Frederikshavn Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-3", + "airportId": 6462, + "codeIataAirport": "QFI", + "codeIataCity": "QFI", + "codeIcaoAirport": "", + "codeIso2Country": "GL", + "geonameId": "3423337", + "latitudeAirport": 68.166664, + "longitudeAirport": -53.25, + "nameAirport": "Heliport", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "1", + "airportId": 6463, + "codeIataAirport": "QFK", + "codeIataCity": "QFK", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3139914", + "latitudeAirport": 62.05, + "longitudeAirport": 5.366667, + "nameAirport": "Harbour", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 6464, + "codeIataAirport": "QFQ", + "codeIataCity": "QFQ", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "8298999", + "latitudeAirport": 61.95, + "longitudeAirport": 5.1, + "nameAirport": "Harbour", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 6465, + "codeIataAirport": "QFV", + "codeIataCity": "BGO", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 60.333332, + "longitudeAirport": 5.333333, + "nameAirport": "Bergen Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 6466, + "codeIataAirport": "QFZ", + "codeIataCity": "SCN", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 49.2348506, + "longitudeAirport": 6.9944016, + "nameAirport": "Saarbruecken Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 6467, + "codeIataAirport": "QGL", + "codeIataCity": "QGL", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "St Gallen Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 6468, + "codeIataAirport": "QGN", + "codeIataCity": "QGN", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "3108288", + "latitudeAirport": 41.11667, + "longitudeAirport": 1.25, + "nameAirport": "Tarragona/Camp Rail Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-3", + "airportId": 6469, + "codeIataAirport": "QGQ", + "codeIataCity": "QGQ", + "codeIcaoAirport": "", + "codeIso2Country": "GL", + "geonameId": "3424408", + "latitudeAirport": 67.94056, + "longitudeAirport": -53.62278, + "nameAirport": "Heliport", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "1", + "airportId": 6470, + "codeIataAirport": "QGV", + "codeIataCity": "FRA", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 50.05, + "longitudeAirport": 8.683333, + "nameAirport": "Neu Isenburg", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 6471, + "codeIataAirport": "QGY", + "codeIataCity": "QGY", + "codeIcaoAirport": "LHPR", + "codeIso2Country": "HU", + "geonameId": "6690443", + "latitudeAirport": 47.62514, + "longitudeAirport": 17.81227, + "nameAirport": "Gyor-Per", + "nameCountry": "Hungary", + "phone": "", + "timezone": "Europe/Budapest" + }, + { + "GMT": "1", + "airportId": 6472, + "codeIataAirport": "QHD", + "codeIataCity": "HDB", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 49.4018997, + "longitudeAirport": 8.680285, + "nameAirport": "Heidelberg Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 6473, + "codeIataAirport": "QHJ", + "codeIataCity": "QHJ", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Hjorring Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 6474, + "codeIataAirport": "QHU", + "codeIataCity": "QHU", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Husum", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "airportId": 6475, + "codeIataAirport": "QHX", + "codeIataCity": "QHX", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Qionghai Railway Station", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 6476, + "codeIataAirport": "QII", + "codeIataCity": "QII", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Lindau Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-3", + "airportId": 6477, + "codeIataAirport": "QJE", + "codeIataCity": "QJE", + "codeIcaoAirport": "", + "codeIso2Country": "GL", + "geonameId": "0", + "latitudeAirport": 68.833336, + "longitudeAirport": -53.166668, + "nameAirport": "Heliport", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "-3", + "airportId": 6478, + "codeIataAirport": "QJI", + "codeIataCity": "QJI", + "codeIcaoAirport": "", + "codeIso2Country": "GL", + "geonameId": "3423313", + "latitudeAirport": 68.833336, + "longitudeAirport": -52.0, + "nameAirport": "Heliport", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "-5", + "airportId": 6479, + "codeIataAirport": "QJJ", + "codeIataCity": "DNN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.7698021, + "longitudeAirport": -84.9702228, + "nameAirport": "FlightLink Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 6480, + "codeIataAirport": "QJV", + "codeIataCity": "QJV", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "2613939", + "latitudeAirport": 57.72093, + "longitudeAirport": 10.58394, + "nameAirport": "Limousine Service", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 6481, + "codeIataAirport": "QJW", + "codeIataCity": "QJW", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "2618814", + "latitudeAirport": 56.28581, + "longitudeAirport": 9.43528, + "nameAirport": "Kjellerup Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 6482, + "codeIataAirport": "QJY", + "codeIataCity": "QJY", + "codeIcaoAirport": "", + "codeIso2Country": "PL", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Kolobrzeg Bus Station", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "1", + "airportId": 6483, + "codeIataAirport": "QJZ", + "codeIataCity": "NTE", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 47.218371, + "longitudeAirport": -1.553621, + "nameAirport": "Nantes Railway Station", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-7", + "airportId": 6484, + "codeIataAirport": "QKB", + "codeIataCity": "QKB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": -28.8333, + "longitudeAirport": 22.6167, + "nameAirport": "Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 6485, + "codeIataAirport": "QKL", + "codeIataCity": "CGN", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 50.9, + "longitudeAirport": 7.183, + "nameAirport": "Koeln Hauptbahnhof", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-7", + "airportId": 6486, + "codeIataAirport": "QKS", + "codeIataCity": "QKS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 6487, + "codeIataAirport": "QKU", + "codeIataCity": "CGN", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 50.9406645, + "longitudeAirport": 6.9599115, + "nameAirport": "Messe/Deutz Rail Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "10", + "airportId": 6488, + "codeIataAirport": "QLE", + "codeIataCity": "QLE", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2160413", + "latitudeAirport": -34.55105, + "longitudeAirport": 146.40483, + "nameAirport": "Leeton Bus Station", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "airportId": 6489, + "codeIataAirport": "QLJ", + "codeIataCity": "QLJ", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Lucerne Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "-8", + "airportId": 6490, + "codeIataAirport": "QLO", + "codeIataCity": "LAX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.0522342, + "longitudeAirport": -118.2436849, + "nameAirport": "Los Angeles Ferry Port", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 6491, + "codeIataAirport": "QLQ", + "codeIataCity": "ILD", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Lleida Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 6492, + "codeIataAirport": "QLS", + "codeIataCity": "QLS", + "codeIcaoAirport": "LSGL", + "codeIso2Country": "CH", + "geonameId": "6299715", + "latitudeAirport": 46.5436, + "longitudeAirport": 6.61669, + "nameAirport": "Lausanne", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 6493, + "codeIataAirport": "QLZ", + "codeIataCity": "QLZ", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "2619426", + "latitudeAirport": 56.13883, + "longitudeAirport": 9.15768, + "nameAirport": "Ikast Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-3", + "airportId": 6494, + "codeIataAirport": "QMK", + "codeIataCity": "QMK", + "codeIcaoAirport": "", + "codeIso2Country": "GL", + "geonameId": "3421608", + "latitudeAirport": 68.25, + "longitudeAirport": -52.833332, + "nameAirport": "Heliport", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "1", + "airportId": 6495, + "codeIataAirport": "QMO", + "codeIataCity": "QMO", + "codeIcaoAirport": "", + "codeIso2Country": "BE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Mons Railway Station", + "nameCountry": "Belgium", + "phone": "", + "timezone": "Europe/Brussels" + }, + { + "GMT": "-5", + "airportId": 6496, + "codeIataAirport": "QMP", + "codeIataCity": "MCN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.8406946, + "longitudeAirport": -83.6324022, + "nameAirport": "FlightLink Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 6497, + "codeIataAirport": "QMV", + "codeIataCity": "QMV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.033333, + "longitudeAirport": -74.01667, + "nameAirport": "Montvale", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 6498, + "codeIataAirport": "QNY", + "codeIataCity": "NYC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.75, + "longitudeAirport": -74.0, + "nameAirport": "Marine Air Terminal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 6499, + "codeIataAirport": "QOF", + "codeIataCity": "IEV", + "codeIcaoAirport": "", + "codeIso2Country": "UA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Darnitsa Bus Station", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "2", + "airportId": 6500, + "codeIataAirport": "QOH", + "codeIataCity": "IEV", + "codeIcaoAirport": "", + "codeIso2Country": "UA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Hotel Rus Bus Station", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "1", + "airportId": 6501, + "codeIataAirport": "QOW", + "codeIataCity": "QOW", + "codeIcaoAirport": "DNIM", + "codeIso2Country": "NG", + "geonameId": "7730065", + "latitudeAirport": 5.427866, + "longitudeAirport": 7.201676, + "nameAirport": "Sam Mbakwe International", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "8", + "airportId": 6502, + "codeIataAirport": "QPG", + "codeIataCity": "SIN", + "codeIcaoAirport": "WSAP", + "codeIso2Country": "SG", + "geonameId": "1880250", + "latitudeAirport": 1.35, + "longitudeAirport": 103.9, + "nameAirport": "Paya Lebar", + "nameCountry": "Singapore", + "phone": "", + "timezone": "Asia/Singapore" + }, + { + "GMT": "2", + "airportId": 6503, + "codeIataAirport": "QPL", + "codeIataCity": "QPL", + "codeIcaoAirport": "", + "codeIso2Country": "RO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Ploiesti Bus Station", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "1", + "airportId": 6504, + "codeIataAirport": "QPP", + "codeIataCity": "BER", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 52.5234051, + "longitudeAirport": 13.4113999, + "nameAirport": "Berlin Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "10", + "airportId": 6505, + "codeIataAirport": "QPV", + "codeIataCity": "QPV", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Perisher Valley Bus Station", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-3", + "airportId": 6506, + "codeIataAirport": "QPW", + "codeIataCity": "QPW", + "codeIcaoAirport": "", + "codeIso2Country": "GL", + "geonameId": "3422683", + "latitudeAirport": 68.25, + "longitudeAirport": -53.5, + "nameAirport": "Heliport", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "0", + "airportId": 6507, + "codeIataAirport": "QQD", + "codeIataCity": "QQD", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2651048", + "latitudeAirport": 51.13333, + "longitudeAirport": 1.3, + "nameAirport": "Priory Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 6508, + "codeIataAirport": "QQH", + "codeIataCity": "QQH", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2647383", + "latitudeAirport": 51.94194, + "longitudeAirport": 1.28437, + "nameAirport": "Harwich Town Rail Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 6509, + "codeIataAirport": "QQK", + "codeIataCity": "LON", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 51.51, + "longitudeAirport": 0.06, + "nameAirport": "Kings Cross Rail Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 6510, + "codeIataAirport": "QQM", + "codeIataCity": "MAN", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": -1.0, + "longitudeAirport": -1.0, + "nameAirport": "Piccadilly Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 6511, + "codeIataAirport": "QQN", + "codeIataCity": "BHX", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 52.4829614, + "longitudeAirport": -1.893592, + "nameAirport": "New Street Rail Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 6512, + "codeIataAirport": "QQP", + "codeIataCity": "LON", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": -1.0, + "longitudeAirport": -1.0, + "nameAirport": "Paddington Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 6513, + "codeIataAirport": "QQR", + "codeIataCity": "QQR", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2639660", + "latitudeAirport": 51.33576, + "longitudeAirport": 1.41552, + "nameAirport": "Ramsgate Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 6514, + "codeIataAirport": "QQS", + "codeIataCity": "LON", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 51.51, + "longitudeAirport": 0.06, + "nameAirport": "St Pancras International RailSt", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 6515, + "codeIataAirport": "QQU", + "codeIataCity": "LON", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 51.51, + "longitudeAirport": 0.06, + "nameAirport": "Euston Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 6516, + "codeIataAirport": "QQW", + "codeIataCity": "LON", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 51.51, + "longitudeAirport": 0.06, + "nameAirport": "London-Waterloo", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 6517, + "codeIataAirport": "QQX", + "codeIataCity": "QQX", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2656173", + "latitudeAirport": 51.37795, + "longitudeAirport": -2.35907, + "nameAirport": "Bath Spa Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 6518, + "codeIataAirport": "QQY", + "codeIataCity": "QQY", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2633352", + "latitudeAirport": 53.95763, + "longitudeAirport": -1.08271, + "nameAirport": "York Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "airportId": 6519, + "codeIataAirport": "QRA", + "codeIataCity": "JNB", + "codeIcaoAirport": "FAGM", + "codeIso2Country": "ZA", + "geonameId": "963244", + "latitudeAirport": -26.140278, + "longitudeAirport": 28.242779, + "nameAirport": "Rand/Germiston", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "1", + "airportId": 6520, + "codeIataAirport": "QRH", + "codeIataCity": "RTM", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "0", + "latitudeAirport": 51.916668, + "longitudeAirport": 4.5, + "nameAirport": "Rotterdam Centraal Railway Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "-6", + "airportId": 6521, + "codeIataAirport": "QRO", + "codeIataCity": "QRO", + "codeIcaoAirport": "MMQT", + "codeIso2Country": "MX", + "geonameId": "6299869", + "latitudeAirport": 20.6, + "longitudeAirport": -100.38333, + "nameAirport": "Ingeniero Fernando Espinoza Gutiérrez International", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "2", + "airportId": 6522, + "codeIataAirport": "QRS", + "codeIataCity": "QRS", + "codeIcaoAirport": "", + "codeIso2Country": "RO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Resita Bus Station", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "1", + "airportId": 6523, + "codeIataAirport": "QRW", + "codeIataCity": "QRW", + "codeIcaoAirport": "DNSU", + "codeIso2Country": "NG", + "geonameId": "7668189", + "latitudeAirport": 5.594487, + "longitudeAirport": 5.819282, + "nameAirport": "Warri", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-3", + "airportId": 6524, + "codeIataAirport": "QRY", + "codeIataCity": "QRY", + "codeIcaoAirport": "", + "codeIso2Country": "GL", + "geonameId": "0", + "latitudeAirport": 68.15, + "longitudeAirport": -53.45, + "nameAirport": "Heliport", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "-3", + "airportId": 6525, + "codeIataAirport": "QSC", + "codeIataCity": "QSC", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Sao Carlos", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 6526, + "codeIataAirport": "QSF", + "codeIataCity": "QSF", + "codeIcaoAirport": "DAAS", + "codeIso2Country": "DZ", + "geonameId": "6296366", + "latitudeAirport": 36.18139, + "longitudeAirport": 5.331111, + "nameAirport": "Setif", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "1", + "airportId": 6527, + "codeIataAirport": "QSG", + "codeIataCity": "SGD", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 54.913811, + "longitudeAirport": 9.792178, + "nameAirport": "Sonderborg", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 6528, + "codeIataAirport": "QSR", + "codeIataCity": "QSR", + "codeIcaoAirport": "LIRI", + "codeIso2Country": "IT", + "geonameId": "6299622", + "latitudeAirport": 40.620148, + "longitudeAirport": 14.92084, + "nameAirport": "Pontecagnano", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "10", + "airportId": 6529, + "codeIataAirport": "QTH", + "codeIataCity": "QTH", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Thredbo Bus Station", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "2", + "airportId": 6530, + "codeIataAirport": "QUB", + "codeIataCity": "QUB", + "codeIcaoAirport": "", + "codeIso2Country": "LY", + "geonameId": "7731449", + "latitudeAirport": 26.6, + "longitudeAirport": 12.766667, + "nameAirport": "Ubari", + "nameCountry": "Libya", + "phone": "", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "0", + "airportId": 6531, + "codeIataAirport": "QUG", + "codeIataCity": "QUG", + "codeIcaoAirport": "EGHR", + "codeIso2Country": "GB", + "geonameId": "7730473", + "latitudeAirport": 50.941666, + "longitudeAirport": -0.842248, + "nameAirport": "Goodwood", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 6532, + "codeIataAirport": "QUL", + "codeIataCity": "QUL", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Ulm Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 6533, + "codeIataAirport": "QUO", + "codeIataCity": "QUO", + "codeIcaoAirport": "DNAI", + "codeIso2Country": "NG", + "geonameId": "8298654", + "latitudeAirport": 4.876463, + "longitudeAirport": 8.085693, + "nameAirport": "Akwa Ibom International", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-3", + "airportId": 6534, + "codeIataAirport": "QUP", + "codeIataCity": "QUP", + "codeIcaoAirport": "", + "codeIso2Country": "GL", + "geonameId": "3420097", + "latitudeAirport": 70.05, + "longitudeAirport": -52.0, + "nameAirport": "Heliport", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "0", + "airportId": 6535, + "codeIataAirport": "QUY", + "codeIataCity": "QUY", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Wyton RAF Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "airportId": 6536, + "codeIataAirport": "QVY", + "codeIataCity": "QVY", + "codeIcaoAirport": "", + "codeIso2Country": "FI", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Kouvola Bus Station", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "1", + "airportId": 6537, + "codeIataAirport": "QWB", + "codeIataCity": "BER", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 52.5234051, + "longitudeAirport": 13.4113999, + "nameAirport": "Ostbahnhof Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 6538, + "codeIataAirport": "QWC", + "codeIataCity": "BER", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 52.5234051, + "longitudeAirport": 13.4113999, + "nameAirport": "Zoo Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-7", + "airportId": 6539, + "codeIataAirport": "QWF", + "codeIataCity": "FNL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.5852602, + "longitudeAirport": -105.084423, + "nameAirport": "Fort Collins Bus Servi", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 6540, + "codeIataAirport": "QWG", + "codeIataCity": "CLT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4499115", + "latitudeAirport": 35.216667, + "longitudeAirport": -80.85, + "nameAirport": "Wilgrove Air Park", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 6541, + "codeIataAirport": "QWH", + "codeIataCity": "FNL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.5852602, + "longitudeAirport": -105.084423, + "nameAirport": "Loveland Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "airportId": 6542, + "codeIataAirport": "QWL", + "codeIataCity": "QWL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Crackenback Village Bus Station", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-7", + "airportId": 6543, + "codeIataAirport": "QWM", + "codeIataCity": "DEN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.7391536, + "longitudeAirport": -104.9847034, + "nameAirport": "Longmont Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 6544, + "codeIataAirport": "QWO", + "codeIataCity": "QWO", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "2620046", + "latitudeAirport": 56.36009, + "longitudeAirport": 8.61607, + "nameAirport": "Holstebro Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-7", + "airportId": 6545, + "codeIataAirport": "QWP", + "codeIataCity": "QWP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299235", + "latitudeAirport": 39.9, + "longitudeAirport": -105.767, + "nameAirport": "Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 6546, + "codeIataAirport": "QWQ", + "codeIataCity": "QWQ", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "2612204", + "latitudeAirport": 56.49122, + "longitudeAirport": 8.58376, + "nameAirport": "Struer Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 6547, + "codeIataAirport": "QWU", + "codeIataCity": "QWU", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Wuerzburg Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-8", + "airportId": 6548, + "codeIataAirport": "QWY", + "codeIataCity": "CVO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Albany Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 6549, + "codeIataAirport": "QWZ", + "codeIataCity": "QWZ", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "2759040", + "latitudeAirport": 51.5075, + "longitudeAirport": 5.39028, + "nameAirport": "Best Bus Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "airportId": 6550, + "codeIataAirport": "QXF", + "codeIataCity": "QXF", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "2610499", + "latitudeAirport": 57.13166, + "longitudeAirport": 9.95942, + "nameAirport": "Vestbjerg Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 6551, + "codeIataAirport": "QXG", + "codeIataCity": "ANE", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 47.478419, + "longitudeAirport": -0.563166, + "nameAirport": "Angers Railway Station", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 6552, + "codeIataAirport": "QXK", + "codeIataCity": "QXK", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "St-Genis Bus Station", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 6553, + "codeIataAirport": "QXV", + "codeIataCity": "QXV", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "2612045", + "latitudeAirport": 55.05982, + "longitudeAirport": 10.60677, + "nameAirport": "Svendborg Railway Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 6554, + "codeIataAirport": "QXZ", + "codeIataCity": "QXZ", + "codeIcaoAirport": "", + "codeIso2Country": "AT", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Woergl Bus Station", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "1", + "airportId": 6555, + "codeIataAirport": "QYC", + "codeIataCity": "QYC", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "2756644", + "latitudeAirport": 53.11254, + "longitudeAirport": 6.0989, + "nameAirport": "Drachten Bus Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "airportId": 6556, + "codeIataAirport": "QYE", + "codeIataCity": "ENS", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "0", + "latitudeAirport": 52.2203375, + "longitudeAirport": 6.8959638, + "nameAirport": "Enschede Railway Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "airportId": 6557, + "codeIataAirport": "QYH", + "codeIataCity": "QYH", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Hengelo Railway Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "airportId": 6558, + "codeIataAirport": "QYI", + "codeIataCity": "QYI", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "2754064", + "latitudeAirport": 52.226334, + "longitudeAirport": 5.181235, + "nameAirport": "Hilversum Railway Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "airportId": 6559, + "codeIataAirport": "QYL", + "codeIataCity": "QYL", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "2759887", + "latitudeAirport": 52.35667, + "longitudeAirport": 6.6625, + "nameAirport": "Almelo Railway Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "airportId": 6560, + "codeIataAirport": "QYM", + "codeIataCity": "QYM", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "2759821", + "latitudeAirport": 52.155, + "longitudeAirport": 5.3875, + "nameAirport": "Amersfoort Railway Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "airportId": 6561, + "codeIataAirport": "QYP", + "codeIataCity": "QYP", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "2759706", + "latitudeAirport": 52.21, + "longitudeAirport": 5.96944, + "nameAirport": "Apeldoorn Railway Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "airportId": 6562, + "codeIataAirport": "QYQ", + "codeIataCity": "QYQ", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "2612130", + "latitudeAirport": 57.16343, + "longitudeAirport": 9.95667, + "nameAirport": "Sulsted Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 6563, + "codeIataAirport": "QYT", + "codeIataCity": "QYT", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "2748702", + "latitudeAirport": 53.145, + "longitudeAirport": 6.56528, + "nameAirport": "Paterswolde Bus Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "airportId": 6564, + "codeIataAirport": "QYU", + "codeIataCity": "GVX", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 60.6746161, + "longitudeAirport": 17.1418309, + "nameAirport": "Gavle C Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 6565, + "codeIataAirport": "QYV", + "codeIataCity": "QYV", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "2756987", + "latitudeAirport": 52.255, + "longitudeAirport": 6.16389, + "nameAirport": "Deventer Railway Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "airportId": 6566, + "codeIataAirport": "QYW", + "codeIataCity": "CEQ", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 43.53889, + "longitudeAirport": 7.044444, + "nameAirport": "Vieux Port", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 6567, + "codeIataAirport": "QYX", + "codeIataCity": "QYX", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Uppsala C Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 6568, + "codeIataAirport": "QYZ", + "codeIataCity": "QYZ", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "2754669", + "latitudeAirport": 52.95929, + "longitudeAirport": 5.91854, + "nameAirport": "Heerenveen Bus Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "airportId": 6569, + "codeIataAirport": "QZB", + "codeIataCity": "QZB", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2657928", + "latitudeAirport": 46.02126, + "longitudeAirport": 7.74912, + "nameAirport": "Zermatt Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "10", + "airportId": 6570, + "codeIataAirport": "QZC", + "codeIataCity": "QZC", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Smiggin Holes Bus Station", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "airportId": 6571, + "codeIataAirport": "QZD", + "codeIataCity": "QZD", + "codeIcaoAirport": "", + "codeIso2Country": "HU", + "geonameId": "715429", + "latitudeAirport": 46.2537003, + "longitudeAirport": 20.146029, + "nameAirport": "Szeged", + "nameCountry": "Hungary", + "phone": "", + "timezone": "Europe/Budapest" + }, + { + "GMT": "1", + "airportId": 6572, + "codeIataAirport": "QZF", + "codeIataCity": "QZF", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Font-Romeu Bus Station", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "airportId": 6573, + "codeIataAirport": "QZM", + "codeIataCity": "QZM", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Bullocks Flat Bus Station", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "airportId": 6574, + "codeIataAirport": "RAA", + "codeIataCity": "RAA", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299133", + "latitudeAirport": -4.5, + "longitudeAirport": 152.16667, + "nameAirport": "Rakanda", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 6575, + "codeIataAirport": "RAC", + "codeIataCity": "RAC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5268249", + "latitudeAirport": 42.683334, + "longitudeAirport": -87.85, + "nameAirport": "John H. Batten Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 6576, + "codeIataAirport": "RAD", + "codeIataCity": "TOV", + "codeIcaoAirport": "", + "codeIso2Country": "VG", + "geonameId": "0", + "latitudeAirport": 18.427778, + "longitudeAirport": -64.620834, + "nameAirport": "Road Town", + "nameCountry": "British Virgin Islands", + "phone": "", + "timezone": "America/Tortola" + }, + { + "GMT": "3", + "airportId": 6577, + "codeIataAirport": "RAE", + "codeIataCity": "RAE", + "codeIcaoAirport": "OERR", + "codeIso2Country": "SA", + "geonameId": "6300025", + "latitudeAirport": 30.903028, + "longitudeAirport": 41.137115, + "nameAirport": "Arar", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-3", + "airportId": 6578, + "codeIataAirport": "RAF", + "codeIataCity": "RAF", + "codeIcaoAirport": "", + "codeIso2Country": "AR", + "geonameId": "3839479", + "latitudeAirport": 29.6, + "longitudeAirport": 34.85, + "nameAirport": "Rafaela", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "12", + "airportId": 6579, + "codeIataAirport": "RAG", + "codeIataCity": "RAG", + "codeIcaoAirport": "NZRA", + "codeIso2Country": "NZ", + "geonameId": "7730731", + "latitudeAirport": -37.833332, + "longitudeAirport": 174.86667, + "nameAirport": "Raglan", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "3", + "airportId": 6580, + "codeIataAirport": "RAH", + "codeIataCity": "RAH", + "codeIcaoAirport": "OERF", + "codeIso2Country": "SA", + "geonameId": "393877", + "latitudeAirport": 29.623463, + "longitudeAirport": 43.488785, + "nameAirport": "Rafha", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-1", + "airportId": 6581, + "codeIataAirport": "RAI", + "codeIataCity": "RAI", + "codeIcaoAirport": "GVFM", + "codeIso2Country": "CV", + "geonameId": "3374333", + "latitudeAirport": 14.945321, + "longitudeAirport": -23.486567, + "nameAirport": "Francisco Mendes", + "nameCountry": "Cape Verde", + "phone": "", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "5.30", + "airportId": 6582, + "codeIataAirport": "RAJ", + "codeIataCity": "RAJ", + "codeIcaoAirport": "VARK", + "codeIso2Country": "IN", + "geonameId": "6301043", + "latitudeAirport": 22.308674, + "longitudeAirport": 70.78235, + "nameAirport": "Civil", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "0", + "airportId": 6583, + "codeIataAirport": "RAK", + "codeIataCity": "RAK", + "codeIcaoAirport": "GMMX", + "codeIso2Country": "MA", + "geonameId": "6297215", + "latitudeAirport": 31.601875, + "longitudeAirport": -8.026902, + "nameAirport": "Menara", + "nameCountry": "Morocco", + "phone": "05 24 447910", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "-8", + "airportId": 6584, + "codeIataAirport": "RAL", + "codeIataCity": "RAL", + "codeIcaoAirport": "KRAL", + "codeIso2Country": "US", + "geonameId": "5387911", + "latitudeAirport": 33.951668, + "longitudeAirport": -117.44222, + "nameAirport": "Riverside Municipalcipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "airportId": 6585, + "codeIataAirport": "RAM", + "codeIataCity": "RAM", + "codeIcaoAirport": "YRNG", + "codeIso2Country": "AU", + "geonameId": "7731452", + "latitudeAirport": -12.0, + "longitudeAirport": 134.81667, + "nameAirport": "Ramingining", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "1", + "airportId": 6586, + "codeIataAirport": "RAN", + "codeIataCity": "RAN", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "3169561", + "latitudeAirport": 44.36667, + "longitudeAirport": 12.223333, + "nameAirport": "La Spreta", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-3", + "airportId": 6587, + "codeIataAirport": "RAO", + "codeIataCity": "RAO", + "codeIcaoAirport": "SBRP", + "codeIso2Country": "BR", + "geonameId": "6300665", + "latitudeAirport": -21.135834, + "longitudeAirport": -47.773335, + "nameAirport": "Leite Lopes", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-7", + "airportId": 6588, + "codeIataAirport": "RAP", + "codeIataCity": "RAP", + "codeIcaoAirport": "KRAP", + "codeIso2Country": "US", + "geonameId": "5768239", + "latitudeAirport": 44.037582, + "longitudeAirport": -103.06118, + "nameAirport": "Rapid City Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "airportId": 6589, + "codeIataAirport": "RAQ", + "codeIataCity": "RAQ", + "codeIcaoAirport": "WAWR", + "codeIso2Country": "ID", + "geonameId": "7731453", + "latitudeAirport": -4.916667, + "longitudeAirport": 122.583336, + "nameAirport": "Sugimanuru", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-10", + "airportId": 6590, + "codeIataAirport": "RAR", + "codeIataCity": "RAR", + "codeIcaoAirport": "NCRG", + "codeIso2Country": "CK", + "geonameId": "4036493", + "latitudeAirport": -21.19992, + "longitudeAirport": -159.79852, + "nameAirport": "Rarotonga", + "nameCountry": "Cook Islands", + "phone": "", + "timezone": "Pacific/Rarotonga" + }, + { + "GMT": "3.30", + "airportId": 6591, + "codeIataAirport": "RAS", + "codeIataCity": "RAS", + "codeIcaoAirport": "OIGG", + "codeIso2Country": "IR", + "geonameId": "118743", + "latitudeAirport": 37.321815, + "longitudeAirport": 49.619587, + "nameAirport": "Rasht", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "5", + "airportId": 6592, + "codeIataAirport": "RAT", + "codeIataCity": "RAT", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "0", + "latitudeAirport": 62.5, + "longitudeAirport": 77.0, + "nameAirport": "Raduzhnyi", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-5", + "airportId": 6593, + "codeIataAirport": "RAV", + "codeIataCity": "RAV", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "3685702", + "latitudeAirport": 6.316667, + "longitudeAirport": -70.183334, + "nameAirport": "Cravo Norte", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "airportId": 6594, + "codeIataAirport": "RAW", + "codeIataCity": "RAW", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260723", + "latitudeAirport": -6.25, + "longitudeAirport": 155.58333, + "nameAirport": "Arawa", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 6595, + "codeIataAirport": "RAX", + "codeIataCity": "RAX", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260950", + "latitudeAirport": -9.672222, + "longitudeAirport": 148.03334, + "nameAirport": "Oram", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5", + "airportId": 6596, + "codeIataAirport": "RAZ", + "codeIataCity": "RAZ", + "codeIcaoAirport": "OPRT", + "codeIso2Country": "PK", + "geonameId": "7668404", + "latitudeAirport": 33.841667, + "longitudeAirport": 73.833336, + "nameAirport": "Rawala Kot", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "0", + "airportId": 6597, + "codeIataAirport": "RBA", + "codeIataCity": "RBA", + "codeIcaoAirport": "GMME", + "codeIso2Country": "MA", + "geonameId": "2538476", + "latitudeAirport": 34.036137, + "longitudeAirport": -6.748619, + "nameAirport": "Sale", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "-4", + "airportId": 6598, + "codeIataAirport": "RBB", + "codeIataCity": "RBB", + "codeIcaoAirport": "SWBR", + "codeIso2Country": "BR", + "geonameId": "7731454", + "latitudeAirport": -4.4, + "longitudeAirport": -59.583332, + "nameAirport": "Borba", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "10", + "airportId": 6599, + "codeIataAirport": "RBC", + "codeIataCity": "RBC", + "codeIcaoAirport": "YROI", + "codeIso2Country": "AU", + "geonameId": "7668765", + "latitudeAirport": -34.666668, + "longitudeAirport": 142.75, + "nameAirport": "Robinvale", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-6", + "airportId": 6600, + "codeIataAirport": "RBD", + "codeIataCity": "DFW", + "codeIcaoAirport": "KRBD", + "codeIso2Country": "US", + "geonameId": "4721997", + "latitudeAirport": 32.680832, + "longitudeAirport": -96.86833, + "nameAirport": "Redbird", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "airportId": 6601, + "codeIataAirport": "RBE", + "codeIataCity": "RBE", + "codeIcaoAirport": "VDRK", + "codeIso2Country": "KH", + "geonameId": "7730212", + "latitudeAirport": 13.666667, + "longitudeAirport": 106.98333, + "nameAirport": "Ratanakiri", + "nameCountry": "Cambodia", + "phone": "", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "-8", + "airportId": 6602, + "codeIataAirport": "RBF", + "codeIataCity": "RBF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5328153", + "latitudeAirport": 34.266666, + "longitudeAirport": -116.85, + "nameAirport": "Big Bear City Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-8", + "airportId": 6603, + "codeIataAirport": "RBG", + "codeIataCity": "RBG", + "codeIcaoAirport": "KRBG", + "codeIso2Country": "US", + "geonameId": "5749363", + "latitudeAirport": 43.238888, + "longitudeAirport": -123.35972, + "nameAirport": "Roseburg Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-9", + "airportId": 6604, + "codeIataAirport": "RBH", + "codeIataCity": "RBH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5867071", + "latitudeAirport": 58.55, + "longitudeAirport": -155.8, + "nameAirport": "Brooks Lodge", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "12", + "airportId": 6605, + "codeIataAirport": "RBI", + "codeIataCity": "RBI", + "codeIcaoAirport": "", + "codeIso2Country": "FJ", + "geonameId": "8298889", + "latitudeAirport": 15.0, + "longitudeAirport": -179.0, + "nameAirport": "Rabi", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "9", + "airportId": 6606, + "codeIataAirport": "RBJ", + "codeIataCity": "RBJ", + "codeIcaoAirport": "RJCR", + "codeIso2Country": "JP", + "geonameId": "6300328", + "latitudeAirport": 45.38333, + "longitudeAirport": 141.03334, + "nameAirport": "Rebun", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-8", + "airportId": 6607, + "codeIataAirport": "RBK", + "codeIataCity": "RBK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5350907", + "latitudeAirport": 33.566666, + "longitudeAirport": -117.11667, + "nameAirport": "French Valley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-8", + "airportId": 6608, + "codeIataAirport": "RBL", + "codeIataCity": "RBL", + "codeIcaoAirport": "KRBL", + "codeIso2Country": "US", + "geonameId": "5570070", + "latitudeAirport": 40.156555, + "longitudeAirport": -122.27292, + "nameAirport": "Red Bluff Fss", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 6609, + "codeIataAirport": "RBM", + "codeIataCity": "RBM", + "codeIcaoAirport": "KRBM", + "codeIso2Country": "DE", + "geonameId": "3206777", + "latitudeAirport": 48.901943, + "longitudeAirport": 12.519722, + "nameAirport": "Wallmuhle", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "airportId": 6610, + "codeIataAirport": "RBN", + "codeIataCity": "RBN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8260812", + "latitudeAirport": 24.616667, + "longitudeAirport": -82.86667, + "nameAirport": "Fort Jefferson", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "airportId": 6611, + "codeIataAirport": "RBO", + "codeIataCity": "RBO", + "codeIcaoAirport": "SLRB", + "codeIso2Country": "BO", + "geonameId": "6300781", + "latitudeAirport": -18.344444, + "longitudeAirport": -59.75528, + "nameAirport": "Robore", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "10", + "airportId": 6612, + "codeIataAirport": "RBP", + "codeIataCity": "RBP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299098", + "latitudeAirport": -9.998611, + "longitudeAirport": 149.83333, + "nameAirport": "Rabaraba", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "airportId": 6613, + "codeIataAirport": "RBQ", + "codeIataCity": "RBQ", + "codeIcaoAirport": "SLRQ", + "codeIso2Country": "BO", + "geonameId": "6300783", + "latitudeAirport": -14.45, + "longitudeAirport": -67.55, + "nameAirport": "Rurrenabaque", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-5", + "airportId": 6614, + "codeIataAirport": "RBR", + "codeIataCity": "RBR", + "codeIcaoAirport": "SBRB", + "codeIso2Country": "BR", + "geonameId": "6300662", + "latitudeAirport": -9.966667, + "longitudeAirport": -67.8, + "nameAirport": "Pres. Medici", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Rio_Branco" + }, + { + "GMT": "10", + "airportId": 6615, + "codeIataAirport": "RBS", + "codeIataCity": "RBS", + "codeIcaoAirport": "YORB", + "codeIso2Country": "AU", + "geonameId": "7731455", + "latitudeAirport": -37.7, + "longitudeAirport": 148.5, + "nameAirport": "Orbost", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "3", + "airportId": 6616, + "codeIataAirport": "RBT", + "codeIataCity": "RBT", + "codeIcaoAirport": "HKMB", + "codeIso2Country": "KE", + "geonameId": "6297316", + "latitudeAirport": 2.333333, + "longitudeAirport": 37.983334, + "nameAirport": "Marsabit", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "8", + "airportId": 6617, + "codeIataAirport": "RBU", + "codeIataCity": "RBU", + "codeIcaoAirport": "YROE", + "codeIso2Country": "AU", + "geonameId": "7731456", + "latitudeAirport": -20.8, + "longitudeAirport": 117.166664, + "nameAirport": "Roebourne", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "11", + "airportId": 6618, + "codeIataAirport": "RBV", + "codeIataCity": "RBV", + "codeIcaoAirport": "AGRM", + "codeIso2Country": "SB", + "geonameId": "7668074", + "latitudeAirport": -8.165556, + "longitudeAirport": 157.63945, + "nameAirport": "Ramata", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-5", + "airportId": 6619, + "codeIataAirport": "RBW", + "codeIataCity": "RBW", + "codeIcaoAirport": "KRBW", + "codeIso2Country": "US", + "geonameId": "4600065", + "latitudeAirport": 32.9, + "longitudeAirport": -80.666664, + "nameAirport": "Lowcountry Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 6620, + "codeIataAirport": "RBX", + "codeIataCity": "RBX", + "codeIcaoAirport": "HSMK", + "codeIso2Country": "SS", + "geonameId": "8260728", + "latitudeAirport": 6.825243, + "longitudeAirport": 29.66953, + "nameAirport": "Rumbek", + "nameCountry": "South Sudan", + "phone": "", + "timezone": "Africa/Juba" + }, + { + "GMT": "-9", + "airportId": 6621, + "codeIataAirport": "RBY", + "codeIataCity": "RBY", + "codeIcaoAirport": "PARY", + "codeIso2Country": "US", + "geonameId": "5873031", + "latitudeAirport": 64.73, + "longitudeAirport": -155.46083, + "nameAirport": "Ruby", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "airportId": 6622, + "codeIataAirport": "RCA", + "codeIataCity": "RAP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 44.083332, + "longitudeAirport": -103.23333, + "nameAirport": "Ellsworth AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "2", + "airportId": 6623, + "codeIataAirport": "RCB", + "codeIataCity": "RCB", + "codeIcaoAirport": "FARB", + "codeIso2Country": "ZA", + "geonameId": "6296925", + "latitudeAirport": -28.740557, + "longitudeAirport": 32.093056, + "nameAirport": "Richards Bay", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "1", + "airportId": 6624, + "codeIataAirport": "RCC", + "codeIataCity": "REG", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 38.07, + "longitudeAirport": 15.65, + "nameAirport": "Reggio di Calabria Central Railway Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-8", + "airportId": 6625, + "codeIataAirport": "RCE", + "codeIataCity": "RCE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5808523", + "latitudeAirport": 48.583332, + "longitudeAirport": -123.166664, + "nameAirport": "Roche Harbor", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 6626, + "codeIataAirport": "RCH", + "codeIataCity": "RCH", + "codeIcaoAirport": "SKRH", + "codeIso2Country": "CO", + "geonameId": "6300756", + "latitudeAirport": 11.529167, + "longitudeAirport": -72.924446, + "nameAirport": "Riohacha", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 6627, + "codeIataAirport": "RCK", + "codeIataCity": "RCK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.65, + "longitudeAirport": -97.0, + "nameAirport": "Coffield", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "11", + "airportId": 6628, + "codeIataAirport": "RCL", + "codeIataCity": "RCL", + "codeIcaoAirport": "NVSR", + "codeIso2Country": "VU", + "geonameId": "7730715", + "latitudeAirport": -27.207035, + "longitudeAirport": 153.07333, + "nameAirport": "Redcliffe", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "10", + "airportId": 6629, + "codeIataAirport": "RCM", + "codeIataCity": "RCM", + "codeIcaoAirport": "YSRI", + "codeIso2Country": "AU", + "geonameId": "7668764", + "latitudeAirport": -20.70389, + "longitudeAirport": 143.11667, + "nameAirport": "Richmond", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "airportId": 6630, + "codeIataAirport": "RCO", + "codeIataCity": "RCO", + "codeIcaoAirport": "LFDN", + "codeIso2Country": "FR", + "geonameId": "6694764", + "latitudeAirport": 45.890556, + "longitudeAirport": -0.980556, + "nameAirport": "Saint Agnant", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-9", + "airportId": 6631, + "codeIataAirport": "RCP", + "codeIataCity": "RCP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8298975", + "latitudeAirport": 57.083057, + "longitudeAirport": -157.80556, + "nameAirport": "Cinder River", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "airportId": 6632, + "codeIataAirport": "RCQ", + "codeIataCity": "RCQ", + "codeIcaoAirport": "SATR", + "codeIso2Country": "AR", + "geonameId": "6300561", + "latitudeAirport": -29.183332, + "longitudeAirport": -59.7, + "nameAirport": "Reconquista", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-5", + "airportId": 6633, + "codeIataAirport": "RCR", + "codeIataCity": "RCR", + "codeIcaoAirport": "KRCR", + "codeIso2Country": "US", + "geonameId": "4925519", + "latitudeAirport": 41.066666, + "longitudeAirport": -86.21667, + "nameAirport": "Fulton County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "0", + "airportId": 6634, + "codeIataAirport": "RCS", + "codeIataCity": "RCS", + "codeIcaoAirport": "EGTO", + "codeIso2Country": "GB", + "geonameId": "7668212", + "latitudeAirport": 51.35, + "longitudeAirport": 0.5, + "nameAirport": "Rochester", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "airportId": 6635, + "codeIataAirport": "RCT", + "codeIataCity": "RCT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5006946", + "latitudeAirport": 43.88333, + "longitudeAirport": -85.51667, + "nameAirport": "Miller Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-3", + "airportId": 6636, + "codeIataAirport": "RCU", + "codeIataCity": "RCU", + "codeIcaoAirport": "SAOC", + "codeIso2Country": "AR", + "geonameId": "6300540", + "latitudeAirport": -33.165558, + "longitudeAirport": -64.331665, + "nameAirport": "Rio Cuarto", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-5", + "airportId": 6637, + "codeIataAirport": "RCY", + "codeIataCity": "RCY", + "codeIcaoAirport": "MYRP", + "codeIso2Country": "BS", + "geonameId": "7668364", + "latitudeAirport": 23.666668, + "longitudeAirport": -74.96667, + "nameAirport": "Rum Cay", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "9.30", + "airportId": 6638, + "codeIataAirport": "RDA", + "codeIataCity": "RDA", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731457", + "latitudeAirport": -18.95, + "longitudeAirport": 135.16667, + "nameAirport": "Rockhampton Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-9", + "airportId": 6639, + "codeIataAirport": "RDB", + "codeIataCity": "RDB", + "codeIcaoAirport": "PADG", + "codeIso2Country": "US", + "geonameId": "5872534", + "latitudeAirport": 67.75, + "longitudeAirport": -163.66667, + "nameAirport": "Red Dog", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "airportId": 6640, + "codeIataAirport": "RDC", + "codeIataCity": "RDC", + "codeIcaoAirport": "SNDC", + "codeIso2Country": "BR", + "geonameId": "7731458", + "latitudeAirport": -8.030278, + "longitudeAirport": -49.98, + "nameAirport": "Redencao", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Belem" + }, + { + "GMT": "-8", + "airportId": 6641, + "codeIataAirport": "RDD", + "codeIataCity": "RDD", + "codeIcaoAirport": "KRDD", + "codeIso2Country": "US", + "geonameId": "5570166", + "latitudeAirport": 40.505768, + "longitudeAirport": -122.29991, + "nameAirport": "Redding", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9", + "airportId": 6642, + "codeIataAirport": "RDE", + "codeIataCity": "RDE", + "codeIcaoAirport": "WASM", + "codeIso2Country": "ID", + "geonameId": "7731459", + "latitudeAirport": -1.583333, + "longitudeAirport": 133.33333, + "nameAirport": "Merdey", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-5", + "airportId": 6643, + "codeIataAirport": "RDG", + "codeIataCity": "RDG", + "codeIcaoAirport": "KRDG", + "codeIso2Country": "US", + "geonameId": "5207738", + "latitudeAirport": 40.378613, + "longitudeAirport": -75.96389, + "nameAirport": "Municipalcipal/Spaatz Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "airportId": 6644, + "codeIataAirport": "RDM", + "codeIataCity": "RDM", + "codeIcaoAirport": "KRDM", + "codeIso2Country": "US", + "geonameId": "5748654", + "latitudeAirport": 44.254272, + "longitudeAirport": -121.162895, + "nameAirport": "Roberts Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 6645, + "codeIataAirport": "RDN", + "codeIataCity": "RDN", + "codeIcaoAirport": "WMPR", + "codeIso2Country": "MY", + "geonameId": "7731460", + "latitudeAirport": 5.765278, + "longitudeAirport": 103.00694, + "nameAirport": "LTS Pulau Redang", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "-6", + "airportId": 6646, + "codeIataAirport": "RDR", + "codeIataCity": "RDR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 46.833332, + "longitudeAirport": -96.75, + "nameAirport": "Grand Forks AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 6647, + "codeIataAirport": "RDS", + "codeIataCity": "RDS", + "codeIcaoAirport": "SAHS", + "codeIso2Country": "AR", + "geonameId": "7730147", + "latitudeAirport": -37.38333, + "longitudeAirport": -68.9, + "nameAirport": "Rincon de los Sauces", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "0", + "airportId": 6648, + "codeIataAirport": "RDT", + "codeIataCity": "RDT", + "codeIcaoAirport": "", + "codeIso2Country": "SN", + "geonameId": "0", + "latitudeAirport": 16.437222, + "longitudeAirport": -15.657222, + "nameAirport": "Richard Toll", + "nameCountry": "Senegal", + "phone": "", + "timezone": "Africa/Dakar" + }, + { + "GMT": "-5", + "airportId": 6649, + "codeIataAirport": "RDU", + "codeIataCity": "RDU", + "codeIcaoAirport": "KRDU", + "codeIso2Country": "US", + "geonameId": "4487056", + "latitudeAirport": 35.873592, + "longitudeAirport": -78.79086, + "nameAirport": "Raleigh-durham International Airport", + "nameCountry": "United States", + "phone": "919-840-2123", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 6650, + "codeIataAirport": "RDV", + "codeIataCity": "RDV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5872533", + "latitudeAirport": 61.787224, + "longitudeAirport": -157.34694, + "nameAirport": "Red Devil", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 6651, + "codeIataAirport": "RDZ", + "codeIataCity": "RDZ", + "codeIcaoAirport": "LFCR", + "codeIso2Country": "FR", + "geonameId": "6299385", + "latitudeAirport": 44.410595, + "longitudeAirport": 2.483866, + "nameAirport": "Marcillac", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-10", + "airportId": 6652, + "codeIataAirport": "REA", + "codeIataCity": "REA", + "codeIcaoAirport": "NTGE", + "codeIso2Country": "PF", + "geonameId": "7730121", + "latitudeAirport": -18.5, + "longitudeAirport": -136.4, + "nameAirport": "Reao", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "1", + "airportId": 6653, + "codeIataAirport": "REB", + "codeIataCity": "REB", + "codeIcaoAirport": "EDAX", + "codeIso2Country": "DE", + "geonameId": "2849717", + "latitudeAirport": 53.35, + "longitudeAirport": 12.716667, + "nameAirport": "Rechlin", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-3", + "airportId": 6654, + "codeIataAirport": "REC", + "codeIataCity": "REC", + "codeIcaoAirport": "SBRF", + "codeIso2Country": "BR", + "geonameId": "6300663", + "latitudeAirport": -8.131507, + "longitudeAirport": -34.91792, + "nameAirport": "Guararapes International", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Recife" + }, + { + "GMT": "-5", + "airportId": 6655, + "codeIataAirport": "RED", + "codeIataCity": "RED", + "codeIcaoAirport": "KRVL", + "codeIso2Country": "US", + "geonameId": "5201069", + "latitudeAirport": 40.683334, + "longitudeAirport": -77.61667, + "nameAirport": "Mifflin County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 6656, + "codeIataAirport": "REE", + "codeIataCity": "LBB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.583332, + "longitudeAirport": -101.85, + "nameAirport": "Reese AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 6657, + "codeIataAirport": "REG", + "codeIataCity": "REG", + "codeIcaoAirport": "LICR", + "codeIso2Country": "IT", + "geonameId": "6299561", + "latitudeAirport": 38.07528, + "longitudeAirport": 15.650833, + "nameAirport": "Tito Menniti", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-3", + "airportId": 6658, + "codeIataAirport": "REI", + "codeIataCity": "REI", + "codeIcaoAirport": "", + "codeIso2Country": "GF", + "geonameId": "0", + "latitudeAirport": 4.316667, + "longitudeAirport": -52.13333, + "nameAirport": "Regina", + "nameCountry": "French Guiana", + "phone": "", + "timezone": "America/Cayenne" + }, + { + "GMT": "-3", + "airportId": 6659, + "codeIataAirport": "REL", + "codeIataCity": "REL", + "codeIcaoAirport": "SAVT", + "codeIso2Country": "AR", + "geonameId": "6300567", + "latitudeAirport": -43.233334, + "longitudeAirport": -65.32333, + "nameAirport": "Almirante Zar", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "5", + "airportId": 6660, + "codeIataAirport": "REN", + "codeIataCity": "REN", + "codeIcaoAirport": "UWOO", + "codeIso2Country": "RU", + "geonameId": "6301024", + "latitudeAirport": 51.79105, + "longitudeAirport": 55.4567, + "nameAirport": "Orenburg", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-8", + "airportId": 6661, + "codeIataAirport": "REO", + "codeIataCity": "REO", + "codeIcaoAirport": "KREO", + "codeIso2Country": "US", + "geonameId": "5749253", + "latitudeAirport": 42.833332, + "longitudeAirport": -117.61667, + "nameAirport": "Rome State", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "7", + "airportId": 6662, + "codeIataAirport": "REP", + "codeIataCity": "REP", + "codeIcaoAirport": "VDSR", + "codeIso2Country": "KH", + "geonameId": "6301065", + "latitudeAirport": 13.408436, + "longitudeAirport": 103.815926, + "nameAirport": "Siem Reap", + "nameCountry": "Cambodia", + "phone": "", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "5", + "airportId": 6663, + "codeIataAirport": "REQ", + "codeIataCity": "REQ", + "codeIcaoAirport": "", + "codeIso2Country": "PK", + "geonameId": "0", + "latitudeAirport": -5.064947, + "longitudeAirport": -73.86667, + "nameAirport": "Reko Diq", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-6", + "airportId": 6664, + "codeIataAirport": "RER", + "codeIataCity": "RER", + "codeIcaoAirport": "MGRT", + "codeIso2Country": "GT", + "geonameId": "6299805", + "latitudeAirport": 14.520278, + "longitudeAirport": -91.696945, + "nameAirport": "Base Aerea Del Sur", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "-3", + "airportId": 6665, + "codeIataAirport": "RES", + "codeIataCity": "RES", + "codeIcaoAirport": "SARE", + "codeIso2Country": "AR", + "geonameId": "6300547", + "latitudeAirport": -27.45139, + "longitudeAirport": -59.050835, + "nameAirport": "Resistencia", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "1", + "airportId": 6666, + "codeIataAirport": "RET", + "codeIataCity": "RET", + "codeIcaoAirport": "ENRS", + "codeIso2Country": "NO", + "geonameId": "6296764", + "latitudeAirport": 67.48333, + "longitudeAirport": 12.083333, + "nameAirport": "Stolport", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 6667, + "codeIataAirport": "REU", + "codeIataCity": "REU", + "codeIcaoAirport": "LERS", + "codeIso2Country": "ES", + "geonameId": "6299352", + "latitudeAirport": 41.146103, + "longitudeAirport": 1.153319, + "nameAirport": "Reus", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "5.30", + "airportId": 6668, + "codeIataAirport": "REW", + "codeIataCity": "REW", + "codeIcaoAirport": "", + "codeIso2Country": "IN", + "geonameId": "8298861", + "latitudeAirport": 24.533333, + "longitudeAirport": 81.3, + "nameAirport": "Rewa", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-6", + "airportId": 6669, + "codeIataAirport": "REX", + "codeIataCity": "REX", + "codeIcaoAirport": "MMRX", + "codeIso2Country": "MX", + "geonameId": "3520339", + "latitudeAirport": 26.0125, + "longitudeAirport": -98.23, + "nameAirport": "Gen Lucio Blanco", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Matamoros" + }, + { + "GMT": "-4", + "airportId": 6670, + "codeIataAirport": "REY", + "codeIataCity": "REY", + "codeIcaoAirport": "SLRY", + "codeIso2Country": "BO", + "geonameId": "6300784", + "latitudeAirport": -14.316667, + "longitudeAirport": -67.26667, + "nameAirport": "Reyes", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-3", + "airportId": 6671, + "codeIataAirport": "REZ", + "codeIataCity": "REZ", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "0", + "latitudeAirport": -22.478056, + "longitudeAirport": -44.48111, + "nameAirport": "Resende", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 6672, + "codeIataAirport": "RFA", + "codeIataCity": "RFA", + "codeIcaoAirport": "FEGR", + "codeIso2Country": "CF", + "geonameId": "7730501", + "latitudeAirport": 4.983333, + "longitudeAirport": 23.966667, + "nameAirport": "Rafai", + "nameCountry": "Central African Republic", + "phone": "", + "timezone": "Africa/Bangui" + }, + { + "GMT": "-6", + "airportId": 6673, + "codeIataAirport": "RFD", + "codeIataCity": "CHI", + "codeIcaoAirport": "KRFD", + "codeIso2Country": "US", + "geonameId": "4894553", + "latitudeAirport": 42.30364, + "longitudeAirport": -89.222115, + "nameAirport": "Greater Rockford Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 6674, + "codeIataAirport": "RFG", + "codeIataCity": "RFG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4722145", + "latitudeAirport": 28.333332, + "longitudeAirport": -97.35, + "nameAirport": "Rooke Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 6675, + "codeIataAirport": "RFK", + "codeIataCity": "RFK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.966667, + "longitudeAirport": -90.816666, + "nameAirport": "Rollang Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 6676, + "codeIataAirport": "RFN", + "codeIataCity": "RFN", + "codeIcaoAirport": "BIRG", + "codeIso2Country": "IS", + "geonameId": "6295711", + "latitudeAirport": 66.416664, + "longitudeAirport": -15.016667, + "nameAirport": "Raufarhofn", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-10", + "airportId": 6677, + "codeIataAirport": "RFP", + "codeIataCity": "RFP", + "codeIcaoAirport": "NTTR", + "codeIso2Country": "PF", + "geonameId": "7730133", + "latitudeAirport": -16.725004, + "longitudeAirport": -151.46666, + "nameAirport": "Raiatea", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-6", + "airportId": 6678, + "codeIataAirport": "RFR", + "codeIataCity": "RFR", + "codeIcaoAirport": "MRRF", + "codeIso2Country": "CR", + "geonameId": "7730678", + "latitudeAirport": 10.333333, + "longitudeAirport": -83.88333, + "nameAirport": "Rio Frio", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-6", + "airportId": 6679, + "codeIataAirport": "RFS", + "codeIataCity": "RFS", + "codeIcaoAirport": "MNRT", + "codeIso2Country": "NI", + "geonameId": "7668352", + "latitudeAirport": 13.883333, + "longitudeAirport": -84.4, + "nameAirport": "Rosita", + "nameCountry": "Nicaragua", + "phone": "", + "timezone": "America/Managua" + }, + { + "GMT": "-3", + "airportId": 6680, + "codeIataAirport": "RGA", + "codeIataCity": "RGA", + "codeIcaoAirport": "SAWE", + "codeIso2Country": "AR", + "geonameId": "6300572", + "latitudeAirport": -53.779167, + "longitudeAirport": -67.75, + "nameAirport": "Rio Grande", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Ushuaia" + }, + { + "GMT": "10", + "airportId": 6681, + "codeIataAirport": "RGE", + "codeIataCity": "RGE", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2088143", + "latitudeAirport": -5.416667, + "longitudeAirport": 143.15, + "nameAirport": "Porgera", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5.30", + "airportId": 6682, + "codeIataAirport": "RGH", + "codeIataCity": "RGH", + "codeIcaoAirport": "VEBG", + "codeIso2Country": "IN", + "geonameId": "7668587", + "latitudeAirport": 25.25, + "longitudeAirport": 88.73333, + "nameAirport": "Balurghat", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-10", + "airportId": 6683, + "codeIataAirport": "RGI", + "codeIataCity": "RGI", + "codeIcaoAirport": "NTTG", + "codeIso2Country": "PF", + "geonameId": "6299966", + "latitudeAirport": -14.956334, + "longitudeAirport": -147.65915, + "nameAirport": "Rangiroa", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "6", + "airportId": 6684, + "codeIataAirport": "RGK", + "codeIataCity": "RGK", + "codeIcaoAirport": "UNBG", + "codeIso2Country": "RU", + "geonameId": "8298675", + "latitudeAirport": 51.969166, + "longitudeAirport": 85.83639, + "nameAirport": "Gorno-Altaysk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Omsk" + }, + { + "GMT": "-3", + "airportId": 6685, + "codeIataAirport": "RGL", + "codeIataCity": "RGL", + "codeIcaoAirport": "SAWG", + "codeIso2Country": "AR", + "geonameId": "6300573", + "latitudeAirport": -51.61667, + "longitudeAirport": -69.28333, + "nameAirport": "Internacional", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "6.30", + "airportId": 6686, + "codeIataAirport": "RGN", + "codeIataCity": "RGN", + "codeIcaoAirport": "VYYY", + "codeIso2Country": "MM", + "geonameId": "6301176", + "latitudeAirport": 16.900068, + "longitudeAirport": 96.134155, + "nameAirport": "Mingaladon", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "8.30", + "airportId": 6687, + "codeIataAirport": "RGO", + "codeIataCity": "RGO", + "codeIcaoAirport": "", + "codeIso2Country": "KP", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Orang", + "nameCountry": "North Korea", + "phone": "", + "timezone": "Asia/Pyongyang" + }, + { + "GMT": "-6", + "airportId": 6688, + "codeIataAirport": "RGR", + "codeIataCity": "RGR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.466667, + "longitudeAirport": -98.683334, + "nameAirport": "Ranger Municipalcipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 6689, + "codeIataAirport": "RGS", + "codeIataCity": "RGS", + "codeIcaoAirport": "LEBG", + "codeIso2Country": "ES", + "geonameId": "6299329", + "latitudeAirport": 42.35494, + "longitudeAirport": -3.62295, + "nameAirport": "Burgos", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "7", + "airportId": 6690, + "codeIataAirport": "RGT", + "codeIataCity": "RGT", + "codeIcaoAirport": "WIPR", + "codeIso2Country": "ID", + "geonameId": "6301248", + "latitudeAirport": -0.4, + "longitudeAirport": 102.55, + "nameAirport": "Japura", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "0", + "airportId": 6691, + "codeIataAirport": "RHA", + "codeIataCity": "RHA", + "codeIcaoAirport": "BIRE", + "codeIso2Country": "IS", + "geonameId": "7730436", + "latitudeAirport": 65.166664, + "longitudeAirport": -21.416668, + "nameAirport": "Reykholar", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-3", + "airportId": 6692, + "codeIataAirport": "RHD", + "codeIataCity": "RHD", + "codeIcaoAirport": "SANH", + "codeIso2Country": "AR", + "geonameId": "7730766", + "latitudeAirport": -27.533333, + "longitudeAirport": -64.95, + "nameAirport": "Rio Hondo", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "1", + "airportId": 6693, + "codeIataAirport": "RHE", + "codeIataCity": "RHE", + "codeIcaoAirport": "LFSR", + "codeIso2Country": "FR", + "geonameId": "6299474", + "latitudeAirport": 49.310833, + "longitudeAirport": 4.050556, + "nameAirport": "Reims", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "2", + "airportId": 6694, + "codeIataAirport": "RHG", + "codeIataCity": "RHG", + "codeIcaoAirport": "", + "codeIso2Country": "RW", + "geonameId": "201521", + "latitudeAirport": -1.5, + "longitudeAirport": 29.6, + "nameAirport": "Ruhengeri", + "nameCountry": "Rwanda", + "phone": "", + "timezone": "Africa/Kigali" + }, + { + "GMT": "-6", + "airportId": 6695, + "codeIataAirport": "RHI", + "codeIataCity": "RHI", + "codeIcaoAirport": "KRHI", + "codeIso2Country": "US", + "geonameId": "5268730", + "latitudeAirport": 45.625706, + "longitudeAirport": -89.46253, + "nameAirport": "Oneida County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 6696, + "codeIataAirport": "RHL", + "codeIataCity": "RHL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298810", + "latitudeAirport": -22.75, + "longitudeAirport": 120.0, + "nameAirport": "Roy Hill", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "2", + "airportId": 6697, + "codeIataAirport": "RHN", + "codeIataCity": "RHN", + "codeIcaoAirport": "", + "codeIso2Country": "NA", + "geonameId": "8298746", + "latitudeAirport": -27.966667, + "longitudeAirport": 16.7, + "nameAirport": "Rosh Pina", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "2", + "airportId": 6698, + "codeIataAirport": "RHO", + "codeIataCity": "RHO", + "codeIcaoAirport": "LGRP", + "codeIso2Country": "GR", + "geonameId": "6301777", + "latitudeAirport": 36.401867, + "longitudeAirport": 28.090677, + "nameAirport": "Diagoras", + "nameCountry": "Greece", + "phone": "22410/83-214", + "timezone": "Europe/Athens" + }, + { + "GMT": "5.45", + "airportId": 6699, + "codeIataAirport": "RHP", + "codeIataCity": "RHP", + "codeIcaoAirport": "VNRC", + "codeIso2Country": "NP", + "geonameId": "7668627", + "latitudeAirport": 27.333332, + "longitudeAirport": 86.083336, + "nameAirport": "Ramechhap", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-8", + "airportId": 6700, + "codeIataAirport": "RHV", + "codeIataCity": "SJC", + "codeIcaoAirport": "KRHV", + "codeIso2Country": "US", + "geonameId": "5387055", + "latitudeAirport": 37.333332, + "longitudeAirport": -121.88333, + "nameAirport": "Reid-Hillview", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "airportId": 6701, + "codeIataAirport": "RIA", + "codeIataCity": "RIA", + "codeIcaoAirport": "SBSM", + "codeIso2Country": "BR", + "geonameId": "6300671", + "latitudeAirport": -29.710556, + "longitudeAirport": -53.6875, + "nameAirport": "Base Aerea De Santa Maria", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-4", + "airportId": 6702, + "codeIataAirport": "RIB", + "codeIataCity": "RIB", + "codeIcaoAirport": "SLRI", + "codeIso2Country": "BO", + "geonameId": "6300782", + "latitudeAirport": -11.006944, + "longitudeAirport": -66.093056, + "nameAirport": "Gen Buech", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-5", + "airportId": 6703, + "codeIataAirport": "RIC", + "codeIataCity": "RIC", + "codeIcaoAirport": "KRIC", + "codeIso2Country": "US", + "geonameId": "6298981", + "latitudeAirport": 37.50611, + "longitudeAirport": -77.3225, + "nameAirport": "Richmond International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 6704, + "codeIataAirport": "RID", + "codeIataCity": "RID", + "codeIcaoAirport": "KRID", + "codeIso2Country": "US", + "geonameId": "4263683", + "latitudeAirport": 39.833332, + "longitudeAirport": -84.9, + "nameAirport": "Richmond Municipalcipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-6", + "airportId": 6705, + "codeIataAirport": "RIE", + "codeIataCity": "RIE", + "codeIcaoAirport": "KRPD", + "codeIso2Country": "US", + "geonameId": "6301707", + "latitudeAirport": 45.47861, + "longitudeAirport": -91.72361, + "nameAirport": "Rice Lake", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 6706, + "codeIataAirport": "RIF", + "codeIataCity": "RIF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.74111, + "longitudeAirport": -112.094444, + "nameAirport": "Reynolds", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-3", + "airportId": 6707, + "codeIataAirport": "RIG", + "codeIataCity": "RIG", + "codeIcaoAirport": "SBRG", + "codeIso2Country": "BR", + "geonameId": "7910172", + "latitudeAirport": -32.083332, + "longitudeAirport": -52.166668, + "nameAirport": "Rio Grande", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "airportId": 6708, + "codeIataAirport": "RIJ", + "codeIataCity": "RIJ", + "codeIcaoAirport": "SPJA", + "codeIso2Country": "PE", + "geonameId": "6300807", + "latitudeAirport": -6.05, + "longitudeAirport": -77.15, + "nameAirport": "Rioja", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "-6", + "airportId": 6709, + "codeIataAirport": "RIK", + "codeIataCity": "RIK", + "codeIcaoAirport": "MRCR", + "codeIso2Country": "CR", + "geonameId": "7668356", + "latitudeAirport": 9.866667, + "longitudeAirport": -85.48333, + "nameAirport": "Carrillo", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-7", + "airportId": 6710, + "codeIataAirport": "RIL", + "codeIataCity": "RIL", + "codeIcaoAirport": "KRIL", + "codeIso2Country": "US", + "geonameId": "5436363", + "latitudeAirport": 39.533333, + "longitudeAirport": -107.78333, + "nameAirport": "Garfield County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 6711, + "codeIataAirport": "RIM", + "codeIataCity": "RIM", + "codeIcaoAirport": "SPLN", + "codeIso2Country": "PE", + "geonameId": "7731461", + "latitudeAirport": -6.0, + "longitudeAirport": -78.0, + "nameAirport": "Rodriguez De Mendoza", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "11", + "airportId": 6712, + "codeIataAirport": "RIN", + "codeIataCity": "RIN", + "codeIcaoAirport": "AGRC", + "codeIso2Country": "SB", + "geonameId": "7730407", + "latitudeAirport": -8.2, + "longitudeAirport": 157.03334, + "nameAirport": "Ringi Cove", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-8", + "airportId": 6713, + "codeIataAirport": "RIR", + "codeIataCity": "RAL", + "codeIcaoAirport": "KRIR", + "codeIso2Country": "US", + "geonameId": "5349447", + "latitudeAirport": 33.983334, + "longitudeAirport": -117.36667, + "nameAirport": "Riverside Fla-Bob", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9", + "airportId": 6714, + "codeIataAirport": "RIS", + "codeIataCity": "RIS", + "codeIcaoAirport": "RJER", + "codeIso2Country": "JP", + "geonameId": "6300342", + "latitudeAirport": 45.183334, + "longitudeAirport": 141.25, + "nameAirport": "Rishiri", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "airportId": 6715, + "codeIataAirport": "RIT", + "codeIataCity": "RIT", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "8299118", + "latitudeAirport": 7.833333, + "longitudeAirport": -80.8, + "nameAirport": "Rio Tigre", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "-8", + "airportId": 6716, + "codeIataAirport": "RIV", + "codeIataCity": "RAL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.983334, + "longitudeAirport": -117.36667, + "nameAirport": "March ARB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-7", + "airportId": 6717, + "codeIataAirport": "RIW", + "codeIataCity": "RIW", + "codeIcaoAirport": "KRIW", + "codeIso2Country": "US", + "geonameId": "5836675", + "latitudeAirport": 43.064445, + "longitudeAirport": -108.45695, + "nameAirport": "Riverton Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "2", + "airportId": 6718, + "codeIataAirport": "RIX", + "codeIataCity": "RIX", + "codeIcaoAirport": "EVRA", + "codeIso2Country": "LV", + "geonameId": "456172", + "latitudeAirport": 56.92208, + "longitudeAirport": 23.979807, + "nameAirport": "Riga International", + "nameCountry": "Latvia", + "phone": "", + "timezone": "Europe/Riga" + }, + { + "GMT": "3", + "airportId": 6719, + "codeIataAirport": "RIY", + "codeIataCity": "RIY", + "codeIcaoAirport": "OYRN", + "codeIso2Country": "YE", + "geonameId": "7667481", + "latitudeAirport": 14.666999, + "longitudeAirport": 49.373684, + "nameAirport": "Riyan Mukalla", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "-5", + "airportId": 6720, + "codeIataAirport": "RIZ", + "codeIataCity": "RIZ", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "8299137", + "latitudeAirport": 8.25, + "longitudeAirport": -80.833336, + "nameAirport": "Rio Alzucar", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "5.30", + "airportId": 6721, + "codeIataAirport": "RJA", + "codeIataCity": "RJA", + "codeIcaoAirport": "VORY", + "codeIso2Country": "IN", + "geonameId": "7668635", + "latitudeAirport": 17.109638, + "longitudeAirport": 81.82081, + "nameAirport": "Rajahmundry", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.45", + "airportId": 6722, + "codeIataAirport": "RJB", + "codeIataCity": "RJB", + "codeIcaoAirport": "VNRB", + "codeIso2Country": "NP", + "geonameId": "7731462", + "latitudeAirport": 26.483334, + "longitudeAirport": 86.833336, + "nameAirport": "Rajbiraj", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "6", + "airportId": 6723, + "codeIataAirport": "RJH", + "codeIataCity": "RJH", + "codeIcaoAirport": "VGRJ", + "codeIso2Country": "BD", + "geonameId": "6301085", + "latitudeAirport": 24.433332, + "longitudeAirport": 88.61667, + "nameAirport": "Rajshahi", + "nameCountry": "Bangladesh", + "phone": "", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "5.30", + "airportId": 6724, + "codeIataAirport": "RJI", + "codeIataCity": "RJI", + "codeIcaoAirport": "", + "codeIso2Country": "IN", + "geonameId": "7731463", + "latitudeAirport": 33.36861, + "longitudeAirport": 74.3025, + "nameAirport": "Rajouri", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "airportId": 6725, + "codeIataAirport": "RJK", + "codeIataCity": "RJK", + "codeIcaoAirport": "LDRI", + "codeIso2Country": "HR", + "geonameId": "3219203", + "latitudeAirport": 45.21583, + "longitudeAirport": 14.568333, + "nameAirport": "Rijeka", + "nameCountry": "Croatia", + "phone": "", + "timezone": "Europe/Zagreb" + }, + { + "GMT": "1", + "airportId": 6726, + "codeIataAirport": "RJL", + "codeIataCity": "RJL", + "codeIcaoAirport": "LELO", + "codeIso2Country": "ES", + "geonameId": "8298723", + "latitudeAirport": 42.456944, + "longitudeAirport": -2.323611, + "nameAirport": "Agoncillo", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "3.30", + "airportId": 6727, + "codeIataAirport": "RJN", + "codeIataCity": "RJN", + "codeIcaoAirport": "OIKR", + "codeIso2Country": "IR", + "geonameId": "7668390", + "latitudeAirport": 30.296944, + "longitudeAirport": 56.056667, + "nameAirport": "Rafsanjan", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-10", + "airportId": 6728, + "codeIataAirport": "RKA", + "codeIataCity": "RKA", + "codeIcaoAirport": "NTKK", + "codeIso2Country": "PF", + "geonameId": "8298642", + "latitudeAirport": -15.485299, + "longitudeAirport": -145.46887, + "nameAirport": "Aratika-Nord", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-8", + "airportId": 6729, + "codeIataAirport": "RKC", + "codeIataCity": "RKC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.733334, + "longitudeAirport": -122.63333, + "nameAirport": "Yreka", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 6730, + "codeIataAirport": "RKD", + "codeIataCity": "RKD", + "codeIcaoAirport": "KRKD", + "codeIso2Country": "US", + "geonameId": "4968998", + "latitudeAirport": 44.059166, + "longitudeAirport": -69.09805, + "nameAirport": "Knox County Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 6731, + "codeIataAirport": "RKE", + "codeIataCity": "CPH", + "codeIcaoAirport": "EKRK", + "codeIso2Country": "DK", + "geonameId": "6949457", + "latitudeAirport": 55.583332, + "longitudeAirport": 12.133333, + "nameAirport": "Roskilde Airport", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-5", + "airportId": 6732, + "codeIataAirport": "RKH", + "codeIataCity": "RKH", + "codeIcaoAirport": "KUZA", + "codeIso2Country": "US", + "geonameId": "6299232", + "latitudeAirport": 34.916668, + "longitudeAirport": -81.01667, + "nameAirport": "Rock Hill", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "7", + "airportId": 6733, + "codeIataAirport": "RKI", + "codeIataCity": "RKI", + "codeIcaoAirport": "WIBR", + "codeIso2Country": "ID", + "geonameId": "7731464", + "latitudeAirport": -0.95, + "longitudeAirport": 100.75, + "nameAirport": "Rokot", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "7", + "airportId": 6734, + "codeIataAirport": "RKO", + "codeIataCity": "RKO", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "0", + "latitudeAirport": -2.083333, + "longitudeAirport": 116.0, + "nameAirport": "Sipora", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-6", + "airportId": 6735, + "codeIataAirport": "RKP", + "codeIataCity": "RKP", + "codeIcaoAirport": "KRKP", + "codeIso2Country": "US", + "geonameId": "4723422", + "latitudeAirport": 28.033333, + "longitudeAirport": -97.05, + "nameAirport": "Aransas County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 6736, + "codeIataAirport": "RKR", + "codeIataCity": "RKR", + "codeIcaoAirport": "KRKR", + "codeIso2Country": "US", + "geonameId": "4548363", + "latitudeAirport": 35.05, + "longitudeAirport": -94.61667, + "nameAirport": "Robert S Kerr", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 6737, + "codeIataAirport": "RKS", + "codeIataCity": "RKS", + "codeIcaoAirport": "KRKS", + "codeIso2Country": "US", + "geonameId": "5836904", + "latitudeAirport": 41.59639, + "longitudeAirport": -109.065834, + "nameAirport": "Sweetwater County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "4", + "airportId": 6738, + "codeIataAirport": "RKT", + "codeIataCity": "RKT", + "codeIcaoAirport": "OMRK", + "codeIso2Country": "AE", + "geonameId": "6300098", + "latitudeAirport": 25.616198, + "longitudeAirport": 55.943695, + "nameAirport": "Ras Al Khaimah", + "nameCountry": "United Arab Emirates", + "phone": "", + "timezone": "Asia/Dubai" + }, + { + "GMT": "10", + "airportId": 6739, + "codeIataAirport": "RKU", + "codeIataCity": "RKU", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8261002", + "latitudeAirport": -8.816667, + "longitudeAirport": 146.51666, + "nameAirport": "Kairuku", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 6740, + "codeIataAirport": "RKV", + "codeIataCity": "REK", + "codeIcaoAirport": "BIRK", + "codeIso2Country": "IS", + "geonameId": "6295712", + "latitudeAirport": 64.13106, + "longitudeAirport": -21.932476, + "nameAirport": "Reykjavik Domestic", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-5", + "airportId": 6741, + "codeIataAirport": "RKW", + "codeIataCity": "RKW", + "codeIcaoAirport": "KRKW", + "codeIso2Country": "US", + "geonameId": "4653999", + "latitudeAirport": 35.86667, + "longitudeAirport": -84.683334, + "nameAirport": "Rockwood Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 6742, + "codeIataAirport": "RKY", + "codeIataCity": "RKY", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298680", + "latitudeAirport": -13.166667, + "longitudeAirport": 143.43333, + "nameAirport": "Rokeby", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "airportId": 6743, + "codeIataAirport": "RKZ", + "codeIataCity": "RKZ", + "codeIcaoAirport": "ZURK", + "codeIso2Country": "CN", + "geonameId": "8260759", + "latitudeAirport": 29.351944, + "longitudeAirport": 89.31, + "nameAirport": "Peace", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 6744, + "codeIataAirport": "RLA", + "codeIataCity": "RLA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4406285", + "latitudeAirport": 38.127777, + "longitudeAirport": -91.77805, + "nameAirport": "National", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 6745, + "codeIataAirport": "RLD", + "codeIataCity": "RLD", + "codeIcaoAirport": "KRLD", + "codeIso2Country": "US", + "geonameId": "5808277", + "latitudeAirport": 46.308334, + "longitudeAirport": -119.30556, + "nameAirport": "Richland", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 6746, + "codeIataAirport": "RLG", + "codeIataCity": "RLG", + "codeIcaoAirport": "ETNL", + "codeIso2Country": "DE", + "geonameId": "3208726", + "latitudeAirport": 53.92, + "longitudeAirport": 12.266667, + "nameAirport": "Laage", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "airportId": 6747, + "codeIataAirport": "RLI", + "codeIataCity": "ANB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.666668, + "longitudeAirport": -85.85, + "nameAirport": "Reilly AHP", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 6748, + "codeIataAirport": "RLK", + "codeIataCity": "RLK", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "8260717", + "latitudeAirport": 40.926388, + "longitudeAirport": 107.73889, + "nameAirport": "Tianjitai", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-3", + "airportId": 6749, + "codeIataAirport": "RLO", + "codeIataCity": "RLO", + "codeIcaoAirport": "", + "codeIso2Country": "AR", + "geonameId": "7730767", + "latitudeAirport": -32.384445, + "longitudeAirport": -65.5525, + "nameAirport": "Valle Del Conlara", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/San_Luis" + }, + { + "GMT": "10", + "airportId": 6750, + "codeIataAirport": "RLP", + "codeIataCity": "RLP", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8299111", + "latitudeAirport": -18.0, + "longitudeAirport": 145.0, + "nameAirport": "Rosella Plains", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "airportId": 6751, + "codeIataAirport": "RLR", + "codeIataCity": "RLR", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "0", + "latitudeAirport": -22.645277, + "longitudeAirport": 45.323612, + "nameAirport": "Relais de la Reine", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "1", + "airportId": 6752, + "codeIataAirport": "RLT", + "codeIataCity": "RLT", + "codeIcaoAirport": "DRZL", + "codeIso2Country": "NE", + "geonameId": "2447513", + "latitudeAirport": 18.783333, + "longitudeAirport": 7.366667, + "nameAirport": "Arlit", + "nameCountry": "Niger", + "phone": "", + "timezone": "Africa/Niamey" + }, + { + "GMT": "-9", + "airportId": 6753, + "codeIataAirport": "RLU", + "codeIataCity": "RLU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5857861", + "latitudeAirport": 67.75, + "longitudeAirport": -156.0, + "nameAirport": "Bornite Upper", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 6754, + "codeIataAirport": "RMA", + "codeIataCity": "RMA", + "codeIcaoAirport": "YROM", + "codeIso2Country": "AU", + "geonameId": "6453434", + "latitudeAirport": -26.543552, + "longitudeAirport": 148.77943, + "nameAirport": "Roma", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "4", + "airportId": 6755, + "codeIataAirport": "RMB", + "codeIataCity": "RMB", + "codeIcaoAirport": "", + "codeIso2Country": "OM", + "geonameId": "0", + "latitudeAirport": 24.25, + "longitudeAirport": 55.783333, + "nameAirport": "Buraimi", + "nameCountry": "Oman", + "phone": "", + "timezone": "Asia/Muscat" + }, + { + "GMT": "5.30", + "airportId": 6756, + "codeIataAirport": "RMD", + "codeIataCity": "RMD", + "codeIcaoAirport": "", + "codeIso2Country": "IN", + "geonameId": "8261050", + "latitudeAirport": 18.766666, + "longitudeAirport": 79.4, + "nameAirport": "Ramagundam", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "airportId": 6757, + "codeIataAirport": "RME", + "codeIataCity": "RME", + "codeIcaoAirport": "KRME", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 43.216667, + "longitudeAirport": -75.45, + "nameAirport": "Griffiss AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 6758, + "codeIataAirport": "RMF", + "codeIataCity": "RMF", + "codeIcaoAirport": "HEMA", + "codeIso2Country": "EG", + "geonameId": "6943888", + "latitudeAirport": 25.555786, + "longitudeAirport": 34.592777, + "nameAirport": "Marsa Alam International", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-5", + "airportId": 6759, + "codeIataAirport": "RMG", + "codeIataCity": "RMG", + "codeIcaoAirport": "KRMG", + "codeIso2Country": "US", + "geonameId": "4219762", + "latitudeAirport": 34.35139, + "longitudeAirport": -85.15861, + "nameAirport": "Richard B Russell", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 6760, + "codeIataAirport": "RMI", + "codeIataCity": "RMI", + "codeIcaoAirport": "LIPR", + "codeIso2Country": "IT", + "geonameId": "6299599", + "latitudeAirport": 44.022953, + "longitudeAirport": 12.619594, + "nameAirport": "Miramare", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "9.30", + "airportId": 6761, + "codeIataAirport": "RMK", + "codeIataCity": "RMK", + "codeIcaoAirport": "YREN", + "codeIso2Country": "AU", + "geonameId": "7668763", + "latitudeAirport": -34.2, + "longitudeAirport": 140.68333, + "nameAirport": "Renmark", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "5.30", + "airportId": 6762, + "codeIataAirport": "RML", + "codeIataCity": "CMB", + "codeIcaoAirport": "VCCC", + "codeIso2Country": "LK", + "geonameId": "6301870", + "latitudeAirport": 6.819444, + "longitudeAirport": 79.8875, + "nameAirport": "Ratmalana", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "10", + "airportId": 6763, + "codeIataAirport": "RMN", + "codeIataCity": "RMN", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7910453", + "latitudeAirport": -6.166667, + "longitudeAirport": 141.16667, + "nameAirport": "Rumginae", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 6764, + "codeIataAirport": "RMP", + "codeIataCity": "RMP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5872442", + "latitudeAirport": 65.50833, + "longitudeAirport": -150.14027, + "nameAirport": "Rampart", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 6765, + "codeIataAirport": "RMQ", + "codeIataCity": "RMQ", + "codeIcaoAirport": "RCMQ", + "codeIso2Country": "TW", + "geonameId": "6587703", + "latitudeAirport": 24.249294, + "longitudeAirport": 120.60131, + "nameAirport": "Chingchuankang", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "1", + "airportId": 6766, + "codeIataAirport": "RMS", + "codeIataCity": "RMS", + "codeIcaoAirport": "ETAR", + "codeIso2Country": "DE", + "geonameId": "6296821", + "latitudeAirport": 49.45, + "longitudeAirport": 7.55, + "nameAirport": "Ramstein", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-10", + "airportId": 6767, + "codeIataAirport": "RMT", + "codeIataCity": "RMT", + "codeIcaoAirport": "NTAM", + "codeIso2Country": "PF", + "geonameId": "8260896", + "latitudeAirport": -22.638783, + "longitudeAirport": -152.80516, + "nameAirport": "Rimatara", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "1", + "airportId": 6768, + "codeIataAirport": "RMU", + "codeIataCity": "RMU", + "codeIcaoAirport": "LEMI", + "codeIso2Country": "ES", + "geonameId": "8299151", + "latitudeAirport": 37.7933, + "longitudeAirport": -1.14028, + "nameAirport": "Corvera International", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-8", + "airportId": 6769, + "codeIataAirport": "RMY", + "codeIataCity": "RMY", + "codeIcaoAirport": "KMPI", + "codeIso2Country": "US", + "geonameId": "5370627", + "latitudeAirport": 42.261806, + "longitudeAirport": -85.004524, + "nameAirport": "Mariposa-Yosemite", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "11", + "airportId": 6770, + "codeIataAirport": "RNA", + "codeIataCity": "RNA", + "codeIcaoAirport": "AGAR", + "codeIso2Country": "SB", + "geonameId": "8298727", + "latitudeAirport": -9.864444, + "longitudeAirport": 161.98306, + "nameAirport": "Ulawa Airport", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "1", + "airportId": 6771, + "codeIataAirport": "RNB", + "codeIataCity": "RNB", + "codeIcaoAirport": "ESDF", + "codeIso2Country": "SE", + "geonameId": "2681826", + "latitudeAirport": 56.25833, + "longitudeAirport": 15.261111, + "nameAirport": "Kallinge", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-6", + "airportId": 6772, + "codeIataAirport": "RNC", + "codeIataCity": "RNC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 35.837082, + "longitudeAirport": -85.93816, + "nameAirport": "Warren County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 6773, + "codeIataAirport": "RND", + "codeIataCity": "SAT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 29.416668, + "longitudeAirport": -98.5, + "nameAirport": "Randolph AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 6774, + "codeIataAirport": "RNE", + "codeIataCity": "RNE", + "codeIcaoAirport": "LFLO", + "codeIso2Country": "FR", + "geonameId": "6694617", + "latitudeAirport": 46.053333, + "longitudeAirport": 4.000833, + "nameAirport": "Renaison", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-7", + "airportId": 6775, + "codeIataAirport": "RNG", + "codeIataCity": "RNG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5581213", + "latitudeAirport": 40.094723, + "longitudeAirport": -108.76056, + "nameAirport": "Rangely", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 6776, + "codeIataAirport": "RNH", + "codeIataCity": "RNH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 45.13333, + "longitudeAirport": -92.55, + "nameAirport": "New Richmond Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 6777, + "codeIataAirport": "RNI", + "codeIataCity": "RNI", + "codeIcaoAirport": "MNCI", + "codeIso2Country": "NI", + "geonameId": "7668351", + "latitudeAirport": 12.15, + "longitudeAirport": -83.066666, + "nameAirport": "Corn Island", + "nameCountry": "Nicaragua", + "phone": "", + "timezone": "America/Managua" + }, + { + "GMT": "9", + "airportId": 6778, + "codeIataAirport": "RNJ", + "codeIataCity": "RNJ", + "codeIcaoAirport": "RORY", + "codeIso2Country": "JP", + "geonameId": "6300469", + "latitudeAirport": 27.033333, + "longitudeAirport": 128.43333, + "nameAirport": "Yoronjima", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "11", + "airportId": 6779, + "codeIataAirport": "RNL", + "codeIataCity": "RNL", + "codeIcaoAirport": "AGGR", + "codeIso2Country": "SB", + "geonameId": "7730406", + "latitudeAirport": -11.666667, + "longitudeAirport": 160.3, + "nameAirport": "Rennell", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "4", + "airportId": 6780, + "codeIataAirport": "RNM", + "codeIataCity": "RNM", + "codeIcaoAirport": "", + "codeIso2Country": "OM", + "geonameId": "7910923", + "latitudeAirport": 33.089054, + "longitudeAirport": -117.03639, + "nameAirport": "Qarn Alam", + "nameCountry": "Oman", + "phone": "", + "timezone": "Asia/Muscat" + }, + { + "GMT": "1", + "airportId": 6781, + "codeIataAirport": "RNN", + "codeIataCity": "RNN", + "codeIcaoAirport": "EKRN", + "codeIso2Country": "DK", + "geonameId": "2614554", + "latitudeAirport": 55.065556, + "longitudeAirport": 14.757778, + "nameAirport": "Bornholm", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-8", + "airportId": 6782, + "codeIataAirport": "RNO", + "codeIataCity": "RNO", + "codeIcaoAirport": "KRNO", + "codeIso2Country": "US", + "geonameId": "5501263", + "latitudeAirport": 39.505783, + "longitudeAirport": -119.775696, + "nameAirport": "Reno-Tahoe International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "12", + "airportId": 6783, + "codeIataAirport": "RNP", + "codeIataCity": "RNP", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "7303968", + "latitudeAirport": 11.15, + "longitudeAirport": 166.88333, + "nameAirport": "Rongelap Island", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "1", + "airportId": 6784, + "codeIataAirport": "RNS", + "codeIataCity": "RNS", + "codeIcaoAirport": "LFRN", + "codeIso2Country": "FR", + "geonameId": "6301774", + "latitudeAirport": 48.068066, + "longitudeAirport": -1.726249, + "nameAirport": "St Jacques", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-8", + "airportId": 6785, + "codeIataAirport": "RNT", + "codeIataCity": "RNT", + "codeIcaoAirport": "KRNT", + "codeIso2Country": "US", + "geonameId": "5808194", + "latitudeAirport": 47.5, + "longitudeAirport": -122.21667, + "nameAirport": "Renton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 6786, + "codeIataAirport": "RNU", + "codeIataCity": "RNU", + "codeIcaoAirport": "WBKR", + "codeIso2Country": "MY", + "geonameId": "7731465", + "latitudeAirport": 5.95, + "longitudeAirport": 116.666664, + "nameAirport": "Ranau", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-6", + "airportId": 6787, + "codeIataAirport": "RNZ", + "codeIataCity": "RNZ", + "codeIcaoAirport": "KRZL", + "codeIso2Country": "US", + "geonameId": "4925311", + "latitudeAirport": 40.95, + "longitudeAirport": -87.15, + "nameAirport": "Rensselaer", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 6788, + "codeIataAirport": "ROA", + "codeIataCity": "ROA", + "codeIcaoAirport": "KROA", + "codeIso2Country": "US", + "geonameId": "4782228", + "latitudeAirport": 37.32051, + "longitudeAirport": -79.97038, + "nameAirport": "Roanoke Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 6789, + "codeIataAirport": "ROB", + "codeIataCity": "MLW", + "codeIcaoAirport": "GLRB", + "codeIso2Country": "LR", + "geonameId": "2597313", + "latitudeAirport": 6.239722, + "longitudeAirport": -10.358889, + "nameAirport": "Roberts International", + "nameCountry": "Liberia", + "phone": "", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-5", + "airportId": 6790, + "codeIataAirport": "ROC", + "codeIataCity": "ROC", + "codeIcaoAirport": "KROC", + "codeIso2Country": "US", + "geonameId": "6298998", + "latitudeAirport": 43.127975, + "longitudeAirport": -77.66543, + "nameAirport": "Greater Rochester International", + "nameCountry": "United States", + "phone": "585-753-7020", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 6791, + "codeIataAirport": "ROD", + "codeIataCity": "ROD", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "3362349", + "latitudeAirport": -33.816666, + "longitudeAirport": 19.9, + "nameAirport": "Robertson", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-8", + "airportId": 6792, + "codeIataAirport": "ROF", + "codeIataCity": "SIY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.7281985, + "longitudeAirport": -122.5278007, + "nameAirport": "Yreka Rohrer Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 6793, + "codeIataAirport": "ROG", + "codeIataCity": "ROG", + "codeIcaoAirport": "KROG", + "codeIso2Country": "US", + "geonameId": "4128915", + "latitudeAirport": 36.372223, + "longitudeAirport": -94.10667, + "nameAirport": "Rogers", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 6794, + "codeIataAirport": "ROH", + "codeIataCity": "ROH", + "codeIcaoAirport": "YROB", + "codeIso2Country": "AU", + "geonameId": "7731466", + "latitudeAirport": -18.25, + "longitudeAirport": 144.0, + "nameAirport": "Robinhood", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "7", + "airportId": 6795, + "codeIataAirport": "ROI", + "codeIataCity": "ROI", + "codeIcaoAirport": "VTUV", + "codeIso2Country": "TH", + "geonameId": "7668648", + "latitudeAirport": 16.115278, + "longitudeAirport": 103.77695, + "nameAirport": "Roi Et Airport", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "10", + "airportId": 6796, + "codeIataAirport": "ROK", + "codeIataCity": "ROK", + "codeIcaoAirport": "YBRK", + "codeIso2Country": "AU", + "geonameId": "6301302", + "latitudeAirport": -23.377993, + "longitudeAirport": 150.47841, + "nameAirport": "Rockhampton", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-7", + "airportId": 6797, + "codeIataAirport": "ROL", + "codeIataCity": "ROL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.3, + "longitudeAirport": -109.98333, + "nameAirport": "Roosevelt", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 6798, + "codeIataAirport": "RON", + "codeIataCity": "RON", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 6.3, + "longitudeAirport": -71.083336, + "nameAirport": "Rondon", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-4", + "airportId": 6799, + "codeIataAirport": "ROO", + "codeIataCity": "ROO", + "codeIcaoAirport": "SWRD", + "codeIso2Country": "BR", + "geonameId": "7731467", + "latitudeAirport": -16.433332, + "longitudeAirport": -54.716667, + "nameAirport": "Rondonopolis", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "10", + "airportId": 6800, + "codeIataAirport": "ROP", + "codeIataCity": "ROP", + "codeIcaoAirport": "PGRO", + "codeIso2Country": "MP", + "geonameId": "4041524", + "latitudeAirport": 14.171568, + "longitudeAirport": 145.24408, + "nameAirport": "Rota", + "nameCountry": "Northern Mariana Islands", + "phone": "", + "timezone": "Pacific/Saipan" + }, + { + "GMT": "9", + "airportId": 6801, + "codeIataAirport": "ROR", + "codeIataCity": "ROR", + "codeIcaoAirport": "PTRO", + "codeIso2Country": "PW", + "geonameId": "4038189", + "latitudeAirport": 7.364122, + "longitudeAirport": 134.5329, + "nameAirport": "Babelthuap/Koror", + "nameCountry": "Palau", + "phone": "", + "timezone": "Pacific/Palau" + }, + { + "GMT": "-3", + "airportId": 6802, + "codeIataAirport": "ROS", + "codeIataCity": "ROS", + "codeIcaoAirport": "SAAR", + "codeIso2Country": "AR", + "geonameId": "3838583", + "latitudeAirport": -32.933334, + "longitudeAirport": -60.783333, + "nameAirport": "Fisherton", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "12", + "airportId": 6803, + "codeIataAirport": "ROT", + "codeIataCity": "ROT", + "codeIcaoAirport": "NZRO", + "codeIso2Country": "NZ", + "geonameId": "6241325", + "latitudeAirport": -38.10982, + "longitudeAirport": 176.31746, + "nameAirport": "Rotorua", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "3", + "airportId": 6804, + "codeIataAirport": "ROV", + "codeIataCity": "ROV", + "codeIcaoAirport": "URRR", + "codeIso2Country": "RU", + "geonameId": "6300994", + "latitudeAirport": 47.25, + "longitudeAirport": 39.75, + "nameAirport": "Rostov", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-7", + "airportId": 6805, + "codeIataAirport": "ROW", + "codeIataCity": "ROW", + "codeIcaoAirport": "KROW", + "codeIso2Country": "US", + "geonameId": "5488446", + "latitudeAirport": 33.29972, + "longitudeAirport": -104.53, + "nameAirport": "Industrial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 6806, + "codeIataAirport": "ROX", + "codeIataCity": "ROX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5043752", + "latitudeAirport": 48.85, + "longitudeAirport": -95.76667, + "nameAirport": "Roseau Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 6807, + "codeIataAirport": "ROY", + "codeIataCity": "ROY", + "codeIcaoAirport": "SAWM", + "codeIso2Country": "AR", + "geonameId": "7730775", + "latitudeAirport": -45.666668, + "longitudeAirport": -70.25, + "nameAirport": "Rio Mayo", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "1", + "airportId": 6808, + "codeIataAirport": "ROZ", + "codeIataCity": "ROZ", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "2511700", + "latitudeAirport": 43.119446, + "longitudeAirport": -7.502778, + "nameAirport": "US Naval Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "5.45", + "airportId": 6809, + "codeIataAirport": "RPA", + "codeIataCity": "RPA", + "codeIcaoAirport": "", + "codeIso2Country": "NP", + "geonameId": "8298949", + "latitudeAirport": 26.983334, + "longitudeAirport": 87.333336, + "nameAirport": "Rolpa", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "9.30", + "airportId": 6810, + "codeIataAirport": "RPB", + "codeIataCity": "RPB", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8299131", + "latitudeAirport": -14.733333, + "longitudeAirport": 134.73334, + "nameAirport": "Roper Bar", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "9.30", + "airportId": 6811, + "codeIataAirport": "RPM", + "codeIataCity": "RPM", + "codeIcaoAirport": "YNGU", + "codeIso2Country": "AU", + "geonameId": "7730268", + "latitudeAirport": -14.933333, + "longitudeAirport": 134.0, + "nameAirport": "Ngukurr", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "2", + "airportId": 6812, + "codeIataAirport": "RPN", + "codeIataCity": "RPN", + "codeIcaoAirport": "LLIB", + "codeIso2Country": "IL", + "geonameId": "6299660", + "latitudeAirport": 32.981667, + "longitudeAirport": 35.57111, + "nameAirport": "Rosh Pina", + "nameCountry": "Israel", + "phone": "", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "5.30", + "airportId": 6813, + "codeIataAirport": "RPR", + "codeIataCity": "RPR", + "codeIcaoAirport": "VARP", + "codeIso2Country": "IN", + "geonameId": "7668580", + "latitudeAirport": 21.18456, + "longitudeAirport": 81.73975, + "nameAirport": "Raipur", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "9.30", + "airportId": 6814, + "codeIataAirport": "RPV", + "codeIataCity": "RPV", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8261048", + "latitudeAirport": -14.966667, + "longitudeAirport": 134.03334, + "nameAirport": "Roper Valley", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-7", + "airportId": 6815, + "codeIataAirport": "RPX", + "codeIataCity": "RPX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 46.433334, + "longitudeAirport": -108.53333, + "nameAirport": "Roundup", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "3", + "airportId": 6816, + "codeIataAirport": "RQW", + "codeIataCity": "RQW", + "codeIcaoAirport": "", + "codeIso2Country": "IQ", + "geonameId": "8298700", + "latitudeAirport": 35.7669, + "longitudeAirport": 43.125, + "nameAirport": "West", + "nameCountry": "Iraq", + "phone": "", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "1", + "airportId": 6817, + "codeIataAirport": "RRA", + "codeIataCity": "RRA", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 36.75, + "longitudeAirport": -5.166667, + "nameAirport": "Ronda", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "9.30", + "airportId": 6818, + "codeIataAirport": "RRE", + "codeIataCity": "RRE", + "codeIcaoAirport": "YMRE", + "codeIso2Country": "AU", + "geonameId": "7731468", + "latitudeAirport": -29.65, + "longitudeAirport": 138.06667, + "nameAirport": "Marree", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "4", + "airportId": 6819, + "codeIataAirport": "RRG", + "codeIataCity": "RRG", + "codeIcaoAirport": "FIMR", + "codeIso2Country": "MU", + "geonameId": "6296985", + "latitudeAirport": -19.75, + "longitudeAirport": 63.35, + "nameAirport": "Rodrigues Island", + "nameCountry": "Mauritius", + "phone": "", + "timezone": "Indian/Mauritius" + }, + { + "GMT": "11", + "airportId": 6820, + "codeIataAirport": "RRI", + "codeIataCity": "RRI", + "codeIcaoAirport": "", + "codeIso2Country": "SB", + "geonameId": "8298948", + "latitudeAirport": -7.5, + "longitudeAirport": 158.26666, + "nameAirport": "Barora", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "5.30", + "airportId": 6821, + "codeIataAirport": "RRK", + "codeIataCity": "RRK", + "codeIcaoAirport": "VERK", + "codeIso2Country": "IN", + "geonameId": "7730215", + "latitudeAirport": 22.256666, + "longitudeAirport": 84.81472, + "nameAirport": "Rourkela", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-6", + "airportId": 6822, + "codeIataAirport": "RRL", + "codeIataCity": "RRL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 45.183334, + "longitudeAirport": -89.683334, + "nameAirport": "Merrill Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 6823, + "codeIataAirport": "RRM", + "codeIataCity": "RRM", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "1040397", + "latitudeAirport": -18.333332, + "longitudeAirport": 35.933334, + "nameAirport": "Marromeu", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-3", + "airportId": 6824, + "codeIataAirport": "RRN", + "codeIataCity": "RRN", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8298928", + "latitudeAirport": -11.0, + "longitudeAirport": -59.0, + "nameAirport": "Serra Norte", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Belem" + }, + { + "GMT": "1", + "airportId": 6825, + "codeIataAirport": "RRO", + "codeIataCity": "RRO", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "3166350", + "latitudeAirport": 40.61667, + "longitudeAirport": 14.366667, + "nameAirport": "Sorrento", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-10", + "airportId": 6826, + "codeIataAirport": "RRR", + "codeIataCity": "RRR", + "codeIcaoAirport": "NTKO", + "codeIso2Country": "PF", + "geonameId": "8260893", + "latitudeAirport": -16.044859, + "longitudeAirport": -142.47556, + "nameAirport": "Raroia", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "1", + "airportId": 6827, + "codeIataAirport": "RRS", + "codeIataCity": "RRS", + "codeIcaoAirport": "ENRO", + "codeIso2Country": "NO", + "geonameId": "6296763", + "latitudeAirport": 62.579166, + "longitudeAirport": 11.345556, + "nameAirport": "Roros", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "airportId": 6828, + "codeIataAirport": "RRT", + "codeIataCity": "RRT", + "codeIcaoAirport": "KRRT", + "codeIso2Country": "US", + "geonameId": "5051894", + "latitudeAirport": 48.9, + "longitudeAirport": -95.3, + "nameAirport": "Warroad", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9.30", + "airportId": 6829, + "codeIataAirport": "RRV", + "codeIataCity": "RRV", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8261041", + "latitudeAirport": -16.75, + "longitudeAirport": 136.96666, + "nameAirport": "Robinson River", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-3", + "airportId": 6830, + "codeIataAirport": "RSA", + "codeIataCity": "RSA", + "codeIcaoAirport": "SAZR", + "codeIso2Country": "AR", + "geonameId": "6300589", + "latitudeAirport": -36.566666, + "longitudeAirport": -64.26667, + "nameAirport": "Santa Rosa", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "10", + "airportId": 6831, + "codeIataAirport": "RSB", + "codeIataCity": "RSB", + "codeIcaoAirport": "YRSB", + "codeIso2Country": "AU", + "geonameId": "7731469", + "latitudeAirport": -25.833332, + "longitudeAirport": 139.63333, + "nameAirport": "Roseberth", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 6832, + "codeIataAirport": "RSD", + "codeIataCity": "RSD", + "codeIcaoAirport": "MYER", + "codeIso2Country": "BS", + "geonameId": "3571592", + "latitudeAirport": 24.891666, + "longitudeAirport": -76.178055, + "nameAirport": "S Eleuthera", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "10", + "airportId": 6833, + "codeIataAirport": "RSE", + "codeIataCity": "SYD", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -33.8, + "longitudeAirport": 151.21666, + "nameAirport": "Rose Bay", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-3", + "airportId": 6834, + "codeIataAirport": "RSG", + "codeIataCity": "RSG", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8299013", + "latitudeAirport": -5.95, + "longitudeAirport": -49.65, + "nameAirport": "Serra Pelada", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Belem" + }, + { + "GMT": "-9", + "airportId": 6835, + "codeIataAirport": "RSH", + "codeIataCity": "RSH", + "codeIcaoAirport": "PARS", + "codeIso2Country": "US", + "geonameId": "5873096", + "latitudeAirport": 61.783054, + "longitudeAirport": -161.31917, + "nameAirport": "Russian SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 6836, + "codeIataAirport": "RSI", + "codeIataCity": "RSI", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "8299144", + "latitudeAirport": 8.966667, + "longitudeAirport": -80.333336, + "nameAirport": "Rio Sidra", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "-8", + "airportId": 6837, + "codeIataAirport": "RSJ", + "codeIataCity": "RSJ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5808807", + "latitudeAirport": 48.63333, + "longitudeAirport": -122.85, + "nameAirport": "Rosario SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9", + "airportId": 6838, + "codeIataAirport": "RSK", + "codeIataCity": "RSK", + "codeIcaoAirport": "WASC", + "codeIso2Country": "ID", + "geonameId": "7731470", + "latitudeAirport": -1.5, + "longitudeAirport": 134.18333, + "nameAirport": "Ransiki", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-6", + "airportId": 6839, + "codeIataAirport": "RSL", + "codeIataCity": "RSL", + "codeIcaoAirport": "KRSL", + "codeIso2Country": "US", + "geonameId": "4278474", + "latitudeAirport": 38.88333, + "longitudeAirport": -98.85, + "nameAirport": "Russell", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 6840, + "codeIataAirport": "RSN", + "codeIataCity": "RSN", + "codeIcaoAirport": "KRSN", + "codeIso2Country": "US", + "geonameId": "6299008", + "latitudeAirport": 32.516666, + "longitudeAirport": -92.63333, + "nameAirport": "Ruston", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 6841, + "codeIataAirport": "RSP", + "codeIataCity": "RSP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8298787", + "latitudeAirport": 58.166668, + "longitudeAirport": -154.83333, + "nameAirport": "Raspberry Strait", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "airportId": 6842, + "codeIataAirport": "RSS", + "codeIataCity": "RSS", + "codeIcaoAirport": "", + "codeIso2Country": "SD", + "geonameId": "0", + "latitudeAirport": 11.783333, + "longitudeAirport": 34.4, + "nameAirport": "Roseires", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "-6", + "airportId": 6843, + "codeIataAirport": "RST", + "codeIataCity": "RST", + "codeIcaoAirport": "KRST", + "codeIso2Country": "US", + "geonameId": "6299009", + "latitudeAirport": 43.910793, + "longitudeAirport": -92.48977, + "nameAirport": "Rochester International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "airportId": 6844, + "codeIataAirport": "RSU", + "codeIataCity": "RSU", + "codeIcaoAirport": "RKJY", + "codeIso2Country": "KR", + "geonameId": "6575528", + "latitudeAirport": 34.8419, + "longitudeAirport": 127.61267, + "nameAirport": "Yeosu", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "-5", + "airportId": 6845, + "codeIataAirport": "RSW", + "codeIataCity": "FMY", + "codeIcaoAirport": "KRSW", + "codeIso2Country": "US", + "geonameId": "4173709", + "latitudeAirport": 26.542835, + "longitudeAirport": -81.75433, + "nameAirport": "Southwest Florida International", + "nameCountry": "United States", + "phone": "239-590-4800", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 6846, + "codeIataAirport": "RSX", + "codeIataCity": "RSX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5134565", + "latitudeAirport": 44.984722, + "longitudeAirport": -73.35222, + "nameAirport": "Rouses Point", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "12", + "airportId": 6847, + "codeIataAirport": "RTA", + "codeIataCity": "RTA", + "codeIcaoAirport": "NFNR", + "codeIso2Country": "FJ", + "geonameId": "6299948", + "latitudeAirport": -12.4825, + "longitudeAirport": 177.0711, + "nameAirport": "Rotuma Island", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-6", + "airportId": 6848, + "codeIataAirport": "RTB", + "codeIataCity": "RTB", + "codeIcaoAirport": "MHRO", + "codeIso2Country": "HN", + "geonameId": "6299818", + "latitudeAirport": 16.318209, + "longitudeAirport": -86.52722, + "nameAirport": "Roatan", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "5.30", + "airportId": 6849, + "codeIataAirport": "RTC", + "codeIataCity": "RTC", + "codeIcaoAirport": "VARG", + "codeIso2Country": "IN", + "geonameId": "7668579", + "latitudeAirport": 17.0, + "longitudeAirport": 73.316666, + "nameAirport": "Ratnagiri", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "airportId": 6850, + "codeIataAirport": "RTD", + "codeIataCity": "RTD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4170559", + "latitudeAirport": 26.866667, + "longitudeAirport": -82.26667, + "nameAirport": "Rotunda", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 6851, + "codeIataAirport": "RTE", + "codeIataCity": "RTE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299239", + "latitudeAirport": 55.7, + "longitudeAirport": -131.63333, + "nameAirport": "Marguerite Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 6852, + "codeIataAirport": "RTG", + "codeIataCity": "RTG", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "0", + "latitudeAirport": -8.6, + "longitudeAirport": 120.45, + "nameAirport": "Ruteng", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "8", + "airportId": 6853, + "codeIataAirport": "RTI", + "codeIataCity": "RTI", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731471", + "latitudeAirport": -10.883333, + "longitudeAirport": 122.96667, + "nameAirport": "Roti", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-6", + "airportId": 6854, + "codeIataAirport": "RTL", + "codeIataCity": "RTL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 47.95, + "longitudeAirport": -116.86667, + "nameAirport": "Spirit Lake", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 6855, + "codeIataAirport": "RTM", + "codeIataCity": "RTM", + "codeIcaoAirport": "EHRD", + "codeIso2Country": "NL", + "geonameId": "6296690", + "latitudeAirport": 51.948948, + "longitudeAirport": 4.433606, + "nameAirport": "Rotterdam Zestienhoven", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "-7", + "airportId": 6856, + "codeIataAirport": "RTN", + "codeIataCity": "RTN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5486795", + "latitudeAirport": 36.74139, + "longitudeAirport": -104.501114, + "nameAirport": "Crews Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "airportId": 6857, + "codeIataAirport": "RTP", + "codeIataCity": "RTP", + "codeIcaoAirport": "YRTP", + "codeIso2Country": "AU", + "geonameId": "7731472", + "latitudeAirport": -15.6, + "longitudeAirport": 141.83333, + "nameAirport": "Rutland Plains", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "airportId": 6858, + "codeIataAirport": "RTS", + "codeIataCity": "RTS", + "codeIcaoAirport": "YRTI", + "codeIso2Country": "AU", + "geonameId": "7668766", + "latitudeAirport": -32.006943, + "longitudeAirport": 115.53667, + "nameAirport": "Rottnest Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "3", + "airportId": 6859, + "codeIataAirport": "RTW", + "codeIataCity": "RTW", + "codeIcaoAirport": "UWSS", + "codeIso2Country": "RU", + "geonameId": "6301026", + "latitudeAirport": 51.566666, + "longitudeAirport": 46.066666, + "nameAirport": "Saratov", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Volgograd" + }, + { + "GMT": "9.30", + "airportId": 6860, + "codeIataAirport": "RTY", + "codeIataCity": "RTY", + "codeIcaoAirport": "YMYT", + "codeIso2Country": "AU", + "geonameId": "7731473", + "latitudeAirport": -28.25, + "longitudeAirport": 139.0, + "nameAirport": "Merty", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "3", + "airportId": 6861, + "codeIataAirport": "RUA", + "codeIataCity": "RUA", + "codeIcaoAirport": "HUAR", + "codeIso2Country": "UG", + "geonameId": "6297373", + "latitudeAirport": 3.033333, + "longitudeAirport": 30.933332, + "nameAirport": "Arua", + "nameCountry": "Uganda", + "phone": "", + "timezone": "Africa/Kampala" + }, + { + "GMT": "3.30", + "airportId": 6862, + "codeIataAirport": "RUD", + "codeIataCity": "RUD", + "codeIcaoAirport": "OIMJ", + "codeIso2Country": "IR", + "geonameId": "8260980", + "latitudeAirport": 36.426792, + "longitudeAirport": 55.094624, + "nameAirport": "Shahrud", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "2", + "airportId": 6863, + "codeIataAirport": "RUE", + "codeIataCity": "RUE", + "codeIcaoAirport": "KRUE", + "codeIso2Country": "CD", + "geonameId": "7910505", + "latitudeAirport": 35.260094, + "longitudeAirport": -93.0973, + "nameAirport": "Butembo", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "9", + "airportId": 6864, + "codeIataAirport": "RUF", + "codeIataCity": "RUF", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731474", + "latitudeAirport": -3.633333, + "longitudeAirport": 140.93333, + "nameAirport": "Yuruf", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "airportId": 6865, + "codeIataAirport": "RUG", + "codeIataCity": "RUG", + "codeIcaoAirport": "ZSRG", + "codeIso2Country": "CN", + "geonameId": "7731475", + "latitudeAirport": 32.388332, + "longitudeAirport": 120.555275, + "nameAirport": "Rugao", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "airportId": 6866, + "codeIataAirport": "RUH", + "codeIataCity": "RUH", + "codeIcaoAirport": "OERK", + "codeIso2Country": "SA", + "geonameId": "400675", + "latitudeAirport": 24.95929, + "longitudeAirport": 46.702877, + "nameAirport": "King Khaled International", + "nameCountry": "Saudi Arabia", + "phone": "01-221-1000", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-7", + "airportId": 6867, + "codeIataAirport": "RUI", + "codeIataCity": "RUI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5488598", + "latitudeAirport": 33.360832, + "longitudeAirport": -105.6625, + "nameAirport": "Ruidoso Sierra Blanca Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "5.45", + "airportId": 6868, + "codeIataAirport": "RUK", + "codeIataCity": "RUK", + "codeIcaoAirport": "VNRK", + "codeIso2Country": "NP", + "geonameId": "7668628", + "latitudeAirport": 28.625, + "longitudeAirport": 82.46667, + "nameAirport": "Rukumkot", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "5.45", + "airportId": 6869, + "codeIataAirport": "RUM", + "codeIataCity": "RUM", + "codeIcaoAirport": "VNRT", + "codeIso2Country": "NP", + "geonameId": "7668629", + "latitudeAirport": 27.316668, + "longitudeAirport": 86.53333, + "nameAirport": "Rumjatar", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "4", + "airportId": 6870, + "codeIataAirport": "RUN", + "codeIataCity": "RUN", + "codeIcaoAirport": "FMEE", + "codeIso2Country": "RE", + "geonameId": "6297034", + "latitudeAirport": -20.892, + "longitudeAirport": 55.511875, + "nameAirport": "Gillot", + "nameCountry": "Reunion", + "phone": "", + "timezone": "Indian/Reunion" + }, + { + "GMT": "5.30", + "airportId": 6871, + "codeIataAirport": "RUP", + "codeIataCity": "RUP", + "codeIcaoAirport": "VERU", + "codeIso2Country": "IN", + "geonameId": "7731476", + "latitudeAirport": 26.15, + "longitudeAirport": 89.916664, + "nameAirport": "Rupsi", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-10", + "airportId": 6872, + "codeIataAirport": "RUR", + "codeIataCity": "RUR", + "codeIcaoAirport": "NTAR", + "codeIso2Country": "PF", + "geonameId": "7730119", + "latitudeAirport": -22.433332, + "longitudeAirport": -151.33333, + "nameAirport": "Rurutu", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "11", + "airportId": 6873, + "codeIataAirport": "RUS", + "codeIataCity": "RUS", + "codeIcaoAirport": "AGGU", + "codeIso2Country": "SB", + "geonameId": "7668071", + "latitudeAirport": -8.5, + "longitudeAirport": 161.25, + "nameAirport": "Marau Sound", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-5", + "airportId": 6874, + "codeIataAirport": "RUT", + "codeIataCity": "RUT", + "codeIcaoAirport": "KRUT", + "codeIso2Country": "US", + "geonameId": "5240538", + "latitudeAirport": 43.529446, + "longitudeAirport": -72.94833, + "nameAirport": "Rutland", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 6875, + "codeIataAirport": "RUU", + "codeIataCity": "RUU", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299141", + "latitudeAirport": -5.183333, + "longitudeAirport": 144.15, + "nameAirport": "Ruti", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 6876, + "codeIataAirport": "RUV", + "codeIataCity": "RUV", + "codeIcaoAirport": "MGRB", + "codeIso2Country": "GT", + "geonameId": "7730106", + "latitudeAirport": 15.833333, + "longitudeAirport": -90.333336, + "nameAirport": "Rubelsanto", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "-6", + "airportId": 6877, + "codeIataAirport": "RUY", + "codeIataCity": "RUY", + "codeIcaoAirport": "MHRU", + "codeIso2Country": "HN", + "geonameId": "7730660", + "latitudeAirport": 15.0, + "longitudeAirport": -88.0, + "nameAirport": "Copan", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "3", + "airportId": 6878, + "codeIataAirport": "RVA", + "codeIataCity": "RVA", + "codeIcaoAirport": "FMSG", + "codeIso2Country": "MG", + "geonameId": "1065160", + "latitudeAirport": -22.801945, + "longitudeAirport": 47.819443, + "nameAirport": "Farafangana", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "0", + "airportId": 6879, + "codeIataAirport": "RVC", + "codeIataCity": "RVC", + "codeIcaoAirport": "", + "codeIso2Country": "LR", + "geonameId": "2274288", + "latitudeAirport": 5.466667, + "longitudeAirport": -9.583333, + "nameAirport": "Rivercess", + "nameCountry": "Liberia", + "phone": "", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-3", + "airportId": 6880, + "codeIataAirport": "RVD", + "codeIataCity": "RVD", + "codeIcaoAirport": "SWLC", + "codeIso2Country": "BR", + "geonameId": "7731477", + "latitudeAirport": -17.716667, + "longitudeAirport": -50.933334, + "nameAirport": "Rio Verde", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "airportId": 6881, + "codeIataAirport": "RVE", + "codeIataCity": "RVE", + "codeIcaoAirport": "SKSA", + "codeIso2Country": "CO", + "geonameId": "6194775", + "latitudeAirport": 6.916667, + "longitudeAirport": -71.9, + "nameAirport": "Los Colonizadores", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "airportId": 6882, + "codeIataAirport": "RVK", + "codeIataCity": "RVK", + "codeIcaoAirport": "ENRM", + "codeIso2Country": "NO", + "geonameId": "6296762", + "latitudeAirport": 64.88333, + "longitudeAirport": 11.233333, + "nameAirport": "Ryumsjoen", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "2", + "airportId": 6883, + "codeIataAirport": "RVN", + "codeIataCity": "RVN", + "codeIcaoAirport": "EFRO", + "codeIso2Country": "FI", + "geonameId": "6296559", + "latitudeAirport": 66.559044, + "longitudeAirport": 25.829609, + "nameAirport": "Rovaniemi", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "2", + "airportId": 6884, + "codeIataAirport": "RVO", + "codeIataCity": "RVO", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "962841", + "latitudeAirport": -27.6, + "longitudeAirport": 24.133333, + "nameAirport": "Reivilo", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-7", + "airportId": 6885, + "codeIataAirport": "RVR", + "codeIataCity": "RVR", + "codeIcaoAirport": "TJRV", + "codeIso2Country": "US", + "geonameId": "7701949", + "latitudeAirport": 38.966667, + "longitudeAirport": -110.25, + "nameAirport": "Green River", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 6886, + "codeIataAirport": "RVS", + "codeIataCity": "TUL", + "codeIcaoAirport": "KRVS", + "codeIso2Country": "US", + "geonameId": "4549202", + "latitudeAirport": 36.15, + "longitudeAirport": -95.96667, + "nameAirport": "R.Lloyd Jones", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 6887, + "codeIataAirport": "RVT", + "codeIataCity": "RVT", + "codeIcaoAirport": "YNRV", + "codeIso2Country": "AU", + "geonameId": "8260894", + "latitudeAirport": -33.785557, + "longitudeAirport": 120.201385, + "nameAirport": "Ravensthorpe", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-10", + "airportId": 6888, + "codeIataAirport": "RVV", + "codeIataCity": "RVV", + "codeIcaoAirport": "NTAV", + "codeIso2Country": "PF", + "geonameId": "8260758", + "latitudeAirport": -25.883333, + "longitudeAirport": -147.65, + "nameAirport": "Raivavae", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-3", + "airportId": 6889, + "codeIataAirport": "RVY", + "codeIataCity": "RVY", + "codeIcaoAirport": "SURV", + "codeIso2Country": "UY", + "geonameId": "3443192", + "latitudeAirport": -30.970833, + "longitudeAirport": -55.479168, + "nameAirport": "Rivera", + "nameCountry": "Uruguay", + "phone": "", + "timezone": "America/Montevideo" + }, + { + "GMT": "-9", + "airportId": 6890, + "codeIataAirport": "RWB", + "codeIataCity": "RWB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5556829", + "latitudeAirport": 56.75, + "longitudeAirport": -134.13333, + "nameAirport": "Rowan Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 6891, + "codeIataAirport": "RWF", + "codeIataCity": "RWF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5042832", + "latitudeAirport": 44.5, + "longitudeAirport": -95.1, + "nameAirport": "Redwood Falls Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 6892, + "codeIataAirport": "RWI", + "codeIataCity": "RWI", + "codeIcaoAirport": "KRWI", + "codeIso2Country": "US", + "geonameId": "4488747", + "latitudeAirport": 35.854443, + "longitudeAirport": -77.89056, + "nameAirport": "Rocky Mount-wilson", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 6893, + "codeIataAirport": "RWL", + "codeIataCity": "RWL", + "codeIcaoAirport": "KFWL", + "codeIso2Country": "US", + "geonameId": "5836082", + "latitudeAirport": 41.804443, + "longitudeAirport": -107.201385, + "nameAirport": "Rawlins", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "2", + "airportId": 6894, + "codeIataAirport": "RWN", + "codeIataCity": "RWN", + "codeIcaoAirport": "UKLR", + "codeIso2Country": "UA", + "geonameId": "6300965", + "latitudeAirport": 50.6, + "longitudeAirport": 26.15, + "nameAirport": "Rovno", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-3", + "airportId": 6895, + "codeIataAirport": "RWS", + "codeIataCity": "RWS", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8299238", + "latitudeAirport": -22.800556, + "longitudeAirport": -47.192223, + "nameAirport": "Sumare", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "3", + "airportId": 6896, + "codeIataAirport": "RXA", + "codeIataCity": "RXA", + "codeIcaoAirport": "", + "codeIso2Country": "YE", + "geonameId": "8298979", + "latitudeAirport": 15.433333, + "longitudeAirport": 44.216667, + "nameAirport": "Raudha", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "-7", + "airportId": 6897, + "codeIataAirport": "RXE", + "codeIataCity": "RXE", + "codeIcaoAirport": "KRXE", + "codeIso2Country": "US", + "geonameId": "5605243", + "latitudeAirport": 43.83911, + "longitudeAirport": -111.85106, + "nameAirport": "Madison County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Boise" + }, + { + "GMT": "8", + "airportId": 6898, + "codeIataAirport": "RXS", + "codeIataCity": "RXS", + "codeIcaoAirport": "RPVR", + "codeIso2Country": "PH", + "geonameId": "6300499", + "latitudeAirport": 11.60066, + "longitudeAirport": 122.74882, + "nameAirport": "Roxas City", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "3", + "airportId": 6899, + "codeIataAirport": "RYB", + "codeIataCity": "RYB", + "codeIcaoAirport": "UUBK", + "codeIso2Country": "RU", + "geonameId": "7668549", + "latitudeAirport": 58.13333, + "longitudeAirport": 38.86667, + "nameAirport": "Rybinsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "airportId": 6900, + "codeIataAirport": "RYG", + "codeIataCity": "OSL", + "codeIcaoAirport": "ENRY", + "codeIso2Country": "NO", + "geonameId": "6296765", + "latitudeAirport": 59.37903, + "longitudeAirport": 10.800161, + "nameAirport": "Moss Airport", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "5", + "airportId": 6901, + "codeIataAirport": "RYK", + "codeIataCity": "RYK", + "codeIcaoAirport": "OPRK", + "codeIso2Country": "PK", + "geonameId": "7668403", + "latitudeAirport": 28.39178, + "longitudeAirport": 70.28662, + "nameAirport": "Sheikh Zayed International", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "1", + "airportId": 6902, + "codeIataAirport": "RYN", + "codeIataCity": "RYN", + "codeIcaoAirport": "LFCY", + "codeIso2Country": "FR", + "geonameId": "6694551", + "latitudeAirport": 45.61667, + "longitudeAirport": -1.016667, + "nameAirport": "Medis", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-3", + "airportId": 6903, + "codeIataAirport": "RYO", + "codeIataCity": "RYO", + "codeIcaoAirport": "", + "codeIso2Country": "AR", + "geonameId": "7730777", + "latitudeAirport": -51.583332, + "longitudeAirport": -72.21667, + "nameAirport": "Rio Turbio", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "-3", + "airportId": 6904, + "codeIataAirport": "RZA", + "codeIataCity": "RZA", + "codeIcaoAirport": "SAWU", + "codeIso2Country": "AR", + "geonameId": "6300578", + "latitudeAirport": -50.0, + "longitudeAirport": -68.53333, + "nameAirport": "Santa Cruz", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "1", + "airportId": 6905, + "codeIataAirport": "RZE", + "codeIataCity": "RZE", + "codeIcaoAirport": "EPRZ", + "codeIso2Country": "PL", + "geonameId": "6296783", + "latitudeAirport": 50.11525, + "longitudeAirport": 22.03133, + "nameAirport": "Jasionka", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "3", + "airportId": 6906, + "codeIataAirport": "RZN", + "codeIataCity": "RZN", + "codeIcaoAirport": "UUWR", + "codeIso2Country": "RU", + "geonameId": "7668555", + "latitudeAirport": 54.63333, + "longitudeAirport": 39.583332, + "nameAirport": "Ryazan", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "8", + "airportId": 6907, + "codeIataAirport": "RZP", + "codeIataCity": "RZP", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "8299037", + "latitudeAirport": 10.7625, + "longitudeAirport": 119.50667, + "nameAirport": "CLR Airport", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "3.30", + "airportId": 6908, + "codeIataAirport": "RZR", + "codeIataCity": "RZR", + "codeIcaoAirport": "OINR", + "codeIso2Country": "IR", + "geonameId": "6300070", + "latitudeAirport": 36.904625, + "longitudeAirport": 50.68244, + "nameAirport": "Ramsar", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "5", + "airportId": 6909, + "codeIataAirport": "RZS", + "codeIataCity": "RZS", + "codeIcaoAirport": "", + "codeIso2Country": "PK", + "geonameId": "1413746", + "latitudeAirport": 26.966667, + "longitudeAirport": 68.86667, + "nameAirport": "Sawan", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-7", + "airportId": 6910, + "codeIataAirport": "SAA", + "codeIataCity": "SAA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5837593", + "latitudeAirport": 41.445, + "longitudeAirport": -106.81, + "nameAirport": "Shively Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-4", + "airportId": 6911, + "codeIataAirport": "SAB", + "codeIataCity": "SAB", + "codeIcaoAirport": "TNCS", + "codeIso2Country": "BQ", + "geonameId": "3513628", + "latitudeAirport": 17.65, + "longitudeAirport": -63.216667, + "nameAirport": "J. Yrausquin", + "nameCountry": "Bonaire, Saint Eustatius and Saba ", + "phone": "", + "timezone": "America/Kralendijk" + }, + { + "GMT": "-8", + "airportId": 6912, + "codeIataAirport": "SAC", + "codeIataCity": "SAC", + "codeIcaoAirport": "KSAC", + "codeIso2Country": "US", + "geonameId": "5389542", + "latitudeAirport": 38.05, + "longitudeAirport": -121.933334, + "nameAirport": "Executive", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-7", + "airportId": 6913, + "codeIataAirport": "SAD", + "codeIataCity": "SAD", + "codeIcaoAirport": "KSAD", + "codeIso2Country": "US", + "geonameId": "5312487", + "latitudeAirport": 32.833332, + "longitudeAirport": -109.71667, + "nameAirport": "Safford", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "8", + "airportId": 6914, + "codeIataAirport": "SAE", + "codeIataCity": "SAE", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "0", + "latitudeAirport": -8.366667, + "longitudeAirport": 118.333336, + "nameAirport": "Sangir", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-7", + "airportId": 6915, + "codeIataAirport": "SAF", + "codeIataCity": "ZSH", + "codeIcaoAirport": "KSAF", + "codeIso2Country": "US", + "geonameId": "5490274", + "latitudeAirport": 35.6175, + "longitudeAirport": -106.08833, + "nameAirport": "Santa Fe", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "3", + "airportId": 6916, + "codeIataAirport": "SAH", + "codeIataCity": "SAH", + "codeIcaoAirport": "OYSN", + "codeIso2Country": "YE", + "geonameId": "6300142", + "latitudeAirport": 15.473598, + "longitudeAirport": 44.22511, + "nameAirport": "El Rahaba Airport (Sanaa Intenational)", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "0", + "airportId": 6917, + "codeIataAirport": "SAK", + "codeIataCity": "SAK", + "codeIcaoAirport": "BIKR", + "codeIso2Country": "IS", + "geonameId": "7668104", + "latitudeAirport": 65.75, + "longitudeAirport": -19.65, + "nameAirport": "Saudarkrokur", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-6", + "airportId": 6918, + "codeIataAirport": "SAL", + "codeIataCity": "SAL", + "codeIcaoAirport": "MSLP", + "codeIso2Country": "SV", + "geonameId": "3810409", + "latitudeAirport": 13.445126, + "longitudeAirport": -89.05723, + "nameAirport": "El Salvador International", + "nameCountry": "El Salvador", + "phone": "", + "timezone": "America/El_Salvador" + }, + { + "GMT": "10", + "airportId": 6919, + "codeIataAirport": "SAM", + "codeIataCity": "SAM", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2087362", + "latitudeAirport": -9.65, + "longitudeAirport": 150.80833, + "nameAirport": "Salamo", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "airportId": 6920, + "codeIataAirport": "SAN", + "codeIataCity": "SAN", + "codeIcaoAirport": "KSAN", + "codeIso2Country": "US", + "geonameId": "5391847", + "latitudeAirport": 32.731937, + "longitudeAirport": -117.19731, + "nameAirport": "San Diego International Airport", + "nameCountry": "United States", + "phone": "619-400-2404", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 6921, + "codeIataAirport": "SAP", + "codeIataCity": "SAP", + "codeIcaoAirport": "MHLM", + "codeIso2Country": "HN", + "geonameId": "6299814", + "latitudeAirport": 15.456245, + "longitudeAirport": -87.927795, + "nameAirport": "Ramon Villeda Morales International", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-5", + "airportId": 6922, + "codeIataAirport": "SAQ", + "codeIataCity": "SAQ", + "codeIcaoAirport": "", + "codeIso2Country": "BS", + "geonameId": "3571523", + "latitudeAirport": 25.05, + "longitudeAirport": -78.05, + "nameAirport": "San Andros", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-6", + "airportId": 6923, + "codeIataAirport": "SAR", + "codeIataCity": "SAR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.13333, + "longitudeAirport": -89.7, + "nameAirport": "Sparta Community", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 6924, + "codeIataAirport": "SAS", + "codeIataCity": "SAS", + "codeIcaoAirport": "KSAS", + "codeIso2Country": "US", + "geonameId": "5391506", + "latitudeAirport": 33.316666, + "longitudeAirport": -115.98333, + "nameAirport": "Salton City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 6925, + "codeIataAirport": "SAT", + "codeIataCity": "SAT", + "codeIcaoAirport": "KSAT", + "codeIso2Country": "US", + "geonameId": "4726234", + "latitudeAirport": 29.524937, + "longitudeAirport": -98.47264, + "nameAirport": "San Antonio International", + "nameCountry": "United States", + "phone": "210-207-3433", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 6926, + "codeIataAirport": "SAU", + "codeIataCity": "SAU", + "codeIcaoAirport": "WATS", + "codeIso2Country": "ID", + "geonameId": "8260767", + "latitudeAirport": -10.483333, + "longitudeAirport": 121.9, + "nameAirport": "Sawu", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-5", + "airportId": 6927, + "codeIataAirport": "SAV", + "codeIataCity": "SAV", + "codeIcaoAirport": "KSAV", + "codeIso2Country": "US", + "geonameId": "6299040", + "latitudeAirport": 32.1358, + "longitudeAirport": -81.21059, + "nameAirport": "Savannah/Hilton Head", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 6928, + "codeIataAirport": "SAW", + "codeIataCity": "IST", + "codeIcaoAirport": "LTFJ", + "codeIso2Country": "TR", + "geonameId": "6299773", + "latitudeAirport": 40.904675, + "longitudeAirport": 29.309189, + "nameAirport": "Sabiha Gokcen", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-5", + "airportId": 6929, + "codeIataAirport": "SAX", + "codeIataCity": "SAX", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "0", + "latitudeAirport": 8.033333, + "longitudeAirport": -78.083336, + "nameAirport": "Sambu", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "1", + "airportId": 6930, + "codeIataAirport": "SAY", + "codeIataCity": "SAY", + "codeIcaoAirport": "LIQS", + "codeIso2Country": "IT", + "geonameId": "6457348", + "latitudeAirport": 43.25, + "longitudeAirport": 11.25, + "nameAirport": "Siena", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "0", + "airportId": 6931, + "codeIataAirport": "SAZ", + "codeIataCity": "SAZ", + "codeIcaoAirport": "", + "codeIso2Country": "LR", + "geonameId": "0", + "latitudeAirport": 4.666667, + "longitudeAirport": -8.433333, + "nameAirport": "Sasstown", + "nameCountry": "Liberia", + "phone": "", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-8", + "airportId": 6932, + "codeIataAirport": "SBA", + "codeIataCity": "SBA", + "codeIcaoAirport": "KSBA", + "codeIso2Country": "US", + "geonameId": "5392988", + "latitudeAirport": 34.432835, + "longitudeAirport": -119.83648, + "nameAirport": "Santa Barbara Metropolitan Area", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "airportId": 6933, + "codeIataAirport": "SBB", + "codeIataCity": "SBB", + "codeIcaoAirport": "SVSB", + "codeIso2Country": "VE", + "geonameId": "7731481", + "latitudeAirport": 7.783333, + "longitudeAirport": -71.166664, + "nameAirport": "Santa Barbara Ba", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "10", + "airportId": 6934, + "codeIataAirport": "SBC", + "codeIataCity": "SBC", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299156", + "latitudeAirport": -5.316667, + "longitudeAirport": 141.75, + "nameAirport": "Selbang", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "airportId": 6935, + "codeIataAirport": "SBD", + "codeIataCity": "SBT", + "codeIcaoAirport": "KSBD", + "codeIso2Country": "US", + "geonameId": "5391732", + "latitudeAirport": 34.11667, + "longitudeAirport": -117.23333, + "nameAirport": "Norton AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 6936, + "codeIataAirport": "SBE", + "codeIataCity": "SBE", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2086266", + "latitudeAirport": -6.1, + "longitudeAirport": 142.28334, + "nameAirport": "Suabi", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "4.30", + "airportId": 6937, + "codeIataAirport": "SBF", + "codeIataCity": "SBF", + "codeIcaoAirport": "OADS", + "codeIso2Country": "AF", + "geonameId": "1127289", + "latitudeAirport": 33.61667, + "longitudeAirport": 68.53333, + "nameAirport": "Sardeh Band", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "7", + "airportId": 6938, + "codeIataAirport": "SBG", + "codeIataCity": "SBG", + "codeIcaoAirport": "WITB", + "codeIso2Country": "ID", + "geonameId": "6301216", + "latitudeAirport": 5.55, + "longitudeAirport": 95.333336, + "nameAirport": "Maimun Saleh", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-4", + "airportId": 6939, + "codeIataAirport": "SBH", + "codeIataCity": "SBH", + "codeIcaoAirport": "TFFJ", + "codeIso2Country": "BL", + "geonameId": "0", + "latitudeAirport": 17.9, + "longitudeAirport": -62.85, + "nameAirport": "Gustaf III (St-Jean)", + "nameCountry": "Saint Barthélemy", + "phone": "", + "timezone": "America/St_Barthelemy" + }, + { + "GMT": "0", + "airportId": 6940, + "codeIataAirport": "SBI", + "codeIataCity": "SBI", + "codeIcaoAirport": "GUSB", + "codeIso2Country": "GN", + "geonameId": "7668290", + "latitudeAirport": 12.483333, + "longitudeAirport": -13.3, + "nameAirport": "Sambailo", + "nameCountry": "Guinea", + "phone": "", + "timezone": "Africa/Conakry" + }, + { + "GMT": "-3", + "airportId": 6941, + "codeIataAirport": "SBJ", + "codeIataCity": "SBJ", + "codeIcaoAirport": "SNMX", + "codeIso2Country": "BR", + "geonameId": "7731482", + "latitudeAirport": -18.583332, + "longitudeAirport": -39.733334, + "nameAirport": "Sao Mateus", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 6942, + "codeIataAirport": "SBK", + "codeIataCity": "SBK", + "codeIcaoAirport": "LFRT", + "codeIso2Country": "FR", + "geonameId": "6299462", + "latitudeAirport": 48.513058, + "longitudeAirport": -2.808889, + "nameAirport": "Saint Brieuc-Armor", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-4", + "airportId": 6943, + "codeIataAirport": "SBL", + "codeIataCity": "SBL", + "codeIcaoAirport": "SLSA", + "codeIso2Country": "BO", + "geonameId": "6300785", + "latitudeAirport": -13.716667, + "longitudeAirport": -65.45, + "nameAirport": "Yacuma", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-6", + "airportId": 6944, + "codeIataAirport": "SBM", + "codeIataCity": "SBM", + "codeIcaoAirport": "KSBM", + "codeIso2Country": "US", + "geonameId": "5272928", + "latitudeAirport": 43.771667, + "longitudeAirport": -87.85222, + "nameAirport": "Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 6945, + "codeIataAirport": "SBN", + "codeIataCity": "SBN", + "codeIcaoAirport": "KSBN", + "codeIso2Country": "US", + "geonameId": "6299046", + "latitudeAirport": 41.700554, + "longitudeAirport": -86.31335, + "nameAirport": "South Bend Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-7", + "airportId": 6946, + "codeIataAirport": "SBO", + "codeIataCity": "SBO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5546264", + "latitudeAirport": 39.029167, + "longitudeAirport": -111.8375, + "nameAirport": "Salina", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-8", + "airportId": 6947, + "codeIataAirport": "SBP", + "codeIataCity": "CSL", + "codeIcaoAirport": "KSBP", + "codeIso2Country": "US", + "geonameId": "5392330", + "latitudeAirport": 35.239113, + "longitudeAirport": -120.640625, + "nameAirport": "San Luis County Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "5", + "airportId": 6948, + "codeIataAirport": "SBQ", + "codeIataCity": "SBQ", + "codeIcaoAirport": "OPSB", + "codeIso2Country": "PK", + "geonameId": "6300121", + "latitudeAirport": 29.55, + "longitudeAirport": 67.88333, + "nameAirport": "Sibi", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "10", + "airportId": 6949, + "codeIataAirport": "SBR", + "codeIataCity": "SBR", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -9.383333, + "longitudeAirport": 142.63333, + "nameAirport": "Saibai Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-7", + "airportId": 6950, + "codeIataAirport": "SBS", + "codeIataCity": "SBS", + "codeIcaoAirport": "KSBS", + "codeIso2Country": "US", + "geonameId": "5582374", + "latitudeAirport": 40.516666, + "longitudeAirport": -106.8625, + "nameAirport": "Steamboat Springs", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "2", + "airportId": 6951, + "codeIataAirport": "SBU", + "codeIataCity": "SBU", + "codeIcaoAirport": "FASB", + "codeIso2Country": "ZA", + "geonameId": "6296927", + "latitudeAirport": -29.68861, + "longitudeAirport": 17.939444, + "nameAirport": "Springbok", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "10", + "airportId": 6952, + "codeIataAirport": "SBV", + "codeIataCity": "SBV", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298833", + "latitudeAirport": -5.333333, + "longitudeAirport": 155.01666, + "nameAirport": "Sabah", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 6953, + "codeIataAirport": "SBW", + "codeIataCity": "SBW", + "codeIcaoAirport": "WBGS", + "codeIso2Country": "MY", + "geonameId": "6301211", + "latitudeAirport": 2.254997, + "longitudeAirport": 111.98657, + "nameAirport": "Sibu", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-7", + "airportId": 6954, + "codeIataAirport": "SBX", + "codeIataCity": "SBX", + "codeIcaoAirport": "KSBX", + "codeIso2Country": "US", + "geonameId": "5677434", + "latitudeAirport": 48.5, + "longitudeAirport": -111.85, + "nameAirport": "Shelby", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 6955, + "codeIataAirport": "SBY", + "codeIataCity": "SBY", + "codeIcaoAirport": "KSBY", + "codeIso2Country": "US", + "geonameId": "4368725", + "latitudeAirport": 38.34312, + "longitudeAirport": -75.517265, + "nameAirport": "Wicomico Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 6956, + "codeIataAirport": "SBZ", + "codeIataCity": "SBZ", + "codeIcaoAirport": "LRSB", + "codeIso2Country": "RO", + "geonameId": "6299708", + "latitudeAirport": 45.789757, + "longitudeAirport": 24.093529, + "nameAirport": "Sibiu", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "-5", + "airportId": 6957, + "codeIataAirport": "SCA", + "codeIataCity": "SCA", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8298879", + "latitudeAirport": 10.6, + "longitudeAirport": -75.28333, + "nameAirport": "Santa Catalina", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 6958, + "codeIataAirport": "SCB", + "codeIataCity": "SCB", + "codeIcaoAirport": "KSCB", + "codeIso2Country": "US", + "geonameId": "5078715", + "latitudeAirport": 41.65, + "longitudeAirport": -96.666664, + "nameAirport": "State", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 6959, + "codeIataAirport": "SCC", + "codeIataCity": "SCC", + "codeIcaoAirport": "PASC", + "codeIso2Country": "US", + "geonameId": "5860400", + "latitudeAirport": 70.203636, + "longitudeAirport": -148.46011, + "nameAirport": "Prudhoe Bay/Deadhorse", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 6960, + "codeIataAirport": "SCD", + "codeIataCity": "SCD", + "codeIcaoAirport": "MHUL", + "codeIso2Country": "HN", + "geonameId": "7730661", + "latitudeAirport": 14.916111, + "longitudeAirport": -87.26667, + "nameAirport": "Sulaco", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-5", + "airportId": 6961, + "codeIataAirport": "SCE", + "codeIataCity": "SCE", + "codeIcaoAirport": "KUNV", + "codeIso2Country": "US", + "geonameId": "5216775", + "latitudeAirport": 40.85372, + "longitudeAirport": -77.84823, + "nameAirport": "University Park Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 6962, + "codeIataAirport": "SCF", + "codeIataCity": "PHX", + "codeIcaoAirport": "KSDL", + "codeIso2Country": "US", + "geonameId": "5313458", + "latitudeAirport": 33.61667, + "longitudeAirport": -111.916664, + "nameAirport": "Scottsdale Municipalcipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "10", + "airportId": 6963, + "codeIataAirport": "SCG", + "codeIataCity": "SCG", + "codeIcaoAirport": "YSPK", + "codeIso2Country": "AU", + "geonameId": "7731484", + "latitudeAirport": -38.016666, + "longitudeAirport": 142.41667, + "nameAirport": "Spring Creek", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 6964, + "codeIataAirport": "SCH", + "codeIataCity": "SCH", + "codeIcaoAirport": "KSCH", + "codeIso2Country": "US", + "geonameId": "5136457", + "latitudeAirport": 42.85, + "longitudeAirport": -73.933334, + "nameAirport": "Schenectady County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "airportId": 6965, + "codeIataAirport": "SCI", + "codeIataCity": "SCI", + "codeIcaoAirport": "SVPM", + "codeIso2Country": "VE", + "geonameId": "6300867", + "latitudeAirport": 7.766667, + "longitudeAirport": -72.23333, + "nameAirport": "San Cristobal", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-9", + "airportId": 6966, + "codeIataAirport": "SCJ", + "codeIataCity": "SCJ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299209", + "latitudeAirport": 55.416668, + "longitudeAirport": -132.33333, + "nameAirport": "Smith Cove", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "airportId": 6967, + "codeIataAirport": "SCK", + "codeIataCity": "SAC", + "codeIcaoAirport": "KSCK", + "codeIso2Country": "US", + "geonameId": "5399047", + "latitudeAirport": 37.894444, + "longitudeAirport": -121.23917, + "nameAirport": "Stockton Metropolitan Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "airportId": 6968, + "codeIataAirport": "SCL", + "codeIataCity": "SCL", + "codeIcaoAirport": "SCEL", + "codeIso2Country": "CL", + "geonameId": "3899261", + "latitudeAirport": -33.397175, + "longitudeAirport": -70.79382, + "nameAirport": "Arturo Merino Benitez", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-9", + "airportId": 6969, + "codeIataAirport": "SCM", + "codeIataCity": "SCM", + "codeIcaoAirport": "PACM", + "codeIso2Country": "US", + "geonameId": "5873475", + "latitudeAirport": 61.84639, + "longitudeAirport": -165.59389, + "nameAirport": "SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 6970, + "codeIataAirport": "SCN", + "codeIataCity": "SCN", + "codeIcaoAirport": "EDDR", + "codeIso2Country": "DE", + "geonameId": "3208966", + "latitudeAirport": 49.22009, + "longitudeAirport": 7.112705, + "nameAirport": "Ensheim", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "5", + "airportId": 6971, + "codeIataAirport": "SCO", + "codeIataCity": "SCO", + "codeIcaoAirport": "UATE", + "codeIso2Country": "KZ", + "geonameId": "6300921", + "latitudeAirport": 43.86667, + "longitudeAirport": 51.1, + "nameAirport": "Shevchenko", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Aqtau" + }, + { + "GMT": "1", + "airportId": 6972, + "codeIataAirport": "SCP", + "codeIataCity": "SCP", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "2992783", + "latitudeAirport": 45.416668, + "longitudeAirport": 0.616667, + "nameAirport": "St Crepin", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 6973, + "codeIataAirport": "SCQ", + "codeIataCity": "SCQ", + "codeIcaoAirport": "LEST", + "codeIso2Country": "ES", + "geonameId": "6299356", + "latitudeAirport": 42.897316, + "longitudeAirport": -8.420327, + "nameAirport": "Santiago De Compostela", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "0", + "airportId": 6974, + "codeIataAirport": "SCS", + "codeIataCity": "SDZ", + "codeIcaoAirport": "EGPM", + "codeIso2Country": "GB", + "geonameId": "6296631", + "latitudeAirport": 60.436825, + "longitudeAirport": -1.294972, + "nameAirport": "Scatsta", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "3", + "airportId": 6975, + "codeIataAirport": "SCT", + "codeIataCity": "SCT", + "codeIcaoAirport": "ODSQ", + "codeIso2Country": "YE", + "geonameId": "6300143", + "latitudeAirport": 12.627546, + "longitudeAirport": 53.909245, + "nameAirport": "Socotra", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "-5", + "airportId": 6976, + "codeIataAirport": "SCU", + "codeIataCity": "SCU", + "codeIcaoAirport": "MUCU", + "codeIso2Country": "CU", + "geonameId": "6299921", + "latitudeAirport": 19.969168, + "longitudeAirport": -75.83583, + "nameAirport": "Antonio Maceo", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "2", + "airportId": 6977, + "codeIataAirport": "SCV", + "codeIataCity": "SCV", + "codeIcaoAirport": "LRSV", + "codeIso2Country": "RO", + "geonameId": "6299710", + "latitudeAirport": 47.689445, + "longitudeAirport": 26.356112, + "nameAirport": "Salcea", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "3", + "airportId": 6978, + "codeIataAirport": "SCW", + "codeIataCity": "SCW", + "codeIcaoAirport": "UUYY", + "codeIso2Country": "RU", + "geonameId": "6301020", + "latitudeAirport": 61.666668, + "longitudeAirport": 50.766666, + "nameAirport": "Syktyvkar", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "airportId": 6979, + "codeIataAirport": "SCX", + "codeIataCity": "SCX", + "codeIcaoAirport": "MM57", + "codeIso2Country": "MX", + "geonameId": "7668343", + "latitudeAirport": 16.166668, + "longitudeAirport": -95.2, + "nameAirport": "Salina Cruz", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-6", + "airportId": 6980, + "codeIataAirport": "SCY", + "codeIataCity": "SCY", + "codeIcaoAirport": "SPSF", + "codeIso2Country": "EC", + "geonameId": "6300723", + "latitudeAirport": -0.833333, + "longitudeAirport": -89.433334, + "nameAirport": "San Cristobal", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "Pacific/Galapagos" + }, + { + "GMT": "11", + "airportId": 6981, + "codeIataAirport": "SCZ", + "codeIataCity": "SCZ", + "codeIcaoAirport": "AGGL", + "codeIso2Country": "SB", + "geonameId": "6295680", + "latitudeAirport": -11.616667, + "longitudeAirport": 166.85, + "nameAirport": "Santa Cruz Island", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "2", + "airportId": 6982, + "codeIataAirport": "SDB", + "codeIataCity": "SDB", + "codeIcaoAirport": "FASD", + "codeIso2Country": "ZA", + "geonameId": "7730075", + "latitudeAirport": -33.066666, + "longitudeAirport": 18.0, + "nameAirport": "Langebaanweg", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-4", + "airportId": 6983, + "codeIataAirport": "SDC", + "codeIataCity": "SDC", + "codeIcaoAirport": "", + "codeIso2Country": "GY", + "geonameId": "8298876", + "latitudeAirport": 3.333333, + "longitudeAirport": -58.166668, + "nameAirport": "Sandcreek", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "1", + "airportId": 6984, + "codeIataAirport": "SDD", + "codeIataCity": "SDD", + "codeIcaoAirport": "FNBU", + "codeIso2Country": "AO", + "geonameId": "7668257", + "latitudeAirport": -14.924444, + "longitudeAirport": 13.576667, + "nameAirport": "Lubango", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-3", + "airportId": 6985, + "codeIataAirport": "SDE", + "codeIataCity": "SDE", + "codeIcaoAirport": "SANE", + "codeIso2Country": "AR", + "geonameId": "6300533", + "latitudeAirport": -27.765278, + "longitudeAirport": -64.32222, + "nameAirport": "Santiago Del Estero", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-5", + "airportId": 6986, + "codeIataAirport": "SDF", + "codeIataCity": "SDF", + "codeIcaoAirport": "KSDF", + "codeIso2Country": "US", + "geonameId": "6301715", + "latitudeAirport": 38.186375, + "longitudeAirport": -85.74179, + "nameAirport": "Louisville International (Standiford Field)", + "nameCountry": "United States", + "phone": "502-367-4636", + "timezone": "America/Kentucky/Louisville" + }, + { + "GMT": "3.30", + "airportId": 6987, + "codeIataAirport": "SDG", + "codeIataCity": "SDG", + "codeIcaoAirport": "OICS", + "codeIso2Country": "IR", + "geonameId": "6300050", + "latitudeAirport": 35.251472, + "longitudeAirport": 47.013767, + "nameAirport": "Sanandaj", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "10", + "airportId": 6988, + "codeIataAirport": "SDI", + "codeIataCity": "SDI", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8261001", + "latitudeAirport": -5.55, + "longitudeAirport": 146.5, + "nameAirport": "Saidor", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "airportId": 6989, + "codeIataAirport": "SDJ", + "codeIataCity": "SDJ", + "codeIcaoAirport": "RJSS", + "codeIso2Country": "JP", + "geonameId": "6300399", + "latitudeAirport": 38.135555, + "longitudeAirport": 140.92389, + "nameAirport": "Sendai", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "8", + "airportId": 6990, + "codeIataAirport": "SDK", + "codeIataCity": "SDK", + "codeIcaoAirport": "WBKS", + "codeIso2Country": "MY", + "geonameId": "6301213", + "latitudeAirport": 5.896877, + "longitudeAirport": 118.06184, + "nameAirport": "Sandakan", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "1", + "airportId": 6991, + "codeIataAirport": "SDL", + "codeIataCity": "SDL", + "codeIcaoAirport": "ESNN", + "codeIso2Country": "SE", + "geonameId": "6296804", + "latitudeAirport": 62.52165, + "longitudeAirport": 17.438147, + "nameAirport": "Sundsvall/harnosand", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-8", + "airportId": 6992, + "codeIataAirport": "SDM", + "codeIataCity": "SAN", + "codeIcaoAirport": "KSDM", + "codeIso2Country": "US", + "geonameId": "5331042", + "latitudeAirport": 32.572224, + "longitudeAirport": -116.98, + "nameAirport": "Brown Field Municipalcipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 6993, + "codeIataAirport": "SDN", + "codeIataCity": "SDN", + "codeIcaoAirport": "ENSD", + "codeIso2Country": "NO", + "geonameId": "6296767", + "latitudeAirport": 61.766666, + "longitudeAirport": 6.216667, + "nameAirport": "Sandane", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "9", + "airportId": 6994, + "codeIataAirport": "SDO", + "codeIataCity": "SDO", + "codeIcaoAirport": "", + "codeIso2Country": "JP", + "geonameId": "0", + "latitudeAirport": 38.13333, + "longitudeAirport": 138.41667, + "nameAirport": "Ryotsu Sado Island", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-9", + "airportId": 6995, + "codeIataAirport": "SDP", + "codeIataCity": "SDP", + "codeIcaoAirport": "PASD", + "codeIso2Country": "US", + "geonameId": "5873350", + "latitudeAirport": 55.316666, + "longitudeAirport": -160.51389, + "nameAirport": "Sand Point Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "airportId": 6996, + "codeIataAirport": "SDQ", + "codeIataCity": "SDQ", + "codeIcaoAirport": "MDSD", + "codeIso2Country": "DO", + "geonameId": "3500854", + "latitudeAirport": 18.430124, + "longitudeAirport": -69.67674, + "nameAirport": "Aeropuerto de las Américas", + "nameCountry": "Dominican Republic", + "phone": "809-947-2225", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "1", + "airportId": 6997, + "codeIataAirport": "SDR", + "codeIataCity": "SDR", + "codeIcaoAirport": "LEXJ", + "codeIso2Country": "ES", + "geonameId": "3114305", + "latitudeAirport": 43.423084, + "longitudeAirport": -3.824453, + "nameAirport": "Santander", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "9", + "airportId": 6998, + "codeIataAirport": "SDS", + "codeIataCity": "SDS", + "codeIcaoAirport": "RJSD", + "codeIso2Country": "JP", + "geonameId": "6300390", + "latitudeAirport": 38.0, + "longitudeAirport": 138.41667, + "nameAirport": "Sado Shima", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "5", + "airportId": 6999, + "codeIataAirport": "SDT", + "codeIataCity": "SDT", + "codeIcaoAirport": "OPSS", + "codeIso2Country": "PK", + "geonameId": "7668407", + "latitudeAirport": 34.75, + "longitudeAirport": 72.35, + "nameAirport": "Saidu Sharif", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-3", + "airportId": 7000, + "codeIataAirport": "SDU", + "codeIataCity": "RIO", + "codeIcaoAirport": "SBRJ", + "codeIso2Country": "BR", + "geonameId": "6300664", + "latitudeAirport": -22.911541, + "longitudeAirport": -43.167095, + "nameAirport": "Santos Dumont", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "2", + "airportId": 7001, + "codeIataAirport": "SDV", + "codeIataCity": "TLV", + "codeIcaoAirport": "LLSD", + "codeIso2Country": "IL", + "geonameId": "6301787", + "latitudeAirport": 32.104885, + "longitudeAirport": 34.787857, + "nameAirport": "Sde Dov", + "nameCountry": "Israel", + "phone": "", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "-7", + "airportId": 7002, + "codeIataAirport": "SDX", + "codeIataCity": "SDX", + "codeIcaoAirport": "KSEZ", + "codeIso2Country": "US", + "geonameId": "5313668", + "latitudeAirport": 34.86667, + "longitudeAirport": -111.76667, + "nameAirport": "Sedona", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "-7", + "airportId": 7003, + "codeIataAirport": "SDY", + "codeIataCity": "SDY", + "codeIcaoAirport": "KSDY", + "codeIso2Country": "US", + "geonameId": "5677750", + "latitudeAirport": 47.706944, + "longitudeAirport": -104.19194, + "nameAirport": "Richland Municipalcipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-8", + "airportId": 7004, + "codeIataAirport": "SEA", + "codeIataCity": "SEA", + "codeIcaoAirport": "KSEA", + "codeIso2Country": "US", + "geonameId": "5809876", + "latitudeAirport": 47.44384, + "longitudeAirport": -122.301735, + "nameAirport": "Seattle-Tacoma International", + "nameCountry": "United States", + "phone": "206-787-5388", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "airportId": 7005, + "codeIataAirport": "SEB", + "codeIataCity": "SEB", + "codeIcaoAirport": "HLLS", + "codeIso2Country": "LY", + "geonameId": "6297331", + "latitudeAirport": 27.016666, + "longitudeAirport": 14.4625, + "nameAirport": "Sebha", + "nameCountry": "Libya", + "phone": "", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "2", + "airportId": 7006, + "codeIataAirport": "SED", + "codeIataCity": "SED", + "codeIcaoAirport": "", + "codeIso2Country": "IL", + "geonameId": "0", + "latitudeAirport": 31.15, + "longitudeAirport": 35.38333, + "nameAirport": "Min'hat Hashnayim", + "nameCountry": "Israel", + "phone": "", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "-8", + "airportId": 7007, + "codeIataAirport": "SEE", + "codeIataCity": "SAN", + "codeIcaoAirport": "KSEE", + "codeIso2Country": "US", + "geonameId": "5352179", + "latitudeAirport": 32.82611, + "longitudeAirport": -116.97222, + "nameAirport": "Gillespie Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 7008, + "codeIataAirport": "SEF", + "codeIataCity": "SEF", + "codeIcaoAirport": "KSEF", + "codeIso2Country": "US", + "geonameId": "4172388", + "latitudeAirport": 27.5, + "longitudeAirport": -81.416664, + "nameAirport": "Sebring Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 7009, + "codeIataAirport": "SEG", + "codeIataCity": "SEG", + "codeIcaoAirport": "KSEG", + "codeIso2Country": "US", + "geonameId": "5211411", + "latitudeAirport": 40.85, + "longitudeAirport": -76.85, + "nameAirport": "Penn Valley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "airportId": 7010, + "codeIataAirport": "SEH", + "codeIataCity": "SEH", + "codeIcaoAirport": "WAJS", + "codeIso2Country": "ID", + "geonameId": "7731485", + "latitudeAirport": -3.433333, + "longitudeAirport": 140.81667, + "nameAirport": "Senggeh", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-3", + "airportId": 7011, + "codeIataAirport": "SEI", + "codeIataCity": "SEI", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8260957", + "latitudeAirport": -10.45, + "longitudeAirport": -40.183334, + "nameAirport": "Senhor Do Bonfim", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "-6", + "airportId": 7012, + "codeIataAirport": "SEM", + "codeIataCity": "SES", + "codeIcaoAirport": "KSEM", + "codeIso2Country": "US", + "geonameId": "4057424", + "latitudeAirport": 32.226112, + "longitudeAirport": -87.08722, + "nameAirport": "Craig AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 7013, + "codeIataAirport": "SEN", + "codeIataCity": "LON", + "codeIcaoAirport": "EGMC", + "codeIso2Country": "GB", + "geonameId": "6296601", + "latitudeAirport": 51.572777, + "longitudeAirport": 0.701389, + "nameAirport": "Southend", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 7014, + "codeIataAirport": "SEO", + "codeIataCity": "SEO", + "codeIcaoAirport": "DISG", + "codeIso2Country": "CI", + "geonameId": "7668187", + "latitudeAirport": 7.966667, + "longitudeAirport": -6.666667, + "nameAirport": "Seguela", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "-6", + "airportId": 7015, + "codeIataAirport": "SEP", + "codeIataCity": "SEP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.216667, + "longitudeAirport": -98.2, + "nameAirport": "Clark Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "airportId": 7016, + "codeIataAirport": "SEQ", + "codeIataCity": "SEQ", + "codeIcaoAirport": "WIBS", + "codeIso2Country": "ID", + "geonameId": "7731486", + "latitudeAirport": -0.8, + "longitudeAirport": 114.066666, + "nameAirport": "Sungai Pakning", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-5", + "airportId": 7017, + "codeIataAirport": "SER", + "codeIataCity": "SER", + "codeIcaoAirport": "KSER", + "codeIso2Country": "US", + "geonameId": "4264617", + "latitudeAirport": 38.966667, + "longitudeAirport": -85.88333, + "nameAirport": "Freeman Municipalcipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-6", + "airportId": 7018, + "codeIataAirport": "SES", + "codeIataCity": "SES", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4089114", + "latitudeAirport": 32.726112, + "longitudeAirport": -87.08722, + "nameAirport": "Selfield", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 7019, + "codeIataAirport": "SET", + "codeIataCity": "SET", + "codeIcaoAirport": "", + "codeIso2Country": "HN", + "geonameId": "8298761", + "latitudeAirport": 15.316667, + "longitudeAirport": -85.86667, + "nameAirport": "San Esteban", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "3", + "airportId": 7020, + "codeIataAirport": "SEU", + "codeIataCity": "SEU", + "codeIcaoAirport": "HTSN", + "codeIso2Country": "TZ", + "geonameId": "7730624", + "latitudeAirport": -2.383333, + "longitudeAirport": 34.816666, + "nameAirport": "Seronera", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "2", + "airportId": 7021, + "codeIataAirport": "SEV", + "codeIataCity": "SEV", + "codeIcaoAirport": "UKCS", + "codeIso2Country": "UA", + "geonameId": "7731487", + "latitudeAirport": 48.9, + "longitudeAirport": 38.55, + "nameAirport": "Severodoneck", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "2", + "airportId": 7022, + "codeIataAirport": "SEW", + "codeIataCity": "SEW", + "codeIcaoAirport": "HE24", + "codeIso2Country": "EG", + "geonameId": "7730609", + "latitudeAirport": 29.183332, + "longitudeAirport": 25.516666, + "nameAirport": "Siwa", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "0", + "airportId": 7023, + "codeIataAirport": "SEY", + "codeIataCity": "SEY", + "codeIcaoAirport": "GQNS", + "codeIso2Country": "MR", + "geonameId": "7668287", + "latitudeAirport": 15.182222, + "longitudeAirport": -12.206111, + "nameAirport": "Selibaby", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "4", + "airportId": 7024, + "codeIataAirport": "SEZ", + "codeIataCity": "SEZ", + "codeIcaoAirport": "FSIA", + "codeIso2Country": "SC", + "geonameId": "6297094", + "latitudeAirport": -4.671275, + "longitudeAirport": 55.51128, + "nameAirport": "Seychelles International Airport", + "nameCountry": "Seychelles", + "phone": "", + "timezone": "Indian/Mahe" + }, + { + "GMT": "1", + "airportId": 7025, + "codeIataAirport": "SFA", + "codeIataCity": "SFA", + "codeIcaoAirport": "DTTX", + "codeIso2Country": "TN", + "geonameId": "6296475", + "latitudeAirport": 34.716667, + "longitudeAirport": 10.683333, + "nameAirport": "Sfax Thyna", + "nameCountry": "Tunisia", + "phone": "", + "timezone": "Africa/Tunis" + }, + { + "GMT": "-5", + "airportId": 7026, + "codeIataAirport": "SFB", + "codeIataCity": "ORL", + "codeIcaoAirport": "KSFB", + "codeIso2Country": "US", + "geonameId": "6299061", + "latitudeAirport": 28.775118, + "longitudeAirport": -81.2432, + "nameAirport": "Orlando Sanford International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "airportId": 7027, + "codeIataAirport": "SFC", + "codeIataCity": "SFC", + "codeIcaoAirport": "", + "codeIso2Country": "GP", + "geonameId": "0", + "latitudeAirport": 16.25, + "longitudeAirport": -61.283333, + "nameAirport": "St Francois", + "nameCountry": "Guadeloupe", + "phone": "", + "timezone": "America/Guadeloupe" + }, + { + "GMT": "-4", + "airportId": 7028, + "codeIataAirport": "SFD", + "codeIataCity": "SFD", + "codeIcaoAirport": "SVSR", + "codeIso2Country": "VE", + "geonameId": "6300872", + "latitudeAirport": 7.885278, + "longitudeAirport": -67.43916, + "nameAirport": "Las Flecheras", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "8", + "airportId": 7029, + "codeIataAirport": "SFE", + "codeIataCity": "SFE", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "0", + "latitudeAirport": 16.6, + "longitudeAirport": 120.3, + "nameAirport": "San Fernando", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-8", + "airportId": 7030, + "codeIataAirport": "SFF", + "codeIataCity": "GEG", + "codeIcaoAirport": "KSFF", + "codeIso2Country": "US", + "geonameId": "5794246", + "latitudeAirport": 47.666668, + "longitudeAirport": -117.4, + "nameAirport": "Felts Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "airportId": 7031, + "codeIataAirport": "SFG", + "codeIataCity": "SFG", + "codeIcaoAirport": "TFFG", + "codeIso2Country": "MF", + "geonameId": "0", + "latitudeAirport": 18.100555, + "longitudeAirport": -63.04889, + "nameAirport": "Esperance", + "nameCountry": "Saint Martin", + "phone": "", + "timezone": "America/Marigot" + }, + { + "GMT": "-8", + "airportId": 7032, + "codeIataAirport": "SFH", + "codeIataCity": "SFH", + "codeIcaoAirport": "SVSP", + "codeIso2Country": "MX", + "geonameId": "7668349", + "latitudeAirport": 31.0, + "longitudeAirport": -114.86667, + "nameAirport": "San Felipe", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Santa_Isabel" + }, + { + "GMT": "-3", + "airportId": 7033, + "codeIataAirport": "SFJ", + "codeIataCity": "SFJ", + "codeIcaoAirport": "BGSF", + "codeIso2Country": "GL", + "geonameId": "6295704", + "latitudeAirport": 67.01222, + "longitudeAirport": -50.719723, + "nameAirport": "Kangerlussuaq", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "-3", + "airportId": 7034, + "codeIataAirport": "SFK", + "codeIataCity": "SFK", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "3387204", + "latitudeAirport": -0.7, + "longitudeAirport": -48.52222, + "nameAirport": "Soure", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Belem" + }, + { + "GMT": "-1", + "airportId": 7035, + "codeIataAirport": "SFL", + "codeIataCity": "SFL", + "codeIcaoAirport": "GVSF", + "codeIso2Country": "CV", + "geonameId": "7668292", + "latitudeAirport": 14.9, + "longitudeAirport": -24.516666, + "nameAirport": "Sao Filipe", + "nameCountry": "Cape Verde", + "phone": "", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "-5", + "airportId": 7036, + "codeIataAirport": "SFM", + "codeIataCity": "SFM", + "codeIcaoAirport": "KSFM", + "codeIso2Country": "US", + "geonameId": "4977771", + "latitudeAirport": 43.433334, + "longitudeAirport": -70.76667, + "nameAirport": "Sanford", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 7037, + "codeIataAirport": "SFN", + "codeIataCity": "SFN", + "codeIcaoAirport": "SAAV", + "codeIso2Country": "AR", + "geonameId": "6300515", + "latitudeAirport": -31.716667, + "longitudeAirport": -60.816666, + "nameAirport": "Santa Fe", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-8", + "airportId": 7038, + "codeIataAirport": "SFO", + "codeIataCity": "SFO", + "codeIcaoAirport": "KSFO", + "codeIso2Country": "US", + "geonameId": "5391989", + "latitudeAirport": 37.615215, + "longitudeAirport": -122.38988, + "nameAirport": "San Francisco International", + "nameCountry": "United States", + "phone": "650-821-8211", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 7039, + "codeIataAirport": "SFP", + "codeIataCity": "SFP", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2147849", + "latitudeAirport": -28.0, + "longitudeAirport": 153.0, + "nameAirport": "Surfers Paradise", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "airportId": 7040, + "codeIataAirport": "SFQ", + "codeIataCity": "SFQ", + "codeIcaoAirport": "LTCH", + "codeIso2Country": "TR", + "geonameId": "6299766", + "latitudeAirport": 37.085278, + "longitudeAirport": 38.85, + "nameAirport": "Sanliurfa", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "8", + "airportId": 7041, + "codeIataAirport": "SFS", + "codeIataCity": "SFS", + "codeIcaoAirport": "RPLB", + "codeIso2Country": "PH", + "geonameId": "6300471", + "latitudeAirport": 14.785556, + "longitudeAirport": 120.26722, + "nameAirport": "Subic Bay International", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "1", + "airportId": 7042, + "codeIataAirport": "SFT", + "codeIataCity": "SFT", + "codeIcaoAirport": "ESNS", + "codeIso2Country": "SE", + "geonameId": "6296807", + "latitudeAirport": 64.62251, + "longitudeAirport": 21.068548, + "nameAirport": "Skelleftea", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "10", + "airportId": 7043, + "codeIataAirport": "SFU", + "codeIataCity": "SFU", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260960", + "latitudeAirport": -9.666667, + "longitudeAirport": 148.66667, + "nameAirport": "Safia", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "airportId": 7044, + "codeIataAirport": "SFV", + "codeIataCity": "SFV", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8299017", + "latitudeAirport": -19.833332, + "longitudeAirport": -50.166668, + "nameAirport": "Santa Fe Do Sul", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "airportId": 7045, + "codeIataAirport": "SFW", + "codeIataCity": "SFW", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "8299084", + "latitudeAirport": 8.833333, + "longitudeAirport": -81.166664, + "nameAirport": "Santa Fe", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "-4", + "airportId": 7046, + "codeIataAirport": "SFX", + "codeIataCity": "SFX", + "codeIcaoAirport": "", + "codeIso2Country": "VE", + "geonameId": "7731488", + "latitudeAirport": 8.216667, + "longitudeAirport": -62.38333, + "nameAirport": "San Felix", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-5", + "airportId": 7047, + "codeIataAirport": "SFZ", + "codeIataCity": "SFZ", + "codeIcaoAirport": "KSFZ", + "codeIso2Country": "US", + "geonameId": "5223661", + "latitudeAirport": 41.916668, + "longitudeAirport": -71.566666, + "nameAirport": "North Central", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "4.30", + "airportId": 7048, + "codeIataAirport": "SGA", + "codeIataCity": "SGA", + "codeIcaoAirport": "OASN", + "codeIso2Country": "AF", + "geonameId": "7730739", + "latitudeAirport": 38.033333, + "longitudeAirport": 71.71667, + "nameAirport": "Sheghnan", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "10", + "airportId": 7049, + "codeIataAirport": "SGB", + "codeIataCity": "SGB", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2086628", + "latitudeAirport": -6.7, + "longitudeAirport": 147.13333, + "nameAirport": "Singaua", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5", + "airportId": 7050, + "codeIataAirport": "SGC", + "codeIataCity": "SGC", + "codeIcaoAirport": "USRR", + "codeIso2Country": "RU", + "geonameId": "6301003", + "latitudeAirport": 61.339916, + "longitudeAirport": 73.40953, + "nameAirport": "Surgut", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "1", + "airportId": 7051, + "codeIataAirport": "SGD", + "codeIataCity": "SGD", + "codeIcaoAirport": "EKSB", + "codeIso2Country": "DK", + "geonameId": "6296709", + "latitudeAirport": 54.93028, + "longitudeAirport": 9.794722, + "nameAirport": "Sonderborg", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 7052, + "codeIataAirport": "SGE", + "codeIataCity": "SGE", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2832495", + "latitudeAirport": 50.85, + "longitudeAirport": 8.0, + "nameAirport": "Siegerland Airport", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "airportId": 7053, + "codeIataAirport": "SGF", + "codeIataCity": "SGF", + "codeIcaoAirport": "KSGF", + "codeIso2Country": "US", + "geonameId": "4409901", + "latitudeAirport": 37.24237, + "longitudeAirport": -93.38226, + "nameAirport": "Springfield-Branson Rg", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 7054, + "codeIataAirport": "SGG", + "codeIataCity": "SGG", + "codeIcaoAirport": "", + "codeIso2Country": "MY", + "geonameId": "1735799", + "latitudeAirport": 1.222778, + "longitudeAirport": 111.460556, + "nameAirport": "Simanggang", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-5", + "airportId": 7055, + "codeIataAirport": "SGH", + "codeIataCity": "SGH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4525353", + "latitudeAirport": 39.916668, + "longitudeAirport": -83.8, + "nameAirport": "Springfield", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "5", + "airportId": 7056, + "codeIataAirport": "SGI", + "codeIataCity": "SGI", + "codeIcaoAirport": "OPSR", + "codeIso2Country": "PK", + "geonameId": "6300123", + "latitudeAirport": 32.166668, + "longitudeAirport": 72.666664, + "nameAirport": "Sargodha Airport", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "10", + "airportId": 7057, + "codeIataAirport": "SGJ", + "codeIataCity": "SGJ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298969", + "latitudeAirport": -10.466667, + "longitudeAirport": 150.15, + "nameAirport": "Sagarai", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 7058, + "codeIataAirport": "SGK", + "codeIataCity": "SGK", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8224677", + "latitudeAirport": -5.083333, + "longitudeAirport": 144.76666, + "nameAirport": "Sangapi", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 7059, + "codeIataAirport": "SGL", + "codeIataCity": "MNL", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "0", + "latitudeAirport": 14.6, + "longitudeAirport": 120.95, + "nameAirport": "Sangley Point NAS", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-7", + "airportId": 7060, + "codeIataAirport": "SGM", + "codeIataCity": "SGM", + "codeIcaoAirport": "MM26", + "codeIso2Country": "MX", + "geonameId": "7668342", + "latitudeAirport": 27.45, + "longitudeAirport": -113.0, + "nameAirport": "San Ignacio", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mazatlan" + }, + { + "GMT": "7", + "airportId": 7061, + "codeIataAirport": "SGN", + "codeIataCity": "SGN", + "codeIcaoAirport": "VVTS", + "codeIso2Country": "VN", + "geonameId": "1904593", + "latitudeAirport": 10.813045, + "longitudeAirport": 106.662476, + "nameAirport": "Tan Son Nhat International", + "nameCountry": "", + "phone": "-2043", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "10", + "airportId": 7062, + "codeIataAirport": "SGO", + "codeIataCity": "SGO", + "codeIcaoAirport": "YSGE", + "codeIso2Country": "AU", + "geonameId": "7668767", + "latitudeAirport": -28.053333, + "longitudeAirport": 148.59389, + "nameAirport": "St George", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "airportId": 7063, + "codeIataAirport": "SGP", + "codeIataCity": "SGP", + "codeIcaoAirport": "YSHG", + "codeIso2Country": "AU", + "geonameId": "7731489", + "latitudeAirport": -20.816668, + "longitudeAirport": 120.23333, + "nameAirport": "Shay Gap", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "airportId": 7064, + "codeIataAirport": "SGQ", + "codeIataCity": "SGQ", + "codeIcaoAirport": "WRLA", + "codeIso2Country": "ID", + "geonameId": "7731490", + "latitudeAirport": 0.5, + "longitudeAirport": 117.333336, + "nameAirport": "Sanggata", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-6", + "airportId": 7065, + "codeIataAirport": "SGR", + "codeIataCity": "SGR", + "codeIcaoAirport": "KSGR", + "codeIso2Country": "US", + "geonameId": "4734825", + "latitudeAirport": 29.698889, + "longitudeAirport": -95.407776, + "nameAirport": "Sugar Land Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 7066, + "codeIataAirport": "SGS", + "codeIataCity": "SGS", + "codeIcaoAirport": "RPMN", + "codeIso2Country": "PH", + "geonameId": "7668422", + "latitudeAirport": 5.233333, + "longitudeAirport": 121.15, + "nameAirport": "Sanga Sanga", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-6", + "airportId": 7067, + "codeIataAirport": "SGT", + "codeIataCity": "SGT", + "codeIcaoAirport": "KSGT", + "codeIso2Country": "US", + "geonameId": "4132634", + "latitudeAirport": 34.5, + "longitudeAirport": -91.53333, + "nameAirport": "Stuttgart Municipalcipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 7068, + "codeIataAirport": "SGU", + "codeIataCity": "SGU", + "codeIcaoAirport": "KSGU", + "codeIso2Country": "US", + "geonameId": "5546225", + "latitudeAirport": 37.032627, + "longitudeAirport": -113.51017, + "nameAirport": "St. George Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-3", + "airportId": 7069, + "codeIataAirport": "SGV", + "codeIataCity": "SGV", + "codeIcaoAirport": "SAVS", + "codeIso2Country": "AR", + "geonameId": "7730774", + "latitudeAirport": -41.566666, + "longitudeAirport": -65.35, + "nameAirport": "Sierra Grande", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-9", + "airportId": 7070, + "codeIataAirport": "SGW", + "codeIataCity": "SGW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5556878", + "latitudeAirport": 58.4776, + "longitudeAirport": -134.1578, + "nameAirport": "Saginaw Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "airportId": 7071, + "codeIataAirport": "SGX", + "codeIataCity": "SGX", + "codeIcaoAirport": "HTSO", + "codeIso2Country": "TZ", + "geonameId": "6297368", + "latitudeAirport": -10.686667, + "longitudeAirport": 35.5775, + "nameAirport": "Songea", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-9", + "airportId": 7072, + "codeIataAirport": "SGY", + "codeIataCity": "SGY", + "codeIcaoAirport": "PAGY", + "codeIso2Country": "US", + "geonameId": "5557318", + "latitudeAirport": 59.460556, + "longitudeAirport": -135.31555, + "nameAirport": "Skagway Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "airportId": 7073, + "codeIataAirport": "SGZ", + "codeIataCity": "SGZ", + "codeIcaoAirport": "VTSH", + "codeIso2Country": "TH", + "geonameId": "1606149", + "latitudeAirport": 7.183889, + "longitudeAirport": 100.61667, + "nameAirport": "Songkhla", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "8", + "airportId": 7074, + "codeIataAirport": "SHA", + "codeIataCity": "SHA", + "codeIcaoAirport": "ZSSS", + "codeIso2Country": "CN", + "geonameId": "6301388", + "latitudeAirport": 31.196815, + "longitudeAirport": 121.34197, + "nameAirport": "Shanghai Hongqiao International", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9", + "airportId": 7075, + "codeIataAirport": "SHB", + "codeIataCity": "SHB", + "codeIcaoAirport": "RJCN", + "codeIso2Country": "JP", + "geonameId": "6300326", + "latitudeAirport": 43.572197, + "longitudeAirport": 144.95613, + "nameAirport": "Nakashibetsu", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "3", + "airportId": 7076, + "codeIataAirport": "SHC", + "codeIataCity": "SHC", + "codeIcaoAirport": "", + "codeIso2Country": "ET", + "geonameId": "7731491", + "latitudeAirport": 12.983333, + "longitudeAirport": 39.13333, + "nameAirport": "Indaselassie", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-5", + "airportId": 7077, + "codeIataAirport": "SHD", + "codeIataCity": "SHD", + "codeIcaoAirport": "KSHD", + "codeIso2Country": "US", + "geonameId": "4785295", + "latitudeAirport": 38.26389, + "longitudeAirport": -78.89667, + "nameAirport": "Shenandoah Valley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 7078, + "codeIataAirport": "SHE", + "codeIataCity": "SHE", + "codeIcaoAirport": "ZYTX", + "codeIso2Country": "CN", + "geonameId": "6301402", + "latitudeAirport": 41.861084, + "longitudeAirport": 123.426926, + "nameAirport": "Shenyang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-9", + "airportId": 7079, + "codeIataAirport": "SHG", + "codeIataCity": "SHG", + "codeIcaoAirport": "PAGH", + "codeIso2Country": "US", + "geonameId": "5874124", + "latitudeAirport": 66.889725, + "longitudeAirport": -157.15778, + "nameAirport": "Shungnak", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 7080, + "codeIataAirport": "SHH", + "codeIataCity": "SHH", + "codeIcaoAirport": "PASH", + "codeIso2Country": "US", + "geonameId": "5874016", + "latitudeAirport": 66.25694, + "longitudeAirport": -166.05833, + "nameAirport": "Shishmaref", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "9", + "airportId": 7081, + "codeIataAirport": "SHI", + "codeIataCity": "SHI", + "codeIcaoAirport": "RORS", + "codeIso2Country": "JP", + "geonameId": "6300467", + "latitudeAirport": 24.816668, + "longitudeAirport": 125.15, + "nameAirport": "Shimojishima", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "4", + "airportId": 7082, + "codeIataAirport": "SHJ", + "codeIataCity": "SHJ", + "codeIcaoAirport": "OMSJ", + "codeIso2Country": "AE", + "geonameId": "6300099", + "latitudeAirport": 25.320873, + "longitudeAirport": 55.52029, + "nameAirport": "Sharjah", + "nameCountry": "United Arab Emirates", + "phone": "", + "timezone": "Asia/Dubai" + }, + { + "GMT": "2", + "airportId": 7083, + "codeIataAirport": "SHK", + "codeIataCity": "SHK", + "codeIcaoAirport": "FXSH", + "codeIso2Country": "LS", + "geonameId": "7730543", + "latitudeAirport": -29.475, + "longitudeAirport": 27.833332, + "nameAirport": "Sehonghong", + "nameCountry": "Lesotho", + "phone": "", + "timezone": "Africa/Maseru" + }, + { + "GMT": "5.30", + "airportId": 7084, + "codeIataAirport": "SHL", + "codeIataCity": "SHL", + "codeIcaoAirport": "VEBI", + "codeIso2Country": "IN", + "geonameId": "7668588", + "latitudeAirport": 25.566668, + "longitudeAirport": 91.88333, + "nameAirport": "Barapani", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "9", + "airportId": 7085, + "codeIataAirport": "SHM", + "codeIataCity": "SHM", + "codeIcaoAirport": "RJBD", + "codeIso2Country": "JP", + "geonameId": "6300317", + "latitudeAirport": 33.66139, + "longitudeAirport": 135.35806, + "nameAirport": "Shirahama", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-8", + "airportId": 7086, + "codeIataAirport": "SHN", + "codeIataCity": "SHN", + "codeIcaoAirport": "KSHN", + "codeIso2Country": "US", + "geonameId": "5810176", + "latitudeAirport": 47.23389, + "longitudeAirport": -123.138885, + "nameAirport": "Sanderson Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9", + "airportId": 7087, + "codeIataAirport": "SHO", + "codeIataCity": "SHO", + "codeIcaoAirport": "", + "codeIso2Country": "KR", + "geonameId": "0", + "latitudeAirport": 38.13333, + "longitudeAirport": 128.6, + "nameAirport": "Seolak", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "8", + "airportId": 7088, + "codeIataAirport": "SHP", + "codeIataCity": "SHP", + "codeIcaoAirport": "ZBSH", + "codeIso2Country": "CN", + "geonameId": "7730282", + "latitudeAirport": 39.965214, + "longitudeAirport": 119.71656, + "nameAirport": "Qinhuangdao", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "airportId": 7089, + "codeIataAirport": "SHQ", + "codeIataCity": "SHQ", + "codeIcaoAirport": "YSPT", + "codeIso2Country": "AU", + "geonameId": "7668771", + "latitudeAirport": -27.951944, + "longitudeAirport": 153.42778, + "nameAirport": "Southport", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-7", + "airportId": 7090, + "codeIataAirport": "SHR", + "codeIataCity": "SHR", + "codeIcaoAirport": "KSHR", + "codeIso2Country": "US", + "geonameId": "5838200", + "latitudeAirport": 44.774166, + "longitudeAirport": -106.97722, + "nameAirport": "Sheridan", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "airportId": 7091, + "codeIataAirport": "SHS", + "codeIataCity": "SHS", + "codeIcaoAirport": "ZHSS", + "codeIso2Country": "CN", + "geonameId": "7731492", + "latitudeAirport": 30.316668, + "longitudeAirport": 112.23333, + "nameAirport": "Shashi", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "airportId": 7092, + "codeIataAirport": "SHT", + "codeIataCity": "SHT", + "codeIcaoAirport": "YSHT", + "codeIso2Country": "AU", + "geonameId": "7668768", + "latitudeAirport": -36.38333, + "longitudeAirport": 145.43333, + "nameAirport": "Shepparton", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "9.30", + "airportId": 7093, + "codeIataAirport": "SHU", + "codeIataCity": "SHU", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -11.133333, + "longitudeAirport": 132.13333, + "nameAirport": "Smith Point", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-6", + "airportId": 7094, + "codeIataAirport": "SHV", + "codeIataCity": "SHV", + "codeIcaoAirport": "KSHV", + "codeIso2Country": "US", + "geonameId": "4341523", + "latitudeAirport": 32.45471, + "longitudeAirport": -93.828384, + "nameAirport": "Shreveport Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 7095, + "codeIataAirport": "SHW", + "codeIataCity": "SHW", + "codeIcaoAirport": "OESH", + "codeIso2Country": "SA", + "geonameId": "6300027", + "latitudeAirport": 17.46946, + "longitudeAirport": 47.111984, + "nameAirport": "Sharurah", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-9", + "airportId": 7096, + "codeIataAirport": "SHX", + "codeIataCity": "SHX", + "codeIcaoAirport": "PAHX", + "codeIso2Country": "US", + "geonameId": "5873802", + "latitudeAirport": 62.69583, + "longitudeAirport": -159.56667, + "nameAirport": "Shageluk", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "airportId": 7097, + "codeIataAirport": "SHY", + "codeIataCity": "SHY", + "codeIcaoAirport": "HTSY", + "codeIso2Country": "TZ", + "geonameId": "150006", + "latitudeAirport": -3.608185, + "longitudeAirport": 33.504486, + "nameAirport": "Shinyanga", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "2", + "airportId": 7098, + "codeIataAirport": "SHZ", + "codeIataCity": "SHZ", + "codeIcaoAirport": "FXSS", + "codeIso2Country": "LS", + "geonameId": "7730546", + "latitudeAirport": -29.166668, + "longitudeAirport": 28.0, + "nameAirport": "Seshutes", + "nameCountry": "Lesotho", + "phone": "", + "timezone": "Africa/Maseru" + }, + { + "GMT": "1", + "airportId": 7099, + "codeIataAirport": "SIB", + "codeIataCity": "SIB", + "codeIcaoAirport": "", + "codeIso2Country": "CG", + "geonameId": "6296959", + "latitudeAirport": -3.733333, + "longitudeAirport": 13.4, + "nameAirport": "Sibiti", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-5", + "airportId": 7100, + "codeIataAirport": "SIC", + "codeIataCity": "SIC", + "codeIcaoAirport": "LTCM", + "codeIso2Country": "PA", + "geonameId": "739600", + "latitudeAirport": 42.0175, + "longitudeAirport": 35.06889, + "nameAirport": "Sinop Airport", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "-1", + "airportId": 7101, + "codeIataAirport": "SID", + "codeIataCity": "SID", + "codeIcaoAirport": "GVAC", + "codeIso2Country": "CV", + "geonameId": "6297256", + "latitudeAirport": 16.734695, + "longitudeAirport": -22.943613, + "nameAirport": "Amilcar Cabral International", + "nameCountry": "Cape Verde", + "phone": "", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "0", + "airportId": 7102, + "codeIataAirport": "SIE", + "codeIataCity": "SIE", + "codeIcaoAirport": "LPSI", + "codeIso2Country": "PT", + "geonameId": "7730640", + "latitudeAirport": 37.933334, + "longitudeAirport": -8.85, + "nameAirport": "Sines", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "5.45", + "airportId": 7103, + "codeIataAirport": "SIF", + "codeIataCity": "SIF", + "codeIcaoAirport": "VNSI", + "codeIso2Country": "NP", + "geonameId": "6301114", + "latitudeAirport": 27.163563, + "longitudeAirport": 84.979195, + "nameAirport": "Simara", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-4", + "airportId": 7104, + "codeIataAirport": "SIG", + "codeIataCity": "SJU", + "codeIcaoAirport": "TJIG", + "codeIso2Country": "PR", + "geonameId": "4564968", + "latitudeAirport": 18.458889, + "longitudeAirport": -66.102776, + "nameAirport": "Isla Grande", + "nameCountry": "Puerto Rico", + "phone": "", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "5.45", + "airportId": 7105, + "codeIataAirport": "SIH", + "codeIataCity": "SIH", + "codeIcaoAirport": "VNDT", + "codeIso2Country": "NP", + "geonameId": "7731493", + "latitudeAirport": 29.266666, + "longitudeAirport": 80.975, + "nameAirport": "Silgadi Doti", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "0", + "airportId": 7106, + "codeIataAirport": "SII", + "codeIataCity": "SII", + "codeIcaoAirport": "GMMF", + "codeIso2Country": "MA", + "geonameId": "6297209", + "latitudeAirport": 29.4, + "longitudeAirport": -10.2, + "nameAirport": "Sidi Ifni", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "0", + "airportId": 7107, + "codeIataAirport": "SIJ", + "codeIataCity": "SIJ", + "codeIcaoAirport": "BISI", + "codeIso2Country": "IS", + "geonameId": "7668106", + "latitudeAirport": 66.166664, + "longitudeAirport": -18.933332, + "nameAirport": "Siglufjordur", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-6", + "airportId": 7108, + "codeIataAirport": "SIK", + "codeIataCity": "SIK", + "codeIcaoAirport": "KSIK", + "codeIso2Country": "US", + "geonameId": "4408673", + "latitudeAirport": 36.86667, + "longitudeAirport": -89.55, + "nameAirport": "Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 7109, + "codeIataAirport": "SIL", + "codeIataCity": "SIL", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2086740", + "latitudeAirport": -8.333333, + "longitudeAirport": 147.5, + "nameAirport": "Sila", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 7110, + "codeIataAirport": "SIM", + "codeIataCity": "SIM", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2086697", + "latitudeAirport": -5.25, + "longitudeAirport": 144.53334, + "nameAirport": "Simbai", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 7111, + "codeIataAirport": "SIN", + "codeIataCity": "SIN", + "codeIcaoAirport": "WSSS", + "codeIso2Country": "SG", + "geonameId": "1880725", + "latitudeAirport": 1.361173, + "longitudeAirport": 103.990204, + "nameAirport": "Singapore Changi", + "nameCountry": "Singapore", + "phone": "(65) 6595 686", + "timezone": "Asia/Singapore" + }, + { + "GMT": "10", + "airportId": 7112, + "codeIataAirport": "SIO", + "codeIataCity": "SIO", + "codeIcaoAirport": "YSMI", + "codeIso2Country": "AU", + "geonameId": "7668769", + "latitudeAirport": -40.835835, + "longitudeAirport": 145.08167, + "nameAirport": "Smithton", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Hobart" + }, + { + "GMT": "3", + "airportId": 7113, + "codeIataAirport": "SIP", + "codeIataCity": "SIP", + "codeIcaoAirport": "UKFF", + "codeIso2Country": "UA", + "geonameId": "6300957", + "latitudeAirport": 45.020657, + "longitudeAirport": 33.99819, + "nameAirport": "Simferopol", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Simferopol" + }, + { + "GMT": "7", + "airportId": 7114, + "codeIataAirport": "SIQ", + "codeIataCity": "SIQ", + "codeIcaoAirport": "WIKS", + "codeIso2Country": "ID", + "geonameId": "6301234", + "latitudeAirport": -0.5, + "longitudeAirport": 104.416664, + "nameAirport": "Dabo", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "1", + "airportId": 7115, + "codeIataAirport": "SIR", + "codeIataCity": "SIR", + "codeIcaoAirport": "LSGS", + "codeIso2Country": "CH", + "geonameId": "6299717", + "latitudeAirport": 46.25, + "longitudeAirport": 7.333333, + "nameAirport": "Sion", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "2", + "airportId": 7116, + "codeIataAirport": "SIS", + "codeIataCity": "SIS", + "codeIcaoAirport": "FASS", + "codeIso2Country": "ZA", + "geonameId": "6296930", + "latitudeAirport": -27.916668, + "longitudeAirport": 22.983334, + "nameAirport": "Sishen", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-9", + "airportId": 7117, + "codeIataAirport": "SIT", + "codeIataCity": "SIT", + "codeIcaoAirport": "PASI", + "codeIso2Country": "US", + "geonameId": "5557294", + "latitudeAirport": 57.04861, + "longitudeAirport": -135.23334, + "nameAirport": "Sitka", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "-6", + "airportId": 7118, + "codeIataAirport": "SIU", + "codeIataCity": "SIU", + "codeIcaoAirport": "MNSI", + "codeIso2Country": "NI", + "geonameId": "7730672", + "latitudeAirport": 13.727222, + "longitudeAirport": -84.77778, + "nameAirport": "Siuna", + "nameCountry": "Nicaragua", + "phone": "", + "timezone": "America/Managua" + }, + { + "GMT": "-5", + "airportId": 7119, + "codeIataAirport": "SIV", + "codeIataCity": "SIV", + "codeIcaoAirport": "KSIV", + "codeIso2Country": "US", + "geonameId": "4265510", + "latitudeAirport": 39.1, + "longitudeAirport": -87.4, + "nameAirport": "County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "7", + "airportId": 7120, + "codeIataAirport": "SIW", + "codeIataCity": "SIW", + "codeIcaoAirport": "WIMP", + "codeIso2Country": "ID", + "geonameId": "8260771", + "latitudeAirport": 2.67, + "longitudeAirport": 98.93, + "nameAirport": "Sibisa", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "10", + "airportId": 7121, + "codeIataAirport": "SIX", + "codeIataCity": "SIX", + "codeIcaoAirport": "YSGT", + "codeIso2Country": "AU", + "geonameId": "7731494", + "latitudeAirport": -32.566666, + "longitudeAirport": 151.16667, + "nameAirport": "Singleton", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-8", + "airportId": 7122, + "codeIataAirport": "SIY", + "codeIataCity": "SIY", + "codeIcaoAirport": "KSIY", + "codeIso2Country": "US", + "geonameId": "5571370", + "latitudeAirport": 41.733334, + "longitudeAirport": -122.53333, + "nameAirport": "Siskiyou County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 7123, + "codeIataAirport": "SIZ", + "codeIataCity": "SIZ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298848", + "latitudeAirport": -3.0, + "longitudeAirport": 142.05, + "nameAirport": "Sissano", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 7124, + "codeIataAirport": "SJA", + "codeIataCity": "SJA", + "codeIcaoAirport": "SPJN", + "codeIso2Country": "PE", + "geonameId": "6300810", + "latitudeAirport": -15.35, + "longitudeAirport": -75.15, + "nameAirport": "San Juan", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "-4", + "airportId": 7125, + "codeIataAirport": "SJB", + "codeIataCity": "SJB", + "codeIcaoAirport": "SLJO", + "codeIso2Country": "BO", + "geonameId": "6300774", + "latitudeAirport": -13.083333, + "longitudeAirport": -64.8, + "nameAirport": "San Joaquin", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-8", + "airportId": 7126, + "codeIataAirport": "SJC", + "codeIataCity": "SJC", + "codeIcaoAirport": "KSJC", + "codeIso2Country": "US", + "geonameId": "5392196", + "latitudeAirport": 37.366737, + "longitudeAirport": -121.92638, + "nameAirport": "Mineta San Jose International Airport", + "nameCountry": "United States", + "phone": "408-392-3600", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-7", + "airportId": 7127, + "codeIataAirport": "SJD", + "codeIataCity": "SJD", + "codeIcaoAirport": "MMSD", + "codeIso2Country": "MX", + "geonameId": "6299871", + "latitudeAirport": 23.162354, + "longitudeAirport": -109.717285, + "nameAirport": "Los Cabos", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mazatlan" + }, + { + "GMT": "-5", + "airportId": 7128, + "codeIataAirport": "SJE", + "codeIataCity": "SJE", + "codeIcaoAirport": "SKSJ", + "codeIso2Country": "CO", + "geonameId": "3669553", + "latitudeAirport": 2.583333, + "longitudeAirport": -72.666664, + "nameAirport": "San Jose Del Gua", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-4", + "airportId": 7129, + "codeIataAirport": "SJF", + "codeIataCity": "SJF", + "codeIcaoAirport": "", + "codeIso2Country": "VI", + "geonameId": "0", + "latitudeAirport": 18.333332, + "longitudeAirport": -64.75, + "nameAirport": "St John Island", + "nameCountry": "U.S. Virgin Islands", + "phone": "", + "timezone": "America/St_Thomas" + }, + { + "GMT": "-5", + "airportId": 7130, + "codeIataAirport": "SJG", + "codeIataCity": "SJG", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 9.4, + "longitudeAirport": -75.066666, + "nameAirport": "San Pedro Jagua", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 7131, + "codeIataAirport": "SJH", + "codeIataCity": "SJH", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8298826", + "latitudeAirport": 10.766667, + "longitudeAirport": -73.01667, + "nameAirport": "San Juan Del Cesar", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "8", + "airportId": 7132, + "codeIataAirport": "SJI", + "codeIataCity": "SJI", + "codeIcaoAirport": "RPVS", + "codeIso2Country": "PH", + "geonameId": "6300482", + "latitudeAirport": 12.359764, + "longitudeAirport": 121.04569, + "nameAirport": "San Jose", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "1", + "airportId": 7133, + "codeIataAirport": "SJJ", + "codeIataCity": "SJJ", + "codeIcaoAirport": "LQSA", + "codeIso2Country": "BA", + "geonameId": "6299696", + "latitudeAirport": 43.826687, + "longitudeAirport": 18.336065, + "nameAirport": "Sarajevo", + "nameCountry": "Bosnia and Herzegovina", + "phone": "", + "timezone": "Europe/Sarajevo" + }, + { + "GMT": "-3", + "airportId": 7134, + "codeIataAirport": "SJK", + "codeIataCity": "SJK", + "codeIcaoAirport": "SBSJ", + "codeIso2Country": "BR", + "geonameId": "6300669", + "latitudeAirport": -23.183332, + "longitudeAirport": -46.11667, + "nameAirport": "Sao Jose Dos Campos", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-4", + "airportId": 7135, + "codeIataAirport": "SJL", + "codeIataCity": "SJL", + "codeIcaoAirport": "SBUA", + "codeIso2Country": "BR", + "geonameId": "6300680", + "latitudeAirport": -0.148333, + "longitudeAirport": -66.98556, + "nameAirport": "Da Cachoeira", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "-7", + "airportId": 7136, + "codeIataAirport": "SJN", + "codeIataCity": "SJN", + "codeIcaoAirport": "KSJN", + "codeIso2Country": "US", + "geonameId": "5312601", + "latitudeAirport": 34.5, + "longitudeAirport": -109.35, + "nameAirport": "St. Johns Industrial Air Park", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "-6", + "airportId": 7137, + "codeIataAirport": "SJO", + "codeIataCity": "SJO", + "codeIcaoAirport": "MROC", + "codeIso2Country": "CR", + "geonameId": "6299906", + "latitudeAirport": 9.998238, + "longitudeAirport": -84.20408, + "nameAirport": "Juan Santamaría International", + "nameCountry": "Costa Rica", + "phone": "506-2437-2400", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-3", + "airportId": 7138, + "codeIataAirport": "SJP", + "codeIataCity": "SJP", + "codeIcaoAirport": "SBSR", + "codeIso2Country": "BR", + "geonameId": "7668442", + "latitudeAirport": -20.816668, + "longitudeAirport": -49.416668, + "nameAirport": "Sao Jose Do Rio Preto", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "2", + "airportId": 7139, + "codeIataAirport": "SJQ", + "codeIataCity": "SJQ", + "codeIcaoAirport": "FLSS", + "codeIso2Country": "ZM", + "geonameId": "6297028", + "latitudeAirport": -17.483334, + "longitudeAirport": 24.283333, + "nameAirport": "Sesheke", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-5", + "airportId": 7140, + "codeIataAirport": "SJR", + "codeIataCity": "SJR", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8298825", + "latitudeAirport": 8.766667, + "longitudeAirport": -76.53333, + "nameAirport": "San Juan D Ur", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-4", + "airportId": 7141, + "codeIataAirport": "SJS", + "codeIataCity": "SJS", + "codeIcaoAirport": "SLJE", + "codeIso2Country": "BO", + "geonameId": "6300773", + "latitudeAirport": -17.827223, + "longitudeAirport": -60.738335, + "nameAirport": "San Jose", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-6", + "airportId": 7142, + "codeIataAirport": "SJT", + "codeIataCity": "SJT", + "codeIcaoAirport": "KSJT", + "codeIso2Country": "US", + "geonameId": "5530022", + "latitudeAirport": 31.359722, + "longitudeAirport": -100.494446, + "nameAirport": "Mathis Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 7143, + "codeIataAirport": "SJU", + "codeIataCity": "SJU", + "codeIcaoAirport": "TJSJ", + "codeIso2Country": "PR", + "geonameId": "4568127", + "latitudeAirport": 18.437403, + "longitudeAirport": -66.004684, + "nameAirport": "Luis Munoz Marin International", + "nameCountry": "Puerto Rico", + "phone": "787-791-3840", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "-4", + "airportId": 7144, + "codeIataAirport": "SJV", + "codeIataCity": "SJV", + "codeIcaoAirport": "SLJV", + "codeIso2Country": "BO", + "geonameId": "6300775", + "latitudeAirport": -16.233334, + "longitudeAirport": -62.416668, + "nameAirport": "San Javier", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "8", + "airportId": 7145, + "codeIataAirport": "SJW", + "codeIataCity": "SJW", + "codeIcaoAirport": "ZBSJ", + "codeIso2Country": "CN", + "geonameId": "7668791", + "latitudeAirport": 38.274376, + "longitudeAirport": 114.69443, + "nameAirport": "Daguocun", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 7146, + "codeIataAirport": "SJX", + "codeIataCity": "SJX", + "codeIcaoAirport": "", + "codeIso2Country": "BZ", + "geonameId": "0", + "latitudeAirport": 18.3, + "longitudeAirport": -88.333336, + "nameAirport": "Sartaneja", + "nameCountry": "Belize", + "phone": "", + "timezone": "America/Belize" + }, + { + "GMT": "2", + "airportId": 7147, + "codeIataAirport": "SJY", + "codeIataCity": "SJY", + "codeIcaoAirport": "EFIL", + "codeIso2Country": "FI", + "geonameId": "6301512", + "latitudeAirport": 62.6932, + "longitudeAirport": 22.835285, + "nameAirport": "Ilmajoki", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-1", + "airportId": 7148, + "codeIataAirport": "SJZ", + "codeIataCity": "SJZ", + "codeIcaoAirport": "LPSJ", + "codeIso2Country": "PT", + "geonameId": "7668329", + "latitudeAirport": 38.664616, + "longitudeAirport": -28.16843, + "nameAirport": "Sao Jorge Island", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Atlantic/Azores" + }, + { + "GMT": "-8", + "airportId": 7149, + "codeIataAirport": "SKA", + "codeIataCity": "GEG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 47.666668, + "longitudeAirport": -117.4, + "nameAirport": "Fairchild AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "airportId": 7150, + "codeIataAirport": "SKB", + "codeIataCity": "SKB", + "codeIcaoAirport": "TKPK", + "codeIso2Country": "KN", + "geonameId": "3575399", + "latitudeAirport": 17.310843, + "longitudeAirport": -62.71397, + "nameAirport": "Robert L Bradshaw International", + "nameCountry": "Saint Kitts and Nevis", + "phone": "", + "timezone": "America/St_Kitts" + }, + { + "GMT": "10", + "airportId": 7151, + "codeIataAirport": "SKC", + "codeIataCity": "SKC", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731495", + "latitudeAirport": -8.083333, + "longitudeAirport": 141.8, + "nameAirport": "Suki", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5", + "airportId": 7152, + "codeIataAirport": "SKD", + "codeIataCity": "SKD", + "codeIcaoAirport": "UTSS", + "codeIso2Country": "UZ", + "geonameId": "6301011", + "latitudeAirport": 39.696217, + "longitudeAirport": 66.99085, + "nameAirport": "Samarkand", + "nameCountry": "Uzbekistan", + "phone": "", + "timezone": "Asia/Samarkand" + }, + { + "GMT": "1", + "airportId": 7153, + "codeIataAirport": "SKE", + "codeIataCity": "SKE", + "codeIcaoAirport": "ENSN", + "codeIso2Country": "NO", + "geonameId": "6296771", + "latitudeAirport": 59.182777, + "longitudeAirport": 9.5625, + "nameAirport": "Skien", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "airportId": 7154, + "codeIataAirport": "SKF", + "codeIataCity": "SAT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 29.416668, + "longitudeAirport": -98.5, + "nameAirport": "Kelly AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 7155, + "codeIataAirport": "SKG", + "codeIataCity": "SKG", + "codeIcaoAirport": "LGTS", + "codeIso2Country": "GR", + "geonameId": "6299514", + "latitudeAirport": 40.520832, + "longitudeAirport": 22.972221, + "nameAirport": "Macedonia International", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "5.45", + "airportId": 7156, + "codeIataAirport": "SKH", + "codeIataCity": "SKH", + "codeIcaoAirport": "VNSK", + "codeIso2Country": "NP", + "geonameId": "6301115", + "latitudeAirport": 28.333332, + "longitudeAirport": 82.50833, + "nameAirport": "Kadmandu", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-9", + "airportId": 7157, + "codeIataAirport": "SKK", + "codeIataCity": "SKK", + "codeIcaoAirport": "PFSH", + "codeIso2Country": "US", + "geonameId": "5873816", + "latitudeAirport": 64.324165, + "longitudeAirport": -161.13889, + "nameAirport": "Shaktoolik", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 7158, + "codeIataAirport": "SKL", + "codeIataCity": "SKL", + "codeIcaoAirport": "EGEI", + "codeIso2Country": "GB", + "geonameId": "7731496", + "latitudeAirport": 57.333332, + "longitudeAirport": -6.25, + "nameAirport": "Broadford", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-4", + "airportId": 7159, + "codeIataAirport": "SKM", + "codeIataCity": "SKM", + "codeIcaoAirport": "", + "codeIso2Country": "GY", + "geonameId": "3375941", + "latitudeAirport": 5.877778, + "longitudeAirport": -57.175, + "nameAirport": "Skeldon", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "1", + "airportId": 7160, + "codeIataAirport": "SKN", + "codeIataCity": "SKN", + "codeIcaoAirport": "ENSK", + "codeIso2Country": "NO", + "geonameId": "6296770", + "latitudeAirport": 68.57915, + "longitudeAirport": 15.032921, + "nameAirport": "Skagen", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 7161, + "codeIataAirport": "SKO", + "codeIataCity": "SKO", + "codeIcaoAirport": "DNSO", + "codeIso2Country": "NG", + "geonameId": "2322911", + "latitudeAirport": 13.006389, + "longitudeAirport": 5.242222, + "nameAirport": "Sokoto", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "1", + "airportId": 7162, + "codeIataAirport": "SKP", + "codeIataCity": "SKP", + "codeIcaoAirport": "LWSK", + "codeIso2Country": "MK", + "geonameId": "6299778", + "latitudeAirport": 41.95649, + "longitudeAirport": 21.62872, + "nameAirport": "Alexander The Great Airport", + "nameCountry": "Macedonia", + "phone": "", + "timezone": "Europe/Skopje" + }, + { + "GMT": "2", + "airportId": 7163, + "codeIataAirport": "SKQ", + "codeIataCity": "SKQ", + "codeIcaoAirport": "FXSK", + "codeIso2Country": "LS", + "geonameId": "7730544", + "latitudeAirport": -29.65, + "longitudeAirport": 28.166668, + "nameAirport": "Sekakes", + "nameCountry": "Lesotho", + "phone": "", + "timezone": "Africa/Maseru" + }, + { + "GMT": "3", + "airportId": 7164, + "codeIataAirport": "SKR", + "codeIataCity": "SKR", + "codeIcaoAirport": "", + "codeIso2Country": "ET", + "geonameId": "8260977", + "latitudeAirport": 5.883333, + "longitudeAirport": 38.966667, + "nameAirport": "Shakiso", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "1", + "airportId": 7165, + "codeIataAirport": "SKS", + "codeIataCity": "SKS", + "codeIcaoAirport": "EKSP", + "codeIso2Country": "DK", + "geonameId": "6296711", + "latitudeAirport": 55.221943, + "longitudeAirport": 9.264722, + "nameAirport": "Vojens", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "5", + "airportId": 7166, + "codeIataAirport": "SKT", + "codeIataCity": "SKT", + "codeIcaoAirport": "OPST", + "codeIso2Country": "PK", + "geonameId": "7668408", + "latitudeAirport": 32.533333, + "longitudeAirport": 74.5, + "nameAirport": "Sialkot International", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "2", + "airportId": 7167, + "codeIataAirport": "SKU", + "codeIataCity": "SKU", + "codeIcaoAirport": "LGSY", + "codeIso2Country": "GR", + "geonameId": "7668317", + "latitudeAirport": 38.916668, + "longitudeAirport": 24.566668, + "nameAirport": "Skiros", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "2", + "airportId": 7168, + "codeIataAirport": "SKV", + "codeIataCity": "SKV", + "codeIcaoAirport": "", + "codeIso2Country": "EG", + "geonameId": "0", + "latitudeAirport": 28.5, + "longitudeAirport": 33.95, + "nameAirport": "Mount Sinai", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-9", + "airportId": 7169, + "codeIataAirport": "SKW", + "codeIataCity": "SKW", + "codeIcaoAirport": "PASW", + "codeIso2Country": "US", + "geonameId": "5874435", + "latitudeAirport": 61.96583, + "longitudeAirport": -151.18861, + "nameAirport": "Intermediate", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "airportId": 7170, + "codeIataAirport": "SKX", + "codeIataCity": "SKX", + "codeIcaoAirport": "UWPS", + "codeIso2Country": "RU", + "geonameId": "7730207", + "latitudeAirport": 54.166668, + "longitudeAirport": 45.166668, + "nameAirport": "Saransk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "5", + "airportId": 7171, + "codeIataAirport": "SKZ", + "codeIataCity": "SKZ", + "codeIcaoAirport": "OPSK", + "codeIso2Country": "PK", + "geonameId": "6300122", + "latitudeAirport": 27.72336, + "longitudeAirport": 68.7958, + "nameAirport": "Sukkur", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-3", + "airportId": 7172, + "codeIataAirport": "SLA", + "codeIataCity": "SLA", + "codeIcaoAirport": "SASA", + "codeIso2Country": "AR", + "geonameId": "6300554", + "latitudeAirport": -24.844217, + "longitudeAirport": -65.47849, + "nameAirport": "Gen Belgrano", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-6", + "airportId": 7173, + "codeIataAirport": "SLB", + "codeIataCity": "SLB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4877655", + "latitudeAirport": 42.63333, + "longitudeAirport": -95.2, + "nameAirport": "Storm Lake Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 7174, + "codeIataAirport": "SLC", + "codeIataCity": "SLC", + "codeIcaoAirport": "KSLC", + "codeIso2Country": "US", + "geonameId": "5780999", + "latitudeAirport": 40.785645, + "longitudeAirport": -111.980675, + "nameAirport": "Salt Lake City International", + "nameCountry": "United States", + "phone": "801-575-2400", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 7175, + "codeIataAirport": "SLD", + "codeIataCity": "SLD", + "codeIcaoAirport": "LZSL", + "codeIso2Country": "SK", + "geonameId": "6301802", + "latitudeAirport": 48.63333, + "longitudeAirport": 19.133333, + "nameAirport": "Sliac", + "nameCountry": "Slovakia", + "phone": "", + "timezone": "Europe/Bratislava" + }, + { + "GMT": "-8", + "airportId": 7176, + "codeIataAirport": "SLE", + "codeIataCity": "SLE", + "codeIcaoAirport": "KSLE", + "codeIso2Country": "US", + "geonameId": "5739962", + "latitudeAirport": 44.995277, + "longitudeAirport": -123.025, + "nameAirport": "Mcnary Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "airportId": 7177, + "codeIataAirport": "SLF", + "codeIataCity": "SLF", + "codeIcaoAirport": "OESL", + "codeIso2Country": "SA", + "geonameId": "7730741", + "latitudeAirport": 20.466667, + "longitudeAirport": 45.61667, + "nameAirport": "Sulayel", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-6", + "airportId": 7178, + "codeIataAirport": "SLG", + "codeIataCity": "SLG", + "codeIcaoAirport": "KSLG", + "codeIso2Country": "US", + "geonameId": "4131462", + "latitudeAirport": 36.183334, + "longitudeAirport": -94.53333, + "nameAirport": "Smith Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "11", + "airportId": 7179, + "codeIataAirport": "SLH", + "codeIataCity": "SLH", + "codeIcaoAirport": "NVSC", + "codeIso2Country": "VU", + "geonameId": "6299969", + "latitudeAirport": -13.883333, + "longitudeAirport": 167.55, + "nameAirport": "Sola", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "2", + "airportId": 7180, + "codeIataAirport": "SLI", + "codeIataCity": "SLI", + "codeIcaoAirport": "FLSW", + "codeIso2Country": "ZM", + "geonameId": "6297029", + "latitudeAirport": -12.172222, + "longitudeAirport": 26.366667, + "nameAirport": "Solwezi", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "8", + "airportId": 7181, + "codeIataAirport": "SLJ", + "codeIataCity": "SLJ", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "5315824", + "latitudeAirport": 33.29889, + "longitudeAirport": -111.91556, + "nameAirport": "Stellar Air Park", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "airportId": 7182, + "codeIataAirport": "SLK", + "codeIataCity": "SLK", + "codeIcaoAirport": "KSLK", + "codeIso2Country": "US", + "geonameId": "5136322", + "latitudeAirport": 44.38278, + "longitudeAirport": -74.206665, + "nameAirport": "Adirondack", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "4", + "airportId": 7183, + "codeIataAirport": "SLL", + "codeIataCity": "SLL", + "codeIcaoAirport": "OOSA", + "codeIso2Country": "OM", + "geonameId": "6300104", + "latitudeAirport": 17.038124, + "longitudeAirport": 54.106937, + "nameAirport": "Salalah", + "nameCountry": "Oman", + "phone": "", + "timezone": "Asia/Muscat" + }, + { + "GMT": "1", + "airportId": 7184, + "codeIataAirport": "SLM", + "codeIataCity": "SLM", + "codeIcaoAirport": "LESA", + "codeIso2Country": "ES", + "geonameId": "6299354", + "latitudeAirport": 40.966667, + "longitudeAirport": -5.65, + "nameAirport": "Matacan", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-6", + "airportId": 7185, + "codeIataAirport": "SLN", + "codeIataCity": "SLN", + "codeIcaoAirport": "KSLN", + "codeIso2Country": "US", + "geonameId": "4278893", + "latitudeAirport": 38.790833, + "longitudeAirport": -97.6525, + "nameAirport": "Salina", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 7186, + "codeIataAirport": "SLO", + "codeIataCity": "SLO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.63333, + "longitudeAirport": -88.95, + "nameAirport": "Leckrone", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 7187, + "codeIataAirport": "SLP", + "codeIataCity": "SLP", + "codeIcaoAirport": "MMSP", + "codeIso2Country": "MX", + "geonameId": "6299872", + "latitudeAirport": 22.255466, + "longitudeAirport": -100.936806, + "nameAirport": "San Luis Potosi", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-9", + "airportId": 7188, + "codeIataAirport": "SLQ", + "codeIataCity": "SLQ", + "codeIcaoAirport": "PASL", + "codeIso2Country": "US", + "geonameId": "5874508", + "latitudeAirport": 61.705, + "longitudeAirport": -157.16667, + "nameAirport": "Sleetmute", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 7189, + "codeIataAirport": "SLR", + "codeIataCity": "SLR", + "codeIcaoAirport": "KSLR", + "codeIso2Country": "US", + "geonameId": "4734925", + "latitudeAirport": 33.13333, + "longitudeAirport": -95.6, + "nameAirport": "Sulphur Springs", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 7190, + "codeIataAirport": "SLS", + "codeIataCity": "SLS", + "codeIcaoAirport": "LBSS", + "codeIso2Country": "BG", + "geonameId": "7730627", + "latitudeAirport": 44.05639, + "longitudeAirport": 27.180555, + "nameAirport": "Silistra", + "nameCountry": "Bulgaria", + "phone": "", + "timezone": "Europe/Sofia" + }, + { + "GMT": "-7", + "airportId": 7191, + "codeIataAirport": "SLT", + "codeIataCity": "SLT", + "codeIcaoAirport": "KANK", + "codeIso2Country": "US", + "geonameId": "5437555", + "latitudeAirport": 38.533333, + "longitudeAirport": -106.0, + "nameAirport": "Salida", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-4", + "airportId": 7192, + "codeIataAirport": "SLU", + "codeIataCity": "SLU", + "codeIcaoAirport": "TLPC", + "codeIso2Country": "LC", + "geonameId": "3576407", + "latitudeAirport": 14.020417, + "longitudeAirport": -60.99441, + "nameAirport": "George F L Charles", + "nameCountry": "Saint Lucia", + "phone": "", + "timezone": "America/St_Lucia" + }, + { + "GMT": "5.30", + "airportId": 7193, + "codeIataAirport": "SLV", + "codeIataCity": "SLV", + "codeIcaoAirport": "VISM", + "codeIso2Country": "IN", + "geonameId": "7668608", + "latitudeAirport": 31.116667, + "longitudeAirport": 77.15, + "nameAirport": "Simla", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-6", + "airportId": 7194, + "codeIataAirport": "SLW", + "codeIataCity": "SLW", + "codeIcaoAirport": "MMIO", + "codeIso2Country": "MX", + "geonameId": "6299847", + "latitudeAirport": 25.55, + "longitudeAirport": -100.916664, + "nameAirport": "Saltillo", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Monterrey" + }, + { + "GMT": "-4", + "airportId": 7195, + "codeIataAirport": "SLX", + "codeIataCity": "SLX", + "codeIcaoAirport": "MBSY", + "codeIso2Country": "TC", + "geonameId": "7730649", + "latitudeAirport": 21.333332, + "longitudeAirport": -71.20167, + "nameAirport": "Salt Cay", + "nameCountry": "Turks and Caicos Islands", + "phone": "", + "timezone": "America/Grand_Turk" + }, + { + "GMT": "5", + "airportId": 7196, + "codeIataAirport": "SLY", + "codeIataCity": "SLY", + "codeIcaoAirport": "USDD", + "codeIso2Country": "RU", + "geonameId": "7730194", + "latitudeAirport": 66.583336, + "longitudeAirport": 66.6, + "nameAirport": "Salekhard", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-3", + "airportId": 7197, + "codeIataAirport": "SLZ", + "codeIataCity": "SLZ", + "codeIcaoAirport": "SBSL", + "codeIso2Country": "BR", + "geonameId": "6300670", + "latitudeAirport": -2.583316, + "longitudeAirport": -44.236683, + "nameAirport": "Marechal Cunha Machado", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-1", + "airportId": 7198, + "codeIataAirport": "SMA", + "codeIataCity": "SMA", + "codeIcaoAirport": "LPAZ", + "codeIso2Country": "PT", + "geonameId": "6301790", + "latitudeAirport": 36.966667, + "longitudeAirport": -25.1, + "nameAirport": "Vila Do Porto", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Atlantic/Azores" + }, + { + "GMT": "-4", + "airportId": 7199, + "codeIataAirport": "SMB", + "codeIataCity": "SMB", + "codeIcaoAirport": "", + "codeIso2Country": "CL", + "geonameId": "3895827", + "latitudeAirport": -52.738335, + "longitudeAirport": -69.34278, + "nameAirport": "Cerro Sombrero", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-5", + "airportId": 7200, + "codeIataAirport": "SMC", + "codeIataCity": "SMC", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8298934", + "latitudeAirport": 8.166667, + "longitudeAirport": -77.05, + "nameAirport": "Santa Maria", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 7201, + "codeIataAirport": "SMD", + "codeIataCity": "FWA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.066666, + "longitudeAirport": -85.15, + "nameAirport": "Smith Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-5", + "airportId": 7202, + "codeIataAirport": "SME", + "codeIataCity": "SME", + "codeIcaoAirport": "KSME", + "codeIso2Country": "US", + "geonameId": "4308928", + "latitudeAirport": 37.083332, + "longitudeAirport": -84.6, + "nameAirport": "Pulaski County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "airportId": 7203, + "codeIataAirport": "SMF", + "codeIataCity": "SAC", + "codeIcaoAirport": "KSMF", + "codeIso2Country": "US", + "geonameId": "5389570", + "latitudeAirport": 38.692284, + "longitudeAirport": -121.5937, + "nameAirport": "Sacramento International", + "nameCountry": "United States", + "phone": "916-929-5411", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 7204, + "codeIataAirport": "SMG", + "codeIataCity": "SMG", + "codeIcaoAirport": "SPMR", + "codeIso2Country": "PE", + "geonameId": "7731497", + "latitudeAirport": -12.5, + "longitudeAirport": -72.0, + "nameAirport": "Santa Maria", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "10", + "airportId": 7205, + "codeIataAirport": "SMH", + "codeIataCity": "SMH", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298894", + "latitudeAirport": -6.083333, + "longitudeAirport": 146.75, + "nameAirport": "Sapmanga", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "airportId": 7206, + "codeIataAirport": "SMI", + "codeIataCity": "SMI", + "codeIcaoAirport": "LGSM", + "codeIso2Country": "GR", + "geonameId": "6299509", + "latitudeAirport": 37.69145, + "longitudeAirport": 26.914417, + "nameAirport": "Samos", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "10", + "airportId": 7207, + "codeIataAirport": "SMJ", + "codeIataCity": "SMJ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260773", + "latitudeAirport": -7.566667, + "longitudeAirport": 146.98334, + "nameAirport": "Sim", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 7208, + "codeIataAirport": "SMK", + "codeIataCity": "SMK", + "codeIcaoAirport": "PAMK", + "codeIso2Country": "US", + "geonameId": "5873201", + "latitudeAirport": 63.484295, + "longitudeAirport": -162.11182, + "nameAirport": "St Michael", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 7209, + "codeIataAirport": "SML", + "codeIataCity": "SML", + "codeIcaoAirport": "MYLS", + "codeIso2Country": "BS", + "geonameId": "3571358", + "latitudeAirport": 23.583332, + "longitudeAirport": -75.26806, + "nameAirport": "Estate Airstrip", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "8", + "airportId": 7210, + "codeIataAirport": "SMM", + "codeIataCity": "SMM", + "codeIcaoAirport": "WBKA", + "codeIso2Country": "MY", + "geonameId": "7731498", + "latitudeAirport": 4.416667, + "longitudeAirport": 118.833336, + "nameAirport": "Semporna", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-7", + "airportId": 7211, + "codeIataAirport": "SMN", + "codeIataCity": "SMN", + "codeIcaoAirport": "KSMN", + "codeIso2Country": "US", + "geonameId": "5606275", + "latitudeAirport": 45.183334, + "longitudeAirport": -113.916664, + "nameAirport": "Salmon", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Boise" + }, + { + "GMT": "-8", + "airportId": 7212, + "codeIataAirport": "SMO", + "codeIataCity": "SMO", + "codeIcaoAirport": "KSMO", + "codeIso2Country": "US", + "geonameId": "5393233", + "latitudeAirport": 34.016666, + "longitudeAirport": -118.5, + "nameAirport": "Santa Monica", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 7213, + "codeIataAirport": "SMP", + "codeIataCity": "SMP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7910450", + "latitudeAirport": -4.566667, + "longitudeAirport": 151.96666, + "nameAirport": "Stockholm", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "7", + "airportId": 7214, + "codeIataAirport": "SMQ", + "codeIataCity": "SMQ", + "codeIcaoAirport": "WAOS", + "codeIso2Country": "ID", + "geonameId": "7731499", + "latitudeAirport": -3.083333, + "longitudeAirport": 113.05, + "nameAirport": "Sampit", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Pontianak" + }, + { + "GMT": "-5", + "airportId": 7215, + "codeIataAirport": "SMR", + "codeIataCity": "SMR", + "codeIcaoAirport": "SKSM", + "codeIso2Country": "CO", + "geonameId": "6300758", + "latitudeAirport": 11.117132, + "longitudeAirport": -74.232704, + "nameAirport": "Simon Bolivar", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "airportId": 7216, + "codeIataAirport": "SMS", + "codeIataCity": "SMS", + "codeIcaoAirport": "FMMS", + "codeIso2Country": "MG", + "geonameId": "6297040", + "latitudeAirport": -17.083332, + "longitudeAirport": 49.816666, + "nameAirport": "Sainte Marie", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "8", + "airportId": 7217, + "codeIataAirport": "SMT", + "codeIataCity": "SMT", + "codeIcaoAirport": "", + "codeIso2Country": "TW", + "geonameId": "0", + "latitudeAirport": 23.883333, + "longitudeAirport": 120.933334, + "nameAirport": "Sun Moon Lake", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "-9", + "airportId": 7218, + "codeIataAirport": "SMU", + "codeIataCity": "SMU", + "codeIcaoAirport": "PASP", + "codeIso2Country": "US", + "geonameId": "5873923", + "latitudeAirport": 61.8, + "longitudeAirport": -147.66667, + "nameAirport": "Sheep Mountain", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 7219, + "codeIataAirport": "SMV", + "codeIataCity": "SMV", + "codeIcaoAirport": "LSZS", + "codeIso2Country": "CH", + "geonameId": "7668330", + "latitudeAirport": 46.53472, + "longitudeAirport": 9.885556, + "nameAirport": "Samedan", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "0", + "airportId": 7220, + "codeIataAirport": "SMW", + "codeIataCity": "SMW", + "codeIcaoAirport": "GMMA", + "codeIso2Country": "MA", + "geonameId": "7668281", + "latitudeAirport": 26.733334, + "longitudeAirport": -11.683333, + "nameAirport": "Smara", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "-8", + "airportId": 7221, + "codeIataAirport": "SMX", + "codeIataCity": "SMX", + "codeIcaoAirport": "KSMX", + "codeIso2Country": "US", + "geonameId": "5393181", + "latitudeAirport": 34.905, + "longitudeAirport": -120.45778, + "nameAirport": "Public", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "0", + "airportId": 7222, + "codeIataAirport": "SMY", + "codeIataCity": "SMY", + "codeIcaoAirport": "", + "codeIso2Country": "SN", + "geonameId": "2245546", + "latitudeAirport": 13.166667, + "longitudeAirport": -13.166667, + "nameAirport": "Simenti", + "nameCountry": "Senegal", + "phone": "", + "timezone": "Africa/Dakar" + }, + { + "GMT": "-3", + "airportId": 7223, + "codeIataAirport": "SMZ", + "codeIataCity": "SMZ", + "codeIcaoAirport": "", + "codeIso2Country": "SR", + "geonameId": "0", + "latitudeAirport": 4.343056, + "longitudeAirport": -54.4, + "nameAirport": "Stoelmans Eiland", + "nameCountry": "Suriname", + "phone": "", + "timezone": "America/Paramaribo" + }, + { + "GMT": "-8", + "airportId": 7224, + "codeIataAirport": "SNA", + "codeIataCity": "SNA", + "codeIcaoAirport": "KSNA", + "codeIso2Country": "US", + "geonameId": "5392900", + "latitudeAirport": 33.680202, + "longitudeAirport": -117.860535, + "nameAirport": "John Wayne", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "airportId": 7225, + "codeIataAirport": "SNB", + "codeIataCity": "SNB", + "codeIcaoAirport": "YSNB", + "codeIso2Country": "AU", + "geonameId": "7668770", + "latitudeAirport": -11.416667, + "longitudeAirport": 130.66667, + "nameAirport": "Snake Bay", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-5", + "airportId": 7226, + "codeIataAirport": "SNC", + "codeIataCity": "SNC", + "codeIcaoAirport": "SESA", + "codeIso2Country": "EC", + "geonameId": "6300722", + "latitudeAirport": -2.2, + "longitudeAirport": -80.98333, + "nameAirport": "Salinas", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "7", + "airportId": 7227, + "codeIataAirport": "SND", + "codeIataCity": "SND", + "codeIcaoAirport": "", + "codeIso2Country": "LA", + "geonameId": "0", + "latitudeAirport": 16.666668, + "longitudeAirport": 105.01667, + "nameAirport": "Seno", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-1", + "airportId": 7228, + "codeIataAirport": "SNE", + "codeIataCity": "SNE", + "codeIcaoAirport": "GVSN", + "codeIso2Country": "CV", + "geonameId": "7668293", + "latitudeAirport": 16.586945, + "longitudeAirport": -24.28861, + "nameAirport": "Preguica", + "nameCountry": "Cape Verde", + "phone": "", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "-4", + "airportId": 7229, + "codeIataAirport": "SNF", + "codeIataCity": "SNF", + "codeIcaoAirport": "SVSP", + "codeIso2Country": "VE", + "geonameId": "6300871", + "latitudeAirport": 10.280278, + "longitudeAirport": -68.75389, + "nameAirport": "San Felipe", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-4", + "airportId": 7230, + "codeIataAirport": "SNG", + "codeIataCity": "SNG", + "codeIcaoAirport": "SLSI", + "codeIso2Country": "BO", + "geonameId": "6300787", + "latitudeAirport": -16.383057, + "longitudeAirport": -60.97639, + "nameAirport": "San Ignacio De Velasco", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "10", + "airportId": 7231, + "codeIataAirport": "SNH", + "codeIataCity": "SNH", + "codeIcaoAirport": "YSPE", + "codeIso2Country": "AU", + "geonameId": "7731500", + "latitudeAirport": -28.65, + "longitudeAirport": 151.95, + "nameAirport": "Stanthorpe", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "0", + "airportId": 7232, + "codeIataAirport": "SNI", + "codeIataCity": "SNI", + "codeIcaoAirport": "", + "codeIso2Country": "LR", + "geonameId": "2276600", + "latitudeAirport": 5.033056, + "longitudeAirport": -9.063611, + "nameAirport": "R.E. Murray", + "nameCountry": "Liberia", + "phone": "", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-5", + "airportId": 7233, + "codeIataAirport": "SNJ", + "codeIataCity": "SNJ", + "codeIcaoAirport": "", + "codeIso2Country": "CU", + "geonameId": "0", + "latitudeAirport": 22.083332, + "longitudeAirport": -84.15, + "nameAirport": "San Julian", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "-6", + "airportId": 7234, + "codeIataAirport": "SNK", + "codeIataCity": "SNK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.716667, + "longitudeAirport": -100.9, + "nameAirport": "Winston Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 7235, + "codeIataAirport": "SNL", + "codeIataCity": "SNL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 35.333332, + "longitudeAirport": -96.916664, + "nameAirport": "Shawnee Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 7236, + "codeIataAirport": "SNM", + "codeIataCity": "SNM", + "codeIcaoAirport": "SLSM", + "codeIso2Country": "BO", + "geonameId": "6300788", + "latitudeAirport": -14.966389, + "longitudeAirport": -65.63556, + "nameAirport": "San Ignacio De M", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "0", + "airportId": 7237, + "codeIataAirport": "SNN", + "codeIataCity": "SNN", + "codeIcaoAirport": "EINN", + "codeIso2Country": "IE", + "geonameId": "6296700", + "latitudeAirport": 52.69248, + "longitudeAirport": -8.92039, + "nameAirport": "Shannon", + "nameCountry": "Ireland", + "phone": "", + "timezone": "Europe/Dublin" + }, + { + "GMT": "7", + "airportId": 7238, + "codeIataAirport": "SNO", + "codeIataCity": "SNO", + "codeIcaoAirport": "VTUI", + "codeIso2Country": "TH", + "geonameId": "1606790", + "latitudeAirport": 17.283333, + "longitudeAirport": 104.1, + "nameAirport": "Sakon Nakhon", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-9", + "airportId": 7239, + "codeIataAirport": "SNP", + "codeIataCity": "SNP", + "codeIcaoAirport": "PASN", + "codeIso2Country": "US", + "geonameId": "5873215", + "latitudeAirport": 57.15222, + "longitudeAirport": -170.21722, + "nameAirport": "Saint Paul Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "airportId": 7240, + "codeIataAirport": "SNQ", + "codeIataCity": "SNQ", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "3971310", + "latitudeAirport": 30.5, + "longitudeAirport": -116.0, + "nameAirport": "San Quintin", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Santa_Isabel" + }, + { + "GMT": "1", + "airportId": 7241, + "codeIataAirport": "SNR", + "codeIataCity": "SNR", + "codeIcaoAirport": "LFRZ", + "codeIso2Country": "FR", + "geonameId": "6299464", + "latitudeAirport": 47.29111, + "longitudeAirport": -2.182222, + "nameAirport": "Montoir", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-8", + "airportId": 7242, + "codeIataAirport": "SNS", + "codeIataCity": "SNS", + "codeIcaoAirport": "KSNS", + "codeIso2Country": "US", + "geonameId": "5391310", + "latitudeAirport": 36.666668, + "longitudeAirport": -121.65, + "nameAirport": "Salinas", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 7243, + "codeIataAirport": "SNT", + "codeIataCity": "SNT", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 7.666667, + "longitudeAirport": -73.0, + "nameAirport": "Sabana De Torres", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 7244, + "codeIataAirport": "SNU", + "codeIataCity": "SNU", + "codeIcaoAirport": "MUSC", + "codeIso2Country": "CU", + "geonameId": "0", + "latitudeAirport": 22.491943, + "longitudeAirport": -79.94194, + "nameAirport": "Abel Santa Maria", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "-4", + "airportId": 7245, + "codeIataAirport": "SNV", + "codeIataCity": "SNV", + "codeIcaoAirport": "", + "codeIso2Country": "VE", + "geonameId": "6300869", + "latitudeAirport": 4.55, + "longitudeAirport": -61.11667, + "nameAirport": "Santa Elena", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "6.30", + "airportId": 7246, + "codeIataAirport": "SNW", + "codeIataCity": "SNW", + "codeIcaoAirport": "VYTD", + "codeIso2Country": "MM", + "geonameId": "7910206", + "latitudeAirport": 18.453876, + "longitudeAirport": 94.30038, + "nameAirport": "Thandwe", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-4", + "airportId": 7247, + "codeIataAirport": "SNX", + "codeIataCity": "SNX", + "codeIcaoAirport": "", + "codeIso2Country": "DO", + "geonameId": "0", + "latitudeAirport": 19.116667, + "longitudeAirport": -69.4, + "nameAirport": "Sabana De Mar", + "nameCountry": "Dominican Republic", + "phone": "", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "-7", + "airportId": 7248, + "codeIataAirport": "SNY", + "codeIataCity": "SNY", + "codeIcaoAirport": "KSNY", + "codeIso2Country": "US", + "geonameId": "5699564", + "latitudeAirport": 41.099445, + "longitudeAirport": -102.9825, + "nameAirport": "Sidney", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-3", + "airportId": 7249, + "codeIataAirport": "SNZ", + "codeIataCity": "SNZ", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8298767", + "latitudeAirport": -6.216667, + "longitudeAirport": -36.016666, + "nameAirport": "Santa Cruz", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "7", + "airportId": 7250, + "codeIataAirport": "SOA", + "codeIataCity": "SOA", + "codeIcaoAirport": "", + "codeIso2Country": "VN", + "geonameId": "8298708", + "latitudeAirport": 9.616667, + "longitudeAirport": 105.833336, + "nameAirport": "Soc Trang", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "1", + "airportId": 7251, + "codeIataAirport": "SOB", + "codeIataCity": "SOB", + "codeIcaoAirport": "LHSM", + "codeIso2Country": "HU", + "geonameId": "7730097", + "latitudeAirport": 46.71347, + "longitudeAirport": 17.240444, + "nameAirport": "Sármellék/Balaton", + "nameCountry": "Hungary", + "phone": "", + "timezone": "Europe/Budapest" + }, + { + "GMT": "7", + "airportId": 7252, + "codeIataAirport": "SOC", + "codeIataCity": "SOC", + "codeIcaoAirport": "WRSQ", + "codeIso2Country": "ID", + "geonameId": "6301286", + "latitudeAirport": -7.51583, + "longitudeAirport": 110.75667, + "nameAirport": "Adi Sumarmo", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-3", + "airportId": 7253, + "codeIataAirport": "SOD", + "codeIataCity": "SOD", + "codeIcaoAirport": "SDCO", + "codeIso2Country": "BR", + "geonameId": "7534511", + "latitudeAirport": -23.483334, + "longitudeAirport": -47.45, + "nameAirport": "Sorocaba", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 7254, + "codeIataAirport": "SOE", + "codeIataCity": "SOE", + "codeIcaoAirport": "FCOS", + "codeIso2Country": "CG", + "geonameId": "6296963", + "latitudeAirport": 2.0, + "longitudeAirport": 14.166667, + "nameAirport": "Souanke", + "nameCountry": "Republic of the Congo", + "phone": "", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "2", + "airportId": 7255, + "codeIataAirport": "SOF", + "codeIataCity": "SOF", + "codeIcaoAirport": "LBSF", + "codeIso2Country": "BG", + "geonameId": "6299309", + "latitudeAirport": 42.688343, + "longitudeAirport": 23.41443, + "nameAirport": "Sofia", + "nameCountry": "Bulgaria", + "phone": "", + "timezone": "Europe/Sofia" + }, + { + "GMT": "1", + "airportId": 7256, + "codeIataAirport": "SOG", + "codeIataCity": "SOG", + "codeIcaoAirport": "ENSG", + "codeIso2Country": "NO", + "geonameId": "7288345", + "latitudeAirport": 61.158127, + "longitudeAirport": 7.136988, + "nameAirport": "Haukasen", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "airportId": 7257, + "codeIataAirport": "SOH", + "codeIataCity": "SOH", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "6792004", + "latitudeAirport": 9.2, + "longitudeAirport": -71.76667, + "nameAirport": "Solita", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "airportId": 7258, + "codeIataAirport": "SOI", + "codeIataCity": "SOI", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -20.75, + "longitudeAirport": 148.58333, + "nameAirport": "South Molle Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "airportId": 7259, + "codeIataAirport": "SOJ", + "codeIataCity": "SOJ", + "codeIcaoAirport": "ENSR", + "codeIso2Country": "NO", + "geonameId": "6296773", + "latitudeAirport": 69.78333, + "longitudeAirport": 20.933332, + "nameAirport": "Sorkjosen", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "2", + "airportId": 7260, + "codeIataAirport": "SOK", + "codeIataCity": "SOK", + "codeIcaoAirport": "FXSM", + "codeIso2Country": "LS", + "geonameId": "7730545", + "latitudeAirport": -29.833332, + "longitudeAirport": 28.5, + "nameAirport": "Semongkong", + "nameCountry": "Lesotho", + "phone": "", + "timezone": "Africa/Maseru" + }, + { + "GMT": "-9", + "airportId": 7261, + "codeIataAirport": "SOL", + "codeIataCity": "SOL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299194", + "latitudeAirport": 64.56084, + "longitudeAirport": -164.44028, + "nameAirport": "Solomon", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "airportId": 7262, + "codeIataAirport": "SOM", + "codeIataCity": "SOM", + "codeIcaoAirport": "SVST", + "codeIso2Country": "VE", + "geonameId": "6300873", + "latitudeAirport": 8.949167, + "longitudeAirport": -64.145836, + "nameAirport": "Edmundo Barrios", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "11", + "airportId": 7263, + "codeIataAirport": "SON", + "codeIataCity": "SON", + "codeIcaoAirport": "NVSS", + "codeIso2Country": "VU", + "geonameId": "6299971", + "latitudeAirport": -15.508251, + "longitudeAirport": 167.21873, + "nameAirport": "Pekoa", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "1", + "airportId": 7264, + "codeIataAirport": "SOO", + "codeIataCity": "SOO", + "codeIcaoAirport": "ESCL", + "codeIso2Country": "SE", + "geonameId": "6301534", + "latitudeAirport": 61.3, + "longitudeAirport": 17.05, + "nameAirport": "Soderhamn", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "airportId": 7265, + "codeIataAirport": "SOP", + "codeIataCity": "SOP", + "codeIcaoAirport": "KSOP", + "codeIso2Country": "US", + "geonameId": "4480054", + "latitudeAirport": 35.23761, + "longitudeAirport": -79.388794, + "nameAirport": "Pinehurst-S. Pines", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "airportId": 7266, + "codeIataAirport": "SOQ", + "codeIataCity": "SOQ", + "codeIcaoAirport": "WASS", + "codeIso2Country": "ID", + "geonameId": "0", + "latitudeAirport": -0.890214, + "longitudeAirport": 131.29059, + "nameAirport": "Jefman", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "2", + "airportId": 7267, + "codeIataAirport": "SOR", + "codeIataCity": "SOR", + "codeIcaoAirport": "", + "codeIso2Country": "SY", + "geonameId": "8260964", + "latitudeAirport": 34.4, + "longitudeAirport": 40.166668, + "nameAirport": "Al Thaurah", + "nameCountry": "Syria", + "phone": "", + "timezone": "Asia/Damascus" + }, + { + "GMT": "2", + "airportId": 7268, + "codeIataAirport": "SOT", + "codeIataCity": "SOT", + "codeIcaoAirport": "EFSO", + "codeIso2Country": "FI", + "geonameId": "6296561", + "latitudeAirport": 67.38333, + "longitudeAirport": 26.616667, + "nameAirport": "Sodankyla", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "0", + "airportId": 7269, + "codeIataAirport": "SOU", + "codeIataCity": "SOU", + "codeIcaoAirport": "EGHI", + "codeIso2Country": "GB", + "geonameId": "6296592", + "latitudeAirport": 50.950726, + "longitudeAirport": -1.361318, + "nameAirport": "Southampton Airport", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-9", + "airportId": 7270, + "codeIataAirport": "SOV", + "codeIataCity": "SOV", + "codeIcaoAirport": "PASO", + "codeIso2Country": "US", + "geonameId": "5873668", + "latitudeAirport": 59.4425, + "longitudeAirport": -151.70416, + "nameAirport": "Seldovia", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "airportId": 7271, + "codeIataAirport": "SOW", + "codeIataCity": "SOW", + "codeIcaoAirport": "KSOW", + "codeIso2Country": "US", + "geonameId": "5314254", + "latitudeAirport": 34.264442, + "longitudeAirport": -110.004166, + "nameAirport": "Show Low", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "-5", + "airportId": 7272, + "codeIataAirport": "SOX", + "codeIataCity": "SOX", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "3667873", + "latitudeAirport": 5.716667, + "longitudeAirport": -72.933334, + "nameAirport": "Alberto Lleras Camargo", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "0", + "airportId": 7273, + "codeIataAirport": "SOY", + "codeIataCity": "SOY", + "codeIcaoAirport": "EGER", + "codeIso2Country": "GB", + "geonameId": "7670897", + "latitudeAirport": 59.154053, + "longitudeAirport": -2.640495, + "nameAirport": "Stronsay", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 7274, + "codeIataAirport": "SOZ", + "codeIataCity": "SOZ", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "2974366", + "latitudeAirport": 41.88333, + "longitudeAirport": 9.383333, + "nameAirport": "Solenzara", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 7275, + "codeIataAirport": "SPA", + "codeIataCity": "SPA", + "codeIcaoAirport": "KSPA", + "codeIso2Country": "US", + "geonameId": "4597209", + "latitudeAirport": 34.95, + "longitudeAirport": -81.916664, + "nameAirport": "Spartanburg, Downtown Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "airportId": 7276, + "codeIataAirport": "SPB", + "codeIataCity": "STT", + "codeIcaoAirport": "", + "codeIso2Country": "VI", + "geonameId": "4795469", + "latitudeAirport": 18.35, + "longitudeAirport": -64.916664, + "nameAirport": "SPB", + "nameCountry": "U.S. Virgin Islands", + "phone": "", + "timezone": "America/St_Thomas" + }, + { + "GMT": "0", + "airportId": 7277, + "codeIataAirport": "SPC", + "codeIataCity": "SPC", + "codeIcaoAirport": "GCLA", + "codeIso2Country": "ES", + "geonameId": "6297187", + "latitudeAirport": 28.626389, + "longitudeAirport": -17.755556, + "nameAirport": "La Palma", + "nameCountry": "Spain", + "phone": "", + "timezone": "Atlantic/Canary" + }, + { + "GMT": "6", + "airportId": 7278, + "codeIataAirport": "SPD", + "codeIataCity": "SPD", + "codeIcaoAirport": "VGSD", + "codeIso2Country": "BD", + "geonameId": "7668600", + "latitudeAirport": 25.783333, + "longitudeAirport": 88.9, + "nameAirport": "Saidpur", + "nameCountry": "Bangladesh", + "phone": "", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "8", + "airportId": 7279, + "codeIataAirport": "SPE", + "codeIataCity": "SPE", + "codeIcaoAirport": "WBKO", + "codeIso2Country": "MY", + "geonameId": "7731501", + "latitudeAirport": 4.712222, + "longitudeAirport": 116.45695, + "nameAirport": "Sepulot", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-7", + "airportId": 7280, + "codeIataAirport": "SPF", + "codeIataCity": "SPF", + "codeIcaoAirport": "KSPF", + "codeIso2Country": "US", + "geonameId": "5769288", + "latitudeAirport": 44.5, + "longitudeAirport": -103.86667, + "nameAirport": "Black Hills", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 7281, + "codeIataAirport": "SPG", + "codeIataCity": "SPG", + "codeIcaoAirport": "KSPG", + "codeIso2Country": "US", + "geonameId": "4145737", + "latitudeAirport": 27.766945, + "longitudeAirport": -82.625275, + "nameAirport": "Whitted", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 7282, + "codeIataAirport": "SPH", + "codeIataCity": "SPH", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299212", + "latitudeAirport": -9.0, + "longitudeAirport": 147.76666, + "nameAirport": "Sopu", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 7283, + "codeIataAirport": "SPI", + "codeIataCity": "SPI", + "codeIcaoAirport": "KSPI", + "codeIso2Country": "US", + "geonameId": "6299113", + "latitudeAirport": 39.844166, + "longitudeAirport": -89.67889, + "nameAirport": "Capital", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 7284, + "codeIataAirport": "SPJ", + "codeIataCity": "SPJ", + "codeIcaoAirport": "LGSP", + "codeIso2Country": "GR", + "geonameId": "7668315", + "latitudeAirport": 36.983334, + "longitudeAirport": 22.533333, + "nameAirport": "Eleftherios Venizelos", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "1", + "airportId": 7285, + "codeIataAirport": "SPM", + "codeIataCity": "SPM", + "codeIcaoAirport": "ETAD", + "codeIso2Country": "DE", + "geonameId": "6296820", + "latitudeAirport": 50.06547, + "longitudeAirport": 6.835917, + "nameAirport": "Spangdahlem", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "10", + "airportId": 7286, + "codeIataAirport": "SPN", + "codeIataCity": "SPN", + "codeIcaoAirport": "PGSN", + "codeIso2Country": "MP", + "geonameId": "7828758", + "latitudeAirport": 15.122178, + "longitudeAirport": 145.72325, + "nameAirport": "Saipan International", + "nameCountry": "Northern Mariana Islands", + "phone": "", + "timezone": "Pacific/Saipan" + }, + { + "GMT": "1", + "airportId": 7287, + "codeIataAirport": "SPO", + "codeIataCity": "SPO", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 37.38333, + "longitudeAirport": -5.75, + "nameAirport": "San Pablo", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 7288, + "codeIataAirport": "SPP", + "codeIataCity": "SPP", + "codeIcaoAirport": "FNME", + "codeIso2Country": "AO", + "geonameId": "7668249", + "latitudeAirport": -14.6375, + "longitudeAirport": 17.725555, + "nameAirport": "Menongue", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-8", + "airportId": 7289, + "codeIataAirport": "SPQ", + "codeIataCity": "SPQ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.750557, + "longitudeAirport": -118.27278, + "nameAirport": "Catalina SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 7290, + "codeIataAirport": "SPR", + "codeIataCity": "SPR", + "codeIcaoAirport": "", + "codeIso2Country": "BZ", + "geonameId": "3581164", + "latitudeAirport": 17.911112, + "longitudeAirport": -87.96861, + "nameAirport": "San Pedro", + "nameCountry": "Belize", + "phone": "", + "timezone": "America/Belize" + }, + { + "GMT": "-6", + "airportId": 7291, + "codeIataAirport": "SPS", + "codeIataCity": "SPS", + "codeIcaoAirport": "KSPS", + "codeIso2Country": "US", + "geonameId": "6326896", + "latitudeAirport": 33.988335, + "longitudeAirport": -98.49194, + "nameAirport": "Sheppard AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 7292, + "codeIataAirport": "SPT", + "codeIataCity": "SPT", + "codeIcaoAirport": "", + "codeIso2Country": "MY", + "geonameId": "7731502", + "latitudeAirport": 5.083333, + "longitudeAirport": 115.55, + "nameAirport": "Sipitang", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "1", + "airportId": 7293, + "codeIataAirport": "SPU", + "codeIataCity": "SPU", + "codeIcaoAirport": "LDSP", + "codeIso2Country": "HR", + "geonameId": "3215304", + "latitudeAirport": 43.536526, + "longitudeAirport": 16.29946, + "nameAirport": "Split", + "nameCountry": "Croatia", + "phone": "", + "timezone": "Europe/Zagreb" + }, + { + "GMT": "10", + "airportId": 7294, + "codeIataAirport": "SPV", + "codeIataCity": "SPV", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298925", + "latitudeAirport": -3.816667, + "longitudeAirport": 144.5, + "nameAirport": "Sepik Plains", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 7295, + "codeIataAirport": "SPW", + "codeIataCity": "SPW", + "codeIcaoAirport": "KSPW", + "codeIso2Country": "US", + "geonameId": "4877156", + "latitudeAirport": 43.16389, + "longitudeAirport": -95.200836, + "nameAirport": "Spencer Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 7296, + "codeIataAirport": "SPY", + "codeIataCity": "SPY", + "codeIcaoAirport": "DISP", + "codeIso2Country": "CI", + "geonameId": "6296442", + "latitudeAirport": 4.730278, + "longitudeAirport": -6.626944, + "nameAirport": "San Pedro", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "-6", + "airportId": 7297, + "codeIataAirport": "SPZ", + "codeIataCity": "SPZ", + "codeIcaoAirport": "KSPZ", + "codeIso2Country": "US", + "geonameId": "4132103", + "latitudeAirport": 36.183334, + "longitudeAirport": -94.166664, + "nameAirport": "Springdale Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 7298, + "codeIataAirport": "SQA", + "codeIataCity": "SQA", + "codeIcaoAirport": "KIZA", + "codeIso2Country": "US", + "geonameId": "5393389", + "latitudeAirport": 34.066666, + "longitudeAirport": -118.566666, + "nameAirport": "Santa Ynez", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 7299, + "codeIataAirport": "SQB", + "codeIataCity": "SQB", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 9.316667, + "longitudeAirport": -74.583336, + "nameAirport": "Santa Ana", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "8", + "airportId": 7300, + "codeIataAirport": "SQC", + "codeIataCity": "SQC", + "codeIcaoAirport": "YSCR", + "codeIso2Country": "AU", + "geonameId": "7731503", + "latitudeAirport": -31.25, + "longitudeAirport": 119.35, + "nameAirport": "Southern Cross", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "airportId": 7301, + "codeIataAirport": "SQE", + "codeIataCity": "SQE", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": -12.066667, + "longitudeAirport": -77.0, + "nameAirport": "San Luis De Pale", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 7302, + "codeIataAirport": "SQF", + "codeIataCity": "SQF", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "3667868", + "latitudeAirport": 2.0, + "longitudeAirport": -66.96667, + "nameAirport": "Solano", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "8", + "airportId": 7303, + "codeIataAirport": "SQG", + "codeIataCity": "SQG", + "codeIcaoAirport": "WIOS", + "codeIso2Country": "ID", + "geonameId": "6301243", + "latitudeAirport": 0.083333, + "longitudeAirport": 111.583336, + "nameAirport": "Sintang", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "7", + "airportId": 7304, + "codeIataAirport": "SQH", + "codeIataCity": "SQH", + "codeIcaoAirport": "VVNS", + "codeIso2Country": "VN", + "geonameId": "7668651", + "latitudeAirport": 21.218056, + "longitudeAirport": 104.025, + "nameAirport": "Na-San", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-6", + "airportId": 7305, + "codeIataAirport": "SQI", + "codeIataCity": "SQI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.74, + "longitudeAirport": -89.68083, + "nameAirport": "Whiteside County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 7306, + "codeIataAirport": "SQK", + "codeIataCity": "SQK", + "codeIcaoAirport": "", + "codeIso2Country": "EG", + "geonameId": "8260772", + "latitudeAirport": 31.6, + "longitudeAirport": 25.933332, + "nameAirport": "Sidi Barani", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-8", + "airportId": 7307, + "codeIataAirport": "SQL", + "codeIataCity": "SQL", + "codeIcaoAirport": "KSQL", + "codeIso2Country": "US", + "geonameId": "5391761", + "latitudeAirport": 37.483334, + "longitudeAirport": -122.25, + "nameAirport": "San Carlos", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "airportId": 7308, + "codeIataAirport": "SQM", + "codeIataCity": "SQM", + "codeIcaoAirport": "SWUA", + "codeIso2Country": "BR", + "geonameId": "7731505", + "latitudeAirport": -13.316667, + "longitudeAirport": -50.216667, + "nameAirport": "São Miguel de Aragao", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "9", + "airportId": 7309, + "codeIataAirport": "SQN", + "codeIataCity": "SQN", + "codeIcaoAirport": "WAPN", + "codeIso2Country": "ID", + "geonameId": "6301202", + "latitudeAirport": -2.2, + "longitudeAirport": 125.916664, + "nameAirport": "Sanana", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "airportId": 7310, + "codeIataAirport": "SQO", + "codeIataCity": "SQO", + "codeIcaoAirport": "ESUD", + "codeIso2Country": "SE", + "geonameId": "6296812", + "latitudeAirport": 64.96222, + "longitudeAirport": 17.8, + "nameAirport": "Gunnarn", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "2", + "airportId": 7311, + "codeIataAirport": "SQQ", + "codeIataCity": "SQQ", + "codeIcaoAirport": "EYSA", + "codeIso2Country": "LT", + "geonameId": "594742", + "latitudeAirport": 55.933334, + "longitudeAirport": 23.316668, + "nameAirport": "Siauliai International", + "nameCountry": "Lithuania", + "phone": "", + "timezone": "Europe/Vilnius" + }, + { + "GMT": "8", + "airportId": 7312, + "codeIataAirport": "SQR", + "codeIataCity": "SQR", + "codeIcaoAirport": "WAWS", + "codeIso2Country": "ID", + "geonameId": "7731506", + "latitudeAirport": -3.166667, + "longitudeAirport": 122.666664, + "nameAirport": "Inco Soroako Waws", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-6", + "airportId": 7313, + "codeIataAirport": "SQS", + "codeIataCity": "SQS", + "codeIcaoAirport": "", + "codeIso2Country": "BZ", + "geonameId": "3581194", + "latitudeAirport": 17.183332, + "longitudeAirport": -89.03333, + "nameAirport": "Matthew Spain", + "nameCountry": "Belize", + "phone": "", + "timezone": "America/Belize" + }, + { + "GMT": "10", + "airportId": 7314, + "codeIataAirport": "SQT", + "codeIataCity": "SQT", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298843", + "latitudeAirport": -10.55, + "longitudeAirport": 150.68333, + "nameAirport": "China Straits Airstrip", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 7315, + "codeIataAirport": "SQU", + "codeIataCity": "SQU", + "codeIcaoAirport": "SPOA", + "codeIso2Country": "PE", + "geonameId": "7731507", + "latitudeAirport": -6.95, + "longitudeAirport": -76.75, + "nameAirport": "Saposoa", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "-8", + "airportId": 7316, + "codeIataAirport": "SQV", + "codeIataCity": "SQV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5809983", + "latitudeAirport": 48.09778, + "longitudeAirport": -123.18528, + "nameAirport": "Sequim Valley Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 7317, + "codeIataAirport": "SQW", + "codeIataCity": "SQW", + "codeIcaoAirport": "EKSV", + "codeIso2Country": "DK", + "geonameId": "6296713", + "latitudeAirport": 56.566666, + "longitudeAirport": 9.033333, + "nameAirport": "Skive Airport", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-3", + "airportId": 7318, + "codeIataAirport": "SQX", + "codeIataCity": "SQX", + "codeIcaoAirport": "SSOE", + "codeIso2Country": "BR", + "geonameId": "7731508", + "latitudeAirport": -26.780556, + "longitudeAirport": -53.502777, + "nameAirport": "Sao Miguel do Oeste", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-3", + "airportId": 7319, + "codeIataAirport": "SQY", + "codeIataCity": "SQY", + "codeIcaoAirport": "SSRU", + "codeIso2Country": "BR", + "geonameId": "7731509", + "latitudeAirport": -31.382778, + "longitudeAirport": -52.032223, + "nameAirport": "Sao Lourenco Do Sul", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "0", + "airportId": 7320, + "codeIataAirport": "SQZ", + "codeIataCity": "SQZ", + "codeIcaoAirport": "EGXP", + "codeIso2Country": "GB", + "geonameId": "6296671", + "latitudeAirport": 53.3, + "longitudeAirport": -0.583333, + "nameAirport": "RAF Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-3", + "airportId": 7321, + "codeIataAirport": "SRA", + "codeIataCity": "SRA", + "codeIcaoAirport": "SSZR", + "codeIso2Country": "BR", + "geonameId": "7668478", + "latitudeAirport": -27.866667, + "longitudeAirport": -54.483334, + "nameAirport": "Santa Rosa", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-4", + "airportId": 7322, + "codeIataAirport": "SRB", + "codeIataCity": "SRB", + "codeIcaoAirport": "SLSR", + "codeIso2Country": "BO", + "geonameId": "7731510", + "latitudeAirport": -10.6, + "longitudeAirport": -67.333336, + "nameAirport": "Santa Rosa", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-6", + "airportId": 7323, + "codeIataAirport": "SRC", + "codeIataCity": "SRC", + "codeIcaoAirport": "KSRC", + "codeIso2Country": "US", + "geonameId": "4130438", + "latitudeAirport": 35.25, + "longitudeAirport": -91.73333, + "nameAirport": "Searcy", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 7324, + "codeIataAirport": "SRD", + "codeIataCity": "SRD", + "codeIcaoAirport": "SLRA", + "codeIso2Country": "BO", + "geonameId": "7731511", + "latitudeAirport": -13.283333, + "longitudeAirport": -64.71667, + "nameAirport": "San Ramon", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-4", + "airportId": 7325, + "codeIataAirport": "SRE", + "codeIataCity": "SRE", + "codeIcaoAirport": "SLSU", + "codeIso2Country": "BO", + "geonameId": "6300789", + "latitudeAirport": -19.007778, + "longitudeAirport": -65.30167, + "nameAirport": "Juana Azurduy de Padilla", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "7", + "airportId": 7326, + "codeIataAirport": "SRG", + "codeIataCity": "SRG", + "codeIcaoAirport": "WIIS", + "codeIso2Country": "ID", + "geonameId": "6301228", + "latitudeAirport": -6.979155, + "longitudeAirport": 110.37855, + "nameAirport": "Achmad Yani", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "1", + "airportId": 7327, + "codeIataAirport": "SRH", + "codeIataCity": "SRH", + "codeIcaoAirport": "FTTA", + "codeIso2Country": "TD", + "geonameId": "6297095", + "latitudeAirport": 9.083333, + "longitudeAirport": 18.383333, + "nameAirport": "Sarh", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "8", + "airportId": 7328, + "codeIataAirport": "SRI", + "codeIataCity": "SRI", + "codeIcaoAirport": "WALS", + "codeIso2Country": "ID", + "geonameId": "1629001", + "latitudeAirport": -0.5, + "longitudeAirport": 117.15, + "nameAirport": "Samarinda", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-4", + "airportId": 7329, + "codeIataAirport": "SRJ", + "codeIataCity": "SRJ", + "codeIcaoAirport": "SLSB", + "codeIso2Country": "BO", + "geonameId": "6300786", + "latitudeAirport": -14.816667, + "longitudeAirport": -66.833336, + "nameAirport": "Capitan G Q Guardia", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-7", + "airportId": 7330, + "codeIataAirport": "SRL", + "codeIataCity": "SRL", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "8298824", + "latitudeAirport": 27.2, + "longitudeAirport": -112.25, + "nameAirport": "Santa Rosalia", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mazatlan" + }, + { + "GMT": "10", + "airportId": 7331, + "codeIataAirport": "SRM", + "codeIataCity": "SRM", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2150460", + "latitudeAirport": -24.05, + "longitudeAirport": 139.06667, + "nameAirport": "Sandringham", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 7332, + "codeIataAirport": "SRN", + "codeIataCity": "SRN", + "codeIcaoAirport": "YSRN", + "codeIso2Country": "AU", + "geonameId": "7668772", + "latitudeAirport": -42.15, + "longitudeAirport": 145.31667, + "nameAirport": "Strahan", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Hobart" + }, + { + "GMT": "-5", + "airportId": 7333, + "codeIataAirport": "SRO", + "codeIataCity": "SRO", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8299045", + "latitudeAirport": 9.916944, + "longitudeAirport": -126.06694, + "nameAirport": "Santana Ramos", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "airportId": 7334, + "codeIataAirport": "SRP", + "codeIataCity": "SRP", + "codeIcaoAirport": "ENSO", + "codeIso2Country": "NO", + "geonameId": "6296772", + "latitudeAirport": 59.833332, + "longitudeAirport": 5.416667, + "nameAirport": "Stord Airport", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "airportId": 7335, + "codeIataAirport": "SRQ", + "codeIataCity": "SRQ", + "codeIcaoAirport": "KSRQ", + "codeIso2Country": "US", + "geonameId": "6299118", + "latitudeAirport": 27.38748, + "longitudeAirport": -82.55328, + "nameAirport": "Sarasota/Bradenton International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 7336, + "codeIataAirport": "SRR", + "codeIataCity": "SRR", + "codeIcaoAirport": "KSRR", + "codeIso2Country": "AU", + "geonameId": "5491390", + "latitudeAirport": -27.5190395, + "longitudeAirport": 153.4276083, + "nameAirport": "Dunwich", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 7337, + "codeIataAirport": "SRS", + "codeIataCity": "SRS", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8298883", + "latitudeAirport": 8.65, + "longitudeAirport": -75.13333, + "nameAirport": "Cartagena", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "airportId": 7338, + "codeIataAirport": "SRT", + "codeIataCity": "SRT", + "codeIcaoAirport": "HUSO", + "codeIso2Country": "UG", + "geonameId": "6297384", + "latitudeAirport": 1.7, + "longitudeAirport": 33.61667, + "nameAirport": "Soroti", + "nameCountry": "Uganda", + "phone": "", + "timezone": "Africa/Kampala" + }, + { + "GMT": "-9", + "airportId": 7339, + "codeIataAirport": "SRV", + "codeIataCity": "SRV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5875244", + "latitudeAirport": 61.79111, + "longitudeAirport": -156.5861, + "nameAirport": "Stony River", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 7340, + "codeIataAirport": "SRW", + "codeIataCity": "SRW", + "codeIcaoAirport": "KRUQ", + "codeIso2Country": "US", + "geonameId": "4489985", + "latitudeAirport": 35.666668, + "longitudeAirport": -80.48333, + "nameAirport": "Rowan County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 7341, + "codeIataAirport": "SRX", + "codeIataCity": "SRX", + "codeIcaoAirport": "HLGD", + "codeIso2Country": "LY", + "geonameId": "7730095", + "latitudeAirport": 31.060917, + "longitudeAirport": 16.612036, + "nameAirport": "Sert", + "nameCountry": "Libya", + "phone": "", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "3.30", + "airportId": 7342, + "codeIataAirport": "SRY", + "codeIataCity": "SRY", + "codeIcaoAirport": "OINS", + "codeIso2Country": "IR", + "geonameId": "7668391", + "latitudeAirport": 36.635727, + "longitudeAirport": 53.197277, + "nameAirport": "Dashte Naz", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-4", + "airportId": 7343, + "codeIataAirport": "SRZ", + "codeIataCity": "SRZ", + "codeIcaoAirport": "SLET", + "codeIso2Country": "BO", + "geonameId": "6300771", + "latitudeAirport": -17.804167, + "longitudeAirport": -63.1725, + "nameAirport": "El Trompillo", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-3", + "airportId": 7344, + "codeIataAirport": "SSA", + "codeIataCity": "SSA", + "codeIcaoAirport": "SBSV", + "codeIso2Country": "BR", + "geonameId": "6300674", + "latitudeAirport": -12.913988, + "longitudeAirport": -38.335197, + "nameAirport": "Luis Eduardo Magalhaes", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "-4", + "airportId": 7345, + "codeIataAirport": "SSB", + "codeIataCity": "STX", + "codeIcaoAirport": "VI32", + "codeIso2Country": "VI", + "geonameId": "0", + "latitudeAirport": 17.75, + "longitudeAirport": -64.75, + "nameAirport": "SPB", + "nameCountry": "U.S. Virgin Islands", + "phone": "", + "timezone": "America/St_Thomas" + }, + { + "GMT": "-5", + "airportId": 7346, + "codeIataAirport": "SSC", + "codeIataCity": "SSC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4597948", + "latitudeAirport": 33.9, + "longitudeAirport": -80.11667, + "nameAirport": "Shaw AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 7347, + "codeIataAirport": "SSD", + "codeIataCity": "SSD", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8260730", + "latitudeAirport": 1.916667, + "longitudeAirport": -67.1, + "nameAirport": "San Felipe", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "5.30", + "airportId": 7348, + "codeIataAirport": "SSE", + "codeIataCity": "SSE", + "codeIcaoAirport": "VASL", + "codeIso2Country": "IN", + "geonameId": "6301044", + "latitudeAirport": 17.633333, + "longitudeAirport": 75.933334, + "nameAirport": "Sholapur", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-6", + "airportId": 7349, + "codeIataAirport": "SSF", + "codeIataCity": "SAT", + "codeIcaoAirport": "KSSF", + "codeIso2Country": "US", + "geonameId": "4734513", + "latitudeAirport": 29.416668, + "longitudeAirport": -98.5, + "nameAirport": "Stinson Municipalcipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 7350, + "codeIataAirport": "SSG", + "codeIataCity": "SSG", + "codeIcaoAirport": "FGSL", + "codeIso2Country": "GQ", + "geonameId": "6296982", + "latitudeAirport": 3.757791, + "longitudeAirport": 8.716096, + "nameAirport": "Malbo", + "nameCountry": "Equatorial Guinea", + "phone": "", + "timezone": "Africa/Malabo" + }, + { + "GMT": "2", + "airportId": 7351, + "codeIataAirport": "SSH", + "codeIataCity": "SSH", + "codeIcaoAirport": "HESH", + "codeIso2Country": "EG", + "geonameId": "6297298", + "latitudeAirport": 27.979357, + "longitudeAirport": 34.385254, + "nameAirport": "Sharm el-Sheikh International Airport", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-5", + "airportId": 7352, + "codeIataAirport": "SSI", + "codeIataCity": "SSI", + "codeIcaoAirport": "KSSI", + "codeIso2Country": "US", + "geonameId": "4207572", + "latitudeAirport": 31.165916, + "longitudeAirport": -81.46347, + "nameAirport": "Malcolm Mckinnon", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 7353, + "codeIataAirport": "SSJ", + "codeIataCity": "SSJ", + "codeIcaoAirport": "ENST", + "codeIso2Country": "NO", + "geonameId": "6296775", + "latitudeAirport": 65.959946, + "longitudeAirport": 12.476518, + "nameAirport": "Stokka", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "8", + "airportId": 7354, + "codeIataAirport": "SSK", + "codeIataCity": "SSK", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731513", + "latitudeAirport": -19.2, + "longitudeAirport": 128.13333, + "nameAirport": "Sturt Creek", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "airportId": 7355, + "codeIataAirport": "SSL", + "codeIataCity": "SSL", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "3779194", + "latitudeAirport": 1.466667, + "longitudeAirport": -72.23333, + "nameAirport": "Santa Rosalia", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "9", + "airportId": 7356, + "codeIataAirport": "SSN", + "codeIataCity": "SEL", + "codeIcaoAirport": "RKSM", + "codeIso2Country": "KR", + "geonameId": "6300435", + "latitudeAirport": 37.45, + "longitudeAirport": 127.11667, + "nameAirport": "Seoul AB", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "-3", + "airportId": 7357, + "codeIataAirport": "SSO", + "codeIataCity": "SSO", + "codeIcaoAirport": "SNLO", + "codeIso2Country": "BR", + "geonameId": "7731514", + "latitudeAirport": -22.116667, + "longitudeAirport": -45.05, + "nameAirport": "Sao Lourenco", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "airportId": 7358, + "codeIataAirport": "SSP", + "codeIataCity": "SSP", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298898", + "latitudeAirport": -13.983333, + "longitudeAirport": 143.55, + "nameAirport": "Silver Plains", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 7359, + "codeIataAirport": "SSQ", + "codeIataCity": "SSQ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8181664", + "latitudeAirport": 48.916668, + "longitudeAirport": -79.166664, + "nameAirport": "La Sarre", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "11", + "airportId": 7360, + "codeIataAirport": "SSR", + "codeIataCity": "SSR", + "codeIcaoAirport": "NVSH", + "codeIso2Country": "VU", + "geonameId": "7730710", + "latitudeAirport": -15.5, + "longitudeAirport": 168.3, + "nameAirport": "Sara", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "10", + "airportId": 7361, + "codeIataAirport": "SSS", + "codeIataCity": "SSS", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299140", + "latitudeAirport": -5.616667, + "longitudeAirport": 147.81667, + "nameAirport": "Siassi", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "airportId": 7362, + "codeIataAirport": "SST", + "codeIataCity": "SST", + "codeIcaoAirport": "", + "codeIso2Country": "AR", + "geonameId": "3428123", + "latitudeAirport": -33.416668, + "longitudeAirport": -60.783333, + "nameAirport": "Santa Teresita", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "8", + "airportId": 7363, + "codeIataAirport": "SSV", + "codeIataCity": "SSV", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "1686874", + "latitudeAirport": 5.5, + "longitudeAirport": 120.816666, + "nameAirport": "Siasi", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-8", + "airportId": 7364, + "codeIataAirport": "SSW", + "codeIataCity": "SSW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 48.67288, + "longitudeAirport": -123.17574, + "nameAirport": "Stuart Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 7365, + "codeIataAirport": "SSY", + "codeIataCity": "SSY", + "codeIcaoAirport": "FNBC", + "codeIso2Country": "AO", + "geonameId": "7839143", + "latitudeAirport": -6.273889, + "longitudeAirport": 14.244167, + "nameAirport": "M'banza Congo", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-3", + "airportId": 7366, + "codeIataAirport": "SSZ", + "codeIataCity": "SSZ", + "codeIcaoAirport": "SBST", + "codeIso2Country": "BR", + "geonameId": "6300673", + "latitudeAirport": -23.933332, + "longitudeAirport": -46.36667, + "nameAirport": "Santos", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 7367, + "codeIataAirport": "STA", + "codeIataCity": "STA", + "codeIcaoAirport": "EKVJ", + "codeIso2Country": "DK", + "geonameId": "6296717", + "latitudeAirport": 55.990276, + "longitudeAirport": 8.355, + "nameAirport": "Stauning Vestjyllands Airport", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-4", + "airportId": 7368, + "codeIataAirport": "STB", + "codeIataCity": "STB", + "codeIcaoAirport": "SVSZ", + "codeIso2Country": "VE", + "geonameId": "6300874", + "latitudeAirport": 9.033333, + "longitudeAirport": -71.95, + "nameAirport": "L Delicias", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-6", + "airportId": 7369, + "codeIataAirport": "STC", + "codeIataCity": "STC", + "codeIcaoAirport": "KSTC", + "codeIso2Country": "US", + "geonameId": "6299120", + "latitudeAirport": 45.55, + "longitudeAirport": -94.166664, + "nameAirport": "Saint Cloud Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 7370, + "codeIataAirport": "STD", + "codeIataCity": "STD", + "codeIcaoAirport": "SVSO", + "codeIso2Country": "VE", + "geonameId": "6300870", + "latitudeAirport": 7.583333, + "longitudeAirport": -72.066666, + "nameAirport": "Mayo Guerrero", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-6", + "airportId": 7371, + "codeIataAirport": "STE", + "codeIataCity": "STE", + "codeIcaoAirport": "KSTE", + "codeIso2Country": "US", + "geonameId": "5274648", + "latitudeAirport": 44.545277, + "longitudeAirport": -89.53083, + "nameAirport": "Stevens Point", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 7372, + "codeIataAirport": "STF", + "codeIataCity": "STF", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8299104", + "latitudeAirport": -9.5, + "longitudeAirport": 143.56667, + "nameAirport": "Stephen Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "airportId": 7373, + "codeIataAirport": "STG", + "codeIataCity": "STG", + "codeIcaoAirport": "PAPB", + "codeIso2Country": "US", + "geonameId": "5869873", + "latitudeAirport": 56.6, + "longitudeAirport": -169.5525, + "nameAirport": "St George Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 7374, + "codeIataAirport": "STH", + "codeIataCity": "STH", + "codeIcaoAirport": "YSMR", + "codeIso2Country": "AU", + "geonameId": "7731515", + "latitudeAirport": -17.833332, + "longitudeAirport": 142.58333, + "nameAirport": "Strathmore", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-4", + "airportId": 7375, + "codeIataAirport": "STI", + "codeIataCity": "STI", + "codeIcaoAirport": "MDST", + "codeIso2Country": "DO", + "geonameId": "3509625", + "latitudeAirport": 19.401829, + "longitudeAirport": -70.60208, + "nameAirport": "Cibao International Airport", + "nameCountry": "Dominican Republic", + "phone": "", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "-6", + "airportId": 7376, + "codeIataAirport": "STJ", + "codeIataCity": "STJ", + "codeIcaoAirport": "KSTJ", + "codeIso2Country": "US", + "geonameId": "4406399", + "latitudeAirport": 39.960556, + "longitudeAirport": -94.925, + "nameAirport": "Rosecrans Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 7377, + "codeIataAirport": "STK", + "codeIataCity": "STK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5576116", + "latitudeAirport": 40.61611, + "longitudeAirport": -103.26722, + "nameAirport": "Crosson Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 7378, + "codeIataAirport": "STL", + "codeIataCity": "STL", + "codeIcaoAirport": "KSTL", + "codeIso2Country": "US", + "geonameId": "4394516", + "latitudeAirport": 38.74228, + "longitudeAirport": -90.36587, + "nameAirport": "Lambert-St. Louis International", + "nameCountry": "United States", + "phone": "314-426-8000", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 7379, + "codeIataAirport": "STM", + "codeIataCity": "STM", + "codeIcaoAirport": "SBSN", + "codeIso2Country": "BR", + "geonameId": "6300672", + "latitudeAirport": -2.424886, + "longitudeAirport": -54.78639, + "nameAirport": "Eduardo Gomes", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Santarem" + }, + { + "GMT": "0", + "airportId": 7380, + "codeIataAirport": "STN", + "codeIataCity": "LON", + "codeIcaoAirport": "EGSS", + "codeIso2Country": "GB", + "geonameId": "6296645", + "latitudeAirport": 51.889267, + "longitudeAirport": 0.262703, + "nameAirport": "Stansted", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 7381, + "codeIataAirport": "STP", + "codeIataCity": "MSP", + "codeIcaoAirport": "KSTP", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 44.933334, + "longitudeAirport": -93.066666, + "nameAirport": "Downtown", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 7382, + "codeIataAirport": "STQ", + "codeIataCity": "STQ", + "codeIcaoAirport": "KOYM", + "codeIso2Country": "US", + "geonameId": "5210198", + "latitudeAirport": 41.433334, + "longitudeAirport": -78.566666, + "nameAirport": "St Marys", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 7383, + "codeIataAirport": "STR", + "codeIataCity": "STR", + "codeIcaoAirport": "EDDS", + "codeIso2Country": "DE", + "geonameId": "3206322", + "latitudeAirport": 48.69073, + "longitudeAirport": 9.193624, + "nameAirport": "Stuttgart Echterdingen", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-8", + "airportId": 7384, + "codeIataAirport": "STS", + "codeIataCity": "STS", + "codeIcaoAirport": "KSTS", + "codeIso2Country": "US", + "geonameId": "5397102", + "latitudeAirport": 38.50889, + "longitudeAirport": -122.81167, + "nameAirport": "Sonoma County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "airportId": 7385, + "codeIataAirport": "STT", + "codeIataCity": "STT", + "codeIcaoAirport": "TIST", + "codeIso2Country": "VI", + "geonameId": "4795586", + "latitudeAirport": 18.3375, + "longitudeAirport": -64.969444, + "nameAirport": "Cyril E King Airport", + "nameCountry": "U.S. Virgin Islands", + "phone": "", + "timezone": "America/St_Thomas" + }, + { + "GMT": "-6", + "airportId": 7386, + "codeIataAirport": "STU", + "codeIataCity": "STU", + "codeIcaoAirport": "", + "codeIso2Country": "BZ", + "geonameId": "0", + "latitudeAirport": 18.266666, + "longitudeAirport": -88.45, + "nameAirport": "Santa Cruz", + "nameCountry": "Belize", + "phone": "", + "timezone": "America/Belize" + }, + { + "GMT": "5.30", + "airportId": 7387, + "codeIataAirport": "STV", + "codeIataCity": "STV", + "codeIcaoAirport": "VASU", + "codeIso2Country": "IN", + "geonameId": "7668581", + "latitudeAirport": 21.117659, + "longitudeAirport": 72.745255, + "nameAirport": "Surat", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "3", + "airportId": 7388, + "codeIataAirport": "STW", + "codeIataCity": "STW", + "codeIcaoAirport": "URMT", + "codeIso2Country": "RU", + "geonameId": "6300993", + "latitudeAirport": 45.333332, + "longitudeAirport": 42.00833, + "nameAirport": "Stavropol", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-4", + "airportId": 7389, + "codeIataAirport": "STX", + "codeIataCity": "STX", + "codeIcaoAirport": "TISX", + "codeIso2Country": "VI", + "geonameId": "4795893", + "latitudeAirport": 17.701944, + "longitudeAirport": -64.798615, + "nameAirport": "Henry E Rohlsen", + "nameCountry": "U.S. Virgin Islands", + "phone": "", + "timezone": "America/St_Thomas" + }, + { + "GMT": "-3", + "airportId": 7390, + "codeIataAirport": "STY", + "codeIataCity": "STY", + "codeIcaoAirport": "SUSO", + "codeIso2Country": "UY", + "geonameId": "3441482", + "latitudeAirport": -31.436666, + "longitudeAirport": -57.988335, + "nameAirport": "Salto", + "nameCountry": "Uruguay", + "phone": "", + "timezone": "America/Montevideo" + }, + { + "GMT": "-4", + "airportId": 7391, + "codeIataAirport": "STZ", + "codeIataCity": "STZ", + "codeIcaoAirport": "SWST", + "codeIso2Country": "BR", + "geonameId": "7731516", + "latitudeAirport": -10.300278, + "longitudeAirport": -50.45, + "nameAirport": "Confresa", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-5", + "airportId": 7392, + "codeIataAirport": "SUA", + "codeIataCity": "SUA", + "codeIcaoAirport": "KSUA", + "codeIso2Country": "US", + "geonameId": "4174201", + "latitudeAirport": 27.2, + "longitudeAirport": -80.25, + "nameAirport": "Witham Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "7", + "airportId": 7393, + "codeIataAirport": "SUB", + "codeIataCity": "SUB", + "codeIcaoAirport": "WRSJ", + "codeIso2Country": "ID", + "geonameId": "6301284", + "latitudeAirport": -7.38387, + "longitudeAirport": 112.77724, + "nameAirport": "Juanda", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-7", + "airportId": 7394, + "codeIataAirport": "SUC", + "codeIataCity": "SUC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 44.4, + "longitudeAirport": -104.38333, + "nameAirport": "Schloredt", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 7395, + "codeIataAirport": "SUD", + "codeIataCity": "SUD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 35.75, + "longitudeAirport": -96.683334, + "nameAirport": "Stroud", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 7396, + "codeIataAirport": "SUE", + "codeIataCity": "SUE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5274867", + "latitudeAirport": 44.843887, + "longitudeAirport": -87.42139, + "nameAirport": "Door County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 7397, + "codeIataAirport": "SUF", + "codeIataCity": "SUF", + "codeIcaoAirport": "LICA", + "codeIso2Country": "IT", + "geonameId": "6534232", + "latitudeAirport": 38.910015, + "longitudeAirport": 16.244972, + "nameAirport": "Lamezia Terme", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "8", + "airportId": 7398, + "codeIataAirport": "SUG", + "codeIataCity": "SUG", + "codeIcaoAirport": "RPWS", + "codeIso2Country": "PH", + "geonameId": "1685218", + "latitudeAirport": 9.758889, + "longitudeAirport": 125.479164, + "nameAirport": "Surigao", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "4", + "airportId": 7399, + "codeIataAirport": "SUH", + "codeIataCity": "SUH", + "codeIcaoAirport": "", + "codeIso2Country": "OM", + "geonameId": "0", + "latitudeAirport": 22.533333, + "longitudeAirport": 59.483334, + "nameAirport": "Sur", + "nameCountry": "Oman", + "phone": "", + "timezone": "Asia/Muscat" + }, + { + "GMT": "4", + "airportId": 7400, + "codeIataAirport": "SUI", + "codeIataCity": "SUI", + "codeIcaoAirport": "UGSS", + "codeIso2Country": "GE", + "geonameId": "7668500", + "latitudeAirport": 42.86667, + "longitudeAirport": 41.11667, + "nameAirport": "Babusheri", + "nameCountry": "Georgia", + "phone": "", + "timezone": "Asia/Tbilisi" + }, + { + "GMT": "2", + "airportId": 7401, + "codeIataAirport": "SUJ", + "codeIataCity": "SUJ", + "codeIcaoAirport": "LRSM", + "codeIso2Country": "RO", + "geonameId": "6299709", + "latitudeAirport": 47.7, + "longitudeAirport": 22.883333, + "nameAirport": "Satu Mare", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "9", + "airportId": 7402, + "codeIataAirport": "SUK", + "codeIataCity": "SUK", + "codeIcaoAirport": "", + "codeIso2Country": "KR", + "geonameId": "8298984", + "latitudeAirport": 37.494446, + "longitudeAirport": 129.13695, + "nameAirport": "Samcheok", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "5", + "airportId": 7403, + "codeIataAirport": "SUL", + "codeIataCity": "SUL", + "codeIcaoAirport": "OPSU", + "codeIso2Country": "PK", + "geonameId": "7668409", + "latitudeAirport": 28.64889, + "longitudeAirport": 69.1725, + "nameAirport": "Sui", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-5", + "airportId": 7404, + "codeIataAirport": "SUM", + "codeIataCity": "SSC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.9, + "longitudeAirport": -80.11667, + "nameAirport": "Sumter Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 7405, + "codeIataAirport": "SUN", + "codeIataCity": "SUN", + "codeIcaoAirport": "KSUN", + "codeIso2Country": "US", + "geonameId": "5594956", + "latitudeAirport": 43.50647, + "longitudeAirport": -114.30082, + "nameAirport": "Sun Valley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Boise" + }, + { + "GMT": "-8", + "airportId": 7406, + "codeIataAirport": "SUO", + "codeIataCity": "SUO", + "codeIcaoAirport": "KS21", + "codeIso2Country": "US", + "geonameId": "5755338", + "latitudeAirport": 43.916668, + "longitudeAirport": -121.5, + "nameAirport": "Sun River", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "7", + "airportId": 7407, + "codeIataAirport": "SUP", + "codeIataCity": "SUP", + "codeIcaoAirport": "WART", + "codeIso2Country": "ID", + "geonameId": "7731517", + "latitudeAirport": -7.066667, + "longitudeAirport": 113.933334, + "nameAirport": "Trunojoyo", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-5", + "airportId": 7408, + "codeIataAirport": "SUQ", + "codeIataCity": "SUQ", + "codeIcaoAirport": "SESC", + "codeIso2Country": "EC", + "geonameId": "7731518", + "latitudeAirport": -2.466667, + "longitudeAirport": -78.166664, + "nameAirport": "Sucua", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-5", + "airportId": 7409, + "codeIataAirport": "SUR", + "codeIataCity": "SUR", + "codeIcaoAirport": "CJV7", + "codeIso2Country": "CA", + "geonameId": "7730446", + "latitudeAirport": 52.71528, + "longitudeAirport": -88.5475, + "nameAirport": "Summer Beaver", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "airportId": 7410, + "codeIataAirport": "SUS", + "codeIataCity": "STL", + "codeIcaoAirport": "KSUS", + "codeIso2Country": "US", + "geonameId": "4409672", + "latitudeAirport": 38.75, + "longitudeAirport": -90.36667, + "nameAirport": "Spirit Of St Louis", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 7411, + "codeIataAirport": "SUT", + "codeIataCity": "SUT", + "codeIcaoAirport": "HTSU", + "codeIso2Country": "TZ", + "geonameId": "7730625", + "latitudeAirport": -7.966667, + "longitudeAirport": 31.616667, + "nameAirport": "Sumbawanga", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-8", + "airportId": 7412, + "codeIataAirport": "SUU", + "codeIataCity": "SUU", + "codeIcaoAirport": "KSUU", + "codeIso2Country": "US", + "geonameId": "5403310", + "latitudeAirport": 38.2625, + "longitudeAirport": -121.92694, + "nameAirport": "Travis AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "12", + "airportId": 7413, + "codeIataAirport": "SUV", + "codeIataCity": "SUV", + "codeIcaoAirport": "NFNA", + "codeIso2Country": "FJ", + "geonameId": "6299946", + "latitudeAirport": -18.045885, + "longitudeAirport": 178.55981, + "nameAirport": "Nausori", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-6", + "airportId": 7414, + "codeIataAirport": "SUW", + "codeIataCity": "SUW", + "codeIcaoAirport": "KSUW", + "codeIso2Country": "US", + "geonameId": "6301728", + "latitudeAirport": 46.691113, + "longitudeAirport": -92.10333, + "nameAirport": "Richard I Bong Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 7415, + "codeIataAirport": "SUX", + "codeIataCity": "SUX", + "codeIcaoAirport": "KSUX", + "codeIso2Country": "US", + "geonameId": "4876523", + "latitudeAirport": 42.401943, + "longitudeAirport": -96.38417, + "nameAirport": "Sioux Gateway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 7416, + "codeIataAirport": "SVA", + "codeIataCity": "SVA", + "codeIcaoAirport": "PASA", + "codeIso2Country": "US", + "geonameId": "5873445", + "latitudeAirport": 63.69093, + "longitudeAirport": -170.48679, + "nameAirport": "Savoonga", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "airportId": 7417, + "codeIataAirport": "SVB", + "codeIataCity": "SVB", + "codeIcaoAirport": "FMNS", + "codeIso2Country": "MG", + "geonameId": "6297050", + "latitudeAirport": -14.276944, + "longitudeAirport": 50.175, + "nameAirport": "Sambava", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-7", + "airportId": 7418, + "codeIataAirport": "SVC", + "codeIataCity": "SVC", + "codeIcaoAirport": "KSVC", + "codeIso2Country": "US", + "geonameId": "5491488", + "latitudeAirport": 32.631943, + "longitudeAirport": -108.15389, + "nameAirport": "Grant County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-4", + "airportId": 7419, + "codeIataAirport": "SVD", + "codeIataCity": "SVD", + "codeIcaoAirport": "TVSV", + "codeIso2Country": "VC", + "geonameId": "6300911", + "latitudeAirport": 13.14604, + "longitudeAirport": -61.21038, + "nameAirport": "E. T. Joshua", + "nameCountry": "Saint Vincent and the Grenadines", + "phone": "", + "timezone": "America/St_Vincent" + }, + { + "GMT": "-8", + "airportId": 7420, + "codeIataAirport": "SVE", + "codeIataCity": "SVE", + "codeIcaoAirport": "KSVE", + "codeIso2Country": "US", + "geonameId": "5572406", + "latitudeAirport": 40.416668, + "longitudeAirport": -120.65, + "nameAirport": "Susanville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 7421, + "codeIataAirport": "SVF", + "codeIataCity": "SVF", + "codeIcaoAirport": "DBBS", + "codeIso2Country": "BJ", + "geonameId": "6296403", + "latitudeAirport": 8.033333, + "longitudeAirport": 2.483333, + "nameAirport": "Save", + "nameCountry": "Benin", + "phone": "", + "timezone": "Africa/Porto-Novo" + }, + { + "GMT": "1", + "airportId": 7422, + "codeIataAirport": "SVG", + "codeIataCity": "SVG", + "codeIcaoAirport": "ENZV", + "codeIso2Country": "NO", + "geonameId": "6296780", + "latitudeAirport": 58.88215, + "longitudeAirport": 5.629197, + "nameAirport": "Sola", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "airportId": 7423, + "codeIataAirport": "SVH", + "codeIataCity": "SVH", + "codeIcaoAirport": "KSVH", + "codeIso2Country": "US", + "geonameId": "4493320", + "latitudeAirport": 35.783333, + "longitudeAirport": -80.88333, + "nameAirport": "Statesville Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 7424, + "codeIataAirport": "SVI", + "codeIataCity": "SVI", + "codeIcaoAirport": "SKSV", + "codeIso2Country": "CO", + "geonameId": "7014082", + "latitudeAirport": 2.15, + "longitudeAirport": -74.76667, + "nameAirport": "San Vicente", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "airportId": 7425, + "codeIataAirport": "SVJ", + "codeIataCity": "SVJ", + "codeIcaoAirport": "ENSH", + "codeIso2Country": "NO", + "geonameId": "6296769", + "latitudeAirport": 68.24498, + "longitudeAirport": 14.667774, + "nameAirport": "Helle", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "airportId": 7426, + "codeIataAirport": "SVK", + "codeIataCity": "SVK", + "codeIcaoAirport": "", + "codeIso2Country": "BZ", + "geonameId": "7731519", + "latitudeAirport": 16.7253, + "longitudeAirport": -88.34, + "nameAirport": "Silver Creek", + "nameCountry": "Belize", + "phone": "", + "timezone": "America/Belize" + }, + { + "GMT": "2", + "airportId": 7427, + "codeIataAirport": "SVL", + "codeIataCity": "SVL", + "codeIcaoAirport": "EFSA", + "codeIso2Country": "FI", + "geonameId": "6296560", + "latitudeAirport": 61.95, + "longitudeAirport": 28.95, + "nameAirport": "Savonlinna", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "10", + "airportId": 7428, + "codeIataAirport": "SVM", + "codeIataCity": "SVM", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8299257", + "latitudeAirport": -10.366667, + "longitudeAirport": 142.11667, + "nameAirport": "St Pauls", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 7429, + "codeIataAirport": "SVN", + "codeIataCity": "SAV", + "codeIcaoAirport": "KSVN", + "codeIso2Country": "US", + "geonameId": "6301729", + "latitudeAirport": 32.083332, + "longitudeAirport": -81.1, + "nameAirport": "Hunter AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 7430, + "codeIataAirport": "SVO", + "codeIataCity": "MOW", + "codeIcaoAirport": "UUEE", + "codeIso2Country": "RU", + "geonameId": "494811", + "latitudeAirport": 55.966324, + "longitudeAirport": 37.416573, + "nameAirport": "Sheremetyevo International", + "nameCountry": "Russia", + "phone": "+7 495 232-65", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "airportId": 7431, + "codeIataAirport": "SVP", + "codeIataCity": "SVP", + "codeIcaoAirport": "FNKU", + "codeIso2Country": "AO", + "geonameId": "6297062", + "latitudeAirport": -12.404167, + "longitudeAirport": 16.956667, + "nameAirport": "Kuito (Silva Porto)", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "1", + "airportId": 7432, + "codeIataAirport": "SVQ", + "codeIataCity": "SVQ", + "codeIcaoAirport": "LEZL", + "codeIso2Country": "ES", + "geonameId": "6299363", + "latitudeAirport": 37.423477, + "longitudeAirport": -5.900136, + "nameAirport": "San Pablo", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-9", + "airportId": 7433, + "codeIataAirport": "SVS", + "codeIataCity": "SVS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5875189", + "latitudeAirport": 66.009445, + "longitudeAirport": -149.09416, + "nameAirport": "Stevens Village", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 7434, + "codeIataAirport": "SVT", + "codeIataCity": "SVT", + "codeIcaoAirport": "FBSV", + "codeIso2Country": "BW", + "geonameId": "8298732", + "latitudeAirport": -18.633333, + "longitudeAirport": 24.083332, + "nameAirport": "Savuti", + "nameCountry": "Botswana", + "phone": "", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "12", + "airportId": 7435, + "codeIataAirport": "SVU", + "codeIataCity": "SVU", + "codeIcaoAirport": "NFNS", + "codeIso2Country": "FJ", + "geonameId": "6457351", + "latitudeAirport": -16.798828, + "longitudeAirport": 179.33913, + "nameAirport": "Savusavu", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-4", + "airportId": 7436, + "codeIataAirport": "SVV", + "codeIataCity": "SVV", + "codeIcaoAirport": "", + "codeIso2Country": "VE", + "geonameId": "7731520", + "latitudeAirport": 7.0, + "longitudeAirport": -62.0, + "nameAirport": "San Salvador De", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-9", + "airportId": 7437, + "codeIataAirport": "SVW", + "codeIataCity": "SVW", + "codeIcaoAirport": "PASV", + "codeIso2Country": "US", + "geonameId": "5874890", + "latitudeAirport": 61.0975, + "longitudeAirport": -155.57222, + "nameAirport": "Sparrevohn AFS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "5", + "airportId": 7438, + "codeIataAirport": "SVX", + "codeIataCity": "SVX", + "codeIcaoAirport": "USSS", + "codeIso2Country": "RU", + "geonameId": "6301004", + "latitudeAirport": 56.750336, + "longitudeAirport": 60.804314, + "nameAirport": "Koltsovo International", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "11", + "airportId": 7439, + "codeIataAirport": "SVY", + "codeIataCity": "SVY", + "codeIcaoAirport": "", + "codeIso2Country": "SB", + "geonameId": "8298967", + "latitudeAirport": -9.133333, + "longitudeAirport": 159.8, + "nameAirport": "Savo", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-4", + "airportId": 7440, + "codeIataAirport": "SVZ", + "codeIataCity": "SVZ", + "codeIcaoAirport": "SVSA", + "codeIso2Country": "VE", + "geonameId": "6301862", + "latitudeAirport": 7.843056, + "longitudeAirport": -72.43806, + "nameAirport": "San Antonio", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "8", + "airportId": 7441, + "codeIataAirport": "SWA", + "codeIataCity": "SWA", + "codeIcaoAirport": "ZGOW", + "codeIso2Country": "CN", + "geonameId": "6301364", + "latitudeAirport": 23.430237, + "longitudeAirport": 116.75859, + "nameAirport": "Shantou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 7442, + "codeIataAirport": "SWB", + "codeIataCity": "SWB", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731521", + "latitudeAirport": -21.516666, + "longitudeAirport": 119.36667, + "nameAirport": "Shaw River", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "10", + "airportId": 7443, + "codeIataAirport": "SWC", + "codeIataCity": "SWC", + "codeIcaoAirport": "YSWL", + "codeIso2Country": "AU", + "geonameId": "7668775", + "latitudeAirport": -37.066666, + "longitudeAirport": 142.76666, + "nameAirport": "Stawell", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-9", + "airportId": 7444, + "codeIataAirport": "SWD", + "codeIataCity": "SWD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5873776", + "latitudeAirport": 60.13333, + "longitudeAirport": -149.41806, + "nameAirport": "Seward", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 7445, + "codeIataAirport": "SWE", + "codeIataCity": "SWE", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2086499", + "latitudeAirport": -6.283333, + "longitudeAirport": 147.55, + "nameAirport": "Siwea", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 7446, + "codeIataAirport": "SWF", + "codeIataCity": "SWF", + "codeIcaoAirport": "KSWF", + "codeIso2Country": "US", + "geonameId": "5139694", + "latitudeAirport": 41.49843, + "longitudeAirport": -74.10104, + "nameAirport": "Stewart", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 7447, + "codeIataAirport": "SWG", + "codeIataCity": "SWG", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2087114", + "latitudeAirport": -6.166667, + "longitudeAirport": 147.3, + "nameAirport": "Satwag", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 7448, + "codeIataAirport": "SWH", + "codeIataCity": "SWH", + "codeIcaoAirport": "YSWH", + "codeIso2Country": "AU", + "geonameId": "7668774", + "latitudeAirport": -35.38333, + "longitudeAirport": 143.61667, + "nameAirport": "Swan Hill", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "11", + "airportId": 7449, + "codeIataAirport": "SWJ", + "codeIataCity": "SWJ", + "codeIcaoAirport": "NVSX", + "codeIso2Country": "VU", + "geonameId": "7730720", + "latitudeAirport": -16.25, + "longitudeAirport": 167.16667, + "nameAirport": "South West Bay", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-5", + "airportId": 7450, + "codeIataAirport": "SWL", + "codeIataCity": "SWL", + "codeIcaoAirport": "", + "codeIso2Country": "BS", + "geonameId": "3571375", + "latitudeAirport": 25.54, + "longitudeAirport": -76.75, + "nameAirport": "Spanish Wells", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "5", + "airportId": 7451, + "codeIataAirport": "SWN", + "codeIataCity": "SWN", + "codeIcaoAirport": "", + "codeIso2Country": "PK", + "geonameId": "0", + "latitudeAirport": 30.75, + "longitudeAirport": 73.13333, + "nameAirport": "Sahiwal", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-6", + "airportId": 7452, + "codeIataAirport": "SWO", + "codeIataCity": "SWO", + "codeIcaoAirport": "KSWO", + "codeIso2Country": "US", + "geonameId": "6299137", + "latitudeAirport": 36.15889, + "longitudeAirport": -97.085556, + "nameAirport": "Searcy Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 7453, + "codeIataAirport": "SWP", + "codeIataCity": "SWP", + "codeIcaoAirport": "", + "codeIso2Country": "NA", + "geonameId": "3352844", + "latitudeAirport": -22.683332, + "longitudeAirport": 14.566667, + "nameAirport": "Swakopmund", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "8", + "airportId": 7454, + "codeIataAirport": "SWQ", + "codeIataCity": "SWQ", + "codeIcaoAirport": "WADS", + "codeIso2Country": "ID", + "geonameId": "6301282", + "latitudeAirport": -8.5, + "longitudeAirport": 117.416664, + "nameAirport": "Brang Bidji", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "10", + "airportId": 7455, + "codeIataAirport": "SWR", + "codeIataCity": "SWR", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299155", + "latitudeAirport": -4.533333, + "longitudeAirport": 153.05, + "nameAirport": "Silur", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 7456, + "codeIataAirport": "SWS", + "codeIataCity": "SWS", + "codeIcaoAirport": "EGFH", + "codeIso2Country": "GB", + "geonameId": "6296586", + "latitudeAirport": 51.63333, + "longitudeAirport": -3.95, + "nameAirport": "Fairwood Comm", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "7", + "airportId": 7457, + "codeIataAirport": "SWT", + "codeIataCity": "SWT", + "codeIcaoAirport": "UNSS", + "codeIso2Country": "RU", + "geonameId": "1490796", + "latitudeAirport": 60.5, + "longitudeAirport": 77.0, + "nameAirport": "Strzhewoi", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Novosibirsk" + }, + { + "GMT": "9", + "airportId": 7458, + "codeIataAirport": "SWU", + "codeIataCity": "SWU", + "codeIcaoAirport": "RKSW", + "codeIso2Country": "KR", + "geonameId": "6301835", + "latitudeAirport": 37.283333, + "longitudeAirport": 127.01667, + "nameAirport": "Suwon", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "5", + "airportId": 7459, + "codeIataAirport": "SWV", + "codeIataCity": "SWV", + "codeIcaoAirport": "", + "codeIso2Country": "PK", + "geonameId": "0", + "latitudeAirport": 27.95, + "longitudeAirport": 68.63333, + "nameAirport": "Shikarpur", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-6", + "airportId": 7460, + "codeIataAirport": "SWW", + "codeIataCity": "SWW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.466667, + "longitudeAirport": -100.4, + "nameAirport": "Sweetwater", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 7461, + "codeIataAirport": "SWX", + "codeIataCity": "SWX", + "codeIcaoAirport": "FBSW", + "codeIso2Country": "BW", + "geonameId": "6296952", + "latitudeAirport": -18.383333, + "longitudeAirport": 21.833332, + "nameAirport": "Shakawe", + "nameCountry": "Botswana", + "phone": "", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "8", + "airportId": 7462, + "codeIataAirport": "SWY", + "codeIataCity": "SWY", + "codeIcaoAirport": "WMBA", + "codeIso2Country": "MY", + "geonameId": "6301252", + "latitudeAirport": 4.216667, + "longitudeAirport": 100.7, + "nameAirport": "Sitiawan", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "10", + "airportId": 7463, + "codeIataAirport": "SXA", + "codeIataCity": "SXA", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2086830", + "latitudeAirport": -6.033333, + "longitudeAirport": 147.61667, + "nameAirport": "Sialum", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 7464, + "codeIataAirport": "SXB", + "codeIataCity": "SXB", + "codeIcaoAirport": "LFST", + "codeIso2Country": "FR", + "geonameId": "6299475", + "latitudeAirport": 48.544876, + "longitudeAirport": 7.627674, + "nameAirport": "Entzheim", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-8", + "airportId": 7465, + "codeIataAirport": "SXC", + "codeIataCity": "AVX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.5, + "longitudeAirport": -118.416664, + "nameAirport": "Avalo Vor/WP", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 7466, + "codeIataAirport": "SXE", + "codeIataCity": "SXE", + "codeIcaoAirport": "YMES", + "codeIso2Country": "AU", + "geonameId": "6301312", + "latitudeAirport": -38.166668, + "longitudeAirport": 147.0, + "nameAirport": "Sale", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "1", + "airportId": 7467, + "codeIataAirport": "SXF", + "codeIataCity": "BER", + "codeIcaoAirport": "EDDB", + "codeIso2Country": "DE", + "geonameId": "3208733", + "latitudeAirport": 52.370277, + "longitudeAirport": 13.521388, + "nameAirport": "Berlin-Schoenefeld", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "2", + "airportId": 7468, + "codeIataAirport": "SXG", + "codeIataCity": "SXG", + "codeIcaoAirport": "FLSN", + "codeIso2Country": "ZM", + "geonameId": "6297027", + "latitudeAirport": -16.119444, + "longitudeAirport": 23.281944, + "nameAirport": "Senanga", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "10", + "airportId": 7469, + "codeIataAirport": "SXH", + "codeIataCity": "SXH", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2086997", + "latitudeAirport": -9.983333, + "longitudeAirport": 151.18333, + "nameAirport": "Sehulea", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3.30", + "airportId": 7470, + "codeIataAirport": "SXI", + "codeIataCity": "SXI", + "codeIcaoAirport": "OIBS", + "codeIso2Country": "IR", + "geonameId": "6300045", + "latitudeAirport": 25.916668, + "longitudeAirport": 54.533333, + "nameAirport": "Sirri Island", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "8", + "airportId": 7471, + "codeIataAirport": "SXJ", + "codeIataCity": "SXJ", + "codeIcaoAirport": "ZWSS", + "codeIso2Country": "CN", + "geonameId": "7730305", + "latitudeAirport": 42.816666, + "longitudeAirport": 90.23333, + "nameAirport": "Shanshan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9", + "airportId": 7472, + "codeIataAirport": "SXK", + "codeIataCity": "SXK", + "codeIcaoAirport": "WAPI", + "codeIso2Country": "ID", + "geonameId": "6301201", + "latitudeAirport": -7.966667, + "longitudeAirport": 131.31667, + "nameAirport": "Saumlaki", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "0", + "airportId": 7473, + "codeIataAirport": "SXL", + "codeIataCity": "SXL", + "codeIcaoAirport": "EISG", + "codeIso2Country": "IE", + "geonameId": "7668221", + "latitudeAirport": 54.283333, + "longitudeAirport": -8.466667, + "nameAirport": "Sligo", + "nameCountry": "Ireland", + "phone": "", + "timezone": "Europe/Dublin" + }, + { + "GMT": "-4", + "airportId": 7474, + "codeIataAirport": "SXM", + "codeIataCity": "SXM", + "codeIcaoAirport": "TNCM", + "codeIso2Country": "SX", + "geonameId": "3513358", + "latitudeAirport": 18.044722, + "longitudeAirport": -63.11406, + "nameAirport": "Princess Juliana International", + "nameCountry": "Sint Maarten", + "phone": "599-546-7542", + "timezone": "America/Lower_Princes" + }, + { + "GMT": "2", + "airportId": 7475, + "codeIataAirport": "SXN", + "codeIataCity": "SXN", + "codeIcaoAirport": "FBSN", + "codeIso2Country": "BW", + "geonameId": "6296950", + "latitudeAirport": -20.55, + "longitudeAirport": 26.116667, + "nameAirport": "Suapan", + "nameCountry": "Botswana", + "phone": "", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "-4", + "airportId": 7476, + "codeIataAirport": "SXO", + "codeIataCity": "SXO", + "codeIcaoAirport": "SWFX", + "codeIso2Country": "BR", + "geonameId": "7731524", + "latitudeAirport": -11.6, + "longitudeAirport": -50.65, + "nameAirport": "Sao Felix Do Araguaia", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-9", + "airportId": 7477, + "codeIataAirport": "SXP", + "codeIataCity": "SXP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "7910193", + "latitudeAirport": 62.533333, + "longitudeAirport": -164.83333, + "nameAirport": "Sheldon SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 7478, + "codeIataAirport": "SXQ", + "codeIataCity": "SXQ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5874680", + "latitudeAirport": 60.475555, + "longitudeAirport": -151.03639, + "nameAirport": "Soldotna", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "5.30", + "airportId": 7479, + "codeIataAirport": "SXR", + "codeIataCity": "SXR", + "codeIcaoAirport": "VISR", + "codeIso2Country": "IN", + "geonameId": "7668609", + "latitudeAirport": 34.002308, + "longitudeAirport": 74.762634, + "nameAirport": "Srinagar", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "8", + "airportId": 7480, + "codeIataAirport": "SXS", + "codeIataCity": "SXS", + "codeIcaoAirport": "WBKH", + "codeIso2Country": "MY", + "geonameId": "7731525", + "latitudeAirport": 5.089722, + "longitudeAirport": 119.09167, + "nameAirport": "Sahabat 16", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "8", + "airportId": 7481, + "codeIataAirport": "SXT", + "codeIataCity": "SXT", + "codeIcaoAirport": "WMAN", + "codeIso2Country": "MY", + "geonameId": "7731526", + "latitudeAirport": 4.330556, + "longitudeAirport": 102.39667, + "nameAirport": "Taman Negara", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "3", + "airportId": 7482, + "codeIataAirport": "SXU", + "codeIataCity": "SXU", + "codeIcaoAirport": "HASD", + "codeIso2Country": "ET", + "geonameId": "7730594", + "latitudeAirport": 6.836111, + "longitudeAirport": 37.775, + "nameAirport": "Soddu", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "5.30", + "airportId": 7483, + "codeIataAirport": "SXV", + "codeIataCity": "SXV", + "codeIcaoAirport": "VOSM", + "codeIso2Country": "IN", + "geonameId": "7668636", + "latitudeAirport": 11.65, + "longitudeAirport": 78.166664, + "nameAirport": "Salem", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "airportId": 7484, + "codeIataAirport": "SXW", + "codeIataCity": "SXW", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2087095", + "latitudeAirport": -5.971389, + "longitudeAirport": 148.95305, + "nameAirport": "Sauren", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "airportId": 7485, + "codeIataAirport": "SXX", + "codeIataCity": "SXX", + "codeIcaoAirport": "SNFX", + "codeIso2Country": "BR", + "geonameId": "7731527", + "latitudeAirport": -6.633333, + "longitudeAirport": -51.983334, + "nameAirport": "Sao Felix Do Xingu", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Belem" + }, + { + "GMT": "-5", + "airportId": 7486, + "codeIataAirport": "SXY", + "codeIataCity": "SXY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.316666, + "longitudeAirport": -75.4, + "nameAirport": "Sidney", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 7487, + "codeIataAirport": "SXZ", + "codeIataCity": "SXZ", + "codeIcaoAirport": "LTCL", + "codeIso2Country": "TR", + "geonameId": "7009657", + "latitudeAirport": 37.98, + "longitudeAirport": 41.84, + "nameAirport": "Siirt", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-10", + "airportId": 7488, + "codeIataAirport": "SYA", + "codeIataCity": "SYA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 52.7175, + "longitudeAirport": 174.08945, + "nameAirport": "Shemya AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Adak" + }, + { + "GMT": "-9", + "airportId": 7489, + "codeIataAirport": "SYB", + "codeIataCity": "SYB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "7910269", + "latitudeAirport": 58.166668, + "longitudeAirport": -152.5, + "nameAirport": "Seal Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 7490, + "codeIataAirport": "SYC", + "codeIataCity": "SYC", + "codeIcaoAirport": "", + "codeIso2Country": "PE", + "geonameId": "3928717", + "latitudeAirport": -11.9, + "longitudeAirport": -69.166664, + "nameAirport": "Shiringayoc", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "10", + "airportId": 7491, + "codeIataAirport": "SYD", + "codeIataCity": "SYD", + "codeIcaoAirport": "YSSY", + "codeIso2Country": "AU", + "geonameId": "2208268", + "latitudeAirport": -33.932922, + "longitudeAirport": 151.1799, + "nameAirport": "Sydney Kingsford Smith Airport", + "nameCountry": "Australia", + "phone": "+61 2 9667 91", + "timezone": "Australia/Sydney" + }, + { + "GMT": "3", + "airportId": 7492, + "codeIataAirport": "SYE", + "codeIataCity": "SYE", + "codeIcaoAirport": "OYSH", + "codeIso2Country": "YE", + "geonameId": "6300141", + "latitudeAirport": 16.866667, + "longitudeAirport": 43.61667, + "nameAirport": "Sadah", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "-8", + "airportId": 7493, + "codeIataAirport": "SYF", + "codeIataCity": "SYF", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6147649", + "latitudeAirport": 49.15, + "longitudeAirport": -123.69722, + "nameAirport": "Silva Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "5.45", + "airportId": 7494, + "codeIataAirport": "SYH", + "codeIataCity": "SYH", + "codeIcaoAirport": "", + "codeIso2Country": "NP", + "geonameId": "7996898", + "latitudeAirport": 27.81, + "longitudeAirport": 86.71, + "nameAirport": "Syangboche", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-6", + "airportId": 7495, + "codeIataAirport": "SYI", + "codeIataCity": "SYI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 35.560833, + "longitudeAirport": -86.4425, + "nameAirport": "Bomar Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3.30", + "airportId": 7496, + "codeIataAirport": "SYJ", + "codeIataCity": "SYJ", + "codeIcaoAirport": "OIKY", + "codeIso2Country": "IR", + "geonameId": "7519875", + "latitudeAirport": 29.550123, + "longitudeAirport": 55.664917, + "nameAirport": "Sirjan", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "0", + "airportId": 7497, + "codeIataAirport": "SYK", + "codeIataCity": "SYK", + "codeIcaoAirport": "BIST", + "codeIso2Country": "IS", + "geonameId": "6295713", + "latitudeAirport": 65.1, + "longitudeAirport": -22.8, + "nameAirport": "Stykkisholmur", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-8", + "airportId": 7498, + "codeIataAirport": "SYL", + "codeIataCity": "SYL", + "codeIcaoAirport": "KSYL", + "codeIso2Country": "US", + "geonameId": "8299243", + "latitudeAirport": 35.75, + "longitudeAirport": -120.7, + "nameAirport": "Roberts AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 7499, + "codeIataAirport": "SYM", + "codeIataCity": "SYM", + "codeIcaoAirport": "ZPSM", + "codeIso2Country": "CN", + "geonameId": "7731528", + "latitudeAirport": 22.79657, + "longitudeAirport": 100.96222, + "nameAirport": "Simao", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 7500, + "codeIataAirport": "SYN", + "codeIataCity": "SYN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5048549", + "latitudeAirport": 32.13333, + "longitudeAirport": -101.8, + "nameAirport": "Carleton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "airportId": 7501, + "codeIataAirport": "SYO", + "codeIataCity": "SYO", + "codeIcaoAirport": "RJSY", + "codeIso2Country": "JP", + "geonameId": "6300401", + "latitudeAirport": 38.809444, + "longitudeAirport": 139.79056, + "nameAirport": "Shonai", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "airportId": 7502, + "codeIataAirport": "SYP", + "codeIataCity": "SYP", + "codeIcaoAirport": "MPSA", + "codeIso2Country": "PA", + "geonameId": "6299900", + "latitudeAirport": 8.1, + "longitudeAirport": -80.98333, + "nameAirport": "Santiago", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "-6", + "airportId": 7503, + "codeIataAirport": "SYQ", + "codeIataCity": "SYQ", + "codeIcaoAirport": "MRPV", + "codeIso2Country": "CR", + "geonameId": "6301806", + "latitudeAirport": 9.95, + "longitudeAirport": -84.13333, + "nameAirport": "Tobias Bolaños International", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-5", + "airportId": 7504, + "codeIataAirport": "SYR", + "codeIataCity": "SYR", + "codeIcaoAirport": "KSYR", + "codeIso2Country": "US", + "geonameId": "6299141", + "latitudeAirport": 43.113983, + "longitudeAirport": -76.11223, + "nameAirport": "Syracuse Hancock International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "airportId": 7505, + "codeIataAirport": "SYS", + "codeIataCity": "SYS", + "codeIcaoAirport": "", + "codeIso2Country": "KR", + "geonameId": "0", + "latitudeAirport": 34.83389, + "longitudeAirport": 127.61694, + "nameAirport": "Yeosu", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "1", + "airportId": 7506, + "codeIataAirport": "SYT", + "codeIataCity": "SYT", + "codeIcaoAirport": "LFLN", + "codeIso2Country": "FR", + "geonameId": "6299403", + "latitudeAirport": 46.4, + "longitudeAirport": 4.033333, + "nameAirport": "Charolais Bourgogne S.", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "airportId": 7507, + "codeIataAirport": "SYU", + "codeIataCity": "SYU", + "codeIcaoAirport": "YWBS", + "codeIso2Country": "AU", + "geonameId": "7731529", + "latitudeAirport": -10.208333, + "longitudeAirport": 142.81667, + "nameAirport": "Warraber Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 7508, + "codeIataAirport": "SYV", + "codeIataCity": "SYV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 31.516666, + "longitudeAirport": -83.833336, + "nameAirport": "Sylvester", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "5", + "airportId": 7509, + "codeIataAirport": "SYW", + "codeIataCity": "SYW", + "codeIcaoAirport": "OPSN", + "codeIso2Country": "PK", + "geonameId": "7668406", + "latitudeAirport": 26.416668, + "longitudeAirport": 67.85, + "nameAirport": "Sehwen Sharif", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "8", + "airportId": 7510, + "codeIataAirport": "SYX", + "codeIataCity": "SYX", + "codeIcaoAirport": "ZJSY", + "codeIso2Country": "CN", + "geonameId": "6301369", + "latitudeAirport": 18.31063, + "longitudeAirport": 109.409706, + "nameAirport": "Fenghuang International (Phoenix International)", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "0", + "airportId": 7511, + "codeIataAirport": "SYY", + "codeIataCity": "SYY", + "codeIcaoAirport": "EGPO", + "codeIso2Country": "GB", + "geonameId": "6296633", + "latitudeAirport": 58.213627, + "longitudeAirport": -6.321995, + "nameAirport": "Stornoway", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "3.30", + "airportId": 7512, + "codeIataAirport": "SYZ", + "codeIataCity": "SYZ", + "codeIcaoAirport": "OISS", + "codeIso2Country": "IR", + "geonameId": "6300074", + "latitudeAirport": 29.54613, + "longitudeAirport": 52.58997, + "nameAirport": "Shahid Dastghaib International", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "1", + "airportId": 7513, + "codeIataAirport": "SZA", + "codeIataCity": "SZA", + "codeIcaoAirport": "FNSO", + "codeIso2Country": "AO", + "geonameId": "7668254", + "latitudeAirport": -6.033333, + "longitudeAirport": 12.416667, + "nameAirport": "Soyo", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "8", + "airportId": 7514, + "codeIataAirport": "SZB", + "codeIataCity": "KUL", + "codeIcaoAirport": "WMSA", + "codeIso2Country": "MY", + "geonameId": "6301258", + "latitudeAirport": 3.130644, + "longitudeAirport": 101.558075, + "nameAirport": "Sultan Abdul Aziz Shah", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "-6", + "airportId": 7515, + "codeIataAirport": "SZC", + "codeIataCity": "SZC", + "codeIcaoAirport": "", + "codeIso2Country": "CR", + "geonameId": "8299130", + "latitudeAirport": 10.254722, + "longitudeAirport": -85.58417, + "nameAirport": "Guanacaste", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "3", + "airportId": 7516, + "codeIataAirport": "SZE", + "codeIataCity": "SZE", + "codeIcaoAirport": "", + "codeIso2Country": "ET", + "geonameId": "6913519", + "latitudeAirport": 11.5, + "longitudeAirport": 41.083332, + "nameAirport": "Semera Airport", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "3", + "airportId": 7517, + "codeIataAirport": "SZF", + "codeIataCity": "SZF", + "codeIcaoAirport": "LTFH", + "codeIso2Country": "TR", + "geonameId": "6299772", + "latitudeAirport": 41.25738, + "longitudeAirport": 36.555058, + "nameAirport": "Carsamba", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "1", + "airportId": 7518, + "codeIataAirport": "SZG", + "codeIataCity": "SZG", + "codeIcaoAirport": "LOWS", + "codeIso2Country": "AT", + "geonameId": "6299671", + "latitudeAirport": 47.791225, + "longitudeAirport": 12.997331, + "nameAirport": "W. A. Mozart", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "8", + "airportId": 7519, + "codeIataAirport": "SZH", + "codeIataCity": "SZH", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "1627680", + "latitudeAirport": -0.966667, + "longitudeAirport": 117.13333, + "nameAirport": "Senipah", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "6", + "airportId": 7520, + "codeIataAirport": "SZI", + "codeIataCity": "SZI", + "codeIcaoAirport": "", + "codeIso2Country": "KZ", + "geonameId": "0", + "latitudeAirport": 47.7, + "longitudeAirport": 84.86667, + "nameAirport": "Zaisan", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-5", + "airportId": 7521, + "codeIataAirport": "SZJ", + "codeIataCity": "SZJ", + "codeIcaoAirport": "MUSN", + "codeIso2Country": "CU", + "geonameId": "3536196", + "latitudeAirport": 21.633333, + "longitudeAirport": -82.95, + "nameAirport": "Siguanea", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "2", + "airportId": 7522, + "codeIataAirport": "SZK", + "codeIataCity": "SZK", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "954955", + "latitudeAirport": -24.9625, + "longitudeAirport": 31.586111, + "nameAirport": "Skukuza", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-6", + "airportId": 7523, + "codeIataAirport": "SZL", + "codeIataCity": "SZL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.766666, + "longitudeAirport": -93.73333, + "nameAirport": "Whiteman AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 7524, + "codeIataAirport": "SZM", + "codeIataCity": "SZM", + "codeIcaoAirport": "", + "codeIso2Country": "NA", + "geonameId": "8260979", + "latitudeAirport": -24.583332, + "longitudeAirport": 15.833333, + "nameAirport": "Sesriem", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-8", + "airportId": 7525, + "codeIataAirport": "SZN", + "codeIataCity": "SBA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.060555, + "longitudeAirport": -119.915, + "nameAirport": "Santa Cruz Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-8", + "airportId": 7526, + "codeIataAirport": "SZP", + "codeIataCity": "SZP", + "codeIcaoAirport": "KSZP", + "codeIso2Country": "US", + "geonameId": "5393247", + "latitudeAirport": 34.35, + "longitudeAirport": -119.066666, + "nameAirport": "Oxnard", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "airportId": 7527, + "codeIataAirport": "SZR", + "codeIataCity": "SZR", + "codeIcaoAirport": "", + "codeIso2Country": "BG", + "geonameId": "726848", + "latitudeAirport": 42.433334, + "longitudeAirport": 25.616667, + "nameAirport": "Stara Zagora", + "nameCountry": "Bulgaria", + "phone": "", + "timezone": "Europe/Sofia" + }, + { + "GMT": "12", + "airportId": 7528, + "codeIataAirport": "SZS", + "codeIataCity": "SZS", + "codeIcaoAirport": "NZRC", + "codeIso2Country": "NZ", + "geonameId": "7730732", + "latitudeAirport": -47.0, + "longitudeAirport": 167.86667, + "nameAirport": "Stewart Island", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "0", + "airportId": 7529, + "codeIataAirport": "SZU", + "codeIataCity": "SZU", + "codeIcaoAirport": "", + "codeIso2Country": "ML", + "geonameId": "8298669", + "latitudeAirport": 13.433333, + "longitudeAirport": -6.283333, + "nameAirport": "Segou", + "nameCountry": "Mali", + "phone": "", + "timezone": "Africa/Bamako" + }, + { + "GMT": "8", + "airportId": 7530, + "codeIataAirport": "SZV", + "codeIataCity": "SZV", + "codeIcaoAirport": "ZSSZ", + "codeIso2Country": "CN", + "geonameId": "7730296", + "latitudeAirport": 31.3, + "longitudeAirport": 120.63333, + "nameAirport": "Suzhou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 7531, + "codeIataAirport": "SZW", + "codeIataCity": "SZW", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 53.433334, + "longitudeAirport": 11.783333, + "nameAirport": "Parchim Airport", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "airportId": 7532, + "codeIataAirport": "SZX", + "codeIataCity": "SZX", + "codeIcaoAirport": "ZGSZ", + "codeIso2Country": "CN", + "geonameId": "6301365", + "latitudeAirport": 22.639444, + "longitudeAirport": 113.81084, + "nameAirport": "Shenzhen", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 7533, + "codeIataAirport": "SZY", + "codeIataCity": "SZY", + "codeIcaoAirport": "EPSY", + "codeIso2Country": "PL", + "geonameId": "757155", + "latitudeAirport": 52.43611, + "longitudeAirport": 20.938334, + "nameAirport": "Mazury", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "1", + "airportId": 7534, + "codeIataAirport": "SZZ", + "codeIataCity": "SZZ", + "codeIcaoAirport": "EPSC", + "codeIso2Country": "PL", + "geonameId": "6296784", + "latitudeAirport": 53.593525, + "longitudeAirport": 14.894611, + "nameAirport": "Goleniow", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "-4", + "airportId": 7535, + "codeIataAirport": "TAB", + "codeIataCity": "TAB", + "codeIcaoAirport": "TTCP", + "codeIso2Country": "TT", + "geonameId": "3574707", + "latitudeAirport": 11.152541, + "longitudeAirport": -60.839684, + "nameAirport": "Crown Point Airport", + "nameCountry": "Trinidad and Tobago", + "phone": "", + "timezone": "America/Port_of_Spain" + }, + { + "GMT": "8", + "airportId": 7536, + "codeIataAirport": "TAC", + "codeIataCity": "TAC", + "codeIcaoAirport": "RPVA", + "codeIso2Country": "PH", + "geonameId": "6300492", + "latitudeAirport": 11.22684, + "longitudeAirport": 125.02592, + "nameAirport": "D.Z. Romualdez", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-7", + "airportId": 7537, + "codeIataAirport": "TAD", + "codeIataCity": "TAD", + "codeIcaoAirport": "KTAD", + "codeIso2Country": "US", + "geonameId": "5442007", + "latitudeAirport": 37.305557, + "longitudeAirport": -104.325, + "nameAirport": "Las Animas", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "9", + "airportId": 7538, + "codeIataAirport": "TAE", + "codeIataCity": "TAE", + "codeIcaoAirport": "RKTN", + "codeIso2Country": "KR", + "geonameId": "6301839", + "latitudeAirport": 35.899254, + "longitudeAirport": 128.63788, + "nameAirport": "Daegu", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "1", + "airportId": 7539, + "codeIataAirport": "TAF", + "codeIataCity": "ORN", + "codeIcaoAirport": "DAOL", + "codeIso2Country": "DZ", + "geonameId": "6296380", + "latitudeAirport": 35.627777, + "longitudeAirport": -0.610556, + "nameAirport": "Tafaraoui", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "8", + "airportId": 7540, + "codeIataAirport": "TAG", + "codeIataCity": "TAG", + "codeIcaoAirport": "RPVT", + "codeIso2Country": "PH", + "geonameId": "1684498", + "latitudeAirport": 9.657587, + "longitudeAirport": 123.853615, + "nameAirport": "Tagbilaran", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "11", + "airportId": 7541, + "codeIataAirport": "TAH", + "codeIataCity": "TAH", + "codeIcaoAirport": "NVVW", + "codeIso2Country": "VU", + "geonameId": "7730134", + "latitudeAirport": -19.458445, + "longitudeAirport": 169.22821, + "nameAirport": "Tanna", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "3", + "airportId": 7542, + "codeIataAirport": "TAI", + "codeIataCity": "TAI", + "codeIcaoAirport": "OYTZ", + "codeIso2Country": "YE", + "geonameId": "6300145", + "latitudeAirport": 13.685553, + "longitudeAirport": 44.134346, + "nameAirport": "Al Janad", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "10", + "airportId": 7543, + "codeIataAirport": "TAJ", + "codeIataCity": "ATP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "0", + "latitudeAirport": -3.183333, + "longitudeAirport": 142.41667, + "nameAirport": "Tadji", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "airportId": 7544, + "codeIataAirport": "TAK", + "codeIataCity": "TAK", + "codeIcaoAirport": "RJOT", + "codeIso2Country": "JP", + "geonameId": "6300384", + "latitudeAirport": 34.219017, + "longitudeAirport": 134.01825, + "nameAirport": "Takamatsu", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-9", + "airportId": 7545, + "codeIataAirport": "TAL", + "codeIataCity": "TAL", + "codeIcaoAirport": "PATA", + "codeIso2Country": "US", + "geonameId": "5875808", + "latitudeAirport": 65.175, + "longitudeAirport": -152.10806, + "nameAirport": "Ralph Calhoun", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 7546, + "codeIataAirport": "TAM", + "codeIataCity": "TAM", + "codeIcaoAirport": "MMTM", + "codeIso2Country": "MX", + "geonameId": "3527456", + "latitudeAirport": 22.289082, + "longitudeAirport": -97.87016, + "nameAirport": "Gen F Javier Mina", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Monterrey" + }, + { + "GMT": "10", + "airportId": 7547, + "codeIataAirport": "TAN", + "codeIataCity": "TAN", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2207332", + "latitudeAirport": -27.083332, + "longitudeAirport": 153.25, + "nameAirport": "Tangalooma", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "airportId": 7548, + "codeIataAirport": "TAO", + "codeIataCity": "TAO", + "codeIcaoAirport": "ZSQD", + "codeIso2Country": "CN", + "geonameId": "6301387", + "latitudeAirport": 36.265884, + "longitudeAirport": 120.38236, + "nameAirport": "Qingdao", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 7549, + "codeIataAirport": "TAP", + "codeIataCity": "TAP", + "codeIcaoAirport": "MMTP", + "codeIso2Country": "MX", + "geonameId": "3516266", + "latitudeAirport": 14.909722, + "longitudeAirport": -92.25306, + "nameAirport": "Tapachula International", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "9.30", + "airportId": 7550, + "codeIataAirport": "TAQ", + "codeIataCity": "TAQ", + "codeIcaoAirport": "YTAR", + "codeIso2Country": "AU", + "geonameId": "7731532", + "latitudeAirport": -30.683332, + "longitudeAirport": 134.55, + "nameAirport": "Tarcoola", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "1", + "airportId": 7551, + "codeIataAirport": "TAR", + "codeIataCity": "TAR", + "codeIcaoAirport": "LIBG", + "codeIso2Country": "IT", + "geonameId": "6299537", + "latitudeAirport": 40.517776, + "longitudeAirport": 17.401943, + "nameAirport": "M. A. Grottag", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "5", + "airportId": 7552, + "codeIataAirport": "TAS", + "codeIataCity": "TAS", + "codeIcaoAirport": "UTTT", + "codeIso2Country": "UZ", + "geonameId": "6301013", + "latitudeAirport": 41.262714, + "longitudeAirport": 69.26619, + "nameAirport": "Tashkent International", + "nameCountry": "Uzbekistan", + "phone": "", + "timezone": "Asia/Tashkent" + }, + { + "GMT": "1", + "airportId": 7553, + "codeIataAirport": "TAT", + "codeIataCity": "TAT", + "codeIcaoAirport": "LZTT", + "codeIso2Country": "SK", + "geonameId": "6299789", + "latitudeAirport": 49.071945, + "longitudeAirport": 20.240278, + "nameAirport": "Poprad/Tatry", + "nameCountry": "Slovakia", + "phone": "", + "timezone": "Europe/Bratislava" + }, + { + "GMT": "-5", + "airportId": 7554, + "codeIataAirport": "TAU", + "codeIataCity": "TAU", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "3667355", + "latitudeAirport": 5.0, + "longitudeAirport": -72.73333, + "nameAirport": "Tauramena", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "airportId": 7555, + "codeIataAirport": "TAW", + "codeIataCity": "TAW", + "codeIcaoAirport": "SUTB", + "codeIso2Country": "UY", + "geonameId": "6300837", + "latitudeAirport": -31.75, + "longitudeAirport": -55.916668, + "nameAirport": "Tacuarembo", + "nameCountry": "Uruguay", + "phone": "", + "timezone": "America/Montevideo" + }, + { + "GMT": "9", + "airportId": 7556, + "codeIataAirport": "TAX", + "codeIataCity": "TAX", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "8260902", + "latitudeAirport": -1.766667, + "longitudeAirport": 124.8, + "nameAirport": "Taliabu", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "2", + "airportId": 7557, + "codeIataAirport": "TAY", + "codeIataCity": "TAY", + "codeIcaoAirport": "EETU", + "codeIso2Country": "EE", + "geonameId": "588335", + "latitudeAirport": 58.333332, + "longitudeAirport": 26.733334, + "nameAirport": "Tartu", + "nameCountry": "Estonia", + "phone": "", + "timezone": "Europe/Tallinn" + }, + { + "GMT": "5", + "airportId": 7558, + "codeIataAirport": "TAZ", + "codeIataCity": "TAZ", + "codeIcaoAirport": "UTAT", + "codeIso2Country": "TM", + "geonameId": "7668541", + "latitudeAirport": 41.833332, + "longitudeAirport": 59.966667, + "nameAirport": "Dashoguz", + "nameCountry": "Turkmenistan", + "phone": "", + "timezone": "Asia/Ashgabat" + }, + { + "GMT": "7", + "airportId": 7559, + "codeIataAirport": "TBB", + "codeIataCity": "TBB", + "codeIcaoAirport": "VVTH", + "codeIso2Country": "VN", + "geonameId": "7730228", + "latitudeAirport": 13.044167, + "longitudeAirport": 109.33972, + "nameAirport": "Dong Tac", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-7", + "airportId": 7560, + "codeIataAirport": "TBC", + "codeIataCity": "TBC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5318281", + "latitudeAirport": 36.13333, + "longitudeAirport": -111.23333, + "nameAirport": "Tuba City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Shiprock" + }, + { + "GMT": "-5", + "airportId": 7561, + "codeIataAirport": "TBD", + "codeIataCity": "TBD", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8260907", + "latitudeAirport": 2.766667, + "longitudeAirport": -77.7, + "nameAirport": "Timbiqui", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "airportId": 7562, + "codeIataAirport": "TBE", + "codeIataCity": "TBE", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2085452", + "latitudeAirport": -4.2, + "longitudeAirport": 143.51666, + "nameAirport": "Timbunke", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "12", + "airportId": 7563, + "codeIataAirport": "TBF", + "codeIataCity": "TBF", + "codeIcaoAirport": "", + "codeIso2Country": "KI", + "geonameId": "0", + "latitudeAirport": -1.231944, + "longitudeAirport": 174.78, + "nameAirport": "Tabiteuea North", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "10", + "airportId": 7564, + "codeIataAirport": "TBG", + "codeIataCity": "TBG", + "codeIcaoAirport": "AYTB", + "codeIso2Country": "PG", + "geonameId": "7730414", + "latitudeAirport": -5.274722, + "longitudeAirport": 141.227, + "nameAirport": "Tabubil", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 7565, + "codeIataAirport": "TBH", + "codeIataCity": "TBH", + "codeIcaoAirport": "RPVU", + "codeIso2Country": "PH", + "geonameId": "6300476", + "latitudeAirport": 12.31612, + "longitudeAirport": 122.08056, + "nameAirport": "Romblon", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-5", + "airportId": 7566, + "codeIataAirport": "TBI", + "codeIataCity": "TBI", + "codeIcaoAirport": "MYCB", + "codeIso2Country": "BS", + "geonameId": "3571819", + "latitudeAirport": 24.315, + "longitudeAirport": -75.45361, + "nameAirport": "New Bright", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "1", + "airportId": 7567, + "codeIataAirport": "TBJ", + "codeIataCity": "TBJ", + "codeIcaoAirport": "DTKA", + "codeIso2Country": "TN", + "geonameId": "6296463", + "latitudeAirport": 36.978333, + "longitudeAirport": 8.876389, + "nameAirport": "Tabarka", + "nameCountry": "Tunisia", + "phone": "", + "timezone": "Africa/Tunis" + }, + { + "GMT": "9.30", + "airportId": 7568, + "codeIataAirport": "TBK", + "codeIataCity": "TBK", + "codeIcaoAirport": "YTBR", + "codeIso2Country": "AU", + "geonameId": "7731533", + "latitudeAirport": -15.65, + "longitudeAirport": 130.48334, + "nameAirport": "Timber Creek", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "8", + "airportId": 7569, + "codeIataAirport": "TBL", + "codeIataCity": "TBL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8260971", + "latitudeAirport": -17.3, + "longitudeAirport": 126.833336, + "nameAirport": "Tableland", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "airportId": 7570, + "codeIataAirport": "TBM", + "codeIataCity": "TBM", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731534", + "latitudeAirport": -3.25, + "longitudeAirport": 112.583336, + "nameAirport": "Tumbang Samba", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-6", + "airportId": 7571, + "codeIataAirport": "TBN", + "codeIataCity": "TBN", + "codeIcaoAirport": "KTBN", + "codeIso2Country": "US", + "geonameId": "7259265", + "latitudeAirport": 37.74139, + "longitudeAirport": -92.14056, + "nameAirport": "Forney AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 7572, + "codeIataAirport": "TBO", + "codeIataCity": "TBO", + "codeIcaoAirport": "HTTB", + "codeIso2Country": "TZ", + "geonameId": "149659", + "latitudeAirport": -5.0725, + "longitudeAirport": 32.8375, + "nameAirport": "Tabora", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-5", + "airportId": 7573, + "codeIataAirport": "TBP", + "codeIataCity": "TBP", + "codeIcaoAirport": "SPME", + "codeIso2Country": "PE", + "geonameId": "6300812", + "latitudeAirport": -3.566667, + "longitudeAirport": -80.416664, + "nameAirport": "Tumbes", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "10", + "airportId": 7574, + "codeIataAirport": "TBQ", + "codeIataCity": "TBQ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2085796", + "latitudeAirport": 12.3, + "longitudeAirport": 22.75, + "nameAirport": "Tarabo", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 7575, + "codeIataAirport": "TBR", + "codeIataCity": "TBR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4224421", + "latitudeAirport": 32.490276, + "longitudeAirport": -81.73556, + "nameAirport": "Statesboro-Bulloch County Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "4", + "airportId": 7576, + "codeIataAirport": "TBS", + "codeIataCity": "TBS", + "codeIcaoAirport": "UGGG", + "codeIso2Country": "GE", + "geonameId": "6452621", + "latitudeAirport": 41.674065, + "longitudeAirport": 44.958958, + "nameAirport": "Novo Alexeyevka International", + "nameCountry": "Georgia", + "phone": "", + "timezone": "Asia/Tbilisi" + }, + { + "GMT": "-4", + "airportId": 7577, + "codeIataAirport": "TBT", + "codeIataCity": "TBT", + "codeIcaoAirport": "SBTT", + "codeIso2Country": "BR", + "geonameId": "6300678", + "latitudeAirport": -4.233333, + "longitudeAirport": -69.933334, + "nameAirport": "Internacional", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "13", + "airportId": 7578, + "codeIataAirport": "TBU", + "codeIataCity": "TBU", + "codeIcaoAirport": "NFTF", + "codeIso2Country": "TO", + "geonameId": "6299949", + "latitudeAirport": -21.24117, + "longitudeAirport": -175.14131, + "nameAirport": "Fua'amotu International", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Tongatapu" + }, + { + "GMT": "12", + "airportId": 7579, + "codeIataAirport": "TBV", + "codeIataCity": "TBV", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "2080879", + "latitudeAirport": 10.038889, + "longitudeAirport": 169.94722, + "nameAirport": "Tabal", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "3", + "airportId": 7580, + "codeIataAirport": "TBW", + "codeIataCity": "TBW", + "codeIcaoAirport": "UUOT", + "codeIso2Country": "RU", + "geonameId": "7668554", + "latitudeAirport": 52.716667, + "longitudeAirport": 41.433334, + "nameAirport": "Tambov", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "2", + "airportId": 7581, + "codeIataAirport": "TBY", + "codeIataCity": "TBY", + "codeIcaoAirport": "FBTS", + "codeIso2Country": "BW", + "geonameId": "6296954", + "latitudeAirport": -26.066668, + "longitudeAirport": 22.466667, + "nameAirport": "Tsabong", + "nameCountry": "Botswana", + "phone": "", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "3.30", + "airportId": 7582, + "codeIataAirport": "TBZ", + "codeIataCity": "TBZ", + "codeIcaoAirport": "OITT", + "codeIso2Country": "IR", + "geonameId": "388610", + "latitudeAirport": 38.12285, + "longitudeAirport": 46.244274, + "nameAirport": "Tabriz", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "9.30", + "airportId": 7583, + "codeIataAirport": "TCA", + "codeIataCity": "TCA", + "codeIcaoAirport": "YTNK", + "codeIso2Country": "AU", + "geonameId": "6301307", + "latitudeAirport": -19.638056, + "longitudeAirport": 134.18083, + "nameAirport": "Tennant Creek", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-5", + "airportId": 7584, + "codeIataAirport": "TCB", + "codeIataCity": "TCB", + "codeIcaoAirport": "MYAT", + "codeIso2Country": "BS", + "geonameId": "7535668", + "latitudeAirport": 26.735, + "longitudeAirport": -77.37222, + "nameAirport": "Treasure Cay", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-7", + "airportId": 7585, + "codeIataAirport": "TCC", + "codeIataCity": "TCC", + "codeIcaoAirport": "KTCC", + "codeIso2Country": "US", + "geonameId": "5495373", + "latitudeAirport": 35.166668, + "longitudeAirport": -103.73333, + "nameAirport": "Tucumcari", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 7586, + "codeIataAirport": "TCD", + "codeIataCity": "TCD", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "7731535", + "latitudeAirport": -2.933333, + "longitudeAirport": -69.76667, + "nameAirport": "Tarapaca", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "2", + "airportId": 7587, + "codeIataAirport": "TCE", + "codeIataCity": "TCE", + "codeIcaoAirport": "LRTC", + "codeIso2Country": "RO", + "geonameId": "6299711", + "latitudeAirport": 45.183334, + "longitudeAirport": 28.816668, + "nameAirport": "Tulcea", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "-6", + "airportId": 7588, + "codeIataAirport": "TCF", + "codeIataCity": "TCF", + "codeIcaoAirport": "", + "codeIso2Country": "HN", + "geonameId": "3600704", + "latitudeAirport": 15.658889, + "longitudeAirport": -85.99472, + "nameAirport": "Tocoa", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "8", + "airportId": 7589, + "codeIataAirport": "TCG", + "codeIataCity": "TCG", + "codeIcaoAirport": "SPCH", + "codeIso2Country": "CN", + "geonameId": "7668812", + "latitudeAirport": 46.666668, + "longitudeAirport": 83.333336, + "nameAirport": "Tacheng", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 7590, + "codeIataAirport": "TCH", + "codeIataCity": "TCH", + "codeIcaoAirport": "FOOT", + "codeIso2Country": "GA", + "geonameId": "6297076", + "latitudeAirport": -2.816667, + "longitudeAirport": 11.0, + "nameAirport": "Tchibanga", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "10", + "airportId": 7591, + "codeIataAirport": "TCJ", + "codeIataCity": "TCJ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2085203", + "latitudeAirport": -4.016667, + "longitudeAirport": 143.13333, + "nameAirport": "Torembi Airport", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 7592, + "codeIataAirport": "TCK", + "codeIataCity": "TCK", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2085433", + "latitudeAirport": -4.083333, + "longitudeAirport": 143.38333, + "nameAirport": "Tinboli Airport", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 7593, + "codeIataAirport": "TCL", + "codeIataCity": "TCL", + "codeIcaoAirport": "KTCL", + "codeIso2Country": "US", + "geonameId": "4094473", + "latitudeAirport": 33.22111, + "longitudeAirport": -87.61083, + "nameAirport": "Van De Graaf", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 7594, + "codeIataAirport": "TCM", + "codeIataCity": "TIW", + "codeIcaoAirport": "KTCM", + "codeIso2Country": "US", + "geonameId": "5790367", + "latitudeAirport": 47.176666, + "longitudeAirport": -122.56461, + "nameAirport": "McChord AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 7595, + "codeIataAirport": "TCN", + "codeIataCity": "TCN", + "codeIcaoAirport": "MMHC", + "codeIso2Country": "MX", + "geonameId": "7668348", + "latitudeAirport": 18.499722, + "longitudeAirport": -97.41778, + "nameAirport": "Tehuacan", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-5", + "airportId": 7596, + "codeIataAirport": "TCO", + "codeIataCity": "TCO", + "codeIcaoAirport": "SKCO", + "codeIso2Country": "CO", + "geonameId": "7668456", + "latitudeAirport": 1.816667, + "longitudeAirport": -78.76667, + "nameAirport": "La Florida", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "2", + "airportId": 7597, + "codeIataAirport": "TCP", + "codeIataCity": "TCP", + "codeIcaoAirport": "HETB", + "codeIso2Country": "EG", + "geonameId": "6297300", + "latitudeAirport": 29.55, + "longitudeAirport": 34.916668, + "nameAirport": "Taba International", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-5", + "airportId": 7598, + "codeIataAirport": "TCQ", + "codeIataCity": "TCQ", + "codeIcaoAirport": "SPTN", + "codeIso2Country": "PE", + "geonameId": "3928129", + "latitudeAirport": -18.063334, + "longitudeAirport": -70.27889, + "nameAirport": "Tacna", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "5.30", + "airportId": 7599, + "codeIataAirport": "TCR", + "codeIataCity": "TCR", + "codeIcaoAirport": "", + "codeIso2Country": "IN", + "geonameId": "7910377", + "latitudeAirport": 8.716667, + "longitudeAirport": 78.03333, + "nameAirport": "Tuticorin", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-7", + "airportId": 7600, + "codeIataAirport": "TCS", + "codeIataCity": "TCS", + "codeIcaoAirport": "KTCS", + "codeIso2Country": "US", + "geonameId": "5495296", + "latitudeAirport": 33.13333, + "longitudeAirport": -107.25, + "nameAirport": "Truth or Consequences", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "airportId": 7601, + "codeIataAirport": "TCT", + "codeIataCity": "TCT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5875719", + "latitudeAirport": 62.99278, + "longitudeAirport": -156.06555, + "nameAirport": "Takotna", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 7602, + "codeIataAirport": "TCU", + "codeIataCity": "TCU", + "codeIcaoAirport": "FATN", + "codeIso2Country": "ZA", + "geonameId": "7730493", + "latitudeAirport": -29.283333, + "longitudeAirport": 26.866667, + "nameAirport": "Thaba Nchu", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "10", + "airportId": 7603, + "codeIataAirport": "TCW", + "codeIataCity": "TCW", + "codeIcaoAirport": "YTOC", + "codeIso2Country": "AU", + "geonameId": "7731536", + "latitudeAirport": -35.816666, + "longitudeAirport": 145.6, + "nameAirport": "Tocumwal", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "3.30", + "airportId": 7604, + "codeIataAirport": "TCX", + "codeIataCity": "TCX", + "codeIcaoAirport": "OIMT", + "codeIso2Country": "IR", + "geonameId": "6300068", + "latitudeAirport": 33.68, + "longitudeAirport": 56.90139, + "nameAirport": "Tabas", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "2", + "airportId": 7605, + "codeIataAirport": "TCY", + "codeIataCity": "TCY", + "codeIcaoAirport": "", + "codeIso2Country": "NA", + "geonameId": "8260906", + "latitudeAirport": -19.983334, + "longitudeAirport": 13.0, + "nameAirport": "Terrace Bay", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "8", + "airportId": 7606, + "codeIataAirport": "TCZ", + "codeIataCity": "TCZ", + "codeIcaoAirport": "ZUTC", + "codeIso2Country": "CN", + "geonameId": "7910191", + "latitudeAirport": 24.939379, + "longitudeAirport": 98.482025, + "nameAirport": "Tuofeng", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 7607, + "codeIataAirport": "TDA", + "codeIataCity": "TDA", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 5.423611, + "longitudeAirport": -71.72444, + "nameAirport": "Trinidad", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "airportId": 7608, + "codeIataAirport": "TDB", + "codeIataCity": "TDB", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298870", + "latitudeAirport": -8.997222, + "longitudeAirport": 148.43333, + "nameAirport": "Tetabedi", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "airportId": 7609, + "codeIataAirport": "TDD", + "codeIataCity": "TDD", + "codeIcaoAirport": "SLTR", + "codeIso2Country": "BO", + "geonameId": "6300791", + "latitudeAirport": -14.822613, + "longitudeAirport": -64.91931, + "nameAirport": "Trinidad", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "8", + "airportId": 7610, + "codeIataAirport": "TDG", + "codeIataCity": "TDG", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "1683302", + "latitudeAirport": 9.5, + "longitudeAirport": 126.00833, + "nameAirport": "Tandag", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "3", + "airportId": 7611, + "codeIataAirport": "TDJ", + "codeIataCity": "TDJ", + "codeIcaoAirport": "HDTJ", + "codeIso2Country": "DJ", + "geonameId": "7668295", + "latitudeAirport": 11.783333, + "longitudeAirport": 42.9, + "nameAirport": "Tadjoura", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Djibouti" + }, + { + "GMT": "6", + "airportId": 7612, + "codeIataAirport": "TDK", + "codeIataCity": "TDK", + "codeIcaoAirport": "UAAT", + "codeIso2Country": "KZ", + "geonameId": "7730182", + "latitudeAirport": 45.15, + "longitudeAirport": 78.433334, + "nameAirport": "Taldy-Kurgan", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-3", + "airportId": 7613, + "codeIataAirport": "TDL", + "codeIataCity": "TDL", + "codeIcaoAirport": "SAZT", + "codeIso2Country": "AR", + "geonameId": "6300591", + "latitudeAirport": -37.333332, + "longitudeAirport": -59.083332, + "nameAirport": "Tandil", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "8", + "airportId": 7614, + "codeIataAirport": "TDN", + "codeIataCity": "TDN", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298884", + "latitudeAirport": -14.75, + "longitudeAirport": 126.51667, + "nameAirport": "Theda Station", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-8", + "airportId": 7615, + "codeIataAirport": "TDO", + "codeIataCity": "TDO", + "codeIcaoAirport": "KTDO", + "codeIso2Country": "US", + "geonameId": "5813686", + "latitudeAirport": 46.433334, + "longitudeAirport": -122.85, + "nameAirport": "Winlock", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 7616, + "codeIataAirport": "TDP", + "codeIataCity": "TDP", + "codeIcaoAirport": "", + "codeIso2Country": "PE", + "geonameId": "8260913", + "latitudeAirport": 15.543056, + "longitudeAirport": -61.309166, + "nameAirport": "Trompeteros", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "10", + "airportId": 7617, + "codeIataAirport": "TDR", + "codeIataCity": "TDR", + "codeIcaoAirport": "YTDR", + "codeIso2Country": "AU", + "geonameId": "7731537", + "latitudeAirport": -24.983334, + "longitudeAirport": 150.08333, + "nameAirport": "Theodore", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 7618, + "codeIataAirport": "TDS", + "codeIataCity": "TDS", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8224680", + "latitudeAirport": -7.62281, + "longitudeAirport": 142.86896, + "nameAirport": "Sasereme", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "airportId": 7619, + "codeIataAirport": "TDT", + "codeIataCity": "TDT", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "7731538", + "latitudeAirport": -24.533333, + "longitudeAirport": 31.3, + "nameAirport": "Tanda Tula", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "3", + "airportId": 7620, + "codeIataAirport": "TDV", + "codeIataCity": "TDV", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "0", + "latitudeAirport": -21.7, + "longitudeAirport": 43.733334, + "nameAirport": "Tanandava", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-6", + "airportId": 7621, + "codeIataAirport": "TDW", + "codeIataCity": "AMA", + "codeIcaoAirport": "KTDW", + "codeIso2Country": "US", + "geonameId": "5532475", + "latitudeAirport": 35.216667, + "longitudeAirport": -101.833336, + "nameAirport": "Tradewind", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "airportId": 7622, + "codeIataAirport": "TDX", + "codeIataCity": "TDX", + "codeIcaoAirport": "VTBO", + "codeIso2Country": "TH", + "geonameId": "7910219", + "latitudeAirport": 12.273953, + "longitudeAirport": 102.31867, + "nameAirport": "Trat", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-5", + "airportId": 7623, + "codeIataAirport": "TDZ", + "codeIataCity": "TOL", + "codeIcaoAirport": "KTDZ", + "codeIso2Country": "US", + "geonameId": "5162734", + "latitudeAirport": 41.65, + "longitudeAirport": -83.55, + "nameAirport": "Toledo", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 7624, + "codeIataAirport": "TEA", + "codeIataCity": "TEA", + "codeIcaoAirport": "MHTE", + "codeIso2Country": "HN", + "geonameId": "6299821", + "latitudeAirport": 15.771667, + "longitudeAirport": -87.48778, + "nameAirport": "Tela", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-5", + "airportId": 7625, + "codeIataAirport": "TEB", + "codeIataCity": "TEB", + "codeIcaoAirport": "KTEB", + "codeIso2Country": "US", + "geonameId": "5105334", + "latitudeAirport": 40.849724, + "longitudeAirport": -74.062225, + "nameAirport": "Teterboro", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 7626, + "codeIataAirport": "TEC", + "codeIataCity": "TEC", + "codeIcaoAirport": "SBTL", + "codeIso2Country": "BR", + "geonameId": "7668444", + "latitudeAirport": -24.315832, + "longitudeAirport": -50.65167, + "nameAirport": "Telemaco Borba", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 7627, + "codeIataAirport": "TED", + "codeIataCity": "TED", + "codeIcaoAirport": "EKTS", + "codeIso2Country": "DK", + "geonameId": "6296714", + "latitudeAirport": 57.072224, + "longitudeAirport": 8.703333, + "nameAirport": "Thisted", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 7628, + "codeIataAirport": "TEE", + "codeIataCity": "TEE", + "codeIcaoAirport": "DABS", + "codeIso2Country": "DZ", + "geonameId": "6296373", + "latitudeAirport": 35.466667, + "longitudeAirport": 8.15, + "nameAirport": "Tbessa", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "8", + "airportId": 7629, + "codeIataAirport": "TEF", + "codeIataCity": "TEF", + "codeIcaoAirport": "YTEF", + "codeIso2Country": "AU", + "geonameId": "7730275", + "latitudeAirport": -21.713057, + "longitudeAirport": 122.21222, + "nameAirport": "Telfer", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "0", + "airportId": 7630, + "codeIataAirport": "TEG", + "codeIataCity": "TEG", + "codeIcaoAirport": "DFET", + "codeIso2Country": "BF", + "geonameId": "7668179", + "latitudeAirport": 11.9, + "longitudeAirport": -0.316667, + "nameAirport": "Tenkodogo", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-9", + "airportId": 7631, + "codeIataAirport": "TEH", + "codeIataCity": "TEH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5876024", + "latitudeAirport": 63.13333, + "longitudeAirport": -142.51666, + "nameAirport": "Tetlin", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "5.30", + "airportId": 7632, + "codeIataAirport": "TEI", + "codeIataCity": "TEI", + "codeIcaoAirport": "VETJ", + "codeIso2Country": "IN", + "geonameId": "7668595", + "latitudeAirport": 27.95, + "longitudeAirport": 96.13333, + "nameAirport": "Tezu", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-9", + "airportId": 7633, + "codeIataAirport": "TEK", + "codeIataCity": "TEK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5875879", + "latitudeAirport": 60.86667, + "longitudeAirport": -146.68333, + "nameAirport": "Tatitlek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 7634, + "codeIataAirport": "TEL", + "codeIataCity": "TEL", + "codeIcaoAirport": "WBKE", + "codeIso2Country": "MY", + "geonameId": "7731539", + "latitudeAirport": 5.583333, + "longitudeAirport": 117.11667, + "nameAirport": "Telupid", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "10", + "airportId": 7635, + "codeIataAirport": "TEM", + "codeIataCity": "TEM", + "codeIcaoAirport": "YTEM", + "codeIso2Country": "AU", + "geonameId": "7668776", + "latitudeAirport": -34.416668, + "longitudeAirport": 147.5, + "nameAirport": "Temora", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "8", + "airportId": 7636, + "codeIataAirport": "TEN", + "codeIataCity": "TEN", + "codeIcaoAirport": "ZUTR", + "codeIso2Country": "CN", + "geonameId": "7910266", + "latitudeAirport": 27.88369, + "longitudeAirport": 109.29902, + "nameAirport": "Tongren", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "airportId": 7637, + "codeIataAirport": "TEO", + "codeIataCity": "TEO", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298930", + "latitudeAirport": -8.083333, + "longitudeAirport": 146.06667, + "nameAirport": "Terapo", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 7638, + "codeIataAirport": "TEP", + "codeIataCity": "TEP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2085549", + "latitudeAirport": -5.85, + "longitudeAirport": 146.5, + "nameAirport": "Teptep", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 7639, + "codeIataAirport": "TEQ", + "codeIataCity": "TEQ", + "codeIcaoAirport": "LTBU", + "codeIso2Country": "TR", + "geonameId": "6299758", + "latitudeAirport": 40.966667, + "longitudeAirport": 27.5, + "nameAirport": "Corlu", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-1", + "airportId": 7640, + "codeIataAirport": "TER", + "codeIataCity": "TER", + "codeIcaoAirport": "LPLA", + "codeIso2Country": "PT", + "geonameId": "6299683", + "latitudeAirport": 38.754074, + "longitudeAirport": -27.08757, + "nameAirport": "Lajes Ab", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Atlantic/Azores" + }, + { + "GMT": "3", + "airportId": 7641, + "codeIataAirport": "TES", + "codeIataCity": "TES", + "codeIcaoAirport": "HHTS", + "codeIso2Country": "ER", + "geonameId": "6297282", + "latitudeAirport": 15.116667, + "longitudeAirport": 36.683334, + "nameAirport": "Tessenei", + "nameCountry": "Eritrea", + "phone": "", + "timezone": "Africa/Asmara" + }, + { + "GMT": "2", + "airportId": 7642, + "codeIataAirport": "TET", + "codeIataCity": "TET", + "codeIcaoAirport": "FQTT", + "codeIso2Country": "MZ", + "geonameId": "6301546", + "latitudeAirport": -16.103333, + "longitudeAirport": 33.63889, + "nameAirport": "Matundo", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "12", + "airportId": 7643, + "codeIataAirport": "TEU", + "codeIataCity": "TEU", + "codeIcaoAirport": "", + "codeIso2Country": "NZ", + "geonameId": "2181625", + "latitudeAirport": -45.419445, + "longitudeAirport": 167.7264, + "nameAirport": "Manapouri", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-7", + "airportId": 7644, + "codeIataAirport": "TEX", + "codeIataCity": "TEX", + "codeIcaoAirport": "KTEX", + "codeIso2Country": "US", + "geonameId": "5441213", + "latitudeAirport": 37.933334, + "longitudeAirport": -107.816666, + "nameAirport": "Telluride Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "0", + "airportId": 7645, + "codeIataAirport": "TEY", + "codeIataCity": "TEY", + "codeIcaoAirport": "BITE", + "codeIso2Country": "IS", + "geonameId": "7730438", + "latitudeAirport": 65.88333, + "longitudeAirport": -23.45, + "nameAirport": "Thingeyri", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "5.30", + "airportId": 7646, + "codeIataAirport": "TEZ", + "codeIataCity": "TEZ", + "codeIcaoAirport": "VETZ", + "codeIso2Country": "IN", + "geonameId": "7668596", + "latitudeAirport": 26.710833, + "longitudeAirport": 92.79611, + "nameAirport": "Salonibari", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "airportId": 7647, + "codeIataAirport": "TFB", + "codeIataCity": "TFB", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2085484", + "latitudeAirport": -5.118333, + "longitudeAirport": 141.41777, + "nameAirport": "Tifalmin", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 7648, + "codeIataAirport": "TFC", + "codeIataCity": "TFC", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "2522975", + "latitudeAirport": 37.85358, + "longitudeAirport": 15.28851, + "nameAirport": "Taormina Harbour", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-4", + "airportId": 7649, + "codeIataAirport": "TFF", + "codeIataCity": "TFF", + "codeIcaoAirport": "SBTF", + "codeIso2Country": "BR", + "geonameId": "6300676", + "latitudeAirport": -3.366667, + "longitudeAirport": -64.7, + "nameAirport": "Tefe", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Manaus" + }, + { + "GMT": "10", + "airportId": 7650, + "codeIataAirport": "TFI", + "codeIataCity": "TFI", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731540", + "latitudeAirport": -9.05, + "longitudeAirport": 149.33333, + "nameAirport": "Tufi", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "airportId": 7651, + "codeIataAirport": "TFL", + "codeIataCity": "TFL", + "codeIcaoAirport": "SNTO", + "codeIso2Country": "BR", + "geonameId": "7731541", + "latitudeAirport": -17.85, + "longitudeAirport": -41.5, + "nameAirport": "Teofilo Otoni", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "airportId": 7652, + "codeIataAirport": "TFM", + "codeIataCity": "TFM", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731542", + "latitudeAirport": -5.183333, + "longitudeAirport": 141.63333, + "nameAirport": "Telefomin", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 7653, + "codeIataAirport": "TFN", + "codeIataCity": "TCI", + "codeIcaoAirport": "GCXO", + "codeIso2Country": "ES", + "geonameId": "6297191", + "latitudeAirport": 28.488056, + "longitudeAirport": -16.345982, + "nameAirport": "Norte Los Rodeos", + "nameCountry": "Spain", + "phone": "", + "timezone": "Atlantic/Canary" + }, + { + "GMT": "2", + "airportId": 7654, + "codeIataAirport": "TFR", + "codeIataCity": "TFR", + "codeIcaoAirport": "", + "codeIso2Country": "EG", + "geonameId": "0", + "latitudeAirport": 30.1175, + "longitudeAirport": 31.400833, + "nameAirport": "Ramadan", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "0", + "airportId": 7655, + "codeIataAirport": "TFS", + "codeIataCity": "TCI", + "codeIcaoAirport": "GCTS", + "codeIso2Country": "ES", + "geonameId": "6297190", + "latitudeAirport": 28.044443, + "longitudeAirport": -16.5725, + "nameAirport": "Sur Reina Sofia", + "nameCountry": "Spain", + "phone": "+34 91 321 10", + "timezone": "Atlantic/Canary" + }, + { + "GMT": "5", + "airportId": 7656, + "codeIataAirport": "TFT", + "codeIataCity": "TFT", + "codeIcaoAirport": "OPTT", + "codeIso2Country": "PK", + "geonameId": "7730756", + "latitudeAirport": 28.583332, + "longitudeAirport": 61.36667, + "nameAirport": "Taftan", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "8", + "airportId": 7657, + "codeIataAirport": "TGB", + "codeIataCity": "TGB", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "1684759", + "latitudeAirport": 1.416667, + "longitudeAirport": 126.78333, + "nameAirport": "Tagbita", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "8", + "airportId": 7658, + "codeIataAirport": "TGC", + "codeIataCity": "TGC", + "codeIcaoAirport": "WBGT", + "codeIso2Country": "MY", + "geonameId": "7731543", + "latitudeAirport": 2.176315, + "longitudeAirport": 111.20335, + "nameAirport": "Tanjung Manis", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "1", + "airportId": 7659, + "codeIataAirport": "TGD", + "codeIataCity": "TGD", + "codeIcaoAirport": "LYPG", + "codeIso2Country": "ME", + "geonameId": "6299781", + "latitudeAirport": 42.368023, + "longitudeAirport": 19.246023, + "nameAirport": "Golubovci", + "nameCountry": "Montenegro", + "phone": "", + "timezone": "Europe/Podgorica" + }, + { + "GMT": "-6", + "airportId": 7660, + "codeIataAirport": "TGE", + "codeIataCity": "TGE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.466667, + "longitudeAirport": -85.683334, + "nameAirport": "Sharpe Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 7661, + "codeIataAirport": "TGG", + "codeIataCity": "TGG", + "codeIcaoAirport": "WMKN", + "codeIso2Country": "MY", + "geonameId": "1746155", + "latitudeAirport": 5.380504, + "longitudeAirport": 103.10642, + "nameAirport": "Sultan Mahmood", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "11", + "airportId": 7662, + "codeIataAirport": "TGH", + "codeIataCity": "TGH", + "codeIcaoAirport": "NVST", + "codeIso2Country": "VU", + "geonameId": "7730716", + "latitudeAirport": -16.90361, + "longitudeAirport": 168.54666, + "nameAirport": "Tongoa", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-5", + "airportId": 7663, + "codeIataAirport": "TGI", + "codeIataCity": "TGI", + "codeIcaoAirport": "SPGM", + "codeIso2Country": "PE", + "geonameId": "6300801", + "latitudeAirport": -9.3, + "longitudeAirport": -76.01667, + "nameAirport": "Tingo Maria", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "11", + "airportId": 7664, + "codeIataAirport": "TGJ", + "codeIataCity": "TGJ", + "codeIcaoAirport": "NWWA", + "codeIso2Country": "NC", + "geonameId": "7730135", + "latitudeAirport": -21.098358, + "longitudeAirport": 167.80293, + "nameAirport": "Tiga", + "nameCountry": "New Caledonia", + "phone": "", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "3", + "airportId": 7665, + "codeIataAirport": "TGK", + "codeIataCity": "TGK", + "codeIcaoAirport": "URRT", + "codeIso2Country": "RU", + "geonameId": "8261063", + "latitudeAirport": 47.243378, + "longitudeAirport": 38.864017, + "nameAirport": "Taganrog", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "10", + "airportId": 7666, + "codeIataAirport": "TGL", + "codeIataCity": "TGL", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260900", + "latitudeAirport": -11.5, + "longitudeAirport": 153.5, + "nameAirport": "Tagula", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "airportId": 7667, + "codeIataAirport": "TGM", + "codeIataCity": "TGM", + "codeIcaoAirport": "LRTM", + "codeIso2Country": "RO", + "geonameId": "6299712", + "latitudeAirport": 46.533333, + "longitudeAirport": 24.533333, + "nameAirport": "Transilvania", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "10", + "airportId": 7668, + "codeIataAirport": "TGN", + "codeIataCity": "TGN", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2146108", + "latitudeAirport": -38.2, + "longitudeAirport": 146.56667, + "nameAirport": "La Trobe Regional", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "8", + "airportId": 7669, + "codeIataAirport": "TGO", + "codeIataCity": "TGO", + "codeIcaoAirport": "ZBTL", + "codeIso2Country": "CN", + "geonameId": "7730283", + "latitudeAirport": 43.55701, + "longitudeAirport": 122.204605, + "nameAirport": "Tongliao", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "7", + "airportId": 7670, + "codeIataAirport": "TGP", + "codeIataCity": "TGP", + "codeIcaoAirport": "UNIP", + "codeIso2Country": "RU", + "geonameId": "8298676", + "latitudeAirport": 61.59, + "longitudeAirport": 89.97945, + "nameAirport": "Podkamennaya Tunguska", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "-4", + "airportId": 7671, + "codeIataAirport": "TGQ", + "codeIataCity": "TGQ", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8260778", + "latitudeAirport": -14.656389, + "longitudeAirport": -57.448612, + "nameAirport": "Tangara da Serra", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "1", + "airportId": 7672, + "codeIataAirport": "TGR", + "codeIataCity": "TGR", + "codeIcaoAirport": "DAUK", + "codeIso2Country": "DZ", + "geonameId": "6296392", + "latitudeAirport": 33.058334, + "longitudeAirport": 6.084722, + "nameAirport": "Touggourt", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "2", + "airportId": 7673, + "codeIataAirport": "TGS", + "codeIataCity": "TGS", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "7731544", + "latitudeAirport": -24.616667, + "longitudeAirport": 32.416668, + "nameAirport": "Chokwe", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "3", + "airportId": 7674, + "codeIataAirport": "TGT", + "codeIataCity": "TGT", + "codeIcaoAirport": "HTTG", + "codeIso2Country": "TZ", + "geonameId": "149607", + "latitudeAirport": -5.089444, + "longitudeAirport": 39.07028, + "nameAirport": "Tanga", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-6", + "airportId": 7675, + "codeIataAirport": "TGU", + "codeIataCity": "TGU", + "codeIcaoAirport": "MHTG", + "codeIso2Country": "HN", + "geonameId": "6299822", + "latitudeAirport": 14.060123, + "longitudeAirport": -87.21972, + "nameAirport": "Toncontin", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "2", + "airportId": 7676, + "codeIataAirport": "TGV", + "codeIataCity": "TGV", + "codeIcaoAirport": "", + "codeIso2Country": "BG", + "geonameId": "8298660", + "latitudeAirport": 42.416668, + "longitudeAirport": 24.5, + "nameAirport": "Targovishte", + "nameCountry": "Bulgaria", + "phone": "", + "timezone": "Europe/Sofia" + }, + { + "GMT": "-6", + "airportId": 7677, + "codeIataAirport": "TGZ", + "codeIataCity": "TGZ", + "codeIcaoAirport": "MMTG", + "codeIso2Country": "MX", + "geonameId": "6299874", + "latitudeAirport": 16.56361, + "longitudeAirport": -93.0225, + "nameAirport": "Llano San Juan", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-6", + "airportId": 7678, + "codeIataAirport": "THA", + "codeIataCity": "THA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4663494", + "latitudeAirport": 35.36667, + "longitudeAirport": -86.183334, + "nameAirport": "Tullahoma/William Northern Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 7679, + "codeIataAirport": "THB", + "codeIataCity": "THB", + "codeIcaoAirport": "FXTA", + "codeIso2Country": "LS", + "geonameId": "7730547", + "latitudeAirport": -28.833332, + "longitudeAirport": 29.5, + "nameAirport": "Thaba-Tseka", + "nameCountry": "Lesotho", + "phone": "", + "timezone": "Africa/Maseru" + }, + { + "GMT": "0", + "airportId": 7680, + "codeIataAirport": "THC", + "codeIataCity": "THC", + "codeIcaoAirport": "", + "codeIso2Country": "LR", + "geonameId": "0", + "latitudeAirport": 6.066667, + "longitudeAirport": -8.133333, + "nameAirport": "Tchien", + "nameCountry": "Liberia", + "phone": "", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-3", + "airportId": 7681, + "codeIataAirport": "THE", + "codeIataCity": "THE", + "codeIcaoAirport": "SBTE", + "codeIso2Country": "BR", + "geonameId": "3386497", + "latitudeAirport": -5.06335, + "longitudeAirport": -42.821087, + "nameAirport": "Senador Petrônio Portella", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Fortaleza" + }, + { + "GMT": "10", + "airportId": 7682, + "codeIataAirport": "THG", + "codeIataCity": "THG", + "codeIcaoAirport": "YTNG", + "codeIso2Country": "AU", + "geonameId": "7668780", + "latitudeAirport": -24.5, + "longitudeAirport": 150.56667, + "nameAirport": "Thangool", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "12", + "airportId": 7683, + "codeIataAirport": "THH", + "codeIataCity": "THH", + "codeIcaoAirport": "NZTS", + "codeIso2Country": "NZ", + "geonameId": "7730736", + "latitudeAirport": -38.2, + "longitudeAirport": 174.71666, + "nameAirport": "Taharoa", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "0", + "airportId": 7684, + "codeIataAirport": "THI", + "codeIataCity": "THI", + "codeIcaoAirport": "GQNC", + "codeIso2Country": "MR", + "geonameId": "7668283", + "latitudeAirport": 18.45, + "longitudeAirport": -9.5, + "nameAirport": "Tichitt", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "8", + "airportId": 7685, + "codeIataAirport": "THJ", + "codeIataCity": "ZCA", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Taishan Bus Station", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "7", + "airportId": 7686, + "codeIataAirport": "THK", + "codeIataCity": "THK", + "codeIcaoAirport": "VLTK", + "codeIso2Country": "LA", + "geonameId": "6301111", + "latitudeAirport": 17.4, + "longitudeAirport": 104.816666, + "nameAirport": "Thakhek", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "6.30", + "airportId": 7687, + "codeIataAirport": "THL", + "codeIataCity": "THL", + "codeIcaoAirport": "VYTL", + "codeIso2Country": "MM", + "geonameId": "7668663", + "latitudeAirport": 20.45, + "longitudeAirport": 99.95, + "nameAirport": "Tachilek", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-6", + "airportId": 7688, + "codeIataAirport": "THM", + "codeIataCity": "THM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.183334, + "longitudeAirport": -91.98333, + "nameAirport": "Thompsonfield", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 7689, + "codeIataAirport": "THN", + "codeIataCity": "THN", + "codeIcaoAirport": "ESGT", + "codeIso2Country": "SE", + "geonameId": "6296793", + "latitudeAirport": 58.266666, + "longitudeAirport": 12.3, + "nameAirport": "Trollhattan", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "0", + "airportId": 7690, + "codeIataAirport": "THO", + "codeIataCity": "THO", + "codeIcaoAirport": "BITN", + "codeIso2Country": "IS", + "geonameId": "8298704", + "latitudeAirport": 66.2, + "longitudeAirport": -15.333333, + "nameAirport": "Thorshofn", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-7", + "airportId": 7691, + "codeIataAirport": "THP", + "codeIataCity": "THP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5840846", + "latitudeAirport": 43.65, + "longitudeAirport": -108.21667, + "nameAirport": "Hot Springs", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "airportId": 7692, + "codeIataAirport": "THQ", + "codeIataCity": "THQ", + "codeIcaoAirport": "ZLTS", + "codeIso2Country": "CN", + "geonameId": "7910379", + "latitudeAirport": 34.556236, + "longitudeAirport": 105.86501, + "nameAirport": "Maijishan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3.30", + "airportId": 7693, + "codeIataAirport": "THR", + "codeIataCity": "THR", + "codeIcaoAirport": "OIII", + "codeIso2Country": "IR", + "geonameId": "404615", + "latitudeAirport": 35.691532, + "longitudeAirport": 51.32187, + "nameAirport": "Mehrabad (Qualeh Morgeh)", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "7", + "airportId": 7694, + "codeIataAirport": "THS", + "codeIataCity": "THS", + "codeIcaoAirport": "VTPO", + "codeIso2Country": "TH", + "geonameId": "7668645", + "latitudeAirport": 17.223057, + "longitudeAirport": 99.82222, + "nameAirport": "Sukhothai", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "0", + "airportId": 7695, + "codeIataAirport": "THT", + "codeIataCity": "THT", + "codeIcaoAirport": "GQNT", + "codeIso2Country": "MR", + "geonameId": "7668288", + "latitudeAirport": 17.233334, + "longitudeAirport": -10.816667, + "nameAirport": "Tamchakett", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "-4", + "airportId": 7696, + "codeIataAirport": "THU", + "codeIataCity": "THU", + "codeIcaoAirport": "BGTL", + "codeIso2Country": "GL", + "geonameId": "3831224", + "latitudeAirport": 76.53333, + "longitudeAirport": -68.7, + "nameAirport": "Pituffik", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Thule" + }, + { + "GMT": "-5", + "airportId": 7697, + "codeIataAirport": "THV", + "codeIataCity": "THV", + "codeIcaoAirport": "KTHV", + "codeIso2Country": "US", + "geonameId": "4562408", + "latitudeAirport": 39.95, + "longitudeAirport": -76.71667, + "nameAirport": "York Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "5.30", + "airportId": 7698, + "codeIataAirport": "THW", + "codeIataCity": "TRR", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "0", + "latitudeAirport": 8.569151, + "longitudeAirport": 81.23291, + "nameAirport": "Harbour SPB", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "7", + "airportId": 7699, + "codeIataAirport": "THX", + "codeIataCity": "THX", + "codeIcaoAirport": "UOTT", + "codeIso2Country": "RU", + "geonameId": "8181782", + "latitudeAirport": 65.79722, + "longitudeAirport": 87.93528, + "nameAirport": "Turukhansk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "2", + "airportId": 7700, + "codeIataAirport": "THY", + "codeIataCity": "THY", + "codeIcaoAirport": "FATH", + "codeIso2Country": "ZA", + "geonameId": "7730492", + "latitudeAirport": -22.883333, + "longitudeAirport": 30.55, + "nameAirport": "Thohoyandou", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "1", + "airportId": 7701, + "codeIataAirport": "THZ", + "codeIataCity": "THZ", + "codeIcaoAirport": "DRRT", + "codeIso2Country": "NE", + "geonameId": "6296457", + "latitudeAirport": 14.872778, + "longitudeAirport": 5.263889, + "nameAirport": "Tahoua", + "nameCountry": "Niger", + "phone": "", + "timezone": "Africa/Niamey" + }, + { + "GMT": "1", + "airportId": 7702, + "codeIataAirport": "TIA", + "codeIataCity": "TIA", + "codeIcaoAirport": "LATI", + "codeIso2Country": "AL", + "geonameId": "3183875", + "latitudeAirport": 41.419132, + "longitudeAirport": 19.71328, + "nameAirport": "Rinas Mother Teresa", + "nameCountry": "Albania", + "phone": "", + "timezone": "Europe/Tirane" + }, + { + "GMT": "-5", + "airportId": 7703, + "codeIataAirport": "TIB", + "codeIataCity": "TIB", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8299097", + "latitudeAirport": 8.633333, + "longitudeAirport": -72.73333, + "nameAirport": "Tibu", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "12", + "airportId": 7704, + "codeIataAirport": "TIC", + "codeIataCity": "TIC", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 7.05, + "longitudeAirport": 171.78334, + "nameAirport": "Tinak Island", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "1", + "airportId": 7705, + "codeIataAirport": "TID", + "codeIataCity": "TID", + "codeIcaoAirport": "DAOB", + "codeIso2Country": "DZ", + "geonameId": "6296377", + "latitudeAirport": 35.466667, + "longitudeAirport": 1.35, + "nameAirport": "Bouchekif Abde Al-hafidh Boussof", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "3", + "airportId": 7706, + "codeIataAirport": "TIE", + "codeIataCity": "TIE", + "codeIcaoAirport": "HATP", + "codeIso2Country": "ET", + "geonameId": "7730595", + "latitudeAirport": 7.201111, + "longitudeAirport": 35.41528, + "nameAirport": "Tippi", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "3", + "airportId": 7707, + "codeIataAirport": "TIF", + "codeIataCity": "TIF", + "codeIcaoAirport": "OETF", + "codeIso2Country": "SA", + "geonameId": "6300029", + "latitudeAirport": 21.480364, + "longitudeAirport": 40.552685, + "nameAirport": "Taif", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-10", + "airportId": 7708, + "codeIataAirport": "TIH", + "codeIataCity": "TIH", + "codeIcaoAirport": "NTGC", + "codeIso2Country": "PF", + "geonameId": "6354927", + "latitudeAirport": -15.118639, + "longitudeAirport": -148.2338, + "nameAirport": "Tikehau Atoll", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "4.30", + "airportId": 7709, + "codeIataAirport": "TII", + "codeIataCity": "TII", + "codeIcaoAirport": "OATN", + "codeIso2Country": "AF", + "geonameId": "0", + "latitudeAirport": 32.86667, + "longitudeAirport": 65.63333, + "nameAirport": "Tirinkot", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "-8", + "airportId": 7710, + "codeIataAirport": "TIJ", + "codeIataCity": "TIJ", + "codeIcaoAirport": "MMTJ", + "codeIso2Country": "MX", + "geonameId": "6299875", + "latitudeAirport": 32.546284, + "longitudeAirport": -116.97466, + "nameAirport": "General A. L. Rodriguez International", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Tijuana" + }, + { + "GMT": "-6", + "airportId": 7711, + "codeIataAirport": "TIK", + "codeIataCity": "OKC", + "codeIcaoAirport": "KTIK", + "codeIso2Country": "US", + "geonameId": "4553114", + "latitudeAirport": 35.416668, + "longitudeAirport": -97.38333, + "nameAirport": "Tinker AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "airportId": 7712, + "codeIataAirport": "TIL", + "codeIataCity": "TIL", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5983620", + "latitudeAirport": 50.5, + "longitudeAirport": -1.03, + "nameAirport": "Inverlake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "9", + "airportId": 7713, + "codeIataAirport": "TIM", + "codeIataCity": "TIM", + "codeIcaoAirport": "WABP", + "codeIso2Country": "ID", + "geonameId": "7668664", + "latitudeAirport": -4.525666, + "longitudeAirport": 136.88748, + "nameAirport": "Timika", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "airportId": 7714, + "codeIataAirport": "TIN", + "codeIataCity": "TIN", + "codeIcaoAirport": "DAOF", + "codeIso2Country": "DZ", + "geonameId": "6296378", + "latitudeAirport": 27.716667, + "longitudeAirport": -8.166667, + "nameAirport": "Tindouf", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "6.30", + "airportId": 7715, + "codeIataAirport": "TIO", + "codeIataCity": "TIO", + "codeIcaoAirport": "VYHN", + "codeIso2Country": "MM", + "geonameId": "7731545", + "latitudeAirport": 20.0, + "longitudeAirport": 96.0, + "nameAirport": "Tilin", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "10", + "airportId": 7716, + "codeIataAirport": "TIQ", + "codeIataCity": "TIQ", + "codeIcaoAirport": "PGWT", + "codeIso2Country": "MP", + "geonameId": "4041643", + "latitudeAirport": 14.994319, + "longitudeAirport": 145.62634, + "nameAirport": "Tinian International", + "nameCountry": "Northern Mariana Islands", + "phone": "", + "timezone": "Pacific/Saipan" + }, + { + "GMT": "5.30", + "airportId": 7717, + "codeIataAirport": "TIR", + "codeIataCity": "TIR", + "codeIcaoAirport": "VOTP", + "codeIso2Country": "IN", + "geonameId": "7668637", + "latitudeAirport": 13.635721, + "longitudeAirport": 79.54293, + "nameAirport": "Tirupati", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "airportId": 7718, + "codeIataAirport": "TIS", + "codeIataCity": "TIS", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -10.5, + "longitudeAirport": 142.05, + "nameAirport": "Thursday Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "12", + "airportId": 7719, + "codeIataAirport": "TIU", + "codeIataCity": "TIU", + "codeIcaoAirport": "NZTU", + "codeIso2Country": "NZ", + "geonameId": "6214278", + "latitudeAirport": -44.303448, + "longitudeAirport": 171.22632, + "nameAirport": "Timaru", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "1", + "airportId": 7720, + "codeIataAirport": "TIV", + "codeIataCity": "TIV", + "codeIcaoAirport": "LYTV", + "codeIso2Country": "ME", + "geonameId": "3220313", + "latitudeAirport": 42.40361, + "longitudeAirport": 18.725555, + "nameAirport": "Tivat", + "nameCountry": "Montenegro", + "phone": "", + "timezone": "Europe/Podgorica" + }, + { + "GMT": "-8", + "airportId": 7721, + "codeIataAirport": "TIW", + "codeIataCity": "TIW", + "codeIcaoAirport": "KTIW", + "codeIso2Country": "US", + "geonameId": "5812959", + "latitudeAirport": 47.270557, + "longitudeAirport": -122.57306, + "nameAirport": "Industrial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 7722, + "codeIataAirport": "TIX", + "codeIataCity": "TIX", + "codeIcaoAirport": "KTIX", + "codeIso2Country": "US", + "geonameId": "4173727", + "latitudeAirport": 28.512222, + "longitudeAirport": -80.799446, + "nameAirport": "Space Coast Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 7723, + "codeIataAirport": "TIY", + "codeIataCity": "TIY", + "codeIcaoAirport": "GQND", + "codeIso2Country": "MR", + "geonameId": "6297235", + "latitudeAirport": 18.566668, + "longitudeAirport": -11.416667, + "nameAirport": "Tidjikja", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "10", + "airportId": 7724, + "codeIataAirport": "TIZ", + "codeIataCity": "TIZ", + "codeIcaoAirport": "AYTA", + "codeIso2Country": "PG", + "geonameId": "7730413", + "latitudeAirport": -5.860556, + "longitudeAirport": 142.94055, + "nameAirport": "Tari", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "airportId": 7725, + "codeIataAirport": "TJA", + "codeIataCity": "TJA", + "codeIcaoAirport": "SLTJ", + "codeIso2Country": "BO", + "geonameId": "6300790", + "latitudeAirport": -21.554167, + "longitudeAirport": -64.745834, + "nameAirport": "Tarija", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "7", + "airportId": 7726, + "codeIataAirport": "TJB", + "codeIataCity": "TJB", + "codeIcaoAirport": "WIBT", + "codeIso2Country": "ID", + "geonameId": "7731546", + "latitudeAirport": 2.916667, + "longitudeAirport": 99.73333, + "nameAirport": "Tanjung Balai", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-5", + "airportId": 7727, + "codeIataAirport": "TJC", + "codeIataCity": "TJC", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "8299237", + "latitudeAirport": 9.408333, + "longitudeAirport": -78.48889, + "nameAirport": "Ticantiki", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "7", + "airportId": 7728, + "codeIataAirport": "TJG", + "codeIataCity": "TJG", + "codeIcaoAirport": "WAON", + "codeIso2Country": "ID", + "geonameId": "7730232", + "latitudeAirport": -1.4, + "longitudeAirport": 103.96667, + "nameAirport": "Tanjung Warukin", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "9", + "airportId": 7729, + "codeIataAirport": "TJH", + "codeIataCity": "TJH", + "codeIcaoAirport": "RJBT", + "codeIso2Country": "JP", + "geonameId": "6300319", + "latitudeAirport": 35.509167, + "longitudeAirport": 134.78972, + "nameAirport": "Tajima", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-6", + "airportId": 7730, + "codeIataAirport": "TJI", + "codeIataCity": "TJI", + "codeIcaoAirport": "", + "codeIso2Country": "HN", + "geonameId": "3600591", + "latitudeAirport": 15.925833, + "longitudeAirport": -85.939445, + "nameAirport": "Capiro", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "8", + "airportId": 7731, + "codeIataAirport": "TJJ", + "codeIataCity": "TSN", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 39.084158, + "longitudeAirport": 117.200983, + "nameAirport": "Tianjin Bus Station", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "airportId": 7732, + "codeIataAirport": "TJK", + "codeIataCity": "TJK", + "codeIcaoAirport": "LTAW", + "codeIso2Country": "TR", + "geonameId": "6299740", + "latitudeAirport": 40.302223, + "longitudeAirport": 36.36778, + "nameAirport": "Tokat", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "5", + "airportId": 7733, + "codeIataAirport": "TJM", + "codeIataCity": "TJM", + "codeIcaoAirport": "USTR", + "codeIso2Country": "RU", + "geonameId": "7730198", + "latitudeAirport": 57.181828, + "longitudeAirport": 65.35024, + "nameAirport": "Roschino", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-10", + "airportId": 7734, + "codeIataAirport": "TJN", + "codeIataCity": "TJN", + "codeIcaoAirport": "NTKM", + "codeIso2Country": "PF", + "geonameId": "8260901", + "latitudeAirport": -15.850556, + "longitudeAirport": -142.26694, + "nameAirport": "Takume", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "7", + "airportId": 7735, + "codeIataAirport": "TJQ", + "codeIataCity": "TJQ", + "codeIcaoAirport": "WIKD", + "codeIso2Country": "ID", + "geonameId": "6301231", + "latitudeAirport": -2.75, + "longitudeAirport": 107.65, + "nameAirport": "Bulutumbang", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "8", + "airportId": 7736, + "codeIataAirport": "TJS", + "codeIataCity": "TJS", + "codeIcaoAirport": "WALG", + "codeIso2Country": "ID", + "geonameId": "7668665", + "latitudeAirport": 2.85, + "longitudeAirport": 117.36667, + "nameAirport": "Tanjung Selor", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "5", + "airportId": 7737, + "codeIataAirport": "TJU", + "codeIataCity": "TJU", + "codeIcaoAirport": "UTDK", + "codeIso2Country": "TJ", + "geonameId": "7730202", + "latitudeAirport": 37.988335, + "longitudeAirport": 69.80666, + "nameAirport": "Kulyab", + "nameCountry": "Tajikistan", + "phone": "", + "timezone": "Asia/Dushanbe" + }, + { + "GMT": "5.30", + "airportId": 7738, + "codeIataAirport": "TJV", + "codeIataCity": "TJV", + "codeIcaoAirport": "VOTJ", + "codeIso2Country": "IN", + "geonameId": "7731547", + "latitudeAirport": 10.8, + "longitudeAirport": 79.2, + "nameAirport": "Thanjavur", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-9", + "airportId": 7739, + "codeIataAirport": "TKA", + "codeIataCity": "TKA", + "codeIcaoAirport": "PATK", + "codeIso2Country": "US", + "geonameId": "5875746", + "latitudeAirport": 62.322224, + "longitudeAirport": -150.09, + "nameAirport": "Talkeetna", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 7740, + "codeIataAirport": "TKB", + "codeIataCity": "TKB", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8261049", + "latitudeAirport": -7.666667, + "longitudeAirport": 146.55, + "nameAirport": "Tekadu", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "airportId": 7741, + "codeIataAirport": "TKC", + "codeIataCity": "TKC", + "codeIcaoAirport": "FKKC", + "codeIso2Country": "CM", + "geonameId": "6296997", + "latitudeAirport": 4.116667, + "longitudeAirport": 9.333333, + "nameAirport": "Tiko", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "0", + "airportId": 7742, + "codeIataAirport": "TKD", + "codeIataCity": "TKD", + "codeIcaoAirport": "DGTK", + "codeIso2Country": "GH", + "geonameId": "6296430", + "latitudeAirport": 4.891667, + "longitudeAirport": -1.775, + "nameAirport": "Takoradi", + "nameCountry": "Ghana", + "phone": "", + "timezone": "Africa/Accra" + }, + { + "GMT": "-9", + "airportId": 7743, + "codeIataAirport": "TKE", + "codeIataCity": "TKE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5557890", + "latitudeAirport": 57.783333, + "longitudeAirport": -135.21666, + "nameAirport": "Tenakee SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "airportId": 7744, + "codeIataAirport": "TKF", + "codeIataCity": "TKF", + "codeIcaoAirport": "KTRK", + "codeIso2Country": "US", + "geonameId": "5403683", + "latitudeAirport": 39.325, + "longitudeAirport": -120.14167, + "nameAirport": "Truckee-Tahoe", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "7", + "airportId": 7745, + "codeIataAirport": "TKG", + "codeIataCity": "TKG", + "codeIcaoAirport": "WIIT", + "codeIso2Country": "ID", + "geonameId": "6301229", + "latitudeAirport": -5.242783, + "longitudeAirport": 105.1758, + "nameAirport": "Branti", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "7", + "airportId": 7746, + "codeIataAirport": "TKH", + "codeIataCity": "TKH", + "codeIcaoAirport": "", + "codeIso2Country": "TH", + "geonameId": "1605912", + "latitudeAirport": 15.25, + "longitudeAirport": 100.35, + "nameAirport": "Nakhon Sawan", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-9", + "airportId": 7747, + "codeIataAirport": "TKI", + "codeIataCity": "TKI", + "codeIcaoAirport": "KTKI", + "codeIso2Country": "US", + "geonameId": "5558003", + "latitudeAirport": 55.9375, + "longitudeAirport": -133.325, + "nameAirport": "Tokeen", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 7748, + "codeIataAirport": "TKJ", + "codeIataCity": "TKJ", + "codeIcaoAirport": "PATJ", + "codeIso2Country": "US", + "geonameId": "5876366", + "latitudeAirport": 63.3, + "longitudeAirport": -143.0, + "nameAirport": "Tok", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 7749, + "codeIataAirport": "TKK", + "codeIataCity": "TKK", + "codeIcaoAirport": "PTKK", + "codeIso2Country": "FM", + "geonameId": "4042202", + "latitudeAirport": 7.457446, + "longitudeAirport": 151.84201, + "nameAirport": "Truk", + "nameCountry": "Micronesia", + "phone": "", + "timezone": "Pacific/Chuuk" + }, + { + "GMT": "-9", + "airportId": 7750, + "codeIataAirport": "TKL", + "codeIataCity": "TKL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5557833", + "latitudeAirport": 58.0, + "longitudeAirport": -134.0, + "nameAirport": "Taku SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 7751, + "codeIataAirport": "TKM", + "codeIataCity": "TKM", + "codeIcaoAirport": "", + "codeIso2Country": "GT", + "geonameId": "7731548", + "latitudeAirport": 17.226389, + "longitudeAirport": -89.605, + "nameAirport": "El Peten", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "9", + "airportId": 7752, + "codeIataAirport": "TKN", + "codeIataCity": "TKN", + "codeIcaoAirport": "RJKN", + "codeIso2Country": "JP", + "geonameId": "6300363", + "latitudeAirport": 27.833332, + "longitudeAirport": 128.88333, + "nameAirport": "Tokunoshima", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "2", + "airportId": 7753, + "codeIataAirport": "TKO", + "codeIataCity": "TKO", + "codeIcaoAirport": "FXTK", + "codeIso2Country": "LS", + "geonameId": "7730548", + "latitudeAirport": -29.233334, + "longitudeAirport": 28.883333, + "nameAirport": "Tlokoeng", + "nameCountry": "Lesotho", + "phone": "", + "timezone": "Africa/Maseru" + }, + { + "GMT": "-10", + "airportId": 7754, + "codeIataAirport": "TKP", + "codeIataCity": "TKP", + "codeIcaoAirport": "NTGT", + "codeIso2Country": "PF", + "geonameId": "7730126", + "latitudeAirport": -15.45, + "longitudeAirport": -145.14166, + "nameAirport": "Takapoto", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "3", + "airportId": 7755, + "codeIataAirport": "TKQ", + "codeIataCity": "TKQ", + "codeIcaoAirport": "HTKA", + "codeIso2Country": "TZ", + "geonameId": "6297356", + "latitudeAirport": -4.885, + "longitudeAirport": 29.67, + "nameAirport": "Kigoma", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "6", + "airportId": 7756, + "codeIataAirport": "TKR", + "codeIataCity": "TKR", + "codeIcaoAirport": "VGSG", + "codeIso2Country": "BD", + "geonameId": "7731549", + "latitudeAirport": 26.016666, + "longitudeAirport": 88.4, + "nameAirport": "Thakurgaon", + "nameCountry": "Bangladesh", + "phone": "", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "9", + "airportId": 7757, + "codeIataAirport": "TKS", + "codeIataCity": "TKS", + "codeIcaoAirport": "RJOS", + "codeIso2Country": "JP", + "geonameId": "6300383", + "latitudeAirport": 34.139023, + "longitudeAirport": 134.59483, + "nameAirport": "Tokushima", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "7", + "airportId": 7758, + "codeIataAirport": "TKT", + "codeIataCity": "TKT", + "codeIcaoAirport": "VTPT", + "codeIso2Country": "TH", + "geonameId": "6301150", + "latitudeAirport": 16.878332, + "longitudeAirport": 99.15222, + "nameAirport": "Tak", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "2", + "airportId": 7759, + "codeIataAirport": "TKU", + "codeIataCity": "TKU", + "codeIcaoAirport": "EFTU", + "codeIso2Country": "FI", + "geonameId": "6296564", + "latitudeAirport": 60.512794, + "longitudeAirport": 22.28098, + "nameAirport": "Turku", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-10", + "airportId": 7760, + "codeIataAirport": "TKV", + "codeIataCity": "TKV", + "codeIcaoAirport": "NTGO", + "codeIso2Country": "PF", + "geonameId": "7730698", + "latitudeAirport": -17.283333, + "longitudeAirport": -138.33333, + "nameAirport": "Tatakoto", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "10", + "airportId": 7761, + "codeIataAirport": "TKW", + "codeIataCity": "TKW", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298685", + "latitudeAirport": -5.25, + "longitudeAirport": 142.15, + "nameAirport": "Tekin", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-10", + "airportId": 7762, + "codeIataAirport": "TKX", + "codeIataCity": "TKX", + "codeIcaoAirport": "NTKR", + "codeIso2Country": "PF", + "geonameId": "7730129", + "latitudeAirport": -14.457749, + "longitudeAirport": -145.0264, + "nameAirport": "Takaroa", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "8", + "airportId": 7763, + "codeIataAirport": "TKY", + "codeIataCity": "TKY", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298891", + "latitudeAirport": -17.066668, + "longitudeAirport": 128.25, + "nameAirport": "Turkey Creek", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "12", + "airportId": 7764, + "codeIataAirport": "TKZ", + "codeIataCity": "TKZ", + "codeIcaoAirport": "NZTO", + "codeIso2Country": "NZ", + "geonameId": "7730735", + "latitudeAirport": -38.216667, + "longitudeAirport": 175.83333, + "nameAirport": "Tokoroa", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-9", + "airportId": 7765, + "codeIataAirport": "TLA", + "codeIataCity": "TLA", + "codeIcaoAirport": "PATE", + "codeIso2Country": "US", + "geonameId": "5875969", + "latitudeAirport": 65.27167, + "longitudeAirport": -166.355, + "nameAirport": "Teller", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "5", + "airportId": 7766, + "codeIataAirport": "TLB", + "codeIataCity": "TLB", + "codeIcaoAirport": "OPTA", + "codeIso2Country": "PK", + "geonameId": "7668410", + "latitudeAirport": 34.13333, + "longitudeAirport": 72.816666, + "nameAirport": "Tarbela", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-6", + "airportId": 7767, + "codeIataAirport": "TLC", + "codeIataCity": "MEX", + "codeIcaoAirport": "MMTO", + "codeIso2Country": "MX", + "geonameId": "6299878", + "latitudeAirport": 19.283333, + "longitudeAirport": -99.666664, + "nameAirport": "Licenciado Adolfo Lopez Mateos International", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "2", + "airportId": 7768, + "codeIataAirport": "TLD", + "codeIataCity": "TLD", + "codeIcaoAirport": "FBTL", + "codeIso2Country": "BW", + "geonameId": "7730496", + "latitudeAirport": -22.183332, + "longitudeAirport": 29.116667, + "nameAirport": "Limpopo Valley", + "nameCountry": "Botswana", + "phone": "", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "3", + "airportId": 7769, + "codeIataAirport": "TLE", + "codeIataCity": "TLE", + "codeIcaoAirport": "FMST", + "codeIso2Country": "MG", + "geonameId": "6297058", + "latitudeAirport": -23.389723, + "longitudeAirport": 43.724167, + "nameAirport": "Tulear", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-9", + "airportId": 7770, + "codeIataAirport": "TLF", + "codeIataCity": "TLF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5875962", + "latitudeAirport": 63.666668, + "longitudeAirport": -152.5, + "nameAirport": "Telida", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "11", + "airportId": 7771, + "codeIataAirport": "TLG", + "codeIataCity": "TLG", + "codeIcaoAirport": "", + "codeIso2Country": "SB", + "geonameId": "0", + "latitudeAirport": -9.1, + "longitudeAirport": 160.15, + "nameAirport": "Tulagi Island", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-5", + "airportId": 7772, + "codeIataAirport": "TLH", + "codeIataCity": "TLH", + "codeIcaoAirport": "KTLH", + "codeIso2Country": "US", + "geonameId": "6299173", + "latitudeAirport": 30.395782, + "longitudeAirport": -84.34444, + "nameAirport": "Tallahassee Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 7773, + "codeIataAirport": "TLI", + "codeIataCity": "TLI", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "0", + "latitudeAirport": 1.033333, + "longitudeAirport": 120.816666, + "nameAirport": "Tolitoli", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-9", + "airportId": 7774, + "codeIataAirport": "TLJ", + "codeIataCity": "TLJ", + "codeIcaoAirport": "PATL", + "codeIso2Country": "US", + "geonameId": "5875863", + "latitudeAirport": 62.885277, + "longitudeAirport": -155.96806, + "nameAirport": "Tatalina AFS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 7775, + "codeIataAirport": "TLL", + "codeIataCity": "TLL", + "codeIcaoAirport": "EETN", + "codeIso2Country": "EE", + "geonameId": "588404", + "latitudeAirport": 59.416622, + "longitudeAirport": 24.798702, + "nameAirport": "Ulemiste", + "nameCountry": "Estonia", + "phone": "", + "timezone": "Europe/Tallinn" + }, + { + "GMT": "1", + "airportId": 7776, + "codeIataAirport": "TLM", + "codeIataCity": "TLM", + "codeIcaoAirport": "DAON", + "codeIso2Country": "DZ", + "geonameId": "6296381", + "latitudeAirport": 35.016666, + "longitudeAirport": -1.45, + "nameAirport": "Zenata", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "1", + "airportId": 7777, + "codeIataAirport": "TLN", + "codeIataCity": "TLN", + "codeIcaoAirport": "LFTH", + "codeIso2Country": "FR", + "geonameId": "6299477", + "latitudeAirport": 43.09349, + "longitudeAirport": 6.159303, + "nameAirport": "Le Palyvestre", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "airportId": 7778, + "codeIataAirport": "TLO", + "codeIataCity": "TLO", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731550", + "latitudeAirport": -4.983333, + "longitudeAirport": 152.03334, + "nameAirport": "Tol", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 7779, + "codeIataAirport": "TLP", + "codeIataCity": "TLP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298682", + "latitudeAirport": -4.783333, + "longitudeAirport": 141.01666, + "nameAirport": "Tumolbil", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 7780, + "codeIataAirport": "TLQ", + "codeIataCity": "TLQ", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "8260916", + "latitudeAirport": 43.0303, + "longitudeAirport": 89.0972, + "nameAirport": "Jiaohe", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-8", + "airportId": 7781, + "codeIataAirport": "TLR", + "codeIataCity": "TLR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5403783", + "latitudeAirport": 36.216667, + "longitudeAirport": -119.35, + "nameAirport": "Mefford Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 7782, + "codeIataAirport": "TLS", + "codeIataCity": "TLS", + "codeIcaoAirport": "LFBO", + "codeIso2Country": "FR", + "geonameId": "6301770", + "latitudeAirport": 43.63007, + "longitudeAirport": 1.374321, + "nameAirport": "Blagnac", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-9", + "airportId": 7783, + "codeIataAirport": "TLT", + "codeIataCity": "TLT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5876777", + "latitudeAirport": 61.09889, + "longitudeAirport": -160.96472, + "nameAirport": "Tuluksak", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 7784, + "codeIataAirport": "TLU", + "codeIataCity": "TLU", + "codeIcaoAirport": "SKTL", + "codeIso2Country": "CO", + "geonameId": "7731551", + "latitudeAirport": 9.516667, + "longitudeAirport": -75.583336, + "nameAirport": "Tolu", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "2", + "airportId": 7785, + "codeIataAirport": "TLV", + "codeIataCity": "TLV", + "codeIcaoAirport": "LLBG", + "codeIso2Country": "IL", + "geonameId": "390285", + "latitudeAirport": 32.000454, + "longitudeAirport": 34.870743, + "nameAirport": "Ben Gurion International", + "nameCountry": "Israel", + "phone": "", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "10", + "airportId": 7786, + "codeIataAirport": "TLW", + "codeIataCity": "TLW", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2085944", + "latitudeAirport": -5.366667, + "longitudeAirport": 150.01666, + "nameAirport": "Talasea", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "airportId": 7787, + "codeIataAirport": "TLX", + "codeIataCity": "TLX", + "codeIcaoAirport": "SCTL", + "codeIso2Country": "CL", + "geonameId": "7730168", + "latitudeAirport": -35.466667, + "longitudeAirport": -71.666664, + "nameAirport": "Talca", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "10", + "airportId": 7788, + "codeIataAirport": "TLY", + "codeIataCity": "TLY", + "codeIcaoAirport": "UHWP", + "codeIso2Country": "RU", + "geonameId": "7910374", + "latitudeAirport": 44.81465, + "longitudeAirport": 136.28928, + "nameAirport": "Plastun", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Vladivostok" + }, + { + "GMT": "-3", + "airportId": 7789, + "codeIataAirport": "TLZ", + "codeIataCity": "TLZ", + "codeIcaoAirport": "SWKT", + "codeIso2Country": "BR", + "geonameId": "7731552", + "latitudeAirport": -18.166668, + "longitudeAirport": -47.95, + "nameAirport": "Catalao", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "airportId": 7790, + "codeIataAirport": "TMA", + "codeIataCity": "TMA", + "codeIcaoAirport": "KTMA", + "codeIso2Country": "US", + "geonameId": "4226552", + "latitudeAirport": 31.433332, + "longitudeAirport": -83.48333, + "nameAirport": "Henry Tift Myers", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 7791, + "codeIataAirport": "TMB", + "codeIataCity": "MIA", + "codeIcaoAirport": "KTMB", + "codeIso2Country": "US", + "geonameId": "4160729", + "latitudeAirport": 25.65, + "longitudeAirport": -80.433334, + "nameAirport": "Tamiami", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 7792, + "codeIataAirport": "TMC", + "codeIataCity": "TMC", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7336548", + "latitudeAirport": -9.340278, + "longitudeAirport": 119.18306, + "nameAirport": "Tjilik Riwut", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "0", + "airportId": 7793, + "codeIataAirport": "TMD", + "codeIataCity": "TMD", + "codeIcaoAirport": "GQNH", + "codeIso2Country": "MR", + "geonameId": "7668285", + "latitudeAirport": 16.236668, + "longitudeAirport": -8.154167, + "nameAirport": "Timbedra", + "nameCountry": "Mauritania", + "phone": "", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "-5", + "airportId": 7794, + "codeIataAirport": "TME", + "codeIataCity": "TME", + "codeIcaoAirport": "SKTM", + "codeIso2Country": "CO", + "geonameId": "3687769", + "latitudeAirport": 6.5, + "longitudeAirport": -71.76667, + "nameAirport": "Tame", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "8", + "airportId": 7795, + "codeIataAirport": "TMG", + "codeIataCity": "TMG", + "codeIcaoAirport": "WBKM", + "codeIso2Country": "MY", + "geonameId": "7731553", + "latitudeAirport": 5.4, + "longitudeAirport": 118.65, + "nameAirport": "Tomanggong", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "9", + "airportId": 7796, + "codeIataAirport": "TMH", + "codeIataCity": "TMH", + "codeIcaoAirport": "WAKT", + "codeIso2Country": "ID", + "geonameId": "6301189", + "latitudeAirport": -6.083333, + "longitudeAirport": 140.26666, + "nameAirport": "Tanahmerah", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "5.45", + "airportId": 7797, + "codeIataAirport": "TMI", + "codeIataCity": "TMI", + "codeIcaoAirport": "VNTR", + "codeIso2Country": "NP", + "geonameId": "7668632", + "latitudeAirport": 27.3, + "longitudeAirport": 87.2, + "nameAirport": "Tumling Tar", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "5", + "airportId": 7798, + "codeIataAirport": "TMJ", + "codeIataCity": "TMJ", + "codeIcaoAirport": "UTST", + "codeIso2Country": "UZ", + "geonameId": "6301012", + "latitudeAirport": 37.280502, + "longitudeAirport": 67.318954, + "nameAirport": "Termez", + "nameCountry": "Uzbekistan", + "phone": "", + "timezone": "Asia/Samarkand" + }, + { + "GMT": "7", + "airportId": 7799, + "codeIataAirport": "TMK", + "codeIataCity": "TMK", + "codeIcaoAirport": "", + "codeIso2Country": "VN", + "geonameId": "8298707", + "latitudeAirport": 15.566667, + "longitudeAirport": 108.48333, + "nameAirport": "Tamky", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "0", + "airportId": 7800, + "codeIataAirport": "TML", + "codeIataCity": "TML", + "codeIcaoAirport": "DGLE", + "codeIso2Country": "GH", + "geonameId": "6296422", + "latitudeAirport": 9.406944, + "longitudeAirport": -0.879167, + "nameAirport": "Tamale", + "nameCountry": "Ghana", + "phone": "", + "timezone": "Africa/Accra" + }, + { + "GMT": "3", + "airportId": 7801, + "codeIataAirport": "TMM", + "codeIataCity": "TMM", + "codeIcaoAirport": "FMMT", + "codeIso2Country": "MG", + "geonameId": "1055977", + "latitudeAirport": -18.11, + "longitudeAirport": 49.392223, + "nameAirport": "Tamatave", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "12", + "airportId": 7802, + "codeIataAirport": "TMN", + "codeIataCity": "TMN", + "codeIcaoAirport": "", + "codeIso2Country": "KI", + "geonameId": "0", + "latitudeAirport": -2.483333, + "longitudeAirport": 175.98334, + "nameAirport": "Tamana Island", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "-4", + "airportId": 7803, + "codeIataAirport": "TMO", + "codeIataCity": "TMO", + "codeIcaoAirport": "SVTM", + "codeIso2Country": "VE", + "geonameId": "3625893", + "latitudeAirport": 7.3, + "longitudeAirport": -61.5, + "nameAirport": "Tumeremo", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "2", + "airportId": 7804, + "codeIataAirport": "TMP", + "codeIataCity": "TMP", + "codeIcaoAirport": "EFTP", + "codeIso2Country": "FI", + "geonameId": "6296563", + "latitudeAirport": 61.42045, + "longitudeAirport": 23.617563, + "nameAirport": "Tampere-pirkkala", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "0", + "airportId": 7805, + "codeIataAirport": "TMQ", + "codeIataCity": "TMQ", + "codeIcaoAirport": "DFEM", + "codeIso2Country": "BF", + "geonameId": "7730460", + "latitudeAirport": 14.783333, + "longitudeAirport": 0.083333, + "nameAirport": "Tambao", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "1", + "airportId": 7806, + "codeIataAirport": "TMR", + "codeIataCity": "TMR", + "codeIcaoAirport": "DAAT", + "codeIso2Country": "DZ", + "geonameId": "6296367", + "latitudeAirport": 22.814722, + "longitudeAirport": 5.459167, + "nameAirport": "Aguemar", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "0", + "airportId": 7807, + "codeIataAirport": "TMS", + "codeIataCity": "TMS", + "codeIcaoAirport": "FPST", + "codeIso2Country": "ST", + "geonameId": "6297079", + "latitudeAirport": 0.378333, + "longitudeAirport": 6.725, + "nameAirport": "Sao Tome Island", + "nameCountry": "Sao Tome and Principe", + "phone": "", + "timezone": "Africa/Sao_Tome" + }, + { + "GMT": "-3", + "airportId": 7808, + "codeIataAirport": "TMT", + "codeIataCity": "TMT", + "codeIcaoAirport": "SBTB", + "codeIso2Country": "BR", + "geonameId": "7668443", + "latitudeAirport": -1.916667, + "longitudeAirport": -55.583332, + "nameAirport": "Trombetas", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Santarem" + }, + { + "GMT": "-6", + "airportId": 7809, + "codeIataAirport": "TMU", + "codeIataCity": "TMU", + "codeIcaoAirport": "MRTR", + "codeIso2Country": "CR", + "geonameId": "7668361", + "latitudeAirport": 9.733333, + "longitudeAirport": -85.01667, + "nameAirport": "Tambor", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "10", + "airportId": 7810, + "codeIataAirport": "TMW", + "codeIataCity": "TMW", + "codeIcaoAirport": "YSTW", + "codeIso2Country": "AU", + "geonameId": "6301351", + "latitudeAirport": -31.0845, + "longitudeAirport": 150.8485, + "nameAirport": "Tamworth Regional Airport", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "airportId": 7811, + "codeIataAirport": "TMX", + "codeIataCity": "TMX", + "codeIcaoAirport": "DAUT", + "codeIso2Country": "DZ", + "geonameId": "6296395", + "latitudeAirport": 29.233334, + "longitudeAirport": 0.283333, + "nameAirport": "Timimoun", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "9", + "airportId": 7812, + "codeIataAirport": "TMY", + "codeIataCity": "TMY", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731554", + "latitudeAirport": -3.95, + "longitudeAirport": 138.41667, + "nameAirport": "Tiom", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "12", + "airportId": 7813, + "codeIataAirport": "TMZ", + "codeIataCity": "TMZ", + "codeIcaoAirport": "NZTH", + "codeIso2Country": "NZ", + "geonameId": "7730733", + "latitudeAirport": -37.11667, + "longitudeAirport": 175.56667, + "nameAirport": "Thames", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "8", + "airportId": 7814, + "codeIataAirport": "TNA", + "codeIataCity": "TNA", + "codeIcaoAirport": "ZSJN", + "codeIso2Country": "CN", + "geonameId": "6453420", + "latitudeAirport": 36.85769, + "longitudeAirport": 117.20688, + "nameAirport": "Jinan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 7815, + "codeIataAirport": "TNB", + "codeIataCity": "TNB", + "codeIcaoAirport": "WRLH", + "codeIso2Country": "ID", + "geonameId": "7731555", + "latitudeAirport": -1.916667, + "longitudeAirport": 116.2, + "nameAirport": "Tanah Grogot", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-9", + "airportId": 7816, + "codeIataAirport": "TNC", + "codeIataCity": "TNC", + "codeIcaoAirport": "PATC", + "codeIso2Country": "US", + "geonameId": "5876267", + "latitudeAirport": 65.56389, + "longitudeAirport": -167.91888, + "nameAirport": "Tin City Afs", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 7817, + "codeIataAirport": "TND", + "codeIataCity": "TND", + "codeIcaoAirport": "MUTD", + "codeIso2Country": "CU", + "geonameId": "6453442", + "latitudeAirport": 21.8, + "longitudeAirport": -80.0, + "nameAirport": "Trinidad", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "9", + "airportId": 7818, + "codeIataAirport": "TNE", + "codeIataCity": "TNE", + "codeIcaoAirport": "RJFG", + "codeIso2Country": "JP", + "geonameId": "6300347", + "latitudeAirport": 30.541111, + "longitudeAirport": 130.95416, + "nameAirport": "Tanegashima", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "airportId": 7819, + "codeIataAirport": "TNF", + "codeIataCity": "TNF", + "codeIcaoAirport": "LFPN", + "codeIso2Country": "FR", + "geonameId": "6299442", + "latitudeAirport": 48.75083, + "longitudeAirport": 2.113056, + "nameAirport": "Toussus-le-noble", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "0", + "airportId": 7820, + "codeIataAirport": "TNG", + "codeIataCity": "TNG", + "codeIcaoAirport": "GMTT", + "codeIso2Country": "MA", + "geonameId": "6297220", + "latitudeAirport": 35.726288, + "longitudeAirport": -5.912898, + "nameAirport": "Boukhalef", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "8", + "airportId": 7821, + "codeIataAirport": "TNH", + "codeIataCity": "TNH", + "codeIcaoAirport": "ZYTN", + "codeIso2Country": "CN", + "geonameId": "8298799", + "latitudeAirport": 41.75, + "longitudeAirport": 125.95, + "nameAirport": "Tonghua Liuhe", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "5.30", + "airportId": 7822, + "codeIataAirport": "TNI", + "codeIataCity": "TNI", + "codeIcaoAirport": "VIST", + "codeIso2Country": "IN", + "geonameId": "6301103", + "latitudeAirport": 24.564325, + "longitudeAirport": 80.85181, + "nameAirport": "Satna", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "7", + "airportId": 7823, + "codeIataAirport": "TNJ", + "codeIataCity": "TNJ", + "codeIcaoAirport": "WIKN", + "codeIso2Country": "ID", + "geonameId": "6301233", + "latitudeAirport": 0.919167, + "longitudeAirport": 104.53611, + "nameAirport": "Kidjang", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-9", + "airportId": 7824, + "codeIataAirport": "TNK", + "codeIataCity": "TNK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5876833", + "latitudeAirport": 60.57083, + "longitudeAirport": -165.26666, + "nameAirport": "Tununak", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 7825, + "codeIataAirport": "TNL", + "codeIataCity": "TNL", + "codeIcaoAirport": "UKLT", + "codeIso2Country": "UA", + "geonameId": "7668512", + "latitudeAirport": 49.566666, + "longitudeAirport": 25.6, + "nameAirport": "Ternopol", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-4", + "airportId": 7826, + "codeIataAirport": "TNM", + "codeIataCity": "TNM", + "codeIcaoAirport": "SCRM", + "codeIso2Country": "AQ", + "geonameId": "8260905", + "latitudeAirport": -62.190556, + "longitudeAirport": -58.98639, + "nameAirport": "Teniente R. Marsh Martin", + "nameCountry": "Antarctica", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "8", + "airportId": 7827, + "codeIataAirport": "TNN", + "codeIataCity": "TNN", + "codeIcaoAirport": "RCNN", + "codeIso2Country": "TW", + "geonameId": "6300301", + "latitudeAirport": 22.948706, + "longitudeAirport": 120.21571, + "nameAirport": "Tainan", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "-6", + "airportId": 7828, + "codeIataAirport": "TNO", + "codeIataCity": "TNO", + "codeIcaoAirport": "MRCV", + "codeIso2Country": "CR", + "geonameId": "7668360", + "latitudeAirport": 10.314033, + "longitudeAirport": -85.815475, + "nameAirport": "Tamarindo", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-8", + "airportId": 7829, + "codeIataAirport": "TNP", + "codeIataCity": "TNP", + "codeIcaoAirport": "KTNP", + "codeIso2Country": "US", + "geonameId": "5404199", + "latitudeAirport": 34.11889, + "longitudeAirport": -115.935, + "nameAirport": "Twentynine Palms", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "14", + "airportId": 7830, + "codeIataAirport": "TNQ", + "codeIataCity": "TNQ", + "codeIcaoAirport": "", + "codeIso2Country": "KI", + "geonameId": "0", + "latitudeAirport": 4.7, + "longitudeAirport": -160.33333, + "nameAirport": "Teraina", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Kiritimati" + }, + { + "GMT": "3", + "airportId": 7831, + "codeIataAirport": "TNR", + "codeIataCity": "TNR", + "codeIcaoAirport": "FMMI", + "codeIso2Country": "MG", + "geonameId": "1070940", + "latitudeAirport": -18.799631, + "longitudeAirport": 47.47503, + "nameAirport": "Ivato International Airport", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-7", + "airportId": 7832, + "codeIataAirport": "TNS", + "codeIataCity": "TNS", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260915", + "latitudeAirport": 62.0, + "longitudeAirport": -127.666664, + "nameAirport": "Tungsten", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Dawson_Creek" + }, + { + "GMT": "-5", + "airportId": 7833, + "codeIataAirport": "TNT", + "codeIataCity": "MIA", + "codeIcaoAirport": "KTNT", + "codeIso2Country": "US", + "geonameId": "4152706", + "latitudeAirport": 25.783333, + "longitudeAirport": -80.183334, + "nameAirport": "Dade Collier", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 7834, + "codeIataAirport": "TNU", + "codeIataCity": "TNU", + "codeIcaoAirport": "KTNU", + "codeIso2Country": "US", + "geonameId": "4868920", + "latitudeAirport": 41.7, + "longitudeAirport": -93.05, + "nameAirport": "Newton Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "14", + "airportId": 7835, + "codeIataAirport": "TNV", + "codeIataCity": "TNV", + "codeIcaoAirport": "", + "codeIso2Country": "KI", + "geonameId": "0", + "latitudeAirport": 3.833333, + "longitudeAirport": -159.35, + "nameAirport": "Tabuaeran", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Kiritimati" + }, + { + "GMT": "-5", + "airportId": 7836, + "codeIataAirport": "TNW", + "codeIataCity": "TNW", + "codeIcaoAirport": "", + "codeIso2Country": "EC", + "geonameId": "8298753", + "latitudeAirport": 62.666195, + "longitudeAirport": -153.7112, + "nameAirport": "Jumandy", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "7", + "airportId": 7837, + "codeIataAirport": "TNX", + "codeIataCity": "TNX", + "codeIcaoAirport": "VDST", + "codeIso2Country": "KH", + "geonameId": "7730213", + "latitudeAirport": 13.533333, + "longitudeAirport": 106.03333, + "nameAirport": "Stung Treng", + "nameCountry": "Cambodia", + "phone": "", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "7", + "airportId": 7838, + "codeIataAirport": "TNZ", + "codeIataCity": "TNZ", + "codeIcaoAirport": "", + "codeIso2Country": "MN", + "geonameId": "8260912", + "latitudeAirport": 48.739723, + "longitudeAirport": 98.275276, + "nameAirport": "Tosontsengel", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Hovd" + }, + { + "GMT": "-8", + "airportId": 7839, + "codeIataAirport": "TOA", + "codeIataCity": "TOA", + "codeIcaoAirport": "KTOA", + "codeIso2Country": "US", + "geonameId": "5411133", + "latitudeAirport": 33.833332, + "longitudeAirport": -118.316666, + "nameAirport": "Torrance Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "airportId": 7840, + "codeIataAirport": "TOB", + "codeIataCity": "TOB", + "codeIcaoAirport": "HLGN", + "codeIso2Country": "LY", + "geonameId": "7730618", + "latitudeAirport": 31.854168, + "longitudeAirport": 23.917221, + "nameAirport": "Tobruk", + "nameCountry": "Libya", + "phone": "", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "-5", + "airportId": 7841, + "codeIataAirport": "TOC", + "codeIataCity": "TOC", + "codeIcaoAirport": "KTOC", + "codeIso2Country": "US", + "geonameId": "4226722", + "latitudeAirport": 34.583332, + "longitudeAirport": -83.316666, + "nameAirport": "Toccoa RG Letourneau Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 7842, + "codeIataAirport": "TOD", + "codeIataCity": "TOD", + "codeIcaoAirport": "WMBT", + "codeIso2Country": "MY", + "geonameId": "6354928", + "latitudeAirport": 2.75, + "longitudeAirport": 104.166664, + "nameAirport": "Tioman", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "1", + "airportId": 7843, + "codeIataAirport": "TOE", + "codeIataCity": "TOE", + "codeIcaoAirport": "DTTZ", + "codeIso2Country": "TN", + "geonameId": "6296476", + "latitudeAirport": 33.916668, + "longitudeAirport": 8.133333, + "nameAirport": "Tozeur", + "nameCountry": "Tunisia", + "phone": "", + "timezone": "Africa/Tunis" + }, + { + "GMT": "7", + "airportId": 7844, + "codeIataAirport": "TOF", + "codeIataCity": "TOF", + "codeIcaoAirport": "UNTT", + "codeIso2Country": "RU", + "geonameId": "7668526", + "latitudeAirport": 56.5, + "longitudeAirport": 84.96667, + "nameAirport": "Tomsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Novosibirsk" + }, + { + "GMT": "-9", + "airportId": 7845, + "codeIataAirport": "TOG", + "codeIataCity": "TOG", + "codeIcaoAirport": "PATG", + "codeIso2Country": "US", + "geonameId": "5876352", + "latitudeAirport": 59.056667, + "longitudeAirport": -160.38222, + "nameAirport": "Togiak Village", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "11", + "airportId": 7846, + "codeIataAirport": "TOH", + "codeIataCity": "TOH", + "codeIcaoAirport": "NVSD", + "codeIso2Country": "VU", + "geonameId": "7668374", + "latitudeAirport": -13.166667, + "longitudeAirport": 166.75, + "nameAirport": "Torres Airstrip", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-6", + "airportId": 7847, + "codeIataAirport": "TOI", + "codeIataCity": "TOI", + "codeIcaoAirport": "KTOI", + "codeIso2Country": "US", + "geonameId": "4094172", + "latitudeAirport": 31.8, + "longitudeAirport": -85.96667, + "nameAirport": "Troy Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 7848, + "codeIataAirport": "TOJ", + "codeIataCity": "MAD", + "codeIcaoAirport": "LETO", + "codeIso2Country": "ES", + "geonameId": "6301767", + "latitudeAirport": 40.455555, + "longitudeAirport": -3.546667, + "nameAirport": "Torrejon AFB", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "10", + "airportId": 7849, + "codeIataAirport": "TOK", + "codeIataCity": "TOK", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260911", + "latitudeAirport": -6.233333, + "longitudeAirport": 155.33333, + "nameAirport": "Torokina", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 7850, + "codeIataAirport": "TOL", + "codeIataCity": "TOL", + "codeIcaoAirport": "KTOL", + "codeIso2Country": "US", + "geonameId": "5174046", + "latitudeAirport": 41.5925, + "longitudeAirport": -83.8069, + "nameAirport": "Toledo Express", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 7851, + "codeIataAirport": "TOM", + "codeIataCity": "TOM", + "codeIcaoAirport": "GATB", + "codeIso2Country": "ML", + "geonameId": "6297182", + "latitudeAirport": 16.732222, + "longitudeAirport": -3.005278, + "nameAirport": "Tombouctou", + "nameCountry": "Mali", + "phone": "", + "timezone": "Africa/Bamako" + }, + { + "GMT": "10", + "airportId": 7852, + "codeIataAirport": "TON", + "codeIataCity": "TON", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260910", + "latitudeAirport": -6.35, + "longitudeAirport": 155.59166, + "nameAirport": "Tonu", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 7853, + "codeIataAirport": "TOO", + "codeIataCity": "TOO", + "codeIcaoAirport": "MRSV", + "codeIso2Country": "CR", + "geonameId": "7730114", + "latitudeAirport": 8.833333, + "longitudeAirport": -82.96667, + "nameAirport": "San Vito", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-6", + "airportId": 7854, + "codeIataAirport": "TOP", + "codeIataCity": "TOP", + "codeIcaoAirport": "KTOP", + "codeIso2Country": "US", + "geonameId": "4280539", + "latitudeAirport": 39.06972, + "longitudeAirport": -95.6225, + "nameAirport": "Philip Billard", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "airportId": 7855, + "codeIataAirport": "TOQ", + "codeIataCity": "TOQ", + "codeIcaoAirport": "", + "codeIso2Country": "CL", + "geonameId": "3869716", + "latitudeAirport": -22.13611, + "longitudeAirport": -70.061386, + "nameAirport": "Barriles", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-7", + "airportId": 7856, + "codeIataAirport": "TOR", + "codeIataCity": "TOR", + "codeIcaoAirport": "KTOR", + "codeIso2Country": "US", + "geonameId": "5841211", + "latitudeAirport": 42.066666, + "longitudeAirport": -104.183334, + "nameAirport": "Torrington Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 7857, + "codeIataAirport": "TOS", + "codeIataCity": "TOS", + "codeIcaoAirport": "ENTC", + "codeIso2Country": "NO", + "geonameId": "6296776", + "latitudeAirport": 69.67983, + "longitudeAirport": 18.907343, + "nameAirport": "Tromso/langnes", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-3", + "airportId": 7858, + "codeIataAirport": "TOT", + "codeIataCity": "TOT", + "codeIcaoAirport": "", + "codeIso2Country": "SR", + "geonameId": "3382867", + "latitudeAirport": 5.883333, + "longitudeAirport": -56.316666, + "nameAirport": "Coronie", + "nameCountry": "Suriname", + "phone": "", + "timezone": "America/Paramaribo" + }, + { + "GMT": "11", + "airportId": 7859, + "codeIataAirport": "TOU", + "codeIataCity": "TOU", + "codeIcaoAirport": "NWWU", + "codeIso2Country": "NC", + "geonameId": "7730138", + "latitudeAirport": -20.8, + "longitudeAirport": 165.25, + "nameAirport": "Touho", + "nameCountry": "New Caledonia", + "phone": "", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "-4", + "airportId": 7860, + "codeIataAirport": "TOV", + "codeIataCity": "TOV", + "codeIcaoAirport": "", + "codeIso2Country": "VG", + "geonameId": "0", + "latitudeAirport": 18.45, + "longitudeAirport": -64.583336, + "nameAirport": "West End SPB", + "nameCountry": "British Virgin Islands", + "phone": "", + "timezone": "America/Tortola" + }, + { + "GMT": "-3", + "airportId": 7861, + "codeIataAirport": "TOW", + "codeIataCity": "TOW", + "codeIcaoAirport": "SBTD", + "codeIso2Country": "BR", + "geonameId": "7730783", + "latitudeAirport": -24.69861, + "longitudeAirport": -53.69611, + "nameAirport": "Toledo", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "5", + "airportId": 7862, + "codeIataAirport": "TOX", + "codeIataCity": "TOX", + "codeIcaoAirport": "USTO", + "codeIso2Country": "RU", + "geonameId": "7731556", + "latitudeAirport": 58.13333, + "longitudeAirport": 68.23333, + "nameAirport": "Tobolsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "9", + "airportId": 7863, + "codeIataAirport": "TOY", + "codeIataCity": "TOY", + "codeIcaoAirport": "RJNT", + "codeIso2Country": "JP", + "geonameId": "6300369", + "latitudeAirport": 36.64245, + "longitudeAirport": 137.18945, + "nameAirport": "Toyama", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "0", + "airportId": 7864, + "codeIataAirport": "TOZ", + "codeIataCity": "TOZ", + "codeIcaoAirport": "DITM", + "codeIso2Country": "CI", + "geonameId": "8261045", + "latitudeAirport": 8.283333, + "longitudeAirport": -7.683333, + "nameAirport": "Touba", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "-5", + "airportId": 7865, + "codeIataAirport": "TPA", + "codeIataCity": "TPA", + "codeIcaoAirport": "KTPA", + "codeIso2Country": "US", + "geonameId": "4174772", + "latitudeAirport": 27.97987, + "longitudeAirport": -82.535416, + "nameAirport": "Tampa International", + "nameCountry": "United States", + "phone": "813-870-3770", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 7866, + "codeIataAirport": "TPC", + "codeIataCity": "TPC", + "codeIcaoAirport": "SETR", + "codeIso2Country": "EC", + "geonameId": "7668451", + "latitudeAirport": -1.416667, + "longitudeAirport": -76.78333, + "nameAirport": "Tarapoa", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "8", + "airportId": 7867, + "codeIataAirport": "TPE", + "codeIataCity": "TPE", + "codeIcaoAirport": "RCTP", + "codeIso2Country": "TW", + "geonameId": "1980018", + "latitudeAirport": 25.07639, + "longitudeAirport": 121.22389, + "nameAirport": "Taiwan Taoyuan International (Chiang Kai Shek International)", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "-5", + "airportId": 7868, + "codeIataAirport": "TPF", + "codeIataCity": "TPA", + "codeIcaoAirport": "KTPF", + "codeIso2Country": "US", + "geonameId": "6301737", + "latitudeAirport": 27.95, + "longitudeAirport": -82.45, + "nameAirport": "Peter O'Knight", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 7869, + "codeIataAirport": "TPG", + "codeIataCity": "TPG", + "codeIcaoAirport": "WMBI", + "codeIso2Country": "MY", + "geonameId": "7731557", + "latitudeAirport": 4.85, + "longitudeAirport": 100.73333, + "nameAirport": "Taiping", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "-8", + "airportId": 7870, + "codeIataAirport": "TPH", + "codeIataCity": "TPH", + "codeIcaoAirport": "KTPH", + "codeIso2Country": "US", + "geonameId": "5513796", + "latitudeAirport": 38.066666, + "longitudeAirport": -117.23333, + "nameAirport": "Tonopah Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 7871, + "codeIataAirport": "TPI", + "codeIataCity": "TPI", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8261018", + "latitudeAirport": -8.366667, + "longitudeAirport": 146.98334, + "nameAirport": "Tapini", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5.45", + "airportId": 7872, + "codeIataAirport": "TPJ", + "codeIataCity": "TPJ", + "codeIcaoAirport": "VNTJ", + "codeIso2Country": "NP", + "geonameId": "7731558", + "latitudeAirport": 27.35, + "longitudeAirport": 87.683334, + "nameAirport": "Taplejung Suketar", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "7", + "airportId": 7873, + "codeIataAirport": "TPK", + "codeIataCity": "TPK", + "codeIcaoAirport": "WITA", + "codeIso2Country": "ID", + "geonameId": "7731559", + "latitudeAirport": 3.266667, + "longitudeAirport": 97.183334, + "nameAirport": "Tapaktuan", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-6", + "airportId": 7874, + "codeIataAirport": "TPL", + "codeIataCity": "TPL", + "codeIcaoAirport": "KTPL", + "codeIso2Country": "US", + "geonameId": "6299184", + "latitudeAirport": 31.150278, + "longitudeAirport": -97.409164, + "nameAirport": "Draughon-miller Central Texas Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 7875, + "codeIataAirport": "TPN", + "codeIataCity": "TPN", + "codeIcaoAirport": "SETI", + "codeIso2Country": "EC", + "geonameId": "6300724", + "latitudeAirport": -0.766667, + "longitudeAirport": -75.53333, + "nameAirport": "Tiputini", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-9", + "airportId": 7876, + "codeIataAirport": "TPO", + "codeIataCity": "TPO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 60.166668, + "longitudeAirport": -154.33333, + "nameAirport": "Tanalian Point", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 7877, + "codeIataAirport": "TPP", + "codeIataCity": "TPP", + "codeIcaoAirport": "SPST", + "codeIso2Country": "PE", + "geonameId": "6300820", + "latitudeAirport": -6.511111, + "longitudeAirport": -76.39861, + "nameAirport": "Tarapoto", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "-7", + "airportId": 7878, + "codeIataAirport": "TPQ", + "codeIataCity": "TPQ", + "codeIcaoAirport": "MMEP", + "codeIso2Country": "MX", + "geonameId": "6299842", + "latitudeAirport": 21.5, + "longitudeAirport": -104.9, + "nameAirport": "Tepic", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mazatlan" + }, + { + "GMT": "8", + "airportId": 7879, + "codeIataAirport": "TPR", + "codeIataCity": "TPR", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731560", + "latitudeAirport": -22.75, + "longitudeAirport": 117.666664, + "nameAirport": "Tom Price", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "airportId": 7880, + "codeIataAirport": "TPS", + "codeIataCity": "TPS", + "codeIcaoAirport": "LICT", + "codeIso2Country": "IT", + "geonameId": "6299562", + "latitudeAirport": 37.901386, + "longitudeAirport": 12.495865, + "nameAirport": "Birgi", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "0", + "airportId": 7881, + "codeIataAirport": "TPT", + "codeIataCity": "TPT", + "codeIcaoAirport": "", + "codeIso2Country": "LR", + "geonameId": "0", + "latitudeAirport": 6.483333, + "longitudeAirport": -8.866667, + "nameAirport": "Tapeta", + "nameCountry": "Liberia", + "phone": "", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "5.45", + "airportId": 7882, + "codeIataAirport": "TPU", + "codeIataCity": "TPU", + "codeIcaoAirport": "", + "codeIso2Country": "NP", + "geonameId": "0", + "latitudeAirport": 28.55, + "longitudeAirport": 81.191666, + "nameAirport": "Tikapur", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-10", + "airportId": 7883, + "codeIataAirport": "TPX", + "codeIataCity": "TPX", + "codeIcaoAirport": "", + "codeIso2Country": "PF", + "geonameId": "8299123", + "latitudeAirport": -16.283333, + "longitudeAirport": -151.83333, + "nameAirport": "Tupai", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "1", + "airportId": 7884, + "codeIataAirport": "TPY", + "codeIataCity": "TRN", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 45.0705621, + "longitudeAirport": 7.6866186, + "nameAirport": "Porta Nuova Railway Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "3", + "airportId": 7885, + "codeIataAirport": "TQD", + "codeIataCity": "TQD", + "codeIcaoAirport": "", + "codeIso2Country": "IQ", + "geonameId": "8299116", + "latitudeAirport": 33.3381, + "longitudeAirport": 43.5969, + "nameAirport": "Al Taqaddum AB", + "nameCountry": "Iraq", + "phone": "", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "5", + "airportId": 7886, + "codeIataAirport": "TQL", + "codeIataCity": "TQL", + "codeIcaoAirport": "USDS", + "codeIso2Country": "RU", + "geonameId": "8260760", + "latitudeAirport": 64.92134, + "longitudeAirport": 77.797356, + "nameAirport": "Tarko-Sale", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "4.30", + "airportId": 7887, + "codeIataAirport": "TQN", + "codeIataCity": "TQN", + "codeIcaoAirport": "OATQ", + "codeIso2Country": "AF", + "geonameId": "8298749", + "latitudeAirport": 36.766666, + "longitudeAirport": 69.53333, + "nameAirport": "Taluqan", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "1", + "airportId": 7888, + "codeIataAirport": "TQR", + "codeIataCity": "TQR", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 42.11667, + "longitudeAirport": 15.483333, + "nameAirport": "San Domino Island", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "airportId": 7889, + "codeIataAirport": "TQS", + "codeIataCity": "TQS", + "codeIcaoAirport": "SKTQ", + "codeIso2Country": "CO", + "geonameId": "6978426", + "latitudeAirport": 0.733333, + "longitudeAirport": -75.23333, + "nameAirport": "Tres Esquinas", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "9", + "airportId": 7890, + "codeIataAirport": "TRA", + "codeIataCity": "TRA", + "codeIcaoAirport": "RORT", + "codeIso2Country": "JP", + "geonameId": "6300468", + "latitudeAirport": 24.65, + "longitudeAirport": 124.7, + "nameAirport": "Tarama", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "airportId": 7891, + "codeIataAirport": "TRB", + "codeIataCity": "TRB", + "codeIcaoAirport": "SKTU", + "codeIso2Country": "CO", + "geonameId": "7731562", + "latitudeAirport": 8.078333, + "longitudeAirport": -76.748055, + "nameAirport": "Gonzalo", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "airportId": 7892, + "codeIataAirport": "TRC", + "codeIataCity": "TRC", + "codeIcaoAirport": "MMTC", + "codeIso2Country": "MX", + "geonameId": "3981230", + "latitudeAirport": 25.563066, + "longitudeAirport": -103.39874, + "nameAirport": "Francisco Sarabia", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Monterrey" + }, + { + "GMT": "1", + "airportId": 7893, + "codeIataAirport": "TRD", + "codeIataCity": "TRD", + "codeIcaoAirport": "ENVA", + "codeIso2Country": "NO", + "geonameId": "6296778", + "latitudeAirport": 63.454285, + "longitudeAirport": 10.917863, + "nameAirport": "Værnes", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "0", + "airportId": 7894, + "codeIataAirport": "TRE", + "codeIataCity": "TRE", + "codeIcaoAirport": "EGPU", + "codeIso2Country": "GB", + "geonameId": "6296635", + "latitudeAirport": 56.500557, + "longitudeAirport": -6.871389, + "nameAirport": "Tiree", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 7895, + "codeIataAirport": "TRF", + "codeIataCity": "OSL", + "codeIcaoAirport": "ENTO", + "codeIso2Country": "NO", + "geonameId": "6296777", + "latitudeAirport": 59.178085, + "longitudeAirport": 10.251807, + "nameAirport": "Sandefjord", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "12", + "airportId": 7896, + "codeIataAirport": "TRG", + "codeIataCity": "TRG", + "codeIcaoAirport": "NZTG", + "codeIso2Country": "NZ", + "geonameId": "2208089", + "latitudeAirport": -37.67093, + "longitudeAirport": 176.19772, + "nameAirport": "Tauranga", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-8", + "airportId": 7897, + "codeIataAirport": "TRH", + "codeIataCity": "TRH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5403605", + "latitudeAirport": 35.81278, + "longitudeAirport": -117.325836, + "nameAirport": "Trona", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 7898, + "codeIataAirport": "TRI", + "codeIataCity": "TRI", + "codeIcaoAirport": "KTRI", + "codeIso2Country": "US", + "geonameId": "4663236", + "latitudeAirport": 36.48111, + "longitudeAirport": -82.40785, + "nameAirport": "Tri-cities Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 7899, + "codeIataAirport": "TRJ", + "codeIataCity": "TRJ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2085793", + "latitudeAirport": -5.616667, + "longitudeAirport": 141.05, + "nameAirport": "Tarakbits", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 7900, + "codeIataAirport": "TRK", + "codeIataCity": "TRK", + "codeIcaoAirport": "WALR", + "codeIso2Country": "ID", + "geonameId": "6301277", + "latitudeAirport": 3.327222, + "longitudeAirport": 117.56528, + "nameAirport": "Juwata", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-6", + "airportId": 7901, + "codeIataAirport": "TRL", + "codeIataCity": "TRL", + "codeIcaoAirport": "KTRL", + "codeIso2Country": "US", + "geonameId": "4736051", + "latitudeAirport": 32.735832, + "longitudeAirport": -96.275, + "nameAirport": "Terrell Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 7902, + "codeIataAirport": "TRM", + "codeIataCity": "TRM", + "codeIcaoAirport": "KTRM", + "codeIso2Country": "US", + "geonameId": "5402153", + "latitudeAirport": 33.630554, + "longitudeAirport": -116.93611, + "nameAirport": "Thermal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 7903, + "codeIataAirport": "TRN", + "codeIataCity": "TRN", + "codeIcaoAirport": "LIMF", + "codeIso2Country": "IT", + "geonameId": "6299576", + "latitudeAirport": 45.191456, + "longitudeAirport": 7.643049, + "nameAirport": "Sandro Pertini (caselle)", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "10", + "airportId": 7904, + "codeIataAirport": "TRO", + "codeIataCity": "TRO", + "codeIcaoAirport": "YTRE", + "codeIso2Country": "AU", + "geonameId": "7668781", + "latitudeAirport": -31.890272, + "longitudeAirport": 152.50896, + "nameAirport": "Taree", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-9", + "airportId": 7905, + "codeIataAirport": "TRP", + "codeIataCity": "TRP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Coast Guard Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 7906, + "codeIataAirport": "TRQ", + "codeIataCity": "TRQ", + "codeIcaoAirport": "SBTK", + "codeIso2Country": "BR", + "geonameId": "6300677", + "latitudeAirport": -8.1, + "longitudeAirport": -70.75, + "nameAirport": "Tarauaca", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Rio_Branco" + }, + { + "GMT": "5.30", + "airportId": 7907, + "codeIataAirport": "TRR", + "codeIataCity": "TRR", + "codeIcaoAirport": "VCCT", + "codeIso2Country": "LK", + "geonameId": "6301063", + "latitudeAirport": 8.536944, + "longitudeAirport": 81.183334, + "nameAirport": "China Bay", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "1", + "airportId": 7908, + "codeIataAirport": "TRS", + "codeIataCity": "TRS", + "codeIcaoAirport": "LIPQ", + "codeIso2Country": "IT", + "geonameId": "3220056", + "latitudeAirport": 45.82078, + "longitudeAirport": 13.485678, + "nameAirport": "Ronchi Dei Legionari", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-7", + "airportId": 7909, + "codeIataAirport": "TRT", + "codeIataCity": "TRT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5783768", + "latitudeAirport": 41.716667, + "longitudeAirport": -112.166664, + "nameAirport": "Tremonton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 7910, + "codeIataAirport": "TRU", + "codeIataCity": "TRU", + "codeIcaoAirport": "SPRU", + "codeIso2Country": "PE", + "geonameId": "6300818", + "latitudeAirport": -8.09, + "longitudeAirport": -79.115, + "nameAirport": "Trujillo", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "5.30", + "airportId": 7911, + "codeIataAirport": "TRV", + "codeIataCity": "TRV", + "codeIcaoAirport": "VOTV", + "codeIso2Country": "IN", + "geonameId": "6301129", + "latitudeAirport": 8.476126, + "longitudeAirport": 76.91907, + "nameAirport": "Thiruvananthapuram International", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "12", + "airportId": 7912, + "codeIataAirport": "TRW", + "codeIataCity": "TRW", + "codeIcaoAirport": "NGTA", + "codeIso2Country": "KI", + "geonameId": "6299954", + "latitudeAirport": 1.358333, + "longitudeAirport": 172.94167, + "nameAirport": "Bonriki", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "-6", + "airportId": 7913, + "codeIataAirport": "TRX", + "codeIataCity": "TRX", + "codeIcaoAirport": "KTRX", + "codeIso2Country": "US", + "geonameId": "5057568", + "latitudeAirport": 40.083332, + "longitudeAirport": -93.61667, + "nameAirport": "Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 7914, + "codeIataAirport": "TRY", + "codeIataCity": "TRY", + "codeIcaoAirport": "HUTO", + "codeIso2Country": "UG", + "geonameId": "6297385", + "latitudeAirport": 0.7, + "longitudeAirport": 34.183334, + "nameAirport": "Tororo", + "nameCountry": "Uganda", + "phone": "", + "timezone": "Africa/Kampala" + }, + { + "GMT": "5.30", + "airportId": 7915, + "codeIataAirport": "TRZ", + "codeIataCity": "TRZ", + "codeIcaoAirport": "VOTR", + "codeIso2Country": "IN", + "geonameId": "6301128", + "latitudeAirport": 10.762168, + "longitudeAirport": 78.70724, + "nameAirport": "Civil", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "8", + "airportId": 7916, + "codeIataAirport": "TSA", + "codeIataCity": "TPE", + "codeIcaoAirport": "RCSS", + "codeIso2Country": "TW", + "geonameId": "1980019", + "latitudeAirport": 25.06279, + "longitudeAirport": 121.551926, + "nameAirport": "Taipei Songshan (Sung Shan)", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "2", + "airportId": 7917, + "codeIataAirport": "TSB", + "codeIataCity": "TSB", + "codeIcaoAirport": "FYTM", + "codeIso2Country": "NA", + "geonameId": "7668264", + "latitudeAirport": -19.266666, + "longitudeAirport": 17.733334, + "nameAirport": "Tsumeb", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-5", + "airportId": 7918, + "codeIataAirport": "TSC", + "codeIataCity": "TSC", + "codeIcaoAirport": "SETH", + "codeIso2Country": "EC", + "geonameId": "7731563", + "latitudeAirport": -2.383333, + "longitudeAirport": -77.5, + "nameAirport": "Taisha", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "2", + "airportId": 7919, + "codeIataAirport": "TSD", + "codeIataCity": "TSD", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "947872", + "latitudeAirport": -22.616667, + "longitudeAirport": 30.166668, + "nameAirport": "Tshipise", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "6", + "airportId": 7920, + "codeIataAirport": "TSE", + "codeIataCity": "TSE", + "codeIcaoAirport": "UACC", + "codeIso2Country": "KZ", + "geonameId": "6300914", + "latitudeAirport": 51.02781, + "longitudeAirport": 71.4612, + "nameAirport": "Astana", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "1", + "airportId": 7921, + "codeIataAirport": "TSF", + "codeIataCity": "VCE", + "codeIcaoAirport": "LIPH", + "codeIso2Country": "IT", + "geonameId": "6299593", + "latitudeAirport": 45.655113, + "longitudeAirport": 12.204444, + "nameAirport": "S. Angelo", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-9", + "airportId": 7922, + "codeIataAirport": "TSG", + "codeIataCity": "TSG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5875783", + "latitudeAirport": 63.35, + "longitudeAirport": -143.5, + "nameAirport": "Intermediate", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "airportId": 7923, + "codeIataAirport": "TSH", + "codeIataCity": "TSH", + "codeIcaoAirport": "FZUK", + "codeIso2Country": "CD", + "geonameId": "6297161", + "latitudeAirport": -6.441111, + "longitudeAirport": 20.797222, + "nameAirport": "Tshikapa", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "10", + "airportId": 7924, + "codeIataAirport": "TSI", + "codeIataCity": "TSI", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298957", + "latitudeAirport": -6.85, + "longitudeAirport": 146.35, + "nameAirport": "Tsili Tsili", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "airportId": 7925, + "codeIataAirport": "TSJ", + "codeIataCity": "TSJ", + "codeIcaoAirport": "RJDT", + "codeIso2Country": "JP", + "geonameId": "6300338", + "latitudeAirport": 34.28615, + "longitudeAirport": 129.32637, + "nameAirport": "Tsushima", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-6", + "airportId": 7926, + "codeIataAirport": "TSL", + "codeIataCity": "TSL", + "codeIcaoAirport": "MMTN", + "codeIso2Country": "MX", + "geonameId": "7668350", + "latitudeAirport": 21.983334, + "longitudeAirport": -98.75, + "nameAirport": "Tamuin", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-7", + "airportId": 7927, + "codeIataAirport": "TSM", + "codeIataCity": "TSM", + "codeIcaoAirport": "KSKX", + "codeIso2Country": "US", + "geonameId": "5493794", + "latitudeAirport": 36.459167, + "longitudeAirport": -105.67528, + "nameAirport": "Taos", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "airportId": 7928, + "codeIataAirport": "TSN", + "codeIataCity": "TSN", + "codeIcaoAirport": "ZBTJ", + "codeIso2Country": "CN", + "geonameId": "6301356", + "latitudeAirport": 39.122627, + "longitudeAirport": 117.3399, + "nameAirport": "Tianjin Binhai International", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "0", + "airportId": 7929, + "codeIataAirport": "TSO", + "codeIataCity": "ISC", + "codeIcaoAirport": "EGHT", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 49.945557, + "longitudeAirport": -6.331389, + "nameAirport": "Tresco", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-8", + "airportId": 7930, + "codeIataAirport": "TSP", + "codeIataCity": "TSP", + "codeIcaoAirport": "KTSP", + "codeIso2Country": "US", + "geonameId": "5401308", + "latitudeAirport": 35.1375, + "longitudeAirport": -118.441666, + "nameAirport": "Kern County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "airportId": 7931, + "codeIataAirport": "TSQ", + "codeIataCity": "TSQ", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8298765", + "latitudeAirport": -29.3325, + "longitudeAirport": -49.746113, + "nameAirport": "Torres", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "2", + "airportId": 7932, + "codeIataAirport": "TSR", + "codeIataCity": "TSR", + "codeIcaoAirport": "LRTR", + "codeIso2Country": "RO", + "geonameId": "6299713", + "latitudeAirport": 45.809925, + "longitudeAirport": 21.32012, + "nameAirport": "Timisoara (traian Vuia) International", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "-5", + "airportId": 7933, + "codeIataAirport": "TSS", + "codeIataCity": "NYC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.766666, + "longitudeAirport": -74.166664, + "nameAirport": "East 34th St Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "7", + "airportId": 7934, + "codeIataAirport": "TST", + "codeIataCity": "TST", + "codeIcaoAirport": "VTST", + "codeIso2Country": "TH", + "geonameId": "6301160", + "latitudeAirport": 7.5, + "longitudeAirport": 99.61667, + "nameAirport": "Trang", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "12", + "airportId": 7935, + "codeIataAirport": "TSU", + "codeIataCity": "TSU", + "codeIcaoAirport": "", + "codeIso2Country": "KI", + "geonameId": "0", + "latitudeAirport": -1.416667, + "longitudeAirport": 174.83333, + "nameAirport": "Tabiteuea South", + "nameCountry": "Kiribati", + "phone": "", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "10", + "airportId": 7936, + "codeIataAirport": "TSV", + "codeIataCity": "TSV", + "codeIcaoAirport": "YBTL", + "codeIso2Country": "AU", + "geonameId": "6301304", + "latitudeAirport": -19.256506, + "longitudeAirport": 146.7708, + "nameAirport": "Townsville International", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 7937, + "codeIataAirport": "TSW", + "codeIataCity": "TSW", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8261073", + "latitudeAirport": -6.966667, + "longitudeAirport": 146.03334, + "nameAirport": "Tsewi", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 7938, + "codeIataAirport": "TSX", + "codeIataCity": "TSX", + "codeIcaoAirport": "WALT", + "codeIso2Country": "ID", + "geonameId": "7731564", + "latitudeAirport": -0.083333, + "longitudeAirport": 117.433334, + "nameAirport": "Tanjung Santan", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "7", + "airportId": 7939, + "codeIataAirport": "TSY", + "codeIataCity": "TSY", + "codeIcaoAirport": "WIAM", + "codeIso2Country": "ID", + "geonameId": "6301218", + "latitudeAirport": -7.3, + "longitudeAirport": 108.2, + "nameAirport": "Tasikmalaya", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "8", + "airportId": 7940, + "codeIataAirport": "TSZ", + "codeIataCity": "TSZ", + "codeIcaoAirport": "", + "codeIso2Country": "MN", + "geonameId": "8260914", + "latitudeAirport": 47.733334, + "longitudeAirport": 101.76667, + "nameAirport": "Tsetserleg", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "0", + "airportId": 7941, + "codeIataAirport": "TTA", + "codeIataCity": "TTA", + "codeIcaoAirport": "GMAT", + "codeIso2Country": "MA", + "geonameId": "6297199", + "latitudeAirport": 28.45, + "longitudeAirport": -11.083333, + "nameAirport": "Tan Tan", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "1", + "airportId": 7942, + "codeIataAirport": "TTB", + "codeIataCity": "TTB", + "codeIcaoAirport": "LIET", + "codeIso2Country": "IT", + "geonameId": "7668319", + "latitudeAirport": 39.916668, + "longitudeAirport": 9.683333, + "nameAirport": "Arbatax", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-4", + "airportId": 7943, + "codeIataAirport": "TTC", + "codeIataCity": "TTC", + "codeIcaoAirport": "", + "codeIso2Country": "CL", + "geonameId": "3870243", + "latitudeAirport": -25.517778, + "longitudeAirport": -70.42222, + "nameAirport": "Taltal", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-8", + "airportId": 7944, + "codeIataAirport": "TTD", + "codeIataCity": "TTD", + "codeIcaoAirport": "KTTD", + "codeIso2Country": "US", + "geonameId": "5757477", + "latitudeAirport": 45.9, + "longitudeAirport": -122.65, + "nameAirport": "Troutdale", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9", + "airportId": 7945, + "codeIataAirport": "TTE", + "codeIataCity": "TTE", + "codeIcaoAirport": "WAMT", + "codeIso2Country": "ID", + "geonameId": "6301197", + "latitudeAirport": 0.8, + "longitudeAirport": 127.4, + "nameAirport": "Babullah", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-3", + "airportId": 7946, + "codeIataAirport": "TTG", + "codeIataCity": "TTG", + "codeIcaoAirport": "SAST", + "codeIso2Country": "AR", + "geonameId": "6300559", + "latitudeAirport": -22.533333, + "longitudeAirport": -63.833332, + "nameAirport": "Tartagal", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "4", + "airportId": 7947, + "codeIataAirport": "TTH", + "codeIataCity": "TTH", + "codeIcaoAirport": "OOTH", + "codeIso2Country": "OM", + "geonameId": "6300108", + "latitudeAirport": 17.633333, + "longitudeAirport": 54.0, + "nameAirport": "Thumrait", + "nameCountry": "Oman", + "phone": "", + "timezone": "Asia/Muscat" + }, + { + "GMT": "-10", + "airportId": 7948, + "codeIataAirport": "TTI", + "codeIataCity": "TTI", + "codeIcaoAirport": "NTTE", + "codeIso2Country": "PF", + "geonameId": "7730707", + "latitudeAirport": -17.083332, + "longitudeAirport": -149.5, + "nameAirport": "Tetiaroa Island", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "9", + "airportId": 7949, + "codeIataAirport": "TTJ", + "codeIataCity": "TTJ", + "codeIcaoAirport": "RJOR", + "codeIso2Country": "JP", + "geonameId": "6300382", + "latitudeAirport": 35.525913, + "longitudeAirport": 134.16756, + "nameAirport": "Tottori", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "0", + "airportId": 7950, + "codeIataAirport": "TTK", + "codeIataCity": "TTK", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2635608", + "latitudeAirport": 51.583332, + "longitudeAirport": -0.083333, + "nameAirport": "Hale Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "12", + "airportId": 7951, + "codeIataAirport": "TTL", + "codeIataCity": "TTL", + "codeIcaoAirport": "", + "codeIso2Country": "FJ", + "geonameId": "8299060", + "latitudeAirport": -16.833332, + "longitudeAirport": 179.0, + "nameAirport": "Turtle Island", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-5", + "airportId": 7952, + "codeIataAirport": "TTM", + "codeIataCity": "TTM", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "0", + "latitudeAirport": 5.716667, + "longitudeAirport": -72.1, + "nameAirport": "Tablon De Tamara", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 7953, + "codeIataAirport": "TTN", + "codeIataCity": "PHL", + "codeIcaoAirport": "KTTN", + "codeIso2Country": "US", + "geonameId": "5101091", + "latitudeAirport": 40.278057, + "longitudeAirport": -74.8125, + "nameAirport": "Trenton Mercer Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 7954, + "codeIataAirport": "TTO", + "codeIataCity": "TTO", + "codeIcaoAirport": "KBTN", + "codeIso2Country": "US", + "geonameId": "5226525", + "latitudeAirport": 45.8, + "longitudeAirport": -97.75, + "nameAirport": "Britton Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 7955, + "codeIataAirport": "TTQ", + "codeIataCity": "TTQ", + "codeIcaoAirport": "MRAO", + "codeIso2Country": "CR", + "geonameId": "7730108", + "latitudeAirport": 10.566667, + "longitudeAirport": -83.51667, + "nameAirport": "Tortuquero", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "8", + "airportId": 7956, + "codeIataAirport": "TTR", + "codeIataCity": "TTR", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "6354930", + "latitudeAirport": -3.042564, + "longitudeAirport": 119.82094, + "nameAirport": "Tana Toraja", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "3", + "airportId": 7957, + "codeIataAirport": "TTS", + "codeIataCity": "TTS", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1055059", + "latitudeAirport": -16.733334, + "longitudeAirport": 47.6, + "nameAirport": "Tsaratanana", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "8", + "airportId": 7958, + "codeIataAirport": "TTT", + "codeIataCity": "TTT", + "codeIcaoAirport": "RCQS", + "codeIso2Country": "TW", + "geonameId": "6300293", + "latitudeAirport": 22.75, + "longitudeAirport": 121.1, + "nameAirport": "Taitung", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "0", + "airportId": 7959, + "codeIataAirport": "TTU", + "codeIataCity": "TTU", + "codeIcaoAirport": "GMTN", + "codeIso2Country": "MA", + "geonameId": "6297219", + "latitudeAirport": 35.583332, + "longitudeAirport": -5.316667, + "nameAirport": "Sania Ramel", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "5.30", + "airportId": 7960, + "codeIataAirport": "TTW", + "codeIataCity": "TTW", + "codeIcaoAirport": "", + "codeIso2Country": "LK", + "geonameId": "5858556", + "latitudeAirport": 63.39111, + "longitudeAirport": -148.95556, + "nameAirport": "Tissa Tank", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "-5", + "airportId": 7961, + "codeIataAirport": "TUA", + "codeIataCity": "TUA", + "codeIcaoAirport": "SETU", + "codeIso2Country": "EC", + "geonameId": "6300725", + "latitudeAirport": 0.8, + "longitudeAirport": -77.71667, + "nameAirport": "Tulcan", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-10", + "airportId": 7962, + "codeIataAirport": "TUB", + "codeIataCity": "TUB", + "codeIcaoAirport": "NTAT", + "codeIso2Country": "PF", + "geonameId": "6299964", + "latitudeAirport": -23.35, + "longitudeAirport": -149.46666, + "nameAirport": "Tubuai", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-3", + "airportId": 7963, + "codeIataAirport": "TUC", + "codeIataCity": "TUC", + "codeIcaoAirport": "SANT", + "codeIso2Country": "AR", + "geonameId": "6300537", + "latitudeAirport": -26.833332, + "longitudeAirport": -65.2, + "nameAirport": "Benj Matienzo", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Tucuman" + }, + { + "GMT": "0", + "airportId": 7964, + "codeIataAirport": "TUD", + "codeIataCity": "TUD", + "codeIcaoAirport": "GOTT", + "codeIso2Country": "SN", + "geonameId": "2244992", + "latitudeAirport": 13.736111, + "longitudeAirport": -13.658333, + "nameAirport": "Tambacounda", + "nameCountry": "Senegal", + "phone": "", + "timezone": "Africa/Dakar" + }, + { + "GMT": "-5", + "airportId": 7965, + "codeIataAirport": "TUE", + "codeIataCity": "TUE", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "3700347", + "latitudeAirport": 9.5725, + "longitudeAirport": -79.48722, + "nameAirport": "Tupile", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "1", + "airportId": 7966, + "codeIataAirport": "TUF", + "codeIataCity": "TUF", + "codeIcaoAirport": "LFOT", + "codeIso2Country": "FR", + "geonameId": "6299438", + "latitudeAirport": 47.428333, + "longitudeAirport": 0.7275, + "nameAirport": "St Symphorien", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "8", + "airportId": 7967, + "codeIataAirport": "TUG", + "codeIataCity": "TUG", + "codeIcaoAirport": "RPUT", + "codeIso2Country": "PH", + "geonameId": "6300489", + "latitudeAirport": 17.641111, + "longitudeAirport": 121.73167, + "nameAirport": "Tuguegarao", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "-6", + "airportId": 7968, + "codeIataAirport": "TUH", + "codeIataCity": "THA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 35.36667, + "longitudeAirport": -86.21667, + "nameAirport": "Arnold AFS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 7969, + "codeIataAirport": "TUI", + "codeIataCity": "TUI", + "codeIcaoAirport": "OETR", + "codeIso2Country": "SA", + "geonameId": "392431", + "latitudeAirport": 31.68873, + "longitudeAirport": 38.73383, + "nameAirport": "Turaif", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "3", + "airportId": 7970, + "codeIataAirport": "TUJ", + "codeIataCity": "TUJ", + "codeIcaoAirport": "", + "codeIso2Country": "ET", + "geonameId": "8298790", + "latitudeAirport": 5.833333, + "longitudeAirport": 35.566666, + "nameAirport": "Tum", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "5", + "airportId": 7971, + "codeIataAirport": "TUK", + "codeIataCity": "TUK", + "codeIcaoAirport": "OPTU", + "codeIso2Country": "PK", + "geonameId": "1337358", + "latitudeAirport": 25.983334, + "longitudeAirport": 63.066666, + "nameAirport": "Turbat International Airport", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-6", + "airportId": 7972, + "codeIataAirport": "TUL", + "codeIataCity": "TUL", + "codeIcaoAirport": "KTUL", + "codeIso2Country": "US", + "geonameId": "6299195", + "latitudeAirport": 36.189808, + "longitudeAirport": -95.8901, + "nameAirport": "Tulsa International", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 7973, + "codeIataAirport": "TUM", + "codeIataCity": "TUM", + "codeIcaoAirport": "YTMU", + "codeIso2Country": "AU", + "geonameId": "7668779", + "latitudeAirport": -35.3, + "longitudeAirport": 148.21666, + "nameAirport": "Tumut", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "airportId": 7974, + "codeIataAirport": "TUN", + "codeIataCity": "TUN", + "codeIcaoAirport": "DTTA", + "codeIso2Country": "TN", + "geonameId": "6296465", + "latitudeAirport": 36.847622, + "longitudeAirport": 10.21709, + "nameAirport": "Carthage", + "nameCountry": "Tunisia", + "phone": "+216-071-754-", + "timezone": "Africa/Tunis" + }, + { + "GMT": "12", + "airportId": 7975, + "codeIataAirport": "TUO", + "codeIataCity": "TUO", + "codeIcaoAirport": "NZAP", + "codeIso2Country": "NZ", + "geonameId": "6236559", + "latitudeAirport": -38.741432, + "longitudeAirport": 176.08235, + "nameAirport": "Taupo", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-6", + "airportId": 7976, + "codeIataAirport": "TUP", + "codeIataCity": "TUP", + "codeIcaoAirport": "KTUP", + "codeIso2Country": "US", + "geonameId": "4448903", + "latitudeAirport": 34.25889, + "longitudeAirport": -88.76722, + "nameAirport": "Lemons Municipalcipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 7977, + "codeIataAirport": "TUQ", + "codeIataCity": "TUQ", + "codeIcaoAirport": "DFOT", + "codeIso2Country": "BF", + "geonameId": "7730465", + "latitudeAirport": 13.0, + "longitudeAirport": -3.0, + "nameAirport": "Tougan", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-3", + "airportId": 7978, + "codeIataAirport": "TUR", + "codeIataCity": "TUR", + "codeIcaoAirport": "SBTU", + "codeIso2Country": "BR", + "geonameId": "6300679", + "latitudeAirport": -3.7, + "longitudeAirport": -49.733334, + "nameAirport": "Tucurui", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Belem" + }, + { + "GMT": "-7", + "airportId": 7979, + "codeIataAirport": "TUS", + "codeIataCity": "TUS", + "codeIcaoAirport": "KTUS", + "codeIso2Country": "US", + "geonameId": "5318324", + "latitudeAirport": 32.12069, + "longitudeAirport": -110.93737, + "nameAirport": "Tucson International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "3", + "airportId": 7980, + "codeIataAirport": "TUU", + "codeIataCity": "TUU", + "codeIcaoAirport": "OETB", + "codeIso2Country": "SA", + "geonameId": "6300028", + "latitudeAirport": 28.375784, + "longitudeAirport": 36.608288, + "nameAirport": "Tabuk", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-4", + "airportId": 7981, + "codeIataAirport": "TUV", + "codeIataCity": "TUV", + "codeIcaoAirport": "SVTC", + "codeIso2Country": "VE", + "geonameId": "7730180", + "latitudeAirport": 9.091667, + "longitudeAirport": -62.05, + "nameAirport": "Tucupita", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-5", + "airportId": 7982, + "codeIataAirport": "TUW", + "codeIataCity": "TUW", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "8299158", + "latitudeAirport": 8.833333, + "longitudeAirport": -77.666664, + "nameAirport": "Tubala", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "-8", + "airportId": 7983, + "codeIataAirport": "TUX", + "codeIataCity": "TUX", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6170118", + "latitudeAirport": 55.1, + "longitudeAirport": -121.083336, + "nameAirport": "Tumbler Ridge", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 7984, + "codeIataAirport": "TUY", + "codeIataCity": "TUY", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "7731565", + "latitudeAirport": 20.216667, + "longitudeAirport": -87.46667, + "nameAirport": "Tulum", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Cancun" + }, + { + "GMT": "3", + "airportId": 7985, + "codeIataAirport": "TVA", + "codeIataCity": "TVA", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1058563", + "latitudeAirport": -17.849443, + "longitudeAirport": 44.919167, + "nameAirport": "Morafenobe", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-5", + "airportId": 7986, + "codeIataAirport": "TVC", + "codeIataCity": "TVC", + "codeIcaoAirport": "KTVC", + "codeIso2Country": "US", + "geonameId": "5012495", + "latitudeAirport": 44.744083, + "longitudeAirport": -85.58035, + "nameAirport": "Cherry Capital Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-6", + "airportId": 7987, + "codeIataAirport": "TVF", + "codeIataCity": "TVF", + "codeIcaoAirport": "KTVF", + "codeIso2Country": "US", + "geonameId": "5049970", + "latitudeAirport": 48.066113, + "longitudeAirport": -96.185, + "nameAirport": "Thief River Falls Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 7988, + "codeIataAirport": "TVI", + "codeIataCity": "TVI", + "codeIcaoAirport": "KTVI", + "codeIso2Country": "US", + "geonameId": "4226357", + "latitudeAirport": 30.9025, + "longitudeAirport": -83.880554, + "nameAirport": "Thomasville Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "airportId": 7989, + "codeIataAirport": "TVL", + "codeIataCity": "TVL", + "codeIcaoAirport": "KTVL", + "codeIso2Country": "US", + "geonameId": "5397664", + "latitudeAirport": 38.89417, + "longitudeAirport": -119.994446, + "nameAirport": "South Lake Tahoe", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "airportId": 7990, + "codeIataAirport": "TVS", + "codeIataCity": "TVS", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "7910486", + "latitudeAirport": 39.724, + "longitudeAirport": 117.99345, + "nameAirport": "Sannuhe", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "12", + "airportId": 7991, + "codeIataAirport": "TVU", + "codeIataCity": "TVU", + "codeIcaoAirport": "NFNM", + "codeIso2Country": "FJ", + "geonameId": "6354931", + "latitudeAirport": -16.693056, + "longitudeAirport": 179.87416, + "nameAirport": "Matei", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "6.30", + "airportId": 7992, + "codeIataAirport": "TVY", + "codeIataCity": "TVY", + "codeIcaoAirport": "VBTV", + "codeIso2Country": "MM", + "geonameId": "7668654", + "latitudeAirport": 14.1, + "longitudeAirport": 98.2, + "nameAirport": "Dawe", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-9", + "airportId": 7993, + "codeIataAirport": "TWA", + "codeIataCity": "TWA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5876974", + "latitudeAirport": 59.166668, + "longitudeAirport": -159.99167, + "nameAirport": "Twin Hills", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 7994, + "codeIataAirport": "TWB", + "codeIataCity": "TWB", + "codeIcaoAirport": "YTWB", + "codeIso2Country": "AU", + "geonameId": "7730276", + "latitudeAirport": -27.542221, + "longitudeAirport": 151.9139, + "nameAirport": "Toowoomba", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-8", + "airportId": 7995, + "codeIataAirport": "TWD", + "codeIataCity": "TWD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5807239", + "latitudeAirport": 48.11667, + "longitudeAirport": -122.76667, + "nameAirport": "Port Townsend", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-9", + "airportId": 7996, + "codeIataAirport": "TWE", + "codeIataCity": "TWE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 65.73333, + "longitudeAirport": -164.85, + "nameAirport": "Taylor", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "airportId": 7997, + "codeIataAirport": "TWF", + "codeIataCity": "TWF", + "codeIcaoAirport": "KTWF", + "codeIso2Country": "US", + "geonameId": "5610811", + "latitudeAirport": 42.481945, + "longitudeAirport": -114.486664, + "nameAirport": "Joslin Field - Magic Valley Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Boise" + }, + { + "GMT": "-8", + "airportId": 7998, + "codeIataAirport": "TWH", + "codeIataCity": "AVX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 33.425, + "longitudeAirport": -118.50833, + "nameAirport": "Two Harbors", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "airportId": 7999, + "codeIataAirport": "TWN", + "codeIataCity": "TWN", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2146997", + "latitudeAirport": -26.4, + "longitudeAirport": 153.05, + "nameAirport": "Tewantin", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 8000, + "codeIataAirport": "TWP", + "codeIataCity": "TWP", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731566", + "latitudeAirport": -17.366667, + "longitudeAirport": 143.75, + "nameAirport": "Torwood", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "airportId": 8001, + "codeIataAirport": "TWT", + "codeIataCity": "TWT", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "1682672", + "latitudeAirport": 5.044958, + "longitudeAirport": 119.74403, + "nameAirport": "Tawitawi", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "8", + "airportId": 8002, + "codeIataAirport": "TWU", + "codeIataCity": "TWU", + "codeIcaoAirport": "WBKW", + "codeIso2Country": "MY", + "geonameId": "6301215", + "latitudeAirport": 4.26275, + "longitudeAirport": 117.884865, + "nameAirport": "Tawau", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "10", + "airportId": 8003, + "codeIataAirport": "TWY", + "codeIataCity": "TWY", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299078", + "latitudeAirport": -7.266667, + "longitudeAirport": 146.06667, + "nameAirport": "Tawa", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "12", + "airportId": 8004, + "codeIataAirport": "TWZ", + "codeIataCity": "MON", + "codeIcaoAirport": "", + "codeIso2Country": "NZ", + "geonameId": "0", + "latitudeAirport": -44.234165, + "longitudeAirport": 170.11722, + "nameAirport": "Pukaki/Twizel", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-3", + "airportId": 8005, + "codeIataAirport": "TXF", + "codeIataCity": "TXF", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "6318755", + "latitudeAirport": -7.133333, + "longitudeAirport": -37.183334, + "nameAirport": "Teixeira de Freitas", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "8", + "airportId": 8006, + "codeIataAirport": "TXG", + "codeIataCity": "TXG", + "codeIcaoAirport": "", + "codeIso2Country": "TW", + "geonameId": "0", + "latitudeAirport": 24.15, + "longitudeAirport": 120.64611, + "nameAirport": "Taichung", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "-6", + "airportId": 8007, + "codeIataAirport": "TXK", + "codeIataCity": "TXK", + "codeIcaoAirport": "KTXK", + "codeIso2Country": "US", + "geonameId": "4736096", + "latitudeAirport": 33.45639, + "longitudeAirport": -93.98917, + "nameAirport": "Texarkana Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 8008, + "codeIataAirport": "TXL", + "codeIataCity": "BER", + "codeIcaoAirport": "EDDT", + "codeIso2Country": "DE", + "geonameId": "3208806", + "latitudeAirport": 52.553944, + "longitudeAirport": 13.291722, + "nameAirport": "Berlin-tegel / Otto Lilienthal", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "9", + "airportId": 8009, + "codeIataAirport": "TXM", + "codeIataCity": "TXM", + "codeIcaoAirport": "WAST", + "codeIso2Country": "ID", + "geonameId": "7731567", + "latitudeAirport": -1.433333, + "longitudeAirport": 132.01666, + "nameAirport": "Teminabuan", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "airportId": 8010, + "codeIataAirport": "TXN", + "codeIataCity": "TXN", + "codeIcaoAirport": "ZSTX", + "codeIso2Country": "CN", + "geonameId": "6324611", + "latitudeAirport": 29.72962, + "longitudeAirport": 118.25646, + "nameAirport": "Tunxi", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "airportId": 8011, + "codeIataAirport": "TXR", + "codeIataCity": "TXR", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298910", + "latitudeAirport": -25.85, + "longitudeAirport": 141.91667, + "nameAirport": "Tanbar", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "0", + "airportId": 8012, + "codeIataAirport": "TXU", + "codeIataCity": "TXU", + "codeIcaoAirport": "DITB", + "codeIso2Country": "CI", + "geonameId": "6296444", + "latitudeAirport": 4.433333, + "longitudeAirport": -7.366667, + "nameAirport": "Tabou", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "3", + "airportId": 8013, + "codeIataAirport": "TYA", + "codeIataCity": "TYA", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "8298666", + "latitudeAirport": 54.2, + "longitudeAirport": 37.61667, + "nameAirport": "Tula", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "10", + "airportId": 8014, + "codeIataAirport": "TYB", + "codeIataCity": "TYB", + "codeIcaoAirport": "YTIB", + "codeIso2Country": "AU", + "geonameId": "7668778", + "latitudeAirport": -29.456944, + "longitudeAirport": 142.06223, + "nameAirport": "Tibooburra", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "9", + "airportId": 8015, + "codeIataAirport": "TYD", + "codeIataCity": "TYD", + "codeIcaoAirport": "UHBW", + "codeIso2Country": "RU", + "geonameId": "7668503", + "latitudeAirport": 55.283333, + "longitudeAirport": 124.73333, + "nameAirport": "Tynda", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "-9", + "airportId": 8016, + "codeIataAirport": "TYE", + "codeIataCity": "TYE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5877054", + "latitudeAirport": 61.016666, + "longitudeAirport": -151.33333, + "nameAirport": "Tyonek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 8017, + "codeIataAirport": "TYF", + "codeIataCity": "TYF", + "codeIcaoAirport": "ESST", + "codeIso2Country": "SE", + "geonameId": "2667873", + "latitudeAirport": 60.154484, + "longitudeAirport": 12.99661, + "nameAirport": "Torsby Airport", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "10", + "airportId": 8018, + "codeIataAirport": "TYG", + "codeIataCity": "TYG", + "codeIcaoAirport": "YTHY", + "codeIso2Country": "AU", + "geonameId": "7731568", + "latitudeAirport": -26.098612, + "longitudeAirport": 143.45555, + "nameAirport": "Thylungra", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 8019, + "codeIataAirport": "TYL", + "codeIataCity": "TYL", + "codeIcaoAirport": "SPYL", + "codeIso2Country": "PE", + "geonameId": "3698874", + "latitudeAirport": -4.564722, + "longitudeAirport": -81.25278, + "nameAirport": "Talara", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "-5", + "airportId": 8020, + "codeIataAirport": "TYM", + "codeIataCity": "TYM", + "codeIcaoAirport": "", + "codeIso2Country": "BS", + "geonameId": "0", + "latitudeAirport": 24.15, + "longitudeAirport": -76.433334, + "nameAirport": "Staniel Cay", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "8", + "airportId": 8021, + "codeIataAirport": "TYN", + "codeIataCity": "TYN", + "codeIcaoAirport": "ZBYN", + "codeIso2Country": "CN", + "geonameId": "6301357", + "latitudeAirport": 37.754997, + "longitudeAirport": 112.62585, + "nameAirport": "Taiyuan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9.30", + "airportId": 8022, + "codeIataAirport": "TYP", + "codeIataCity": "TYP", + "codeIcaoAirport": "YTMY", + "codeIso2Country": "AU", + "geonameId": "7731569", + "latitudeAirport": -22.283333, + "longitudeAirport": 137.96666, + "nameAirport": "Tobermorey", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-6", + "airportId": 8023, + "codeIataAirport": "TYR", + "codeIataCity": "TYR", + "codeIcaoAirport": "KTYR", + "codeIso2Country": "US", + "geonameId": "4738236", + "latitudeAirport": 32.351597, + "longitudeAirport": -95.41012, + "nameAirport": "Tyler Pounds Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 8024, + "codeIataAirport": "TYS", + "codeIataCity": "TYS", + "codeIcaoAirport": "KTYS", + "codeIso2Country": "US", + "geonameId": "4640648", + "latitudeAirport": 35.80565, + "longitudeAirport": -83.98973, + "nameAirport": "Mc Ghee Tyson", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 8025, + "codeIataAirport": "TYT", + "codeIataCity": "TYT", + "codeIcaoAirport": "SUTR", + "codeIso2Country": "UY", + "geonameId": "6300838", + "latitudeAirport": -33.266666, + "longitudeAirport": -54.283333, + "nameAirport": "Treinta-y-Tres", + "nameCountry": "Uruguay", + "phone": "", + "timezone": "America/Montevideo" + }, + { + "GMT": "-7", + "airportId": 8026, + "codeIataAirport": "TYZ", + "codeIataCity": "TYZ", + "codeIcaoAirport": "KTYL", + "codeIso2Country": "US", + "geonameId": "5316961", + "latitudeAirport": 34.466667, + "longitudeAirport": -110.083336, + "nameAirport": "Taylor", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "-6", + "airportId": 8027, + "codeIataAirport": "TZA", + "codeIataCity": "BZE", + "codeIcaoAirport": "", + "codeIso2Country": "BZ", + "geonameId": "0", + "latitudeAirport": 17.51639, + "longitudeAirport": -88.191666, + "nameAirport": "Municipal", + "nameCountry": "Belize", + "phone": "", + "timezone": "America/Belize" + }, + { + "GMT": "-5", + "airportId": 8028, + "codeIataAirport": "TZC", + "codeIataCity": "TZC", + "codeIcaoAirport": "K78D", + "codeIso2Country": "US", + "geonameId": "6297621", + "latitudeAirport": 43.45861, + "longitudeAirport": -83.44528, + "nameAirport": "Tuscola Area", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "1", + "airportId": 8029, + "codeIataAirport": "TZL", + "codeIataCity": "TZL", + "codeIcaoAirport": "LQTZ", + "codeIso2Country": "BA", + "geonameId": "6299697", + "latitudeAirport": 44.40972, + "longitudeAirport": 18.709167, + "nameAirport": "Tuzla International", + "nameCountry": "Bosnia and Herzegovina", + "phone": "", + "timezone": "Europe/Sarajevo" + }, + { + "GMT": "-6", + "airportId": 8030, + "codeIataAirport": "TZM", + "codeIataCity": "TZM", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "8298729", + "latitudeAirport": 21.166668, + "longitudeAirport": -88.15, + "nameAirport": "Tizimin", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Merida" + }, + { + "GMT": "-5", + "airportId": 8031, + "codeIataAirport": "TZN", + "codeIataCity": "TZN", + "codeIcaoAirport": "", + "codeIso2Country": "BS", + "geonameId": "0", + "latitudeAirport": 24.165, + "longitudeAirport": -77.58528, + "nameAirport": "South Andros", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "3", + "airportId": 8032, + "codeIataAirport": "TZO", + "codeIataCity": "TZO", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "8181799", + "latitudeAirport": -18.34797, + "longitudeAirport": 45.01266, + "nameAirport": "Tsimiroro", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "3", + "airportId": 8033, + "codeIataAirport": "TZX", + "codeIataCity": "TZX", + "codeIcaoAirport": "LTCG", + "codeIso2Country": "TR", + "geonameId": "6299765", + "latitudeAirport": 40.99419, + "longitudeAirport": 39.78168, + "nameAirport": "Trabzon", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3", + "airportId": 8034, + "codeIataAirport": "UAB", + "codeIataCity": "ADA", + "codeIcaoAirport": "", + "codeIso2Country": "TR", + "geonameId": "0", + "latitudeAirport": 37.00028, + "longitudeAirport": 35.41833, + "nameAirport": "Adana-Incirlik Airbase", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-7", + "airportId": 8035, + "codeIataAirport": "UAC", + "codeIataCity": "UAC", + "codeIcaoAirport": "MM76", + "codeIso2Country": "MX", + "geonameId": "7731570", + "latitudeAirport": 32.45, + "longitudeAirport": -114.8, + "nameAirport": "San Luis Rio Colorado", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Hermosillo" + }, + { + "GMT": "10", + "airportId": 8036, + "codeIataAirport": "UAE", + "codeIataCity": "UAE", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299005", + "latitudeAirport": -6.233333, + "longitudeAirport": 144.65, + "nameAirport": "Mount Aue", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9:30", + "airportId": 8037, + "codeIataAirport": "UAH", + "codeIataCity": "UAH", + "codeIcaoAirport": "NTMU", + "codeIso2Country": "PF", + "geonameId": "7730706", + "latitudeAirport": -8.933333, + "longitudeAirport": -139.55, + "nameAirport": "Ua Huka", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Marquesas" + }, + { + "GMT": "9", + "airportId": 8038, + "codeIataAirport": "UAI", + "codeIataCity": "UAI", + "codeIcaoAirport": "", + "codeIso2Country": "TL", + "geonameId": "1626459", + "latitudeAirport": -9.3, + "longitudeAirport": 125.28333, + "nameAirport": "Suai", + "nameCountry": "East Timor", + "phone": "", + "timezone": "Asia/Dili" + }, + { + "GMT": "-3", + "airportId": 8039, + "codeIataAirport": "UAK", + "codeIataCity": "UAK", + "codeIcaoAirport": "BGBW", + "codeIso2Country": "GL", + "geonameId": "6295690", + "latitudeAirport": 61.166668, + "longitudeAirport": -45.316666, + "nameAirport": "Narsarsuaq", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "1", + "airportId": 8040, + "codeIataAirport": "UAL", + "codeIataCity": "UAL", + "codeIcaoAirport": "FNUA", + "codeIso2Country": "AO", + "geonameId": "7668256", + "latitudeAirport": -11.0, + "longitudeAirport": 22.5, + "nameAirport": "Luau", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "10", + "airportId": 8041, + "codeIataAirport": "UAM", + "codeIataCity": "GUM", + "codeIcaoAirport": "PGUA", + "codeIso2Country": "GU", + "geonameId": "0", + "latitudeAirport": 13.466667, + "longitudeAirport": 144.76666, + "nameAirport": "Andersen AFB", + "nameCountry": "Guam", + "phone": "", + "timezone": "Pacific/Guam" + }, + { + "GMT": "-9:30", + "airportId": 8042, + "codeIataAirport": "UAP", + "codeIataCity": "UAP", + "codeIcaoAirport": "NTMP", + "codeIso2Country": "PF", + "geonameId": "7730705", + "latitudeAirport": -9.343477, + "longitudeAirport": -140.08125, + "nameAirport": "Ua Pou", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Marquesas" + }, + { + "GMT": "-3", + "airportId": 8043, + "codeIataAirport": "UAQ", + "codeIataCity": "UAQ", + "codeIcaoAirport": "SANU", + "codeIso2Country": "AR", + "geonameId": "6300538", + "latitudeAirport": -31.55, + "longitudeAirport": -68.51667, + "nameAirport": "San Juan", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/San_Juan" + }, + { + "GMT": "0", + "airportId": 8044, + "codeIataAirport": "UAR", + "codeIataCity": "UAR", + "codeIcaoAirport": "", + "codeIso2Country": "MA", + "geonameId": "2555157", + "latitudeAirport": 51.15371, + "longitudeAirport": 51.538563, + "nameAirport": "Bouarfa", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "3", + "airportId": 8045, + "codeIataAirport": "UAS", + "codeIataCity": "UAS", + "codeIcaoAirport": "HKSB", + "codeIso2Country": "KE", + "geonameId": "7730616", + "latitudeAirport": 0.466667, + "longitudeAirport": 37.55, + "nameAirport": "Samburu", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-6", + "airportId": 8046, + "codeIataAirport": "UAX", + "codeIataCity": "UAX", + "codeIcaoAirport": "", + "codeIso2Country": "GT", + "geonameId": "7731571", + "latitudeAirport": 17.393888, + "longitudeAirport": -89.632774, + "nameAirport": "Uaxactun", + "nameCountry": "Guatemala", + "phone": "", + "timezone": "America/Guatemala" + }, + { + "GMT": "-3", + "airportId": 8047, + "codeIataAirport": "UBA", + "codeIataCity": "UBA", + "codeIcaoAirport": "SBUR", + "codeIso2Country": "BR", + "geonameId": "6300683", + "latitudeAirport": -19.776388, + "longitudeAirport": -47.958332, + "nameAirport": "Uberaba", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "airportId": 8048, + "codeIataAirport": "UBB", + "codeIataCity": "UBB", + "codeIcaoAirport": "YMAA", + "codeIso2Country": "AU", + "geonameId": "7731572", + "latitudeAirport": -9.95, + "longitudeAirport": 142.18333, + "nameAirport": "Mabuiag Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 8049, + "codeIataAirport": "UBI", + "codeIataCity": "UBI", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2098923", + "latitudeAirport": -6.716667, + "longitudeAirport": 155.7, + "nameAirport": "Buin", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "airportId": 8050, + "codeIataAirport": "UBJ", + "codeIataCity": "UBJ", + "codeIcaoAirport": "RJDC", + "codeIso2Country": "JP", + "geonameId": "6300334", + "latitudeAirport": 33.933395, + "longitudeAirport": 131.27489, + "nameAirport": "Ube", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "7", + "airportId": 8051, + "codeIataAirport": "UBP", + "codeIataCity": "UBP", + "codeIcaoAirport": "VTUU", + "codeIso2Country": "TH", + "geonameId": "1605245", + "latitudeAirport": 15.246491, + "longitudeAirport": 104.87068, + "nameAirport": "Muang Ubon", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "9", + "airportId": 8052, + "codeIataAirport": "UBR", + "codeIataCity": "UBR", + "codeIcaoAirport": "WAJU", + "codeIso2Country": "ID", + "geonameId": "7731573", + "latitudeAirport": -3.666667, + "longitudeAirport": 140.85, + "nameAirport": "Ubrub", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-6", + "airportId": 8053, + "codeIataAirport": "UBS", + "codeIataCity": "UBS", + "codeIcaoAirport": "KUBS", + "codeIso2Country": "US", + "geonameId": "4422453", + "latitudeAirport": 33.466667, + "longitudeAirport": -88.38333, + "nameAirport": "Lowndes County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "airportId": 8054, + "codeIataAirport": "UBT", + "codeIataCity": "UBT", + "codeIcaoAirport": "SDUB", + "codeIso2Country": "BR", + "geonameId": "7731574", + "latitudeAirport": -23.433332, + "longitudeAirport": -45.083332, + "nameAirport": "Ubatuba", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "8", + "airportId": 8055, + "codeIataAirport": "UBU", + "codeIataCity": "UBU", + "codeIcaoAirport": "YKAL", + "codeIso2Country": "AU", + "geonameId": "7731575", + "latitudeAirport": -14.3, + "longitudeAirport": 126.65, + "nameAirport": "Kalumburu", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-8", + "airportId": 8056, + "codeIataAirport": "UCC", + "codeIataCity": "UCC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 37.0, + "longitudeAirport": -116.05, + "nameAirport": "Yucca Flat", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 8057, + "codeIataAirport": "UCE", + "codeIataCity": "UCE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.5, + "longitudeAirport": -92.416664, + "nameAirport": "Eunice", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 8058, + "codeIataAirport": "UCK", + "codeIataCity": "UCK", + "codeIcaoAirport": "UKLC", + "codeIso2Country": "UA", + "geonameId": "7668511", + "latitudeAirport": 50.75, + "longitudeAirport": 25.333332, + "nameAirport": "Lutsk", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "0", + "airportId": 8059, + "codeIataAirport": "UCN", + "codeIataCity": "UCN", + "codeIcaoAirport": "", + "codeIso2Country": "LR", + "geonameId": "2278158", + "latitudeAirport": 5.95, + "longitudeAirport": -10.033333, + "nameAirport": "Buchanan", + "nameCountry": "Liberia", + "phone": "", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "3", + "airportId": 8060, + "codeIataAirport": "UCT", + "codeIataCity": "UCT", + "codeIcaoAirport": "UUYH", + "codeIso2Country": "RU", + "geonameId": "7668556", + "latitudeAirport": 63.566666, + "longitudeAirport": 53.8, + "nameAirport": "Ukhta", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "airportId": 8061, + "codeIataAirport": "UCY", + "codeIataCity": "UCY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 36.433334, + "longitudeAirport": -89.05, + "nameAirport": "Everett-Stewart", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "airportId": 8062, + "codeIataAirport": "UDA", + "codeIataCity": "UDA", + "codeIcaoAirport": "YUDA", + "codeIso2Country": "AU", + "geonameId": "7731577", + "latitudeAirport": -18.183332, + "longitudeAirport": 144.6, + "nameAirport": "Undarra", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-8", + "airportId": 8063, + "codeIataAirport": "UDD", + "codeIataCity": "PSP", + "codeIcaoAirport": "KUDD", + "codeIso2Country": "US", + "geonameId": "5327718", + "latitudeAirport": 33.735832, + "longitudeAirport": -116.26722, + "nameAirport": "Bermuda Dunes", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 8064, + "codeIataAirport": "UDE", + "codeIataCity": "UDE", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "6296693", + "latitudeAirport": 51.666668, + "longitudeAirport": 5.616667, + "nameAirport": "Volkel", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "-3", + "airportId": 8065, + "codeIataAirport": "UDI", + "codeIataCity": "UDI", + "codeIcaoAirport": "SBUL", + "codeIso2Country": "BR", + "geonameId": "6300682", + "latitudeAirport": -18.9, + "longitudeAirport": -48.233334, + "nameAirport": "Eduardo Gomes", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "2", + "airportId": 8066, + "codeIataAirport": "UDJ", + "codeIataCity": "UDJ", + "codeIcaoAirport": "UKLU", + "codeIso2Country": "UA", + "geonameId": "6300966", + "latitudeAirport": 48.63762, + "longitudeAirport": 22.273214, + "nameAirport": "Uzhgorod", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Uzhgorod" + }, + { + "GMT": "1", + "airportId": 8067, + "codeIataAirport": "UDN", + "codeIataCity": "UDN", + "codeIcaoAirport": "LIPD", + "codeIso2Country": "IT", + "geonameId": "6299591", + "latitudeAirport": 46.033333, + "longitudeAirport": 13.183333, + "nameAirport": "Airfield", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "7", + "airportId": 8068, + "codeIataAirport": "UDO", + "codeIataCity": "UDO", + "codeIcaoAirport": "", + "codeIso2Country": "LA", + "geonameId": "0", + "latitudeAirport": 19.133333, + "longitudeAirport": 103.816666, + "nameAirport": "Udomxay", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "5.30", + "airportId": 8069, + "codeIataAirport": "UDR", + "codeIataCity": "UDR", + "codeIcaoAirport": "VAUD", + "codeIso2Country": "IN", + "geonameId": "6301104", + "latitudeAirport": 24.61919, + "longitudeAirport": 73.891266, + "nameAirport": "Dabok", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "airportId": 8070, + "codeIataAirport": "UEE", + "codeIataCity": "UEE", + "codeIcaoAirport": "YQNS", + "codeIso2Country": "AU", + "geonameId": "7731578", + "latitudeAirport": -42.083332, + "longitudeAirport": 145.55, + "nameAirport": "Queenstown", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Hobart" + }, + { + "GMT": "2", + "airportId": 8071, + "codeIataAirport": "UEL", + "codeIataCity": "UEL", + "codeIcaoAirport": "FQQL", + "codeIso2Country": "MZ", + "geonameId": "1095978", + "latitudeAirport": -17.847221, + "longitudeAirport": 36.865555, + "nameAirport": "Quelimane", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "5", + "airportId": 8072, + "codeIataAirport": "UEN", + "codeIataCity": "UEN", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "8260761", + "latitudeAirport": 65.9667, + "longitudeAirport": 78.3667, + "nameAirport": "Urengoy", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "9", + "airportId": 8073, + "codeIataAirport": "UEO", + "codeIataCity": "UEO", + "codeIcaoAirport": "ROKJ", + "codeIso2Country": "JP", + "geonameId": "6822157", + "latitudeAirport": 26.365278, + "longitudeAirport": 126.719444, + "nameAirport": "Kumejima", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "airportId": 8074, + "codeIataAirport": "UER", + "codeIataCity": "UER", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "2512177", + "latitudeAirport": 38.7, + "longitudeAirport": -4.116667, + "nameAirport": "Puertollano", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-6", + "airportId": 8075, + "codeIataAirport": "UES", + "codeIataCity": "UES", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5278055", + "latitudeAirport": 43.038334, + "longitudeAirport": -88.23, + "nameAirport": "Waukesha", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5", + "airportId": 8076, + "codeIataAirport": "UET", + "codeIataCity": "UET", + "codeIcaoAirport": "OPQT", + "codeIso2Country": "PK", + "geonameId": "6300118", + "latitudeAirport": 30.249266, + "longitudeAirport": 66.949036, + "nameAirport": "Quetta", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "5", + "airportId": 8077, + "codeIataAirport": "UFA", + "codeIataCity": "UFA", + "codeIcaoAirport": "UWUU", + "codeIso2Country": "RU", + "geonameId": "6301027", + "latitudeAirport": 54.565403, + "longitudeAirport": 55.884544, + "nameAirport": "Ufa International Airport", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "8", + "airportId": 8078, + "codeIataAirport": "UGA", + "codeIataCity": "UGA", + "codeIcaoAirport": "ZMBN", + "codeIso2Country": "MN", + "geonameId": "7668795", + "latitudeAirport": 48.8, + "longitudeAirport": 103.55, + "nameAirport": "Bulgan", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "-9", + "airportId": 8079, + "codeIataAirport": "UGB", + "codeIataCity": "PIP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5877098", + "latitudeAirport": 57.552223, + "longitudeAirport": -157.55112, + "nameAirport": "Ugashik Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "5", + "airportId": 8080, + "codeIataAirport": "UGC", + "codeIataCity": "UGC", + "codeIcaoAirport": "UTNU", + "codeIso2Country": "UZ", + "geonameId": "6301009", + "latitudeAirport": 41.584835, + "longitudeAirport": 60.63303, + "nameAirport": "Urgench", + "nameCountry": "Uzbekistan", + "phone": "", + "timezone": "Asia/Samarkand" + }, + { + "GMT": "-9", + "airportId": 8081, + "codeIataAirport": "UGI", + "codeIataCity": "UGI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 57.88333, + "longitudeAirport": -153.5, + "nameAirport": "Uganik", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 8082, + "codeIataAirport": "UGN", + "codeIataCity": "UGN", + "codeIcaoAirport": "KUGN", + "codeIso2Country": "US", + "geonameId": "4915743", + "latitudeAirport": 42.36667, + "longitudeAirport": -87.833336, + "nameAirport": "Memorial", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 8083, + "codeIataAirport": "UGO", + "codeIataCity": "UGO", + "codeIcaoAirport": "FNUG", + "codeIso2Country": "AO", + "geonameId": "7668259", + "latitudeAirport": -7.816667, + "longitudeAirport": 15.15, + "nameAirport": "Uige", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-9", + "airportId": 8084, + "codeIataAirport": "UGS", + "codeIataCity": "UGS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5877095", + "latitudeAirport": 57.533333, + "longitudeAirport": -157.41667, + "nameAirport": "Ugashik", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 8085, + "codeIataAirport": "UGT", + "codeIataCity": "UGT", + "codeIcaoAirport": "", + "codeIso2Country": "MN", + "geonameId": "8298965", + "latitudeAirport": 43.752777, + "longitudeAirport": 104.12778, + "nameAirport": "Umnugobitour", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "9", + "airportId": 8086, + "codeIataAirport": "UGU", + "codeIataCity": "UGU", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7730319", + "latitudeAirport": -3.733333, + "longitudeAirport": 137.03334, + "nameAirport": "Zugapa", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "airportId": 8087, + "codeIataAirport": "UHE", + "codeIataCity": "UHE", + "codeIcaoAirport": "LKKU", + "codeIso2Country": "CZ", + "geonameId": "6299648", + "latitudeAirport": 49.066666, + "longitudeAirport": 17.45, + "nameAirport": "Kunovice", + "nameCountry": "Czech Republic", + "phone": "", + "timezone": "Europe/Prague" + }, + { + "GMT": "-5", + "airportId": 8088, + "codeIataAirport": "UIB", + "codeIataCity": "UIB", + "codeIcaoAirport": "SKUI", + "codeIso2Country": "CO", + "geonameId": "6300761", + "latitudeAirport": 5.690556, + "longitudeAirport": -76.641945, + "nameAirport": "Quibdo", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "7", + "airportId": 8089, + "codeIataAirport": "UIH", + "codeIataCity": "UIH", + "codeIcaoAirport": "VVQN", + "codeIso2Country": "VN", + "geonameId": "7730226", + "latitudeAirport": 13.766111, + "longitudeAirport": 109.22639, + "nameAirport": "Qui Nhon", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-6", + "airportId": 8090, + "codeIataAirport": "UII", + "codeIataCity": "UII", + "codeIcaoAirport": "MHUT", + "codeIso2Country": "HN", + "geonameId": "7730662", + "latitudeAirport": 16.091667, + "longitudeAirport": -86.8875, + "nameAirport": "Utila", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "8", + "airportId": 8091, + "codeIataAirport": "UIK", + "codeIataCity": "UIK", + "codeIcaoAirport": "UIBS", + "codeIso2Country": "RU", + "geonameId": "7668505", + "latitudeAirport": 58.13333, + "longitudeAirport": 102.55, + "nameAirport": "Ust-Ilimsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Irkutsk" + }, + { + "GMT": "-8", + "airportId": 8092, + "codeIataAirport": "UIL", + "codeIataCity": "UIL", + "codeIcaoAirport": "KUIL", + "codeIso2Country": "US", + "geonameId": "5807697", + "latitudeAirport": 47.9, + "longitudeAirport": -124.63333, + "nameAirport": "Quillayute State", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 8093, + "codeIataAirport": "UIN", + "codeIataCity": "UIN", + "codeIcaoAirport": "KUIN", + "codeIso2Country": "US", + "geonameId": "4247714", + "latitudeAirport": 39.944168, + "longitudeAirport": -91.19722, + "nameAirport": "Quincy M Baldwin Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 8094, + "codeIataAirport": "UIO", + "codeIataCity": "UIO", + "codeIcaoAirport": "SEQU", + "codeIso2Country": "EC", + "geonameId": "6300721", + "latitudeAirport": -0.145528, + "longitudeAirport": -78.49053, + "nameAirport": "Mariscal Sucre", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "1", + "airportId": 8095, + "codeIataAirport": "UIP", + "codeIataCity": "UIP", + "codeIcaoAirport": "LFRQ", + "codeIso2Country": "FR", + "geonameId": "6299460", + "latitudeAirport": 47.974445, + "longitudeAirport": -4.170833, + "nameAirport": "Pluguffan", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "11", + "airportId": 8096, + "codeIataAirport": "UIQ", + "codeIataCity": "UIQ", + "codeIcaoAirport": "", + "codeIso2Country": "VU", + "geonameId": "0", + "latitudeAirport": -17.0, + "longitudeAirport": 168.16667, + "nameAirport": "Quine Hill", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "10", + "airportId": 8097, + "codeIataAirport": "UIR", + "codeIataCity": "UIR", + "codeIcaoAirport": "YQDI", + "codeIso2Country": "AU", + "geonameId": "7731579", + "latitudeAirport": -31.5, + "longitudeAirport": 150.51666, + "nameAirport": "Quirindi", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "12", + "airportId": 8098, + "codeIataAirport": "UIT", + "codeIataCity": "UIT", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "4040028", + "latitudeAirport": 5.833333, + "longitudeAirport": 169.61667, + "nameAirport": "Jaluit Island", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "12", + "airportId": 8099, + "codeIataAirport": "UJE", + "codeIataCity": "UJE", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 9.083333, + "longitudeAirport": 165.66667, + "nameAirport": "Ujae Island", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "9", + "airportId": 8100, + "codeIataAirport": "UJN", + "codeIataCity": "UJN", + "codeIcaoAirport": "", + "codeIso2Country": "KR", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Uljin", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "3", + "airportId": 8101, + "codeIataAirport": "UKA", + "codeIataCity": "UKA", + "codeIcaoAirport": "HKUK", + "codeIso2Country": "KE", + "geonameId": "7730617", + "latitudeAirport": -4.3, + "longitudeAirport": 39.566666, + "nameAirport": "Ukunda", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "9", + "airportId": 8102, + "codeIataAirport": "UKB", + "codeIataCity": "OSA", + "codeIcaoAirport": "RJBE", + "codeIso2Country": "JP", + "geonameId": "6698195", + "latitudeAirport": 34.6373, + "longitudeAirport": 135.2284, + "nameAirport": "Kobe", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "4", + "airportId": 8103, + "codeIataAirport": "UKH", + "codeIataCity": "UKH", + "codeIcaoAirport": "", + "codeIso2Country": "OM", + "geonameId": "8260748", + "latitudeAirport": 19.37, + "longitudeAirport": 56.4, + "nameAirport": "Mukhaizna", + "nameCountry": "Oman", + "phone": "", + "timezone": "Asia/Muscat" + }, + { + "GMT": "-8", + "airportId": 8104, + "codeIataAirport": "UKI", + "codeIataCity": "UKI", + "codeIcaoAirport": "KUKI", + "codeIso2Country": "US", + "geonameId": "5404481", + "latitudeAirport": 39.126667, + "longitudeAirport": -123.2, + "nameAirport": "Ukiah", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "6", + "airportId": 8105, + "codeIataAirport": "UKK", + "codeIataCity": "UKK", + "codeIcaoAirport": "UASK", + "codeIso2Country": "KZ", + "geonameId": "7730183", + "latitudeAirport": 50.025723, + "longitudeAirport": 82.5056, + "nameAirport": "Ust-kamenogorsk", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-6", + "airportId": 8106, + "codeIataAirport": "UKN", + "codeIataCity": "UKN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 43.266666, + "longitudeAirport": -91.48333, + "nameAirport": "Waukon Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 8107, + "codeIataAirport": "UKR", + "codeIataCity": "UKR", + "codeIcaoAirport": "OYMK", + "codeIso2Country": "YE", + "geonameId": "6300140", + "latitudeAirport": 13.933333, + "longitudeAirport": 45.683334, + "nameAirport": "Mukeiras", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "3", + "airportId": 8108, + "codeIataAirport": "UKS", + "codeIataCity": "UKS", + "codeIcaoAirport": "", + "codeIso2Country": "UA", + "geonameId": "0", + "latitudeAirport": 44.691666, + "longitudeAirport": 33.576668, + "nameAirport": "Belbek", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Simferopol" + }, + { + "GMT": "-5", + "airportId": 8109, + "codeIataAirport": "UKT", + "codeIataCity": "UKT", + "codeIcaoAirport": "KUKT", + "codeIso2Country": "US", + "geonameId": "5207382", + "latitudeAirport": 40.433334, + "longitudeAirport": -75.35, + "nameAirport": "Upper Bucks", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 8110, + "codeIataAirport": "UKU", + "codeIataCity": "UKU", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731580", + "latitudeAirport": -3.683333, + "longitudeAirport": 142.46666, + "nameAirport": "Nuku", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 8111, + "codeIataAirport": "UKX", + "codeIataCity": "UKX", + "codeIcaoAirport": "UITT", + "codeIso2Country": "RU", + "geonameId": "7668506", + "latitudeAirport": 56.85, + "longitudeAirport": 105.73333, + "nameAirport": "Ust-Kut", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Irkutsk" + }, + { + "GMT": "9", + "airportId": 8112, + "codeIataAirport": "UKY", + "codeIataCity": "UKY", + "codeIcaoAirport": "", + "codeIso2Country": "JP", + "geonameId": "1857910", + "latitudeAirport": 35.0, + "longitudeAirport": 135.75, + "nameAirport": "Kyoto", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-3", + "airportId": 8113, + "codeIataAirport": "ULA", + "codeIataCity": "ULA", + "codeIcaoAirport": "SAWJ", + "codeIso2Country": "AR", + "geonameId": "6300575", + "latitudeAirport": -49.316666, + "longitudeAirport": -67.666664, + "nameAirport": "San Julian", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "11", + "airportId": 8114, + "codeIataAirport": "ULB", + "codeIataCity": "ULB", + "codeIcaoAirport": "NVSU", + "codeIso2Country": "VU", + "geonameId": "7730717", + "latitudeAirport": -16.416668, + "longitudeAirport": 168.33333, + "nameAirport": "Ulei", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "2", + "airportId": 8115, + "codeIataAirport": "ULD", + "codeIataCity": "ULD", + "codeIcaoAirport": "FAUL", + "codeIso2Country": "ZA", + "geonameId": "6296933", + "latitudeAirport": -28.283333, + "longitudeAirport": 31.433332, + "nameAirport": "Ulundi", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "10", + "airportId": 8116, + "codeIataAirport": "ULE", + "codeIataCity": "ULE", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731581", + "latitudeAirport": -4.933333, + "longitudeAirport": 151.26666, + "nameAirport": "Sule", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "7", + "airportId": 8117, + "codeIataAirport": "ULG", + "codeIataCity": "ULG", + "codeIcaoAirport": "ZMUL", + "codeIso2Country": "MN", + "geonameId": "7731582", + "latitudeAirport": 48.966667, + "longitudeAirport": 89.96667, + "nameAirport": "Ulgit", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Hovd" + }, + { + "GMT": "3", + "airportId": 8118, + "codeIataAirport": "ULH", + "codeIataCity": "ULH", + "codeIcaoAirport": "OEAO", + "codeIso2Country": "SA", + "geonameId": "8298674", + "latitudeAirport": 26.616667, + "longitudeAirport": 37.866665, + "nameAirport": "Majeed Bin Abdulaziz", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "10", + "airportId": 8119, + "codeIataAirport": "ULI", + "codeIataCity": "ULI", + "codeIcaoAirport": "", + "codeIso2Country": "FM", + "geonameId": "0", + "latitudeAirport": 10.016667, + "longitudeAirport": 139.8, + "nameAirport": "Ulithi", + "nameCountry": "Micronesia", + "phone": "", + "timezone": "Pacific/Chuuk" + }, + { + "GMT": "9", + "airportId": 8120, + "codeIataAirport": "ULK", + "codeIataCity": "ULK", + "codeIcaoAirport": "UERL", + "codeIso2Country": "RU", + "geonameId": "8260851", + "latitudeAirport": 60.72248, + "longitudeAirport": 114.83152, + "nameAirport": "Lensk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "0", + "airportId": 8121, + "codeIataAirport": "ULL", + "codeIataCity": "ULL", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "7731583", + "latitudeAirport": 56.45, + "longitudeAirport": -6.0, + "nameAirport": "Mull", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 8122, + "codeIataAirport": "ULM", + "codeIataCity": "ULM", + "codeIcaoAirport": "KULM", + "codeIso2Country": "US", + "geonameId": "5039182", + "latitudeAirport": 44.32139, + "longitudeAirport": -94.50056, + "nameAirport": "New Ulm", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 8123, + "codeIataAirport": "ULN", + "codeIataCity": "ULN", + "codeIcaoAirport": "ZMUB", + "codeIso2Country": "MN", + "geonameId": "6301377", + "latitudeAirport": 47.85275, + "longitudeAirport": 106.76327, + "nameAirport": "Chinggis Khaan International", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "7", + "airportId": 8124, + "codeIataAirport": "ULO", + "codeIataCity": "ULO", + "codeIcaoAirport": "ZMUG", + "codeIso2Country": "MN", + "geonameId": "8260917", + "latitudeAirport": 49.983334, + "longitudeAirport": 92.066666, + "nameAirport": "Ulaangom", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Hovd" + }, + { + "GMT": "10", + "airportId": 8125, + "codeIataAirport": "ULP", + "codeIataCity": "ULP", + "codeIcaoAirport": "YQLP", + "codeIso2Country": "AU", + "geonameId": "7730273", + "latitudeAirport": -26.633333, + "longitudeAirport": 144.3, + "nameAirport": "Quilpie", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 8126, + "codeIataAirport": "ULQ", + "codeIataCity": "ULQ", + "codeIcaoAirport": "SKUL", + "codeIso2Country": "CO", + "geonameId": "7730174", + "latitudeAirport": 4.097222, + "longitudeAirport": -76.229164, + "nameAirport": "Farfan", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "airportId": 8127, + "codeIataAirport": "ULS", + "codeIataCity": "ULS", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8299128", + "latitudeAirport": 8.65, + "longitudeAirport": -76.75, + "nameAirport": "Mulatos", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "airportId": 8128, + "codeIataAirport": "ULU", + "codeIataCity": "ULU", + "codeIcaoAirport": "HUGU", + "codeIso2Country": "UG", + "geonameId": "6297376", + "latitudeAirport": 2.783333, + "longitudeAirport": 32.3, + "nameAirport": "Gulu", + "nameCountry": "Uganda", + "phone": "", + "timezone": "Africa/Kampala" + }, + { + "GMT": "3", + "airportId": 8129, + "codeIataAirport": "ULV", + "codeIataCity": "ULY", + "codeIcaoAirport": "UWLL", + "codeIso2Country": "RU", + "geonameId": "0", + "latitudeAirport": 54.268333, + "longitudeAirport": 48.226665, + "nameAirport": "Baratayevka", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "2", + "airportId": 8130, + "codeIataAirport": "ULX", + "codeIataCity": "ULX", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "7731584", + "latitudeAirport": -24.783333, + "longitudeAirport": 31.35, + "nameAirport": "Ulusaba", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "3", + "airportId": 8131, + "codeIataAirport": "ULY", + "codeIataCity": "ULY", + "codeIcaoAirport": "UWLW", + "codeIso2Country": "RU", + "geonameId": "6301023", + "latitudeAirport": 54.266666, + "longitudeAirport": 48.216667, + "nameAirport": "Vostochny", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "7", + "airportId": 8132, + "codeIataAirport": "ULZ", + "codeIataCity": "ULZ", + "codeIcaoAirport": "", + "codeIso2Country": "MN", + "geonameId": "7731585", + "latitudeAirport": 47.75, + "longitudeAirport": 96.85, + "nameAirport": "Uliastai", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Hovd" + }, + { + "GMT": "-5", + "airportId": 8133, + "codeIataAirport": "UMA", + "codeIataCity": "UMA", + "codeIcaoAirport": "", + "codeIso2Country": "CU", + "geonameId": "0", + "latitudeAirport": 20.24, + "longitudeAirport": -74.15, + "nameAirport": "Punta De Maisi", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "-9", + "airportId": 8134, + "codeIataAirport": "UMB", + "codeIataCity": "UMB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 53.376667, + "longitudeAirport": -167.8875, + "nameAirport": "North Shore", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 8135, + "codeIataAirport": "UMC", + "codeIataCity": "UMC", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8261052", + "latitudeAirport": -7.016667, + "longitudeAirport": 145.96666, + "nameAirport": "Umba", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "airportId": 8136, + "codeIataAirport": "UMD", + "codeIataCity": "UMD", + "codeIcaoAirport": "BGUM", + "codeIso2Country": "GL", + "geonameId": "3426193", + "latitudeAirport": 70.66889, + "longitudeAirport": -52.11778, + "nameAirport": "Uummannaq", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "1", + "airportId": 8137, + "codeIataAirport": "UME", + "codeIataCity": "UME", + "codeIcaoAirport": "ESNU", + "codeIso2Country": "SE", + "geonameId": "6296808", + "latitudeAirport": 63.79333, + "longitudeAirport": 20.28954, + "nameAirport": "Umea", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "airportId": 8138, + "codeIataAirport": "UMI", + "codeIataCity": "UMI", + "codeIcaoAirport": "SPIL", + "codeIso2Country": "PE", + "geonameId": "7731586", + "latitudeAirport": -13.25, + "longitudeAirport": -70.666664, + "nameAirport": "Quincemil", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "-9", + "airportId": 8139, + "codeIataAirport": "UMM", + "codeIataCity": "UMM", + "codeIcaoAirport": "PAST", + "codeIso2Country": "US", + "geonameId": "5875396", + "latitudeAirport": 63.316666, + "longitudeAirport": -149.31667, + "nameAirport": "Summit", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "9.30", + "airportId": 8140, + "codeIataAirport": "UMR", + "codeIataCity": "UMR", + "codeIcaoAirport": "YPWR", + "codeIso2Country": "AU", + "geonameId": "6301339", + "latitudeAirport": -31.15, + "longitudeAirport": 136.81667, + "nameAirport": "Woomera", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-9", + "airportId": 8141, + "codeIataAirport": "UMT", + "codeIataCity": "UMT", + "codeIcaoAirport": "PAUM", + "codeIso2Country": "US", + "geonameId": "5877174", + "latitudeAirport": 69.416664, + "longitudeAirport": -152.33333, + "nameAirport": "Umiat", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "airportId": 8142, + "codeIataAirport": "UMU", + "codeIataCity": "UMU", + "codeIcaoAirport": "SSUM", + "codeIso2Country": "BR", + "geonameId": "7731587", + "latitudeAirport": -23.798332, + "longitudeAirport": -53.31333, + "nameAirport": "Ernesto Geisel", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "2", + "airportId": 8143, + "codeIataAirport": "UMY", + "codeIataCity": "UMY", + "codeIcaoAirport": "UKHS", + "codeIso2Country": "UA", + "geonameId": "7668510", + "latitudeAirport": 50.933334, + "longitudeAirport": 34.783333, + "nameAirport": "Sumy", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-3", + "airportId": 8144, + "codeIataAirport": "UNA", + "codeIataCity": "UNA", + "codeIcaoAirport": "SBTC", + "codeIso2Country": "BR", + "geonameId": "7730782", + "latitudeAirport": -15.353333, + "longitudeAirport": -38.997223, + "nameAirport": "Una", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "-5", + "airportId": 8145, + "codeIataAirport": "UNC", + "codeIataCity": "UNC", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8298970", + "latitudeAirport": 8.033333, + "longitudeAirport": -77.083336, + "nameAirport": "Unguia", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "4.30", + "airportId": 8146, + "codeIataAirport": "UND", + "codeIataCity": "UND", + "codeIcaoAirport": "OAUZ", + "codeIso2Country": "AF", + "geonameId": "1135689", + "latitudeAirport": 36.660557, + "longitudeAirport": 68.909164, + "nameAirport": "Kunduz", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "2", + "airportId": 8147, + "codeIataAirport": "UNE", + "codeIataCity": "UNE", + "codeIcaoAirport": "FXQN", + "codeIso2Country": "LS", + "geonameId": "7730542", + "latitudeAirport": -30.166668, + "longitudeAirport": 27.166668, + "nameAirport": "Qachas Nek", + "nameCountry": "Lesotho", + "phone": "", + "timezone": "Africa/Maseru" + }, + { + "GMT": "10", + "airportId": 8148, + "codeIataAirport": "UNG", + "codeIataCity": "UNG", + "codeIcaoAirport": "AYKI", + "codeIso2Country": "PG", + "geonameId": "7730409", + "latitudeAirport": -6.125552, + "longitudeAirport": 141.28601, + "nameAirport": "Kiunga", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "airportId": 8149, + "codeIataAirport": "UNI", + "codeIataCity": "UNI", + "codeIcaoAirport": "", + "codeIso2Country": "VC", + "geonameId": "0", + "latitudeAirport": 13.5, + "longitudeAirport": -61.0, + "nameAirport": "Union Island", + "nameCountry": "Saint Vincent and the Grenadines", + "phone": "", + "timezone": "America/St_Vincent" + }, + { + "GMT": "-9", + "airportId": 8150, + "codeIataAirport": "UNK", + "codeIataCity": "UNK", + "codeIcaoAirport": "PAUN", + "codeIso2Country": "US", + "geonameId": "5877193", + "latitudeAirport": 63.881927, + "longitudeAirport": -160.79944, + "nameAirport": "Unalakleet", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "airportId": 8151, + "codeIataAirport": "UNN", + "codeIataCity": "UNN", + "codeIcaoAirport": "VTSR", + "codeIso2Country": "TH", + "geonameId": "6301158", + "latitudeAirport": 9.852778, + "longitudeAirport": 98.629166, + "nameAirport": "Ranong", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "8", + "airportId": 8152, + "codeIataAirport": "UNR", + "codeIataCity": "UNR", + "codeIcaoAirport": "", + "codeIso2Country": "MN", + "geonameId": "8260918", + "latitudeAirport": 47.316666, + "longitudeAirport": 110.666664, + "nameAirport": "Underkhaan", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "-9", + "airportId": 8153, + "codeIataAirport": "UNS", + "codeIataCity": "UMB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 53.25, + "longitudeAirport": -168.33333, + "nameAirport": "Umnak", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 8154, + "codeIataAirport": "UNT", + "codeIataCity": "UNT", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "8298959", + "latitudeAirport": 60.766666, + "longitudeAirport": -0.85, + "nameAirport": "Baltasound", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 8155, + "codeIataAirport": "UNU", + "codeIataCity": "UNU", + "codeIcaoAirport": "KUNU", + "codeIso2Country": "US", + "geonameId": "5258190", + "latitudeAirport": 58.3, + "longitudeAirport": -134.41667, + "nameAirport": "Dodge County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 8156, + "codeIataAirport": "UOL", + "codeIataCity": "UOL", + "codeIcaoAirport": "WAMQ", + "codeIso2Country": "ID", + "geonameId": "7731588", + "latitudeAirport": 1.166667, + "longitudeAirport": 121.433334, + "nameAirport": "Buol", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "7", + "airportId": 8157, + "codeIataAirport": "UON", + "codeIataCity": "UON", + "codeIcaoAirport": "", + "codeIso2Country": "LA", + "geonameId": "0", + "latitudeAirport": 20.7, + "longitudeAirport": 101.98333, + "nameAirport": "Muong Sai", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-6", + "airportId": 8158, + "codeIataAirport": "UOS", + "codeIataCity": "UOS", + "codeIcaoAirport": "KUOS", + "codeIso2Country": "US", + "geonameId": "4656589", + "latitudeAirport": 35.183334, + "longitudeAirport": -85.9, + "nameAirport": "Franklin County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 8159, + "codeIataAirport": "UOX", + "codeIataCity": "UOX", + "codeIcaoAirport": "KUOX", + "codeIso2Country": "US", + "geonameId": "4449420", + "latitudeAirport": 34.384445, + "longitudeAirport": -89.535, + "nameAirport": "University-Oxford", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 8160, + "codeIataAirport": "UPA", + "codeIataCity": "UPA", + "codeIcaoAirport": "", + "codeIso2Country": "CU", + "geonameId": "0", + "latitudeAirport": 22.383333, + "longitudeAirport": -78.816666, + "nameAirport": "Punta Alegre", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "-5", + "airportId": 8161, + "codeIataAirport": "UPB", + "codeIataCity": "UPB", + "codeIcaoAirport": "MUPB", + "codeIso2Country": "CU", + "geonameId": "7910216", + "latitudeAirport": 23.032778, + "longitudeAirport": -82.579445, + "nameAirport": "Playa Baracoa", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "8", + "airportId": 8162, + "codeIataAirport": "UPG", + "codeIataCity": "UPG", + "codeIcaoAirport": "WAAA", + "codeIso2Country": "ID", + "geonameId": "6301177", + "latitudeAirport": -5.058312, + "longitudeAirport": 119.54589, + "nameAirport": "Hasanudin", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-6", + "airportId": 8163, + "codeIataAirport": "UPL", + "codeIataCity": "UPL", + "codeIcaoAirport": "MRUP", + "codeIso2Country": "CR", + "geonameId": "7730115", + "latitudeAirport": 10.783333, + "longitudeAirport": -85.03333, + "nameAirport": "Upala", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-6", + "airportId": 8164, + "codeIataAirport": "UPN", + "codeIataCity": "UPN", + "codeIcaoAirport": "MMPN", + "codeIso2Country": "MX", + "geonameId": "6299866", + "latitudeAirport": 19.411112, + "longitudeAirport": -102.04722, + "nameAirport": "Uruapan", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-10", + "airportId": 8165, + "codeIataAirport": "UPP", + "codeIataCity": "UPP", + "codeIcaoAirport": "PHUP", + "codeIso2Country": "US", + "geonameId": "5853930", + "latitudeAirport": 20.268057, + "longitudeAirport": -155.8625, + "nameAirport": "Upolu Point", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "10", + "airportId": 8166, + "codeIataAirport": "UPR", + "codeIataCity": "UPR", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2084640", + "latitudeAirport": -8.533333, + "longitudeAirport": 142.63333, + "nameAirport": "Upiara", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 8167, + "codeIataAirport": "UPV", + "codeIataCity": "UPV", + "codeIcaoAirport": "EGDJ", + "codeIso2Country": "GB", + "geonameId": "2635162", + "latitudeAirport": 51.3, + "longitudeAirport": -1.816667, + "nameAirport": "Upavon", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-9", + "airportId": 8168, + "codeIataAirport": "UQE", + "codeIataCity": "UQE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 58.876667, + "longitudeAirport": -158.43167, + "nameAirport": "Queen", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "5", + "airportId": 8169, + "codeIataAirport": "URA", + "codeIataCity": "URA", + "codeIcaoAirport": "UARR", + "codeIso2Country": "KZ", + "geonameId": "6300919", + "latitudeAirport": 51.15371, + "longitudeAirport": 51.538563, + "nameAirport": "Uralsk / Podstepnyy", + "nameCountry": "Kazakhstan", + "phone": "", + "timezone": "Asia/Oral" + }, + { + "GMT": "8", + "airportId": 8170, + "codeIataAirport": "URC", + "codeIataCity": "URC", + "codeIcaoAirport": "ZWWW", + "codeIso2Country": "CN", + "geonameId": "6301396", + "latitudeAirport": 43.90126, + "longitudeAirport": 87.47515, + "nameAirport": "Urumqi", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 8171, + "codeIataAirport": "URD", + "codeIataCity": "URD", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 49.8, + "longitudeAirport": 11.133333, + "nameAirport": "Burg Feuerstein", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "2", + "airportId": 8172, + "codeIataAirport": "URE", + "codeIataCity": "URE", + "codeIcaoAirport": "EEKE", + "codeIso2Country": "EE", + "geonameId": "6296536", + "latitudeAirport": 58.216667, + "longitudeAirport": 22.5, + "nameAirport": "Kuressaare", + "nameCountry": "Estonia", + "phone": "", + "timezone": "Europe/Tallinn" + }, + { + "GMT": "-3", + "airportId": 8173, + "codeIataAirport": "URG", + "codeIataCity": "URG", + "codeIcaoAirport": "SBUG", + "codeIso2Country": "BR", + "geonameId": "6301858", + "latitudeAirport": -29.781668, + "longitudeAirport": -57.038334, + "nameAirport": "Ruben Berta", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "airportId": 8174, + "codeIataAirport": "URI", + "codeIataCity": "URI", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8298681", + "latitudeAirport": 3.216667, + "longitudeAirport": -74.4, + "nameAirport": "Uribe", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "5", + "airportId": 8175, + "codeIataAirport": "URJ", + "codeIataCity": "URJ", + "codeIcaoAirport": "USHU", + "codeIso2Country": "RU", + "geonameId": "7730197", + "latitudeAirport": 60.11667, + "longitudeAirport": 64.833336, + "nameAirport": "Uraj", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-4", + "airportId": 8176, + "codeIataAirport": "URM", + "codeIataCity": "URM", + "codeIcaoAirport": "SVUM", + "codeIso2Country": "VE", + "geonameId": "7731589", + "latitudeAirport": 5.341667, + "longitudeAirport": -62.75833, + "nameAirport": "Uriman", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "4.30", + "airportId": 8177, + "codeIataAirport": "URN", + "codeIataCity": "URN", + "codeIcaoAirport": "", + "codeIso2Country": "AF", + "geonameId": "0", + "latitudeAirport": 32.95, + "longitudeAirport": 69.183334, + "nameAirport": "Urgoon", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "1", + "airportId": 8178, + "codeIataAirport": "URO", + "codeIataCity": "URO", + "codeIcaoAirport": "LFOP", + "codeIso2Country": "FR", + "geonameId": "6299435", + "latitudeAirport": 49.38861, + "longitudeAirport": 1.1875, + "nameAirport": "Boos", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 8179, + "codeIataAirport": "URR", + "codeIataCity": "URR", + "codeIcaoAirport": "SKUR", + "codeIso2Country": "CO", + "geonameId": "7731590", + "latitudeAirport": 6.333333, + "longitudeAirport": -76.183334, + "nameAirport": "Urrao", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "airportId": 8180, + "codeIataAirport": "URS", + "codeIataCity": "URS", + "codeIcaoAirport": "UUOK", + "codeIso2Country": "RU", + "geonameId": "7668551", + "latitudeAirport": 51.75, + "longitudeAirport": 36.266666, + "nameAirport": "Kursk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "7", + "airportId": 8181, + "codeIataAirport": "URT", + "codeIataCity": "URT", + "codeIcaoAirport": "VTSB", + "codeIso2Country": "TH", + "geonameId": "6301153", + "latitudeAirport": 9.133865, + "longitudeAirport": 99.143196, + "nameAirport": "Surat Thani", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "10", + "airportId": 8182, + "codeIataAirport": "URU", + "codeIataCity": "URU", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299253", + "latitudeAirport": -9.5, + "longitudeAirport": 148.56667, + "nameAirport": "Uroubi", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 8183, + "codeIataAirport": "URY", + "codeIataCity": "URY", + "codeIcaoAirport": "OEGT", + "codeIso2Country": "SA", + "geonameId": "392993", + "latitudeAirport": 31.409622, + "longitudeAirport": 37.275005, + "nameAirport": "Gurayat", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "4.30", + "airportId": 8184, + "codeIataAirport": "URZ", + "codeIataCity": "URZ", + "codeIcaoAirport": "", + "codeIso2Country": "AF", + "geonameId": "8260973", + "latitudeAirport": 32.9, + "longitudeAirport": 66.61667, + "nameAirport": "Uruzgan", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "-3", + "airportId": 8185, + "codeIataAirport": "USH", + "codeIataCity": "USH", + "codeIcaoAirport": "SAWH", + "codeIso2Country": "AR", + "geonameId": "6300574", + "latitudeAirport": -54.839348, + "longitudeAirport": -68.31245, + "nameAirport": "Islas Malvinas Argentinas International", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Ushuaia" + }, + { + "GMT": "-4", + "airportId": 8186, + "codeIataAirport": "USI", + "codeIataCity": "USI", + "codeIcaoAirport": "SYMB", + "codeIso2Country": "GY", + "geonameId": "7731591", + "latitudeAirport": 8.166667, + "longitudeAirport": -59.833332, + "nameAirport": "Mabaruma", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "3", + "airportId": 8187, + "codeIataAirport": "USK", + "codeIataCity": "USK", + "codeIcaoAirport": "UUYS", + "codeIso2Country": "RU", + "geonameId": "7668559", + "latitudeAirport": 65.95, + "longitudeAirport": 57.4, + "nameAirport": "Usinsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "8", + "airportId": 8188, + "codeIataAirport": "USL", + "codeIataCity": "USL", + "codeIcaoAirport": "YUSL", + "codeIso2Country": "AU", + "geonameId": "7731592", + "latitudeAirport": -25.966667, + "longitudeAirport": 113.11667, + "nameAirport": "Useless Loop", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "7", + "airportId": 8189, + "codeIataAirport": "USM", + "codeIataCity": "USM", + "codeIcaoAirport": "VTSM", + "codeIso2Country": "TH", + "geonameId": "6452617", + "latitudeAirport": 9.555315, + "longitudeAirport": 100.0628, + "nameAirport": "Koh Samui", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "9", + "airportId": 8190, + "codeIataAirport": "USN", + "codeIataCity": "USN", + "codeIcaoAirport": "RKPU", + "codeIso2Country": "KR", + "geonameId": "6300427", + "latitudeAirport": 35.59367, + "longitudeAirport": 129.35597, + "nameAirport": "Ulsan", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "3", + "airportId": 8191, + "codeIataAirport": "USQ", + "codeIataCity": "USQ", + "codeIcaoAirport": "LTBO", + "codeIso2Country": "TR", + "geonameId": "6299753", + "latitudeAirport": 38.68222, + "longitudeAirport": 29.471945, + "nameAirport": "Usak", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-5", + "airportId": 8192, + "codeIataAirport": "USS", + "codeIataCity": "USS", + "codeIcaoAirport": "", + "codeIso2Country": "CU", + "geonameId": "0", + "latitudeAirport": 21.866667, + "longitudeAirport": -79.55, + "nameAirport": "Sancti Spiritus", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "-5", + "airportId": 8193, + "codeIataAirport": "UST", + "codeIataCity": "UST", + "codeIcaoAirport": "KSGJ", + "codeIso2Country": "US", + "geonameId": "4170895", + "latitudeAirport": 29.95, + "longitudeAirport": -81.333336, + "nameAirport": "St Augustine", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 8194, + "codeIataAirport": "USU", + "codeIataCity": "USU", + "codeIcaoAirport": "RPVV", + "codeIso2Country": "PH", + "geonameId": "7730146", + "latitudeAirport": 12.1, + "longitudeAirport": 120.166664, + "nameAirport": "Francisco Reyes", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "2", + "airportId": 8195, + "codeIataAirport": "UTA", + "codeIataCity": "UTA", + "codeIcaoAirport": "FVMU", + "codeIso2Country": "ZW", + "geonameId": "7730530", + "latitudeAirport": -18.966667, + "longitudeAirport": 32.666668, + "nameAirport": "Mutare", + "nameCountry": "Zimbabwe", + "phone": "", + "timezone": "Africa/Harare" + }, + { + "GMT": "10", + "airportId": 8196, + "codeIataAirport": "UTB", + "codeIataCity": "UTB", + "codeIcaoAirport": "YMTB", + "codeIso2Country": "AU", + "geonameId": "7668745", + "latitudeAirport": -22.5875, + "longitudeAirport": 144.525, + "nameAirport": "Muttaburra", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "9.30", + "airportId": 8197, + "codeIataAirport": "UTD", + "codeIataCity": "UTD", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8260879", + "latitudeAirport": -15.816667, + "longitudeAirport": 134.16667, + "nameAirport": "Nutwood Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "2", + "airportId": 8198, + "codeIataAirport": "UTG", + "codeIataCity": "UTG", + "codeIcaoAirport": "FXQG", + "codeIso2Country": "LS", + "geonameId": "7730541", + "latitudeAirport": -30.5, + "longitudeAirport": 27.6, + "nameAirport": "Quthing", + "nameCountry": "Lesotho", + "phone": "", + "timezone": "Africa/Maseru" + }, + { + "GMT": "7", + "airportId": 8199, + "codeIataAirport": "UTH", + "codeIataCity": "UTH", + "codeIcaoAirport": "VTUD", + "codeIso2Country": "TH", + "geonameId": "1611284", + "latitudeAirport": 17.38661, + "longitudeAirport": 102.774506, + "nameAirport": "Udon Thani", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "2", + "airportId": 8200, + "codeIataAirport": "UTI", + "codeIataCity": "UTI", + "codeIcaoAirport": "EFUT", + "codeIso2Country": "FI", + "geonameId": "6296565", + "latitudeAirport": 60.9, + "longitudeAirport": 26.933332, + "nameAirport": "Utti", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "12", + "airportId": 8201, + "codeIataAirport": "UTK", + "codeIataCity": "UTK", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 11.233333, + "longitudeAirport": 169.86667, + "nameAirport": "Utirik Island", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "1", + "airportId": 8202, + "codeIataAirport": "UTL", + "codeIataCity": "UTL", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "2510281", + "latitudeAirport": 36.63333, + "longitudeAirport": -4.5, + "nameAirport": "Torremolinos", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-6", + "airportId": 8203, + "codeIataAirport": "UTM", + "codeIataCity": "UTM", + "codeIcaoAirport": "KUTA", + "codeIso2Country": "US", + "geonameId": "6301742", + "latitudeAirport": 34.667694, + "longitudeAirport": -90.36767, + "nameAirport": "Tunica Municipalcipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 8204, + "codeIataAirport": "UTN", + "codeIataCity": "UTN", + "codeIcaoAirport": "FAUP", + "codeIso2Country": "ZA", + "geonameId": "965315", + "latitudeAirport": -28.400557, + "longitudeAirport": 21.253332, + "nameAirport": "Upington", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-9", + "airportId": 8205, + "codeIataAirport": "UTO", + "codeIataCity": "UTO", + "codeIcaoAirport": "PAIM", + "codeIso2Country": "US", + "geonameId": "5864740", + "latitudeAirport": 65.99333, + "longitudeAirport": -153.70166, + "nameAirport": "Indian Mountain AFS", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "airportId": 8206, + "codeIataAirport": "UTP", + "codeIataCity": "UTP", + "codeIcaoAirport": "VTBU", + "codeIso2Country": "TH", + "geonameId": "6301138", + "latitudeAirport": 12.683333, + "longitudeAirport": 101.01667, + "nameAirport": "Utapao", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "7", + "airportId": 8207, + "codeIataAirport": "UTR", + "codeIataCity": "UTR", + "codeIcaoAirport": "VTPU", + "codeIso2Country": "TH", + "geonameId": "6301151", + "latitudeAirport": 17.669443, + "longitudeAirport": 100.24389, + "nameAirport": "Uttaradit", + "nameCountry": "Thailand", + "phone": "", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "3", + "airportId": 8208, + "codeIataAirport": "UTS", + "codeIataCity": "UTS", + "codeIcaoAirport": "UUYX", + "codeIso2Country": "RU", + "geonameId": "4699544", + "latitudeAirport": 65.433334, + "longitudeAirport": 52.2, + "nameAirport": "Ust-Tsilma", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "2", + "airportId": 8209, + "codeIataAirport": "UTT", + "codeIataCity": "UTT", + "codeIcaoAirport": "FAUT", + "codeIso2Country": "ZA", + "geonameId": "991575", + "latitudeAirport": -31.583332, + "longitudeAirport": 28.783333, + "nameAirport": "Umtata", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-5", + "airportId": 8210, + "codeIataAirport": "UTU", + "codeIataCity": "UTU", + "codeIcaoAirport": "", + "codeIso2Country": "PA", + "geonameId": "3700269", + "latitudeAirport": 9.666667, + "longitudeAirport": -78.833336, + "nameAirport": "Ustupo", + "nameCountry": "Panama", + "phone": "", + "timezone": "America/Panama" + }, + { + "GMT": "2", + "airportId": 8211, + "codeIataAirport": "UTW", + "codeIataCity": "UTW", + "codeIcaoAirport": "FAQT", + "codeIso2Country": "ZA", + "geonameId": "963518", + "latitudeAirport": -31.866667, + "longitudeAirport": 26.866667, + "nameAirport": "Queenstown", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "3", + "airportId": 8212, + "codeIataAirport": "UUA", + "codeIataCity": "UUA", + "codeIcaoAirport": "UWKB", + "codeIso2Country": "RU", + "geonameId": "7668561", + "latitudeAirport": 54.61667, + "longitudeAirport": 52.816666, + "nameAirport": "Bugulma", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "8", + "airportId": 8213, + "codeIataAirport": "UUD", + "codeIataCity": "UUD", + "codeIcaoAirport": "UIUU", + "codeIso2Country": "RU", + "geonameId": "6300951", + "latitudeAirport": 51.833332, + "longitudeAirport": 107.5, + "nameAirport": "Ulan-ude, Baykal", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Irkutsk" + }, + { + "GMT": "-9", + "airportId": 8214, + "codeIataAirport": "UUK", + "codeIataCity": "UUK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299164", + "latitudeAirport": 70.416664, + "longitudeAirport": -148.91667, + "nameAirport": "Kuparuk", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 8215, + "codeIataAirport": "UUN", + "codeIataCity": "UUN", + "codeIcaoAirport": "ZMBU", + "codeIso2Country": "MN", + "geonameId": "7668796", + "latitudeAirport": 46.683334, + "longitudeAirport": 113.28333, + "nameAirport": "Baruun-Urt", + "nameCountry": "Mongolia", + "phone": "", + "timezone": "Asia/Choibalsan" + }, + { + "GMT": "11", + "airportId": 8216, + "codeIataAirport": "UUS", + "codeIataCity": "UUS", + "codeIcaoAirport": "UHSS", + "codeIso2Country": "RU", + "geonameId": "6300941", + "latitudeAirport": 46.966667, + "longitudeAirport": 142.75, + "nameAirport": "Yuzhno-Sakhalinsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Sakhalin" + }, + { + "GMT": "10", + "airportId": 8217, + "codeIataAirport": "UUU", + "codeIataCity": "UUU", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8261061", + "latitudeAirport": -8.999722, + "longitudeAirport": 147.46666, + "nameAirport": "Manumu", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "airportId": 8218, + "codeIataAirport": "UVA", + "codeIataCity": "UVA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4738721", + "latitudeAirport": 29.201944, + "longitudeAirport": -99.735, + "nameAirport": "Garner Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "11", + "airportId": 8219, + "codeIataAirport": "UVE", + "codeIataCity": "UVE", + "codeIcaoAirport": "NWWV", + "codeIso2Country": "NC", + "geonameId": "6299978", + "latitudeAirport": -20.64242, + "longitudeAirport": 166.57198, + "nameAirport": "Ouvea", + "nameCountry": "New Caledonia", + "phone": "", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "-4", + "airportId": 8220, + "codeIataAirport": "UVF", + "codeIataCity": "SLU", + "codeIcaoAirport": "TLPL", + "codeIso2Country": "LC", + "geonameId": "3576674", + "latitudeAirport": 13.735556, + "longitudeAirport": -60.95222, + "nameAirport": "Hewanorra", + "nameCountry": "Saint Lucia", + "phone": "", + "timezone": "America/St_Lucia" + }, + { + "GMT": "2", + "airportId": 8221, + "codeIataAirport": "UVL", + "codeIataCity": "UVL", + "codeIcaoAirport": "HEKG", + "codeIso2Country": "EG", + "geonameId": "7730611", + "latitudeAirport": 25.475, + "longitudeAirport": 30.590834, + "nameAirport": "Kharga", + "nameCountry": "Egypt", + "phone": "", + "timezone": "Africa/Cairo" + }, + { + "GMT": "10", + "airportId": 8222, + "codeIataAirport": "UVO", + "codeIataCity": "UVO", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2084489", + "latitudeAirport": -5.975, + "longitudeAirport": 150.96666, + "nameAirport": "Uvol", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 8223, + "codeIataAirport": "UWA", + "codeIataCity": "UWA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.266666, + "longitudeAirport": -72.23333, + "nameAirport": "Ware", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 8224, + "codeIataAirport": "UWE", + "codeIataCity": "WIE", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Wiesbaden Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 8225, + "codeIataAirport": "UWP", + "codeIataCity": "UWP", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2805753", + "latitudeAirport": 51.27027, + "longitudeAirport": 7.16755, + "nameAirport": "Wuppertal Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "3", + "airportId": 8226, + "codeIataAirport": "UYL", + "codeIataCity": "UYL", + "codeIcaoAirport": "HSNL", + "codeIso2Country": "SD", + "geonameId": "6297344", + "latitudeAirport": 12.071667, + "longitudeAirport": 24.894722, + "nameAirport": "Nyala", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "8", + "airportId": 8227, + "codeIataAirport": "UYN", + "codeIataCity": "UYN", + "codeIcaoAirport": "ZLYL", + "codeIso2Country": "CN", + "geonameId": "7731593", + "latitudeAirport": 38.274155, + "longitudeAirport": 109.73038, + "nameAirport": "Yulin", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-4", + "airportId": 8228, + "codeIataAirport": "UYU", + "codeIataCity": "UYU", + "codeIcaoAirport": "", + "codeIso2Country": "BO", + "geonameId": "0", + "latitudeAirport": -20.4463, + "longitudeAirport": -66.8484, + "nameAirport": "Uyuni", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "1", + "airportId": 8229, + "codeIataAirport": "UZC", + "codeIataCity": "UZC", + "codeIcaoAirport": "LYUE", + "codeIso2Country": "RS", + "geonameId": "7668338", + "latitudeAirport": 43.898834, + "longitudeAirport": 19.697403, + "nameAirport": "Uzice-Ponikve", + "nameCountry": "Serbia", + "phone": "", + "timezone": "Europe/Belgrade" + }, + { + "GMT": "3", + "airportId": 8230, + "codeIataAirport": "UZH", + "codeIataCity": "UZH", + "codeIcaoAirport": "", + "codeIso2Country": "SA", + "geonameId": "8299064", + "latitudeAirport": 26.1, + "longitudeAirport": 43.933334, + "nameAirport": "Unayzah", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-7", + "airportId": 8231, + "codeIataAirport": "UZM", + "codeIataCity": "UZM", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260829", + "latitudeAirport": 68.1639, + "longitudeAirport": -106.614, + "nameAirport": "Hope Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Cambridge_Bay" + }, + { + "GMT": "-3", + "airportId": 8232, + "codeIataAirport": "UZU", + "codeIataCity": "UZU", + "codeIcaoAirport": "SATU", + "codeIso2Country": "AR", + "geonameId": "6300562", + "latitudeAirport": -29.778889, + "longitudeAirport": -58.095554, + "nameAirport": "Curuzu Cuatia", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "2", + "airportId": 8233, + "codeIataAirport": "VAA", + "codeIataCity": "VAA", + "codeIcaoAirport": "EFVA", + "codeIso2Country": "FI", + "geonameId": "6296566", + "latitudeAirport": 63.04355, + "longitudeAirport": 21.760122, + "nameAirport": "Vaasa", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-5", + "airportId": 8234, + "codeIataAirport": "VAB", + "codeIataCity": "VAB", + "codeIcaoAirport": "", + "codeIso2Country": "CO", + "geonameId": "8298697", + "latitudeAirport": 1.116667, + "longitudeAirport": -70.75, + "nameAirport": "Yavarate", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "airportId": 8235, + "codeIataAirport": "VAC", + "codeIataCity": "VAC", + "codeIcaoAirport": "EDWU", + "codeIso2Country": "DE", + "geonameId": "7730470", + "latitudeAirport": 52.916668, + "longitudeAirport": 8.05, + "nameAirport": "Varrelbusch", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "airportId": 8236, + "codeIataAirport": "VAD", + "codeIataCity": "VLD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.833332, + "longitudeAirport": -83.28333, + "nameAirport": "Moody AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 8237, + "codeIataAirport": "VAF", + "codeIataCity": "VAF", + "codeIcaoAirport": "LFLU", + "codeIso2Country": "FR", + "geonameId": "6694620", + "latitudeAirport": 44.920277, + "longitudeAirport": 4.970278, + "nameAirport": "Chabeuil", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-3", + "airportId": 8238, + "codeIataAirport": "VAG", + "codeIataCity": "VAG", + "codeIcaoAirport": "SBVG", + "codeIso2Country": "BR", + "geonameId": "7730163", + "latitudeAirport": -21.55, + "longitudeAirport": -45.433334, + "nameAirport": "Maj. Brig. Trompowsky", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-4", + "airportId": 8239, + "codeIataAirport": "VAH", + "codeIataCity": "VAH", + "codeIcaoAirport": "SLVG", + "codeIso2Country": "BO", + "geonameId": "7731594", + "latitudeAirport": -18.483334, + "longitudeAirport": -64.1, + "nameAirport": "Vallegrande", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "10", + "airportId": 8240, + "codeIataAirport": "VAI", + "codeIataCity": "VAI", + "codeIcaoAirport": "AYVN", + "codeIso2Country": "PG", + "geonameId": "7668088", + "latitudeAirport": -2.694722, + "longitudeAirport": 141.30194, + "nameAirport": "Vanimo", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 8241, + "codeIataAirport": "VAK", + "codeIataCity": "VAK", + "codeIcaoAirport": "PAVA", + "codeIso2Country": "US", + "geonameId": "5859115", + "latitudeAirport": 61.52861, + "longitudeAirport": -165.59027, + "nameAirport": "Chevak", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Nome" + }, + { + "GMT": "-3", + "airportId": 8242, + "codeIataAirport": "VAL", + "codeIataCity": "VAL", + "codeIcaoAirport": "SNVB", + "codeIso2Country": "BR", + "geonameId": "7731595", + "latitudeAirport": -13.333333, + "longitudeAirport": -39.083332, + "nameAirport": "Valenca", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "5", + "airportId": 8243, + "codeIataAirport": "VAM", + "codeIataCity": "VAM", + "codeIcaoAirport": "VRMV", + "codeIso2Country": "MV", + "geonameId": "8181786", + "latitudeAirport": 55.46389, + "longitudeAirport": 9.458333, + "nameAirport": "Maamigili", + "nameCountry": "Maldives", + "phone": "", + "timezone": "Indian/Maldives" + }, + { + "GMT": "3", + "airportId": 8244, + "codeIataAirport": "VAN", + "codeIataCity": "VAN", + "codeIcaoAirport": "LTCI", + "codeIso2Country": "TR", + "geonameId": "6299767", + "latitudeAirport": 38.45861, + "longitudeAirport": 43.332222, + "nameAirport": "Ferit Melen Airport", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "11", + "airportId": 8245, + "codeIataAirport": "VAO", + "codeIataCity": "VAO", + "codeIcaoAirport": "AGGV", + "codeIso2Country": "SB", + "geonameId": "7668072", + "latitudeAirport": -7.566667, + "longitudeAirport": 158.66667, + "nameAirport": "Suavanao Airstrip", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-4", + "airportId": 8246, + "codeIataAirport": "VAP", + "codeIataCity": "VAP", + "codeIcaoAirport": "SCRD", + "codeIso2Country": "CL", + "geonameId": "7731596", + "latitudeAirport": -33.033333, + "longitudeAirport": -71.666664, + "nameAirport": "Valparaiso", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "2", + "airportId": 8247, + "codeIataAirport": "VAR", + "codeIataCity": "VAR", + "codeIcaoAirport": "LBWN", + "codeIso2Country": "BG", + "geonameId": "6299310", + "latitudeAirport": 43.23726, + "longitudeAirport": 27.829096, + "nameAirport": "Varna", + "nameCountry": "Bulgaria", + "phone": "", + "timezone": "Europe/Sofia" + }, + { + "GMT": "3", + "airportId": 8248, + "codeIataAirport": "VAS", + "codeIataCity": "VAS", + "codeIcaoAirport": "LTAR", + "codeIso2Country": "TR", + "geonameId": "6299735", + "latitudeAirport": 39.81389, + "longitudeAirport": 36.904167, + "nameAirport": "Sivas", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3", + "airportId": 8249, + "codeIataAirport": "VAT", + "codeIataCity": "VAT", + "codeIcaoAirport": "FMMY", + "codeIso2Country": "MG", + "geonameId": "7730510", + "latitudeAirport": -19.283333, + "longitudeAirport": 48.833332, + "nameAirport": "Vatomandry", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "12", + "airportId": 8250, + "codeIataAirport": "VAU", + "codeIataCity": "VAU", + "codeIcaoAirport": "NFNV", + "codeIso2Country": "FJ", + "geonameId": "7730690", + "latitudeAirport": -17.5, + "longitudeAirport": 177.86667, + "nameAirport": "Vatukoula", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "13", + "airportId": 8251, + "codeIataAirport": "VAV", + "codeIataCity": "VAV", + "codeIcaoAirport": "NFTV", + "codeIso2Country": "TO", + "geonameId": "6354933", + "latitudeAirport": -18.586012, + "longitudeAirport": -173.96829, + "nameAirport": "Lupepau'u", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Tongatapu" + }, + { + "GMT": "1", + "airportId": 8252, + "codeIataAirport": "VAW", + "codeIataCity": "VAW", + "codeIcaoAirport": "ENSS", + "codeIso2Country": "NO", + "geonameId": "6296774", + "latitudeAirport": 70.35472, + "longitudeAirport": 31.045555, + "nameAirport": "Vardoe", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-8", + "airportId": 8253, + "codeIataAirport": "VBG", + "codeIataCity": "LPC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.63333, + "longitudeAirport": -120.46667, + "nameAirport": "Vandenberg AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-9", + "airportId": 8254, + "codeIataAirport": "VBM", + "codeIataCity": "VBM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "7910270", + "latitudeAirport": 57.8575, + "longitudeAirport": -157.08667, + "nameAirport": "Blue Mountain", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 8255, + "codeIataAirport": "VBS", + "codeIataCity": "VRN", + "codeIcaoAirport": "LIPO", + "codeIso2Country": "IT", + "geonameId": "6301784", + "latitudeAirport": 45.425446, + "longitudeAirport": 10.326545, + "nameAirport": "Brescia Montichiari", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "12", + "airportId": 8256, + "codeIataAirport": "VBV", + "codeIataCity": "VBV", + "codeIcaoAirport": "NFVB", + "codeIso2Country": "FJ", + "geonameId": "7668370", + "latitudeAirport": -17.233334, + "longitudeAirport": -178.95, + "nameAirport": "Vanuabalavu", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "1", + "airportId": 8257, + "codeIataAirport": "VBY", + "codeIataCity": "VBY", + "codeIcaoAirport": "ESSV", + "codeIso2Country": "SE", + "geonameId": "6296819", + "latitudeAirport": 57.660446, + "longitudeAirport": 18.338154, + "nameAirport": "Visby", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "7", + "airportId": 8258, + "codeIataAirport": "VCA", + "codeIataCity": "VCA", + "codeIcaoAirport": "VVCT", + "codeIso2Country": "VN", + "geonameId": "7730225", + "latitudeAirport": 10.047222, + "longitudeAirport": 105.76639, + "nameAirport": "Can Tho", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-9", + "airportId": 8259, + "codeIataAirport": "VCB", + "codeIataCity": "VCB", + "codeIcaoAirport": "KVCB", + "codeIso2Country": "US", + "geonameId": "5378125", + "latitudeAirport": 55.083332, + "longitudeAirport": -133.01666, + "nameAirport": "View Cove", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "9.30", + "airportId": 8260, + "codeIataAirport": "VCD", + "codeIataCity": "VCD", + "codeIcaoAirport": "YVRD", + "codeIso2Country": "AU", + "geonameId": "7731597", + "latitudeAirport": -16.4, + "longitudeAirport": 131.0, + "nameAirport": "Victoria River Downs", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "1", + "airportId": 8261, + "codeIataAirport": "VCE", + "codeIataCity": "VCE", + "codeIcaoAirport": "LIPZ", + "codeIso2Country": "IT", + "geonameId": "3219415", + "latitudeAirport": 45.502285, + "longitudeAirport": 12.337947, + "nameAirport": "Marco Polo", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-3", + "airportId": 8262, + "codeIataAirport": "VCF", + "codeIataCity": "VCF", + "codeIcaoAirport": "", + "codeIso2Country": "AR", + "geonameId": "7731598", + "latitudeAirport": -40.7, + "longitudeAirport": -66.15, + "nameAirport": "Valcheta", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-3", + "airportId": 8263, + "codeIataAirport": "VCH", + "codeIataCity": "VCH", + "codeIcaoAirport": "SUVO", + "codeIso2Country": "UY", + "geonameId": "7731599", + "latitudeAirport": -31.733334, + "longitudeAirport": -54.25, + "nameAirport": "Vichadero", + "nameCountry": "Uruguay", + "phone": "", + "timezone": "America/Montevideo" + }, + { + "GMT": "7", + "airportId": 8264, + "codeIataAirport": "VCL", + "codeIataCity": "VCL", + "codeIcaoAirport": "", + "codeIso2Country": "VN", + "geonameId": "0", + "latitudeAirport": 15.422222, + "longitudeAirport": 108.70389, + "nameAirport": "Chulai", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-3", + "airportId": 8265, + "codeIataAirport": "VCP", + "codeIataCity": "SAO", + "codeIcaoAirport": "SBKP", + "codeIso2Country": "BR", + "geonameId": "6300637", + "latitudeAirport": -23.009892, + "longitudeAirport": -47.141674, + "nameAirport": "Viracopos (Campinas International)", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-4", + "airportId": 8266, + "codeIataAirport": "VCR", + "codeIataCity": "VCR", + "codeIcaoAirport": "SVCO", + "codeIso2Country": "VE", + "geonameId": "7730178", + "latitudeAirport": 10.183333, + "longitudeAirport": -70.083336, + "nameAirport": "Carora", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "7", + "airportId": 8267, + "codeIataAirport": "VCS", + "codeIataCity": "VCS", + "codeIcaoAirport": "VVCS", + "codeIso2Country": "VN", + "geonameId": "7730224", + "latitudeAirport": 10.371389, + "longitudeAirport": 106.63333, + "nameAirport": "Coong", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-6", + "airportId": 8268, + "codeIataAirport": "VCT", + "codeIataCity": "VCT", + "codeIcaoAirport": "KVCT", + "codeIso2Country": "US", + "geonameId": "4739176", + "latitudeAirport": 28.85111, + "longitudeAirport": -96.914444, + "nameAirport": "County-Foster", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 8269, + "codeIataAirport": "VCV", + "codeIataCity": "VCV", + "codeIcaoAirport": "KVCV", + "codeIso2Country": "US", + "geonameId": "5406222", + "latitudeAirport": 34.533333, + "longitudeAirport": -117.3, + "nameAirport": "Southern California Logistics", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "airportId": 8270, + "codeIataAirport": "VDA", + "codeIataCity": "VDA", + "codeIcaoAirport": "LLOV", + "codeIso2Country": "IL", + "geonameId": "6299661", + "latitudeAirport": 29.952015, + "longitudeAirport": 34.9339, + "nameAirport": "Ovda", + "nameCountry": "Israel", + "phone": "", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "1", + "airportId": 8271, + "codeIataAirport": "VDB", + "codeIataCity": "VDB", + "codeIcaoAirport": "ENFG", + "codeIso2Country": "NO", + "geonameId": "6296736", + "latitudeAirport": 61.083332, + "longitudeAirport": 9.333333, + "nameAirport": "Valdres Lufthavn Leirin", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-3", + "airportId": 8272, + "codeIataAirport": "VDC", + "codeIataCity": "VDC", + "codeIcaoAirport": "SBQV", + "codeIso2Country": "BR", + "geonameId": "6300661", + "latitudeAirport": -14.883333, + "longitudeAirport": -40.86667, + "nameAirport": "Vitoria Da Conquista", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Bahia" + }, + { + "GMT": "0", + "airportId": 8273, + "codeIataAirport": "VDE", + "codeIataCity": "VDE", + "codeIcaoAirport": "GCHI", + "codeIso2Country": "ES", + "geonameId": "6297186", + "latitudeAirport": 27.813969, + "longitudeAirport": -17.884937, + "nameAirport": "Hierro", + "nameCountry": "Spain", + "phone": "", + "timezone": "Atlantic/Canary" + }, + { + "GMT": "7", + "airportId": 8274, + "codeIataAirport": "VDH", + "codeIataCity": "VDH", + "codeIcaoAirport": "", + "codeIso2Country": "VN", + "geonameId": "7730313", + "latitudeAirport": 17.515, + "longitudeAirport": 106.59055, + "nameAirport": "Dong Hoi", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-5", + "airportId": 8275, + "codeIataAirport": "VDI", + "codeIataCity": "VDI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4228434", + "latitudeAirport": 32.216667, + "longitudeAirport": -82.416664, + "nameAirport": "Vidalia Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 8276, + "codeIataAirport": "VDM", + "codeIataCity": "VDM", + "codeIcaoAirport": "SAVV", + "codeIso2Country": "AR", + "geonameId": "6300568", + "latitudeAirport": -40.85, + "longitudeAirport": -63.016666, + "nameAirport": "Viedma", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-4", + "airportId": 8277, + "codeIataAirport": "VDP", + "codeIataCity": "VDP", + "codeIcaoAirport": "SVVP", + "codeIso2Country": "VE", + "geonameId": "3625516", + "latitudeAirport": 9.221389, + "longitudeAirport": -65.99111, + "nameAirport": "Valle De Pascua", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-3", + "airportId": 8278, + "codeIataAirport": "VDR", + "codeIataCity": "VDR", + "codeIcaoAirport": "SAOD", + "codeIso2Country": "AR", + "geonameId": "6300541", + "latitudeAirport": -31.94111, + "longitudeAirport": -65.14222, + "nameAirport": "Villa Dolores", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "1", + "airportId": 8279, + "codeIataAirport": "VDS", + "codeIataCity": "VDS", + "codeIcaoAirport": "ENVD", + "codeIso2Country": "NO", + "geonameId": "6296779", + "latitudeAirport": 70.065, + "longitudeAirport": 29.845278, + "nameAirport": "Vadso", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-3", + "airportId": 8280, + "codeIataAirport": "VDT", + "codeIataCity": "MVD", + "codeIcaoAirport": "", + "codeIso2Country": "UY", + "geonameId": "0", + "latitudeAirport": -34.8836111, + "longitudeAirport": -56.1819444, + "nameAirport": "Montevideo Bus Station", + "nameCountry": "Uruguay", + "phone": "", + "timezone": "America/Montevideo" + }, + { + "GMT": "-6", + "airportId": 8281, + "codeIataAirport": "VDU", + "codeIataCity": "RFG", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 28.3, + "longitudeAirport": -97.28333, + "nameAirport": "Tom O'Connor Oilfield", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5.30", + "airportId": 8282, + "codeIataAirport": "VDY", + "codeIataCity": "VDY", + "codeIcaoAirport": "VOJV", + "codeIso2Country": "IN", + "geonameId": "8299089", + "latitudeAirport": 15.17483, + "longitudeAirport": 76.63406, + "nameAirport": "Jindal", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-9", + "airportId": 8283, + "codeIataAirport": "VDZ", + "codeIataCity": "VDZ", + "codeIcaoAirport": "PAVD", + "codeIso2Country": "US", + "geonameId": "5877389", + "latitudeAirport": 61.1325, + "longitudeAirport": -146.23889, + "nameAirport": "Valdez Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 8284, + "codeIataAirport": "VEE", + "codeIataCity": "VEE", + "codeIcaoAirport": "PAVE", + "codeIso2Country": "US", + "geonameId": "5877428", + "latitudeAirport": 67.023056, + "longitudeAirport": -146.41112, + "nameAirport": "Venetie", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "airportId": 8285, + "codeIataAirport": "VEG", + "codeIataCity": "VEG", + "codeIcaoAirport": "", + "codeIso2Country": "GY", + "geonameId": "8298914", + "latitudeAirport": 5.55, + "longitudeAirport": -59.283333, + "nameAirport": "Maikwak", + "nameCountry": "Guyana", + "phone": "", + "timezone": "America/Guyana" + }, + { + "GMT": "-7", + "airportId": 8286, + "codeIataAirport": "VEL", + "codeIataCity": "VEL", + "codeIcaoAirport": "KVEL", + "codeIso2Country": "US", + "geonameId": "5784155", + "latitudeAirport": 40.43889, + "longitudeAirport": -109.51028, + "nameAirport": "Vernal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 8287, + "codeIataAirport": "VER", + "codeIataCity": "VER", + "codeIcaoAirport": "MMVR", + "codeIso2Country": "MX", + "geonameId": "6299882", + "latitudeAirport": 19.142275, + "longitudeAirport": -96.18321, + "nameAirport": "Las Bajadas", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "11", + "airportId": 8288, + "codeIataAirport": "VEV", + "codeIataCity": "VEV", + "codeIcaoAirport": "AGBA", + "codeIso2Country": "SB", + "geonameId": "7730403", + "latitudeAirport": -7.85, + "longitudeAirport": 159.55, + "nameAirport": "Barakoma", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-6", + "airportId": 8289, + "codeIataAirport": "VEX", + "codeIataCity": "VEX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5692583", + "latitudeAirport": 41.916668, + "longitudeAirport": -77.13333, + "nameAirport": "Tioga Municipal Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 8290, + "codeIataAirport": "VEY", + "codeIataCity": "VEY", + "codeIcaoAirport": "BIVM", + "codeIso2Country": "IS", + "geonameId": "6295714", + "latitudeAirport": 63.426388, + "longitudeAirport": -20.277779, + "nameAirport": "Vestmannaeyjar", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "2", + "airportId": 8291, + "codeIataAirport": "VFA", + "codeIataCity": "VFA", + "codeIcaoAirport": "FVFA", + "codeIso2Country": "ZW", + "geonameId": "6297107", + "latitudeAirport": -18.093056, + "longitudeAirport": 25.840279, + "nameAirport": "Victoria Falls", + "nameCountry": "Zimbabwe", + "phone": "", + "timezone": "Africa/Harare" + }, + { + "GMT": "5.30", + "airportId": 8292, + "codeIataAirport": "VGA", + "codeIataCity": "VGA", + "codeIcaoAirport": "VOBZ", + "codeIso2Country": "IN", + "geonameId": "6301120", + "latitudeAirport": 16.529444, + "longitudeAirport": 80.79722, + "nameAirport": "Vijayawada", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "3", + "airportId": 8293, + "codeIataAirport": "VGD", + "codeIataCity": "VGD", + "codeIcaoAirport": "ULWW", + "codeIso2Country": "RU", + "geonameId": "8260920", + "latitudeAirport": 59.283333, + "longitudeAirport": 39.95, + "nameAirport": "Vologda", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "7", + "airportId": 8294, + "codeIataAirport": "VGG", + "codeIataCity": "VGG", + "codeIcaoAirport": "", + "codeIso2Country": "LA", + "geonameId": "0", + "latitudeAirport": 62.53, + "longitudeAirport": 11.07, + "nameAirport": "Vangrieng", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "1", + "airportId": 8295, + "codeIataAirport": "VGO", + "codeIataCity": "VGO", + "codeIcaoAirport": "LEVX", + "codeIso2Country": "ES", + "geonameId": "6299360", + "latitudeAirport": 42.224552, + "longitudeAirport": -8.634025, + "nameAirport": "Vigo", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-3", + "airportId": 8296, + "codeIataAirport": "VGS", + "codeIataCity": "VGS", + "codeIcaoAirport": "", + "codeIso2Country": "AR", + "geonameId": "7731600", + "latitudeAirport": -35.083332, + "longitudeAirport": -63.0, + "nameAirport": "General Villegas", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "-8", + "airportId": 8297, + "codeIataAirport": "VGT", + "codeIataCity": "LAS", + "codeIcaoAirport": "KVGT", + "codeIso2Country": "US", + "geonameId": "5509404", + "latitudeAirport": 36.09667, + "longitudeAirport": -115.16889, + "nameAirport": "North Air Terminal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 8298, + "codeIataAirport": "VGZ", + "codeIataCity": "VGZ", + "codeIcaoAirport": "SKVG", + "codeIso2Country": "CO", + "geonameId": "7910375", + "latitudeAirport": 1.066667, + "longitudeAirport": -76.71667, + "nameAirport": "Villagarzon", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "airportId": 8299, + "codeIataAirport": "VHC", + "codeIataCity": "VHC", + "codeIcaoAirport": "FNSA", + "codeIso2Country": "AO", + "geonameId": "7668253", + "latitudeAirport": -9.75, + "longitudeAirport": 20.55, + "nameAirport": "Saurimo", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "1", + "airportId": 8300, + "codeIataAirport": "VHM", + "codeIataCity": "VHM", + "codeIcaoAirport": "ESNV", + "codeIso2Country": "SE", + "geonameId": "2662935", + "latitudeAirport": 64.61667, + "longitudeAirport": 16.65, + "nameAirport": "Vilhelmina", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-6", + "airportId": 8301, + "codeIataAirport": "VHN", + "codeIataCity": "VHN", + "codeIcaoAirport": "KVHN", + "codeIso2Country": "US", + "geonameId": "5532924", + "latitudeAirport": 31.05, + "longitudeAirport": -104.833336, + "nameAirport": "Culberson County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 8302, + "codeIataAirport": "VHY", + "codeIataCity": "VHY", + "codeIcaoAirport": "LFLV", + "codeIso2Country": "FR", + "geonameId": "6299406", + "latitudeAirport": 46.165558, + "longitudeAirport": 3.409722, + "nameAirport": "Charmeil", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-10", + "airportId": 8303, + "codeIataAirport": "VHZ", + "codeIataCity": "VHZ", + "codeIcaoAirport": "NTUV", + "codeIso2Country": "PF", + "geonameId": "7730708", + "latitudeAirport": -18.583332, + "longitudeAirport": -138.83333, + "nameAirport": "Vahitahi", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-3", + "airportId": 8304, + "codeIataAirport": "VIA", + "codeIataCity": "VIA", + "codeIcaoAirport": "SSVI", + "codeIso2Country": "BR", + "geonameId": "7668477", + "latitudeAirport": -27.008333, + "longitudeAirport": -51.136112, + "nameAirport": "Vienna", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 8305, + "codeIataAirport": "VIC", + "codeIataCity": "VIC", + "codeIcaoAirport": "LIPT", + "codeIso2Country": "IT", + "geonameId": "6299600", + "latitudeAirport": 45.55, + "longitudeAirport": 11.55, + "nameAirport": "Trissino", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "airportId": 8306, + "codeIataAirport": "VIE", + "codeIataCity": "VIE", + "codeIcaoAirport": "LOWW", + "codeIso2Country": "AT", + "geonameId": "2761369", + "latitudeAirport": 48.11972, + "longitudeAirport": 16.563583, + "nameAirport": "Vienna International", + "nameCountry": "Austria", + "phone": "01/70070", + "timezone": "Europe/Vienna" + }, + { + "GMT": "1", + "airportId": 8307, + "codeIataAirport": "VIF", + "codeIataCity": "VIF", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 41.885277, + "longitudeAirport": 16.176945, + "nameAirport": "Vieste", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-4", + "airportId": 8308, + "codeIataAirport": "VIG", + "codeIataCity": "VIG", + "codeIcaoAirport": "SVVG", + "codeIso2Country": "VE", + "geonameId": "6300878", + "latitudeAirport": 8.633333, + "longitudeAirport": -71.65, + "nameAirport": "El Vigia", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-6", + "airportId": 8309, + "codeIataAirport": "VIH", + "codeIataCity": "VIH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4413031", + "latitudeAirport": 38.13333, + "longitudeAirport": -91.76667, + "nameAirport": "Rolla National", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "airportId": 8310, + "codeIataAirport": "VII", + "codeIataCity": "VII", + "codeIcaoAirport": "VVVH", + "codeIso2Country": "VN", + "geonameId": "6301175", + "latitudeAirport": 18.7, + "longitudeAirport": 105.63333, + "nameAirport": "Vinh City", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-4", + "airportId": 8311, + "codeIataAirport": "VIJ", + "codeIataCity": "VIJ", + "codeIcaoAirport": "TUPW", + "codeIso2Country": "VG", + "geonameId": "3577326", + "latitudeAirport": 18.45027, + "longitudeAirport": -64.427734, + "nameAirport": "Spanish Town", + "nameCountry": "British Virgin Islands", + "phone": "", + "timezone": "America/Tortola" + }, + { + "GMT": "-9", + "airportId": 8312, + "codeIataAirport": "VIK", + "codeIataCity": "VIK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 69.68, + "longitudeAirport": -146.9, + "nameAirport": "Airstrip", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 8313, + "codeIataAirport": "VIL", + "codeIataCity": "VIL", + "codeIcaoAirport": "GMMH", + "codeIso2Country": "MA", + "geonameId": "7668282", + "latitudeAirport": 23.713333, + "longitudeAirport": -15.935, + "nameAirport": "Dakhla", + "nameCountry": "Morocco", + "phone": "", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "2", + "airportId": 8314, + "codeIataAirport": "VIN", + "codeIataCity": "VIN", + "codeIcaoAirport": "UKWW", + "codeIso2Country": "UA", + "geonameId": "7731601", + "latitudeAirport": 49.233334, + "longitudeAirport": 28.483334, + "nameAirport": "Vinnica", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "9", + "airportId": 8315, + "codeIataAirport": "VIQ", + "codeIataCity": "VIQ", + "codeIcaoAirport": "WPVQ", + "codeIso2Country": "TL", + "geonameId": "7731602", + "latitudeAirport": -8.883333, + "longitudeAirport": 126.36667, + "nameAirport": "Viqueque", + "nameCountry": "East Timor", + "phone": "", + "timezone": "Asia/Dili" + }, + { + "GMT": "2", + "airportId": 8316, + "codeIataAirport": "VIR", + "codeIataCity": "DUR", + "codeIcaoAirport": "FAVG", + "codeIso2Country": "ZA", + "geonameId": "943880", + "latitudeAirport": -29.766666, + "longitudeAirport": 31.066668, + "nameAirport": "Virginia", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-8", + "airportId": 8317, + "codeIataAirport": "VIS", + "codeIataCity": "VIS", + "codeIcaoAirport": "KVIS", + "codeIso2Country": "US", + "geonameId": "5406585", + "latitudeAirport": 36.319443, + "longitudeAirport": -119.39389, + "nameAirport": "Visalia", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 8318, + "codeIataAirport": "VIT", + "codeIataCity": "VIT", + "codeIcaoAirport": "LEVT", + "codeIso2Country": "ES", + "geonameId": "6299359", + "latitudeAirport": 42.833332, + "longitudeAirport": -2.5, + "nameAirport": "Vitoria", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "11", + "airportId": 8319, + "codeIataAirport": "VIU", + "codeIataCity": "VIU", + "codeIcaoAirport": "", + "codeIso2Country": "SB", + "geonameId": "7731603", + "latitudeAirport": -8.5, + "longitudeAirport": 157.66667, + "nameAirport": "Viru Harbour Airstrip", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "10", + "airportId": 8320, + "codeIataAirport": "VIV", + "codeIataCity": "VIV", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260919", + "latitudeAirport": -9.330556, + "longitudeAirport": 150.34166, + "nameAirport": "Vivigani", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "airportId": 8321, + "codeIataAirport": "VIX", + "codeIataCity": "VIX", + "codeIcaoAirport": "SBVT", + "codeIso2Country": "BR", + "geonameId": "6300685", + "latitudeAirport": -20.25681, + "longitudeAirport": -40.289566, + "nameAirport": "Eurico Sales", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 8322, + "codeIataAirport": "VIY", + "codeIataCity": "PAR", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 48.774166, + "longitudeAirport": 2.191667, + "nameAirport": "Villa Coublay", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "2", + "airportId": 8323, + "codeIataAirport": "VJB", + "codeIataCity": "VJB", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "1024552", + "latitudeAirport": -25.033333, + "longitudeAirport": 33.61667, + "nameAirport": "Xai Xai", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-5", + "airportId": 8324, + "codeIataAirport": "VJI", + "codeIataCity": "VJI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4791299", + "latitudeAirport": 36.68611, + "longitudeAirport": -82.03333, + "nameAirport": "Virginia Highlands", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 8325, + "codeIataAirport": "VJQ", + "codeIataCity": "VJQ", + "codeIcaoAirport": "", + "codeIso2Country": "MZ", + "geonameId": "0", + "latitudeAirport": -15.416667, + "longitudeAirport": 36.966667, + "nameAirport": "Gurue", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "7", + "airportId": 8326, + "codeIataAirport": "VKG", + "codeIataCity": "VKG", + "codeIcaoAirport": "VVRG", + "codeIso2Country": "VN", + "geonameId": "7668652", + "latitudeAirport": 10.083333, + "longitudeAirport": 105.083336, + "nameAirport": "Rach Gia", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "3", + "airportId": 8327, + "codeIataAirport": "VKO", + "codeIataCity": "MOW", + "codeIcaoAirport": "UUWW", + "codeIso2Country": "RU", + "geonameId": "6301018", + "latitudeAirport": 55.60315, + "longitudeAirport": 37.2921, + "nameAirport": "Vnukovo", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "airportId": 8328, + "codeIataAirport": "VKS", + "codeIataCity": "VKS", + "codeIcaoAirport": "KVKS", + "codeIso2Country": "US", + "geonameId": "4449628", + "latitudeAirport": 32.35, + "longitudeAirport": -90.85, + "nameAirport": "Vicksburg", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 8329, + "codeIataAirport": "VKT", + "codeIataCity": "VKT", + "codeIcaoAirport": "UUYW", + "codeIso2Country": "RU", + "geonameId": "7668560", + "latitudeAirport": 67.48333, + "longitudeAirport": 63.983334, + "nameAirport": "Vorkuta", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-9", + "airportId": 8330, + "codeIataAirport": "VKW", + "codeIataCity": "VKW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8260922", + "latitudeAirport": 69.76667, + "longitudeAirport": -146.91667, + "nameAirport": "West Kavik", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 8331, + "codeIataAirport": "VLA", + "codeIataCity": "VLA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.966667, + "longitudeAirport": -89.1, + "nameAirport": "Vandalia", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 8332, + "codeIataAirport": "VLC", + "codeIataCity": "VLC", + "codeIcaoAirport": "LEVC", + "codeIso2Country": "ES", + "geonameId": "6299357", + "latitudeAirport": 39.49179, + "longitudeAirport": -0.473475, + "nameAirport": "Valencia", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-5", + "airportId": 8333, + "codeIataAirport": "VLD", + "codeIataCity": "VLD", + "codeIcaoAirport": "KVLD", + "codeIso2Country": "US", + "geonameId": "4228158", + "latitudeAirport": 30.78389, + "longitudeAirport": -83.27722, + "nameAirport": "Valdosta Regional Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 8334, + "codeIataAirport": "VLE", + "codeIataCity": "VLE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5319342", + "latitudeAirport": 35.65, + "longitudeAirport": -112.183334, + "nameAirport": "J t Robidoux", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "-3", + "airportId": 8335, + "codeIataAirport": "VLG", + "codeIataCity": "VLG", + "codeIcaoAirport": "SAZV", + "codeIso2Country": "AR", + "geonameId": "6300592", + "latitudeAirport": -38.016666, + "longitudeAirport": -57.583332, + "nameAirport": "Villa Gesell", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "11", + "airportId": 8336, + "codeIataAirport": "VLI", + "codeIataCity": "VLI", + "codeIcaoAirport": "NVVV", + "codeIso2Country": "VU", + "geonameId": "6299972", + "latitudeAirport": -17.701853, + "longitudeAirport": 168.3195, + "nameAirport": "Bauerfield", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "3", + "airportId": 8337, + "codeIataAirport": "VLK", + "codeIataCity": "VLK", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "7730311", + "latitudeAirport": 47.683334, + "longitudeAirport": 42.083332, + "nameAirport": "Volgodonsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "airportId": 8338, + "codeIataAirport": "VLL", + "codeIataCity": "VLL", + "codeIcaoAirport": "LEVD", + "codeIso2Country": "ES", + "geonameId": "6299358", + "latitudeAirport": 41.70581, + "longitudeAirport": -4.844626, + "nameAirport": "Valladolid", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-4", + "airportId": 8339, + "codeIataAirport": "VLM", + "codeIataCity": "VLM", + "codeIcaoAirport": "SLVM", + "codeIso2Country": "BO", + "geonameId": "6300792", + "latitudeAirport": -21.25, + "longitudeAirport": -63.5, + "nameAirport": "Villamontes", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "-4", + "airportId": 8340, + "codeIataAirport": "VLN", + "codeIataCity": "VLN", + "codeIcaoAirport": "SVVA", + "codeIso2Country": "VE", + "geonameId": "3625050", + "latitudeAirport": 10.15429, + "longitudeAirport": -67.92248, + "nameAirport": "Arturo Michelena International Airport", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "-8", + "airportId": 8341, + "codeIataAirport": "VLO", + "codeIataCity": "VLO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5405380", + "latitudeAirport": 38.11667, + "longitudeAirport": -122.23333, + "nameAirport": "Stolport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "airportId": 8342, + "codeIataAirport": "VLP", + "codeIataCity": "VLP", + "codeIcaoAirport": "SWVC", + "codeIso2Country": "BR", + "geonameId": "7731604", + "latitudeAirport": -10.015556, + "longitudeAirport": -51.122223, + "nameAirport": "Vila Rica", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-4", + "airportId": 8343, + "codeIataAirport": "VLR", + "codeIataCity": "VLR", + "codeIcaoAirport": "SCLL", + "codeIso2Country": "CL", + "geonameId": "6300704", + "latitudeAirport": -28.591667, + "longitudeAirport": -70.761665, + "nameAirport": "Vallenar", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "11", + "airportId": 8344, + "codeIataAirport": "VLS", + "codeIataCity": "VLS", + "codeIcaoAirport": "NVSV", + "codeIso2Country": "VU", + "geonameId": "7730718", + "latitudeAirport": -16.8, + "longitudeAirport": 168.2, + "nameAirport": "Valesdir", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "3", + "airportId": 8345, + "codeIataAirport": "VLU", + "codeIataCity": "VLU", + "codeIcaoAirport": "ULOL", + "codeIso2Country": "RU", + "geonameId": "6300973", + "latitudeAirport": 56.38333, + "longitudeAirport": 30.616667, + "nameAirport": "Velikiye Luki", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-4", + "airportId": 8346, + "codeIataAirport": "VLV", + "codeIataCity": "VLV", + "codeIcaoAirport": "SVVL", + "codeIso2Country": "VE", + "geonameId": "6300879", + "latitudeAirport": 9.339167, + "longitudeAirport": -70.58583, + "nameAirport": "Carvajal", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "0", + "airportId": 8347, + "codeIataAirport": "VLY", + "codeIataCity": "VLY", + "codeIcaoAirport": "EGOV", + "codeIso2Country": "GB", + "geonameId": "6296618", + "latitudeAirport": 53.25036, + "longitudeAirport": -4.529017, + "nameAirport": "Valley", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-3", + "airportId": 8348, + "codeIataAirport": "VME", + "codeIataCity": "VME", + "codeIcaoAirport": "SAOR", + "codeIso2Country": "AR", + "geonameId": "6300544", + "latitudeAirport": -33.63333, + "longitudeAirport": -65.416664, + "nameAirport": "Villa Mercedes", + "nameCountry": "Argentina", + "phone": "", + "timezone": "America/Argentina/San_Luis" + }, + { + "GMT": "-4", + "airportId": 8349, + "codeIataAirport": "VMI", + "codeIataCity": "VMI", + "codeIcaoAirport": "", + "codeIso2Country": "PY", + "geonameId": "7731605", + "latitudeAirport": -22.25, + "longitudeAirport": -58.0, + "nameAirport": "INC", + "nameCountry": "Paraguay", + "phone": "", + "timezone": "America/Asuncion" + }, + { + "GMT": "10", + "airportId": 8350, + "codeIataAirport": "VMU", + "codeIataCity": "VMU", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7730310", + "latitudeAirport": -7.5, + "longitudeAirport": 144.8, + "nameAirport": "Baimuru", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "7", + "airportId": 8351, + "codeIataAirport": "VNA", + "codeIataCity": "VNA", + "codeIcaoAirport": "VLSV", + "codeIso2Country": "LA", + "geonameId": "6301110", + "latitudeAirport": 15.692778, + "longitudeAirport": 106.42611, + "nameAirport": "Saravane", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-5", + "airportId": 8352, + "codeIataAirport": "VNC", + "codeIataCity": "VNC", + "codeIcaoAirport": "KVNC", + "codeIso2Country": "US", + "geonameId": "4176392", + "latitudeAirport": 27.066668, + "longitudeAirport": -82.433334, + "nameAirport": "Venice Municipalcipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 8353, + "codeIataAirport": "VND", + "codeIataCity": "VND", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1054329", + "latitudeAirport": -23.35, + "longitudeAirport": 47.566666, + "nameAirport": "Vangaindrano", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "1", + "airportId": 8354, + "codeIataAirport": "VNE", + "codeIataCity": "VNE", + "codeIcaoAirport": "LFRV", + "codeIso2Country": "FR", + "geonameId": "6694659", + "latitudeAirport": 47.65, + "longitudeAirport": -2.766667, + "nameAirport": "Meucon", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "7", + "airportId": 8355, + "codeIataAirport": "VNG", + "codeIataCity": "VNG", + "codeIcaoAirport": "", + "codeIso2Country": "LA", + "geonameId": "7648323", + "latitudeAirport": 18.933332, + "longitudeAirport": 102.5, + "nameAirport": "Viengxay", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "2", + "airportId": 8356, + "codeIataAirport": "VNO", + "codeIataCity": "VNO", + "codeIcaoAirport": "EYVI", + "codeIso2Country": "LT", + "geonameId": "6296876", + "latitudeAirport": 54.643078, + "longitudeAirport": 25.279606, + "nameAirport": "Vilnius", + "nameCountry": "Lithuania", + "phone": "", + "timezone": "Europe/Vilnius" + }, + { + "GMT": "10", + "airportId": 8357, + "codeIataAirport": "VNR", + "codeIataCity": "VNR", + "codeIcaoAirport": "YVRS", + "codeIso2Country": "AU", + "geonameId": "7731606", + "latitudeAirport": -16.866667, + "longitudeAirport": 141.91667, + "nameAirport": "Vanrook", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5.30", + "airportId": 8358, + "codeIataAirport": "VNS", + "codeIataCity": "VNS", + "codeIcaoAirport": "VIBN", + "codeIso2Country": "IN", + "geonameId": "6301093", + "latitudeAirport": 25.449697, + "longitudeAirport": 82.85373, + "nameAirport": "Varanasi", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "2", + "airportId": 8359, + "codeIataAirport": "VNT", + "codeIataCity": "VNT", + "codeIcaoAirport": "EVVA", + "codeIso2Country": "LV", + "geonameId": "454310", + "latitudeAirport": 27.3, + "longitudeAirport": 87.2, + "nameAirport": "Ventspils", + "nameCountry": "Latvia", + "phone": "", + "timezone": "Europe/Riga" + }, + { + "GMT": "2", + "airportId": 8360, + "codeIataAirport": "VNX", + "codeIataCity": "VNX", + "codeIcaoAirport": "FQVL", + "codeIso2Country": "MZ", + "geonameId": "1099900", + "latitudeAirport": -22.016666, + "longitudeAirport": 35.283333, + "nameAirport": "Vilanculos", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-8", + "airportId": 8361, + "codeIataAirport": "VNY", + "codeIataCity": "LAX", + "codeIcaoAirport": "KVNY", + "codeIso2Country": "US", + "geonameId": "5405694", + "latitudeAirport": 34.2, + "longitudeAirport": -118.5, + "nameAirport": "Van Nuys", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 8362, + "codeIataAirport": "VNZ", + "codeIataCity": "VIC", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 45.5459053, + "longitudeAirport": 11.540307, + "nameAirport": "Vicenza Railway Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "airportId": 8363, + "codeIataAirport": "VOD", + "codeIataCity": "PRG", + "codeIcaoAirport": "", + "codeIso2Country": "CZ", + "geonameId": "0", + "latitudeAirport": 50.0878114, + "longitudeAirport": 14.4204598, + "nameAirport": "Vodochody", + "nameCountry": "Czech Republic", + "phone": "", + "timezone": "Europe/Prague" + }, + { + "GMT": "3", + "airportId": 8364, + "codeIataAirport": "VOG", + "codeIataCity": "VOG", + "codeIcaoAirport": "URWW", + "codeIso2Country": "RU", + "geonameId": "6300998", + "latitudeAirport": 48.792, + "longitudeAirport": 44.354805, + "nameAirport": "Volgograd", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Volgograd" + }, + { + "GMT": "3", + "airportId": 8365, + "codeIataAirport": "VOH", + "codeIataCity": "VOH", + "codeIcaoAirport": "FMNV", + "codeIso2Country": "MG", + "geonameId": "6297051", + "latitudeAirport": -13.366667, + "longitudeAirport": 50.0, + "nameAirport": "Vohemar", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "0", + "airportId": 8366, + "codeIataAirport": "VOI", + "codeIataCity": "VOI", + "codeIcaoAirport": "GLVA", + "codeIso2Country": "LR", + "geonameId": "7730580", + "latitudeAirport": 8.416667, + "longitudeAirport": -9.75, + "nameAirport": "Voinjama", + "nameCountry": "Liberia", + "phone": "", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-6", + "airportId": 8367, + "codeIataAirport": "VOK", + "codeIataCity": "VOK", + "codeIcaoAirport": "KVOK", + "codeIso2Country": "US", + "geonameId": "6299246", + "latitudeAirport": 43.933334, + "longitudeAirport": -90.28333, + "nameAirport": "Volk Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 8368, + "codeIataAirport": "VOL", + "codeIataCity": "VOL", + "codeIcaoAirport": "LGBL", + "codeIso2Country": "GR", + "geonameId": "6299485", + "latitudeAirport": 39.38333, + "longitudeAirport": 22.93111, + "nameAirport": "Nea Anchialos", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "-3", + "airportId": 8369, + "codeIataAirport": "VOT", + "codeIataCity": "VOT", + "codeIcaoAirport": "SDVG", + "codeIso2Country": "BR", + "geonameId": "7731607", + "latitudeAirport": -20.433332, + "longitudeAirport": -49.88333, + "nameAirport": "Votuporanga", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "3", + "airportId": 8370, + "codeIataAirport": "VOZ", + "codeIataCity": "VOZ", + "codeIcaoAirport": "UUOO", + "codeIso2Country": "RU", + "geonameId": "6301017", + "latitudeAirport": 51.812355, + "longitudeAirport": 39.226997, + "nameAirport": "Chertovitskoye", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "airportId": 8371, + "codeIataAirport": "VPE", + "codeIataCity": "VPE", + "codeIcaoAirport": "FNGI", + "codeIso2Country": "AO", + "geonameId": "7730078", + "latitudeAirport": -17.05, + "longitudeAirport": 15.7, + "nameAirport": "Ondjiva", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "3", + "airportId": 8372, + "codeIataAirport": "VPG", + "codeIataCity": "VPG", + "codeIcaoAirport": "", + "codeIso2Country": "KE", + "geonameId": "178543", + "latitudeAirport": -3.842778, + "longitudeAirport": 39.805, + "nameAirport": "Vipingo", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "0", + "airportId": 8373, + "codeIataAirport": "VPN", + "codeIataCity": "VPN", + "codeIcaoAirport": "BIVO", + "codeIso2Country": "IS", + "geonameId": "6295715", + "latitudeAirport": 65.75694, + "longitudeAirport": -14.829444, + "nameAirport": "Vopnafjordur", + "nameCountry": "Iceland", + "phone": "", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-6", + "airportId": 8374, + "codeIataAirport": "VPS", + "codeIataCity": "VPS", + "codeIcaoAirport": "KVPS", + "codeIso2Country": "US", + "geonameId": "4176316", + "latitudeAirport": 30.495913, + "longitudeAirport": -86.54946, + "nameAirport": "Eglin AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 8375, + "codeIataAirport": "VPY", + "codeIataCity": "VPY", + "codeIcaoAirport": "FQCH", + "codeIso2Country": "MZ", + "geonameId": "6297082", + "latitudeAirport": -19.133333, + "longitudeAirport": 33.483334, + "nameAirport": "Chimoio", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-6", + "airportId": 8376, + "codeIataAirport": "VPZ", + "codeIataCity": "VPZ", + "codeIcaoAirport": "KVPZ", + "codeIso2Country": "US", + "geonameId": "4927537", + "latitudeAirport": 41.4525, + "longitudeAirport": -87.00528, + "nameAirport": "Porter County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 8377, + "codeIataAirport": "VQQ", + "codeIataCity": "JAX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.333332, + "longitudeAirport": -81.65, + "nameAirport": "Cecil Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "airportId": 8378, + "codeIataAirport": "VQS", + "codeIataCity": "VQS", + "codeIcaoAirport": "", + "codeIso2Country": "PR", + "geonameId": "7315815", + "latitudeAirport": 18.134089, + "longitudeAirport": -65.48803, + "nameAirport": "Vieques", + "nameCountry": "Puerto Rico", + "phone": "", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "-5", + "airportId": 8379, + "codeIataAirport": "VRA", + "codeIataCity": "VRA", + "codeIcaoAirport": "MUVR", + "codeIso2Country": "CU", + "geonameId": "6299931", + "latitudeAirport": 23.039896, + "longitudeAirport": -81.43694, + "nameAirport": "Juan Gualberto Gomez", + "nameCountry": "Cuba", + "phone": "534-561-3016", + "timezone": "America/Havana" + }, + { + "GMT": "-5", + "airportId": 8380, + "codeIataAirport": "VRB", + "codeIataCity": "VRB", + "codeIcaoAirport": "KVRB", + "codeIso2Country": "US", + "geonameId": "4176414", + "latitudeAirport": 27.6525, + "longitudeAirport": -80.41361, + "nameAirport": "Vero Beach Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 8381, + "codeIataAirport": "VRC", + "codeIataCity": "VRC", + "codeIcaoAirport": "RPUV", + "codeIso2Country": "PH", + "geonameId": "1679803", + "latitudeAirport": 13.583333, + "longitudeAirport": 124.2, + "nameAirport": "Virac", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "2", + "airportId": 8382, + "codeIataAirport": "VRE", + "codeIataCity": "VRE", + "codeIcaoAirport": "FAVR", + "codeIso2Country": "ZA", + "geonameId": "6296938", + "latitudeAirport": -31.666668, + "longitudeAirport": 18.5, + "nameAirport": "Vredendal", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "3", + "airportId": 8383, + "codeIataAirport": "VRI", + "codeIataCity": "VRI", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "8224622", + "latitudeAirport": 68.84797, + "longitudeAirport": 58.1987, + "nameAirport": "Varandey", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "2", + "airportId": 8384, + "codeIataAirport": "VRK", + "codeIataCity": "VRK", + "codeIcaoAirport": "EFVR", + "codeIso2Country": "FI", + "geonameId": "6296568", + "latitudeAirport": 62.3, + "longitudeAirport": 27.933332, + "nameAirport": "Varkaus", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "0", + "airportId": 8385, + "codeIataAirport": "VRL", + "codeIataCity": "VRL", + "codeIcaoAirport": "LPVR", + "codeIso2Country": "PT", + "geonameId": "6299692", + "latitudeAirport": 41.3, + "longitudeAirport": -7.75, + "nameAirport": "Vila Real", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "1", + "airportId": 8386, + "codeIataAirport": "VRN", + "codeIataCity": "VRN", + "codeIcaoAirport": "LIPX", + "codeIso2Country": "IT", + "geonameId": "6299601", + "latitudeAirport": 45.40233, + "longitudeAirport": 10.906796, + "nameAirport": "Valerio Catullo", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "airportId": 8387, + "codeIataAirport": "VRO", + "codeIataCity": "VRO", + "codeIcaoAirport": "", + "codeIso2Country": "CU", + "geonameId": "3547398", + "latitudeAirport": 23.133333, + "longitudeAirport": -81.3, + "nameAirport": "Kawama", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "-6", + "airportId": 8388, + "codeIataAirport": "VRS", + "codeIataCity": "VRS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.433334, + "longitudeAirport": -92.85, + "nameAirport": "Versailles", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 8389, + "codeIataAirport": "VRU", + "codeIataCity": "VRU", + "codeIcaoAirport": "FAVB", + "codeIso2Country": "ZA", + "geonameId": "942513", + "latitudeAirport": -26.916668, + "longitudeAirport": 24.75, + "nameAirport": "Vryburg", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "1", + "airportId": 8390, + "codeIataAirport": "VRY", + "codeIataCity": "VRY", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 67.666664, + "longitudeAirport": 12.683333, + "nameAirport": "Stolport (Not operational)", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "airportId": 8391, + "codeIataAirport": "VSA", + "codeIataCity": "VSA", + "codeIcaoAirport": "MMVA", + "codeIso2Country": "MX", + "geonameId": "6299881", + "latitudeAirport": 17.99243, + "longitudeAirport": -92.818985, + "nameAirport": "Capitan Carlos Rovirosa", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "0", + "airportId": 8392, + "codeIataAirport": "VSE", + "codeIataCity": "VSE", + "codeIcaoAirport": "LPVZ", + "codeIso2Country": "PT", + "geonameId": "7730103", + "latitudeAirport": 40.65, + "longitudeAirport": -7.916667, + "nameAirport": "Viseu", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "-5", + "airportId": 8393, + "codeIataAirport": "VSF", + "codeIataCity": "VSF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5241423", + "latitudeAirport": 42.11667, + "longitudeAirport": -72.583336, + "nameAirport": "State", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 8394, + "codeIataAirport": "VSG", + "codeIataCity": "VSG", + "codeIcaoAirport": "UKCW", + "codeIso2Country": "UA", + "geonameId": "7668508", + "latitudeAirport": 48.566666, + "longitudeAirport": 39.333332, + "nameAirport": "Lugansk", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-8", + "airportId": 8395, + "codeIataAirport": "VSK", + "codeIataCity": "VSK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5799610", + "latitudeAirport": 46.21125, + "longitudeAirport": -119.13723, + "nameAirport": "Vista Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "7", + "airportId": 8396, + "codeIataAirport": "VSO", + "codeIataCity": "VSO", + "codeIcaoAirport": "", + "codeIso2Country": "VN", + "geonameId": "8299010", + "latitudeAirport": 9.433333, + "longitudeAirport": 105.46667, + "nameAirport": "Phuoclong", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "1", + "airportId": 8397, + "codeIataAirport": "VST", + "codeIataCity": "STO", + "codeIcaoAirport": "ESOW", + "codeIso2Country": "SE", + "geonameId": "2707371", + "latitudeAirport": 59.58917, + "longitudeAirport": 16.630556, + "nameAirport": "Vasteras/Hasslo", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-6", + "airportId": 8398, + "codeIataAirport": "VTA", + "codeIataCity": "VTA", + "codeIcaoAirport": "", + "codeIso2Country": "HN", + "geonameId": "0", + "latitudeAirport": 14.95, + "longitudeAirport": -87.4, + "nameAirport": "Victoria", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "3", + "airportId": 8399, + "codeIataAirport": "VTB", + "codeIataCity": "VTB", + "codeIcaoAirport": "UMII", + "codeIso2Country": "BY", + "geonameId": "6300978", + "latitudeAirport": 55.13333, + "longitudeAirport": 30.366667, + "nameAirport": "Vitebsk", + "nameCountry": "Belarus", + "phone": "", + "timezone": "Europe/Minsk" + }, + { + "GMT": "7", + "airportId": 8400, + "codeIataAirport": "VTE", + "codeIataCity": "VTE", + "codeIcaoAirport": "VLVT", + "codeIso2Country": "LA", + "geonameId": "6301112", + "latitudeAirport": 17.975431, + "longitudeAirport": 102.56772, + "nameAirport": "Wattay", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "12", + "airportId": 8401, + "codeIataAirport": "VTF", + "codeIataCity": "VTF", + "codeIcaoAirport": "NFVL", + "codeIso2Country": "FJ", + "geonameId": "6453430", + "latitudeAirport": -18.55, + "longitudeAirport": 177.61667, + "nameAirport": "Vatulele", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "7", + "airportId": 8402, + "codeIataAirport": "VTG", + "codeIataCity": "VTG", + "codeIcaoAirport": "VVVT", + "codeIso2Country": "VN", + "geonameId": "7731608", + "latitudeAirport": 10.374444, + "longitudeAirport": 107.09111, + "nameAirport": "Vung Tau", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "1", + "airportId": 8403, + "codeIataAirport": "VTL", + "codeIataCity": "VTL", + "codeIcaoAirport": "LFSZ", + "codeIso2Country": "FR", + "geonameId": "7730630", + "latitudeAirport": 48.2, + "longitudeAirport": 5.95, + "nameAirport": "Vittel", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "2", + "airportId": 8404, + "codeIataAirport": "VTM", + "codeIataCity": "VTM", + "codeIcaoAirport": "LLNV", + "codeIso2Country": "IL", + "geonameId": "8224623", + "latitudeAirport": 31.20473, + "longitudeAirport": 35.02047, + "nameAirport": "Nevatim AFB", + "nameCountry": "Israel", + "phone": "", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "-6", + "airportId": 8405, + "codeIataAirport": "VTN", + "codeIataCity": "VTN", + "codeIcaoAirport": "KVTN", + "codeIso2Country": "US", + "geonameId": "5700344", + "latitudeAirport": 42.86667, + "longitudeAirport": -100.55, + "nameAirport": "Miller Field", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 8406, + "codeIataAirport": "VTU", + "codeIataCity": "VTU", + "codeIcaoAirport": "MUVT", + "codeIso2Country": "CU", + "geonameId": "6299932", + "latitudeAirport": 20.966667, + "longitudeAirport": -76.95, + "nameAirport": "Las Tunas", + "nameCountry": "Cuba", + "phone": "", + "timezone": "America/Havana" + }, + { + "GMT": "5.30", + "airportId": 8407, + "codeIataAirport": "VTZ", + "codeIataCity": "VTZ", + "codeIcaoAirport": "VEVZ", + "codeIso2Country": "IN", + "geonameId": "7668597", + "latitudeAirport": 17.728151, + "longitudeAirport": 83.22675, + "nameAirport": "Vishakhapatnam", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "airportId": 8408, + "codeIataAirport": "VUP", + "codeIataCity": "VUP", + "codeIcaoAirport": "SKVP", + "codeIso2Country": "CO", + "geonameId": "6300762", + "latitudeAirport": 10.436667, + "longitudeAirport": -73.25278, + "nameAirport": "Valledupar", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "airportId": 8409, + "codeIataAirport": "VUS", + "codeIataCity": "VUS", + "codeIcaoAirport": "ULWU", + "codeIso2Country": "RU", + "geonameId": "7731609", + "latitudeAirport": 60.766666, + "longitudeAirport": 46.316666, + "nameAirport": "Velikij Ustyug", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "2", + "airportId": 8410, + "codeIataAirport": "VUU", + "codeIataCity": "VUU", + "codeIcaoAirport": "", + "codeIso2Country": "MW", + "geonameId": "0", + "latitudeAirport": -15.683333, + "longitudeAirport": 35.0, + "nameAirport": "Mvuu Camp", + "nameCountry": "Malawi", + "phone": "", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "3", + "airportId": 8411, + "codeIataAirport": "VVB", + "codeIataCity": "VVB", + "codeIcaoAirport": "FMMH", + "codeIso2Country": "MG", + "geonameId": "6297037", + "latitudeAirport": -19.833332, + "longitudeAirport": 48.8, + "nameAirport": "Mahanoro", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-5", + "airportId": 8412, + "codeIataAirport": "VVC", + "codeIataCity": "VVC", + "codeIcaoAirport": "SKVV", + "codeIso2Country": "CO", + "geonameId": "6300763", + "latitudeAirport": 4.078889, + "longitudeAirport": -73.566666, + "nameAirport": "La Vanguardia", + "nameCountry": "Colombia", + "phone": "", + "timezone": "America/Bogota" + }, + { + "GMT": "-4", + "airportId": 8413, + "codeIataAirport": "VVI", + "codeIataCity": "SRZ", + "codeIcaoAirport": "SLVR", + "codeIso2Country": "BO", + "geonameId": "6300793", + "latitudeAirport": -17.648233, + "longitudeAirport": -63.140488, + "nameAirport": "Viru Viru International", + "nameCountry": "Bolivia", + "phone": "", + "timezone": "America/La_Paz" + }, + { + "GMT": "1", + "airportId": 8414, + "codeIataAirport": "VVK", + "codeIataCity": "VVK", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 57.75, + "longitudeAirport": 16.633333, + "nameAirport": "Vastervik", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "airportId": 8415, + "codeIataAirport": "VVN", + "codeIataCity": "VVN", + "codeIcaoAirport": "", + "codeIso2Country": "PE", + "geonameId": "8260857", + "latitudeAirport": -11.8547, + "longitudeAirport": -72.9397, + "nameAirport": "Malvinas", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "10", + "airportId": 8416, + "codeIataAirport": "VVO", + "codeIataCity": "VVO", + "codeIcaoAirport": "UHWW", + "codeIso2Country": "RU", + "geonameId": "6300942", + "latitudeAirport": 43.378574, + "longitudeAirport": 132.14075, + "nameAirport": "Vladivostok", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Vladivostok" + }, + { + "GMT": "1", + "airportId": 8417, + "codeIataAirport": "VVZ", + "codeIataCity": "VVZ", + "codeIcaoAirport": "DAAP", + "codeIso2Country": "DZ", + "geonameId": "6296365", + "latitudeAirport": 26.533333, + "longitudeAirport": 8.55, + "nameAirport": "Illizi", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Algiers" + }, + { + "GMT": "2", + "airportId": 8418, + "codeIataAirport": "VXC", + "codeIataCity": "VXC", + "codeIcaoAirport": "FQLC", + "codeIso2Country": "MZ", + "geonameId": "1087469", + "latitudeAirport": -13.283333, + "longitudeAirport": 35.25, + "nameAirport": "Lichinga", + "nameCountry": "Mozambique", + "phone": "", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-1", + "airportId": 8419, + "codeIataAirport": "VXE", + "codeIataCity": "VXE", + "codeIcaoAirport": "GVSV", + "codeIso2Country": "CV", + "geonameId": "6453416", + "latitudeAirport": 16.835613, + "longitudeAirport": -25.057571, + "nameAirport": "San Pedro", + "nameCountry": "Cape Verde", + "phone": "", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "1", + "airportId": 8420, + "codeIataAirport": "VXO", + "codeIataCity": "VXO", + "codeIcaoAirport": "ESMX", + "codeIso2Country": "SE", + "geonameId": "2663534", + "latitudeAirport": 56.925095, + "longitudeAirport": 14.732046, + "nameAirport": "Smaland Airport", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "2", + "airportId": 8421, + "codeIataAirport": "VYD", + "codeIataCity": "VYD", + "codeIcaoAirport": "FAVY", + "codeIso2Country": "ZA", + "geonameId": "942497", + "latitudeAirport": -27.783333, + "longitudeAirport": 30.8, + "nameAirport": "Vryheid", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-6", + "airportId": 8422, + "codeIataAirport": "VYS", + "codeIataCity": "VYS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.333332, + "longitudeAirport": -89.13333, + "nameAirport": "Illinois Valley Regnl", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 8423, + "codeIataAirport": "WAA", + "codeIataCity": "WAA", + "codeIcaoAirport": "PAIW", + "codeIso2Country": "US", + "geonameId": "5877564", + "latitudeAirport": 65.617226, + "longitudeAirport": -168.09084, + "nameAirport": "Wales", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "airportId": 8424, + "codeIataAirport": "WAC", + "codeIataCity": "WAC", + "codeIcaoAirport": "HAWC", + "codeIso2Country": "ET", + "geonameId": "7730596", + "latitudeAirport": 7.166667, + "longitudeAirport": 37.166668, + "nameAirport": "Waca", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "3", + "airportId": 8425, + "codeIataAirport": "WAD", + "codeIataCity": "WAD", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "0", + "latitudeAirport": -17.45, + "longitudeAirport": 47.516666, + "nameAirport": "Andriamena", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "3", + "airportId": 8426, + "codeIataAirport": "WAE", + "codeIataCity": "WAE", + "codeIcaoAirport": "OEWD", + "codeIso2Country": "SA", + "geonameId": "0", + "latitudeAirport": 20.498444, + "longitudeAirport": 45.20445, + "nameAirport": "Wadi Ad Dawasir", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "5", + "airportId": 8427, + "codeIataAirport": "WAF", + "codeIataCity": "WAF", + "codeIcaoAirport": "", + "codeIso2Country": "PK", + "geonameId": "0", + "latitudeAirport": 32.333332, + "longitudeAirport": 69.53333, + "nameAirport": "Wana", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "12", + "airportId": 8428, + "codeIataAirport": "WAG", + "codeIataCity": "WAG", + "codeIcaoAirport": "NZWU", + "codeIso2Country": "NZ", + "geonameId": "6224567", + "latitudeAirport": -39.960922, + "longitudeAirport": 175.02444, + "nameAirport": "Wanganui", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-6", + "airportId": 8429, + "codeIataAirport": "WAH", + "codeIataCity": "WAH", + "codeIcaoAirport": "KBWP", + "codeIso2Country": "US", + "geonameId": "5058404", + "latitudeAirport": 46.266666, + "longitudeAirport": -96.6, + "nameAirport": "Wahpeton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 8430, + "codeIataAirport": "WAI", + "codeIataCity": "WAI", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "0", + "latitudeAirport": -14.916667, + "longitudeAirport": 47.95, + "nameAirport": "Antsohihy", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "10", + "airportId": 8431, + "codeIataAirport": "WAJ", + "codeIataCity": "WAJ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298763", + "latitudeAirport": -7.8, + "longitudeAirport": 143.26666, + "nameAirport": "Wawoi Falls", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 8432, + "codeIataAirport": "WAK", + "codeIataCity": "WAK", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1072879", + "latitudeAirport": -22.3, + "longitudeAirport": 44.533333, + "nameAirport": "Ankazoabo", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-5", + "airportId": 8433, + "codeIataAirport": "WAL", + "codeIataCity": "WAL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4752495", + "latitudeAirport": 37.933334, + "longitudeAirport": -75.38333, + "nameAirport": "Wallops Flight Center", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 8434, + "codeIataAirport": "WAM", + "codeIataCity": "WAM", + "codeIcaoAirport": "FMMZ", + "codeIso2Country": "MG", + "geonameId": "7730511", + "latitudeAirport": -17.8, + "longitudeAirport": 48.433334, + "nameAirport": "Ambatondrazaka", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "10", + "airportId": 8435, + "codeIataAirport": "WAN", + "codeIataCity": "WAN", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298988", + "latitudeAirport": -25.366667, + "longitudeAirport": 141.93333, + "nameAirport": "Waverney", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 8436, + "codeIataAirport": "WAO", + "codeIataCity": "WAO", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299077", + "latitudeAirport": -7.495086, + "longitudeAirport": 144.8243, + "nameAirport": "Wabo", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "airportId": 8437, + "codeIataAirport": "WAP", + "codeIataCity": "WAP", + "codeIcaoAirport": "SCAP", + "codeIso2Country": "CL", + "geonameId": "7730785", + "latitudeAirport": -43.61667, + "longitudeAirport": -71.8, + "nameAirport": "Alto Palena", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "3", + "airportId": 8438, + "codeIataAirport": "WAQ", + "codeIataCity": "WAQ", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1069579", + "latitudeAirport": -18.7, + "longitudeAirport": 44.61667, + "nameAirport": "Antsalova", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "9", + "airportId": 8439, + "codeIataAirport": "WAR", + "codeIataCity": "WAR", + "codeIcaoAirport": "WAJR", + "codeIso2Country": "ID", + "geonameId": "7731610", + "latitudeAirport": -3.116667, + "longitudeAirport": 140.88333, + "nameAirport": "Waris", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "0", + "airportId": 8440, + "codeIataAirport": "WAT", + "codeIataCity": "WAT", + "codeIcaoAirport": "EIWF", + "codeIso2Country": "IE", + "geonameId": "7668222", + "latitudeAirport": 52.188866, + "longitudeAirport": -7.080082, + "nameAirport": "Waterford", + "nameCountry": "Ireland", + "phone": "", + "timezone": "Europe/Dublin" + }, + { + "GMT": "9.30", + "airportId": 8441, + "codeIataAirport": "WAU", + "codeIataCity": "WAU", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2144332", + "latitudeAirport": -31.466667, + "longitudeAirport": 152.75, + "nameAirport": "Wauchope", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "9.30", + "airportId": 8442, + "codeIataAirport": "WAV", + "codeIataCity": "WAV", + "codeIcaoAirport": "YWAV", + "codeIso2Country": "AU", + "geonameId": "7731611", + "latitudeAirport": -17.483334, + "longitudeAirport": 130.95, + "nameAirport": "Kalkgurung", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "1", + "airportId": 8443, + "codeIataAirport": "WAW", + "codeIataCity": "WAW", + "codeIcaoAirport": "EPWA", + "codeIso2Country": "PL", + "geonameId": "6296786", + "latitudeAirport": 52.170906, + "longitudeAirport": 20.97329, + "nameAirport": "Frederic Chopin", + "nameCountry": "Poland", + "phone": "+48 22 650 42", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "2", + "airportId": 8444, + "codeIataAirport": "WAX", + "codeIataCity": "WAX", + "codeIcaoAirport": "HLZW", + "codeIso2Country": "LY", + "geonameId": "7730620", + "latitudeAirport": 51.216667, + "longitudeAirport": -55.38333, + "nameAirport": "Zwara", + "nameCountry": "Libya", + "phone": "", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "-5", + "airportId": 8445, + "codeIataAirport": "WAY", + "codeIataCity": "WAY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.75, + "longitudeAirport": -77.583336, + "nameAirport": "Greene County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 8446, + "codeIataAirport": "WAZ", + "codeIataCity": "WAZ", + "codeIcaoAirport": "YWCK", + "codeIso2Country": "AU", + "geonameId": "7731612", + "latitudeAirport": -28.15, + "longitudeAirport": 151.95, + "nameAirport": "Warwick", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "9", + "airportId": 8447, + "codeIataAirport": "WBA", + "codeIataCity": "WBA", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "8261028", + "latitudeAirport": -2.816667, + "longitudeAirport": 129.48334, + "nameAirport": "Wahai", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-9", + "airportId": 8448, + "codeIataAirport": "WBB", + "codeIataCity": "WBB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5875127", + "latitudeAirport": 63.51936, + "longitudeAirport": -162.28873, + "nameAirport": "Stebbins", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 8449, + "codeIataAirport": "WBC", + "codeIataCity": "WBC", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8261021", + "latitudeAirport": -9.316667, + "longitudeAirport": 150.35, + "nameAirport": "Wapolu", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "airportId": 8450, + "codeIataAirport": "WBD", + "codeIataCity": "WBD", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "0", + "latitudeAirport": -15.2, + "longitudeAirport": 48.483334, + "nameAirport": "Befandriana", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "3", + "airportId": 8451, + "codeIataAirport": "WBE", + "codeIataCity": "WBE", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1068670", + "latitudeAirport": -14.533333, + "longitudeAirport": 48.7, + "nameAirport": "Bealanana", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "1", + "airportId": 8452, + "codeIataAirport": "WBG", + "codeIataCity": "WBG", + "codeIcaoAirport": "ETNS", + "codeIso2Country": "DE", + "geonameId": "3208584", + "latitudeAirport": 54.45, + "longitudeAirport": 9.516667, + "nameAirport": "Schleswig-jagel", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-7", + "airportId": 8453, + "codeIataAirport": "WBI", + "codeIataCity": "WBU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.016666, + "longitudeAirport": -105.28333, + "nameAirport": "Broker Inn", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 8454, + "codeIataAirport": "WBK", + "codeIataCity": "WBK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5014430", + "latitudeAirport": 44.2466, + "longitudeAirport": -84.18684, + "nameAirport": "Community", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "10", + "airportId": 8455, + "codeIataAirport": "WBM", + "codeIataCity": "WBM", + "codeIcaoAirport": "AYWD", + "codeIso2Country": "PG", + "geonameId": "7668089", + "latitudeAirport": -5.616667, + "longitudeAirport": 143.91667, + "nameAirport": "Wapenamanda", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 8456, + "codeIataAirport": "WBN", + "codeIataCity": "WBN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.466667, + "longitudeAirport": -71.15, + "nameAirport": "Cummings Park", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "airportId": 8457, + "codeIataAirport": "WBO", + "codeIataCity": "WBO", + "codeIcaoAirport": "FMSB", + "codeIso2Country": "MG", + "geonameId": "7730512", + "latitudeAirport": -21.6, + "longitudeAirport": 45.13333, + "nameAirport": "Beroroha", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-9", + "airportId": 8458, + "codeIataAirport": "WBQ", + "codeIataCity": "WBQ", + "codeIcaoAirport": "PAWB", + "codeIso2Country": "US", + "geonameId": "5880226", + "latitudeAirport": 66.36222, + "longitudeAirport": -147.40834, + "nameAirport": "Beaver", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 8459, + "codeIataAirport": "WBR", + "codeIataCity": "WBR", + "codeIcaoAirport": "KRQB", + "codeIso2Country": "US", + "geonameId": "5007362", + "latitudeAirport": 43.7, + "longitudeAirport": -85.48333, + "nameAirport": "Big Rapids", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-7", + "airportId": 8460, + "codeIataAirport": "WBU", + "codeIataCity": "WBU", + "codeIcaoAirport": "KBDU", + "codeIso2Country": "US", + "geonameId": "5575026", + "latitudeAirport": 40.039165, + "longitudeAirport": -105.225555, + "nameAirport": "Boulder Municipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 8461, + "codeIataAirport": "WBW", + "codeIataCity": "AVP", + "codeIcaoAirport": "KWBW", + "codeIso2Country": "US", + "geonameId": "5219493", + "latitudeAirport": 41.233334, + "longitudeAirport": -75.88333, + "nameAirport": "Wilkes-Barre/Wyoming Valley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "airportId": 8462, + "codeIataAirport": "WCA", + "codeIataCity": "WCA", + "codeIcaoAirport": "SCST", + "codeIso2Country": "CL", + "geonameId": "7731613", + "latitudeAirport": -42.5, + "longitudeAirport": -73.833336, + "nameAirport": "Gamboa", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-4", + "airportId": 8463, + "codeIataAirport": "WCH", + "codeIataCity": "WCH", + "codeIcaoAirport": "SCTN", + "codeIso2Country": "CL", + "geonameId": "7730169", + "latitudeAirport": -42.916668, + "longitudeAirport": -72.71667, + "nameAirport": "Chaiten", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-9", + "airportId": 8464, + "codeIataAirport": "WCR", + "codeIataCity": "WCR", + "codeIcaoAirport": "PALR", + "codeIso2Country": "US", + "geonameId": "5858964", + "latitudeAirport": 67.505554, + "longitudeAirport": -148.5, + "nameAirport": "Chandalar", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "airportId": 8465, + "codeIataAirport": "WDA", + "codeIataCity": "WDA", + "codeIcaoAirport": "", + "codeIso2Country": "YE", + "geonameId": "7731614", + "latitudeAirport": 14.866667, + "longitudeAirport": 45.55, + "nameAirport": "Wadi Ain", + "nameCountry": "Yemen", + "phone": "", + "timezone": "Asia/Aden" + }, + { + "GMT": "-9", + "airportId": 8466, + "codeIataAirport": "WDB", + "codeIataCity": "WDB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 55.583332, + "longitudeAirport": -131.75, + "nameAirport": "Deep Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "-6", + "airportId": 8467, + "codeIataAirport": "WDG", + "codeIataCity": "WDG", + "codeIcaoAirport": "KWDG", + "codeIso2Country": "US", + "geonameId": "4535969", + "latitudeAirport": 36.38361, + "longitudeAirport": -97.79083, + "nameAirport": "Enid Woodring Mun.", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "airportId": 8468, + "codeIataAirport": "WDH", + "codeIataCity": "WDH", + "codeIcaoAirport": "FYWH", + "codeIso2Country": "NA", + "geonameId": "3356556", + "latitudeAirport": -22.487345, + "longitudeAirport": 17.463202, + "nameAirport": "Hosea Kutako International (J. G. Strijdom)", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "10", + "airportId": 8469, + "codeIataAirport": "WDI", + "codeIataCity": "WDI", + "codeIcaoAirport": "YWND", + "codeIso2Country": "AU", + "geonameId": "7731615", + "latitudeAirport": -26.333332, + "longitudeAirport": 151.81667, + "nameAirport": "Wondai", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-8", + "airportId": 8470, + "codeIataAirport": "WDN", + "codeIataCity": "WDN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 48.716667, + "longitudeAirport": -123.03333, + "nameAirport": "Waldron Island", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "airportId": 8471, + "codeIataAirport": "WDR", + "codeIataCity": "WDR", + "codeIcaoAirport": "KWDR", + "codeIso2Country": "US", + "geonameId": "4231445", + "latitudeAirport": 33.983334, + "longitudeAirport": -83.71667, + "nameAirport": "Winder", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 8472, + "codeIataAirport": "WDY", + "codeIataCity": "ADQ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 57.783333, + "longitudeAirport": -152.4, + "nameAirport": "Kodiak Fss", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 8473, + "codeIataAirport": "WEA", + "codeIataCity": "WEA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.766666, + "longitudeAirport": -97.8, + "nameAirport": "Parker County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 8474, + "codeIataAirport": "WEC", + "codeIataCity": "WEC", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 49.2, + "longitudeAirport": 9.925, + "nameAirport": "Wenchang Railway Station", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "airportId": 8475, + "codeIataAirport": "WED", + "codeIataCity": "WED", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298944", + "latitudeAirport": -10.1, + "longitudeAirport": 150.08333, + "nameAirport": "Wedau", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 8476, + "codeIataAirport": "WEF", + "codeIataCity": "WEF", + "codeIcaoAirport": "ZSWF", + "codeIso2Country": "CN", + "geonameId": "7730297", + "latitudeAirport": 36.641075, + "longitudeAirport": 119.11347, + "nameAirport": "Weifang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 8477, + "codeIataAirport": "WEH", + "codeIataCity": "WEH", + "codeIcaoAirport": "ZSWH", + "codeIso2Country": "CN", + "geonameId": "7730298", + "latitudeAirport": 37.18814, + "longitudeAirport": 122.23607, + "nameAirport": "Weihai", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "airportId": 8478, + "codeIataAirport": "WEI", + "codeIataCity": "WEI", + "codeIcaoAirport": "YBWP", + "codeIso2Country": "AU", + "geonameId": "6301305", + "latitudeAirport": -12.681317, + "longitudeAirport": 141.9247, + "nameAirport": "Weipa", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "airportId": 8479, + "codeIataAirport": "WEL", + "codeIataCity": "WEL", + "codeIcaoAirport": "FAWM", + "codeIso2Country": "ZA", + "geonameId": "968479", + "latitudeAirport": -28.0, + "longitudeAirport": 26.75, + "nameAirport": "Welkom", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "10", + "airportId": 8480, + "codeIataAirport": "WEP", + "codeIataCity": "WEP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2083621", + "latitudeAirport": -10.066667, + "longitudeAirport": 148.16667, + "nameAirport": "Weam", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "airportId": 8481, + "codeIataAirport": "WET", + "codeIataCity": "WET", + "codeIcaoAirport": "WABG", + "codeIso2Country": "ID", + "geonameId": "7731616", + "latitudeAirport": -4.166667, + "longitudeAirport": 135.83333, + "nameAirport": "Wagethe", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "10", + "airportId": 8482, + "codeIataAirport": "WEW", + "codeIataCity": "WEW", + "codeIcaoAirport": "YWWA", + "codeIso2Country": "AU", + "geonameId": "6457347", + "latitudeAirport": -30.233334, + "longitudeAirport": 149.43333, + "nameAirport": "Wee Waa", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-9", + "airportId": 8483, + "codeIataAirport": "WFB", + "codeIataCity": "KTN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5554436", + "latitudeAirport": 55.358055, + "longitudeAirport": -131.66833, + "nameAirport": "Waterfront SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "0", + "airportId": 8484, + "codeIataAirport": "WFD", + "codeIataCity": "WFD", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 53.338055, + "longitudeAirport": -2.148889, + "nameAirport": "Woodford", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "3", + "airportId": 8485, + "codeIataAirport": "WFI", + "codeIataCity": "WFI", + "codeIcaoAirport": "FMSF", + "codeIso2Country": "MG", + "geonameId": "1064891", + "latitudeAirport": -21.466667, + "longitudeAirport": 47.083332, + "nameAirport": "Fianarantsoa", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-5", + "airportId": 8486, + "codeIataAirport": "WFK", + "codeIataCity": "WFK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 47.35, + "longitudeAirport": -68.333336, + "nameAirport": "Frenchville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 8487, + "codeIataAirport": "WGA", + "codeIataCity": "WGA", + "codeIcaoAirport": "YSWG", + "codeIso2Country": "AU", + "geonameId": "6301352", + "latitudeAirport": -35.15992, + "longitudeAirport": 147.46626, + "nameAirport": "Forest Hill", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "5", + "airportId": 8488, + "codeIataAirport": "WGB", + "codeIataCity": "WGB", + "codeIcaoAirport": "", + "codeIso2Country": "PK", + "geonameId": "0", + "latitudeAirport": 30.0, + "longitudeAirport": 73.25, + "nameAirport": "Bahawalnagar", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "5.30", + "airportId": 8489, + "codeIataAirport": "WGC", + "codeIataCity": "WGC", + "codeIcaoAirport": "VOWA", + "codeIso2Country": "IN", + "geonameId": "7668638", + "latitudeAirport": 17.916668, + "longitudeAirport": 79.6, + "nameAirport": "Warangal", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "airportId": 8490, + "codeIataAirport": "WGE", + "codeIataCity": "WGE", + "codeIcaoAirport": "YWLG", + "codeIso2Country": "AU", + "geonameId": "7668784", + "latitudeAirport": -30.033333, + "longitudeAirport": 148.13333, + "nameAirport": "Walgett", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "12", + "airportId": 8491, + "codeIataAirport": "WGN", + "codeIataCity": "WGN", + "codeIcaoAirport": "", + "codeIso2Country": "NZ", + "geonameId": "0", + "latitudeAirport": -36.266945, + "longitudeAirport": 174.1, + "nameAirport": "Waitangi", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-5", + "airportId": 8492, + "codeIataAirport": "WGO", + "codeIataCity": "WGO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "4794129", + "latitudeAirport": 39.14111, + "longitudeAirport": -78.14278, + "nameAirport": "Winchester Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 8493, + "codeIataAirport": "WGP", + "codeIataCity": "WGP", + "codeIcaoAirport": "WRRW", + "codeIso2Country": "ID", + "geonameId": "6301283", + "latitudeAirport": -9.666667, + "longitudeAirport": 120.3, + "nameAirport": "Waingapu", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Makassar" + }, + { + "GMT": "10", + "airportId": 8494, + "codeIataAirport": "WGT", + "codeIataCity": "WGT", + "codeIcaoAirport": "YWGT", + "codeIso2Country": "AU", + "geonameId": "7668783", + "latitudeAirport": -36.36667, + "longitudeAirport": 146.33333, + "nameAirport": "Wangaratta", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-9", + "airportId": 8495, + "codeIataAirport": "WHD", + "codeIataCity": "WHD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5553656", + "latitudeAirport": 55.916668, + "longitudeAirport": -130.08333, + "nameAirport": "SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "3", + "airportId": 8496, + "codeIataAirport": "WHF", + "codeIataCity": "WHF", + "codeIcaoAirport": "HSSW", + "codeIso2Country": "SD", + "geonameId": "8298776", + "latitudeAirport": 21.75, + "longitudeAirport": 31.5, + "nameAirport": "Wadi Halfa", + "nameCountry": "Sudan", + "phone": "", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "-7", + "airportId": 8497, + "codeIataAirport": "WHH", + "codeIataCity": "WBU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.030556, + "longitudeAirport": -105.23472, + "nameAirport": "Hiltons Har H", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "12", + "airportId": 8498, + "codeIataAirport": "WHK", + "codeIataCity": "WHK", + "codeIcaoAirport": "NZWK", + "codeIso2Country": "NZ", + "geonameId": "6237258", + "latitudeAirport": -37.924675, + "longitudeAirport": 176.91748, + "nameAirport": "Whakatane", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "10", + "airportId": 8499, + "codeIataAirport": "WHL", + "codeIataCity": "WHL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2144143", + "latitudeAirport": -38.68889, + "longitudeAirport": 146.45, + "nameAirport": "Welshpool", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "12", + "airportId": 8500, + "codeIataAirport": "WHO", + "codeIataCity": "WHO", + "codeIcaoAirport": "NZFJ", + "codeIso2Country": "NZ", + "geonameId": "7730728", + "latitudeAirport": -43.38333, + "longitudeAirport": 170.18333, + "nameAirport": "Franz Josef", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-8", + "airportId": 8501, + "codeIataAirport": "WHP", + "codeIataCity": "LAX", + "codeIcaoAirport": "KWHP", + "codeIso2Country": "US", + "geonameId": "5408955", + "latitudeAirport": 34.05, + "longitudeAirport": -118.25, + "nameAirport": "Whiteman", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "0", + "airportId": 8502, + "codeIataAirport": "WHS", + "codeIataCity": "WHS", + "codeIcaoAirport": "EGEH", + "codeIso2Country": "GB", + "geonameId": "7670769", + "latitudeAirport": 60.36667, + "longitudeAirport": -0.983333, + "nameAirport": "Whalsay", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 8503, + "codeIataAirport": "WHT", + "codeIataCity": "WHT", + "codeIcaoAirport": "K5R5", + "codeIso2Country": "US", + "geonameId": "6297596", + "latitudeAirport": 29.316668, + "longitudeAirport": -96.1, + "nameAirport": "Wharton", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 8504, + "codeIataAirport": "WHU", + "codeIataCity": "WHU", + "codeIcaoAirport": "ZSWU", + "codeIso2Country": "CN", + "geonameId": "7731617", + "latitudeAirport": 31.366667, + "longitudeAirport": 118.36667, + "nameAirport": "Wuhu", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 8505, + "codeIataAirport": "WIB", + "codeIataCity": "WIB", + "codeIcaoAirport": "KF05", + "codeIso2Country": "US", + "geonameId": "4741798", + "latitudeAirport": 34.225417, + "longitudeAirport": -99.283564, + "nameAirport": "Wilbarger County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "airportId": 8506, + "codeIataAirport": "WIC", + "codeIataCity": "WIC", + "codeIcaoAirport": "EGPC", + "codeIso2Country": "GB", + "geonameId": "6296623", + "latitudeAirport": 58.456944, + "longitudeAirport": -3.086667, + "nameAirport": "Wick", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 8507, + "codeIataAirport": "WIE", + "codeIataCity": "WIE", + "codeIcaoAirport": "ETOU", + "codeIso2Country": "DE", + "geonameId": "6296864", + "latitudeAirport": 50.083332, + "longitudeAirport": 8.233333, + "nameAirport": "Air Base", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "12", + "airportId": 8508, + "codeIataAirport": "WIK", + "codeIataCity": "WIK", + "codeIcaoAirport": "NZKE", + "codeIso2Country": "NZ", + "geonameId": "7730729", + "latitudeAirport": -36.833332, + "longitudeAirport": 175.08333, + "nameAirport": "Surfdale", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "3", + "airportId": 8509, + "codeIataAirport": "WIL", + "codeIataCity": "NBO", + "codeIcaoAirport": "HKNW", + "codeIso2Country": "KE", + "geonameId": "6301554", + "latitudeAirport": -1.318018, + "longitudeAirport": 36.813248, + "nameAirport": "Wilson", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "10", + "airportId": 8510, + "codeIataAirport": "WIN", + "codeIataCity": "WIN", + "codeIcaoAirport": "YWTN", + "codeIso2Country": "AU", + "geonameId": "7730281", + "latitudeAirport": -22.35, + "longitudeAirport": 143.06667, + "nameAirport": "Winton", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "airportId": 8511, + "codeIataAirport": "WIO", + "codeIataCity": "WIO", + "codeIcaoAirport": "YWCA", + "codeIso2Country": "AU", + "geonameId": "7731618", + "latitudeAirport": -31.083332, + "longitudeAirport": 143.55, + "nameAirport": "Wilcannia", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "12", + "airportId": 8512, + "codeIataAirport": "WIR", + "codeIataCity": "WIR", + "codeIcaoAirport": "", + "codeIso2Country": "NZ", + "geonameId": "6251482", + "latitudeAirport": -39.033333, + "longitudeAirport": 177.41667, + "nameAirport": "Wairoa", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "8", + "airportId": 8513, + "codeIataAirport": "WIT", + "codeIataCity": "WIT", + "codeIcaoAirport": "YWIT", + "codeIso2Country": "AU", + "geonameId": "7731619", + "latitudeAirport": -22.266666, + "longitudeAirport": 118.333336, + "nameAirport": "Wittenoom", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "10", + "airportId": 8514, + "codeIataAirport": "WIU", + "codeIataCity": "WIU", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298773", + "latitudeAirport": -4.666667, + "longitudeAirport": 149.5, + "nameAirport": "Witu", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "12", + "airportId": 8515, + "codeIataAirport": "WJA", + "codeIataCity": "WJA", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "2080486", + "latitudeAirport": 7.453653, + "longitudeAirport": 168.55296, + "nameAirport": "Woja", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-8", + "airportId": 8516, + "codeIataAirport": "WJF", + "codeIataCity": "WJF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.7, + "longitudeAirport": -118.13333, + "nameAirport": "William J Fox", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "airportId": 8517, + "codeIataAirport": "WJR", + "codeIataCity": "WJR", + "codeIcaoAirport": "HKWJ", + "codeIso2Country": "KE", + "geonameId": "6297327", + "latitudeAirport": 1.766667, + "longitudeAirport": 40.6, + "nameAirport": "Wajir", + "nameCountry": "Kenya", + "phone": "", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "9", + "airportId": 8518, + "codeIataAirport": "WJU", + "codeIataCity": "WJU", + "codeIcaoAirport": "RKNW", + "codeIso2Country": "KR", + "geonameId": "6301832", + "latitudeAirport": 37.434166, + "longitudeAirport": 127.95167, + "nameAirport": "WonJu", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "12", + "airportId": 8519, + "codeIataAirport": "WKA", + "codeIataCity": "WKA", + "codeIcaoAirport": "NZWF", + "codeIso2Country": "NZ", + "geonameId": "6249755", + "latitudeAirport": -44.72336, + "longitudeAirport": 169.24425, + "nameAirport": "Wanaka", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "10", + "airportId": 8520, + "codeIataAirport": "WKB", + "codeIataCity": "WKB", + "codeIcaoAirport": "YWKB", + "codeIso2Country": "AU", + "geonameId": "7730279", + "latitudeAirport": -36.15, + "longitudeAirport": 142.43333, + "nameAirport": "Warracknabeal", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "2", + "airportId": 8521, + "codeIataAirport": "WKF", + "codeIataCity": "PRY", + "codeIcaoAirport": "", + "codeIso2Country": "ZA", + "geonameId": "0", + "latitudeAirport": -30.316668, + "longitudeAirport": 25.3, + "nameAirport": "Waterkloof AFB", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "2", + "airportId": 8522, + "codeIataAirport": "WKI", + "codeIataCity": "WKI", + "codeIcaoAirport": "FVWT", + "codeIso2Country": "ZW", + "geonameId": "7730531", + "latitudeAirport": -18.3625, + "longitudeAirport": 26.518333, + "nameAirport": "Hwange", + "nameCountry": "Zimbabwe", + "phone": "", + "timezone": "Africa/Harare" + }, + { + "GMT": "9", + "airportId": 8523, + "codeIataAirport": "WKJ", + "codeIataCity": "WKJ", + "codeIcaoAirport": "RJCW", + "codeIso2Country": "JP", + "geonameId": "6300331", + "latitudeAirport": 45.39943, + "longitudeAirport": 141.7974, + "nameAirport": "Hokkaido", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-9", + "airportId": 8524, + "codeIataAirport": "WKK", + "codeIataCity": "WKK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5879134", + "latitudeAirport": 59.27778, + "longitudeAirport": -158.61111, + "nameAirport": "Aleknagik", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-10", + "airportId": 8525, + "codeIataAirport": "WKL", + "codeIataCity": "WKL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5854410", + "latitudeAirport": 19.85, + "longitudeAirport": -156.33333, + "nameAirport": "Waikoloa Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "10", + "airportId": 8526, + "codeIataAirport": "WKN", + "codeIataCity": "WKN", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2084041", + "latitudeAirport": -5.866667, + "longitudeAirport": 155.21666, + "nameAirport": "Wakunai", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 8527, + "codeIataAirport": "WKR", + "codeIataCity": "WKR", + "codeIcaoAirport": "", + "codeIso2Country": "BS", + "geonameId": "0", + "latitudeAirport": 27.266666, + "longitudeAirport": -78.4, + "nameAirport": "Walker's Cay", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "8", + "airportId": 8528, + "codeIataAirport": "WLA", + "codeIataCity": "WLA", + "codeIcaoAirport": "YWAL", + "codeIso2Country": "AU", + "geonameId": "7731620", + "latitudeAirport": -19.783333, + "longitudeAirport": 120.666664, + "nameAirport": "Wallal", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-9", + "airportId": 8529, + "codeIataAirport": "WLB", + "codeIataCity": "WLB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5554818", + "latitudeAirport": 56.291668, + "longitudeAirport": -133.65834, + "nameAirport": "Labouchere Bay", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "10", + "airportId": 8530, + "codeIataAirport": "WLC", + "codeIataCity": "WLC", + "codeIcaoAirport": "YWCH", + "codeIso2Country": "AU", + "geonameId": "7731621", + "latitudeAirport": -30.983334, + "longitudeAirport": 151.6, + "nameAirport": "Walcha", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "airportId": 8531, + "codeIataAirport": "WLD", + "codeIataCity": "WLD", + "codeIcaoAirport": "KWLD", + "codeIso2Country": "US", + "geonameId": "4280091", + "latitudeAirport": 37.166943, + "longitudeAirport": -97.05028, + "nameAirport": "Arkansas City", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "12", + "airportId": 8532, + "codeIataAirport": "WLG", + "codeIataCity": "WLG", + "codeIcaoAirport": "NZWN", + "codeIso2Country": "NZ", + "geonameId": "6244688", + "latitudeAirport": -41.329037, + "longitudeAirport": 174.81216, + "nameAirport": "Wellington International", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "11", + "airportId": 8533, + "codeIataAirport": "WLH", + "codeIataCity": "WLH", + "codeIcaoAirport": "NVSW", + "codeIso2Country": "VU", + "geonameId": "7730719", + "latitudeAirport": -15.416667, + "longitudeAirport": 167.7, + "nameAirport": "Walaha", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-9", + "airportId": 8534, + "codeIataAirport": "WLK", + "codeIataCity": "WLK", + "codeIcaoAirport": "PASK", + "codeIso2Country": "US", + "geonameId": "5873663", + "latitudeAirport": 66.602776, + "longitudeAirport": -159.98334, + "nameAirport": "Selawik", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "9.30", + "airportId": 8535, + "codeIataAirport": "WLL", + "codeIataCity": "WLL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8260923", + "latitudeAirport": -17.616667, + "longitudeAirport": 137.91667, + "nameAirport": "Wollogorang", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-5", + "airportId": 8536, + "codeIataAirport": "WLM", + "codeIataCity": "WLM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.385277, + "longitudeAirport": -71.25139, + "nameAirport": "Waltham", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 8537, + "codeIataAirport": "WLN", + "codeIataCity": "WLN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 55.86667, + "longitudeAirport": -133.21666, + "nameAirport": "Little Naukati", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "9.30", + "airportId": 8538, + "codeIataAirport": "WLO", + "codeIataCity": "WLO", + "codeIcaoAirport": "YWTL", + "codeIso2Country": "AU", + "geonameId": "7731622", + "latitudeAirport": -16.633333, + "longitudeAirport": 129.31667, + "nameAirport": "Waterloo", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-9", + "airportId": 8539, + "codeIataAirport": "WLR", + "codeIataCity": "WLR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 55.666668, + "longitudeAirport": -131.66667, + "nameAirport": "Loring", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Sitka" + }, + { + "GMT": "12", + "airportId": 8540, + "codeIataAirport": "WLS", + "codeIataCity": "WLS", + "codeIcaoAirport": "NLWW", + "codeIso2Country": "WF", + "geonameId": "6299959", + "latitudeAirport": -13.233333, + "longitudeAirport": -176.16667, + "nameAirport": "Wallis Island", + "nameCountry": "Wallis and Futuna", + "phone": "", + "timezone": "Pacific/Wallis" + }, + { + "GMT": "-8", + "airportId": 8541, + "codeIataAirport": "WLW", + "codeIataCity": "WLW", + "codeIcaoAirport": "KWLW", + "codeIso2Country": "US", + "geonameId": "5409790", + "latitudeAirport": 39.88333, + "longitudeAirport": -122.35, + "nameAirport": "Glenn County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "airportId": 8542, + "codeIataAirport": "WMA", + "codeIataCity": "WMA", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1061028", + "latitudeAirport": -15.833333, + "longitudeAirport": 48.833332, + "nameAirport": "Mandritsara", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "10", + "airportId": 8543, + "codeIataAirport": "WMB", + "codeIataCity": "WMB", + "codeIcaoAirport": "YWBL", + "codeIso2Country": "AU", + "geonameId": "7668782", + "latitudeAirport": -38.295, + "longitudeAirport": 142.44833, + "nameAirport": "Warrnambool", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-8", + "airportId": 8544, + "codeIataAirport": "WMC", + "codeIataCity": "WMC", + "codeIcaoAirport": "KWMC", + "codeIso2Country": "US", + "geonameId": "5710371", + "latitudeAirport": 40.966667, + "longitudeAirport": -117.73333, + "nameAirport": "Winnemucca", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "airportId": 8545, + "codeIataAirport": "WMD", + "codeIataCity": "WMD", + "codeIcaoAirport": "FMSC", + "codeIso2Country": "MG", + "geonameId": "7730513", + "latitudeAirport": -21.033333, + "longitudeAirport": 44.95, + "nameAirport": "Mandabe", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "8", + "airportId": 8546, + "codeIataAirport": "WME", + "codeIataCity": "WME", + "codeIcaoAirport": "YMNE", + "codeIso2Country": "AU", + "geonameId": "7730265", + "latitudeAirport": -27.287222, + "longitudeAirport": 120.549446, + "nameAirport": "Mount Keith", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "airportId": 8547, + "codeIataAirport": "WMH", + "codeIataCity": "WMH", + "codeIcaoAirport": "KBPK", + "codeIso2Country": "US", + "geonameId": "4100583", + "latitudeAirport": 36.333332, + "longitudeAirport": -92.38333, + "nameAirport": "Mountain Home", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 8548, + "codeIataAirport": "WMI", + "codeIataCity": "WMI", + "codeIcaoAirport": "EPMO", + "codeIso2Country": "PL", + "geonameId": "8298648", + "latitudeAirport": 52.45111, + "longitudeAirport": 20.651667, + "nameAirport": "Modlin", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "-9", + "airportId": 8549, + "codeIataAirport": "WMK", + "codeIataCity": "WMK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5555701", + "latitudeAirport": 55.733334, + "longitudeAirport": -132.18333, + "nameAirport": "SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "airportId": 8550, + "codeIataAirport": "WML", + "codeIataCity": "WML", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1061831", + "latitudeAirport": -20.35, + "longitudeAirport": 45.55, + "nameAirport": "Malaimbandy", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "3", + "airportId": 8551, + "codeIataAirport": "WMN", + "codeIataCity": "WMN", + "codeIcaoAirport": "FMNR", + "codeIso2Country": "MG", + "geonameId": "7730077", + "latitudeAirport": -15.433333, + "longitudeAirport": 49.683334, + "nameAirport": "Maroantsetra", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-9", + "airportId": 8552, + "codeIataAirport": "WMO", + "codeIataCity": "WMO", + "codeIcaoAirport": "PAWM", + "codeIso2Country": "US", + "geonameId": "5877988", + "latitudeAirport": 64.68694, + "longitudeAirport": -163.40666, + "nameAirport": "White Mountain", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "airportId": 8553, + "codeIataAirport": "WMP", + "codeIataCity": "WMP", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1061700", + "latitudeAirport": -16.075, + "longitudeAirport": 47.59722, + "nameAirport": "Mampikony", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "3", + "airportId": 8554, + "codeIataAirport": "WMR", + "codeIataCity": "WMR", + "codeIcaoAirport": "FMNC", + "codeIso2Country": "MG", + "geonameId": "6453435", + "latitudeAirport": -16.161943, + "longitudeAirport": 49.770557, + "nameAirport": "Mananara", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "3", + "airportId": 8555, + "codeIataAirport": "WMV", + "codeIataCity": "WMV", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1062869", + "latitudeAirport": -16.45, + "longitudeAirport": 46.566666, + "nameAirport": "Madirovalo", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "9", + "airportId": 8556, + "codeIataAirport": "WMX", + "codeIataCity": "WMX", + "codeIcaoAirport": "WAJW", + "codeIso2Country": "ID", + "geonameId": "6301187", + "latitudeAirport": -4.116667, + "longitudeAirport": 138.93333, + "nameAirport": "Wamena", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-9", + "airportId": 8557, + "codeIataAirport": "WNA", + "codeIataCity": "WNA", + "codeIcaoAirport": "PANA", + "codeIso2Country": "US", + "geonameId": "5869638", + "latitudeAirport": 60.7, + "longitudeAirport": -162.11667, + "nameAirport": "Napakiak SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 8558, + "codeIataAirport": "WNC", + "codeIataCity": "WNC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 55.854168, + "longitudeAirport": -133.225, + "nameAirport": "Naukati Bay SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "airportId": 8559, + "codeIataAirport": "WND", + "codeIataCity": "WND", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298771", + "latitudeAirport": -28.266666, + "longitudeAirport": 121.833336, + "nameAirport": "Windarra", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "airportId": 8560, + "codeIataAirport": "WNE", + "codeIataCity": "WNE", + "codeIcaoAirport": "", + "codeIso2Country": "GA", + "geonameId": "8299095", + "latitudeAirport": -1.35, + "longitudeAirport": 9.333333, + "nameAirport": "Wora Na Ye", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "8", + "airportId": 8561, + "codeIataAirport": "WNH", + "codeIataCity": "WNH", + "codeIcaoAirport": "ZPWS", + "codeIso2Country": "CN", + "geonameId": "7910376", + "latitudeAirport": 23.374907, + "longitudeAirport": 104.24256, + "nameAirport": "Puzhehei", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 8562, + "codeIataAirport": "WNN", + "codeIataCity": "WNN", + "codeIcaoAirport": "CKL3", + "codeIso2Country": "CA", + "geonameId": "7730447", + "latitudeAirport": 52.916668, + "longitudeAirport": -89.166664, + "nameAirport": "Wunnummin Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "8", + "airportId": 8563, + "codeIataAirport": "WNP", + "codeIataCity": "WNP", + "codeIcaoAirport": "RPUN", + "codeIso2Country": "PH", + "geonameId": "6300485", + "latitudeAirport": 13.587222, + "longitudeAirport": 123.27, + "nameAirport": "Naga", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "10", + "airportId": 8564, + "codeIataAirport": "WNR", + "codeIataCity": "WNR", + "codeIcaoAirport": "YWDH", + "codeIso2Country": "AU", + "geonameId": "7730277", + "latitudeAirport": -25.416668, + "longitudeAirport": 142.66667, + "nameAirport": "Windorah", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5", + "airportId": 8565, + "codeIataAirport": "WNS", + "codeIataCity": "WNS", + "codeIcaoAirport": "OPNH", + "codeIso2Country": "PK", + "geonameId": "6300115", + "latitudeAirport": 26.219444, + "longitudeAirport": 68.39222, + "nameAirport": "Nawabshah", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "10", + "airportId": 8566, + "codeIataAirport": "WNU", + "codeIataCity": "WNU", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2083867", + "latitudeAirport": -4.9, + "longitudeAirport": 145.31667, + "nameAirport": "Wanuma", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 8567, + "codeIataAirport": "WNZ", + "codeIataCity": "WNZ", + "codeIcaoAirport": "ZSWZ", + "codeIso2Country": "CN", + "geonameId": "7729999", + "latitudeAirport": 27.91566, + "longitudeAirport": 120.84738, + "nameAirport": "Wenzhou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "airportId": 8568, + "codeIataAirport": "WOA", + "codeIataCity": "WOA", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8261053", + "latitudeAirport": -6.8, + "longitudeAirport": 145.88333, + "nameAirport": "Wonenara", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 8569, + "codeIataAirport": "WOD", + "codeIataCity": "WOD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299032", + "latitudeAirport": 38.86667, + "longitudeAirport": -90.083336, + "nameAirport": "Wood River", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 8570, + "codeIataAirport": "WOE", + "codeIataCity": "WOE", + "codeIcaoAirport": "EHWO", + "codeIso2Country": "NL", + "geonameId": "6296695", + "latitudeAirport": 51.435833, + "longitudeAirport": 4.335, + "nameAirport": "Woensdrecht", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "-4", + "airportId": 8571, + "codeIataAirport": "WOK", + "codeIataCity": "WOK", + "codeIcaoAirport": "", + "codeIso2Country": "VE", + "geonameId": "7731623", + "latitudeAirport": 5.25, + "longitudeAirport": -61.733334, + "nameAirport": "Wonken", + "nameCountry": "Venezuela", + "phone": "", + "timezone": "America/Caracas" + }, + { + "GMT": "10", + "airportId": 8572, + "codeIataAirport": "WOL", + "codeIataCity": "WOL", + "codeIcaoAirport": "YWOL", + "codeIso2Country": "AU", + "geonameId": "6255013", + "latitudeAirport": -34.566666, + "longitudeAirport": 150.78334, + "nameAirport": "Wollongong", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "airportId": 8573, + "codeIataAirport": "WON", + "codeIataCity": "WON", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8298892", + "latitudeAirport": -18.583332, + "longitudeAirport": 140.9, + "nameAirport": "Wondoola", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "airportId": 8574, + "codeIataAirport": "WOO", + "codeIataCity": "WOO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8298966", + "latitudeAirport": 65.333336, + "longitudeAirport": -143.53334, + "nameAirport": "Woodchopper", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "airportId": 8575, + "codeIataAirport": "WOR", + "codeIataCity": "WOR", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1071712", + "latitudeAirport": -14.883333, + "longitudeAirport": 47.283333, + "nameAirport": "Moramba", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "8.30", + "airportId": 8576, + "codeIataAirport": "WOS", + "codeIataCity": "WOS", + "codeIcaoAirport": "", + "codeIso2Country": "KP", + "geonameId": "0", + "latitudeAirport": 50.216667, + "longitudeAirport": -126.61667, + "nameAirport": "Wonsan", + "nameCountry": "North Korea", + "phone": "", + "timezone": "Asia/Pyongyang" + }, + { + "GMT": "8", + "airportId": 8577, + "codeIataAirport": "WOT", + "codeIataCity": "WOT", + "codeIcaoAirport": "RCWA", + "codeIso2Country": "TW", + "geonameId": "6587072", + "latitudeAirport": 23.416668, + "longitudeAirport": 119.5, + "nameAirport": "Wonan", + "nameCountry": "Taiwan", + "phone": "", + "timezone": "Asia/Taipei" + }, + { + "GMT": "-9", + "airportId": 8578, + "codeIataAirport": "WOW", + "codeIataCity": "WOW", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 61.833332, + "longitudeAirport": -150.16667, + "nameAirport": "Willow", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "airportId": 8579, + "codeIataAirport": "WPA", + "codeIataCity": "WPA", + "codeIcaoAirport": "SCAS", + "codeIso2Country": "CL", + "geonameId": "7731624", + "latitudeAirport": -45.4, + "longitudeAirport": -72.7, + "nameAirport": "Puerto Aisen", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "3", + "airportId": 8580, + "codeIataAirport": "WPB", + "codeIataCity": "WPB", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1057995", + "latitudeAirport": -15.55, + "longitudeAirport": 47.666668, + "nameAirport": "Port Berge", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-7", + "airportId": 8581, + "codeIataAirport": "WPC", + "codeIataCity": "WPC", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6104841", + "latitudeAirport": 49.483334, + "longitudeAirport": -113.95, + "nameAirport": "Pincher Creek", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "10", + "airportId": 8582, + "codeIataAirport": "WPK", + "codeIataCity": "WPK", + "codeIcaoAirport": "YWMP", + "codeIso2Country": "AU", + "geonameId": "7731625", + "latitudeAirport": -16.633333, + "longitudeAirport": 144.0, + "nameAirport": "Wrotham Park", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-8", + "airportId": 8583, + "codeIataAirport": "WPL", + "codeIataCity": "WPL", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298977", + "latitudeAirport": 50.183334, + "longitudeAirport": -124.4, + "nameAirport": "Powell Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "10", + "airportId": 8584, + "codeIataAirport": "WPM", + "codeIataCity": "WPM", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "7731626", + "latitudeAirport": -8.816667, + "longitudeAirport": 143.03334, + "nameAirport": "Wipim", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "airportId": 8585, + "codeIataAirport": "WPO", + "codeIataCity": "WPO", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5550409", + "latitudeAirport": 38.86667, + "longitudeAirport": -107.6, + "nameAirport": "North Fork Valley", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-4", + "airportId": 8586, + "codeIataAirport": "WPR", + "codeIataCity": "WPR", + "codeIcaoAirport": "", + "codeIso2Country": "CL", + "geonameId": "7730164", + "latitudeAirport": -53.25, + "longitudeAirport": -70.333336, + "nameAirport": "Porvenir", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-4", + "airportId": 8587, + "codeIataAirport": "WPU", + "codeIataCity": "WPU", + "codeIcaoAirport": "", + "codeIso2Country": "CL", + "geonameId": "7668445", + "latitudeAirport": -54.95, + "longitudeAirport": -68.25, + "nameAirport": "Puerto Williams", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "3", + "airportId": 8588, + "codeIataAirport": "WRA", + "codeIataCity": "WRA", + "codeIcaoAirport": "", + "codeIso2Country": "ET", + "geonameId": "326282", + "latitudeAirport": 6.966667, + "longitudeAirport": 45.333332, + "nameAirport": "Warder", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-5", + "airportId": 8589, + "codeIataAirport": "WRB", + "codeIataCity": "MCN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.695557, + "longitudeAirport": -83.64778, + "nameAirport": "Robins AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "12", + "airportId": 8590, + "codeIataAirport": "WRE", + "codeIataCity": "WRE", + "codeIcaoAirport": "NZWR", + "codeIso2Country": "NZ", + "geonameId": "6230919", + "latitudeAirport": -35.76742, + "longitudeAirport": 174.36403, + "nameAirport": "Whangarei", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-9", + "airportId": 8591, + "codeIataAirport": "WRG", + "codeIataCity": "WRG", + "codeIcaoAirport": "PAWG", + "codeIso2Country": "US", + "geonameId": "5558587", + "latitudeAirport": 56.484444, + "longitudeAirport": -132.36667, + "nameAirport": "Wrangell SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 8592, + "codeIataAirport": "WRH", + "codeIataCity": "WRH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299023", + "latitudeAirport": 68.25, + "longitudeAirport": -162.28334, + "nameAirport": "Wrench Creek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 8593, + "codeIataAirport": "WRI", + "codeIataCity": "WRI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5098132", + "latitudeAirport": 40.155308, + "longitudeAirport": -74.65017, + "nameAirport": "Mc Guire AFB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 8594, + "codeIataAirport": "WRL", + "codeIataCity": "WRL", + "codeIcaoAirport": "KWRL", + "codeIso2Country": "US", + "geonameId": "5843498", + "latitudeAirport": 43.9675, + "longitudeAirport": -107.95306, + "nameAirport": "Worland Municipalcipal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 8595, + "codeIataAirport": "WRO", + "codeIataCity": "WRO", + "codeIcaoAirport": "EPWR", + "codeIso2Country": "PL", + "geonameId": "3081363", + "latitudeAirport": 51.10482, + "longitudeAirport": 16.899403, + "nameAirport": "Copernicus Airport", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "8", + "airportId": 8596, + "codeIataAirport": "WRW", + "codeIataCity": "WRW", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "7731627", + "latitudeAirport": -20.866667, + "longitudeAirport": 120.71667, + "nameAirport": "Warrawagine", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "0", + "airportId": 8597, + "codeIataAirport": "WRY", + "codeIataCity": "WRY", + "codeIcaoAirport": "EGEW", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 59.35, + "longitudeAirport": -2.95, + "nameAirport": "Westray", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "5.30", + "airportId": 8598, + "codeIataAirport": "WRZ", + "codeIataCity": "WRZ", + "codeIcaoAirport": "VCCW", + "codeIso2Country": "LK", + "geonameId": "7668582", + "latitudeAirport": 6.251667, + "longitudeAirport": 81.238335, + "nameAirport": "Wirawila", + "nameCountry": "Sri Lanka", + "phone": "", + "timezone": "Asia/Colombo" + }, + { + "GMT": "10", + "airportId": 8599, + "codeIataAirport": "WSA", + "codeIataCity": "WSA", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2083705", + "latitudeAirport": -8.283333, + "longitudeAirport": 142.86667, + "nameAirport": "Wasua", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 8600, + "codeIataAirport": "WSB", + "codeIataCity": "WSB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5557599", + "latitudeAirport": 39.36667, + "longitudeAirport": -119.73333, + "nameAirport": "SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "airportId": 8601, + "codeIataAirport": "WSD", + "codeIataCity": "WSD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.38333, + "longitudeAirport": -106.48333, + "nameAirport": "Condron AAF", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "airportId": 8602, + "codeIataAirport": "WSF", + "codeIataCity": "WSF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299149", + "latitudeAirport": 54.583332, + "longitudeAirport": -164.91667, + "nameAirport": "Sarichef", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 8603, + "codeIataAirport": "WSG", + "codeIataCity": "WSG", + "codeIcaoAirport": "KAFJ", + "codeIso2Country": "US", + "geonameId": "5218077", + "latitudeAirport": 40.166668, + "longitudeAirport": -80.25, + "nameAirport": "County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 8604, + "codeIataAirport": "WSH", + "codeIataCity": "WSH", + "codeIcaoAirport": "KHWV", + "codeIso2Country": "US", + "geonameId": "5138022", + "latitudeAirport": 40.75, + "longitudeAirport": -72.833336, + "nameAirport": "Brookhaven", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "airportId": 8605, + "codeIataAirport": "WSJ", + "codeIataCity": "WSJ", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5873319", + "latitudeAirport": 57.73111, + "longitudeAirport": -153.31833, + "nameAirport": "San Juan SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 8606, + "codeIataAirport": "WSM", + "codeIataCity": "WSM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 67.401665, + "longitudeAirport": -150.11667, + "nameAirport": "Wiseman", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 8607, + "codeIataAirport": "WSN", + "codeIataCity": "WSN", + "codeIcaoAirport": "PFWS", + "codeIso2Country": "US", + "geonameId": "5874841", + "latitudeAirport": 58.718613, + "longitudeAirport": -156.93417, + "nameAirport": "South Naknek", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "airportId": 8608, + "codeIataAirport": "WSO", + "codeIataCity": "WSO", + "codeIcaoAirport": "", + "codeIso2Country": "SR", + "geonameId": "0", + "latitudeAirport": 5.216667, + "longitudeAirport": -57.183334, + "nameAirport": "Washabo", + "nameCountry": "Suriname", + "phone": "", + "timezone": "America/Paramaribo" + }, + { + "GMT": "-6", + "airportId": 8609, + "codeIataAirport": "WSP", + "codeIataCity": "WSP", + "codeIcaoAirport": "MNWP", + "codeIso2Country": "NI", + "geonameId": "7668353", + "latitudeAirport": 14.683333, + "longitudeAirport": -84.01667, + "nameAirport": "Waspam", + "nameCountry": "Nicaragua", + "phone": "", + "timezone": "America/Managua" + }, + { + "GMT": "9", + "airportId": 8610, + "codeIataAirport": "WSR", + "codeIataCity": "WSR", + "codeIcaoAirport": "WASW", + "codeIso2Country": "ID", + "geonameId": "7731628", + "latitudeAirport": -2.716667, + "longitudeAirport": 134.5, + "nameAirport": "Wasior", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-5", + "airportId": 8611, + "codeIataAirport": "WST", + "codeIataCity": "WST", + "codeIcaoAirport": "KWST", + "codeIso2Country": "US", + "geonameId": "5225640", + "latitudeAirport": 41.350193, + "longitudeAirport": -71.8069, + "nameAirport": "Westerly State", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "airportId": 8612, + "codeIataAirport": "WSU", + "codeIataCity": "WSU", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260974", + "latitudeAirport": -5.95, + "longitudeAirport": 147.23334, + "nameAirport": "Wasu", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "airportId": 8613, + "codeIataAirport": "WSX", + "codeIataCity": "WSX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 48.666668, + "longitudeAirport": -122.88333, + "nameAirport": "Westsound", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "12", + "airportId": 8614, + "codeIataAirport": "WSZ", + "codeIataCity": "WSZ", + "codeIcaoAirport": "NZWS", + "codeIso2Country": "NZ", + "geonameId": "6457350", + "latitudeAirport": -41.74002, + "longitudeAirport": 171.57858, + "nameAirport": "Westport", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "3", + "airportId": 8615, + "codeIataAirport": "WTA", + "codeIataCity": "WTA", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1055953", + "latitudeAirport": -17.483334, + "longitudeAirport": 43.966667, + "nameAirport": "Tambohorano", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-5", + "airportId": 8616, + "codeIataAirport": "WTC", + "codeIataCity": "NYC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.7, + "longitudeAirport": -74.01667, + "nameAirport": "World Trade Center", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 8617, + "codeIataAirport": "WTD", + "codeIataCity": "WTD", + "codeIcaoAirport": "MYGW", + "codeIso2Country": "BS", + "geonameId": "3571224", + "latitudeAirport": 26.686111, + "longitudeAirport": -78.97583, + "nameAirport": "West End", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "12", + "airportId": 8618, + "codeIataAirport": "WTE", + "codeIataCity": "WTE", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 9.45, + "longitudeAirport": 170.26666, + "nameAirport": "Wotje Island", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-9", + "airportId": 8619, + "codeIataAirport": "WTK", + "codeIataCity": "WTK", + "codeIcaoAirport": "PAWN", + "codeIso2Country": "US", + "geonameId": "5870092", + "latitudeAirport": 67.56306, + "longitudeAirport": -162.98416, + "nameAirport": "Noatak", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 8620, + "codeIataAirport": "WTL", + "codeIataCity": "WTL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5876821", + "latitudeAirport": 60.35, + "longitudeAirport": -162.63333, + "nameAirport": "Tuntutuliak", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 8621, + "codeIataAirport": "WTN", + "codeIataCity": "WTN", + "codeIcaoAirport": "EGXW", + "codeIso2Country": "GB", + "geonameId": "6296675", + "latitudeAirport": 53.166668, + "longitudeAirport": -0.516667, + "nameAirport": "RAF Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "12", + "airportId": 8622, + "codeIataAirport": "WTO", + "codeIataCity": "WTO", + "codeIcaoAirport": "", + "codeIso2Country": "MH", + "geonameId": "0", + "latitudeAirport": 10.166667, + "longitudeAirport": 166.03334, + "nameAirport": "Wotho Island", + "nameCountry": "Marshall Islands", + "phone": "", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "10", + "airportId": 8623, + "codeIataAirport": "WTP", + "codeIataCity": "WTP", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2083396", + "latitudeAirport": -8.55, + "longitudeAirport": 147.25, + "nameAirport": "Woitape", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "airportId": 8624, + "codeIataAirport": "WTR", + "codeIataCity": "WTR", + "codeIcaoAirport": "KE24", + "codeIso2Country": "US", + "geonameId": "5320801", + "latitudeAirport": 33.85, + "longitudeAirport": -109.96667, + "nameAirport": "White River", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "3", + "airportId": 8625, + "codeIataAirport": "WTS", + "codeIataCity": "WTS", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1054463", + "latitudeAirport": -18.757221, + "longitudeAirport": 46.054443, + "nameAirport": "Tsiroanomandidy", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "10", + "airportId": 8626, + "codeIataAirport": "WTT", + "codeIataCity": "WTT", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2083873", + "latitudeAirport": -6.05, + "longitudeAirport": 146.4, + "nameAirport": "Wantoat", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "12", + "airportId": 8627, + "codeIataAirport": "WTZ", + "codeIataCity": "WTZ", + "codeIcaoAirport": "", + "codeIso2Country": "NZ", + "geonameId": "2179103", + "latitudeAirport": -36.8313, + "longitudeAirport": 175.678, + "nameAirport": "Whitianga", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "8", + "airportId": 8628, + "codeIataAirport": "WUA", + "codeIataCity": "WUA", + "codeIcaoAirport": "ZBUH", + "codeIso2Country": "CN", + "geonameId": "7910204", + "latitudeAirport": 39.794724, + "longitudeAirport": 106.799164, + "nameAirport": "Wu Hai", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9.30", + "airportId": 8629, + "codeIataAirport": "WUD", + "codeIataCity": "WUD", + "codeIcaoAirport": "YWUD", + "codeIso2Country": "AU", + "geonameId": "7731629", + "latitudeAirport": -33.016666, + "longitudeAirport": 135.61945, + "nameAirport": "Wudinna", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "10", + "airportId": 8630, + "codeIataAirport": "WUG", + "codeIataCity": "WUG", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299105", + "latitudeAirport": -7.3375, + "longitudeAirport": 146.71834, + "nameAirport": "Wau", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 8631, + "codeIataAirport": "WUH", + "codeIataCity": "WUH", + "codeIcaoAirport": "ZHHH", + "codeIso2Country": "CN", + "geonameId": "6301368", + "latitudeAirport": 30.776598, + "longitudeAirport": 114.209625, + "nameAirport": "Tianhe International", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "airportId": 8632, + "codeIataAirport": "WUM", + "codeIataCity": "WUM", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2083700", + "latitudeAirport": -6.05, + "longitudeAirport": 149.33333, + "nameAirport": "Wasum", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 8633, + "codeIataAirport": "WUN", + "codeIataCity": "WUN", + "codeIcaoAirport": "YWLU", + "codeIso2Country": "AU", + "geonameId": "7668785", + "latitudeAirport": -26.633333, + "longitudeAirport": 120.21667, + "nameAirport": "Wiluna", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "airportId": 8634, + "codeIataAirport": "WUS", + "codeIataCity": "WUS", + "codeIcaoAirport": "ZSWY", + "codeIso2Country": "CN", + "geonameId": "7730299", + "latitudeAirport": 27.716667, + "longitudeAirport": 117.96667, + "nameAirport": "Wuyishan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "airportId": 8635, + "codeIataAirport": "WUU", + "codeIataCity": "WUU", + "codeIcaoAirport": "HSWW", + "codeIso2Country": "SS", + "geonameId": "7668303", + "latitudeAirport": 7.746389, + "longitudeAirport": 27.985277, + "nameAirport": "Wau", + "nameCountry": "South Sudan", + "phone": "", + "timezone": "Africa/Juba" + }, + { + "GMT": "10", + "airportId": 8636, + "codeIataAirport": "WUV", + "codeIataCity": "WUV", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8260924", + "latitudeAirport": -1.75, + "longitudeAirport": 142.83333, + "nameAirport": "Wuvulu Island", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "airportId": 8637, + "codeIataAirport": "WUX", + "codeIataCity": "WUX", + "codeIcaoAirport": "ZSWX", + "codeIso2Country": "CN", + "geonameId": "7668806", + "latitudeAirport": 31.49289, + "longitudeAirport": 120.42438, + "nameAirport": "Wuxi", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 8638, + "codeIataAirport": "WUZ", + "codeIataCity": "WUZ", + "codeIcaoAirport": "ZGWZ", + "codeIso2Country": "CN", + "geonameId": "7731630", + "latitudeAirport": 23.456062, + "longitudeAirport": 111.25191, + "nameAirport": "Changzhoudao", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "airportId": 8639, + "codeIataAirport": "WVB", + "codeIataCity": "WVB", + "codeIcaoAirport": "FYWB", + "codeIso2Country": "NA", + "geonameId": "3362101", + "latitudeAirport": -22.978611, + "longitudeAirport": 14.517222, + "nameAirport": "Rooikop", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-8", + "airportId": 8640, + "codeIataAirport": "WVI", + "codeIataCity": "WVI", + "codeIcaoAirport": "KWVI", + "codeIso2Country": "US", + "geonameId": "5407540", + "latitudeAirport": 36.916668, + "longitudeAirport": -121.75, + "nameAirport": "Watsonville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "airportId": 8641, + "codeIataAirport": "WVK", + "codeIataCity": "WVK", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1061605", + "latitudeAirport": -22.116667, + "longitudeAirport": 48.016666, + "nameAirport": "Manakara", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-5", + "airportId": 8642, + "codeIataAirport": "WVL", + "codeIataCity": "WVL", + "codeIcaoAirport": "KWVL", + "codeIso2Country": "US", + "geonameId": "4982237", + "latitudeAirport": 44.53389, + "longitudeAirport": -69.675835, + "nameAirport": "Robert Lafleur", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 8643, + "codeIataAirport": "WVN", + "codeIataCity": "WVN", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2808720", + "latitudeAirport": 53.533333, + "longitudeAirport": 8.116667, + "nameAirport": "Wilhelmshaven", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-9", + "airportId": 8644, + "codeIataAirport": "WWA", + "codeIataCity": "WWA", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5877641", + "latitudeAirport": 61.583332, + "longitudeAirport": -149.43333, + "nameAirport": "Wasilla", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "airportId": 8645, + "codeIataAirport": "WWD", + "codeIataCity": "WWD", + "codeIcaoAirport": "KWWD", + "codeIso2Country": "US", + "geonameId": "4504856", + "latitudeAirport": 39.00639, + "longitudeAirport": -74.90889, + "nameAirport": "Cape May County", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 8646, + "codeIataAirport": "WWI", + "codeIataCity": "WWI", + "codeIcaoAirport": "YWWI", + "codeIso2Country": "AU", + "geonameId": "7731631", + "latitudeAirport": -21.633333, + "longitudeAirport": 121.23333, + "nameAirport": "Woodie Woodie", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "10", + "airportId": 8647, + "codeIataAirport": "WWK", + "codeIataCity": "WWK", + "codeIcaoAirport": "AYWK", + "codeIso2Country": "PG", + "geonameId": "6295686", + "latitudeAirport": -3.580034, + "longitudeAirport": 143.66916, + "nameAirport": "Boram", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "airportId": 8648, + "codeIataAirport": "WWP", + "codeIataCity": "WWP", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5558430", + "latitudeAirport": 56.666668, + "longitudeAirport": -133.83333, + "nameAirport": "Whale Pass", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "airportId": 8649, + "codeIataAirport": "WWR", + "codeIataCity": "WWR", + "codeIcaoAirport": "KWWR", + "codeIso2Country": "US", + "geonameId": "4556050", + "latitudeAirport": 36.43611, + "longitudeAirport": -99.52639, + "nameAirport": "West Woodward", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "airportId": 8650, + "codeIataAirport": "WWS", + "codeIataCity": "WWS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "USAF Heliport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "airportId": 8651, + "codeIataAirport": "WWT", + "codeIataCity": "WWT", + "codeIcaoAirport": "PAEW", + "codeIso2Country": "US", + "geonameId": "5869898", + "latitudeAirport": 60.92278, + "longitudeAirport": -164.6486, + "nameAirport": "Newtok", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "airportId": 8652, + "codeIataAirport": "WWY", + "codeIataCity": "WWY", + "codeIcaoAirport": "YWWL", + "codeIso2Country": "AU", + "geonameId": "2143930", + "latitudeAirport": -33.933334, + "longitudeAirport": 147.25, + "nameAirport": "West Wyalong", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "8", + "airportId": 8653, + "codeIataAirport": "WXJ", + "codeIataCity": "WXJ", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Wanning Railway Station", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 8654, + "codeIataAirport": "WXN", + "codeIataCity": "WXN", + "codeIcaoAirport": "ZUWX", + "codeIso2Country": "CN", + "geonameId": "1791748", + "latitudeAirport": 30.799679, + "longitudeAirport": 108.42695, + "nameAirport": "Wanxian", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9.30", + "airportId": 8655, + "codeIataAirport": "WYA", + "codeIataCity": "WYA", + "codeIcaoAirport": "YWHA", + "codeIso2Country": "AU", + "geonameId": "7730278", + "latitudeAirport": -33.05241, + "longitudeAirport": 137.52197, + "nameAirport": "Whyalla", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-9", + "airportId": 8656, + "codeIataAirport": "WYB", + "codeIataCity": "WYB", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5558649", + "latitudeAirport": 55.916668, + "longitudeAirport": -131.83333, + "nameAirport": "SPB", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 8657, + "codeIataAirport": "WYE", + "codeIataCity": "WYE", + "codeIcaoAirport": "GFYE", + "codeIso2Country": "SL", + "geonameId": "7668280", + "latitudeAirport": 8.616667, + "longitudeAirport": -11.058889, + "nameAirport": "Yengema", + "nameCountry": "Sierra Leone", + "phone": "", + "timezone": "Africa/Freetown" + }, + { + "GMT": "8", + "airportId": 8658, + "codeIataAirport": "WYN", + "codeIataCity": "WYN", + "codeIcaoAirport": "YWYM", + "codeIso2Country": "AU", + "geonameId": "7731633", + "latitudeAirport": -15.507222, + "longitudeAirport": 128.1375, + "nameAirport": "Wyndham", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-7", + "airportId": 8659, + "codeIataAirport": "WYS", + "codeIataCity": "WYS", + "codeIcaoAirport": "KWYS", + "codeIso2Country": "US", + "geonameId": "5687454", + "latitudeAirport": 44.68667, + "longitudeAirport": -111.10472, + "nameAirport": "Yellowstone", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "airportId": 8660, + "codeIataAirport": "WZY", + "codeIataCity": "NAS", + "codeIcaoAirport": "", + "codeIso2Country": "BS", + "geonameId": "0", + "latitudeAirport": 25.0825, + "longitudeAirport": -77.327225, + "nameAirport": "Paradise Island Seaplane Base", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "-6", + "airportId": 8661, + "codeIataAirport": "XAD", + "codeIataCity": "YYQ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 58.755456, + "longitudeAirport": -94.112469, + "nameAirport": "Churchill Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "1", + "airportId": 8662, + "codeIataAirport": "XAH", + "codeIataCity": "XAH", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "2614030", + "latitudeAirport": 56.1697, + "longitudeAirport": 9.54508, + "nameAirport": "Silkeborg Railway Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 8663, + "codeIataAirport": "XAJ", + "codeIataCity": "XAJ", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "2620279", + "latitudeAirport": 57.58812, + "longitudeAirport": 9.95922, + "nameAirport": "Hirtshals Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 8664, + "codeIataAirport": "XAK", + "codeIataCity": "ZRY", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Herning Railway Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-7", + "airportId": 8665, + "codeIataAirport": "XAL", + "codeIataCity": "XAL", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "0", + "latitudeAirport": 27.016666, + "longitudeAirport": -108.933334, + "nameAirport": "Alamos", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Hermosillo" + }, + { + "GMT": "-3", + "airportId": 8666, + "codeIataAirport": "XAP", + "codeIataCity": "XAP", + "codeIcaoAirport": "SBCH", + "codeIso2Country": "BR", + "geonameId": "7668434", + "latitudeAirport": -27.088612, + "longitudeAirport": -52.629723, + "nameAirport": "Aeroporto Municipalcipal Chapeco", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "airportId": 8667, + "codeIataAirport": "XAQ", + "codeIataCity": "XAQ", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Bronderslev Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "0", + "airportId": 8668, + "codeIataAirport": "XAR", + "codeIataCity": "XAR", + "codeIcaoAirport": "DFOY", + "codeIso2Country": "BF", + "geonameId": "7730466", + "latitudeAirport": 14.233333, + "longitudeAirport": -0.866667, + "nameAirport": "Aribinda", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-3", + "airportId": 8669, + "codeIataAirport": "XAU", + "codeIataCity": "XAU", + "codeIcaoAirport": "", + "codeIso2Country": "GF", + "geonameId": "0", + "latitudeAirport": 3.616667, + "longitudeAirport": -53.2, + "nameAirport": "Saul", + "nameCountry": "French Guiana", + "phone": "", + "timezone": "America/Cayenne" + }, + { + "GMT": "-5", + "airportId": 8670, + "codeIataAirport": "XAW", + "codeIataCity": "XAW", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Capreol Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 8671, + "codeIataAirport": "XAX", + "codeIataCity": "YMQ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 45.5088889, + "longitudeAirport": -73.5541667, + "nameAirport": "Dorval Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "7", + "airportId": 8672, + "codeIataAirport": "XAY", + "codeIataCity": "XAY", + "codeIcaoAirport": "", + "codeIso2Country": "LA", + "geonameId": "0", + "latitudeAirport": 18.666668, + "longitudeAirport": 104.71667, + "nameAirport": "Xayabury", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-4", + "airportId": 8673, + "codeIataAirport": "XAZ", + "codeIataCity": "XAZ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Campbellton Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Moncton" + }, + { + "GMT": "-8", + "airportId": 8674, + "codeIataAirport": "XBB", + "codeIataCity": "XBB", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8299196", + "latitudeAirport": 50.0, + "longitudeAirport": -123.0, + "nameAirport": "Blubber Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "airportId": 8675, + "codeIataAirport": "XBE", + "codeIataCity": "XBE", + "codeIcaoAirport": "CNE3", + "codeIso2Country": "CA", + "geonameId": "7730449", + "latitudeAirport": 53.95, + "longitudeAirport": -90.98333, + "nameAirport": "Bearskin Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "0", + "airportId": 8676, + "codeIataAirport": "XBG", + "codeIataCity": "XBG", + "codeIcaoAirport": "DFEB", + "codeIso2Country": "BF", + "geonameId": "7668175", + "latitudeAirport": 12.983333, + "longitudeAirport": -0.133333, + "nameAirport": "Bogande", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "3.30", + "airportId": 8677, + "codeIataAirport": "XBJ", + "codeIataCity": "XBJ", + "codeIcaoAirport": "OIMB", + "codeIso2Country": "IR", + "geonameId": "6300062", + "latitudeAirport": 32.89905, + "longitudeAirport": 59.25499, + "nameAirport": "Birjand", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "3", + "airportId": 8678, + "codeIataAirport": "XBL", + "codeIataCity": "XBL", + "codeIcaoAirport": "", + "codeIso2Country": "ET", + "geonameId": "8298758", + "latitudeAirport": 8.45, + "longitudeAirport": 36.333332, + "nameAirport": "Buno Bedelle", + "nameCountry": "Ethiopia", + "phone": "", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "10", + "airportId": 8679, + "codeIataAirport": "XBN", + "codeIataCity": "XBN", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2099444", + "latitudeAirport": -9.633333, + "longitudeAirport": 149.3, + "nameAirport": "Biniguni", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 8680, + "codeIataAirport": "XBO", + "codeIataCity": "XBO", + "codeIcaoAirport": "DFEA", + "codeIso2Country": "BF", + "geonameId": "7668174", + "latitudeAirport": 12.65, + "longitudeAirport": -0.566667, + "nameAirport": "Boulsa", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-5", + "airportId": 8681, + "codeIataAirport": "XBR", + "codeIataCity": "XBR", + "codeIcaoAirport": "CNL3", + "codeIso2Country": "CA", + "geonameId": "5909294", + "latitudeAirport": 44.583332, + "longitudeAirport": -75.683334, + "nameAirport": "Brockville", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 8682, + "codeIataAirport": "XBW", + "codeIataCity": "XBW", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 42.65, + "longitudeAirport": -80.82, + "nameAirport": "Killineq", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "airportId": 8683, + "codeIataAirport": "XCC", + "codeIataCity": "XCC", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Le Creusot/Montceau TGV Railway Station", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "7", + "airportId": 8684, + "codeIataAirport": "XCH", + "codeIataCity": "XCH", + "codeIcaoAirport": "YPXM", + "codeIso2Country": "CX", + "geonameId": "6301340", + "latitudeAirport": -10.5, + "longitudeAirport": 105.666664, + "nameAirport": "Christmas Island", + "nameCountry": "Christmas Island", + "phone": "", + "timezone": "Indian/Christmas" + }, + { + "GMT": "-5", + "airportId": 8685, + "codeIataAirport": "XCI", + "codeIataCity": "XCI", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5919569", + "latitudeAirport": 48.43339, + "longitudeAirport": -72.06583, + "nameAirport": "Chambord Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "airportId": 8686, + "codeIataAirport": "XCL", + "codeIataCity": "XCL", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260797", + "latitudeAirport": 59.0, + "longitudeAirport": -107.0, + "nameAirport": "Cluff Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "-5", + "airportId": 8687, + "codeIataAirport": "XCM", + "codeIataCity": "XCM", + "codeIcaoAirport": "CNZ3", + "codeIso2Country": "CA", + "geonameId": "8298609", + "latitudeAirport": 42.4, + "longitudeAirport": -82.183334, + "nameAirport": "Chatham", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "8", + "airportId": 8688, + "codeIataAirport": "XCN", + "codeIataCity": "XCN", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "1716834", + "latitudeAirport": 12.016667, + "longitudeAirport": 120.2, + "nameAirport": "Coron Airport", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "10", + "airportId": 8689, + "codeIataAirport": "XCO", + "codeIataCity": "XCO", + "codeIcaoAirport": "YOLA", + "codeIso2Country": "AU", + "geonameId": "7731634", + "latitudeAirport": -38.35, + "longitudeAirport": 143.58333, + "nameAirport": "Colac", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "1", + "airportId": 8690, + "codeIataAirport": "XCR", + "codeIataCity": "PAR", + "codeIcaoAirport": "LFOK", + "codeIso2Country": "FR", + "geonameId": "6299434", + "latitudeAirport": 48.767776, + "longitudeAirport": 4.201111, + "nameAirport": "Vatry International", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 8691, + "codeIataAirport": "XDB", + "codeIataCity": "LIL", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 50.62925, + "longitudeAirport": 3.057256, + "nameAirport": "Europe Railway Station", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 8692, + "codeIataAirport": "XDD", + "codeIataCity": "YGP", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 48.902945, + "longitudeAirport": -64.478683, + "nameAirport": "Gaspe Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "0", + "airportId": 8693, + "codeIataAirport": "XDE", + "codeIataCity": "XDE", + "codeIcaoAirport": "DFOU", + "codeIso2Country": "BF", + "geonameId": "7668181", + "latitudeAirport": 10.966667, + "longitudeAirport": -3.25, + "nameAirport": "Diebougou", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-4", + "airportId": 8694, + "codeIataAirport": "XDG", + "codeIataCity": "YHZ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 44.648881, + "longitudeAirport": -63.575312, + "nameAirport": "Halifax Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Halifax" + }, + { + "GMT": "-7", + "airportId": 8695, + "codeIataAirport": "XDH", + "codeIataCity": "YJA", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Jasper Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "0", + "airportId": 8696, + "codeIataAirport": "XDJ", + "codeIataCity": "XDJ", + "codeIcaoAirport": "DFCJ", + "codeIso2Country": "BF", + "geonameId": "7730458", + "latitudeAirport": 14.1, + "longitudeAirport": -1.633333, + "nameAirport": "Djibo", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-5", + "airportId": 8697, + "codeIataAirport": "XDL", + "codeIataCity": "XDL", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6943811", + "latitudeAirport": 48.34935, + "longitudeAirport": -64.67926, + "nameAirport": "Chandler Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 8698, + "codeIataAirport": "XDM", + "codeIataCity": "XDM", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5942845", + "latitudeAirport": 45.88336, + "longitudeAirport": -72.48241, + "nameAirport": "Drummondville Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 8699, + "codeIataAirport": "XDO", + "codeIataCity": "XDO", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6943814", + "latitudeAirport": 48.40026, + "longitudeAirport": -64.50108, + "nameAirport": "Grande-Riviere Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-4", + "airportId": 8700, + "codeIataAirport": "XDP", + "codeIataCity": "YQM", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 46.115833, + "longitudeAirport": -64.803056, + "nameAirport": "Moncton Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Moncton" + }, + { + "GMT": "-5", + "airportId": 8701, + "codeIataAirport": "XDQ", + "codeIataCity": "YXU", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 42.987, + "longitudeAirport": -81.251, + "nameAirport": "London Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 8702, + "codeIataAirport": "XDS", + "codeIataCity": "YOW", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 45.411572, + "longitudeAirport": -75.698194, + "nameAirport": "Ottawa Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 8703, + "codeIataAirport": "XDU", + "codeIataCity": "XDU", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Hervey Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "airportId": 8704, + "codeIataAirport": "XDV", + "codeIataCity": "YXS", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 53.91848, + "longitudeAirport": -122.776584, + "nameAirport": "Pr. George Railway", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "airportId": 8705, + "codeIataAirport": "XDW", + "codeIataCity": "YPR", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 54.306145, + "longitudeAirport": -130.310882, + "nameAirport": "Prince Rupert Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 8706, + "codeIataAirport": "XDX", + "codeIataCity": "YZR", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 42.9848, + "longitudeAirport": -82.36059, + "nameAirport": "Sarnia Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 8707, + "codeIataAirport": "XDY", + "codeIataCity": "YSB", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 46.63, + "longitudeAirport": -80.8, + "nameAirport": "Sudbury Jct Railway", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "airportId": 8708, + "codeIataAirport": "XDZ", + "codeIataCity": "YQD", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 53.97, + "longitudeAirport": -101.09, + "nameAirport": "The Pas Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-8", + "airportId": 8709, + "codeIataAirport": "XEA", + "codeIataCity": "YVR", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 49.261226, + "longitudeAirport": -123.1139268, + "nameAirport": "Vancouver Railway.", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 8710, + "codeIataAirport": "XEC", + "codeIataCity": "YQG", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 42.28, + "longitudeAirport": -82.96, + "nameAirport": "Windsor Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "airportId": 8711, + "codeIataAirport": "XED", + "codeIataCity": "XED", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Marne/Chessy Rail Station", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 8712, + "codeIataAirport": "XEE", + "codeIataCity": "XEE", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Lac Edouard Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "airportId": 8713, + "codeIataAirport": "XEF", + "codeIataCity": "YWG", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 49.886083, + "longitudeAirport": -97.152921, + "nameAirport": "Winnipeg Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 8714, + "codeIataAirport": "XEG", + "codeIataCity": "YGK", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 44.263565, + "longitudeAirport": -76.50336, + "nameAirport": "Kingston Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 8715, + "codeIataAirport": "XEH", + "codeIataCity": "XEH", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Ladysmith Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "airportId": 8716, + "codeIataAirport": "XEJ", + "codeIataCity": "XEJ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6049388", + "latitudeAirport": 48.44963, + "longitudeAirport": -123.50261, + "nameAirport": "Langford Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "airportId": 8717, + "codeIataAirport": "XEK", + "codeIataCity": "XEK", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Melville Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "-5", + "airportId": 8718, + "codeIataAirport": "XEL", + "codeIataCity": "XEL", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6943833", + "latitudeAirport": 48.00956, + "longitudeAirport": -65.33621, + "nameAirport": "New Carlisle Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 8719, + "codeIataAirport": "XEM", + "codeIataCity": "XEM", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "New Richmond Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "8", + "airportId": 8720, + "codeIataAirport": "XEN", + "codeIataCity": "XEN", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "8260925", + "latitudeAirport": 40.733334, + "longitudeAirport": 118.61667, + "nameAirport": "Xingcheng", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-3", + "airportId": 8721, + "codeIataAirport": "XEO", + "codeIataCity": "XEO", + "codeIcaoAirport": "", + "codeIso2Country": "GL", + "geonameId": "0", + "latitudeAirport": 69.333336, + "longitudeAirport": -51.0, + "nameAirport": "Harbour", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "-3", + "airportId": 8722, + "codeIataAirport": "XEQ", + "codeIataCity": "XEQ", + "codeIcaoAirport": "", + "codeIso2Country": "GL", + "geonameId": "0", + "latitudeAirport": 60.266666, + "longitudeAirport": -44.63333, + "nameAirport": "Harbour", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "1", + "airportId": 8723, + "codeIataAirport": "XER", + "codeIataCity": "SXB", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 48.54, + "longitudeAirport": 7.64, + "nameAirport": "Strasbourg Bus Service", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "airportId": 8724, + "codeIataAirport": "XES", + "codeIataCity": "XES", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.627777, + "longitudeAirport": -88.428055, + "nameAirport": "Lake Geneva Aire Estates Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 8725, + "codeIataAirport": "XET", + "codeIataCity": "FKB", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 49.0080848, + "longitudeAirport": 8.4037563, + "nameAirport": "Karlsruhe Bus Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "4", + "airportId": 8726, + "codeIataAirport": "XEU", + "codeIataCity": "DXB", + "codeIcaoAirport": "", + "codeIso2Country": "AE", + "geonameId": "0", + "latitudeAirport": 25.2644444, + "longitudeAirport": 55.3116667, + "nameAirport": "Hyatt Rgncy EY Bus Station", + "nameCountry": "United Arab Emirates", + "phone": "", + "timezone": "Asia/Dubai" + }, + { + "GMT": "1", + "airportId": 8727, + "codeIataAirport": "XEV", + "codeIataCity": "STO", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 59.3327881, + "longitudeAirport": 18.0644881, + "nameAirport": "Stockholm C Rail Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 8728, + "codeIataAirport": "XEW", + "codeIataCity": "XEW", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "7118038", + "latitudeAirport": 59.21721, + "longitudeAirport": 17.937, + "nameAirport": "Flemingsberg Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 8729, + "codeIataAirport": "XEX", + "codeIataCity": "PAR", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 48.833332, + "longitudeAirport": 2.65, + "nameAirport": "Aerogare", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-4", + "airportId": 8730, + "codeIataAirport": "XEY", + "codeIataCity": "XEY", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Miramichi Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Moncton" + }, + { + "GMT": "1", + "airportId": 8731, + "codeIataAirport": "XEZ", + "codeIataCity": "JSO", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 59.2, + "longitudeAirport": 17.6167, + "nameAirport": "Sodertalje S Railway", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 8732, + "codeIataAirport": "XFA", + "codeIataCity": "LIL", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 50.62925, + "longitudeAirport": 3.057256, + "nameAirport": "Lille Flanders RailwaySv", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-4", + "airportId": 8733, + "codeIataAirport": "XFC", + "codeIataCity": "XFC", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5957777", + "latitudeAirport": 45.66043, + "longitudeAirport": -66.61387, + "nameAirport": "Fredericton Junction Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Moncton" + }, + { + "GMT": "-5", + "airportId": 8734, + "codeIataAirport": "XFD", + "codeIataCity": "XFD", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Stratford Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 8735, + "codeIataAirport": "XFE", + "codeIataCity": "XFE", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6098332", + "latitudeAirport": 47.91684, + "longitudeAirport": -74.61587, + "nameAirport": "Parent Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "airportId": 8736, + "codeIataAirport": "XFF", + "codeIataCity": "CQF", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 50.95129, + "longitudeAirport": 1.858686, + "nameAirport": "Calais-Frethun Rail Station", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 8737, + "codeIataAirport": "XFG", + "codeIataCity": "XFG", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6621052", + "latitudeAirport": 48.48794, + "longitudeAirport": -64.29852, + "nameAirport": "Perce Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "airportId": 8738, + "codeIataAirport": "XFH", + "codeIataCity": "XFH", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Strangnas Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "airportId": 8739, + "codeIataAirport": "XFI", + "codeIataCity": "XFI", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6943829", + "latitudeAirport": 48.16425, + "longitudeAirport": -64.97847, + "nameAirport": "Port-Daniel Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "airportId": 8740, + "codeIataAirport": "XFJ", + "codeIataCity": "EKT", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 59.3664682, + "longitudeAirport": 16.5084272, + "nameAirport": "Eskilstuna C Rail Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "airportId": 8741, + "codeIataAirport": "XFK", + "codeIataCity": "XFK", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Senneterre Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 8742, + "codeIataAirport": "XFL", + "codeIataCity": "XFL", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6145489", + "latitudeAirport": 46.56675, + "longitudeAirport": -72.74913, + "nameAirport": "Shawinigan Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "airportId": 8743, + "codeIataAirport": "XFM", + "codeIataCity": "XFM", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Shawnigan Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "8", + "airportId": 8744, + "codeIataAirport": "XFN", + "codeIataCity": "XFN", + "codeIcaoAirport": "ZHXF", + "codeIso2Country": "CN", + "geonameId": "7731635", + "latitudeAirport": 32.151558, + "longitudeAirport": 112.28627, + "nameAirport": "Xiangfan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 8745, + "codeIataAirport": "XFO", + "codeIataCity": "XFO", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6161761", + "latitudeAirport": 48.66242, + "longitudeAirport": -78.68485, + "nameAirport": "Taschereau Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "airportId": 8746, + "codeIataAirport": "XFP", + "codeIataCity": "MMA", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 55.61, + "longitudeAirport": 13.004, + "nameAirport": "Malmo C Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "airportId": 8747, + "codeIataAirport": "XFQ", + "codeIataCity": "XFQ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Weymont Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "airportId": 8748, + "codeIataAirport": "XFR", + "codeIataCity": "MMA", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 55.61, + "longitudeAirport": 13.004, + "nameAirport": "Malmo Syd Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "airportId": 8749, + "codeIataAirport": "XFS", + "codeIataCity": "XFS", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Alexandria Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "airportId": 8750, + "codeIataAirport": "XFU", + "codeIataCity": "XFU", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "2669098", + "latitudeAirport": 60.34269, + "longitudeAirport": 17.51812, + "nameAirport": "Tierp Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "airportId": 8751, + "codeIataAirport": "XFV", + "codeIataCity": "XFV", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5907990", + "latitudeAirport": 43.1334, + "longitudeAirport": -80.26636, + "nameAirport": "Brantford Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "airportId": 8752, + "codeIataAirport": "XFW", + "codeIataCity": "HAM", + "codeIcaoAirport": "EDHI", + "codeIso2Country": "DE", + "geonameId": "3208175", + "latitudeAirport": 52.535835, + "longitudeAirport": 9.836945, + "nameAirport": "Finkenwerder", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "airportId": 8753, + "codeIataAirport": "XFY", + "codeIataCity": "YQB", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 46.8032826, + "longitudeAirport": -71.242796, + "nameAirport": "Sainte-Foy Railway", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 8754, + "codeIataAirport": "XFZ", + "codeIataCity": "YQB", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 46.716667, + "longitudeAirport": -71.25, + "nameAirport": "Charny", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "0", + "airportId": 8755, + "codeIataAirport": "XGA", + "codeIataCity": "XGA", + "codeIcaoAirport": "", + "codeIso2Country": "BF", + "geonameId": "0", + "latitudeAirport": 10.333333, + "longitudeAirport": -3.183333, + "nameAirport": "Gaoua", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "1", + "airportId": 8756, + "codeIataAirport": "XGB", + "codeIataCity": "PAR", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 49.016666, + "longitudeAirport": 2.565278, + "nameAirport": "Gare Montparnasse", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 8757, + "codeIataAirport": "XGC", + "codeIataCity": "XGC", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Lund C Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 8758, + "codeIataAirport": "XGD", + "codeIataCity": "XGD", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3162955", + "latitudeAirport": 58.46151, + "longitudeAirport": 8.77253, + "nameAirport": "Arendal Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "airportId": 8759, + "codeIataAirport": "XGE", + "codeIataCity": "YOW", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 45.411572, + "longitudeAirport": -75.698194, + "nameAirport": "Ottawa Bus Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "0", + "airportId": 8760, + "codeIataAirport": "XGG", + "codeIataCity": "XGG", + "codeIcaoAirport": "DFEG", + "codeIso2Country": "BF", + "geonameId": "7730459", + "latitudeAirport": 14.433333, + "longitudeAirport": -0.233333, + "nameAirport": "Gorom-Gorom", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "1", + "airportId": 8761, + "codeIataAirport": "XGH", + "codeIataCity": "XGH", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Flam Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8762, + "codeIataAirport": "XGI", + "codeIataCity": "XGI", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Andalsnes Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "airportId": 8763, + "codeIataAirport": "XGJ", + "codeIataCity": "XGJ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5924579", + "latitudeAirport": 43.95977, + "longitudeAirport": -78.16515, + "nameAirport": "Cobourg Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 8764, + "codeIataAirport": "XGK", + "codeIataCity": "XGK", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Coteau Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "airportId": 8765, + "codeIataAirport": "XGL", + "codeIataCity": "XGL", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298713", + "latitudeAirport": 56.233334, + "longitudeAirport": -100.55, + "nameAirport": "Granville Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "0", + "airportId": 8766, + "codeIataAirport": "XGM", + "codeIataCity": "XGM", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2648208", + "latitudeAirport": 52.91149, + "longitudeAirport": -0.64184, + "nameAirport": "Grantham Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 8767, + "codeIataAirport": "XGN", + "codeIataCity": "XGN", + "codeIcaoAirport": "FNXA", + "codeIso2Country": "AO", + "geonameId": "7668260", + "latitudeAirport": -16.75, + "longitudeAirport": 14.972222, + "nameAirport": "Xangongo", + "nameCountry": "Angola", + "phone": "", + "timezone": "Africa/Luanda" + }, + { + "GMT": "1", + "airportId": 8768, + "codeIataAirport": "XGP", + "codeIataCity": "XGP", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Dombas Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "2", + "airportId": 8769, + "codeIataAirport": "XGQ", + "codeIataCity": "XGQ", + "codeIcaoAirport": "", + "codeIso2Country": "FI", + "geonameId": "7116868", + "latitudeAirport": 68.41961, + "longitudeAirport": 27.41475, + "nameAirport": "Saariselka Bus Station", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-5", + "airportId": 8770, + "codeIataAirport": "XGR", + "codeIataCity": "XGR", + "codeIcaoAirport": "CYLU", + "codeIso2Country": "CA", + "geonameId": "5989203", + "latitudeAirport": 58.5, + "longitudeAirport": -65.98333, + "nameAirport": "Kangiqsualujjuaq", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "airportId": 8771, + "codeIataAirport": "XGS", + "codeIataCity": "XGS", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Gjerstad Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8772, + "codeIataAirport": "XGU", + "codeIataCity": "XGU", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3162657", + "latitudeAirport": 59.83333, + "longitudeAirport": 10.43721, + "nameAirport": "Asker Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "airportId": 8773, + "codeIataAirport": "XGW", + "codeIataCity": "XGW", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5959326", + "latitudeAirport": 44.33342, + "longitudeAirport": -76.16607, + "nameAirport": "Gananoque Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "2", + "airportId": 8774, + "codeIataAirport": "XGX", + "codeIataCity": "XGX", + "codeIcaoAirport": "", + "codeIso2Country": "FI", + "geonameId": "7117281", + "latitudeAirport": 67.80509, + "longitudeAirport": 24.79614, + "nameAirport": "Levi Bus Station", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-5", + "airportId": 8775, + "codeIataAirport": "XGY", + "codeIataCity": "XGY", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5967149", + "latitudeAirport": 43.20011, + "longitudeAirport": -79.56631, + "nameAirport": "Grimsby Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "airportId": 8776, + "codeIataAirport": "XGZ", + "codeIataCity": "XGZ", + "codeIcaoAirport": "", + "codeIso2Country": "AT", + "geonameId": "2781503", + "latitudeAirport": 47.50311, + "longitudeAirport": 9.7471, + "nameAirport": "Bregenz Railway Station", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "2", + "airportId": 8777, + "codeIataAirport": "XHA", + "codeIataCity": "XHA", + "codeIcaoAirport": "", + "codeIso2Country": "FI", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Yllasjarvi Bus Station", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "2", + "airportId": 8778, + "codeIataAirport": "XHC", + "codeIataCity": "XHC", + "codeIcaoAirport": "", + "codeIso2Country": "FI", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Akaslompolo Bus Station", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "2", + "airportId": 8779, + "codeIataAirport": "XHD", + "codeIataCity": "XHD", + "codeIcaoAirport": "", + "codeIso2Country": "FI", + "geonameId": "7289327", + "latitudeAirport": 66.16342, + "longitudeAirport": 29.12064, + "nameAirport": "Ruka Bus Station", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "1", + "airportId": 8780, + "codeIataAirport": "XHF", + "codeIataCity": "XHF", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Honefoss Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "airportId": 8781, + "codeIataAirport": "XHG", + "codeIataCity": "YOW", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 45.411572, + "longitudeAirport": -75.698194, + "nameAirport": "Ottawa Bus Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "airportId": 8782, + "codeIataAirport": "XHH", + "codeIataCity": "WBU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.0149856, + "longitudeAirport": -105.2705456, + "nameAirport": "Boulder Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 8783, + "codeIataAirport": "XHI", + "codeIataCity": "XHI", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2905457", + "latitudeAirport": 49.56798, + "longitudeAirport": 10.88565, + "nameAirport": "Herzogenaurach Bus Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 8784, + "codeIataAirport": "XHJ", + "codeIataCity": "AAH", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 50.7754385, + "longitudeAirport": 6.0815102, + "nameAirport": "Aachen Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 8785, + "codeIataAirport": "XHK", + "codeIataCity": "VAF", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 44.933393, + "longitudeAirport": 4.89236, + "nameAirport": "Valence TGV Railway Station", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 8786, + "codeIataAirport": "XHL", + "codeIataCity": "XHL", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Nelaug Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "airportId": 8787, + "codeIataAirport": "XHM", + "codeIataCity": "XHM", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Georgetown Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "airportId": 8788, + "codeIataAirport": "XHN", + "codeIataCity": "LGG", + "codeIcaoAirport": "", + "codeIso2Country": "BE", + "geonameId": "0", + "latitudeAirport": 50.63333, + "longitudeAirport": 5.56666, + "nameAirport": "Guillemins, Raiway Stn", + "nameCountry": "Belgium", + "phone": "", + "timezone": "Europe/Brussels" + }, + { + "GMT": "8", + "airportId": 8789, + "codeIataAirport": "XHO", + "codeIataCity": "XHO", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "City Bus Station", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 8790, + "codeIataAirport": "XHP", + "codeIataCity": "PAR", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 48.856614, + "longitudeAirport": 2.3522219, + "nameAirport": "Gare de l'Est Rail Station", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "3", + "airportId": 8791, + "codeIataAirport": "XHQ", + "codeIataCity": "XHQ", + "codeIcaoAirport": "", + "codeIso2Country": "TR", + "geonameId": "751817", + "latitudeAirport": 41.18222, + "longitudeAirport": 41.81944, + "nameAirport": "Hopa Bus Station", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-8", + "airportId": 8792, + "codeIataAirport": "XHS", + "codeIataCity": "XHS", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Chemainus Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "airportId": 8793, + "codeIataAirport": "XHT", + "codeIataCity": "XHT", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Arna Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "0", + "airportId": 8794, + "codeIataAirport": "XHU", + "codeIataCity": "XHU", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2646393", + "latitudeAirport": 52.33049, + "longitudeAirport": -0.18651, + "nameAirport": "Huntingdon Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "airportId": 8795, + "codeIataAirport": "XHV", + "codeIataCity": "XHV", + "codeIcaoAirport": "", + "codeIso2Country": "RO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Brasov Bus Station", + "nameCountry": "Romania", + "phone": "", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "9.30", + "airportId": 8796, + "codeIataAirport": "XHW", + "codeIataCity": "ASP", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -23.7002104, + "longitudeAirport": 133.8806114, + "nameAirport": "Alice Springs Railway", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "9.30", + "airportId": 8797, + "codeIataAirport": "XHX", + "codeIataCity": "ADL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -34.9286212, + "longitudeAirport": 138.5999594, + "nameAirport": "Adelaide Keswick Railway", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-5", + "airportId": 8798, + "codeIataAirport": "XIA", + "codeIataCity": "XIA", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5967629", + "latitudeAirport": 43.5501, + "longitudeAirport": -80.24967, + "nameAirport": "Guelph Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 8799, + "codeIataAirport": "XIB", + "codeIataCity": "XIB", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5983175", + "latitudeAirport": 43.03339, + "longitudeAirport": -80.88302, + "nameAirport": "Ingersoll Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "8", + "airportId": 8800, + "codeIataAirport": "XIC", + "codeIataCity": "XIC", + "codeIcaoAirport": "ZUXC", + "codeIso2Country": "CN", + "geonameId": "7668808", + "latitudeAirport": 27.981922, + "longitudeAirport": 102.187645, + "nameAirport": "Xichang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 8801, + "codeIataAirport": "XID", + "codeIataCity": "XID", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6068242", + "latitudeAirport": 45.28339, + "longitudeAirport": -74.84928, + "nameAirport": "Maxville Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "7", + "airportId": 8802, + "codeIataAirport": "XIE", + "codeIataCity": "XIE", + "codeIcaoAirport": "", + "codeIso2Country": "LA", + "geonameId": "0", + "latitudeAirport": 19.65, + "longitudeAirport": 100.833336, + "nameAirport": "Xienglom", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-5", + "airportId": 8803, + "codeIataAirport": "XIF", + "codeIataCity": "XIF", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6085931", + "latitudeAirport": 44.25012, + "longitudeAirport": -76.94944, + "nameAirport": "Napanee Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-3", + "airportId": 8804, + "codeIataAirport": "XIG", + "codeIataCity": "XIG", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "6318968", + "latitudeAirport": -6.966667, + "longitudeAirport": -48.8, + "nameAirport": "Xinguara", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Belem" + }, + { + "GMT": "-5", + "airportId": 8805, + "codeIataAirport": "XII", + "codeIataCity": "XII", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6113027", + "latitudeAirport": 44.71681, + "longitudeAirport": -75.51604, + "nameAirport": "Prescott Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "3", + "airportId": 8806, + "codeIataAirport": "XIJ", + "codeIataCity": "XIJ", + "codeIcaoAirport": "", + "codeIso2Country": "KW", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Ahmed Al Jaber", + "nameCountry": "Kuwait", + "phone": "", + "timezone": "Asia/Kuwait" + }, + { + "GMT": "1", + "airportId": 8807, + "codeIataAirport": "XIK", + "codeIataCity": "MIL", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 45.463681, + "longitudeAirport": 9.1881714, + "nameAirport": "Central Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "8", + "airportId": 8808, + "codeIataAirport": "XIL", + "codeIataCity": "XIL", + "codeIcaoAirport": "ZBXH", + "codeIso2Country": "CN", + "geonameId": "7730284", + "latitudeAirport": 43.918762, + "longitudeAirport": 115.95924, + "nameAirport": "Xilinhot", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 8809, + "codeIataAirport": "XIM", + "codeIataCity": "XIM", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Saint Hyacinthe Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "8", + "airportId": 8810, + "codeIataAirport": "XIN", + "codeIataCity": "XIN", + "codeIcaoAirport": "ZGXN", + "codeIso2Country": "CN", + "geonameId": "7731636", + "latitudeAirport": 24.0, + "longitudeAirport": 116.0, + "nameAirport": "Xingning", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 8811, + "codeIataAirport": "XIO", + "codeIataCity": "XIO", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "St Marys Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 8812, + "codeIataAirport": "XIP", + "codeIataCity": "XIP", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Woodstock Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-3", + "airportId": 8813, + "codeIataAirport": "XIQ", + "codeIataCity": "XIQ", + "codeIcaoAirport": "", + "codeIso2Country": "GL", + "geonameId": "0", + "latitudeAirport": 69.0, + "longitudeAirport": -51.0, + "nameAirport": "Harbour", + "nameCountry": "Greenland", + "phone": "", + "timezone": "America/Godthab" + }, + { + "GMT": "1", + "airportId": 8814, + "codeIataAirport": "XIR", + "codeIataCity": "DRS", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 51.13, + "longitudeAirport": 13.77, + "nameAirport": "Dresden Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 8815, + "codeIataAirport": "XIT", + "codeIataCity": "LEJ", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 51.43, + "longitudeAirport": 12.24, + "nameAirport": "Leipzig Hbf Rail Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 8816, + "codeIataAirport": "XIU", + "codeIataCity": "ERF", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 50.9737341, + "longitudeAirport": 11.0224351, + "nameAirport": "Erfurt Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 8817, + "codeIataAirport": "XIV", + "codeIataCity": "VLL", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 41.6529434, + "longitudeAirport": -4.7283811, + "nameAirport": "Campo Grande Rail Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 8818, + "codeIataAirport": "XIX", + "codeIataCity": "VRN", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 45.4383278, + "longitudeAirport": 10.9917623, + "nameAirport": "Porta Nuova Railway", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "8", + "airportId": 8819, + "codeIataAirport": "XIY", + "codeIataCity": "SIA", + "codeIcaoAirport": "ZLXY", + "codeIso2Country": "CN", + "geonameId": "2001154", + "latitudeAirport": 34.441154, + "longitudeAirport": 108.75605, + "nameAirport": "Xianyang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 8820, + "codeIataAirport": "XIZ", + "codeIataCity": "RHE", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 49.258329, + "longitudeAirport": 4.031696, + "nameAirport": "Champagne-Ardenne TGV", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 8821, + "codeIataAirport": "XJA", + "codeIataCity": "XJA", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3163269", + "latitudeAirport": 62.10766, + "longitudeAirport": 10.63073, + "nameAirport": "Alvdal Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8822, + "codeIataAirport": "XJB", + "codeIataCity": "BCN", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 41.387917, + "longitudeAirport": 2.1699187, + "nameAirport": "Barcelona Bus Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 8823, + "codeIataAirport": "XJC", + "codeIataCity": "OLO", + "codeIcaoAirport": "", + "codeIso2Country": "CZ", + "geonameId": "0", + "latitudeAirport": 49.5953879, + "longitudeAirport": 17.2518721, + "nameAirport": "Olomouc Main Railway Station", + "nameCountry": "Czech Republic", + "phone": "", + "timezone": "Europe/Prague" + }, + { + "GMT": "3", + "airportId": 8824, + "codeIataAirport": "XJD", + "codeIataCity": "XJD", + "codeIcaoAirport": "OTBH", + "codeIso2Country": "QA", + "geonameId": "6298958", + "latitudeAirport": 25.11667, + "longitudeAirport": 51.3, + "nameAirport": "Al Udeid AB", + "nameCountry": "Qatar", + "phone": "", + "timezone": "Asia/Qatar" + }, + { + "GMT": "1", + "airportId": 8825, + "codeIataAirport": "XJE", + "codeIataCity": "SKS", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 55.23, + "longitudeAirport": 9.26, + "nameAirport": "Railway Service", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 8826, + "codeIataAirport": "XJF", + "codeIataCity": "BLE", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 60.4856047, + "longitudeAirport": 15.4363017, + "nameAirport": "Falun Bus Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "9.30", + "airportId": 8827, + "codeIataAirport": "XJG", + "codeIataCity": "DRW", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -12.4628198, + "longitudeAirport": 130.8417694, + "nameAirport": "Darwin Railway", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "8", + "airportId": 8828, + "codeIataAirport": "XJH", + "codeIataCity": "HKG", + "codeIcaoAirport": "", + "codeIso2Country": "HK", + "geonameId": "0", + "latitudeAirport": 22.2478599, + "longitudeAirport": 114.2033843, + "nameAirport": "Hong Kong Harbour", + "nameCountry": "Hong Kong", + "phone": "", + "timezone": "Asia/Hong_Kong" + }, + { + "GMT": "1", + "airportId": 8829, + "codeIataAirport": "XJI", + "codeIataCity": "CQM", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 38.9860963, + "longitudeAirport": -3.9272629, + "nameAirport": "Ciudad Real Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 8830, + "codeIataAirport": "XJJ", + "codeIataCity": "ABC", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 38.9976516, + "longitudeAirport": -1.8600701, + "nameAirport": "Albacete Bus Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "2", + "airportId": 8831, + "codeIataAirport": "XJK", + "codeIataCity": "PLQ", + "codeIcaoAirport": "", + "codeIso2Country": "LT", + "geonameId": "0", + "latitudeAirport": 55.7108026, + "longitudeAirport": 21.1318065, + "nameAirport": "Klaipeda Bus Station", + "nameCountry": "Lithuania", + "phone": "", + "timezone": "Europe/Vilnius" + }, + { + "GMT": "-5", + "airportId": 8832, + "codeIataAirport": "XJL", + "codeIataCity": "XJL", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5987650", + "latitudeAirport": 46.01677, + "longitudeAirport": -73.44915, + "nameAirport": "Joliette Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "airportId": 8833, + "codeIataAirport": "XJN", + "codeIataCity": "VLL", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 41.6529434, + "longitudeAirport": -4.7283811, + "nameAirport": "Valladolid Bus Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 8834, + "codeIataAirport": "XJO", + "codeIataCity": "XJO", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Soria Bus Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 8835, + "codeIataAirport": "XJP", + "codeIataCity": "PED", + "codeIcaoAirport": "", + "codeIso2Country": "CZ", + "geonameId": "0", + "latitudeAirport": 50.0378281, + "longitudeAirport": 15.7808335, + "nameAirport": "Pardubice Main Railway Station", + "nameCountry": "Czech Republic", + "phone": "", + "timezone": "Europe/Prague" + }, + { + "GMT": "-5", + "airportId": 8836, + "codeIataAirport": "XJQ", + "codeIataCity": "XJQ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Jonquiere Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "airportId": 8837, + "codeIataAirport": "XJR", + "codeIataCity": "XJR", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Lorca Bus Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 8838, + "codeIataAirport": "XJS", + "codeIataCity": "XJS", + "codeIcaoAirport": "", + "codeIso2Country": "AT", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Kitzbuehl Railway", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "1", + "airportId": 8839, + "codeIataAirport": "XJT", + "codeIataCity": "TUF", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 47.394144, + "longitudeAirport": 0.68484, + "nameAirport": "Tours Railway Station", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 8840, + "codeIataAirport": "XJU", + "codeIataCity": "RGS", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Burgos Bus Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 8841, + "codeIataAirport": "XJV", + "codeIataCity": "OSR", + "codeIcaoAirport": "", + "codeIso2Country": "CZ", + "geonameId": "0", + "latitudeAirport": 49.8412715, + "longitudeAirport": 18.2902483, + "nameAirport": "Ostrava Main Railway Station", + "nameCountry": "Czech Republic", + "phone": "", + "timezone": "Europe/Prague" + }, + { + "GMT": "1", + "airportId": 8842, + "codeIataAirport": "XJY", + "codeIataCity": "PAR", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 48.856614, + "longitudeAirport": 2.3522219, + "nameAirport": "Massy TGV Rail Station", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "0", + "airportId": 8843, + "codeIataAirport": "XKA", + "codeIataCity": "XKA", + "codeIcaoAirport": "DFEL", + "codeIso2Country": "BF", + "geonameId": "7668177", + "latitudeAirport": 12.483333, + "longitudeAirport": 1.516667, + "nameAirport": "Kantchari", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "1", + "airportId": 8844, + "codeIataAirport": "XKB", + "codeIataCity": "XKB", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3149563", + "latitudeAirport": 59.66858, + "longitudeAirport": 9.65017, + "nameAirport": "Kongsberg Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8845, + "codeIataAirport": "XKC", + "codeIataCity": "XKC", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 66.0, + "longitudeAirport": 12.5833, + "nameAirport": "Sandnes Railway", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8846, + "codeIataAirport": "XKD", + "codeIataCity": "XKD", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3154209", + "latitudeAirport": 59.12478, + "longitudeAirport": 11.38754, + "nameAirport": "Halden Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8847, + "codeIataAirport": "XKE", + "codeIataCity": "XKE", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3141982", + "latitudeAirport": 61.13484, + "longitudeAirport": 11.36409, + "nameAirport": "Rena Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8848, + "codeIataAirport": "XKF", + "codeIataCity": "XKF", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3156529", + "latitudeAirport": 59.2181, + "longitudeAirport": 10.9298, + "nameAirport": "Fredrikstad Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8849, + "codeIataAirport": "XKG", + "codeIataCity": "XKG", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3154907", + "latitudeAirport": 64.46543, + "longitudeAirport": 12.31491, + "nameAirport": "Grong Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "7", + "airportId": 8850, + "codeIataAirport": "XKH", + "codeIataCity": "XKH", + "codeIcaoAirport": "VLXK", + "codeIso2Country": "LA", + "geonameId": "7731637", + "latitudeAirport": 19.3, + "longitudeAirport": 103.36667, + "nameAirport": "Xieng Khouang", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "1", + "airportId": 8851, + "codeIataAirport": "XKI", + "codeIataCity": "XKI", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Lillestrom Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8852, + "codeIataAirport": "XKJ", + "codeIataCity": "XKJ", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Steinkjer Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8853, + "codeIataAirport": "XKK", + "codeIataCity": "XKK", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3148129", + "latitudeAirport": 59.05328, + "longitudeAirport": 10.03517, + "nameAirport": "Larvik Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "8", + "airportId": 8854, + "codeIataAirport": "XKL", + "codeIataCity": "KUL", + "codeIcaoAirport": "", + "codeIso2Country": "MY", + "geonameId": "0", + "latitudeAirport": 3.139003, + "longitudeAirport": 101.686855, + "nameAirport": "Sentral Railway Station", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "1", + "airportId": 8855, + "codeIataAirport": "XKM", + "codeIataCity": "XKM", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3145375", + "latitudeAirport": 59.43403, + "longitudeAirport": 10.65771, + "nameAirport": "Moss Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8856, + "codeIataAirport": "XKN", + "codeIataCity": "XKN", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3157520", + "latitudeAirport": 60.6, + "longitudeAirport": 7.5, + "nameAirport": "Finse Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-8", + "airportId": 8857, + "codeIataAirport": "XKO", + "codeIataCity": "XKO", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260834", + "latitudeAirport": 53.566666, + "longitudeAirport": -127.933334, + "nameAirport": "Kemano", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "airportId": 8858, + "codeIataAirport": "XKP", + "codeIataCity": "XKP", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3142657", + "latitudeAirport": 59.14054, + "longitudeAirport": 9.6561, + "nameAirport": "Porsgrunn Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8859, + "codeIataAirport": "XKQ", + "codeIataCity": "XKQ", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3140084", + "latitudeAirport": 59.28391, + "longitudeAirport": 11.10962, + "nameAirport": "Sarpsborg Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8860, + "codeIataAirport": "XKR", + "codeIataCity": "KRS", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 58.150937, + "longitudeAirport": 7.9961926, + "nameAirport": "Kristiansand Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "airportId": 8861, + "codeIataAirport": "XKS", + "codeIataCity": "XKS", + "codeIcaoAirport": "CYAQ", + "codeIso2Country": "CA", + "geonameId": "7668110", + "latitudeAirport": 53.52, + "longitudeAirport": -88.64667, + "nameAirport": "Kasabonika", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-4", + "airportId": 8862, + "codeIataAirport": "XKV", + "codeIataCity": "XKV", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6137063", + "latitudeAirport": 45.91875, + "longitudeAirport": -64.38455, + "nameAirport": "Sackville Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Moncton" + }, + { + "GMT": "1", + "airportId": 8863, + "codeIataAirport": "XKW", + "codeIataCity": "XKW", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Tonsberg Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "0", + "airportId": 8864, + "codeIataAirport": "XKY", + "codeIataCity": "XKY", + "codeIcaoAirport": "DFCA", + "codeIso2Country": "BF", + "geonameId": "7668172", + "latitudeAirport": 13.083333, + "longitudeAirport": -1.083333, + "nameAirport": "Kaya", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "1", + "airportId": 8865, + "codeIataAirport": "XKZ", + "codeIataCity": "XKZ", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3131538", + "latitudeAirport": 61.59515, + "longitudeAirport": 9.75232, + "nameAirport": "Vinstra Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "airportId": 8866, + "codeIataAirport": "XLB", + "codeIataCity": "XLB", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 58.6, + "longitudeAirport": -101.46667, + "nameAirport": "Lac Brochet", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 8867, + "codeIataAirport": "XLF", + "codeIataCity": "XLF", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 59.0, + "longitudeAirport": -69.0, + "nameAirport": "Leaf Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 8868, + "codeIataAirport": "XLJ", + "codeIataCity": "YQB", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 46.8032826, + "longitudeAirport": -71.242796, + "nameAirport": "Quebec Stn. Railway", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 8869, + "codeIataAirport": "XLK", + "codeIataCity": "YQB", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 46.8032826, + "longitudeAirport": -71.242796, + "nameAirport": "Levis Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 8870, + "codeIataAirport": "XLM", + "codeIataCity": "YMQ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 45.5088889, + "longitudeAirport": -73.5541667, + "nameAirport": "St Lambert Railway", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "7", + "airportId": 8871, + "codeIataAirport": "XLO", + "codeIataCity": "XLO", + "codeIcaoAirport": "", + "codeIso2Country": "VN", + "geonameId": "1575626", + "latitudeAirport": 10.333333, + "longitudeAirport": 105.46667, + "nameAirport": "Long Xuyen", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-5", + "airportId": 8872, + "codeIataAirport": "XLP", + "codeIataCity": "XLP", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Matapedia Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 8873, + "codeIataAirport": "XLQ", + "codeIataCity": "YTO", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 43.653524, + "longitudeAirport": -79.3839069, + "nameAirport": "Guildwood Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "0", + "airportId": 8874, + "codeIataAirport": "XLS", + "codeIataCity": "XLS", + "codeIcaoAirport": "GOSS", + "codeIso2Country": "SN", + "geonameId": "6297230", + "latitudeAirport": 16.050278, + "longitudeAirport": -16.460278, + "nameAirport": "St Louis", + "nameCountry": "Senegal", + "phone": "", + "timezone": "Africa/Dakar" + }, + { + "GMT": "0", + "airportId": 8875, + "codeIataAirport": "XLU", + "codeIataCity": "XLU", + "codeIcaoAirport": "DFCL", + "codeIso2Country": "BF", + "geonameId": "7668173", + "latitudeAirport": 11.1, + "longitudeAirport": -2.1, + "nameAirport": "Leo", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-5", + "airportId": 8876, + "codeIataAirport": "XLV", + "codeIataCity": "XLV", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6087892", + "latitudeAirport": 43.10012, + "longitudeAirport": -79.06627, + "nameAirport": "Niagara Falls Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "airportId": 8877, + "codeIataAirport": "XLW", + "codeIataCity": "XLW", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2878912", + "latitudeAirport": 53.166668, + "longitudeAirport": 8.6, + "nameAirport": "Lemwerder", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "airportId": 8878, + "codeIataAirport": "XLY", + "codeIataCity": "XLY", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Aldershot Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-4", + "airportId": 8879, + "codeIataAirport": "XLZ", + "codeIataCity": "XLZ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6169587", + "latitudeAirport": 45.36685, + "longitudeAirport": -63.26538, + "nameAirport": "Truro Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Halifax" + }, + { + "GMT": "8", + "airportId": 8880, + "codeIataAirport": "XMA", + "codeIataCity": "XMA", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "8299014", + "latitudeAirport": 7.766667, + "longitudeAirport": 125.0, + "nameAirport": "Maramag", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "4", + "airportId": 8881, + "codeIataAirport": "XMB", + "codeIataCity": "DXB", + "codeIcaoAirport": "", + "codeIso2Country": "AE", + "geonameId": "0", + "latitudeAirport": 7.45, + "longitudeAirport": -4.333333, + "nameAirport": "Marina Mall EY Bus Station", + "nameCountry": "United Arab Emirates", + "phone": "", + "timezone": "Asia/Dubai" + }, + { + "GMT": "10", + "airportId": 8882, + "codeIataAirport": "XMC", + "codeIataCity": "XMC", + "codeIcaoAirport": "YMCO", + "codeIso2Country": "AU", + "geonameId": "7668739", + "latitudeAirport": -37.6, + "longitudeAirport": 149.71666, + "nameAirport": "Mallacoota", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-6", + "airportId": 8883, + "codeIataAirport": "XMD", + "codeIataCity": "XMD", + "codeIcaoAirport": "KMDS", + "codeIso2Country": "US", + "geonameId": "5229527", + "latitudeAirport": 44.0, + "longitudeAirport": -97.11667, + "nameAirport": "Madison", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "5.45", + "airportId": 8884, + "codeIataAirport": "XMG", + "codeIataCity": "XMG", + "codeIcaoAirport": "VNMN", + "codeIso2Country": "NP", + "geonameId": "7668624", + "latitudeAirport": 28.966667, + "longitudeAirport": 80.2, + "nameAirport": "Mahendranagar", + "nameCountry": "Nepal", + "phone": "", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-10", + "airportId": 8885, + "codeIataAirport": "XMH", + "codeIataCity": "XMH", + "codeIcaoAirport": "NTGI", + "codeIso2Country": "PF", + "geonameId": "6355147", + "latitudeAirport": -14.43795, + "longitudeAirport": -146.07051, + "nameAirport": "Manihi", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "3", + "airportId": 8886, + "codeIataAirport": "XMI", + "codeIataCity": "XMI", + "codeIcaoAirport": "HTMI", + "codeIso2Country": "TZ", + "geonameId": "7730623", + "latitudeAirport": -10.716667, + "longitudeAirport": 38.8, + "nameAirport": "Masasi", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "9.30", + "airportId": 8887, + "codeIataAirport": "XML", + "codeIataCity": "XML", + "codeIcaoAirport": "YMIN", + "codeIso2Country": "AU", + "geonameId": "7731638", + "latitudeAirport": -35.0, + "longitudeAirport": 137.5, + "nameAirport": "Minlaton", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "8", + "airportId": 8888, + "codeIataAirport": "XMN", + "codeIataCity": "XMN", + "codeIcaoAirport": "ZSAM", + "codeIso2Country": "CN", + "geonameId": "6301379", + "latitudeAirport": 24.536882, + "longitudeAirport": 118.1275, + "nameAirport": "Xiamen", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-8", + "airportId": 8889, + "codeIataAirport": "XMP", + "codeIataCity": "XMP", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298807", + "latitudeAirport": 62.86667, + "longitudeAirport": -135.91667, + "nameAirport": "Macmillan Pass", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-5", + "airportId": 8890, + "codeIataAirport": "XMS", + "codeIataCity": "XMS", + "codeIcaoAirport": "SEMC", + "codeIso2Country": "EC", + "geonameId": "7730172", + "latitudeAirport": -2.316667, + "longitudeAirport": -78.13333, + "nameAirport": "Macas", + "nameCountry": "Ecuador", + "phone": "", + "timezone": "America/Guayaquil" + }, + { + "GMT": "10", + "airportId": 8891, + "codeIataAirport": "XMY", + "codeIataCity": "XMY", + "codeIcaoAirport": "YYMI", + "codeIso2Country": "AU", + "geonameId": "7731639", + "latitudeAirport": -10.483333, + "longitudeAirport": 142.45, + "nameAirport": "Yam Island", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "0", + "airportId": 8892, + "codeIataAirport": "XMZ", + "codeIataCity": "XMZ", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2643266", + "latitudeAirport": 53.26023, + "longitudeAirport": -2.12564, + "nameAirport": "Macclesfield Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 8893, + "codeIataAirport": "XNA", + "codeIataCity": "FYV", + "codeIcaoAirport": "KXNA", + "codeIso2Country": "US", + "geonameId": "6299294", + "latitudeAirport": 36.275257, + "longitudeAirport": -94.29711, + "nameAirport": "Northwest Arkansas Regional", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "4", + "airportId": 8894, + "codeIataAirport": "XNB", + "codeIataCity": "DXB", + "codeIcaoAirport": "OMDB", + "codeIso2Country": "AE", + "geonameId": "0", + "latitudeAirport": 25.2644444, + "longitudeAirport": 55.3116667, + "nameAirport": "Chelsea Twr EY Bus Station", + "nameCountry": "United Arab Emirates", + "phone": " +971 4 224 5555", + "timezone": "Asia/Dubai" + }, + { + "GMT": "1", + "airportId": 8895, + "codeIataAirport": "XNC", + "codeIataCity": "MIL", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 45.463681, + "longitudeAirport": 9.1881714, + "nameAirport": "Cadorna Railway Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "airportId": 8896, + "codeIataAirport": "XND", + "codeIataCity": "XND", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3159016", + "latitudeAirport": 59.74389, + "longitudeAirport": 10.20449, + "nameAirport": "Drammen Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "0", + "airportId": 8897, + "codeIataAirport": "XNE", + "codeIataCity": "XNE", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Newport Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "7", + "airportId": 8898, + "codeIataAirport": "XNG", + "codeIataCity": "XNG", + "codeIcaoAirport": "", + "codeIso2Country": "VN", + "geonameId": "8260892", + "latitudeAirport": 15.113611, + "longitudeAirport": 108.77583, + "nameAirport": "Quang Ngai", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "0", + "airportId": 8899, + "codeIataAirport": "XNM", + "codeIataCity": "NQT", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 52.9551147, + "longitudeAirport": -1.1491718, + "nameAirport": "Nottingham Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "8", + "airportId": 8900, + "codeIataAirport": "XNN", + "codeIataCity": "XNN", + "codeIcaoAirport": "ZLXN", + "codeIso2Country": "CN", + "geonameId": "6301375", + "latitudeAirport": 36.525322, + "longitudeAirport": 102.03754, + "nameAirport": "Xining", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "0", + "airportId": 8901, + "codeIataAirport": "XNO", + "codeIataCity": "XNO", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2641435", + "latitudeAirport": 54.33901, + "longitudeAirport": -1.43243, + "nameAirport": "Northallerton Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 8902, + "codeIataAirport": "XNR", + "codeIataCity": "XNR", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "2625070", + "latitudeAirport": 55.04434, + "longitudeAirport": 9.41741, + "nameAirport": "Aabenraa Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "8", + "airportId": 8903, + "codeIataAirport": "XNT", + "codeIataCity": "XNT", + "codeIcaoAirport": "ZBXT", + "codeIso2Country": "CN", + "geonameId": "8261066", + "latitudeAirport": 37.1, + "longitudeAirport": 114.5, + "nameAirport": "Xingtai", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "0", + "airportId": 8904, + "codeIataAirport": "XNU", + "codeIataCity": "XNU", + "codeIcaoAirport": "DFON", + "codeIso2Country": "BF", + "geonameId": "7730464", + "latitudeAirport": 12.733333, + "longitudeAirport": -3.866667, + "nameAirport": "Nouna", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "0", + "airportId": 8905, + "codeIataAirport": "XNV", + "codeIataCity": "XNV", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2641157", + "latitudeAirport": 52.52323, + "longitudeAirport": -1.46523, + "nameAirport": "Nuneaton Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "airportId": 8906, + "codeIataAirport": "XNY", + "codeIataCity": "NYC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.76, + "longitudeAirport": -74.003, + "nameAirport": "39th Street Ferry", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "12", + "airportId": 8907, + "codeIataAirport": "XNZ", + "codeIataCity": "AKL", + "codeIcaoAirport": "", + "codeIso2Country": "NZ", + "geonameId": "0", + "latitudeAirport": -36.8484597, + "longitudeAirport": 174.7633315, + "nameAirport": "Auckland Ferry Port", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "1", + "airportId": 8908, + "codeIataAirport": "XOA", + "codeIataCity": "XOA", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Aalbaek Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 8909, + "codeIataAirport": "XOB", + "codeIataCity": "XOB", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3159822", + "latitudeAirport": 58.73536, + "longitudeAirport": 5.64766, + "nameAirport": "Bryne Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8910, + "codeIataAirport": "XOC", + "codeIataCity": "MAD", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 40.4166909, + "longitudeAirport": -3.7003454, + "nameAirport": "Atocha Railway St.", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 8911, + "codeIataAirport": "XOD", + "codeIataCity": "XOD", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Oppdal Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "0", + "airportId": 8912, + "codeIataAirport": "XOF", + "codeIataCity": "LON", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 51.51, + "longitudeAirport": 0.06, + "nameAirport": "Stratford International Rail Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 8913, + "codeIataAirport": "XOH", + "codeIataCity": "XJS", + "codeIcaoAirport": "", + "codeIso2Country": "AT", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Kitzbuehel Bus Station", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "1", + "airportId": 8914, + "codeIataAirport": "XOI", + "codeIataCity": "XOI", + "codeIcaoAirport": "", + "codeIso2Country": "AT", + "geonameId": "2775183", + "latitudeAirport": 47.01257, + "longitudeAirport": 10.29179, + "nameAirport": "Ischgl Bus Station", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "1", + "airportId": 8915, + "codeIataAirport": "XOJ", + "codeIataCity": "ODB", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 37.8847267, + "longitudeAirport": -4.7791517, + "nameAirport": "Cordoba Central Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-5", + "airportId": 8916, + "codeIataAirport": "XOK", + "codeIataCity": "XOK", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6092122", + "latitudeAirport": 43.45011, + "longitudeAirport": -79.68292, + "nameAirport": "Oakville Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "airportId": 8917, + "codeIataAirport": "XOL", + "codeIataCity": "XOL", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Myrdal Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "10", + "airportId": 8918, + "codeIataAirport": "XOM", + "codeIataCity": "MEL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -37.8131869, + "longitudeAirport": 144.9629796, + "nameAirport": "Melbourne Ferry Port", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-5", + "airportId": 8919, + "codeIataAirport": "XON", + "codeIataCity": "XON", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Carleton Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "airportId": 8920, + "codeIataAirport": "XOO", + "codeIataCity": "XOO", + "codeIcaoAirport": "", + "codeIso2Country": "AT", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Soelden Bus Station", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "1", + "airportId": 8921, + "codeIataAirport": "XOP", + "codeIataCity": "PIS", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 46.580224, + "longitudeAirport": 0.340375, + "nameAirport": "Poitiers Railway Station", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 8922, + "codeIataAirport": "XOQ", + "codeIataCity": "XOQ", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3139617", + "latitudeAirport": 58.42068, + "longitudeAirport": 6.66218, + "nameAirport": "Sira Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8923, + "codeIataAirport": "XOR", + "codeIataCity": "XOR", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3143120", + "latitudeAirport": 61.7712, + "longitudeAirport": 9.53529, + "nameAirport": "Otta Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8924, + "codeIataAirport": "XOU", + "codeIataCity": "XOU", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Guiomar Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 8925, + "codeIataAirport": "XOV", + "codeIataCity": "ANT", + "codeIcaoAirport": "", + "codeIso2Country": "AT", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "St Anton Bus Station", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "1", + "airportId": 8926, + "codeIataAirport": "XOW", + "codeIataCity": "XOW", + "codeIcaoAirport": "", + "codeIso2Country": "AT", + "geonameId": "2765282", + "latitudeAirport": 48.71667, + "longitudeAirport": 16.16667, + "nameAirport": "Seefeld Bus Station", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "0", + "airportId": 8927, + "codeIataAirport": "XPA", + "codeIataCity": "XPA", + "codeIcaoAirport": "DFEP", + "codeIso2Country": "BF", + "geonameId": "7668178", + "latitudeAirport": 11.25, + "longitudeAirport": 0.7, + "nameAirport": "Pama", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-8", + "airportId": 8928, + "codeIataAirport": "XPB", + "codeIataCity": "XPB", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Parksville Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "0", + "airportId": 8929, + "codeIataAirport": "XPF", + "codeIataCity": "XPF", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2640416", + "latitudeAirport": 54.66579, + "longitudeAirport": -2.75757, + "nameAirport": "Penrith Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 8930, + "codeIataAirport": "XPG", + "codeIataCity": "PAR", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 48.856614, + "longitudeAirport": 2.3522219, + "nameAirport": "Gare du Nord Railway", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 8931, + "codeIataAirport": "XPH", + "codeIataCity": "XPH", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Port Hope Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "airportId": 8932, + "codeIataAirport": "XPJ", + "codeIataCity": "MPL", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 43.610769, + "longitudeAirport": 3.876716, + "nameAirport": "Montpellier Railway", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "airportId": 8933, + "codeIataAirport": "XPK", + "codeIataCity": "XPK", + "codeIcaoAirport": "CZFG", + "codeIso2Country": "CA", + "geonameId": "7730045", + "latitudeAirport": 55.766666, + "longitudeAirport": -101.23333, + "nameAirport": "Pukatawagan", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-6", + "airportId": 8934, + "codeIataAirport": "XPL", + "codeIataCity": "XPL", + "codeIcaoAirport": "", + "codeIso2Country": "HN", + "geonameId": "3613321", + "latitudeAirport": 14.416667, + "longitudeAirport": -87.61667, + "nameAirport": "Coronel Enrique Soto Cano AB", + "nameCountry": "Honduras", + "phone": "", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-5", + "airportId": 8935, + "codeIataAirport": "XPN", + "codeIataCity": "XPN", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5907364", + "latitudeAirport": 43.68341, + "longitudeAirport": -79.76633, + "nameAirport": "Brampton Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "8", + "airportId": 8936, + "codeIataAirport": "XPO", + "codeIataCity": "PER", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -31.9522222, + "longitudeAirport": 115.8588889, + "nameAirport": "Perth Ferry Port", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "airportId": 8937, + "codeIataAirport": "XPP", + "codeIataCity": "XPP", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8299200", + "latitudeAirport": 53.0, + "longitudeAirport": -97.3, + "nameAirport": "Poplar River", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "8", + "airportId": 8938, + "codeIataAirport": "XPQ", + "codeIataCity": "XPQ", + "codeIcaoAirport": "", + "codeIso2Country": "MY", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Ferry", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "-7", + "airportId": 8939, + "codeIataAirport": "XPR", + "codeIataCity": "XPR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5767941", + "latitudeAirport": 43.016666, + "longitudeAirport": -102.51667, + "nameAirport": "Pine Ridge", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "0", + "airportId": 8940, + "codeIataAirport": "XPT", + "codeIataCity": "XPT", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Preston Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-9", + "airportId": 8941, + "codeIataAirport": "XPU", + "codeIataCity": "XPU", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "8299055", + "latitudeAirport": 70.333336, + "longitudeAirport": -149.33333, + "nameAirport": "West Kuparuk", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "airportId": 8942, + "codeIataAirport": "XPW", + "codeIataCity": "XPW", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2651269", + "latitudeAirport": 51.60928, + "longitudeAirport": -1.24214, + "nameAirport": "Parkway Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "airportId": 8943, + "codeIataAirport": "XPX", + "codeIataCity": "XPX", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6107171", + "latitudeAirport": 45.65008, + "longitudeAirport": -73.49917, + "nameAirport": "Pointe-aux-Trembles Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "2", + "airportId": 8944, + "codeIataAirport": "XPY", + "codeIataCity": "XPY", + "codeIcaoAirport": "", + "codeIso2Country": "FI", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Pyha Bus Station", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "1", + "airportId": 8945, + "codeIataAirport": "XPZ", + "codeIataCity": "LTT", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 43.283333, + "longitudeAirport": 6.633333, + "nameAirport": "Harbour", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 8946, + "codeIataAirport": "XQA", + "codeIataCity": "SVQ", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 37.38264, + "longitudeAirport": -5.9962951, + "nameAirport": "Santa Justa Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "0", + "airportId": 8947, + "codeIataAirport": "XQB", + "codeIataCity": "XQB", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2656192", + "latitudeAirport": 51.26249, + "longitudeAirport": -1.08708, + "nameAirport": "Basingstoke Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 8948, + "codeIataAirport": "XQD", + "codeIataCity": "XQD", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2656046", + "latitudeAirport": 52.13459, + "longitudeAirport": -0.46632, + "nameAirport": "Bedford Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 8949, + "codeIataAirport": "XQE", + "codeIataCity": "LON", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 51.51, + "longitudeAirport": 0.06, + "nameAirport": "Ebbsfleet International Rail Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 8950, + "codeIataAirport": "XQG", + "codeIataCity": "XQG", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Berwick-upon-Tweed Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 8951, + "codeIataAirport": "XQH", + "codeIataCity": "XQH", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2651347", + "latitudeAirport": 52.92277, + "longitudeAirport": -1.47663, + "nameAirport": "Derby Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 8952, + "codeIataAirport": "XQI", + "codeIataCity": "XQI", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2643567", + "latitudeAirport": 52.76667, + "longitudeAirport": -1.2, + "nameAirport": "Loughborough Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 8953, + "codeIataAirport": "XQL", + "codeIataCity": "XQL", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2644972", + "latitudeAirport": 54.06667, + "longitudeAirport": -2.83333, + "nameAirport": "Lancaster Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 8954, + "codeIataAirport": "XQM", + "codeIataCity": "XQM", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2643027", + "latitudeAirport": 52.4776, + "longitudeAirport": -0.92053, + "nameAirport": "Market Harborough Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "10", + "airportId": 8955, + "codeIataAirport": "XQN", + "codeIataCity": "BNE", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -27.4709331, + "longitudeAirport": 153.0235024, + "nameAirport": "Brisbane Ferry Port", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "airportId": 8956, + "codeIataAirport": "XQP", + "codeIataCity": "XQP", + "codeIcaoAirport": "MRQP", + "codeIso2Country": "CR", + "geonameId": "7668359", + "latitudeAirport": 9.439146, + "longitudeAirport": -84.13335, + "nameAirport": "Quepos", + "nameCountry": "Costa Rica", + "phone": "", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "2", + "airportId": 8957, + "codeIataAirport": "XQS", + "codeIataCity": "XQS", + "codeIcaoAirport": "", + "codeIso2Country": "FI", + "geonameId": "636173", + "latitudeAirport": 64.13333, + "longitudeAirport": 28.41667, + "nameAirport": "Sotkamo Bus Station", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "0", + "airportId": 8958, + "codeIataAirport": "XQT", + "codeIataCity": "XQT", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2644531", + "latitudeAirport": 52.68154, + "longitudeAirport": -1.82549, + "nameAirport": "Trent Valley Rail Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-8", + "airportId": 8959, + "codeIataAirport": "XQU", + "codeIataCity": "XQU", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "7883635", + "latitudeAirport": 49.340153, + "longitudeAirport": -124.39587, + "nameAirport": "Qualicum", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "0", + "airportId": 8960, + "codeIataAirport": "XQW", + "codeIataCity": "XQW", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2642135", + "latitudeAirport": 55.78924, + "longitudeAirport": -3.99187, + "nameAirport": "Motherwell Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 8961, + "codeIataAirport": "XRA", + "codeIataCity": "XRA", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Graasten Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "0", + "airportId": 8962, + "codeIataAirport": "XRC", + "codeIataCity": "XRC", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2638960", + "latitudeAirport": 53.34174, + "longitudeAirport": -2.73124, + "nameAirport": "Runcorn Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 8963, + "codeIataAirport": "XRD", + "codeIataCity": "XRD", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3158792", + "latitudeAirport": 58.45133, + "longitudeAirport": 5.9997, + "nameAirport": "Egersund Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "0", + "airportId": 8964, + "codeIataAirport": "XRE", + "codeIataCity": "XRE", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2639577", + "latitudeAirport": 51.45625, + "longitudeAirport": -0.97113, + "nameAirport": "Railway Service", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 8965, + "codeIataAirport": "XRF", + "codeIataCity": "MRS", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 43.296482, + "longitudeAirport": 5.36978, + "nameAirport": "Marseille Railway", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "0", + "airportId": 8966, + "codeIataAirport": "XRG", + "codeIataCity": "XRG", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2638977", + "latitudeAirport": 52.7593, + "longitudeAirport": -1.93694, + "nameAirport": "Trent Valley Rail Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "10", + "airportId": 8967, + "codeIataAirport": "XRH", + "codeIataCity": "XRH", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -33.6, + "longitudeAirport": 150.76889, + "nameAirport": "Richmond AFB", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "airportId": 8968, + "codeIataAirport": "XRJ", + "codeIataCity": "ROM", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 41.8905198, + "longitudeAirport": 12.4942486, + "nameAirport": "Termini Railway.", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "3", + "airportId": 8969, + "codeIataAirport": "XRK", + "codeIataCity": "MOW", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "0", + "latitudeAirport": 55.755786, + "longitudeAirport": 37.617633, + "nameAirport": "Paveletskiy Railway.", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-5", + "airportId": 8970, + "codeIataAirport": "XRP", + "codeIataCity": "XRP", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Riviere-a-Pierre Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "airportId": 8971, + "codeIataAirport": "XRR", + "codeIataCity": "XRR", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6127994", + "latitudeAirport": 61.983334, + "longitudeAirport": -132.45, + "nameAirport": "Ross River", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Whitehorse" + }, + { + "GMT": "0", + "airportId": 8972, + "codeIataAirport": "XRU", + "codeIataCity": "XRU", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2638978", + "latitudeAirport": 52.37092, + "longitudeAirport": -1.26417, + "nameAirport": "Rugby Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 8973, + "codeIataAirport": "XRY", + "codeIataCity": "XRY", + "codeIcaoAirport": "LEJR", + "codeIso2Country": "ES", + "geonameId": "6299340", + "latitudeAirport": 36.750614, + "longitudeAirport": -6.064535, + "nameAirport": "Jerez De La Frontera", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-4", + "airportId": 8974, + "codeIataAirport": "XSC", + "codeIataCity": "XSC", + "codeIcaoAirport": "MBSC", + "codeIso2Country": "TC", + "geonameId": "7668341", + "latitudeAirport": 21.515833, + "longitudeAirport": -71.529724, + "nameAirport": "South Caicos Airport", + "nameCountry": "Turks and Caicos Islands", + "phone": "", + "timezone": "America/Grand_Turk" + }, + { + "GMT": "-8", + "airportId": 8975, + "codeIataAirport": "XSD", + "codeIataCity": "TPH", + "codeIcaoAirport": "KTNX", + "codeIso2Country": "US", + "geonameId": "5513823", + "latitudeAirport": 38.033333, + "longitudeAirport": -117.23333, + "nameAirport": "Test Range", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "0", + "airportId": 8976, + "codeIataAirport": "XSE", + "codeIataCity": "XSE", + "codeIcaoAirport": "DFES", + "codeIso2Country": "BF", + "geonameId": "7730462", + "latitudeAirport": 13.433333, + "longitudeAirport": 0.533333, + "nameAirport": "Sebba", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "1", + "airportId": 8977, + "codeIataAirport": "XSH", + "codeIataCity": "TUF", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 47.394144, + "longitudeAirport": 0.68484, + "nameAirport": "St-Pierre-Corps RailSt", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "airportId": 8978, + "codeIataAirport": "XSI", + "codeIataCity": "XSI", + "codeIcaoAirport": "CZSN", + "codeIso2Country": "CA", + "geonameId": "7730048", + "latitudeAirport": 56.8, + "longitudeAirport": -98.916664, + "nameAirport": "South Indian Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 8979, + "codeIataAirport": "XSM", + "codeIataCity": "XSM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.283333, + "longitudeAirport": -76.63333, + "nameAirport": "St Marys", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 8980, + "codeIataAirport": "XSO", + "codeIataCity": "XSO", + "codeIcaoAirport": "", + "codeIso2Country": "PH", + "geonameId": "1686123", + "latitudeAirport": 7.7, + "longitudeAirport": 122.15, + "nameAirport": "Siocon", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "8", + "airportId": 8981, + "codeIataAirport": "XSP", + "codeIataCity": "SIN", + "codeIcaoAirport": "WSSL", + "codeIso2Country": "SG", + "geonameId": "0", + "latitudeAirport": 1.366667, + "longitudeAirport": 103.96667, + "nameAirport": "Seletar", + "nameCountry": "Singapore", + "phone": "", + "timezone": "Asia/Singapore" + }, + { + "GMT": "0", + "airportId": 8982, + "codeIataAirport": "XSR", + "codeIataCity": "XSR", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2638664", + "latitudeAirport": 51.06931, + "longitudeAirport": -1.79569, + "nameAirport": "Salisbury Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "10", + "airportId": 8983, + "codeIataAirport": "XTG", + "codeIataCity": "XTG", + "codeIcaoAirport": "YTGM", + "codeIso2Country": "AU", + "geonameId": "7668777", + "latitudeAirport": -27.966667, + "longitudeAirport": 143.76666, + "nameAirport": "Thargomindah", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "airportId": 8984, + "codeIataAirport": "XTI", + "codeIataCity": "MAD", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 40.4166909, + "longitudeAirport": -3.7003454, + "nameAirport": "Chamartin Railway St.", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 8985, + "codeIataAirport": "XTJ", + "codeIataCity": "XTJ", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "2510409", + "latitudeAirport": 39.8581, + "longitudeAirport": -4.02263, + "nameAirport": "Toledo Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "0", + "airportId": 8986, + "codeIataAirport": "XTK", + "codeIataCity": "XTK", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2636021", + "latitudeAirport": 54.23298, + "longitudeAirport": -1.34411, + "nameAirport": "Thirsk Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 8987, + "codeIataAirport": "XTL", + "codeIataCity": "XTL", + "codeIcaoAirport": "CYBQ", + "codeIso2Country": "CA", + "geonameId": "7668114", + "latitudeAirport": 58.716667, + "longitudeAirport": -98.48333, + "nameAirport": "Tadoule Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "10", + "airportId": 8988, + "codeIataAirport": "XTO", + "codeIataCity": "XTO", + "codeIcaoAirport": "YTAM", + "codeIso2Country": "AU", + "geonameId": "7731640", + "latitudeAirport": -25.433332, + "longitudeAirport": 149.8, + "nameAirport": "Taroom", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "airportId": 8989, + "codeIataAirport": "XTP", + "codeIataCity": "TMP", + "codeIcaoAirport": "", + "codeIso2Country": "FI", + "geonameId": "0", + "latitudeAirport": 61.4978555, + "longitudeAirport": 23.7596328, + "nameAirport": "Tampere Bus Station", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "10", + "airportId": 8990, + "codeIataAirport": "XTR", + "codeIataCity": "XTR", + "codeIcaoAirport": "YTAA", + "codeIso2Country": "AU", + "geonameId": "7731641", + "latitudeAirport": -27.283333, + "longitudeAirport": 150.46666, + "nameAirport": "Tara", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "airportId": 8991, + "codeIataAirport": "XTT", + "codeIataCity": "PAR", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 48.856614, + "longitudeAirport": 2.3522219, + "nameAirport": "Etoile", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "airportId": 8992, + "codeIataAirport": "XTY", + "codeIataCity": "XTY", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6158027", + "latitudeAirport": 42.9551, + "longitudeAirport": -81.62232, + "nameAirport": "Strathroy Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "airportId": 8993, + "codeIataAirport": "XUA", + "codeIataCity": "HSK", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 42.1401024, + "longitudeAirport": -0.408898, + "nameAirport": "Huesca Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 8994, + "codeIataAirport": "XUB", + "codeIataCity": "XUB", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Berkak Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8995, + "codeIataAirport": "XUC", + "codeIataCity": "XUC", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3158300", + "latitudeAirport": 60.88191, + "longitudeAirport": 11.56231, + "nameAirport": "Elverum Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8996, + "codeIataAirport": "XUE", + "codeIataCity": "XUE", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Heimdal Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8997, + "codeIataAirport": "XUF", + "codeIataCity": "XUF", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "2520058", + "latitudeAirport": 37.60512, + "longitudeAirport": -0.98623, + "nameAirport": "Cartagena Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 8998, + "codeIataAirport": "XUG", + "codeIataCity": "XUG", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3152132", + "latitudeAirport": -19.05, + "longitudeAirport": 23.066668, + "nameAirport": "Holmestrand Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 8999, + "codeIataAirport": "XUH", + "codeIataCity": "XUH", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3147698", + "latitudeAirport": 63.74644, + "longitudeAirport": 11.29963, + "nameAirport": "Levanger Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9000, + "codeIataAirport": "XUI", + "codeIataCity": "XUI", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3146631", + "latitudeAirport": 59.90994, + "longitudeAirport": 10.63545, + "nameAirport": "Lysaker Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9001, + "codeIataAirport": "XUJ", + "codeIataCity": "XUJ", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3145689", + "latitudeAirport": 60.93333, + "longitudeAirport": 10.7, + "nameAirport": "Moelv Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9002, + "codeIataAirport": "XUL", + "codeIataCity": "XUL", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3144733", + "latitudeAirport": 60.56809, + "longitudeAirport": 9.10274, + "nameAirport": "Nesbyen Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9003, + "codeIataAirport": "XUM", + "codeIataCity": "XUM", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Neslandsvatn Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-7", + "airportId": 9004, + "codeIataAirport": "XUN", + "codeIataCity": "SUN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 43.6971294, + "longitudeAirport": -114.3517172, + "nameAirport": "Hailey Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Boise" + }, + { + "GMT": "1", + "airportId": 9005, + "codeIataAirport": "XUO", + "codeIataCity": "XUO", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Nordagutu Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9006, + "codeIataAirport": "XUQ", + "codeIataCity": "XUQ", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3141850", + "latitudeAirport": 61.51667, + "longitudeAirport": 10.16667, + "nameAirport": "Ringebu Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9007, + "codeIataAirport": "XUR", + "codeIataCity": "XUR", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3138624", + "latitudeAirport": 59.38613, + "longitudeAirport": 10.41078, + "nameAirport": "Skoppum Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9008, + "codeIataAirport": "XUS", + "codeIataCity": "XUS", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3138079", + "latitudeAirport": 58.33313, + "longitudeAirport": 7.21252, + "nameAirport": "Snartemo Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9009, + "codeIataAirport": "XUT", + "codeIataCity": "MJV", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 37.9834449, + "longitudeAirport": -1.1298897, + "nameAirport": "Murcia Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 9010, + "codeIataAirport": "XUU", + "codeIataCity": "XUU", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Stjordal Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9011, + "codeIataAirport": "XUV", + "codeIataCity": "XUV", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Storekvina Railway", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9012, + "codeIataAirport": "XUW", + "codeIataCity": "XUW", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Storen Railway", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9013, + "codeIataAirport": "XUX", + "codeIataCity": "XUX", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3133181", + "latitudeAirport": 60.4983, + "longitudeAirport": 8.04271, + "nameAirport": "Ustaoset Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "8", + "airportId": 9014, + "codeIataAirport": "XUZ", + "codeIataCity": "XUZ", + "codeIcaoAirport": "ZSXZ", + "codeIso2Country": "CN", + "geonameId": "7731642", + "latitudeAirport": 34.052925, + "longitudeAirport": 117.55408, + "nameAirport": "Xuzhou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "0", + "airportId": 9015, + "codeIataAirport": "XVA", + "codeIataCity": "XVA", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2636882", + "latitudeAirport": 53.40979, + "longitudeAirport": -2.15761, + "nameAirport": "Stockport Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 9016, + "codeIataAirport": "XVB", + "codeIataCity": "XVB", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2637142", + "latitudeAirport": 52.80521, + "longitudeAirport": -2.11636, + "nameAirport": "Stafford Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 9017, + "codeIataAirport": "XVC", + "codeIataCity": "XVC", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2652002", + "latitudeAirport": 53.09787, + "longitudeAirport": -2.44161, + "nameAirport": "Crewe Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 9018, + "codeIataAirport": "XVG", + "codeIataCity": "XVG", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "5035674", + "latitudeAirport": 47.05164, + "longitudeAirport": -94.24, + "nameAirport": "Darlington Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 9019, + "codeIataAirport": "XVH", + "codeIataCity": "XVH", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2640354", + "latitudeAirport": 52.57364, + "longitudeAirport": -0.24777, + "nameAirport": "Peterborough Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 9020, + "codeIataAirport": "XVJ", + "codeIataCity": "XVJ", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2636940", + "latitudeAirport": 51.90224, + "longitudeAirport": -0.20256, + "nameAirport": "Stevenage Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 9021, + "codeIataAirport": "XVK", + "codeIataCity": "XVK", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Voss Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "7", + "airportId": 9022, + "codeIataAirport": "XVL", + "codeIataCity": "XVL", + "codeIcaoAirport": "", + "codeIso2Country": "VN", + "geonameId": "8299031", + "latitudeAirport": 10.25, + "longitudeAirport": 105.95, + "nameAirport": "Vinh Long", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "2", + "airportId": 9023, + "codeIataAirport": "XVM", + "codeIataCity": "XVM", + "codeIcaoAirport": "", + "codeIso2Country": "FI", + "geonameId": "631204", + "latitudeAirport": 64.11667, + "longitudeAirport": 28.25, + "nameAirport": "Vuokatti Bus Station", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "1", + "airportId": 9024, + "codeIataAirport": "XVQ", + "codeIataCity": "VCE", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 45.4343363, + "longitudeAirport": 12.3387844, + "nameAirport": "Santa Lucia Railway", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "0", + "airportId": 9025, + "codeIataAirport": "XVU", + "codeIataCity": "MME", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 54.51, + "longitudeAirport": -1.43, + "nameAirport": "Durham Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "airportId": 9026, + "codeIataAirport": "XVV", + "codeIataCity": "XVV", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Belleville Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "0", + "airportId": 9027, + "codeIataAirport": "XVW", + "codeIataCity": "XVW", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2633691", + "latitudeAirport": 52.58547, + "longitudeAirport": -2.12296, + "nameAirport": "Wolverhampton Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 9028, + "codeIataAirport": "XVX", + "codeIataCity": "XVX", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Vejle Railway Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 9029, + "codeIataAirport": "XVY", + "codeIataCity": "VCE", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 45.4343363, + "longitudeAirport": 12.3387844, + "nameAirport": "Mestre Railway.", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "airportId": 9030, + "codeIataAirport": "XWA", + "codeIataCity": "XWA", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6694642", + "latitudeAirport": 48.838, + "longitudeAirport": 3.015, + "nameAirport": "Watford Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "0", + "airportId": 9031, + "codeIataAirport": "XWB", + "codeIataCity": "XWB", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2636910", + "latitudeAirport": 56.11903, + "longitudeAirport": -3.93682, + "nameAirport": "Stirling Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 9032, + "codeIataAirport": "XWC", + "codeIataCity": "VIE", + "codeIcaoAirport": "", + "codeIso2Country": "AT", + "geonameId": "0", + "latitudeAirport": 48.2081743, + "longitudeAirport": 16.3738189, + "nameAirport": "Suedbahnhof Railway", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "0", + "airportId": 9033, + "codeIataAirport": "XWD", + "codeIataCity": "XWD", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2634910", + "latitudeAirport": 53.68331, + "longitudeAirport": -1.49768, + "nameAirport": "Westgate Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 9034, + "codeIataAirport": "XWE", + "codeIataCity": "XWE", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2634578", + "latitudeAirport": 52.30273, + "longitudeAirport": -0.69446, + "nameAirport": "Wellingborough Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 9035, + "codeIataAirport": "XWF", + "codeIataCity": "BLE", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 60.4856047, + "longitudeAirport": 15.4363017, + "nameAirport": "Falun C Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9036, + "codeIataAirport": "XWG", + "codeIataCity": "SXB", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 48.583148, + "longitudeAirport": 7.747882, + "nameAirport": "Strasbourg Railway Station", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "0", + "airportId": 9037, + "codeIataAirport": "XWH", + "codeIataCity": "XWH", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2636841", + "latitudeAirport": 53.00415, + "longitudeAirport": -2.18538, + "nameAirport": "Stoke-on-Trent Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 9038, + "codeIataAirport": "XWI", + "codeIataCity": "XWI", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2633948", + "latitudeAirport": 53.53333, + "longitudeAirport": -2.61667, + "nameAirport": "North Wstern Rail Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 9039, + "codeIataAirport": "XWK", + "codeIataCity": "RNB", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 56.27, + "longitudeAirport": 15.27, + "nameAirport": "Karlskrona RailwaySvc.", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9040, + "codeIataAirport": "XWL", + "codeIataCity": "GOT", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 57.6969943, + "longitudeAirport": 11.9865, + "nameAirport": "Goteborg C Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9041, + "codeIataAirport": "XWM", + "codeIataCity": "XWM", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "2708511", + "latitudeAirport": 59.0657, + "longitudeAirport": 15.11174, + "nameAirport": "Hallsberg Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "0", + "airportId": 9042, + "codeIataAirport": "XWN", + "codeIataCity": "XWN", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Bank Quay Rail Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 9043, + "codeIataAirport": "XWO", + "codeIataCity": "XWO", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2633709", + "latitudeAirport": 51.31903, + "longitudeAirport": -0.55893, + "nameAirport": "Woking Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 9044, + "codeIataAirport": "XWP", + "codeIataCity": "XWP", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 56.2167, + "longitudeAirport": 13.7333, + "nameAirport": "Hassleholm", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9045, + "codeIataAirport": "XWQ", + "codeIataCity": "XWQ", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Enkoping", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9046, + "codeIataAirport": "XWR", + "codeIataCity": "ORB", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 59.273755, + "longitudeAirport": 15.2075395, + "nameAirport": "Orebro C Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "0", + "airportId": 9047, + "codeIataAirport": "XWS", + "codeIataCity": "XWS", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 51.9333, + "longitudeAirport": -2.1, + "nameAirport": "Swindon Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 9048, + "codeIataAirport": "XWT", + "codeIataCity": "VIE", + "codeIcaoAirport": "", + "codeIso2Country": "AT", + "geonameId": "0", + "latitudeAirport": 48.2081743, + "longitudeAirport": 16.3738189, + "nameAirport": "Mitte CAT Rail Station", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "1", + "airportId": 9049, + "codeIataAirport": "XWV", + "codeIataCity": "XWV", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Varberg Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9050, + "codeIataAirport": "XWW", + "codeIataCity": "VIE", + "codeIcaoAirport": "", + "codeIso2Country": "AT", + "geonameId": "0", + "latitudeAirport": 48.2081743, + "longitudeAirport": 16.3738189, + "nameAirport": "Westbahnhof Railway", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "1", + "airportId": 9051, + "codeIataAirport": "XWX", + "codeIataCity": "XWX", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Nassjo C Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "airportId": 9052, + "codeIataAirport": "XWY", + "codeIataCity": "XWY", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6185024", + "latitudeAirport": 42.95008, + "longitudeAirport": -82.11651, + "nameAirport": "Wyoming Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "airportId": 9053, + "codeIataAirport": "XWZ", + "codeIataCity": "XWZ", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 58.7531378, + "longitudeAirport": 17.0085329, + "nameAirport": "Nykoping", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9054, + "codeIataAirport": "XXA", + "codeIataCity": "XXA", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Alvesta", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9055, + "codeIataAirport": "XXC", + "codeIataCity": "XXC", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Bo Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9056, + "codeIataAirport": "XXD", + "codeIataCity": "XXD", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Degerfors Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9057, + "codeIataAirport": "XXE", + "codeIataCity": "XXE", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3132208", + "latitudeAirport": 58.26936, + "longitudeAirport": 7.97413, + "nameAirport": "Vennesla Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9058, + "codeIataAirport": "XXG", + "codeIataCity": "XXG", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3132176", + "latitudeAirport": 63.79332, + "longitudeAirport": 11.4817, + "nameAirport": "Verdal Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9059, + "codeIataAirport": "XXI", + "codeIataCity": "XXI", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Koping Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9060, + "codeIataAirport": "XXJ", + "codeIataCity": "BUD", + "codeIcaoAirport": "", + "codeIso2Country": "HU", + "geonameId": "0", + "latitudeAirport": 47.4984056, + "longitudeAirport": 19.0407578, + "nameAirport": "Deli Railway Station", + "nameCountry": "Hungary", + "phone": "", + "timezone": "Europe/Budapest" + }, + { + "GMT": "1", + "airportId": 9061, + "codeIataAirport": "XXK", + "codeIataCity": "XXK", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 58.995917, + "longitudeAirport": 16.2061774, + "nameAirport": "Katrineholm", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9062, + "codeIataAirport": "XXL", + "codeIataCity": "XXL", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3147474", + "latitudeAirport": 61.11514, + "longitudeAirport": 10.46628, + "nameAirport": "Lillehammer Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9063, + "codeIataAirport": "XXM", + "codeIataCity": "XXM", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Mjolby Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9064, + "codeIataAirport": "XXO", + "codeIataCity": "XXO", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "2696650", + "latitudeAirport": 60.73387, + "longitudeAirport": 15.00316, + "nameAirport": "Leksand Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9065, + "codeIataAirport": "XXQ", + "codeIataCity": "BUD", + "codeIcaoAirport": "", + "codeIso2Country": "HU", + "geonameId": "0", + "latitudeAirport": 47.4984056, + "longitudeAirport": 19.0407578, + "nameAirport": "Keleti Railway Station", + "nameCountry": "Hungary", + "phone": "", + "timezone": "Europe/Budapest" + }, + { + "GMT": "1", + "airportId": 9066, + "codeIataAirport": "XXR", + "codeIataCity": "XXR", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Al Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9067, + "codeIataAirport": "XXT", + "codeIataCity": "XXT", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "2725471", + "latitudeAirport": 59.39387, + "longitudeAirport": 15.83882, + "nameAirport": "Arboga Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9068, + "codeIataAirport": "XXU", + "codeIataCity": "XXU", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "2706982", + "latitudeAirport": 60.2833, + "longitudeAirport": 15.9833, + "nameAirport": "Hedemora", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9069, + "codeIataAirport": "XXV", + "codeIataCity": "XXV", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Kumla Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9070, + "codeIataAirport": "XXY", + "codeIataCity": "RNB", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 56.27, + "longitudeAirport": 15.27, + "nameAirport": "Ronneby Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9071, + "codeIataAirport": "XXZ", + "codeIataCity": "SDL", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 62.3908358, + "longitudeAirport": 17.3069157, + "nameAirport": "Sundsvall C Rail Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "11", + "airportId": 9072, + "codeIataAirport": "XYA", + "codeIataCity": "XYA", + "codeIcaoAirport": "AGGY", + "codeIso2Country": "SB", + "geonameId": "8260995", + "latitudeAirport": -9.116667, + "longitudeAirport": 159.21666, + "nameAirport": "Yandina", + "nameCountry": "Solomon Islands", + "phone": "", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "1", + "airportId": 9073, + "codeIataAirport": "XYB", + "codeIataCity": "BLE", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 60.4856047, + "longitudeAirport": 15.4363017, + "nameAirport": "Borlange Railway", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9074, + "codeIataAirport": "XYC", + "codeIataCity": "XYC", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "2706523", + "latitudeAirport": 58.0186, + "longitudeAirport": 13.1014, + "nameAirport": "Herrljunga", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9075, + "codeIataAirport": "XYD", + "codeIataCity": "LYS", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 46.24, + "longitudeAirport": 5.15, + "nameAirport": "Lyon Part-Dieu", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "6.30", + "airportId": 9076, + "codeIataAirport": "XYE", + "codeIataCity": "XYE", + "codeIcaoAirport": "VYYE", + "codeIso2Country": "MM", + "geonameId": "7731643", + "latitudeAirport": 15.25, + "longitudeAirport": 97.85, + "nameAirport": "Ye", + "nameCountry": "", + "phone": "", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "1", + "airportId": 9077, + "codeIataAirport": "XYF", + "codeIataCity": "XYF", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Falkoping C Rail Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9078, + "codeIataAirport": "XYG", + "codeIataCity": "PRG", + "codeIcaoAirport": "", + "codeIso2Country": "CZ", + "geonameId": "0", + "latitudeAirport": 50.0878114, + "longitudeAirport": 14.4204598, + "nameAirport": "Prague Main Railway Station", + "nameCountry": "Czech Republic", + "phone": "", + "timezone": "Europe/Prague" + }, + { + "GMT": "1", + "airportId": 9079, + "codeIataAirport": "XYH", + "codeIataCity": "AGH", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 56.2432, + "longitudeAirport": 12.8615092, + "nameAirport": "Helsingborg Railway", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9080, + "codeIataAirport": "XYI", + "codeIataCity": "XYI", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Flen", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9081, + "codeIataAirport": "XYJ", + "codeIataCity": "PRG", + "codeIcaoAirport": "", + "codeIso2Country": "CZ", + "geonameId": "0", + "latitudeAirport": 50.0878114, + "longitudeAirport": 14.4204598, + "nameAirport": "Holesovice Railway Station", + "nameCountry": "Czech Republic", + "phone": "", + "timezone": "Europe/Prague" + }, + { + "GMT": "1", + "airportId": 9082, + "codeIataAirport": "XYK", + "codeIataCity": "NRK", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 58.5947017, + "longitudeAirport": 16.1836073, + "nameAirport": "Norrkoping C Rail Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9083, + "codeIataAirport": "XYL", + "codeIataCity": "LYS", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 45.764043, + "longitudeAirport": 4.835659, + "nameAirport": "Lyon Perrache RailwaySvc", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 9084, + "codeIataAirport": "XYM", + "codeIataCity": "XYM", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "2715573", + "latitudeAirport": 49.65, + "longitudeAirport": 22.75, + "nameAirport": "Falkenberg Railway", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9085, + "codeIataAirport": "XYN", + "codeIataCity": "XYN", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "2699282", + "latitudeAirport": 56.0, + "longitudeAirport": 14.15, + "nameAirport": "Kristinehamn Railway", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9086, + "codeIataAirport": "XYO", + "codeIataCity": "XYO", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 49.0, + "longitudeAirport": 8.66667, + "nameAirport": "Karlshamn", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9087, + "codeIataAirport": "XYP", + "codeIataCity": "XYP", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "2724231", + "latitudeAirport": 60.14545, + "longitudeAirport": 16.16785, + "nameAirport": "Avesta Krylbo", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9088, + "codeIataAirport": "XYQ", + "codeIataCity": "AGH", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 56.2432, + "longitudeAirport": 12.8615092, + "nameAirport": "Angelholm Railway", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "10", + "airportId": 9089, + "codeIataAirport": "XYR", + "codeIataCity": "XYR", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8299007", + "latitudeAirport": -3.883333, + "longitudeAirport": 141.78334, + "nameAirport": "Yellow River", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "airportId": 9090, + "codeIataAirport": "XYS", + "codeIataCity": "SYD", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -33.8689009, + "longitudeAirport": 151.2070914, + "nameAirport": "Sydney Ferry Port", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "airportId": 9091, + "codeIataAirport": "XYU", + "codeIataCity": "XYU", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 56.0667, + "longitudeAirport": 14.6167, + "nameAirport": "Solvesborg", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9092, + "codeIataAirport": "XYX", + "codeIataCity": "XYX", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "2680662", + "latitudeAirport": 45.4706, + "longitudeAirport": 19.7058, + "nameAirport": "Sala", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9093, + "codeIataAirport": "XYY", + "codeIataCity": "XYY", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "2725123", + "latitudeAirport": 59.65528, + "longitudeAirport": 12.58518, + "nameAirport": "Arvika Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "airportId": 9094, + "codeIataAirport": "XYZ", + "codeIataCity": "SDL", + "codeIcaoAirport": "", + "codeIso2Country": "SE", + "geonameId": "0", + "latitudeAirport": 62.3908358, + "longitudeAirport": 17.3069157, + "nameAirport": "Harnosand Railway Station", + "nameCountry": "Sweden", + "phone": "", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "0", + "airportId": 9095, + "codeIataAirport": "XZA", + "codeIataCity": "XZA", + "codeIcaoAirport": "DFEZ", + "codeIso2Country": "BF", + "geonameId": "7668180", + "latitudeAirport": 11.133333, + "longitudeAirport": -1.0, + "nameAirport": "Zabre", + "nameCountry": "Burkina Faso", + "phone": "", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-5", + "airportId": 9096, + "codeIataAirport": "XZB", + "codeIataCity": "XZB", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5918021", + "latitudeAirport": 45.3168, + "longitudeAirport": -75.0826, + "nameAirport": "Casselman Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9097, + "codeIataAirport": "XZC", + "codeIataCity": "XZC", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Glencoe Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "airportId": 9098, + "codeIataAirport": "XZD", + "codeIataCity": "XZD", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3149533", + "latitudeAirport": 60.1875, + "longitudeAirport": 12.001667, + "nameAirport": "Kongsvinger Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "3", + "airportId": 9099, + "codeIataAirport": "XZF", + "codeIataCity": "DMM", + "codeIcaoAirport": "", + "codeIso2Country": "SA", + "geonameId": "0", + "latitudeAirport": 21.5169, + "longitudeAirport": 39.2192, + "nameAirport": "Dammam Port", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "1", + "airportId": 9100, + "codeIataAirport": "XZI", + "codeIataCity": "ETZ", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 49.119666, + "longitudeAirport": 6.176905, + "nameAirport": "Lorraine TGV Rail Station", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-4", + "airportId": 9101, + "codeIataAirport": "XZK", + "codeIataCity": "XZK", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Amherst Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Halifax" + }, + { + "GMT": "-7", + "airportId": 9102, + "codeIataAirport": "XZL", + "codeIataCity": "YEA", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 53.548, + "longitudeAirport": -113.49, + "nameAirport": "Edmonton Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "8", + "airportId": 9103, + "codeIataAirport": "XZM", + "codeIataCity": "MFM", + "codeIcaoAirport": "", + "codeIso2Country": "MO", + "geonameId": "0", + "latitudeAirport": 22.1638446, + "longitudeAirport": 113.5549937, + "nameAirport": "Macau Ferry", + "nameCountry": "Macao", + "phone": "", + "timezone": "Asia/Macau" + }, + { + "GMT": "1", + "airportId": 9104, + "codeIataAirport": "XZN", + "codeIataCity": "AVN", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 43.949317, + "longitudeAirport": 4.805528, + "nameAirport": "Avignon Railway", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 9105, + "codeIataAirport": "XZO", + "codeIataCity": "OSL", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 59.9138688, + "longitudeAirport": 10.7522454, + "nameAirport": "Oslo S Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9106, + "codeIataAirport": "XZT", + "codeIataCity": "TRD", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 63.4305149, + "longitudeAirport": 10.3950528, + "nameAirport": "Trondheim S Rail Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9107, + "codeIataAirport": "XZV", + "codeIataCity": "TLN", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 43.120541, + "longitudeAirport": 6.128639, + "nameAirport": "Toulon Railway Station", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 9108, + "codeIataAirport": "XZZ", + "codeIataCity": "ZAZ", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Delicias Railway St.", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-8", + "airportId": 9109, + "codeIataAirport": "YAA", + "codeIataCity": "YAA", + "codeIcaoAirport": "CAJ4", + "codeIso2Country": "CA", + "geonameId": "7730440", + "latitudeAirport": 52.45, + "longitudeAirport": -125.3, + "nameAirport": "Anahim Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9110, + "codeIataAirport": "YAB", + "codeIataCity": "YAB", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5886735", + "latitudeAirport": 73.03333, + "longitudeAirport": -85.183334, + "nameAirport": "Arctic Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-6", + "airportId": 9111, + "codeIataAirport": "YAC", + "codeIataCity": "YAC", + "codeIcaoAirport": "CYAC", + "codeIso2Country": "CA", + "geonameId": "7668107", + "latitudeAirport": 51.716667, + "longitudeAirport": -91.816666, + "nameAirport": "Cat Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-8", + "airportId": 9112, + "codeIataAirport": "YAE", + "codeIataCity": "YAE", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5884233", + "latitudeAirport": 50.166668, + "longitudeAirport": -123.0, + "nameAirport": "Alta Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9113, + "codeIataAirport": "YAF", + "codeIataCity": "YAF", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 45.766666, + "longitudeAirport": -71.95, + "nameAirport": "Asbestos Hill", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "airportId": 9114, + "codeIataAirport": "YAG", + "codeIataCity": "YAG", + "codeIcaoAirport": "CYAG", + "codeIso2Country": "CA", + "geonameId": "7668108", + "latitudeAirport": 48.65278, + "longitudeAirport": -93.44722, + "nameAirport": "Fort Frances Municipal", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 9115, + "codeIataAirport": "YAH", + "codeIataCity": "YAH", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 53.75, + "longitudeAirport": -73.65, + "nameAirport": "Lagrande 4", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-4", + "airportId": 9116, + "codeIataAirport": "YAI", + "codeIataCity": "YAI", + "codeIcaoAirport": "SCCH", + "codeIso2Country": "CL", + "geonameId": "3898416", + "latitudeAirport": -36.6, + "longitudeAirport": -72.11667, + "nameAirport": "Chillan", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-8", + "airportId": 9117, + "codeIataAirport": "YAJ", + "codeIataCity": "YAJ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "7910281", + "latitudeAirport": 48.8, + "longitudeAirport": -123.2, + "nameAirport": "Lyall Harbour", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-9", + "airportId": 9118, + "codeIataAirport": "YAK", + "codeIataCity": "YAK", + "codeIcaoAirport": "PAYA", + "codeIso2Country": "US", + "geonameId": "5558616", + "latitudeAirport": 59.509167, + "longitudeAirport": -139.65973, + "nameAirport": "Yakutat", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Yakutat" + }, + { + "GMT": "-8", + "airportId": 9119, + "codeIataAirport": "YAL", + "codeIataCity": "YAL", + "codeIcaoAirport": "CYAL", + "codeIso2Country": "CA", + "geonameId": "7668109", + "latitudeAirport": 50.583332, + "longitudeAirport": -126.916664, + "nameAirport": "Alert Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9120, + "codeIataAirport": "YAM", + "codeIataCity": "YAM", + "codeIcaoAirport": "CYAM", + "codeIso2Country": "CA", + "geonameId": "6296153", + "latitudeAirport": 46.485302, + "longitudeAirport": -84.49995, + "nameAirport": "Sault Sainte Marie", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "2", + "airportId": 9121, + "codeIataAirport": "YAN", + "codeIataCity": "YAN", + "codeIcaoAirport": "FZIR", + "codeIso2Country": "CD", + "geonameId": "7730563", + "latitudeAirport": 0.783333, + "longitudeAirport": 24.4, + "nameAirport": "Yangambi", + "nameCountry": "Democratic Republic of the Congo", + "phone": "", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "1", + "airportId": 9122, + "codeIataAirport": "YAO", + "codeIataCity": "YAO", + "codeIcaoAirport": "FKKY", + "codeIso2Country": "CM", + "geonameId": "6297005", + "latitudeAirport": 3.833611, + "longitudeAirport": 11.523611, + "nameAirport": "Yaounde Airport", + "nameCountry": "Cameroon", + "phone": "", + "timezone": "Africa/Douala" + }, + { + "GMT": "10", + "airportId": 9123, + "codeIataAirport": "YAP", + "codeIataCity": "YAP", + "codeIcaoAirport": "PTYA", + "codeIso2Country": "FM", + "geonameId": "1558881", + "latitudeAirport": 9.497715, + "longitudeAirport": 138.08673, + "nameAirport": "Yap International", + "nameCountry": "Micronesia", + "phone": "", + "timezone": "Pacific/Chuuk" + }, + { + "GMT": "-8", + "airportId": 9124, + "codeIataAirport": "YAQ", + "codeIataCity": "YAQ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260858", + "latitudeAirport": 48.816666, + "longitudeAirport": -123.61667, + "nameAirport": "Maple Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9125, + "codeIataAirport": "YAR", + "codeIataCity": "YAR", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260846", + "latitudeAirport": 53.55, + "longitudeAirport": -76.2, + "nameAirport": "Lagrande 3", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "12", + "airportId": 9126, + "codeIataAirport": "YAS", + "codeIataCity": "YAS", + "codeIcaoAirport": "", + "codeIso2Country": "FJ", + "geonameId": "0", + "latitudeAirport": -16.783333, + "longitudeAirport": 177.51666, + "nameAirport": "Yasawa Island", + "nameCountry": "", + "phone": "", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-5", + "airportId": 9127, + "codeIataAirport": "YAT", + "codeIataCity": "YAT", + "codeIcaoAirport": "CYAT", + "codeIso2Country": "CA", + "geonameId": "7668111", + "latitudeAirport": 52.941666, + "longitudeAirport": -82.4, + "nameAirport": "Attawapiskat", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9128, + "codeIataAirport": "YAU", + "codeIataCity": "YAU", + "codeIcaoAirport": "CYAU", + "codeIso2Country": "CA", + "geonameId": "7730016", + "latitudeAirport": 61.662777, + "longitudeAirport": -73.31694, + "nameAirport": "Kattiniq/donaldson", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "airportId": 9129, + "codeIataAirport": "YAV", + "codeIataCity": "YAV", + "codeIcaoAirport": "CYAV", + "codeIso2Country": "CA", + "geonameId": "7730019", + "latitudeAirport": 48.86667, + "longitudeAirport": -123.3, + "nameAirport": "Miners Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-4", + "airportId": 9130, + "codeIataAirport": "YAW", + "codeIataCity": "YHZ", + "codeIcaoAirport": "CYAW", + "codeIso2Country": "CA", + "geonameId": "6301440", + "latitudeAirport": 44.86667, + "longitudeAirport": -63.61667, + "nameAirport": "Shearwater", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Halifax" + }, + { + "GMT": "-6", + "airportId": 9131, + "codeIataAirport": "YAX", + "codeIataCity": "YAX", + "codeIcaoAirport": "CKB6", + "codeIso2Country": "CA", + "geonameId": "7730023", + "latitudeAirport": 53.251945, + "longitudeAirport": -89.565, + "nameAirport": "Angling Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-2:30", + "airportId": 9132, + "codeIataAirport": "YAY", + "codeIataCity": "YAY", + "codeIcaoAirport": "CYAY", + "codeIso2Country": "CA", + "geonameId": "6296155", + "latitudeAirport": 51.36667, + "longitudeAirport": -55.583332, + "nameAirport": "St Anthony", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/St_Johns" + }, + { + "GMT": "-8", + "airportId": 9133, + "codeIataAirport": "YAZ", + "codeIataCity": "YAZ", + "codeIcaoAirport": "CYAZ", + "codeIso2Country": "CA", + "geonameId": "6354950", + "latitudeAirport": 49.076942, + "longitudeAirport": -125.77639, + "nameAirport": "Tofino Airport", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "airportId": 9134, + "codeIataAirport": "YBA", + "codeIataCity": "YBA", + "codeIcaoAirport": "CYBA", + "codeIso2Country": "CA", + "geonameId": "8260779", + "latitudeAirport": 51.166668, + "longitudeAirport": -115.566666, + "nameAirport": "Banff", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-7", + "airportId": 9135, + "codeIataAirport": "YBB", + "codeIataCity": "YBB", + "codeIcaoAirport": "CYBB", + "codeIso2Country": "CA", + "geonameId": "6301441", + "latitudeAirport": 68.88333, + "longitudeAirport": -89.85, + "nameAirport": "Kugaaruk", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Cambridge_Bay" + }, + { + "GMT": "-5", + "airportId": 9136, + "codeIataAirport": "YBC", + "codeIataCity": "YBC", + "codeIcaoAirport": "CYBC", + "codeIso2Country": "CA", + "geonameId": "6296157", + "latitudeAirport": 49.2, + "longitudeAirport": -68.26667, + "nameAirport": "Baie Comeau", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "airportId": 9137, + "codeIataAirport": "YBD", + "codeIataCity": "YBD", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260876", + "latitudeAirport": 49.216667, + "longitudeAirport": -122.9, + "nameAirport": "New Westminster", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "airportId": 9138, + "codeIataAirport": "YBE", + "codeIataCity": "YBE", + "codeIcaoAirport": "CYBE", + "codeIso2Country": "CA", + "geonameId": "7668112", + "latitudeAirport": 59.566666, + "longitudeAirport": -108.48333, + "nameAirport": "Uranium City", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "-8", + "airportId": 9139, + "codeIataAirport": "YBF", + "codeIataCity": "YBF", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5892444", + "latitudeAirport": 48.833332, + "longitudeAirport": -125.13333, + "nameAirport": "Bamfield", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9140, + "codeIataAirport": "YBG", + "codeIataCity": "YBG", + "codeIcaoAirport": "CYBG", + "codeIso2Country": "CA", + "geonameId": "6301442", + "latitudeAirport": 48.322224, + "longitudeAirport": -70.98861, + "nameAirport": "Bagotville", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "airportId": 9141, + "codeIataAirport": "YBH", + "codeIataCity": "YBH", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298728", + "latitudeAirport": 50.9, + "longitudeAirport": -127.916664, + "nameAirport": "Bull Harbour", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-4", + "airportId": 9142, + "codeIataAirport": "YBI", + "codeIataCity": "YBI", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "7910284", + "latitudeAirport": 53.45, + "longitudeAirport": -55.733334, + "nameAirport": "Black Tickle", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-5", + "airportId": 9143, + "codeIataAirport": "YBJ", + "codeIataCity": "YBJ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 50.5, + "longitudeAirport": -62.916668, + "nameAirport": "Baie Johan Beetz", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "airportId": 9144, + "codeIataAirport": "YBK", + "codeIataCity": "YBK", + "codeIcaoAirport": "CYBK", + "codeIso2Country": "CA", + "geonameId": "6296159", + "latitudeAirport": 64.3, + "longitudeAirport": -96.083336, + "nameAirport": "Baker Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Rankin_Inlet" + }, + { + "GMT": "-8", + "airportId": 9145, + "codeIataAirport": "YBL", + "codeIataCity": "YBL", + "codeIcaoAirport": "CYBL", + "codeIso2Country": "CA", + "geonameId": "6301443", + "latitudeAirport": 49.951725, + "longitudeAirport": -125.26813, + "nameAirport": "Campbell River", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9146, + "codeIataAirport": "YBN", + "codeIataCity": "YBN", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260788", + "latitudeAirport": 46.3, + "longitudeAirport": -63.783333, + "nameAirport": "Borden", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 9147, + "codeIataAirport": "YBO", + "codeIataCity": "YBO", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 56.966667, + "longitudeAirport": -130.25, + "nameAirport": "Bob Quinn Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "8", + "airportId": 9148, + "codeIataAirport": "YBP", + "codeIataCity": "YBP", + "codeIcaoAirport": "ZUYB", + "codeIso2Country": "CN", + "geonameId": "7910198", + "latitudeAirport": 28.797659, + "longitudeAirport": 104.54395, + "nameAirport": "Yibin", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-8", + "airportId": 9149, + "codeIataAirport": "YBQ", + "codeIataCity": "YBQ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260904", + "latitudeAirport": 48.983334, + "longitudeAirport": -123.65, + "nameAirport": "Telegraph Harbour", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "airportId": 9150, + "codeIataAirport": "YBR", + "codeIataCity": "YBR", + "codeIcaoAirport": "CYBR", + "codeIso2Country": "CA", + "geonameId": "6296161", + "latitudeAirport": 49.9, + "longitudeAirport": -99.95, + "nameAirport": "Brandon", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 9151, + "codeIataAirport": "YBS", + "codeIataCity": "YBS", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 52.606667, + "longitudeAirport": -90.376945, + "nameAirport": "Musselwhite", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "airportId": 9152, + "codeIataAirport": "YBT", + "codeIataCity": "YBT", + "codeIcaoAirport": "CYBT", + "codeIso2Country": "CA", + "geonameId": "7668115", + "latitudeAirport": 57.88333, + "longitudeAirport": -101.666664, + "nameAirport": "Brochet", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-6", + "airportId": 9153, + "codeIataAirport": "YBV", + "codeIataCity": "YBV", + "codeIcaoAirport": "CYBV", + "codeIso2Country": "CA", + "geonameId": "6301444", + "latitudeAirport": 52.355556, + "longitudeAirport": -97.01667, + "nameAirport": "Berens River", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-8", + "airportId": 9154, + "codeIataAirport": "YBW", + "codeIataCity": "YBW", + "codeIcaoAirport": "CYBW", + "codeIso2Country": "CA", + "geonameId": "7910278", + "latitudeAirport": 48.75, + "longitudeAirport": -123.23333, + "nameAirport": "Springbank", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-4", + "airportId": 9155, + "codeIataAirport": "YBX", + "codeIataCity": "YBX", + "codeIcaoAirport": "CYBX", + "codeIso2Country": "CA", + "geonameId": "6296164", + "latitudeAirport": 51.433334, + "longitudeAirport": -57.216667, + "nameAirport": "Blanc Sablon", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Blanc-Sablon" + }, + { + "GMT": "-7", + "airportId": 9156, + "codeIataAirport": "YBY", + "codeIataCity": "YBY", + "codeIcaoAirport": "CYBF", + "codeIso2Country": "CA", + "geonameId": "7668113", + "latitudeAirport": 54.266666, + "longitudeAirport": -110.73333, + "nameAirport": "Bonnyville", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-5", + "airportId": 9157, + "codeIataAirport": "YBZ", + "codeIataCity": "YTO", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 43.653524, + "longitudeAirport": -79.3839069, + "nameAirport": "Toronto Downtown", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 9158, + "codeIataAirport": "YCA", + "codeIataCity": "YCA", + "codeIcaoAirport": "CAH3", + "codeIso2Country": "CA", + "geonameId": "5930890", + "latitudeAirport": 49.683334, + "longitudeAirport": -124.98333, + "nameAirport": "Courtenay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "airportId": 9159, + "codeIataAirport": "YCB", + "codeIataCity": "YCB", + "codeIcaoAirport": "CYCB", + "codeIso2Country": "CA", + "geonameId": "6296165", + "latitudeAirport": 69.1, + "longitudeAirport": -105.13333, + "nameAirport": "Cambridge Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Cambridge_Bay" + }, + { + "GMT": "-5", + "airportId": 9160, + "codeIataAirport": "YCC", + "codeIataCity": "YCC", + "codeIcaoAirport": "CYCC", + "codeIso2Country": "CA", + "geonameId": "7668116", + "latitudeAirport": 45.1, + "longitudeAirport": -74.566666, + "nameAirport": "Cornwall Regional Airport", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 9161, + "codeIataAirport": "YCD", + "codeIataCity": "YCD", + "codeIcaoAirport": "CYCD", + "codeIso2Country": "CA", + "geonameId": "6296166", + "latitudeAirport": 49.05, + "longitudeAirport": -123.86667, + "nameAirport": "Nanaimo", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9162, + "codeIataAirport": "YCE", + "codeIataCity": "YCE", + "codeIcaoAirport": "CYCE", + "codeIso2Country": "CA", + "geonameId": "7730024", + "latitudeAirport": 43.283333, + "longitudeAirport": -81.48333, + "nameAirport": "Centralia", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 9163, + "codeIataAirport": "YCF", + "codeIataCity": "YCF", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "7910393", + "latitudeAirport": 50.066666, + "longitudeAirport": -124.933334, + "nameAirport": "Cortes Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "airportId": 9164, + "codeIataAirport": "YCG", + "codeIataCity": "YCG", + "codeIcaoAirport": "CYCG", + "codeIso2Country": "CA", + "geonameId": "6296167", + "latitudeAirport": 49.295555, + "longitudeAirport": -117.632225, + "nameAirport": "Castlegar", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-4", + "airportId": 9165, + "codeIataAirport": "YCH", + "codeIataCity": "YCH", + "codeIcaoAirport": "CYCH", + "codeIso2Country": "CA", + "geonameId": "6301446", + "latitudeAirport": 47.014008, + "longitudeAirport": -65.44744, + "nameAirport": "Miramichi", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Moncton" + }, + { + "GMT": "-5", + "airportId": 9166, + "codeIataAirport": "YCI", + "codeIataCity": "YCI", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298808", + "latitudeAirport": 61.916668, + "longitudeAirport": -113.25, + "nameAirport": "Caribou Island", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 9167, + "codeIataAirport": "YCJ", + "codeIataCity": "YCJ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260792", + "latitudeAirport": 51.933334, + "longitudeAirport": -131.01666, + "nameAirport": "Cape St James", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-4", + "airportId": 9168, + "codeIataAirport": "YCL", + "codeIataCity": "YCL", + "codeIcaoAirport": "CYCL", + "codeIso2Country": "CA", + "geonameId": "6296168", + "latitudeAirport": 47.983334, + "longitudeAirport": -66.333336, + "nameAirport": "Charlo", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Moncton" + }, + { + "GMT": "-5", + "airportId": 9169, + "codeIataAirport": "YCM", + "codeIataCity": "YCM", + "codeIcaoAirport": "CYSN", + "codeIso2Country": "CA", + "geonameId": "6301480", + "latitudeAirport": 43.2, + "longitudeAirport": -79.166664, + "nameAirport": "St Catharines", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9170, + "codeIataAirport": "YCN", + "codeIataCity": "YCN", + "codeIcaoAirport": "CYCN", + "codeIso2Country": "CA", + "geonameId": "7668117", + "latitudeAirport": 49.066666, + "longitudeAirport": -81.01667, + "nameAirport": "Cochrane", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "airportId": 9171, + "codeIataAirport": "YCO", + "codeIataCity": "YCO", + "codeIcaoAirport": "CYCO", + "codeIso2Country": "CA", + "geonameId": "6296169", + "latitudeAirport": 67.833336, + "longitudeAirport": -115.083336, + "nameAirport": "Kugluktuk", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Cambridge_Bay" + }, + { + "GMT": "-6", + "airportId": 9172, + "codeIataAirport": "YCP", + "codeIataCity": "YCP", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260799", + "latitudeAirport": 57.066666, + "longitudeAirport": -102.03333, + "nameAirport": "Co-op Point", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-7", + "airportId": 9173, + "codeIataAirport": "YCQ", + "codeIataCity": "YCQ", + "codeIcaoAirport": "CYCQ", + "codeIso2Country": "CA", + "geonameId": "6296170", + "latitudeAirport": 55.683334, + "longitudeAirport": -121.63333, + "nameAirport": "Chetwynd", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Dawson_Creek" + }, + { + "GMT": "-6", + "airportId": 9174, + "codeIataAirport": "YCR", + "codeIataCity": "YCR", + "codeIcaoAirport": "CYCR", + "codeIso2Country": "CA", + "geonameId": "7730028", + "latitudeAirport": 54.63333, + "longitudeAirport": -97.8, + "nameAirport": "Cross Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-6", + "airportId": 9175, + "codeIataAirport": "YCS", + "codeIataCity": "YCS", + "codeIcaoAirport": "CYCS", + "codeIso2Country": "CA", + "geonameId": "7910287", + "latitudeAirport": 63.333332, + "longitudeAirport": -90.71667, + "nameAirport": "Chesterfield Inlet", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Rankin_Inlet" + }, + { + "GMT": "-7", + "airportId": 9176, + "codeIataAirport": "YCT", + "codeIataCity": "YCT", + "codeIcaoAirport": "CYCT", + "codeIso2Country": "CA", + "geonameId": "6301448", + "latitudeAirport": 52.1, + "longitudeAirport": -111.416664, + "nameAirport": "Coronation", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "8", + "airportId": 9177, + "codeIataAirport": "YCU", + "codeIataCity": "YCU", + "codeIcaoAirport": "ZBYC", + "codeIso2Country": "CN", + "geonameId": "7910157", + "latitudeAirport": 35.018, + "longitudeAirport": 110.993, + "nameAirport": "Yun Cheng", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-8", + "airportId": 9178, + "codeIataAirport": "YCW", + "codeIataCity": "YCW", + "codeIcaoAirport": "CYCW", + "codeIso2Country": "CA", + "geonameId": "8299024", + "latitudeAirport": 49.166668, + "longitudeAirport": -121.9, + "nameAirport": "Chilliwack Municipalcipal Airport", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-4", + "airportId": 9179, + "codeIataAirport": "YCX", + "codeIataCity": "YCX", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5958945", + "latitudeAirport": 45.766666, + "longitudeAirport": -66.166664, + "nameAirport": "Gagetown", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Moncton" + }, + { + "GMT": "-5", + "airportId": 9180, + "codeIataAirport": "YCY", + "codeIataCity": "YCY", + "codeIcaoAirport": "CYCY", + "codeIso2Country": "CA", + "geonameId": "6296173", + "latitudeAirport": 70.416664, + "longitudeAirport": -68.5, + "nameAirport": "Clyde River", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-7", + "airportId": 9181, + "codeIataAirport": "YCZ", + "codeIataCity": "YCZ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 50.331944, + "longitudeAirport": -115.87361, + "nameAirport": "Fairmont Hot Springs", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-8", + "airportId": 9182, + "codeIataAirport": "YDA", + "codeIataCity": "YDA", + "codeIcaoAirport": "CYDA", + "codeIso2Country": "CA", + "geonameId": "6943713", + "latitudeAirport": 64.041664, + "longitudeAirport": -139.12083, + "nameAirport": "Dawson City", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Dawson" + }, + { + "GMT": "-8", + "airportId": 9183, + "codeIataAirport": "YDB", + "codeIataCity": "YDB", + "codeIcaoAirport": "CYDB", + "codeIso2Country": "CA", + "geonameId": "6301450", + "latitudeAirport": 61.35, + "longitudeAirport": -139.01666, + "nameAirport": "Burwash Landings", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-7", + "airportId": 9184, + "codeIataAirport": "YDC", + "codeIataCity": "YDC", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5942547", + "latitudeAirport": 53.2, + "longitudeAirport": -114.96667, + "nameAirport": "Industrial Airport", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-2:30", + "airportId": 9185, + "codeIataAirport": "YDF", + "codeIataCity": "YDF", + "codeIcaoAirport": "CYDF", + "codeIso2Country": "CA", + "geonameId": "6296175", + "latitudeAirport": 49.21027, + "longitudeAirport": -57.399727, + "nameAirport": "Deer Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/St_Johns" + }, + { + "GMT": "-4", + "airportId": 9186, + "codeIataAirport": "YDG", + "codeIataCity": "YDG", + "codeIcaoAirport": "CYID", + "codeIso2Country": "CA", + "geonameId": "6296208", + "latitudeAirport": 44.61667, + "longitudeAirport": -65.76667, + "nameAirport": "Digby", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Halifax" + }, + { + "GMT": "-2:30", + "airportId": 9187, + "codeIataAirport": "YDH", + "codeIataCity": "YDH", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 50.216667, + "longitudeAirport": -57.583332, + "nameAirport": "Daniels Harbour", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/St_Johns" + }, + { + "GMT": "-4", + "airportId": 9188, + "codeIataAirport": "YDI", + "codeIataCity": "YDI", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 55.933334, + "longitudeAirport": -60.95, + "nameAirport": "Davis Inlet", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-6", + "airportId": 9189, + "codeIataAirport": "YDJ", + "codeIataCity": "YDJ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 58.660557, + "longitudeAirport": -102.539444, + "nameAirport": "Hatchet Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "-5", + "airportId": 9190, + "codeIataAirport": "YDK", + "codeIataCity": "YDK", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8299028", + "latitudeAirport": 43.933334, + "longitudeAirport": -76.61667, + "nameAirport": "Main Duck Island", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 9191, + "codeIataAirport": "YDL", + "codeIataCity": "YDL", + "codeIcaoAirport": "CYDL", + "codeIso2Country": "CA", + "geonameId": "8260801", + "latitudeAirport": 58.583332, + "longitudeAirport": -130.03334, + "nameAirport": "Dease Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "airportId": 9192, + "codeIataAirport": "YDN", + "codeIataCity": "YDN", + "codeIcaoAirport": "CYDN", + "codeIso2Country": "CA", + "geonameId": "6301451", + "latitudeAirport": 51.1, + "longitudeAirport": -100.05, + "nameAirport": "Dauphin", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 9193, + "codeIataAirport": "YDO", + "codeIataCity": "YDO", + "codeIcaoAirport": "CYDO", + "codeIso2Country": "CA", + "geonameId": "7730029", + "latitudeAirport": 48.86667, + "longitudeAirport": -72.23333, + "nameAirport": "St Methode", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-4", + "airportId": 9194, + "codeIataAirport": "YDP", + "codeIataCity": "YDP", + "codeIcaoAirport": "CYDP", + "codeIso2Country": "CA", + "geonameId": "6943610", + "latitudeAirport": 56.533333, + "longitudeAirport": -61.666668, + "nameAirport": "Nain", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-7", + "airportId": 9195, + "codeIataAirport": "YDQ", + "codeIataCity": "YDQ", + "codeIcaoAirport": "CYDQ", + "codeIso2Country": "CA", + "geonameId": "6296177", + "latitudeAirport": 55.733334, + "longitudeAirport": -120.183334, + "nameAirport": "Dawson Creek", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Dawson_Creek" + }, + { + "GMT": "-6", + "airportId": 9196, + "codeIataAirport": "YDR", + "codeIataCity": "YDR", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260963", + "latitudeAirport": 50.36667, + "longitudeAirport": -102.583336, + "nameAirport": "Broadview", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "-8", + "airportId": 9197, + "codeIataAirport": "YDS", + "codeIataCity": "YDS", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "7910277", + "latitudeAirport": 49.965996, + "longitudeAirport": -124.72931, + "nameAirport": "Desolation Sound", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "airportId": 9198, + "codeIataAirport": "YDT", + "codeIataCity": "YVR", + "codeIcaoAirport": "CZBB", + "codeIso2Country": "CA", + "geonameId": "7730043", + "latitudeAirport": 49.183334, + "longitudeAirport": -123.183334, + "nameAirport": "Boundary Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "airportId": 9199, + "codeIataAirport": "YDU", + "codeIataCity": "YDU", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 60.29028, + "longitudeAirport": -102.503334, + "nameAirport": "Kasba Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-6", + "airportId": 9200, + "codeIataAirport": "YDV", + "codeIataCity": "YDV", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 51.75, + "longitudeAirport": -96.73333, + "nameAirport": "Bloodvein", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-7", + "airportId": 9201, + "codeIataAirport": "YDW", + "codeIataCity": "YDW", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 60.323055, + "longitudeAirport": -103.13306, + "nameAirport": "Obre Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-8", + "airportId": 9202, + "codeIataAirport": "YDX", + "codeIataCity": "YDX", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260804", + "latitudeAirport": 52.05, + "longitudeAirport": -128.08333, + "nameAirport": "Doc Creek", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9203, + "codeIataAirport": "YEB", + "codeIataCity": "YEB", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8299178", + "latitudeAirport": 46.4178, + "longitudeAirport": -84.0933, + "nameAirport": "Bar River", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "9", + "airportId": 9204, + "codeIataAirport": "YEC", + "codeIataCity": "YEC", + "codeIcaoAirport": "RKTY", + "codeIso2Country": "KR", + "geonameId": "6300456", + "latitudeAirport": 36.625, + "longitudeAirport": 128.355, + "nameAirport": "Yecheon", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "-7", + "airportId": 9205, + "codeIataAirport": "YED", + "codeIataCity": "YEA", + "codeIcaoAirport": "CYED", + "codeIso2Country": "CA", + "geonameId": "6296178", + "latitudeAirport": 53.5, + "longitudeAirport": -113.5, + "nameAirport": "Namao Field", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-7", + "airportId": 9206, + "codeIataAirport": "YEG", + "codeIataCity": "YEA", + "codeIcaoAirport": "CYEG", + "codeIso2Country": "CA", + "geonameId": "6301453", + "latitudeAirport": 53.307377, + "longitudeAirport": -113.584045, + "nameAirport": "Edmonton International Airport", + "nameCountry": "Canada", + "phone": "780-890-8900", + "timezone": "America/Edmonton" + }, + { + "GMT": "3", + "airportId": 9207, + "codeIataAirport": "YEI", + "codeIataCity": "YEI", + "codeIcaoAirport": "LTBR", + "codeIso2Country": "TR", + "geonameId": "6299755", + "latitudeAirport": 40.233334, + "longitudeAirport": 29.55, + "nameAirport": "Yenisehir", + "nameCountry": "Turkey", + "phone": "", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-6", + "airportId": 9208, + "codeIataAirport": "YEK", + "codeIataCity": "YEK", + "codeIcaoAirport": "CYEK", + "codeIso2Country": "CA", + "geonameId": "6296179", + "latitudeAirport": 61.11667, + "longitudeAirport": -94.05, + "nameAirport": "Arviat", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Rankin_Inlet" + }, + { + "GMT": "-5", + "airportId": 9209, + "codeIataAirport": "YEL", + "codeIataCity": "YEL", + "codeIcaoAirport": "CYEL", + "codeIso2Country": "CA", + "geonameId": "6296180", + "latitudeAirport": 46.352222, + "longitudeAirport": -82.56306, + "nameAirport": "Elliot Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9210, + "codeIataAirport": "YEM", + "codeIataCity": "YEM", + "codeIcaoAirport": "CYEM", + "codeIso2Country": "CA", + "geonameId": "7730031", + "latitudeAirport": 45.842777, + "longitudeAirport": -81.858055, + "nameAirport": "East Manitoulin", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "airportId": 9211, + "codeIataAirport": "YEN", + "codeIataCity": "YEN", + "codeIcaoAirport": "CYEN", + "codeIso2Country": "CA", + "geonameId": "6296181", + "latitudeAirport": 49.166668, + "longitudeAirport": -102.98333, + "nameAirport": "Estevan", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "0", + "airportId": 9212, + "codeIataAirport": "YEO", + "codeIataCity": "YEO", + "codeIcaoAirport": "EGDY", + "codeIso2Country": "GB", + "geonameId": "6301513", + "latitudeAirport": 51.016666, + "longitudeAirport": -2.55, + "nameAirport": "Yeovilton", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-8", + "airportId": 9213, + "codeIataAirport": "YEP", + "codeIataCity": "YEP", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8261034", + "latitudeAirport": 49.38333, + "longitudeAirport": -126.53333, + "nameAirport": "Estevan Point", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "10", + "airportId": 9214, + "codeIataAirport": "YEQ", + "codeIataCity": "YEQ", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298830", + "latitudeAirport": -5.1, + "longitudeAirport": 143.91667, + "nameAirport": "Yenkis", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "airportId": 9215, + "codeIataAirport": "YER", + "codeIataCity": "YER", + "codeIcaoAirport": "CYER", + "codeIso2Country": "CA", + "geonameId": "7668118", + "latitudeAirport": 56.033333, + "longitudeAirport": -87.833336, + "nameAirport": "Fort Severn", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "3.30", + "airportId": 9216, + "codeIataAirport": "YES", + "codeIataCity": "YES", + "codeIcaoAirport": "OISY", + "codeIso2Country": "IR", + "geonameId": "6300075", + "latitudeAirport": 30.699774, + "longitudeAirport": 51.55276, + "nameAirport": "Yasouj", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-7", + "airportId": 9217, + "codeIataAirport": "YET", + "codeIataCity": "YET", + "codeIcaoAirport": "CYET", + "codeIso2Country": "CA", + "geonameId": "6296182", + "latitudeAirport": 53.583332, + "longitudeAirport": -116.46667, + "nameAirport": "Edson", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-6", + "airportId": 9218, + "codeIataAirport": "YEU", + "codeIataCity": "YEU", + "codeIcaoAirport": "CYEU", + "codeIso2Country": "CA", + "geonameId": "6301454", + "latitudeAirport": 80.0, + "longitudeAirport": -85.933334, + "nameAirport": "Eureka", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Rankin_Inlet" + }, + { + "GMT": "-7", + "airportId": 9219, + "codeIataAirport": "YEV", + "codeIataCity": "YEV", + "codeIcaoAirport": "CYEV", + "codeIso2Country": "CA", + "geonameId": "6296183", + "latitudeAirport": 68.30665, + "longitudeAirport": -133.49767, + "nameAirport": "Inuvik/mike Zubko", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Inuvik" + }, + { + "GMT": "-5", + "airportId": 9220, + "codeIataAirport": "YEY", + "codeIataCity": "YEY", + "codeIcaoAirport": "CYEY", + "codeIso2Country": "CA", + "geonameId": "7730032", + "latitudeAirport": 48.552223, + "longitudeAirport": -78.25, + "nameAirport": "Amos", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9221, + "codeIataAirport": "YFA", + "codeIataCity": "YFA", + "codeIcaoAirport": "CYFA", + "codeIso2Country": "CA", + "geonameId": "7668119", + "latitudeAirport": 52.24167, + "longitudeAirport": -81.59167, + "nameAirport": "Fort Albany", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9222, + "codeIataAirport": "YFB", + "codeIataCity": "YFB", + "codeIcaoAirport": "CYFB", + "codeIso2Country": "CA", + "geonameId": "6296184", + "latitudeAirport": 63.75175, + "longitudeAirport": -68.53658, + "nameAirport": "Iqaluit", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-4", + "airportId": 9223, + "codeIataAirport": "YFC", + "codeIataCity": "YFC", + "codeIcaoAirport": "CYFC", + "codeIso2Country": "CA", + "geonameId": "6301455", + "latitudeAirport": 45.87316, + "longitudeAirport": -66.52978, + "nameAirport": "Fredericton", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Moncton" + }, + { + "GMT": "-5", + "airportId": 9224, + "codeIataAirport": "YFE", + "codeIataCity": "YFE", + "codeIcaoAirport": "CYFE", + "codeIso2Country": "CA", + "geonameId": "7668120", + "latitudeAirport": 48.75, + "longitudeAirport": -69.066666, + "nameAirport": "Forestville", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9225, + "codeIataAirport": "YFG", + "codeIataCity": "YFG", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260805", + "latitudeAirport": 54.55, + "longitudeAirport": -71.183334, + "nameAirport": "Fontanges", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9226, + "codeIataAirport": "YFH", + "codeIataCity": "YFH", + "codeIcaoAirport": "CYFH", + "codeIso2Country": "CA", + "geonameId": "7668121", + "latitudeAirport": 51.559345, + "longitudeAirport": -87.89796, + "nameAirport": "Fort Hope", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "airportId": 9227, + "codeIataAirport": "YFI", + "codeIataCity": "HZP", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Firebag", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-7", + "airportId": 9228, + "codeIataAirport": "YFJ", + "codeIataCity": "YFJ", + "codeIcaoAirport": "CFJ2", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 64.19056, + "longitudeAirport": -114.075554, + "nameAirport": "Snare Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-7", + "airportId": 9229, + "codeIataAirport": "YFL", + "codeIataCity": "YFL", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 62.7, + "longitudeAirport": -109.13333, + "nameAirport": "Fort Reliance", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-6", + "airportId": 9230, + "codeIataAirport": "YFO", + "codeIataCity": "YFO", + "codeIcaoAirport": "CYFO", + "codeIso2Country": "CA", + "geonameId": "6296185", + "latitudeAirport": 54.683334, + "longitudeAirport": -101.683334, + "nameAirport": "Flin Flon", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-7", + "airportId": 9231, + "codeIataAirport": "YFR", + "codeIataCity": "YFR", + "codeIcaoAirport": "CYFR", + "codeIso2Country": "CA", + "geonameId": "6296186", + "latitudeAirport": 61.183334, + "longitudeAirport": -113.683334, + "nameAirport": "Fort Resolution", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-7", + "airportId": 9232, + "codeIataAirport": "YFS", + "codeIataCity": "YFS", + "codeIcaoAirport": "CYFS", + "codeIso2Country": "CA", + "geonameId": "6296187", + "latitudeAirport": 61.75, + "longitudeAirport": -121.23333, + "nameAirport": "Fort Simpson", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "8", + "airportId": 9233, + "codeIataAirport": "YFT", + "codeIataCity": "YFT", + "codeIcaoAirport": "YFTZ", + "codeIso2Country": "MO", + "geonameId": "1821263", + "latitudeAirport": -18.178333, + "longitudeAirport": 125.55417, + "nameAirport": "Taipa Ferry Port", + "nameCountry": "Macao", + "phone": "", + "timezone": "Asia/Macau" + }, + { + "GMT": "-2:30", + "airportId": 9234, + "codeIataAirport": "YFX", + "codeIataCity": "YFX", + "codeIcaoAirport": "CCK4", + "codeIso2Country": "CA", + "geonameId": "7730442", + "latitudeAirport": 52.36667, + "longitudeAirport": -55.683334, + "nameAirport": "Fox Harbour (St Lewis)", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/St_Johns" + }, + { + "GMT": "-8", + "airportId": 9235, + "codeIataAirport": "YGB", + "codeIataCity": "YGB", + "codeIcaoAirport": "CYGB", + "codeIso2Country": "CA", + "geonameId": "7730034", + "latitudeAirport": 49.7, + "longitudeAirport": -124.53333, + "nameAirport": "Gillies Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "airportId": 9236, + "codeIataAirport": "YGC", + "codeIataCity": "YGC", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260821", + "latitudeAirport": 53.916668, + "longitudeAirport": -118.86667, + "nameAirport": "Grande Cache", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-8", + "airportId": 9237, + "codeIataAirport": "YGE", + "codeIataCity": "YGE", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8299341", + "latitudeAirport": 50.083332, + "longitudeAirport": -124.95, + "nameAirport": "Gorge Harbor", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "airportId": 9238, + "codeIataAirport": "YGG", + "codeIataCity": "YGG", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "7910386", + "latitudeAirport": 48.85, + "longitudeAirport": -123.5, + "nameAirport": "Ganges Harbor", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "airportId": 9239, + "codeIataAirport": "YGH", + "codeIataCity": "YGH", + "codeIcaoAirport": "CYGH", + "codeIso2Country": "CA", + "geonameId": "6296190", + "latitudeAirport": 66.26667, + "longitudeAirport": -128.65, + "nameAirport": "Fort Good Hope", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "9", + "airportId": 9240, + "codeIataAirport": "YGJ", + "codeIataCity": "YGJ", + "codeIcaoAirport": "RJOH", + "codeIso2Country": "JP", + "geonameId": "6300376", + "latitudeAirport": 35.500652, + "longitudeAirport": 133.24448, + "nameAirport": "Miho", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "airportId": 9241, + "codeIataAirport": "YGK", + "codeIataCity": "YGK", + "codeIcaoAirport": "CYGK", + "codeIso2Country": "CA", + "geonameId": "6296191", + "latitudeAirport": 44.219513, + "longitudeAirport": -76.59366, + "nameAirport": "Kingston", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9242, + "codeIataAirport": "YGL", + "codeIataCity": "YGL", + "codeIcaoAirport": "CYGL", + "codeIso2Country": "CA", + "geonameId": "6296192", + "latitudeAirport": 53.629723, + "longitudeAirport": -77.70639, + "nameAirport": "La Grande", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "airportId": 9243, + "codeIataAirport": "YGM", + "codeIataCity": "YGM", + "codeIcaoAirport": "CYGM", + "codeIso2Country": "CA", + "geonameId": "6301456", + "latitudeAirport": 50.666668, + "longitudeAirport": -97.0, + "nameAirport": "Gimli", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-8", + "airportId": 9244, + "codeIataAirport": "YGN", + "codeIataCity": "YGN", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "7910285", + "latitudeAirport": 50.85, + "longitudeAirport": -126.85, + "nameAirport": "Greenway Sound", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "airportId": 9245, + "codeIataAirport": "YGO", + "codeIataCity": "YGO", + "codeIcaoAirport": "CYGO", + "codeIso2Country": "CA", + "geonameId": "7668122", + "latitudeAirport": 54.55, + "longitudeAirport": -94.48333, + "nameAirport": "Gods Narrows", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 9246, + "codeIataAirport": "YGP", + "codeIataCity": "YGP", + "codeIcaoAirport": "CYGP", + "codeIso2Country": "CA", + "geonameId": "6296193", + "latitudeAirport": 48.766666, + "longitudeAirport": -64.48333, + "nameAirport": "Michel Pouliot", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9247, + "codeIataAirport": "YGQ", + "codeIataCity": "YGQ", + "codeIcaoAirport": "CYGQ", + "codeIso2Country": "CA", + "geonameId": "6296194", + "latitudeAirport": 49.733334, + "longitudeAirport": -86.95, + "nameAirport": "Geraldton", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-4", + "airportId": 9248, + "codeIataAirport": "YGR", + "codeIataCity": "YGR", + "codeIcaoAirport": "CYGR", + "codeIso2Country": "CA", + "geonameId": "6301457", + "latitudeAirport": 47.36667, + "longitudeAirport": -61.9, + "nameAirport": "Iles De La Madeleine", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Halifax" + }, + { + "GMT": "-5", + "airportId": 9249, + "codeIataAirport": "YGT", + "codeIataCity": "YGT", + "codeIcaoAirport": "CYGT", + "codeIso2Country": "CA", + "geonameId": "6296195", + "latitudeAirport": 69.4, + "longitudeAirport": -81.816666, + "nameAirport": "Igloolik", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-5", + "airportId": 9250, + "codeIataAirport": "YGV", + "codeIataCity": "YGV", + "codeIcaoAirport": "CYGV", + "codeIso2Country": "CA", + "geonameId": "6296196", + "latitudeAirport": 50.25, + "longitudeAirport": -63.583332, + "nameAirport": "Havre St Pierre", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9251, + "codeIataAirport": "YGW", + "codeIataCity": "YGW", + "codeIcaoAirport": "CYGW", + "codeIso2Country": "CA", + "geonameId": "6296197", + "latitudeAirport": 55.279167, + "longitudeAirport": -77.76667, + "nameAirport": "Kuujjuarapik", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "airportId": 9252, + "codeIataAirport": "YGX", + "codeIataCity": "YGX", + "codeIcaoAirport": "CYGX", + "codeIso2Country": "CA", + "geonameId": "7910207", + "latitudeAirport": 56.35, + "longitudeAirport": -94.7, + "nameAirport": "Gillam", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 9253, + "codeIataAirport": "YGZ", + "codeIataCity": "YGZ", + "codeIcaoAirport": "CYGZ", + "codeIso2Country": "CA", + "geonameId": "6295841", + "latitudeAirport": 76.41778, + "longitudeAirport": -82.95722, + "nameAirport": "Grise Fiord", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-2:30", + "airportId": 9254, + "codeIataAirport": "YHA", + "codeIataCity": "YHA", + "codeIcaoAirport": "CYHA", + "codeIso2Country": "CA", + "geonameId": "7730443", + "latitudeAirport": 52.533333, + "longitudeAirport": -56.3, + "nameAirport": "Port Hope Simpson", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/St_Johns" + }, + { + "GMT": "-6", + "airportId": 9255, + "codeIataAirport": "YHB", + "codeIataCity": "YHB", + "codeIcaoAirport": "CYHB", + "codeIso2Country": "CA", + "geonameId": "6296199", + "latitudeAirport": 52.86667, + "longitudeAirport": -102.416664, + "nameAirport": "Hudson Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "-8", + "airportId": 9256, + "codeIataAirport": "YHC", + "codeIataCity": "YHC", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260824", + "latitudeAirport": 51.733334, + "longitudeAirport": -128.11667, + "nameAirport": "Hakai Pass", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "airportId": 9257, + "codeIataAirport": "YHD", + "codeIataCity": "YHD", + "codeIcaoAirport": "CYHD", + "codeIso2Country": "CA", + "geonameId": "6296200", + "latitudeAirport": 49.783333, + "longitudeAirport": -92.833336, + "nameAirport": "Dryden Municipal", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-8", + "airportId": 9258, + "codeIataAirport": "YHE", + "codeIataCity": "YHE", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 49.416668, + "longitudeAirport": -121.416664, + "nameAirport": "Hope", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9259, + "codeIataAirport": "YHF", + "codeIataCity": "YHF", + "codeIcaoAirport": "CYHF", + "codeIso2Country": "CA", + "geonameId": "7730035", + "latitudeAirport": 49.716667, + "longitudeAirport": -83.683334, + "nameAirport": "Hearst", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-2:30", + "airportId": 9260, + "codeIataAirport": "YHG", + "codeIataCity": "YHG", + "codeIcaoAirport": "CCH4", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 52.766666, + "longitudeAirport": -56.1, + "nameAirport": "Charlottetown", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/St_Johns" + }, + { + "GMT": "-8", + "airportId": 9261, + "codeIataAirport": "YHH", + "codeIataCity": "YBL", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298613", + "latitudeAirport": 49.94639, + "longitudeAirport": -125.26556, + "nameAirport": "Harbor SPB", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "airportId": 9262, + "codeIataAirport": "YHI", + "codeIataCity": "YHI", + "codeIcaoAirport": "CYHI", + "codeIso2Country": "CA", + "geonameId": "6296203", + "latitudeAirport": 70.71667, + "longitudeAirport": -117.71667, + "nameAirport": "Holman", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-7", + "airportId": 9263, + "codeIataAirport": "YHK", + "codeIataCity": "YHK", + "codeIcaoAirport": "CYHK", + "codeIso2Country": "CA", + "geonameId": "6296204", + "latitudeAirport": 68.63333, + "longitudeAirport": -95.95, + "nameAirport": "Gjoa Haven", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Cambridge_Bay" + }, + { + "GMT": "-5", + "airportId": 9264, + "codeIataAirport": "YHM", + "codeIataCity": "YTO", + "codeIcaoAirport": "CYHM", + "codeIso2Country": "CA", + "geonameId": "6296205", + "latitudeAirport": 43.16138, + "longitudeAirport": -79.92631, + "nameAirport": "John C. Munroe", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9265, + "codeIataAirport": "YHN", + "codeIataCity": "YHN", + "codeIcaoAirport": "CYHN", + "codeIso2Country": "CA", + "geonameId": "7668123", + "latitudeAirport": 49.216667, + "longitudeAirport": -84.78333, + "nameAirport": "Hornepayne", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-4", + "airportId": 9266, + "codeIataAirport": "YHO", + "codeIataCity": "YHO", + "codeIcaoAirport": "CYHO", + "codeIso2Country": "CA", + "geonameId": "7668124", + "latitudeAirport": 55.448334, + "longitudeAirport": -60.229443, + "nameAirport": "Hopedale", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-6", + "airportId": 9267, + "codeIataAirport": "YHP", + "codeIataCity": "YHP", + "codeIcaoAirport": "CPV7", + "codeIso2Country": "CA", + "geonameId": "7730452", + "latitudeAirport": 52.083332, + "longitudeAirport": -94.3, + "nameAirport": "Poplar Hill", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-4", + "airportId": 9268, + "codeIataAirport": "YHR", + "codeIataCity": "YHR", + "codeIcaoAirport": "CYHR", + "codeIso2Country": "CA", + "geonameId": "7668125", + "latitudeAirport": 50.5, + "longitudeAirport": -59.5, + "nameAirport": "Chevery", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Blanc-Sablon" + }, + { + "GMT": "-8", + "airportId": 9269, + "codeIataAirport": "YHS", + "codeIataCity": "YHS", + "codeIcaoAirport": "CAP3", + "codeIso2Country": "CA", + "geonameId": "7887355", + "latitudeAirport": 49.466667, + "longitudeAirport": -123.75, + "nameAirport": "Sechelt", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "airportId": 9270, + "codeIataAirport": "YHT", + "codeIataCity": "YHT", + "codeIcaoAirport": "CYHT", + "codeIso2Country": "CA", + "geonameId": "7668126", + "latitudeAirport": 60.75, + "longitudeAirport": -137.5, + "nameAirport": "Haines Junction", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-5", + "airportId": 9271, + "codeIataAirport": "YHU", + "codeIataCity": "YMQ", + "codeIcaoAirport": "CYHU", + "codeIso2Country": "CA", + "geonameId": "6301459", + "latitudeAirport": 45.5, + "longitudeAirport": -73.6, + "nameAirport": "St Hubert", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-7", + "airportId": 9272, + "codeIataAirport": "YHY", + "codeIataCity": "YHY", + "codeIcaoAirport": "CYHY", + "codeIso2Country": "CA", + "geonameId": "6296206", + "latitudeAirport": 60.845554, + "longitudeAirport": -115.778336, + "nameAirport": "Hay River", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-4", + "airportId": 9273, + "codeIataAirport": "YHZ", + "codeIataCity": "YHZ", + "codeIcaoAirport": "CYHZ", + "codeIso2Country": "CA", + "geonameId": "6324729", + "latitudeAirport": 44.88496, + "longitudeAirport": -63.51425, + "nameAirport": "Halifax International", + "nameCountry": "Canada", + "phone": "902-873-4422", + "timezone": "America/Halifax" + }, + { + "GMT": "-5", + "airportId": 9274, + "codeIataAirport": "YIB", + "codeIataCity": "YIB", + "codeIcaoAirport": "CYIB", + "codeIso2Country": "CA", + "geonameId": "7668127", + "latitudeAirport": 48.75, + "longitudeAirport": -91.61667, + "nameAirport": "Atikokan", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Atikokan" + }, + { + "GMT": "8", + "airportId": 9275, + "codeIataAirport": "YIE", + "codeIataCity": "YIE", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "8260715", + "latitudeAirport": 47.31, + "longitudeAirport": 119.910835, + "nameAirport": "Yiershi", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-4", + "airportId": 9276, + "codeIataAirport": "YIF", + "codeIataCity": "YIF", + "codeIcaoAirport": "CYIF", + "codeIso2Country": "CA", + "geonameId": "7730036", + "latitudeAirport": 51.216667, + "longitudeAirport": -58.666668, + "nameAirport": "Pakuashipi", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Blanc-Sablon" + }, + { + "GMT": "-8", + "airportId": 9277, + "codeIataAirport": "YIG", + "codeIataCity": "YIG", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 50.38333, + "longitudeAirport": -125.13333, + "nameAirport": "Big Bay Marina", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "8", + "airportId": 9278, + "codeIataAirport": "YIH", + "codeIataCity": "YIH", + "codeIcaoAirport": "ZHYC", + "codeIso2Country": "CN", + "geonameId": "7731644", + "latitudeAirport": 30.549934, + "longitudeAirport": 111.478935, + "nameAirport": "Yichang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 9279, + "codeIataAirport": "YIK", + "codeIataCity": "YIK", + "codeIcaoAirport": "CYIK", + "codeIso2Country": "CA", + "geonameId": "6296209", + "latitudeAirport": 62.416668, + "longitudeAirport": -76.083336, + "nameAirport": "Ivujivik", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "8", + "airportId": 9280, + "codeIataAirport": "YIN", + "codeIataCity": "YIN", + "codeIcaoAirport": "ZWYN", + "codeIso2Country": "CN", + "geonameId": "6301397", + "latitudeAirport": 43.952, + "longitudeAirport": 81.33144, + "nameAirport": "Yining", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 9281, + "codeIataAirport": "YIO", + "codeIataCity": "YIO", + "codeIcaoAirport": "CYIO", + "codeIso2Country": "CA", + "geonameId": "6296210", + "latitudeAirport": 72.683334, + "longitudeAirport": -78.0, + "nameAirport": "Pond Inlet", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-5", + "airportId": 9282, + "codeIataAirport": "YIP", + "codeIataCity": "DTT", + "codeIcaoAirport": "KYIP", + "codeIso2Country": "US", + "geonameId": "5015171", + "latitudeAirport": 42.233334, + "longitudeAirport": -83.53333, + "nameAirport": "Willow Run", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Detroit" + }, + { + "GMT": "-6", + "airportId": 9283, + "codeIataAirport": "YIV", + "codeIataCity": "YIV", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 54.2, + "longitudeAirport": -94.78333, + "nameAirport": "Island Lk/Garden Hill", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "8", + "airportId": 9284, + "codeIataAirport": "YIW", + "codeIataCity": "YIW", + "codeIcaoAirport": "ZSYW", + "codeIso2Country": "CN", + "geonameId": "7668807", + "latitudeAirport": 29.344563, + "longitudeAirport": 120.02881, + "nameAirport": "Yiwu", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 9285, + "codeIataAirport": "YJB", + "codeIataCity": "BCN", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": -35.27222, + "longitudeAirport": 150.82222, + "nameAirport": "Sants Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 9286, + "codeIataAirport": "YJC", + "codeIataCity": "LCG", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 43.3708731, + "longitudeAirport": -8.395835, + "nameAirport": "A Coruna Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 9287, + "codeIataAirport": "YJD", + "codeIataCity": "BCN", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": -24.833332, + "longitudeAirport": 143.06667, + "nameAirport": "Franca Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 9288, + "codeIataAirport": "YJE", + "codeIataCity": "ALC", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 38.34521, + "longitudeAirport": -0.4809945, + "nameAirport": "Alicante Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-7", + "airportId": 9289, + "codeIataAirport": "YJF", + "codeIataCity": "YJF", + "codeIcaoAirport": "CYJF", + "codeIso2Country": "CA", + "geonameId": "6296212", + "latitudeAirport": 60.25, + "longitudeAirport": -123.46667, + "nameAirport": "Fort Liard", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "1", + "airportId": 9290, + "codeIataAirport": "YJG", + "codeIataCity": "GRX", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 37.1764874, + "longitudeAirport": -3.5979291, + "nameAirport": "Granada Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 9291, + "codeIataAirport": "YJH", + "codeIataCity": "EAS", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 43.3208116, + "longitudeAirport": -1.9844474, + "nameAirport": "San Sebastian Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 9292, + "codeIataAirport": "YJI", + "codeIataCity": "BIO", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": -36.516666, + "longitudeAirport": 148.61667, + "nameAirport": "Abando Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 9293, + "codeIataAirport": "YJL", + "codeIataCity": "SDR", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": -20.583332, + "longitudeAirport": 141.7, + "nameAirport": "Santander Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 9294, + "codeIataAirport": "YJM", + "codeIataCity": "AGP", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 36.7196484, + "longitudeAirport": -4.4200163, + "nameAirport": "Malaga Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-5", + "airportId": 9295, + "codeIataAirport": "YJN", + "codeIataCity": "YJN", + "codeIcaoAirport": "CYJN", + "codeIso2Country": "CA", + "geonameId": "7730323", + "latitudeAirport": 45.333332, + "longitudeAirport": -73.333336, + "nameAirport": "St Jean", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "airportId": 9296, + "codeIataAirport": "YJO", + "codeIataCity": "YJO", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260969", + "latitudeAirport": 56.666668, + "longitudeAirport": -131.11667, + "nameAirport": "Johnny Mountain", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "airportId": 9297, + "codeIataAirport": "YJP", + "codeIataCity": "YJP", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260831", + "latitudeAirport": 53.319168, + "longitudeAirport": -117.75306, + "nameAirport": "Jasper-hinton", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "1", + "airportId": 9298, + "codeIataAirport": "YJR", + "codeIataCity": "VGO", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 42.2313564, + "longitudeAirport": -8.7124471, + "nameAirport": "Vigo Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "8.30", + "airportId": 9299, + "codeIataAirport": "YJS", + "codeIataCity": "YJS", + "codeIcaoAirport": "", + "codeIso2Country": "KP", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Samjiyon", + "nameCountry": "North Korea", + "phone": "", + "timezone": "Asia/Pyongyang" + }, + { + "GMT": "-2:30", + "airportId": 9300, + "codeIataAirport": "YJT", + "codeIataCity": "YJT", + "codeIcaoAirport": "CYJT", + "codeIso2Country": "CA", + "geonameId": "6296213", + "latitudeAirport": 48.533333, + "longitudeAirport": -58.55, + "nameAirport": "Stephenville", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/St_Johns" + }, + { + "GMT": "1", + "airportId": 9301, + "codeIataAirport": "YJV", + "codeIataCity": "VLC", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 39.4907322, + "longitudeAirport": -0.4558824, + "nameAirport": "Valencia Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 9302, + "codeIataAirport": "YJW", + "codeIataCity": "XRY", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 36.6865618, + "longitudeAirport": -6.1371725, + "nameAirport": "Jerez Railway Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-8", + "airportId": 9303, + "codeIataAirport": "YKA", + "codeIataCity": "YKA", + "codeIcaoAirport": "CYKA", + "codeIso2Country": "CA", + "geonameId": "6301460", + "latitudeAirport": 50.70545, + "longitudeAirport": -120.442024, + "nameAirport": "Kamloops", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "airportId": 9304, + "codeIataAirport": "YKC", + "codeIataCity": "YKC", + "codeIcaoAirport": "CYKC", + "codeIso2Country": "CA", + "geonameId": "8298841", + "latitudeAirport": 44.25, + "longitudeAirport": -76.6, + "nameAirport": "Collins Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "-5", + "airportId": 9305, + "codeIataAirport": "YKD", + "codeIataCity": "YKD", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298866", + "latitudeAirport": 44.20139, + "longitudeAirport": -81.60667, + "nameAirport": "Township Airport", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "airportId": 9306, + "codeIataAirport": "YKE", + "codeIataCity": "YKE", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298690", + "latitudeAirport": 53.05, + "longitudeAirport": -94.666664, + "nameAirport": "Knee Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 9307, + "codeIataAirport": "YKF", + "codeIataCity": "YKF", + "codeIcaoAirport": "CYKF", + "codeIso2Country": "CA", + "geonameId": "6296215", + "latitudeAirport": 43.455223, + "longitudeAirport": -80.37503, + "nameAirport": "Kitchener-Waterloo Regional", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9308, + "codeIataAirport": "YKG", + "codeIataCity": "YKG", + "codeIcaoAirport": "CYAS", + "codeIso2Country": "CA", + "geonameId": "7910211", + "latitudeAirport": 60.023083, + "longitudeAirport": -70.0046, + "nameAirport": "Kangirsuk", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "airportId": 9309, + "codeIataAirport": "YKI", + "codeIataCity": "YKI", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298872", + "latitudeAirport": 58.98, + "longitudeAirport": 23.86, + "nameAirport": "Kennosao Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-6", + "airportId": 9310, + "codeIataAirport": "YKJ", + "codeIataCity": "YKJ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 57.25, + "longitudeAirport": -105.6, + "nameAirport": "Key Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "-8", + "airportId": 9311, + "codeIataAirport": "YKK", + "codeIataCity": "YKK", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260837", + "latitudeAirport": 53.0, + "longitudeAirport": -130.0, + "nameAirport": "Kitkatla", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9312, + "codeIataAirport": "YKL", + "codeIataCity": "YKL", + "codeIcaoAirport": "CYKL", + "codeIso2Country": "CA", + "geonameId": "6296218", + "latitudeAirport": 54.783333, + "longitudeAirport": -64.816666, + "nameAirport": "Schefferville", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "airportId": 9313, + "codeIataAirport": "YKM", + "codeIataCity": "YKM", + "codeIcaoAirport": "KYKM", + "codeIso2Country": "US", + "geonameId": "5816605", + "latitudeAirport": 46.566944, + "longitudeAirport": -120.53778, + "nameAirport": "Yakima Air Terminal", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "airportId": 9314, + "codeIataAirport": "YKN", + "codeIataCity": "YKN", + "codeIcaoAirport": "KYKN", + "codeIso2Country": "US", + "geonameId": "5233053", + "latitudeAirport": 42.916943, + "longitudeAirport": -97.38639, + "nameAirport": "Chan Gurney", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 9315, + "codeIataAirport": "YKQ", + "codeIataCity": "YKQ", + "codeIcaoAirport": "CYKQ", + "codeIso2Country": "CA", + "geonameId": "6296220", + "latitudeAirport": 51.4875, + "longitudeAirport": -78.75, + "nameAirport": "Waskaganish", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "9", + "airportId": 9316, + "codeIataAirport": "YKS", + "codeIataCity": "YKS", + "codeIcaoAirport": "UEEE", + "codeIso2Country": "RU", + "geonameId": "6300926", + "latitudeAirport": 62.085606, + "longitudeAirport": 129.75006, + "nameAirport": "Yakutsk", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "-8", + "airportId": 9317, + "codeIataAirport": "YKT", + "codeIataCity": "YKT", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "7910391", + "latitudeAirport": 52.59403, + "longitudeAirport": -128.52168, + "nameAirport": "Klemtu", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9318, + "codeIataAirport": "YKU", + "codeIataCity": "YKU", + "codeIcaoAirport": "CSU2", + "codeIso2Country": "CA", + "geonameId": "7730453", + "latitudeAirport": 53.806824, + "longitudeAirport": -78.924065, + "nameAirport": "Chisasibi", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9319, + "codeIataAirport": "YKX", + "codeIataCity": "YKX", + "codeIcaoAirport": "CYKX", + "codeIso2Country": "CA", + "geonameId": "7668128", + "latitudeAirport": 48.15, + "longitudeAirport": -80.03333, + "nameAirport": "Kirkland Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "airportId": 9320, + "codeIataAirport": "YKY", + "codeIataCity": "YKY", + "codeIcaoAirport": "CYKY", + "codeIso2Country": "CA", + "geonameId": "6296221", + "latitudeAirport": 51.45, + "longitudeAirport": -109.166664, + "nameAirport": "Kindersley", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "-5", + "airportId": 9321, + "codeIataAirport": "YKZ", + "codeIataCity": "YTO", + "codeIcaoAirport": "CYKZ", + "codeIso2Country": "CA", + "geonameId": "6301461", + "latitudeAirport": 43.86667, + "longitudeAirport": -79.36667, + "nameAirport": "Buttonville Municipalcipal", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 9322, + "codeIataAirport": "YLA", + "codeIataCity": "YLA", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260998", + "latitudeAirport": 54.233334, + "longitudeAirport": -133.01666, + "nameAirport": "Langara", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "airportId": 9323, + "codeIataAirport": "YLB", + "codeIataCity": "YLB", + "codeIcaoAirport": "CYLB", + "codeIso2Country": "CA", + "geonameId": "8260843", + "latitudeAirport": 54.766666, + "longitudeAirport": -112.01667, + "nameAirport": "Lac Biche", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-5", + "airportId": 9324, + "codeIataAirport": "YLC", + "codeIataCity": "YLC", + "codeIcaoAirport": "CYLC", + "codeIso2Country": "CA", + "geonameId": "6296223", + "latitudeAirport": 62.85, + "longitudeAirport": -69.88333, + "nameAirport": "Kimmirut", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-5", + "airportId": 9325, + "codeIataAirport": "YLD", + "codeIataCity": "YLD", + "codeIcaoAirport": "CYLD", + "codeIso2Country": "CA", + "geonameId": "6296224", + "latitudeAirport": 47.819443, + "longitudeAirport": -83.352776, + "nameAirport": "Chapleau", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "airportId": 9326, + "codeIataAirport": "YLE", + "codeIataCity": "YLE", + "codeIcaoAirport": "CEM3", + "codeIso2Country": "CA", + "geonameId": "7910230", + "latitudeAirport": 63.15, + "longitudeAirport": -117.26667, + "nameAirport": "Wha Ti", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-5", + "airportId": 9327, + "codeIataAirport": "YLF", + "codeIataCity": "YLF", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 54.183334, + "longitudeAirport": -72.48333, + "nameAirport": "LaForges", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "8", + "airportId": 9328, + "codeIataAirport": "YLG", + "codeIataCity": "YLG", + "codeIcaoAirport": "YYAL", + "codeIso2Country": "AU", + "geonameId": "7731645", + "latitudeAirport": -28.35, + "longitudeAirport": 116.666664, + "nameAirport": "Yalgoo", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "airportId": 9329, + "codeIataAirport": "YLH", + "codeIataCity": "YLH", + "codeIcaoAirport": "CYLH", + "codeIso2Country": "CA", + "geonameId": "7668129", + "latitudeAirport": 52.183334, + "longitudeAirport": -87.93, + "nameAirport": "Lansdowne House", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "2", + "airportId": 9330, + "codeIataAirport": "YLI", + "codeIataCity": "YLI", + "codeIcaoAirport": "EFYL", + "codeIso2Country": "FI", + "geonameId": "7730069", + "latitudeAirport": 64.05444, + "longitudeAirport": 24.72889, + "nameAirport": "Ylivieska", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-6", + "airportId": 9331, + "codeIataAirport": "YLJ", + "codeIataCity": "YLJ", + "codeIcaoAirport": "CYLJ", + "codeIso2Country": "CA", + "geonameId": "6296225", + "latitudeAirport": 54.5, + "longitudeAirport": -108.666664, + "nameAirport": "Meadow Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "-5", + "airportId": 9332, + "codeIataAirport": "YLK", + "codeIataCity": "YLK", + "codeIcaoAirport": "CYLS", + "codeIso2Country": "CA", + "geonameId": "8298710", + "latitudeAirport": 44.4853, + "longitudeAirport": -79.5556, + "nameAirport": "Lake Simcoe Regional", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "airportId": 9333, + "codeIataAirport": "YLL", + "codeIataCity": "YLL", + "codeIcaoAirport": "CYLL", + "codeIso2Country": "CA", + "geonameId": "6296227", + "latitudeAirport": 53.31297, + "longitudeAirport": -110.072716, + "nameAirport": "Lloydminster", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "8", + "airportId": 9334, + "codeIataAirport": "YLN", + "codeIataCity": "YLN", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "8260943", + "latitudeAirport": 46.38333, + "longitudeAirport": 129.5, + "nameAirport": "Yilan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 9335, + "codeIataAirport": "YLO", + "codeIataCity": "YLO", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6146393", + "latitudeAirport": 49.781666, + "longitudeAirport": -99.638336, + "nameAirport": "Shilo", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 9336, + "codeIataAirport": "YLP", + "codeIataCity": "YLP", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6074639", + "latitudeAirport": 50.283333, + "longitudeAirport": -64.15, + "nameAirport": "Mingan", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9337, + "codeIataAirport": "YLQ", + "codeIataCity": "YLQ", + "codeIcaoAirport": "CYLQ", + "codeIso2Country": "CA", + "geonameId": "8260840", + "latitudeAirport": 47.5, + "longitudeAirport": -72.833336, + "nameAirport": "La Tuque", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "airportId": 9338, + "codeIataAirport": "YLR", + "codeIataCity": "YLR", + "codeIcaoAirport": "CYLR", + "codeIso2Country": "CA", + "geonameId": "7668130", + "latitudeAirport": 56.5, + "longitudeAirport": -100.03333, + "nameAirport": "Leaf Rapids", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 9339, + "codeIataAirport": "YLS", + "codeIataCity": "YLS", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260849", + "latitudeAirport": 49.033333, + "longitudeAirport": -77.01667, + "nameAirport": "Lebel-Sur-Quevillon", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9340, + "codeIataAirport": "YLT", + "codeIataCity": "YLT", + "codeIcaoAirport": "CYLT", + "codeIso2Country": "CA", + "geonameId": "6301462", + "latitudeAirport": 82.51667, + "longitudeAirport": -62.283333, + "nameAirport": "Alert", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Pangnirtung" + }, + { + "GMT": "-8", + "airportId": 9341, + "codeIataAirport": "YLW", + "codeIataCity": "YLW", + "codeIcaoAirport": "CYLW", + "codeIso2Country": "CA", + "geonameId": "6296229", + "latitudeAirport": 49.95154, + "longitudeAirport": -119.38139, + "nameAirport": "Kelowna Airport", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9342, + "codeIataAirport": "YLX", + "codeIataCity": "YLX", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298875", + "latitudeAirport": 59.35, + "longitudeAirport": -94.68, + "nameAirport": "Long Point", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 9343, + "codeIataAirport": "YLY", + "codeIataCity": "YLY", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8299186", + "latitudeAirport": 49.100834, + "longitudeAirport": -122.63084, + "nameAirport": "Langley Regional", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "airportId": 9344, + "codeIataAirport": "YMA", + "codeIataCity": "YMA", + "codeIcaoAirport": "CYMA", + "codeIso2Country": "CA", + "geonameId": "6296230", + "latitudeAirport": 63.61639, + "longitudeAirport": -135.87361, + "nameAirport": "Mayo", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-8", + "airportId": 9345, + "codeIataAirport": "YMB", + "codeIataCity": "YMB", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6072350", + "latitudeAirport": 50.11667, + "longitudeAirport": -120.75, + "nameAirport": "Merritt", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9346, + "codeIataAirport": "YMC", + "codeIataCity": "YMC", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 56.566666, + "longitudeAirport": -70.816666, + "nameAirport": "Maricourt Airstrip", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9347, + "codeIataAirport": "YME", + "codeIataCity": "YME", + "codeIcaoAirport": "CYME", + "codeIso2Country": "CA", + "geonameId": "7668131", + "latitudeAirport": 48.833332, + "longitudeAirport": -67.51667, + "nameAirport": "Matane", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "airportId": 9348, + "codeIataAirport": "YMF", + "codeIataCity": "YMF", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "7910288", + "latitudeAirport": 48.816666, + "longitudeAirport": -123.2, + "nameAirport": "Montagne Harbor", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9349, + "codeIataAirport": "YMG", + "codeIataCity": "YMG", + "codeIcaoAirport": "CYMG", + "codeIso2Country": "CA", + "geonameId": "7668132", + "latitudeAirport": 49.083332, + "longitudeAirport": -85.86667, + "nameAirport": "Manitouwadge", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-2:30", + "airportId": 9350, + "codeIataAirport": "YMH", + "codeIataCity": "YMH", + "codeIcaoAirport": "CYMH", + "codeIso2Country": "CA", + "geonameId": "6067456", + "latitudeAirport": 52.3, + "longitudeAirport": -55.833332, + "nameAirport": "Mary's Harbour", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/St_Johns" + }, + { + "GMT": "-6", + "airportId": 9351, + "codeIataAirport": "YMI", + "codeIataCity": "YMI", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6074440", + "latitudeAirport": 50.0, + "longitudeAirport": -94.666664, + "nameAirport": "Minaki", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-6", + "airportId": 9352, + "codeIataAirport": "YMJ", + "codeIataCity": "YMJ", + "codeIcaoAirport": "CYMJ", + "codeIso2Country": "CA", + "geonameId": "6296231", + "latitudeAirport": 50.38333, + "longitudeAirport": -105.53333, + "nameAirport": "Moose Jaw / Air Vice Marshal C. M. Mcewen Airport", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "5", + "airportId": 9353, + "codeIataAirport": "YMK", + "codeIataCity": "YMK", + "codeIcaoAirport": "USDK", + "codeIso2Country": "RU", + "geonameId": "8260749", + "latitudeAirport": 68.46843, + "longitudeAirport": 73.59573, + "nameAirport": "Mys-Kamenny", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-5", + "airportId": 9354, + "codeIataAirport": "YML", + "codeIataCity": "YML", + "codeIcaoAirport": "CYML", + "codeIso2Country": "CA", + "geonameId": "6296232", + "latitudeAirport": 47.65, + "longitudeAirport": -70.166664, + "nameAirport": "Charlevoix", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-7", + "airportId": 9355, + "codeIataAirport": "YMM", + "codeIataCity": "YMM", + "codeIcaoAirport": "CYMM", + "codeIso2Country": "CA", + "geonameId": "6301465", + "latitudeAirport": 56.65659, + "longitudeAirport": -111.22395, + "nameAirport": "Fort Mcmurray", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-4", + "airportId": 9356, + "codeIataAirport": "YMN", + "codeIataCity": "YMN", + "codeIcaoAirport": "CYFT", + "codeIso2Country": "CA", + "geonameId": "6943727", + "latitudeAirport": 55.166668, + "longitudeAirport": -59.166668, + "nameAirport": "Makkovik", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-5", + "airportId": 9357, + "codeIataAirport": "YMO", + "codeIataCity": "YMO", + "codeIcaoAirport": "CYMO", + "codeIso2Country": "CA", + "geonameId": "6296233", + "latitudeAirport": 51.29111, + "longitudeAirport": -80.604164, + "nameAirport": "Moosonee", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 9358, + "codeIataAirport": "YMP", + "codeIataCity": "YMP", + "codeIcaoAirport": "CAT5", + "codeIso2Country": "CA", + "geonameId": "8298649", + "latitudeAirport": 50.61111, + "longitudeAirport": -127.09722, + "nameAirport": "Port McNeil", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "airportId": 9359, + "codeIataAirport": "YMR", + "codeIataCity": "YMR", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 55.483334, + "longitudeAirport": -77.51667, + "nameAirport": "Merry Island", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9360, + "codeIataAirport": "YMS", + "codeIataCity": "YMS", + "codeIcaoAirport": "SPMS", + "codeIso2Country": "PE", + "geonameId": "6300813", + "latitudeAirport": -5.9, + "longitudeAirport": -76.1, + "nameAirport": "Yurimaguas", + "nameCountry": "Peru", + "phone": "", + "timezone": "America/Lima" + }, + { + "GMT": "-5", + "airportId": 9361, + "codeIataAirport": "YMT", + "codeIataCity": "YMT", + "codeIcaoAirport": "CYMT", + "codeIso2Country": "CA", + "geonameId": "6296234", + "latitudeAirport": 49.916668, + "longitudeAirport": -74.36667, + "nameAirport": "Chibougamau", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "airportId": 9362, + "codeIataAirport": "YMU", + "codeIataCity": "YMU", + "codeIcaoAirport": "CYMU", + "codeIso2Country": "CA", + "geonameId": "8298624", + "latitudeAirport": 50.07145, + "longitudeAirport": -124.98369, + "nameAirport": "Mansons Landing SPB", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9363, + "codeIataAirport": "YMV", + "codeIataCity": "YMV", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260861", + "latitudeAirport": 71.4914, + "longitudeAirport": -79.3603, + "nameAirport": "Mary River", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-5", + "airportId": 9364, + "codeIataAirport": "YMW", + "codeIataCity": "YMW", + "codeIcaoAirport": "CYMW", + "codeIso2Country": "CA", + "geonameId": "8261047", + "latitudeAirport": 46.38333, + "longitudeAirport": -75.96667, + "nameAirport": "Maniwaki", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9365, + "codeIataAirport": "YMX", + "codeIataCity": "YMQ", + "codeIcaoAirport": "CYMX", + "codeIso2Country": "CA", + "geonameId": "6296236", + "latitudeAirport": 45.666668, + "longitudeAirport": -74.03, + "nameAirport": "Mirabel", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9366, + "codeIataAirport": "YMY", + "codeIataCity": "YMQ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 45.5088889, + "longitudeAirport": -73.5541667, + "nameAirport": "Downtown Railway Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9367, + "codeIataAirport": "YNA", + "codeIataCity": "YNA", + "codeIcaoAirport": "CYNA", + "codeIso2Country": "CA", + "geonameId": "6296237", + "latitudeAirport": 50.183334, + "longitudeAirport": -61.8, + "nameAirport": "Natashquan", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "3", + "airportId": 9368, + "codeIataAirport": "YNB", + "codeIataCity": "YNB", + "codeIcaoAirport": "OEYN", + "codeIso2Country": "SA", + "geonameId": "6300033", + "latitudeAirport": 24.140734, + "longitudeAirport": 38.06302, + "nameAirport": "Yanbu", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-5", + "airportId": 9369, + "codeIataAirport": "YNC", + "codeIataCity": "YNC", + "codeIcaoAirport": "CYNC", + "codeIso2Country": "CA", + "geonameId": "6178041", + "latitudeAirport": 53.0, + "longitudeAirport": -78.816666, + "nameAirport": "Wemindji", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9370, + "codeIataAirport": "YND", + "codeIataCity": "YOW", + "codeIcaoAirport": "CYND", + "codeIso2Country": "CA", + "geonameId": "6296239", + "latitudeAirport": 45.483334, + "longitudeAirport": -75.63333, + "nameAirport": "Executive Gatineau-Ottawa", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "airportId": 9371, + "codeIataAirport": "YNE", + "codeIataCity": "YNE", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "7732488", + "latitudeAirport": 53.954166, + "longitudeAirport": -97.84583, + "nameAirport": "Norway House", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-2:30", + "airportId": 9372, + "codeIataAirport": "YNF", + "codeIataCity": "YNF", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5927969", + "latitudeAirport": 48.946945, + "longitudeAirport": -57.94389, + "nameAirport": "Deer Lake/Stephenville", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/St_Johns" + }, + { + "GMT": "-5", + "airportId": 9373, + "codeIataAirport": "YNG", + "codeIataCity": "YNG", + "codeIcaoAirport": "KYNG", + "codeIso2Country": "US", + "geonameId": "5177575", + "latitudeAirport": 41.25611, + "longitudeAirport": -80.66972, + "nameAirport": "Youngstown", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 9374, + "codeIataAirport": "YNH", + "codeIataCity": "YNH", + "codeIcaoAirport": "CYNH", + "codeIso2Country": "CA", + "geonameId": "8298905", + "latitudeAirport": 56.0, + "longitudeAirport": -121.9, + "nameAirport": "Hudson Hope", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-5", + "airportId": 9375, + "codeIataAirport": "YNI", + "codeIataCity": "YNI", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6088623", + "latitudeAirport": 53.166668, + "longitudeAirport": -70.96667, + "nameAirport": "Nitchequon", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "8", + "airportId": 9376, + "codeIataAirport": "YNJ", + "codeIataCity": "YNJ", + "codeIcaoAirport": "ZYYJ", + "codeIso2Country": "CN", + "geonameId": "7668815", + "latitudeAirport": 42.885662, + "longitudeAirport": 129.43936, + "nameAirport": "Yanji", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-8", + "airportId": 9377, + "codeIataAirport": "YNK", + "codeIataCity": "YNK", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298740", + "latitudeAirport": 50.083332, + "longitudeAirport": -125.916664, + "nameAirport": "Nootka Sound", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "airportId": 9378, + "codeIataAirport": "YNL", + "codeIataCity": "YNL", + "codeIcaoAirport": "CYNL", + "codeIso2Country": "CA", + "geonameId": "7668133", + "latitudeAirport": 58.275, + "longitudeAirport": -104.08111, + "nameAirport": "Points North Landing", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "-5", + "airportId": 9379, + "codeIataAirport": "YNM", + "codeIataCity": "YNM", + "codeIcaoAirport": "CYNM", + "codeIso2Country": "CA", + "geonameId": "6296241", + "latitudeAirport": 49.75, + "longitudeAirport": -77.8, + "nameAirport": "Matagami", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "8", + "airportId": 9380, + "codeIataAirport": "YNN", + "codeIataCity": "YNN", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8260976", + "latitudeAirport": -22.766666, + "longitudeAirport": 119.23333, + "nameAirport": "Yandi", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "airportId": 9381, + "codeIataAirport": "YNO", + "codeIataCity": "YNO", + "codeIcaoAirport": "CKQ3", + "codeIso2Country": "CA", + "geonameId": "7730448", + "latitudeAirport": 52.5, + "longitudeAirport": -92.416664, + "nameAirport": "North Spirit Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-4", + "airportId": 9382, + "codeIataAirport": "YNP", + "codeIataCity": "YNP", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "7910167", + "latitudeAirport": 55.91389, + "longitudeAirport": -61.184444, + "nameAirport": "Natuashish", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-6", + "airportId": 9383, + "codeIataAirport": "YNR", + "codeIataCity": "YNR", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8261011", + "latitudeAirport": 50.833332, + "longitudeAirport": -97.0, + "nameAirport": "Arnes", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 9384, + "codeIataAirport": "YNS", + "codeIataCity": "YNS", + "codeIcaoAirport": "CYHH", + "codeIso2Country": "CA", + "geonameId": "6087000", + "latitudeAirport": 49.74167, + "longitudeAirport": -76.74167, + "nameAirport": "Nemiscau", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "8", + "airportId": 9385, + "codeIataAirport": "YNT", + "codeIataCity": "YNT", + "codeIcaoAirport": "ZSYT", + "codeIso2Country": "CN", + "geonameId": "6453415", + "latitudeAirport": 37.407326, + "longitudeAirport": 121.3711, + "nameAirport": "Yantai", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-7", + "airportId": 9386, + "codeIataAirport": "YNX", + "codeIataCity": "YNX", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260714", + "latitudeAirport": 63.5936, + "longitudeAirport": -110.905, + "nameAirport": "Snap Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "9", + "airportId": 9387, + "codeIataAirport": "YNY", + "codeIataCity": "YNY", + "codeIcaoAirport": "RKNY", + "codeIso2Country": "KR", + "geonameId": "7668419", + "latitudeAirport": 38.066666, + "longitudeAirport": 128.6, + "nameAirport": "Yangyang", + "nameCountry": "South Korea", + "phone": "", + "timezone": "Asia/Seoul" + }, + { + "GMT": "8", + "airportId": 9388, + "codeIataAirport": "YNZ", + "codeIataCity": "YNZ", + "codeIcaoAirport": "ZSYN", + "codeIso2Country": "CN", + "geonameId": "7731646", + "latitudeAirport": 33.43468, + "longitudeAirport": 120.20418, + "nameAirport": "Yancheng", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-7", + "airportId": 9389, + "codeIataAirport": "YOA", + "codeIataCity": "YOA", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 64.69945, + "longitudeAirport": -110.61444, + "nameAirport": "Ekati", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-8", + "airportId": 9390, + "codeIataAirport": "YOC", + "codeIataCity": "YOC", + "codeIcaoAirport": "CYOC", + "codeIso2Country": "CA", + "geonameId": "6296243", + "latitudeAirport": 67.583336, + "longitudeAirport": -139.83333, + "nameAirport": "Old Crow", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-7", + "airportId": 9391, + "codeIataAirport": "YOD", + "codeIataCity": "YOD", + "codeIcaoAirport": "CEN5", + "codeIso2Country": "CA", + "geonameId": "6296244", + "latitudeAirport": 54.466667, + "longitudeAirport": -110.25, + "nameAirport": "Cold Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-7", + "airportId": 9392, + "codeIataAirport": "YOE", + "codeIataCity": "YOE", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5951224", + "latitudeAirport": 55.733334, + "longitudeAirport": -117.25, + "nameAirport": "Falher", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-5", + "airportId": 9393, + "codeIataAirport": "YOG", + "codeIataCity": "YOG", + "codeIcaoAirport": "CNT3", + "codeIso2Country": "CA", + "geonameId": "7730451", + "latitudeAirport": 51.666668, + "longitudeAirport": -85.916664, + "nameAirport": "Ogoki", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "airportId": 9394, + "codeIataAirport": "YOH", + "codeIataCity": "YOH", + "codeIcaoAirport": "CYOH", + "codeIso2Country": "CA", + "geonameId": "7668134", + "latitudeAirport": 54.95, + "longitudeAirport": -95.28333, + "nameAirport": "Oxford House", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 9395, + "codeIataAirport": "YOI", + "codeIataCity": "YOI", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260753", + "latitudeAirport": 52.2219, + "longitudeAirport": -76.6125, + "nameAirport": "Opinaca", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-7", + "airportId": 9396, + "codeIataAirport": "YOJ", + "codeIataCity": "YOJ", + "codeIcaoAirport": "CYOJ", + "codeIso2Country": "CA", + "geonameId": "6296245", + "latitudeAirport": 58.618332, + "longitudeAirport": -117.168335, + "nameAirport": "Footner Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "9", + "airportId": 9397, + "codeIataAirport": "YOK", + "codeIataCity": "YOK", + "codeIcaoAirport": "", + "codeIso2Country": "JP", + "geonameId": "0", + "latitudeAirport": 35.466667, + "longitudeAirport": 139.46666, + "nameAirport": "Yokohama", + "nameCountry": "Japan", + "phone": "", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "airportId": 9398, + "codeIataAirport": "YOL", + "codeIataCity": "YOL", + "codeIcaoAirport": "DNYO", + "codeIso2Country": "NG", + "geonameId": "6296449", + "latitudeAirport": 9.266111, + "longitudeAirport": 12.432222, + "nameAirport": "Yola", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-5", + "airportId": 9399, + "codeIataAirport": "YOO", + "codeIataCity": "QWA", + "codeIcaoAirport": "CYOO", + "codeIso2Country": "CA", + "geonameId": "7668135", + "latitudeAirport": 43.916668, + "longitudeAirport": -78.9, + "nameAirport": "Oshawa", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "airportId": 9400, + "codeIataAirport": "YOP", + "codeIataCity": "YOP", + "codeIcaoAirport": "CYOP", + "codeIso2Country": "CA", + "geonameId": "7668136", + "latitudeAirport": 58.5, + "longitudeAirport": -119.4, + "nameAirport": "Rainbow Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-5", + "airportId": 9401, + "codeIataAirport": "YOS", + "codeIataCity": "YOS", + "codeIcaoAirport": "CYOS", + "codeIso2Country": "CA", + "geonameId": "7730037", + "latitudeAirport": 44.59028, + "longitudeAirport": -80.8375, + "nameAirport": "Billy Bishop Regional", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "2", + "airportId": 9402, + "codeIataAirport": "YOT", + "codeIataCity": "YOT", + "codeIcaoAirport": "LLYT", + "codeIso2Country": "IL", + "geonameId": "7668324", + "latitudeAirport": 29.9, + "longitudeAirport": 35.066666, + "nameAirport": "Yotvata", + "nameCountry": "Israel", + "phone": "", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "-5", + "airportId": 9403, + "codeIataAirport": "YOW", + "codeIataCity": "YOW", + "codeIcaoAirport": "CYOW", + "codeIso2Country": "CA", + "geonameId": "6296246", + "latitudeAirport": 45.32083, + "longitudeAirport": -75.672775, + "nameAirport": "Ottawa Macdonald-Cartier International", + "nameCountry": "Canada", + "phone": "613-248-2125", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9404, + "codeIataAirport": "YOY", + "codeIataCity": "YOY", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 45.0, + "longitudeAirport": -72.0, + "nameAirport": "Valcartier", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "airportId": 9405, + "codeIataAirport": "YPA", + "codeIataCity": "YPA", + "codeIcaoAirport": "CYPA", + "codeIso2Country": "CA", + "geonameId": "6296247", + "latitudeAirport": 53.216667, + "longitudeAirport": -105.683334, + "nameAirport": "Glass Field", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "-8", + "airportId": 9406, + "codeIataAirport": "YPB", + "codeIataCity": "YPB", + "codeIcaoAirport": "EHYP", + "codeIso2Country": "CA", + "geonameId": "6111632", + "latitudeAirport": 49.233334, + "longitudeAirport": -124.8, + "nameAirport": "Port Alberni", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "airportId": 9407, + "codeIataAirport": "YPC", + "codeIataCity": "YPC", + "codeIcaoAirport": "CYPC", + "codeIso2Country": "CA", + "geonameId": "6296248", + "latitudeAirport": 69.35514, + "longitudeAirport": -124.07468, + "nameAirport": "Paulatuk", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-5", + "airportId": 9408, + "codeIataAirport": "YPD", + "codeIataCity": "YPD", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6098747", + "latitudeAirport": 45.416668, + "longitudeAirport": -79.916664, + "nameAirport": "Parry Sound", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "airportId": 9409, + "codeIataAirport": "YPE", + "codeIataCity": "YPE", + "codeIcaoAirport": "CYPE", + "codeIso2Country": "CA", + "geonameId": "6296250", + "latitudeAirport": 56.22778, + "longitudeAirport": -117.44028, + "nameAirport": "Peace River", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-8", + "airportId": 9410, + "codeIataAirport": "YPF", + "codeIataCity": "YPF", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5949512", + "latitudeAirport": 48.433334, + "longitudeAirport": -123.4, + "nameAirport": "Esquimalt", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "airportId": 9411, + "codeIataAirport": "YPG", + "codeIataCity": "YPG", + "codeIcaoAirport": "CYPG", + "codeIso2Country": "CA", + "geonameId": "6296251", + "latitudeAirport": 49.966667, + "longitudeAirport": -98.3, + "nameAirport": "Portage La Prairie", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 9412, + "codeIataAirport": "YPH", + "codeIataCity": "YPH", + "codeIcaoAirport": "CYPH", + "codeIso2Country": "CA", + "geonameId": "5983577", + "latitudeAirport": 58.433334, + "longitudeAirport": -78.166664, + "nameAirport": "Inukjuak", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9413, + "codeIataAirport": "YPJ", + "codeIataCity": "YPJ", + "codeIcaoAirport": "CYLA", + "codeIso2Country": "CA", + "geonameId": "6296222", + "latitudeAirport": 59.3, + "longitudeAirport": -69.666664, + "nameAirport": "Aupaluk", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9414, + "codeIataAirport": "YPL", + "codeIataCity": "YPL", + "codeIcaoAirport": "CYPL", + "codeIso2Country": "CA", + "geonameId": "6301468", + "latitudeAirport": 51.208332, + "longitudeAirport": -90.208336, + "nameAirport": "Pickle Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Atikokan" + }, + { + "GMT": "-6", + "airportId": 9415, + "codeIataAirport": "YPM", + "codeIataCity": "YPM", + "codeIcaoAirport": "CYPM", + "codeIso2Country": "CA", + "geonameId": "7668137", + "latitudeAirport": 51.817375, + "longitudeAirport": -93.97287, + "nameAirport": "Pikangikum", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 9416, + "codeIataAirport": "YPN", + "codeIataCity": "YPN", + "codeIcaoAirport": "CYPN", + "codeIso2Country": "CA", + "geonameId": "6301469", + "latitudeAirport": 49.833332, + "longitudeAirport": -64.28333, + "nameAirport": "Port Menier", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9417, + "codeIataAirport": "YPO", + "codeIataCity": "YPO", + "codeIcaoAirport": "CYPO", + "codeIso2Country": "CA", + "geonameId": "7668138", + "latitudeAirport": 54.983334, + "longitudeAirport": -85.433334, + "nameAirport": "Peawanuck", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "airportId": 9418, + "codeIataAirport": "YPP", + "codeIataCity": "YPP", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6105173", + "latitudeAirport": 60.85, + "longitudeAirport": -114.85, + "nameAirport": "Pine Point", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-5", + "airportId": 9419, + "codeIataAirport": "YPQ", + "codeIataCity": "YPQ", + "codeIcaoAirport": "CYPQ", + "codeIso2Country": "CA", + "geonameId": "6296252", + "latitudeAirport": 44.3, + "longitudeAirport": -78.316666, + "nameAirport": "Peterborough", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 9420, + "codeIataAirport": "YPR", + "codeIataCity": "YPR", + "codeIcaoAirport": "CYPR", + "codeIso2Country": "CA", + "geonameId": "6296253", + "latitudeAirport": 54.287224, + "longitudeAirport": -130.44083, + "nameAirport": "Digby Island", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-4", + "airportId": 9421, + "codeIataAirport": "YPS", + "codeIataCity": "YPS", + "codeIcaoAirport": "CYPD", + "codeIso2Country": "CA", + "geonameId": "6296249", + "latitudeAirport": 45.61667, + "longitudeAirport": -61.35, + "nameAirport": "Port Hawkesbury", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Halifax" + }, + { + "GMT": "-8", + "airportId": 9422, + "codeIataAirport": "YPT", + "codeIataCity": "YPT", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298631", + "latitudeAirport": 49.493492, + "longitudeAirport": -123.98066, + "nameAirport": "Pender Harbor", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "airportId": 9423, + "codeIataAirport": "YPW", + "codeIataCity": "YPW", + "codeIcaoAirport": "CYPW", + "codeIso2Country": "CA", + "geonameId": "6296254", + "latitudeAirport": 49.816666, + "longitudeAirport": -124.5, + "nameAirport": "Powell River", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9424, + "codeIataAirport": "YPX", + "codeIataCity": "YPX", + "codeIcaoAirport": "CYPX", + "codeIso2Country": "CA", + "geonameId": "6296255", + "latitudeAirport": 60.033333, + "longitudeAirport": -77.166664, + "nameAirport": "Puvirnituq", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-7", + "airportId": 9425, + "codeIataAirport": "YPY", + "codeIataCity": "YPY", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5955793", + "latitudeAirport": 58.7625, + "longitudeAirport": -111.120834, + "nameAirport": "Fort Chipewyan", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-8", + "airportId": 9426, + "codeIataAirport": "YPZ", + "codeIataCity": "YPZ", + "codeIcaoAirport": "CYPZ", + "codeIso2Country": "CA", + "geonameId": "6301471", + "latitudeAirport": 54.233334, + "longitudeAirport": -125.76667, + "nameAirport": "Burns Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9427, + "codeIataAirport": "YQA", + "codeIataCity": "YQA", + "codeIcaoAirport": "CYQA", + "codeIso2Country": "CA", + "geonameId": "6296256", + "latitudeAirport": 44.966667, + "longitudeAirport": -79.3, + "nameAirport": "Muskoka", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9428, + "codeIataAirport": "YQB", + "codeIataCity": "YQB", + "codeIcaoAirport": "CYQB", + "codeIso2Country": "CA", + "geonameId": "6301472", + "latitudeAirport": 46.792038, + "longitudeAirport": -71.383385, + "nameAirport": "Québec", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9429, + "codeIataAirport": "YQC", + "codeIataCity": "YQC", + "codeIcaoAirport": "CUHA", + "codeIso2Country": "CA", + "geonameId": "6296198", + "latitudeAirport": 61.333332, + "longitudeAirport": -69.63333, + "nameAirport": "Quaqtaq", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "airportId": 9430, + "codeIataAirport": "YQD", + "codeIataCity": "YQD", + "codeIcaoAirport": "CYQD", + "codeIso2Country": "CA", + "geonameId": "6296257", + "latitudeAirport": 53.966667, + "longitudeAirport": -101.1, + "nameAirport": "Clearwater", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-8", + "airportId": 9431, + "codeIataAirport": "YQE", + "codeIataCity": "YQE", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8299121", + "latitudeAirport": 49.666668, + "longitudeAirport": -115.98333, + "nameAirport": "Kimberley", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "airportId": 9432, + "codeIataAirport": "YQF", + "codeIataCity": "YQF", + "codeIcaoAirport": "CYQF", + "codeIso2Country": "CA", + "geonameId": "6296258", + "latitudeAirport": 52.176945, + "longitudeAirport": -113.89333, + "nameAirport": "Red Deer", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-5", + "airportId": 9433, + "codeIataAirport": "YQG", + "codeIataCity": "YQG", + "codeIcaoAirport": "CYQG", + "codeIso2Country": "CA", + "geonameId": "6296259", + "latitudeAirport": 42.274166, + "longitudeAirport": -82.96389, + "nameAirport": "Windsor", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 9434, + "codeIataAirport": "YQH", + "codeIataCity": "YQH", + "codeIcaoAirport": "CYQH", + "codeIso2Country": "CA", + "geonameId": "6296260", + "latitudeAirport": 60.12361, + "longitudeAirport": -128.825, + "nameAirport": "Watson Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-4", + "airportId": 9435, + "codeIataAirport": "YQI", + "codeIataCity": "YQI", + "codeIcaoAirport": "CYQI", + "codeIso2Country": "CA", + "geonameId": "6296261", + "latitudeAirport": 43.833332, + "longitudeAirport": -66.083336, + "nameAirport": "Yarmouth", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Halifax" + }, + { + "GMT": "-8", + "airportId": 9436, + "codeIataAirport": "YQJ", + "codeIataCity": "YQJ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298620", + "latitudeAirport": 50.19675, + "longitudeAirport": -125.26748, + "nameAirport": "April Point SPB", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "airportId": 9437, + "codeIataAirport": "YQK", + "codeIataCity": "YQK", + "codeIcaoAirport": "CYQK", + "codeIso2Country": "CA", + "geonameId": "6296262", + "latitudeAirport": 49.7875, + "longitudeAirport": -94.35833, + "nameAirport": "Kenora", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-7", + "airportId": 9438, + "codeIataAirport": "YQL", + "codeIataCity": "YQL", + "codeIcaoAirport": "CYQL", + "codeIso2Country": "CA", + "geonameId": "6301473", + "latitudeAirport": 49.631943, + "longitudeAirport": -112.791664, + "nameAirport": "Lethbridge", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-4", + "airportId": 9439, + "codeIataAirport": "YQM", + "codeIataCity": "YQM", + "codeIcaoAirport": "CYQM", + "codeIso2Country": "CA", + "geonameId": "6296263", + "latitudeAirport": 46.104774, + "longitudeAirport": -64.68123, + "nameAirport": "Greater Moncton International Airport", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Moncton" + }, + { + "GMT": "-5", + "airportId": 9440, + "codeIataAirport": "YQN", + "codeIataCity": "YQN", + "codeIcaoAirport": "CYQN", + "codeIso2Country": "CA", + "geonameId": "7668139", + "latitudeAirport": 50.166668, + "longitudeAirport": -86.7, + "nameAirport": "Nakina", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 9441, + "codeIataAirport": "YQQ", + "codeIataCity": "YQQ", + "codeIcaoAirport": "CYQQ", + "codeIso2Country": "CA", + "geonameId": "6296264", + "latitudeAirport": 49.705864, + "longitudeAirport": -124.907814, + "nameAirport": "Comox", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "airportId": 9442, + "codeIataAirport": "YQR", + "codeIataCity": "YQR", + "codeIcaoAirport": "CYQR", + "codeIso2Country": "CA", + "geonameId": "6301474", + "latitudeAirport": 50.433327, + "longitudeAirport": -104.65519, + "nameAirport": "Regina", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "-5", + "airportId": 9443, + "codeIataAirport": "YQS", + "codeIataCity": "YQS", + "codeIcaoAirport": "CYQS", + "codeIso2Country": "CA", + "geonameId": "7730038", + "latitudeAirport": 42.783333, + "longitudeAirport": -81.2, + "nameAirport": "Pembroke Area Municipalcipal", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9444, + "codeIataAirport": "YQT", + "codeIataCity": "YQT", + "codeIcaoAirport": "CYQT", + "codeIso2Country": "CA", + "geonameId": "6296265", + "latitudeAirport": 48.37184, + "longitudeAirport": -89.31167, + "nameAirport": "Thunder Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Thunder_Bay" + }, + { + "GMT": "-7", + "airportId": 9445, + "codeIataAirport": "YQU", + "codeIataCity": "YQU", + "codeIcaoAirport": "CYQU", + "codeIso2Country": "CA", + "geonameId": "6296266", + "latitudeAirport": 55.177074, + "longitudeAirport": -118.873604, + "nameAirport": "Grande Prairie", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-6", + "airportId": 9446, + "codeIataAirport": "YQV", + "codeIataCity": "YQV", + "codeIcaoAirport": "CYQV", + "codeIso2Country": "CA", + "geonameId": "6296267", + "latitudeAirport": 51.216667, + "longitudeAirport": -102.46667, + "nameAirport": "Yorkton", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "-6", + "airportId": 9447, + "codeIataAirport": "YQW", + "codeIataCity": "YQW", + "codeIcaoAirport": "CYQW", + "codeIso2Country": "CA", + "geonameId": "6296268", + "latitudeAirport": 52.766666, + "longitudeAirport": -108.25, + "nameAirport": "North Battleford", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "-2:30", + "airportId": 9448, + "codeIataAirport": "YQX", + "codeIataCity": "YQX", + "codeIcaoAirport": "CYQX", + "codeIso2Country": "CA", + "geonameId": "6296269", + "latitudeAirport": 48.946667, + "longitudeAirport": -54.56333, + "nameAirport": "Gander International", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/St_Johns" + }, + { + "GMT": "-4", + "airportId": 9449, + "codeIataAirport": "YQY", + "codeIataCity": "YQY", + "codeIcaoAirport": "CYQY", + "codeIso2Country": "CA", + "geonameId": "6354908", + "latitudeAirport": 46.166668, + "longitudeAirport": -60.05, + "nameAirport": "Sydney", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Glace_Bay" + }, + { + "GMT": "-8", + "airportId": 9450, + "codeIataAirport": "YQZ", + "codeIataCity": "YQZ", + "codeIcaoAirport": "CYQZ", + "codeIso2Country": "CA", + "geonameId": "6301475", + "latitudeAirport": 53.02667, + "longitudeAirport": -122.50972, + "nameAirport": "Quesnel", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "airportId": 9451, + "codeIataAirport": "YRA", + "codeIataCity": "YRA", + "codeIcaoAirport": "CEV4", + "codeIso2Country": "CA", + "geonameId": "7910283", + "latitudeAirport": 64.11667, + "longitudeAirport": -117.35, + "nameAirport": "Rae Lakes", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-6", + "airportId": 9452, + "codeIataAirport": "YRB", + "codeIataCity": "YRB", + "codeIcaoAirport": "CYRB", + "codeIso2Country": "CA", + "geonameId": "6296271", + "latitudeAirport": 74.71667, + "longitudeAirport": -94.96667, + "nameAirport": "Resolute", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Resolute" + }, + { + "GMT": "-8", + "airportId": 9453, + "codeIataAirport": "YRC", + "codeIataCity": "YRC", + "codeIcaoAirport": "CYRC", + "codeIso2Country": "CA", + "geonameId": "6118978", + "latitudeAirport": 48.526764, + "longitudeAirport": -71.05734, + "nameAirport": "Refuge Cove SPB", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "airportId": 9454, + "codeIataAirport": "YRD", + "codeIataCity": "YRD", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298716", + "latitudeAirport": 52.833332, + "longitudeAirport": -127.0, + "nameAirport": "Dean River", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9455, + "codeIataAirport": "YRE", + "codeIataCity": "YRE", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 61.5, + "longitudeAirport": -65.0, + "nameAirport": "Resolution Island", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Pangnirtung" + }, + { + "GMT": "-4", + "airportId": 9456, + "codeIataAirport": "YRF", + "codeIataCity": "YRF", + "codeIcaoAirport": "CYCA", + "codeIso2Country": "CA", + "geonameId": "6301445", + "latitudeAirport": 53.682606, + "longitudeAirport": -57.03828, + "nameAirport": "Cartwright", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-4", + "airportId": 9457, + "codeIataAirport": "YRG", + "codeIataCity": "YRG", + "codeIcaoAirport": "CCZ2", + "codeIso2Country": "CA", + "geonameId": "7730444", + "latitudeAirport": 54.333332, + "longitudeAirport": -58.416668, + "nameAirport": "Rigolet", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-5", + "airportId": 9458, + "codeIataAirport": "YRI", + "codeIataCity": "YRI", + "codeIcaoAirport": "CYRI", + "codeIso2Country": "CA", + "geonameId": "7668140", + "latitudeAirport": 47.833332, + "longitudeAirport": -69.53333, + "nameAirport": "Riviere Du Loup", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9459, + "codeIataAirport": "YRJ", + "codeIataCity": "YRJ", + "codeIcaoAirport": "CYRJ", + "codeIso2Country": "CA", + "geonameId": "6296272", + "latitudeAirport": 48.516666, + "longitudeAirport": -72.21667, + "nameAirport": "Roberval", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "airportId": 9460, + "codeIataAirport": "YRL", + "codeIataCity": "YRL", + "codeIcaoAirport": "CYRL", + "codeIso2Country": "CA", + "geonameId": "6296273", + "latitudeAirport": 51.068764, + "longitudeAirport": -93.80006, + "nameAirport": "Red Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-7", + "airportId": 9461, + "codeIataAirport": "YRM", + "codeIataCity": "YRM", + "codeIcaoAirport": "CYRM", + "codeIso2Country": "CA", + "geonameId": "6301476", + "latitudeAirport": 52.36667, + "longitudeAirport": -114.916664, + "nameAirport": "Rocky Mountain House", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-8", + "airportId": 9462, + "codeIataAirport": "YRN", + "codeIataCity": "YRN", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260999", + "latitudeAirport": 51.466667, + "longitudeAirport": -127.583336, + "nameAirport": "Rivers Inlet", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9463, + "codeIataAirport": "YRO", + "codeIataCity": "YOW", + "codeIcaoAirport": "CYRO", + "codeIso2Country": "CA", + "geonameId": "7730039", + "latitudeAirport": 45.45, + "longitudeAirport": -75.7, + "nameAirport": "Rockcliffe St", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9464, + "codeIataAirport": "YRQ", + "codeIataCity": "YRQ", + "codeIcaoAirport": "CYRQ", + "codeIso2Country": "CA", + "geonameId": "7668141", + "latitudeAirport": 46.35, + "longitudeAirport": -72.683334, + "nameAirport": "Trois-Rivieres", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "airportId": 9465, + "codeIataAirport": "YRR", + "codeIataCity": "YRR", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "7873820", + "latitudeAirport": 50.416668, + "longitudeAirport": -125.166664, + "nameAirport": "Stuart Island", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "airportId": 9466, + "codeIataAirport": "YRS", + "codeIataCity": "YRS", + "codeIcaoAirport": "CYRS", + "codeIso2Country": "CA", + "geonameId": "7668142", + "latitudeAirport": 54.166668, + "longitudeAirport": -93.583336, + "nameAirport": "Red Sucker Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-6", + "airportId": 9467, + "codeIataAirport": "YRT", + "codeIataCity": "YRT", + "codeIcaoAirport": "CYRT", + "codeIso2Country": "CA", + "geonameId": "6296274", + "latitudeAirport": 62.80998, + "longitudeAirport": -92.10019, + "nameAirport": "Nuuk", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Rankin_Inlet" + }, + { + "GMT": "-8", + "airportId": 9468, + "codeIataAirport": "YRV", + "codeIataCity": "YRV", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6121621", + "latitudeAirport": 51.0, + "longitudeAirport": -118.166664, + "nameAirport": "Revelstoke", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-4", + "airportId": 9469, + "codeIataAirport": "YSA", + "codeIataCity": "YSA", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 44.0, + "longitudeAirport": -60.0, + "nameAirport": "Sable Island", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Halifax" + }, + { + "GMT": "-5", + "airportId": 9470, + "codeIataAirport": "YSB", + "codeIataCity": "YSB", + "codeIcaoAirport": "CYSB", + "codeIso2Country": "CA", + "geonameId": "6296276", + "latitudeAirport": 46.62296, + "longitudeAirport": -80.79592, + "nameAirport": "Sudbury", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9471, + "codeIataAirport": "YSC", + "codeIataCity": "YSC", + "codeIcaoAirport": "CYSC", + "codeIso2Country": "CA", + "geonameId": "6301478", + "latitudeAirport": 45.416668, + "longitudeAirport": -71.9, + "nameAirport": "Sherbrooke", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-7", + "airportId": 9472, + "codeIataAirport": "YSD", + "codeIataCity": "YSD", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "7931962", + "latitudeAirport": 50.2, + "longitudeAirport": -111.166664, + "nameAirport": "Suffield", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-8", + "airportId": 9473, + "codeIataAirport": "YSE", + "codeIataCity": "YSE", + "codeIcaoAirport": "CWSK", + "codeIso2Country": "CA", + "geonameId": "6296029", + "latitudeAirport": 52.11667, + "longitudeAirport": -101.23333, + "nameAirport": "Squamish", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "airportId": 9474, + "codeIataAirport": "YSF", + "codeIataCity": "YSF", + "codeIcaoAirport": "CYSF", + "codeIso2Country": "CA", + "geonameId": "6296278", + "latitudeAirport": 59.25, + "longitudeAirport": -105.833336, + "nameAirport": "Stony Rapids", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "-7", + "airportId": 9475, + "codeIataAirport": "YSG", + "codeIataCity": "YSG", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6296226", + "latitudeAirport": 62.41861, + "longitudeAirport": -110.075554, + "nameAirport": "Lutselke", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-5", + "airportId": 9476, + "codeIataAirport": "YSH", + "codeIataCity": "YSH", + "codeIcaoAirport": "CYSH", + "codeIso2Country": "CA", + "geonameId": "7668143", + "latitudeAirport": 44.94829, + "longitudeAirport": -75.93959, + "nameAirport": "Smith Falls", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9477, + "codeIataAirport": "YSI", + "codeIataCity": "YSI", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8299266", + "latitudeAirport": 46.0, + "longitudeAirport": -80.0, + "nameAirport": "Sans Souci", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-4", + "airportId": 9478, + "codeIataAirport": "YSJ", + "codeIataCity": "YSJ", + "codeIcaoAirport": "CYSJ", + "codeIso2Country": "CA", + "geonameId": "6296279", + "latitudeAirport": 45.32948, + "longitudeAirport": -65.8902, + "nameAirport": "Saint John", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Moncton" + }, + { + "GMT": "-5", + "airportId": 9479, + "codeIataAirport": "YSK", + "codeIataCity": "YSK", + "codeIcaoAirport": "CYSK", + "codeIso2Country": "CA", + "geonameId": "6296280", + "latitudeAirport": 56.55, + "longitudeAirport": -79.21667, + "nameAirport": "Sanikiluaq", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-4", + "airportId": 9480, + "codeIataAirport": "YSL", + "codeIataCity": "YSL", + "codeIcaoAirport": "CYSL", + "codeIso2Country": "CA", + "geonameId": "6301479", + "latitudeAirport": 47.183334, + "longitudeAirport": -67.9, + "nameAirport": "St Leonard", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Moncton" + }, + { + "GMT": "-7", + "airportId": 9481, + "codeIataAirport": "YSM", + "codeIataCity": "YSM", + "codeIcaoAirport": "CYSM", + "codeIso2Country": "CA", + "geonameId": "6296281", + "latitudeAirport": 60.016666, + "longitudeAirport": -111.96667, + "nameAirport": "Fort Smith", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-8", + "airportId": 9482, + "codeIataAirport": "YSN", + "codeIataCity": "YSN", + "codeIcaoAirport": "CZAM", + "codeIso2Country": "CA", + "geonameId": "7668152", + "latitudeAirport": 50.683334, + "longitudeAirport": -119.23333, + "nameAirport": "Salmon Arm", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-4", + "airportId": 9483, + "codeIataAirport": "YSO", + "codeIataCity": "YSO", + "codeIcaoAirport": "CCD4", + "codeIso2Country": "CA", + "geonameId": "7910199", + "latitudeAirport": 54.916668, + "longitudeAirport": -59.966667, + "nameAirport": "Postville", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-5", + "airportId": 9484, + "codeIataAirport": "YSP", + "codeIataCity": "YSP", + "codeIcaoAirport": "CYSP", + "codeIso2Country": "CA", + "geonameId": "7730040", + "latitudeAirport": 48.75, + "longitudeAirport": -86.35, + "nameAirport": "Marathon", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 9485, + "codeIataAirport": "YSQ", + "codeIataCity": "YSQ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 59.45, + "longitudeAirport": -1.78, + "nameAirport": "Spring Island", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9486, + "codeIataAirport": "YSS", + "codeIataCity": "YSS", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298863", + "latitudeAirport": -33.932922, + "longitudeAirport": 151.1799, + "nameAirport": "Slate Island", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "airportId": 9487, + "codeIataAirport": "YST", + "codeIataCity": "YST", + "codeIcaoAirport": "CYST", + "codeIso2Country": "CA", + "geonameId": "7668144", + "latitudeAirport": 53.85, + "longitudeAirport": -94.65, + "nameAirport": "Ste Therese Point", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-4", + "airportId": 9488, + "codeIataAirport": "YSU", + "codeIataCity": "YSU", + "codeIcaoAirport": "CYSU", + "codeIso2Country": "CA", + "geonameId": "6301481", + "latitudeAirport": 49.0, + "longitudeAirport": -57.983334, + "nameAirport": "Summerside", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Halifax" + }, + { + "GMT": "-8", + "airportId": 9489, + "codeIataAirport": "YSX", + "codeIataCity": "YSX", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260770", + "latitudeAirport": 52.13333, + "longitudeAirport": -128.06667, + "nameAirport": "Shearwater", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "airportId": 9490, + "codeIataAirport": "YSY", + "codeIataCity": "YSY", + "codeIcaoAirport": "CYSY", + "codeIso2Country": "CA", + "geonameId": "6301482", + "latitudeAirport": 71.99145, + "longitudeAirport": -125.24104, + "nameAirport": "Sachs Harbour", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-8", + "airportId": 9491, + "codeIataAirport": "YSZ", + "codeIataCity": "YSZ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298626", + "latitudeAirport": 50.05, + "longitudeAirport": -124.916664, + "nameAirport": "Squirrel Cove", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9492, + "codeIataAirport": "YTA", + "codeIataCity": "YTA", + "codeIcaoAirport": "CYTA", + "codeIso2Country": "CA", + "geonameId": "7668145", + "latitudeAirport": 45.861668, + "longitudeAirport": -77.24944, + "nameAirport": "Pembroke And Area Airport", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 9493, + "codeIataAirport": "YTB", + "codeIataCity": "YTB", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260826", + "latitudeAirport": 53.416668, + "longitudeAirport": -129.25, + "nameAirport": "Hartley Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "airportId": 9494, + "codeIataAirport": "YTC", + "codeIataCity": "YTC", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260898", + "latitudeAirport": 57.2, + "longitudeAirport": -127.15, + "nameAirport": "Sturdee", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "airportId": 9495, + "codeIataAirport": "YTD", + "codeIataCity": "YTD", + "codeIcaoAirport": "CZLQ", + "codeIso2Country": "CA", + "geonameId": "7668161", + "latitudeAirport": 55.316666, + "longitudeAirport": -97.7, + "nameAirport": "Thicket Portage", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 9496, + "codeIataAirport": "YTE", + "codeIataCity": "YTE", + "codeIcaoAirport": "CYTE", + "codeIso2Country": "CA", + "geonameId": "6296283", + "latitudeAirport": 64.23333, + "longitudeAirport": -76.53333, + "nameAirport": "Cape Dorset", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-5", + "airportId": 9497, + "codeIataAirport": "YTF", + "codeIataCity": "YTF", + "codeIcaoAirport": "CYTF", + "codeIso2Country": "CA", + "geonameId": "7668146", + "latitudeAirport": 48.533333, + "longitudeAirport": -71.666664, + "nameAirport": "Alma", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "airportId": 9498, + "codeIataAirport": "YTG", + "codeIataCity": "YTG", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "7910286", + "latitudeAirport": 50.88333, + "longitudeAirport": -126.8, + "nameAirport": "Sullivan Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "airportId": 9499, + "codeIataAirport": "YTH", + "codeIataCity": "YTH", + "codeIcaoAirport": "CYTH", + "codeIso2Country": "CA", + "geonameId": "6296284", + "latitudeAirport": 55.79753, + "longitudeAirport": -97.8605, + "nameAirport": "Thompson", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-8", + "airportId": 9500, + "codeIataAirport": "YTI", + "codeIataCity": "YTI", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260965", + "latitudeAirport": -29.456944, + "longitudeAirport": 142.06223, + "nameAirport": "Triple Island", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9501, + "codeIataAirport": "YTK", + "codeIataCity": "YTK", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 59.5, + "longitudeAirport": -77.75, + "nameAirport": "Tulugak", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "airportId": 9502, + "codeIataAirport": "YTL", + "codeIataCity": "YTL", + "codeIcaoAirport": "CYTL", + "codeIso2Country": "CA", + "geonameId": "7910161", + "latitudeAirport": 53.81594, + "longitudeAirport": -89.88952, + "nameAirport": "Big Trout", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 9503, + "codeIataAirport": "YTM", + "codeIataCity": "YTM", + "codeIcaoAirport": "CYFJ", + "codeIso2Country": "CA", + "geonameId": "7730033", + "latitudeAirport": 46.515556, + "longitudeAirport": -74.75528, + "nameAirport": "La Macaza", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9504, + "codeIataAirport": "YTN", + "codeIataCity": "YTN", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 50.283333, + "longitudeAirport": -64.75, + "nameAirport": "Riviere Au Tonnerre", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "airportId": 9505, + "codeIataAirport": "YTP", + "codeIataCity": "YAZ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 49.154446, + "longitudeAirport": -125.40806, + "nameAirport": "Seaplane Base", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9506, + "codeIataAirport": "YTQ", + "codeIataCity": "YTQ", + "codeIcaoAirport": "CYTQ", + "codeIso2Country": "CA", + "geonameId": "6296288", + "latitudeAirport": 58.6678, + "longitudeAirport": -69.95633, + "nameAirport": "Tasiujuaq", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9507, + "codeIataAirport": "YTR", + "codeIataCity": "YTR", + "codeIcaoAirport": "CYTR", + "codeIso2Country": "CA", + "geonameId": "6296289", + "latitudeAirport": 44.1, + "longitudeAirport": -77.583336, + "nameAirport": "Trenton", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9508, + "codeIataAirport": "YTS", + "codeIataCity": "YTS", + "codeIcaoAirport": "CYTS", + "codeIso2Country": "CA", + "geonameId": "6296290", + "latitudeAirport": 48.566372, + "longitudeAirport": -81.37164, + "nameAirport": "Timmins", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "airportId": 9509, + "codeIataAirport": "YTT", + "codeIataCity": "YTT", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260909", + "latitudeAirport": 52.85, + "longitudeAirport": -104.066666, + "nameAirport": "Tisdale", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "-8", + "airportId": 9510, + "codeIataAirport": "YTX", + "codeIataCity": "YTX", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260903", + "latitudeAirport": 57.9, + "longitudeAirport": -131.15, + "nameAirport": "Telegraph Creek", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "8", + "airportId": 9511, + "codeIataAirport": "YTY", + "codeIataCity": "YTY", + "codeIcaoAirport": "ZSYA", + "codeIso2Country": "CN", + "geonameId": "8298754", + "latitudeAirport": 32.563057, + "longitudeAirport": 119.71889, + "nameAirport": "Taizhou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 9512, + "codeIataAirport": "YTZ", + "codeIataCity": "YTO", + "codeIcaoAirport": "CYTZ", + "codeIso2Country": "CA", + "geonameId": "6301483", + "latitudeAirport": 43.632023, + "longitudeAirport": -79.39585, + "nameAirport": "Toronto City Centre Airport", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "8", + "airportId": 9513, + "codeIataAirport": "YUA", + "codeIataCity": "YUA", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "8260944", + "latitudeAirport": 25.65, + "longitudeAirport": 101.916664, + "nameAirport": "Yuanmou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-7", + "airportId": 9514, + "codeIataAirport": "YUB", + "codeIataCity": "YUB", + "codeIcaoAirport": "CYUB", + "codeIso2Country": "CA", + "geonameId": "6296292", + "latitudeAirport": 69.436386, + "longitudeAirport": -133.025, + "nameAirport": "Tuktoyaktuk", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-5", + "airportId": 9515, + "codeIataAirport": "YUD", + "codeIataCity": "YUD", + "codeIcaoAirport": "CYMU", + "codeIso2Country": "CA", + "geonameId": "6296235", + "latitudeAirport": 56.53611, + "longitudeAirport": -76.51833, + "nameAirport": "Umiujaq", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "9.30", + "airportId": 9516, + "codeIataAirport": "YUE", + "codeIataCity": "YUE", + "codeIcaoAirport": "YYND", + "codeIso2Country": "AU", + "geonameId": "7731647", + "latitudeAirport": -22.266666, + "longitudeAirport": 131.81667, + "nameAirport": "Yuendumu", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-5", + "airportId": 9517, + "codeIataAirport": "YUL", + "codeIataCity": "YMQ", + "codeIcaoAirport": "CYUL", + "codeIso2Country": "CA", + "geonameId": "6296296", + "latitudeAirport": 45.457714, + "longitudeAirport": -73.74991, + "nameAirport": "Pierre Elliott Trudeau International", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-7", + "airportId": 9518, + "codeIataAirport": "YUM", + "codeIataCity": "YUM", + "codeIcaoAirport": "KNYL", + "codeIso2Country": "US", + "geonameId": "5322066", + "latitudeAirport": 32.668606, + "longitudeAirport": -114.599266, + "nameAirport": "Yuma International Airport", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "8", + "airportId": 9519, + "codeIataAirport": "YUS", + "codeIataCity": "YUS", + "codeIcaoAirport": "ZLYS", + "codeIso2Country": "CN", + "geonameId": "8260763", + "latitudeAirport": 32.8399, + "longitudeAirport": 97.0379, + "nameAirport": "Batang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 9520, + "codeIataAirport": "YUT", + "codeIataCity": "YUT", + "codeIcaoAirport": "CYUT", + "codeIso2Country": "CA", + "geonameId": "6296299", + "latitudeAirport": 66.53333, + "longitudeAirport": -86.25, + "nameAirport": "Repulse Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Rankin_Inlet" + }, + { + "GMT": "-5", + "airportId": 9521, + "codeIataAirport": "YUX", + "codeIataCity": "YUX", + "codeIcaoAirport": "CYUX", + "codeIso2Country": "CA", + "geonameId": "6296301", + "latitudeAirport": 68.78333, + "longitudeAirport": -81.25, + "nameAirport": "Hall Beach", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-5", + "airportId": 9522, + "codeIataAirport": "YUY", + "codeIataCity": "YUY", + "codeIcaoAirport": "CYUY", + "codeIso2Country": "CA", + "geonameId": "6296302", + "latitudeAirport": 48.205555, + "longitudeAirport": -78.83056, + "nameAirport": "Rouyn-Noranda", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "3", + "airportId": 9523, + "codeIataAirport": "YVA", + "codeIataCity": "YVA", + "codeIcaoAirport": "FMCN", + "codeIso2Country": "KM", + "geonameId": "921772", + "latitudeAirport": -11.531944, + "longitudeAirport": 43.261112, + "nameAirport": "Iconi", + "nameCountry": "Comoros", + "phone": "", + "timezone": "Indian/Comoro" + }, + { + "GMT": "-5", + "airportId": 9524, + "codeIataAirport": "YVB", + "codeIataCity": "YVB", + "codeIcaoAirport": "CYVB", + "codeIso2Country": "CA", + "geonameId": "7668147", + "latitudeAirport": 48.05, + "longitudeAirport": -65.48333, + "nameAirport": "Bonaventure", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "airportId": 9525, + "codeIataAirport": "YVC", + "codeIataCity": "YVC", + "codeIcaoAirport": "CYVC", + "codeIso2Country": "CA", + "geonameId": "6301484", + "latitudeAirport": 55.083332, + "longitudeAirport": -105.333336, + "nameAirport": "La Ronge", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "10", + "airportId": 9526, + "codeIataAirport": "YVD", + "codeIataCity": "YVD", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "8298951", + "latitudeAirport": -7.55, + "longitudeAirport": 146.18889, + "nameAirport": "Yeva", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "airportId": 9527, + "codeIataAirport": "YVE", + "codeIataCity": "YVE", + "codeIcaoAirport": "CYVK", + "codeIso2Country": "CA", + "geonameId": "7668148", + "latitudeAirport": 50.25, + "longitudeAirport": -119.333336, + "nameAirport": "Vernon Regional Airport", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "airportId": 9528, + "codeIataAirport": "YVG", + "codeIataCity": "YVG", + "codeIcaoAirport": "CYVG", + "codeIso2Country": "CA", + "geonameId": "6173801", + "latitudeAirport": 53.35, + "longitudeAirport": -110.816666, + "nameAirport": "Vermilion", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "1", + "airportId": 9529, + "codeIataAirport": "YVH", + "codeIataCity": "YVH", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3152538", + "latitudeAirport": 62.22308, + "longitudeAirport": 9.55049, + "nameAirport": "Hjerkinn Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9530, + "codeIataAirport": "YVK", + "codeIataCity": "YVK", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Koppang Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "airportId": 9531, + "codeIataAirport": "YVM", + "codeIataCity": "YVM", + "codeIcaoAirport": "CYVM", + "codeIso2Country": "CA", + "geonameId": "6296303", + "latitudeAirport": 67.583336, + "longitudeAirport": -63.833332, + "nameAirport": "Qikiqtarjuaq", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Pangnirtung" + }, + { + "GMT": "-5", + "airportId": 9532, + "codeIataAirport": "YVN", + "codeIataCity": "YVN", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260737", + "latitudeAirport": 66.5919, + "longitudeAirport": -61.5733, + "nameAirport": "Cape Dyer", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Pangnirtung" + }, + { + "GMT": "-5", + "airportId": 9533, + "codeIataAirport": "YVO", + "codeIataCity": "YVO", + "codeIcaoAirport": "CYVO", + "codeIso2Country": "CA", + "geonameId": "6296304", + "latitudeAirport": 48.052605, + "longitudeAirport": -77.78858, + "nameAirport": "Aéroport Régional De Val-d'or", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9534, + "codeIataAirport": "YVP", + "codeIataCity": "YVP", + "codeIcaoAirport": "CYVP", + "codeIso2Country": "CA", + "geonameId": "6296305", + "latitudeAirport": 58.10024, + "longitudeAirport": -68.41798, + "nameAirport": "Kuujjuaq", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-7", + "airportId": 9535, + "codeIataAirport": "YVQ", + "codeIataCity": "YVQ", + "codeIcaoAirport": "CYVQ", + "codeIso2Country": "CA", + "geonameId": "6296306", + "latitudeAirport": 65.277855, + "longitudeAirport": -126.79337, + "nameAirport": "Norman Wells", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-8", + "airportId": 9536, + "codeIataAirport": "YVR", + "codeIataCity": "YVR", + "codeIcaoAirport": "CYVR", + "codeIso2Country": "CA", + "geonameId": "6301485", + "latitudeAirport": 49.1947, + "longitudeAirport": -123.17919, + "nameAirport": "Vancouver International", + "nameCountry": "Canada", + "phone": "604-207-7077", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "airportId": 9537, + "codeIataAirport": "YVS", + "codeIataCity": "YVS", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3139081", + "latitudeAirport": 59.71949, + "longitudeAirport": 10.83576, + "nameAirport": "Ski Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "airportId": 9538, + "codeIataAirport": "YVT", + "codeIataCity": "YVT", + "codeIcaoAirport": "CYVT", + "codeIso2Country": "CA", + "geonameId": "6301486", + "latitudeAirport": 55.86667, + "longitudeAirport": -108.46667, + "nameAirport": "Buffalo Narrows", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "-5", + "airportId": 9539, + "codeIataAirport": "YVV", + "codeIataCity": "YVV", + "codeIcaoAirport": "CYVV", + "codeIso2Country": "CA", + "geonameId": "6296307", + "latitudeAirport": 44.666668, + "longitudeAirport": -81.166664, + "nameAirport": "Wiarton/Keppel Airport", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "airportId": 9540, + "codeIataAirport": "YVZ", + "codeIataCity": "YVZ", + "codeIcaoAirport": "CYVZ", + "codeIso2Country": "CA", + "geonameId": "7730041", + "latitudeAirport": 52.666668, + "longitudeAirport": -94.5, + "nameAirport": "Deer Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 9541, + "codeIataAirport": "YWA", + "codeIataCity": "YWA", + "codeIcaoAirport": "CYWA", + "codeIso2Country": "CA", + "geonameId": "6296308", + "latitudeAirport": 45.9, + "longitudeAirport": -77.28333, + "nameAirport": "Petawawa", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9542, + "codeIataAirport": "YWB", + "codeIataCity": "YWB", + "codeIcaoAirport": "CYKG", + "codeIso2Country": "CA", + "geonameId": "7910228", + "latitudeAirport": 61.6, + "longitudeAirport": -71.95, + "nameAirport": "Kangiqsujuaq", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-4", + "airportId": 9543, + "codeIataAirport": "YWF", + "codeIataCity": "YHZ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 44.63333, + "longitudeAirport": -63.583332, + "nameAirport": "Downtown Waterfront Heliport", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Halifax" + }, + { + "GMT": "-6", + "airportId": 9544, + "codeIataAirport": "YWG", + "codeIataCity": "YWG", + "codeIcaoAirport": "CYWG", + "codeIso2Country": "CA", + "geonameId": "6301487", + "latitudeAirport": 49.9, + "longitudeAirport": -97.23333, + "nameAirport": "Winnipeg", + "nameCountry": "Canada", + "phone": "204-987-9402", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-8", + "airportId": 9545, + "codeIataAirport": "YWH", + "codeIataCity": "YYJ", + "codeIcaoAirport": "CYWH", + "codeIso2Country": "CA", + "geonameId": "7910164", + "latitudeAirport": 48.416668, + "longitudeAirport": -123.36667, + "nameAirport": "Victoria Inner Harbor", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "airportId": 9546, + "codeIataAirport": "YWJ", + "codeIataCity": "YWJ", + "codeIcaoAirport": "CYWJ", + "codeIso2Country": "CA", + "geonameId": "6943714", + "latitudeAirport": 65.166664, + "longitudeAirport": -123.5, + "nameAirport": "Deline", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-4", + "airportId": 9547, + "codeIataAirport": "YWK", + "codeIataCity": "YWK", + "codeIcaoAirport": "CYWK", + "codeIso2Country": "CA", + "geonameId": "6296309", + "latitudeAirport": 52.926315, + "longitudeAirport": -66.874, + "nameAirport": "Wabush", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-8", + "airportId": 9548, + "codeIataAirport": "YWL", + "codeIataCity": "YWL", + "codeIcaoAirport": "CYWL", + "codeIso2Country": "CA", + "geonameId": "6296310", + "latitudeAirport": 52.184723, + "longitudeAirport": -122.04444, + "nameAirport": "Williams Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-2:30", + "airportId": 9549, + "codeIataAirport": "YWM", + "codeIataCity": "YWM", + "codeIcaoAirport": "CCA6", + "codeIso2Country": "CA", + "geonameId": "7730441", + "latitudeAirport": 52.335438, + "longitudeAirport": -56.01282, + "nameAirport": "Williams Harbour", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/St_Johns" + }, + { + "GMT": "-5", + "airportId": 9550, + "codeIataAirport": "YWP", + "codeIataCity": "YWP", + "codeIcaoAirport": "CYWP", + "codeIso2Country": "CA", + "geonameId": "7668149", + "latitudeAirport": 52.95972, + "longitudeAirport": -87.36889, + "nameAirport": "Webequie", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9551, + "codeIataAirport": "YWQ", + "codeIataCity": "YWQ", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260796", + "latitudeAirport": 49.887222, + "longitudeAirport": -71.25389, + "nameAirport": "Chute-Des-Passes", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9552, + "codeIataAirport": "YWR", + "codeIataCity": "YWR", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6696813", + "latitudeAirport": 48.583332, + "longitudeAirport": -85.333336, + "nameAirport": "White River", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 9553, + "codeIataAirport": "YWS", + "codeIataCity": "YWS", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6180144", + "latitudeAirport": 50.15, + "longitudeAirport": -122.96667, + "nameAirport": "Whistler", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "airportId": 9554, + "codeIataAirport": "YWY", + "codeIataCity": "YWY", + "codeIcaoAirport": "CYWY", + "codeIso2Country": "CA", + "geonameId": "6296312", + "latitudeAirport": 63.210556, + "longitudeAirport": -123.438614, + "nameAirport": "Wrigley", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-7", + "airportId": 9555, + "codeIataAirport": "YXC", + "codeIataCity": "YXC", + "codeIcaoAirport": "CYXC", + "codeIso2Country": "CA", + "geonameId": "6296313", + "latitudeAirport": 49.61437, + "longitudeAirport": -115.787025, + "nameAirport": "Cranbrook", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-6", + "airportId": 9556, + "codeIataAirport": "YXE", + "codeIataCity": "YXE", + "codeIcaoAirport": "CYXE", + "codeIso2Country": "CA", + "geonameId": "6296314", + "latitudeAirport": 52.169704, + "longitudeAirport": -106.69037, + "nameAirport": "John G. Diefenbaker International", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "-8", + "airportId": 9557, + "codeIataAirport": "YXF", + "codeIataCity": "YXF", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260774", + "latitudeAirport": 59.033333, + "longitudeAirport": -122.433334, + "nameAirport": "Snake River", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-7", + "airportId": 9558, + "codeIataAirport": "YXH", + "codeIataCity": "YXH", + "codeIcaoAirport": "CYXH", + "codeIso2Country": "CA", + "geonameId": "6296315", + "latitudeAirport": 50.015835, + "longitudeAirport": -110.72083, + "nameAirport": "Medicine Hat", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-7", + "airportId": 9559, + "codeIataAirport": "YXJ", + "codeIataCity": "YXJ", + "codeIcaoAirport": "CYXJ", + "codeIso2Country": "CA", + "geonameId": "6296316", + "latitudeAirport": 56.247883, + "longitudeAirport": -120.73437, + "nameAirport": "Fort St John", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Dawson_Creek" + }, + { + "GMT": "-5", + "airportId": 9560, + "codeIataAirport": "YXK", + "codeIataCity": "YXK", + "codeIcaoAirport": "CYXK", + "codeIso2Country": "CA", + "geonameId": "7668150", + "latitudeAirport": 48.433334, + "longitudeAirport": -68.55, + "nameAirport": "Rimouski", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "airportId": 9561, + "codeIataAirport": "YXL", + "codeIataCity": "YXL", + "codeIcaoAirport": "CYXL", + "codeIso2Country": "CA", + "geonameId": "6296317", + "latitudeAirport": 50.115208, + "longitudeAirport": -91.903, + "nameAirport": "Sioux Lookout", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-6", + "airportId": 9562, + "codeIataAirport": "YXN", + "codeIataCity": "YXN", + "codeIcaoAirport": "CYXN", + "codeIso2Country": "CA", + "geonameId": "6296318", + "latitudeAirport": 62.233334, + "longitudeAirport": -92.6, + "nameAirport": "Whale Cove", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Rankin_Inlet" + }, + { + "GMT": "-5", + "airportId": 9563, + "codeIataAirport": "YXP", + "codeIataCity": "YXP", + "codeIcaoAirport": "CYXP", + "codeIso2Country": "CA", + "geonameId": "6301492", + "latitudeAirport": 66.13333, + "longitudeAirport": -65.73333, + "nameAirport": "Pangnirtung", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Pangnirtung" + }, + { + "GMT": "-8", + "airportId": 9564, + "codeIataAirport": "YXQ", + "codeIataCity": "YXQ", + "codeIcaoAirport": "CYXQ", + "codeIso2Country": "CA", + "geonameId": "6354909", + "latitudeAirport": 62.0, + "longitudeAirport": -141.0, + "nameAirport": "Beaver Creek", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-5", + "airportId": 9565, + "codeIataAirport": "YXR", + "codeIataCity": "YXR", + "codeIcaoAirport": "CYXR", + "codeIso2Country": "CA", + "geonameId": "6296320", + "latitudeAirport": 47.697224, + "longitudeAirport": -79.851944, + "nameAirport": "Earlton", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 9566, + "codeIataAirport": "YXS", + "codeIataCity": "YXS", + "codeIcaoAirport": "CYXS", + "codeIso2Country": "CA", + "geonameId": "6296321", + "latitudeAirport": 53.88381, + "longitudeAirport": -122.67396, + "nameAirport": "Prince George", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "airportId": 9567, + "codeIataAirport": "YXT", + "codeIataCity": "YXT", + "codeIcaoAirport": "CYXT", + "codeIso2Country": "CA", + "geonameId": "6296322", + "latitudeAirport": 54.465557, + "longitudeAirport": -128.57445, + "nameAirport": "Terrace", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9568, + "codeIataAirport": "YXU", + "codeIataCity": "YXU", + "codeIcaoAirport": "CYXU", + "codeIso2Country": "CA", + "geonameId": "6296323", + "latitudeAirport": 43.02802, + "longitudeAirport": -81.14965, + "nameAirport": "London International", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 9569, + "codeIataAirport": "YXX", + "codeIataCity": "YXX", + "codeIcaoAirport": "CYXX", + "codeIso2Country": "CA", + "geonameId": "6296324", + "latitudeAirport": 49.025555, + "longitudeAirport": -122.361946, + "nameAirport": "Abbotsford", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "airportId": 9570, + "codeIataAirport": "YXY", + "codeIataCity": "YXY", + "codeIcaoAirport": "CYXY", + "codeIso2Country": "CA", + "geonameId": "6296325", + "latitudeAirport": 60.716667, + "longitudeAirport": -135.06667, + "nameAirport": "Whitehorse International", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-5", + "airportId": 9571, + "codeIataAirport": "YXZ", + "codeIataCity": "YXZ", + "codeIcaoAirport": "CYXZ", + "codeIso2Country": "CA", + "geonameId": "6296326", + "latitudeAirport": 47.9625, + "longitudeAirport": -84.785835, + "nameAirport": "Wawa Airport", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 9572, + "codeIataAirport": "YYA", + "codeIataCity": "YYA", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298920", + "latitudeAirport": 50.4, + "longitudeAirport": -123.13333, + "nameAirport": "Big Bay Yacht Club", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9573, + "codeIataAirport": "YYB", + "codeIataCity": "YYB", + "codeIcaoAirport": "CYYB", + "codeIso2Country": "CA", + "geonameId": "6301493", + "latitudeAirport": 46.356823, + "longitudeAirport": -79.42725, + "nameAirport": "North Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "airportId": 9574, + "codeIataAirport": "YYC", + "codeIataCity": "YYC", + "codeIcaoAirport": "CYYC", + "codeIso2Country": "CA", + "geonameId": "6296327", + "latitudeAirport": 51.131393, + "longitudeAirport": -114.01055, + "nameAirport": "Calgary International Airport", + "nameCountry": "Canada", + "phone": "403-735-1200", + "timezone": "America/Edmonton" + }, + { + "GMT": "-8", + "airportId": 9575, + "codeIataAirport": "YYD", + "codeIataCity": "YYD", + "codeIcaoAirport": "CYYD", + "codeIso2Country": "CA", + "geonameId": "6296328", + "latitudeAirport": 54.825558, + "longitudeAirport": -127.180275, + "nameAirport": "Smithers", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "airportId": 9576, + "codeIataAirport": "YYE", + "codeIataCity": "YYE", + "codeIcaoAirport": "CYYE", + "codeIso2Country": "CA", + "geonameId": "6296329", + "latitudeAirport": 58.833332, + "longitudeAirport": -122.583336, + "nameAirport": "Fort Nelson", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "airportId": 9577, + "codeIataAirport": "YYF", + "codeIataCity": "YYF", + "codeIcaoAirport": "CYYF", + "codeIso2Country": "CA", + "geonameId": "6301494", + "latitudeAirport": 49.46472, + "longitudeAirport": -119.6, + "nameAirport": "Penticton", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-4", + "airportId": 9578, + "codeIataAirport": "YYG", + "codeIataCity": "YYG", + "codeIcaoAirport": "CYYG", + "codeIso2Country": "CA", + "geonameId": "6301495", + "latitudeAirport": 46.285896, + "longitudeAirport": -63.131737, + "nameAirport": "Charlottetown", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Halifax" + }, + { + "GMT": "-7", + "airportId": 9579, + "codeIataAirport": "YYH", + "codeIataCity": "YYH", + "codeIcaoAirport": "CYYH", + "codeIso2Country": "CA", + "geonameId": "6296330", + "latitudeAirport": 69.53333, + "longitudeAirport": -93.51667, + "nameAirport": "Taloyoak", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Cambridge_Bay" + }, + { + "GMT": "-8", + "airportId": 9580, + "codeIataAirport": "YYJ", + "codeIataCity": "YYJ", + "codeIcaoAirport": "CYYJ", + "codeIso2Country": "CA", + "geonameId": "6296331", + "latitudeAirport": 48.640266, + "longitudeAirport": -123.43096, + "nameAirport": "Victoria International", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "airportId": 9581, + "codeIataAirport": "YYL", + "codeIataCity": "YYL", + "codeIcaoAirport": "CYYL", + "codeIso2Country": "CA", + "geonameId": "6296332", + "latitudeAirport": 56.86667, + "longitudeAirport": -101.066666, + "nameAirport": "Lynn Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-7", + "airportId": 9582, + "codeIataAirport": "YYM", + "codeIataCity": "YYM", + "codeIcaoAirport": "CYYM", + "codeIso2Country": "CA", + "geonameId": "8299246", + "latitudeAirport": 49.86667, + "longitudeAirport": -114.166664, + "nameAirport": "Cowley", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-6", + "airportId": 9583, + "codeIataAirport": "YYN", + "codeIataCity": "YYN", + "codeIcaoAirport": "CYYN", + "codeIso2Country": "CA", + "geonameId": "6301496", + "latitudeAirport": 50.283333, + "longitudeAirport": -107.833336, + "nameAirport": "Swift Current", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Swift_Current" + }, + { + "GMT": "-6", + "airportId": 9584, + "codeIataAirport": "YYQ", + "codeIataCity": "YYQ", + "codeIcaoAirport": "CYYQ", + "codeIso2Country": "CA", + "geonameId": "6296333", + "latitudeAirport": 58.74819, + "longitudeAirport": -94.07449, + "nameAirport": "Churchill Airport", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-4", + "airportId": 9585, + "codeIataAirport": "YYR", + "codeIataCity": "YYR", + "codeIcaoAirport": "CYYR", + "codeIso2Country": "CA", + "geonameId": "6296334", + "latitudeAirport": 53.313534, + "longitudeAirport": -60.4124, + "nameAirport": "Goose Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-2:30", + "airportId": 9586, + "codeIataAirport": "YYT", + "codeIataCity": "YYT", + "codeIcaoAirport": "CYYT", + "codeIso2Country": "CA", + "geonameId": "6301497", + "latitudeAirport": 47.61282, + "longitudeAirport": -52.74334, + "nameAirport": "St. John's International", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/St_Johns" + }, + { + "GMT": "-5", + "airportId": 9587, + "codeIataAirport": "YYU", + "codeIataCity": "YYU", + "codeIcaoAirport": "CYYU", + "codeIso2Country": "CA", + "geonameId": "6296335", + "latitudeAirport": 49.4125, + "longitudeAirport": -82.47083, + "nameAirport": "Kapuskasing", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9588, + "codeIataAirport": "YYW", + "codeIataCity": "YYW", + "codeIcaoAirport": "CYYW", + "codeIso2Country": "CA", + "geonameId": "6296336", + "latitudeAirport": 50.283333, + "longitudeAirport": -89.03333, + "nameAirport": "Armstrong", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9589, + "codeIataAirport": "YYY", + "codeIataCity": "YYY", + "codeIcaoAirport": "CYYY", + "codeIso2Country": "CA", + "geonameId": "6296337", + "latitudeAirport": 48.6, + "longitudeAirport": -68.2, + "nameAirport": "Mont Joli", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "airportId": 9590, + "codeIataAirport": "YYZ", + "codeIataCity": "YTO", + "codeIcaoAirport": "CYYZ", + "codeIso2Country": "CA", + "geonameId": "6296338", + "latitudeAirport": 43.681583, + "longitudeAirport": -79.61146, + "nameAirport": "Lester B. Pearson International", + "nameCountry": "Canada", + "phone": "416-247-7678", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "airportId": 9591, + "codeIataAirport": "YZA", + "codeIataCity": "YZA", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8261064", + "latitudeAirport": 50.666668, + "longitudeAirport": -121.333336, + "nameAirport": "Ashcroft", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "airportId": 9592, + "codeIataAirport": "YZC", + "codeIataCity": "YZC", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298947", + "latitudeAirport": 57.433334, + "longitudeAirport": -121.333336, + "nameAirport": "Beatton River", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9593, + "codeIataAirport": "YZE", + "codeIataCity": "YZE", + "codeIcaoAirport": "CYZE", + "codeIso2Country": "CA", + "geonameId": "6296339", + "latitudeAirport": 45.885277, + "longitudeAirport": -82.56778, + "nameAirport": "Gore Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "airportId": 9594, + "codeIataAirport": "YZF", + "codeIataCity": "YZF", + "codeIcaoAirport": "CYZF", + "codeIso2Country": "CA", + "geonameId": "6296340", + "latitudeAirport": 62.470867, + "longitudeAirport": -114.4375, + "nameAirport": "Yellowknife", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-5", + "airportId": 9595, + "codeIataAirport": "YZG", + "codeIataCity": "YSW", + "codeIcaoAirport": "CYZG", + "codeIso2Country": "CA", + "geonameId": "7910212", + "latitudeAirport": 62.2, + "longitudeAirport": -75.63333, + "nameAirport": "Salluit", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-7", + "airportId": 9596, + "codeIataAirport": "YZH", + "codeIataCity": "YZH", + "codeIcaoAirport": "CYZH", + "codeIso2Country": "CA", + "geonameId": "6296342", + "latitudeAirport": 55.3, + "longitudeAirport": -114.78333, + "nameAirport": "Slave Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-2:30", + "airportId": 9597, + "codeIataAirport": "YZM", + "codeIataCity": "YZM", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8298757", + "latitudeAirport": 48.833332, + "longitudeAirport": -56.86667, + "nameAirport": "Buchans", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/St_Johns" + }, + { + "GMT": "-8", + "airportId": 9598, + "codeIataAirport": "YZP", + "codeIataCity": "YZP", + "codeIcaoAirport": "CYZP", + "codeIso2Country": "CA", + "geonameId": "6296343", + "latitudeAirport": 53.254444, + "longitudeAirport": -131.81277, + "nameAirport": "Sandspit", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9599, + "codeIataAirport": "YZR", + "codeIataCity": "YZR", + "codeIcaoAirport": "CYZR", + "codeIso2Country": "CA", + "geonameId": "6296344", + "latitudeAirport": 42.997223, + "longitudeAirport": -82.31111, + "nameAirport": "Sarnia", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "airportId": 9600, + "codeIataAirport": "YZS", + "codeIataCity": "YZS", + "codeIcaoAirport": "CYZS", + "codeIso2Country": "CA", + "geonameId": "6296345", + "latitudeAirport": 64.2, + "longitudeAirport": -83.36667, + "nameAirport": "Coral Harbour", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Atikokan" + }, + { + "GMT": "-8", + "airportId": 9601, + "codeIataAirport": "YZT", + "codeIataCity": "YZT", + "codeIcaoAirport": "CYZT", + "codeIso2Country": "CA", + "geonameId": "6296346", + "latitudeAirport": 50.680557, + "longitudeAirport": -127.36389, + "nameAirport": "Port Hardy", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "airportId": 9602, + "codeIataAirport": "YZU", + "codeIataCity": "YZU", + "codeIcaoAirport": "CYZU", + "codeIso2Country": "CA", + "geonameId": "6301498", + "latitudeAirport": 54.15, + "longitudeAirport": -115.78333, + "nameAirport": "Whitecourt", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "-5", + "airportId": 9603, + "codeIataAirport": "YZV", + "codeIataCity": "YZV", + "codeIcaoAirport": "CYZV", + "codeIso2Country": "CA", + "geonameId": "6296347", + "latitudeAirport": 50.21751, + "longitudeAirport": -66.26404, + "nameAirport": "Sept-Iles", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "airportId": 9604, + "codeIataAirport": "YZW", + "codeIataCity": "YZW", + "codeIcaoAirport": "CYZW", + "codeIso2Country": "CA", + "geonameId": "6301499", + "latitudeAirport": 60.166668, + "longitudeAirport": -132.71666, + "nameAirport": "Teslin", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-4", + "airportId": 9605, + "codeIataAirport": "YZX", + "codeIataCity": "YZX", + "codeIcaoAirport": "CYZX", + "codeIso2Country": "CA", + "geonameId": "6296348", + "latitudeAirport": 49.166668, + "longitudeAirport": -118.666664, + "nameAirport": "Greenwood", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Halifax" + }, + { + "GMT": "8", + "airportId": 9606, + "codeIataAirport": "YZY", + "codeIataCity": "YZY", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "8224672", + "latitudeAirport": 38.8075, + "longitudeAirport": 100.660835, + "nameAirport": "Ganzhou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-8", + "airportId": 9607, + "codeIataAirport": "YZZ", + "codeIataCity": "YZZ", + "codeIcaoAirport": "CAD4", + "codeIso2Country": "CA", + "geonameId": "7910243", + "latitudeAirport": 49.066666, + "longitudeAirport": -117.6, + "nameAirport": "Trail Regional Airport", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "airportId": 9608, + "codeIataAirport": "ZAC", + "codeIataCity": "ZAC", + "codeIcaoAirport": "CZAC", + "codeIso2Country": "CA", + "geonameId": "7668151", + "latitudeAirport": 56.083332, + "longitudeAirport": -96.1, + "nameAirport": "York Landing", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "1", + "airportId": 9609, + "codeIataAirport": "ZAD", + "codeIataCity": "ZAD", + "codeIcaoAirport": "LDZD", + "codeIso2Country": "HR", + "geonameId": "3220360", + "latitudeAirport": 44.09778, + "longitudeAirport": 15.356667, + "nameAirport": "Zadar", + "nameCountry": "Croatia", + "phone": "", + "timezone": "Europe/Zagreb" + }, + { + "GMT": "1", + "airportId": 9610, + "codeIataAirport": "ZAF", + "codeIataCity": "ZAF", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 39.120277, + "longitudeAirport": 30.116945, + "nameAirport": "Arles Railway Station", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 9611, + "codeIataAirport": "ZAG", + "codeIataCity": "ZAG", + "codeIcaoAirport": "LDZA", + "codeIso2Country": "HR", + "geonameId": "3186886", + "latitudeAirport": 45.733242, + "longitudeAirport": 16.06152, + "nameAirport": "Pleso", + "nameCountry": "Croatia", + "phone": "", + "timezone": "Europe/Zagreb" + }, + { + "GMT": "3.30", + "airportId": 9612, + "codeIataAirport": "ZAH", + "codeIataCity": "ZAH", + "codeIcaoAirport": "OIZH", + "codeIso2Country": "IR", + "geonameId": "1336272", + "latitudeAirport": 29.475756, + "longitudeAirport": 60.90033, + "nameAirport": "Zahedan", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "4.30", + "airportId": 9613, + "codeIataAirport": "ZAJ", + "codeIataCity": "ZAJ", + "codeIcaoAirport": "OAZJ", + "codeIso2Country": "AF", + "geonameId": "1120985", + "latitudeAirport": 31.1, + "longitudeAirport": 61.983334, + "nameAirport": "Zaranj", + "nameCountry": "Afghanistan", + "phone": "", + "timezone": "Asia/Kabul" + }, + { + "GMT": "1", + "airportId": 9614, + "codeIataAirport": "ZAK", + "codeIataCity": "ZAK", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Chiusa/Klausen Bus Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-4", + "airportId": 9615, + "codeIataAirport": "ZAL", + "codeIataCity": "ZAL", + "codeIcaoAirport": "SCVD", + "codeIso2Country": "CL", + "geonameId": "6300708", + "latitudeAirport": -39.791668, + "longitudeAirport": -73.23944, + "nameAirport": "Pichoy", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "8", + "airportId": 9616, + "codeIataAirport": "ZAM", + "codeIataCity": "ZAM", + "codeIcaoAirport": "RPMZ", + "codeIso2Country": "PH", + "geonameId": "1679433", + "latitudeAirport": 6.919294, + "longitudeAirport": 122.062256, + "nameAirport": "Zamboanga International", + "nameCountry": "Philippines", + "phone": "", + "timezone": "Asia/Manila" + }, + { + "GMT": "1", + "airportId": 9617, + "codeIataAirport": "ZAO", + "codeIataCity": "ZAO", + "codeIcaoAirport": "LFCC", + "codeIso2Country": "FR", + "geonameId": "6694535", + "latitudeAirport": 44.45, + "longitudeAirport": 1.45, + "nameAirport": "Laberandie", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 9618, + "codeIataAirport": "ZAP", + "codeIataCity": "ZAP", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2661740", + "latitudeAirport": 47.33103, + "longitudeAirport": 9.40996, + "nameAirport": "Appenzell Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9619, + "codeIataAirport": "ZAQ", + "codeIataCity": "NUE", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 41.56166, + "longitudeAirport": 46.664787, + "nameAirport": "Nuremberg Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9620, + "codeIataAirport": "ZAR", + "codeIataCity": "ZAR", + "codeIcaoAirport": "DNZA", + "codeIso2Country": "NG", + "geonameId": "6296450", + "latitudeAirport": 11.0, + "longitudeAirport": 7.666667, + "nameAirport": "Zaria", + "nameCountry": "Nigeria", + "phone": "", + "timezone": "Africa/Lagos" + }, + { + "GMT": "8", + "airportId": 9621, + "codeIataAirport": "ZAS", + "codeIataCity": "ZAS", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Shunde Ferry", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 9622, + "codeIataAirport": "ZAT", + "codeIataCity": "ZAT", + "codeIcaoAirport": "ZPZT", + "codeIso2Country": "CN", + "geonameId": "7731648", + "latitudeAirport": 27.316668, + "longitudeAirport": 103.8, + "nameAirport": "Zhaotong", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 9623, + "codeIataAirport": "ZAU", + "codeIataCity": "ZAU", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Sachsen Railway", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9624, + "codeIataAirport": "ZAW", + "codeIataCity": "ZAW", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Nykobing Mors Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "8", + "airportId": 9625, + "codeIataAirport": "ZAX", + "codeIataCity": "ZAX", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Pan Yu Ferry", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 9626, + "codeIataAirport": "ZAY", + "codeIataCity": "ANR", + "codeIcaoAirport": "", + "codeIso2Country": "BE", + "geonameId": "0", + "latitudeAirport": 51.21992, + "longitudeAirport": 4.39625, + "nameAirport": "De Keyserlei Bus Station", + "nameCountry": "Belgium", + "phone": "", + "timezone": "Europe/Brussels" + }, + { + "GMT": "1", + "airportId": 9627, + "codeIataAirport": "ZAZ", + "codeIataCity": "ZAZ", + "codeIcaoAirport": "LEZG", + "codeIso2Country": "ES", + "geonameId": "6301769", + "latitudeAirport": 41.66386, + "longitudeAirport": -1.007466, + "nameAirport": "Zaragoza", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "airportId": 9628, + "codeIataAirport": "ZBA", + "codeIataCity": "EAP", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 40.078537, + "longitudeAirport": 116.5871, + "nameAirport": "Basel Bad Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9629, + "codeIataAirport": "ZBB", + "codeIataCity": "EBJ", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 55.476466, + "longitudeAirport": 8.459405, + "nameAirport": "Esbjerg Railway Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "0", + "airportId": 9630, + "codeIataAirport": "ZBC", + "codeIataCity": "BHX", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 42.237392, + "longitudeAirport": 118.91089, + "nameAirport": "Colmore Row Bus Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "8", + "airportId": 9631, + "codeIataAirport": "ZBD", + "codeIataCity": "ZBD", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 29.705096, + "longitudeAirport": 116.001982, + "nameAirport": "Jiang Men Ferry", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 9632, + "codeIataAirport": "ZBE", + "codeIataCity": "ZBE", + "codeIcaoAirport": "LKZA", + "codeIso2Country": "CZ", + "geonameId": "7730636", + "latitudeAirport": 49.88333, + "longitudeAirport": 16.866667, + "nameAirport": "Dolni Benesov", + "nameCountry": "Czech Republic", + "phone": "", + "timezone": "Europe/Prague" + }, + { + "GMT": "-4", + "airportId": 9633, + "codeIataAirport": "ZBF", + "codeIataCity": "ZBF", + "codeIcaoAirport": "CZBF", + "codeIso2Country": "CA", + "geonameId": "6696259", + "latitudeAirport": 47.629166, + "longitudeAirport": -65.73944, + "nameAirport": "Bathurst", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Moncton" + }, + { + "GMT": "1", + "airportId": 9634, + "codeIataAirport": "ZBH", + "codeIataCity": "ZBH", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Severac-le-Chateau Railway Station", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 9635, + "codeIataAirport": "ZBJ", + "codeIataCity": "ZBJ", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "2621951", + "latitudeAirport": 55.56568, + "longitudeAirport": 9.75257, + "nameAirport": "Fredericia Railway Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 9636, + "codeIataAirport": "ZBK", + "codeIataCity": "ZBK", + "codeIcaoAirport": "", + "codeIso2Country": "ME", + "geonameId": "7731649", + "latitudeAirport": 43.15, + "longitudeAirport": 19.116667, + "nameAirport": "Zabljak", + "nameCountry": "Montenegro", + "phone": "", + "timezone": "Europe/Podgorica" + }, + { + "GMT": "10", + "airportId": 9637, + "codeIataAirport": "ZBL", + "codeIataCity": "ZBL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "2175819", + "latitudeAirport": -24.4, + "longitudeAirport": 150.51666, + "nameAirport": "Biloela", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 9638, + "codeIataAirport": "ZBM", + "codeIataCity": "ZBM", + "codeIcaoAirport": "CZBM", + "codeIso2Country": "CA", + "geonameId": "7668153", + "latitudeAirport": 45.316666, + "longitudeAirport": -72.833336, + "nameAirport": "Bromont", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "airportId": 9639, + "codeIataAirport": "ZBN", + "codeIataCity": "BZO", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 46.4967153, + "longitudeAirport": 11.3580048, + "nameAirport": "Bolzano/Bozen Bus Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "10", + "airportId": 9640, + "codeIataAirport": "ZBO", + "codeIataCity": "ZBO", + "codeIcaoAirport": "YBWN", + "codeIso2Country": "AU", + "geonameId": "7731650", + "latitudeAirport": -20.016666, + "longitudeAirport": 148.21666, + "nameAirport": "Bowen", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "airportId": 9641, + "codeIataAirport": "ZBP", + "codeIataCity": "BWI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Baltimore Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 9642, + "codeIataAirport": "ZBQ", + "codeIataCity": "ODE", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 55.403756, + "longitudeAirport": 10.40237, + "nameAirport": "Odense Railway Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "3.30", + "airportId": 9643, + "codeIataAirport": "ZBR", + "codeIataCity": "ZBR", + "codeIcaoAirport": "OIZC", + "codeIso2Country": "IR", + "geonameId": "6300084", + "latitudeAirport": 25.436478, + "longitudeAirport": 60.379562, + "nameAirport": "Chah- Bahar", + "nameCountry": "Iran", + "phone": "", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-7", + "airportId": 9644, + "codeIataAirport": "ZBS", + "codeIataCity": "MSC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.274376, + "longitudeAirport": 114.69443, + "nameAirport": "Mesa Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "1", + "airportId": 9645, + "codeIataAirport": "ZBT", + "codeIataCity": "ZBT", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "2618528", + "latitudeAirport": 39.122627, + "longitudeAirport": 117.3399, + "nameAirport": "Kolding Railway Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 9646, + "codeIataAirport": "ZBU", + "codeIataCity": "AAR", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 56.162939, + "longitudeAirport": 10.203921, + "nameAirport": "Aarhus Limo", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-7", + "airportId": 9647, + "codeIataAirport": "ZBV", + "codeIataCity": "EGE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.6402638, + "longitudeAirport": -106.3741955, + "nameAirport": "Beaver Creek Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "7", + "airportId": 9648, + "codeIataAirport": "ZBY", + "codeIataCity": "ZBY", + "codeIcaoAirport": "VLSB", + "codeIso2Country": "LA", + "geonameId": "6301108", + "latitudeAirport": 19.25, + "longitudeAirport": 101.7, + "nameAirport": "Sayaboury", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "8", + "airportId": 9649, + "codeIataAirport": "ZBZ", + "codeIataCity": "ZBZ", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Xin Hui Ferry", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 9650, + "codeIataAirport": "ZCA", + "codeIataCity": "ZCA", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Tai Shan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 9651, + "codeIataAirport": "ZCB", + "codeIataCity": "ZCB", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2955272", + "latitudeAirport": 49.97704, + "longitudeAirport": 9.15214, + "nameAirport": "Aschaffenburg Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9652, + "codeIataAirport": "ZCC", + "codeIataCity": "FKB", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 49.0080848, + "longitudeAirport": 8.4037563, + "nameAirport": "Baden-Baden Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "airportId": 9653, + "codeIataAirport": "ZCL", + "codeIataCity": "ZCL", + "codeIcaoAirport": "MMZC", + "codeIso2Country": "MX", + "geonameId": "6299883", + "latitudeAirport": 22.8, + "longitudeAirport": -102.55, + "nameAirport": "La Calera", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "8", + "airportId": 9654, + "codeIataAirport": "ZCP", + "codeIataCity": "FUO", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 23.021548, + "longitudeAirport": 113.121416, + "nameAirport": "Foshan Ferry", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 9655, + "codeIataAirport": "ZDA", + "codeIataCity": "ZDA", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2661881", + "latitudeAirport": 47.39254, + "longitudeAirport": 8.04422, + "nameAirport": "Aarau Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9656, + "codeIataAirport": "ZDB", + "codeIataCity": "ZDB", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Adelboden Bus Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9657, + "codeIataAirport": "ZDC", + "codeIataCity": "ZDC", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2661834", + "latitudeAirport": 46.3181, + "longitudeAirport": 6.96457, + "nameAirport": "Aigle Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9658, + "codeIataAirport": "ZDD", + "codeIataCity": "ZDD", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2661731", + "latitudeAirport": 47.51667, + "longitudeAirport": 9.43333, + "nameAirport": "Arbon Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9659, + "codeIataAirport": "ZDE", + "codeIataCity": "ZDE", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2661712", + "latitudeAirport": 46.77793, + "longitudeAirport": 9.67621, + "nameAirport": "Arosa Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9660, + "codeIataAirport": "ZDG", + "codeIataCity": "ZDG", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2661646", + "latitudeAirport": 47.47333, + "longitudeAirport": 8.30592, + "nameAirport": "Baden Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9661, + "codeIataAirport": "ZDH", + "codeIataCity": "EAP", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 47.3251, + "longitudeAirport": 7.3523, + "nameAirport": "Basel SBB station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9662, + "codeIataAirport": "ZDI", + "codeIataCity": "ZDI", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2661567", + "latitudeAirport": 46.19278, + "longitudeAirport": 9.01703, + "nameAirport": "Bellinzona Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9663, + "codeIataAirport": "ZDJ", + "codeIataCity": "BRN", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 46.9479222, + "longitudeAirport": 7.4446085, + "nameAirport": "Bern Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9664, + "codeIataAirport": "ZDK", + "codeIataCity": "ZDK", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Biel/Bienne Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9665, + "codeIataAirport": "ZDL", + "codeIataCity": "ZDL", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2661394", + "latitudeAirport": 46.31667, + "longitudeAirport": 7.98333, + "nameAirport": "Brig Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9666, + "codeIataAirport": "ZDN", + "codeIataCity": "BRQ", + "codeIcaoAirport": "", + "codeIso2Country": "CZ", + "geonameId": "0", + "latitudeAirport": 49.2, + "longitudeAirport": 16.61, + "nameAirport": "Brno Bus Station", + "nameCountry": "Czech Republic", + "phone": "", + "timezone": "Europe/Prague" + }, + { + "GMT": "1", + "airportId": 9667, + "codeIataAirport": "ZDO", + "codeIataCity": "ZDO", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Buchs SG Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9668, + "codeIataAirport": "ZDP", + "codeIataCity": "ZDP", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2661321", + "latitudeAirport": 47.05901, + "longitudeAirport": 7.62786, + "nameAirport": "Burgdorf Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9669, + "codeIataAirport": "ZDQ", + "codeIataCity": "ZDQ", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Champery Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9670, + "codeIataAirport": "ZDR", + "codeIataCity": "ZDR", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Chateau-d'Oex Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9671, + "codeIataAirport": "ZDS", + "codeIataCity": "ZDS", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2661176", + "latitudeAirport": 45.83203, + "longitudeAirport": 9.03119, + "nameAirport": "Chiasso Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9672, + "codeIataAirport": "ZDT", + "codeIataCity": "ZDT", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2661169", + "latitudeAirport": 46.84986, + "longitudeAirport": 9.53287, + "nameAirport": "Chur Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "0", + "airportId": 9673, + "codeIataAirport": "ZDU", + "codeIataCity": "DND", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 56.4614282, + "longitudeAirport": -2.9681109, + "nameAirport": "ScotRailway", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 9674, + "codeIataAirport": "ZDV", + "codeIataCity": "ZDV", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2661039", + "latitudeAirport": 46.80429, + "longitudeAirport": 9.83723, + "nameAirport": "Davos Dorf Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9675, + "codeIataAirport": "ZDW", + "codeIataCity": "ZDW", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Delemont Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9676, + "codeIataAirport": "ZDX", + "codeIataCity": "ZDX", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2661015", + "latitudeAirport": 47.40165, + "longitudeAirport": 8.40015, + "nameAirport": "Dietikon Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9677, + "codeIataAirport": "ZDZ", + "codeIataCity": "ZDZ", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2660925", + "latitudeAirport": 47.12849, + "longitudeAirport": 8.74735, + "nameAirport": "Einsiedeln Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "2", + "airportId": 9678, + "codeIataAirport": "ZEC", + "codeIataCity": "ZEC", + "codeIcaoAirport": "FASC", + "codeIso2Country": "ZA", + "geonameId": "7730325", + "latitudeAirport": -27.0, + "longitudeAirport": 28.0, + "nameAirport": "Secunda", + "nameCountry": "South Africa", + "phone": "", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "1", + "airportId": 9679, + "codeIataAirport": "ZEE", + "codeIataCity": "ZEE", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2923822", + "latitudeAirport": 50.55162, + "longitudeAirport": 9.67518, + "nameAirport": "Fulda Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "airportId": 9680, + "codeIataAirport": "ZEF", + "codeIataCity": "ZEF", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 36.40025, + "longitudeAirport": -80.81069, + "nameAirport": "Nanhai Ferry", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9", + "airportId": 9681, + "codeIataAirport": "ZEG", + "codeIataCity": "ZEG", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "7731651", + "latitudeAirport": -5.983333, + "longitudeAirport": 139.36667, + "nameAirport": "Senggo", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "airportId": 9682, + "codeIataAirport": "ZEI", + "codeIataCity": "ZEI", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2922530", + "latitudeAirport": 47.49209, + "longitudeAirport": 11.09576, + "nameAirport": "Garmisch-Partenkirchen Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9683, + "codeIataAirport": "ZEJ", + "codeIataCity": "ZEJ", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2921466", + "latitudeAirport": 51.5075, + "longitudeAirport": 7.12283, + "nameAirport": "Gelsenkirchen Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-8", + "airportId": 9684, + "codeIataAirport": "ZEL", + "codeIataCity": "ZEL", + "codeIcaoAirport": "CYJQ", + "codeIso2Country": "CA", + "geonameId": "7910177", + "latitudeAirport": 52.166668, + "longitudeAirport": -128.1, + "nameAirport": "Bella Bella", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "airportId": 9685, + "codeIataAirport": "ZEM", + "codeIataCity": "ZEM", + "codeIcaoAirport": "CZEM", + "codeIso2Country": "CA", + "geonameId": "6296353", + "latitudeAirport": 52.25, + "longitudeAirport": -78.51667, + "nameAirport": "East Main", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "10", + "airportId": 9686, + "codeIataAirport": "ZEN", + "codeIataCity": "ZEN", + "codeIcaoAirport": "", + "codeIso2Country": "PG", + "geonameId": "2082758", + "latitudeAirport": -6.95, + "longitudeAirport": 146.61667, + "nameAirport": "Zenag", + "nameCountry": "Papua New Guinea", + "phone": "", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "airportId": 9687, + "codeIataAirport": "ZEP", + "codeIataCity": "LON", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 51.51, + "longitudeAirport": 0.06, + "nameAirport": "Victoria Railway", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 9688, + "codeIataAirport": "ZEQ", + "codeIataCity": "ZEQ", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2651286", + "latitudeAirport": 53.69076, + "longitudeAirport": -1.62907, + "nameAirport": "Dewsbury Bus Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "5.30", + "airportId": 9689, + "codeIataAirport": "ZER", + "codeIataCity": "ZER", + "codeIcaoAirport": "VEZO", + "codeIso2Country": "IN", + "geonameId": "7668598", + "latitudeAirport": 27.633333, + "longitudeAirport": 93.833336, + "nameAirport": "Zero", + "nameCountry": "India", + "phone": "", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "airportId": 9690, + "codeIataAirport": "ZEU", + "codeIataCity": "ZEU", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Goettingen Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9691, + "codeIataAirport": "ZEX", + "codeIataCity": "GUT", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 51.9049057, + "longitudeAirport": 8.3927497, + "nameAirport": "Guetersloh Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9692, + "codeIataAirport": "ZEY", + "codeIataCity": "ZEY", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Hagen Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-8", + "airportId": 9693, + "codeIataAirport": "ZFA", + "codeIataCity": "ZFA", + "codeIcaoAirport": "CZFA", + "codeIso2Country": "CA", + "geonameId": "6301501", + "latitudeAirport": 63.216667, + "longitudeAirport": -133.36667, + "nameAirport": "Faro", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-4", + "airportId": 9694, + "codeIataAirport": "ZFB", + "codeIataCity": "ZFB", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 51.583332, + "longitudeAirport": -57.916668, + "nameAirport": "Old Fort Bay", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Blanc-Sablon" + }, + { + "GMT": "0", + "airportId": 9695, + "codeIataAirport": "ZFC", + "codeIataCity": "LBA", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 53.8371263, + "longitudeAirport": -1.4722292, + "nameAirport": "Bradford Bus Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "airportId": 9696, + "codeIataAirport": "ZFD", + "codeIataCity": "ZFD", + "codeIcaoAirport": "CZFD", + "codeIso2Country": "CA", + "geonameId": "7668154", + "latitudeAirport": 59.316666, + "longitudeAirport": -107.166664, + "nameAirport": "Fond Du Lac", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "0", + "airportId": 9697, + "codeIataAirport": "ZFG", + "codeIataCity": "DSA", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 53.5230412, + "longitudeAirport": -1.1337622, + "nameAirport": "Sheffield Bus Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 9698, + "codeIataAirport": "ZFH", + "codeIataCity": "KYN", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Milton Keynes Bus Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 9699, + "codeIataAirport": "ZFI", + "codeIataCity": "ZFI", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2653225", + "latitudeAirport": 53.25, + "longitudeAirport": -1.41667, + "nameAirport": "Chesterfield Bus Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 9700, + "codeIataAirport": "ZFJ", + "codeIataCity": "RNS", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 48.113475, + "longitudeAirport": -1.675708, + "nameAirport": "Rennes", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 9701, + "codeIataAirport": "ZFK", + "codeIataCity": "ZFK", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Guderup Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-6", + "airportId": 9702, + "codeIataAirport": "ZFL", + "codeIataCity": "ZFL", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8299020", + "latitudeAirport": 50.833332, + "longitudeAirport": -93.65, + "nameAirport": "South Trout Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-7", + "airportId": 9703, + "codeIataAirport": "ZFM", + "codeIataCity": "ZFM", + "codeIcaoAirport": "CZFM", + "codeIso2Country": "CA", + "geonameId": "6296354", + "latitudeAirport": 67.477776, + "longitudeAirport": -134.95277, + "nameAirport": "Fort Mcpherson", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-7", + "airportId": 9704, + "codeIataAirport": "ZFN", + "codeIataCity": "ZFN", + "codeIcaoAirport": "CZFN", + "codeIso2Country": "CA", + "geonameId": "6296355", + "latitudeAirport": 64.916664, + "longitudeAirport": -125.566666, + "nameAirport": "Tulita", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Yellowknife" + }, + { + "GMT": "1", + "airportId": 9705, + "codeIataAirport": "ZFQ", + "codeIataCity": "BOD", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 44.837789, + "longitudeAirport": -0.57918, + "nameAirport": "Gare de Bordeaux", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 9706, + "codeIataAirport": "ZFR", + "codeIataCity": "ZFR", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2925535", + "latitudeAirport": 52.34714, + "longitudeAirport": 14.55062, + "nameAirport": "Frankfurt/Oder Railway", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "airportId": 9707, + "codeIataAirport": "ZFT", + "codeIataCity": "FLL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 26.1223084, + "longitudeAirport": -80.1433786, + "nameAirport": "Fort Lauderdale Railway Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "airportId": 9708, + "codeIataAirport": "ZFU", + "codeIataCity": "ZFU", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "0", + "latitudeAirport": -23.3964516, + "longitudeAirport": -46.3214444, + "nameAirport": "Aruja", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "airportId": 9709, + "codeIataAirport": "ZFV", + "codeIataCity": "PHL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": -1.0, + "longitudeAirport": -1.0, + "nameAirport": "Philadelphia Railway Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "airportId": 9710, + "codeIataAirport": "ZFW", + "codeIataCity": "ZFW", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8261023", + "latitudeAirport": 56.066666, + "longitudeAirport": -118.38333, + "nameAirport": "Fairview", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "1", + "airportId": 9711, + "codeIataAirport": "ZFX", + "codeIataCity": "SZZ", + "codeIcaoAirport": "", + "codeIso2Country": "PL", + "geonameId": "0", + "latitudeAirport": 53.4285438, + "longitudeAirport": 14.5528116, + "nameAirport": "Szczecin Bus Station", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "1", + "airportId": 9712, + "codeIataAirport": "ZFY", + "codeIataCity": "KTW", + "codeIcaoAirport": "", + "codeIso2Country": "PL", + "geonameId": "0", + "latitudeAirport": 50.2648919, + "longitudeAirport": 19.0237815, + "nameAirport": "Katowice Bus Station", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "-5", + "airportId": 9713, + "codeIataAirport": "ZFZ", + "codeIataCity": "BUF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.8864468, + "longitudeAirport": -78.8783689, + "nameAirport": "Buffalo Depew Rr", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 9714, + "codeIataAirport": "ZGA", + "codeIataCity": "ZGA", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2921232", + "latitudeAirport": 50.88029, + "longitudeAirport": 12.08187, + "nameAirport": "Gera Railway", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "0", + "airportId": 9715, + "codeIataAirport": "ZGB", + "codeIataCity": "NQT", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 21.540333, + "longitudeAirport": 109.28785, + "nameAirport": "Nottingham Bus Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "airportId": 9716, + "codeIataAirport": "ZGD", + "codeIataCity": "GON", + "codeIcaoAirport": "ZGDY", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 29.10712, + "longitudeAirport": 110.44569, + "nameAirport": "New London Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 9717, + "codeIataAirport": "ZGE", + "codeIataCity": "ZGE", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Goerlitz Railway", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-8", + "airportId": 9718, + "codeIataAirport": "ZGF", + "codeIataCity": "ZGF", + "codeIcaoAirport": "CZGF", + "codeIso2Country": "CA", + "geonameId": "7668155", + "latitudeAirport": 49.016666, + "longitudeAirport": -118.433334, + "nameAirport": "Grand Forks", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "airportId": 9719, + "codeIataAirport": "ZGH", + "codeIataCity": "CPH", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 28.193336, + "longitudeAirport": 113.21459, + "nameAirport": "Copenhagen H Rail Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-6", + "airportId": 9720, + "codeIataAirport": "ZGI", + "codeIataCity": "ZGI", + "codeIcaoAirport": "CZGI", + "codeIso2Country": "CA", + "geonameId": "7668156", + "latitudeAirport": 54.683334, + "longitudeAirport": -94.166664, + "nameAirport": "Gods River", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "1", + "airportId": 9721, + "codeIataAirport": "ZGJ", + "codeIataCity": "OST", + "codeIcaoAirport": "", + "codeIso2Country": "BE", + "geonameId": "0", + "latitudeAirport": 51.2166667, + "longitudeAirport": 2.9, + "nameAirport": "Brugge Railway Station", + "nameCountry": "Belgium", + "phone": "", + "timezone": "Europe/Brussels" + }, + { + "GMT": "10", + "airportId": 9722, + "codeIataAirport": "ZGL", + "codeIataCity": "ZGL", + "codeIcaoAirport": "YSGW", + "codeIso2Country": "AU", + "geonameId": "7731652", + "latitudeAirport": -25.683332, + "longitudeAirport": 142.11667, + "nameAirport": "South Galway", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "airportId": 9723, + "codeIataAirport": "ZGM", + "codeIataCity": "ZGM", + "codeIcaoAirport": "", + "codeIso2Country": "ZM", + "geonameId": "901116", + "latitudeAirport": -15.958333, + "longitudeAirport": 25.934444, + "nameAirport": "Ngoma", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "8", + "airportId": 9724, + "codeIataAirport": "ZGN", + "codeIataCity": "ZGN", + "codeIcaoAirport": "ZGNN", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 22.61321, + "longitudeAirport": 108.1675, + "nameAirport": "Zhongshan Ferry Port", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 9725, + "codeIataAirport": "ZGO", + "codeIataCity": "ZGO", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 23.430237, + "longitudeAirport": 116.75859, + "nameAirport": "Gotha Railway", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "airportId": 9726, + "codeIataAirport": "ZGR", + "codeIataCity": "ZGR", + "codeIcaoAirport": "CZGR", + "codeIso2Country": "CA", + "geonameId": "7668157", + "latitudeAirport": 52.066666, + "longitudeAirport": -95.46667, + "nameAirport": "Little Grand Rapids", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-4", + "airportId": 9727, + "codeIataAirport": "ZGS", + "codeIataCity": "ZGS", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "7910209", + "latitudeAirport": 50.333332, + "longitudeAirport": -60.666668, + "nameAirport": "Gethsemani", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Blanc-Sablon" + }, + { + "GMT": "11", + "airportId": 9728, + "codeIataAirport": "ZGU", + "codeIataCity": "ZGU", + "codeIcaoAirport": "NVSQ", + "codeIso2Country": "VU", + "geonameId": "7668376", + "latitudeAirport": -14.220086, + "longitudeAirport": 167.58827, + "nameAirport": "Gaua", + "nameCountry": "Vanuatu", + "phone": "", + "timezone": "Pacific/Efate" + }, + { + "GMT": "1", + "airportId": 9729, + "codeIataAirport": "ZGW", + "codeIataCity": "ZGW", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2917788", + "latitudeAirport": 54.09311, + "longitudeAirport": 13.38786, + "nameAirport": "Greifswald Railway", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9730, + "codeIataAirport": "ZGX", + "codeIataCity": "ZGX", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "2610319", + "latitudeAirport": 56.45319, + "longitudeAirport": 9.40201, + "nameAirport": "Viborg Railway Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "8", + "airportId": 9731, + "codeIataAirport": "ZGY", + "codeIataCity": "ZGY", + "codeIcaoAirport": "", + "codeIso2Country": "MY", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Kuching Port", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "8", + "airportId": 9732, + "codeIataAirport": "ZHA", + "codeIataCity": "ZHA", + "codeIcaoAirport": "ZGZJ", + "codeIso2Country": "CN", + "geonameId": "6301366", + "latitudeAirport": 21.214727, + "longitudeAirport": 110.36272, + "nameAirport": "Zhanjiang", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 9733, + "codeIataAirport": "ZHB", + "codeIataCity": "ZHB", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Engelberg Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "-5", + "airportId": 9734, + "codeIataAirport": "ZHC", + "codeIataCity": "PHL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 34.52752, + "longitudeAirport": 113.84024, + "nameAirport": "N Philadelphia RailwaySt", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 9735, + "codeIataAirport": "ZHD", + "codeIataCity": "ZHD", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Fluelen Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9736, + "codeIataAirport": "ZHE", + "codeIataCity": "ZHE", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2660727", + "latitudeAirport": 47.55816, + "longitudeAirport": 8.89854, + "nameAirport": "Frauenfeld Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9737, + "codeIataAirport": "ZHF", + "codeIataCity": "ZHF", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2660718", + "latitudeAirport": 46.80237, + "longitudeAirport": 7.15128, + "nameAirport": "Fribourg Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9738, + "codeIataAirport": "ZHG", + "codeIataCity": "ZHG", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2660594", + "latitudeAirport": 47.04057, + "longitudeAirport": 9.06804, + "nameAirport": "Glarus Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9739, + "codeIataAirport": "ZHH", + "codeIataCity": "ZHH", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 30.776598, + "longitudeAirport": 114.209625, + "nameAirport": "Gossau SG Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9740, + "codeIataAirport": "ZHI", + "codeIataCity": "ZHI", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2660512", + "latitudeAirport": 47.193585, + "longitudeAirport": 7.3954451, + "nameAirport": "Grenchen", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9741, + "codeIataAirport": "ZHJ", + "codeIataCity": "ZHJ", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2660498", + "latitudeAirport": 46.62396, + "longitudeAirport": 8.03601, + "nameAirport": "Grindelwald Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9742, + "codeIataAirport": "ZHK", + "codeIataCity": "ZHK", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2660461", + "latitudeAirport": 46.47215, + "longitudeAirport": 7.28685, + "nameAirport": "Gstaad Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9743, + "codeIataAirport": "ZHL", + "codeIataCity": "ZHL", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2660395", + "latitudeAirport": 34.736362, + "longitudeAirport": 112.38541, + "nameAirport": "Heerbrugg Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "6", + "airportId": 9744, + "codeIataAirport": "ZHM", + "codeIataCity": "ZHM", + "codeIcaoAirport": "VGSH", + "codeIso2Country": "BD", + "geonameId": "7731653", + "latitudeAirport": 24.398611, + "longitudeAirport": 91.92111, + "nameAirport": "Shamshernagar", + "nameCountry": "Bangladesh", + "phone": "", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "1", + "airportId": 9745, + "codeIataAirport": "ZHN", + "codeIataCity": "ZHN", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2660355", + "latitudeAirport": 32.9837, + "longitudeAirport": 112.61305, + "nameAirport": "Herzogenbuchsee Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "-8", + "airportId": 9746, + "codeIataAirport": "ZHO", + "codeIataCity": "ZHO", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "5977783", + "latitudeAirport": 54.39976, + "longitudeAirport": -126.67008, + "nameAirport": "Houston Bus Station", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "airportId": 9747, + "codeIataAirport": "ZHP", + "codeIataCity": "ZHP", + "codeIcaoAirport": "CZHP", + "codeIso2Country": "CA", + "geonameId": "8260827", + "latitudeAirport": 55.4, + "longitudeAirport": -116.48333, + "nameAirport": "High Prairie", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Edmonton" + }, + { + "GMT": "1", + "airportId": 9748, + "codeIataAirport": "ZHR", + "codeIataCity": "ZHR", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2660191", + "latitudeAirport": 46.49467, + "longitudeAirport": 7.67326, + "nameAirport": "Kandersteg Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9749, + "codeIataAirport": "ZHS", + "codeIataCity": "ZHS", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Klosters Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9750, + "codeIataAirport": "ZHT", + "codeIataCity": "GVA", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 46.1983922, + "longitudeAirport": 6.1422961, + "nameAirport": "Geneva Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9751, + "codeIataAirport": "ZHU", + "codeIataCity": "ZHU", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2660108", + "latitudeAirport": 22.011787, + "longitudeAirport": 113.3706, + "nameAirport": "Kreuzlingen Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9752, + "codeIataAirport": "ZHV", + "codeIataCity": "ZHV", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2660076", + "latitudeAirport": 47.09993, + "longitudeAirport": 6.82586, + "nameAirport": "La Chaux-de-Fonds Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9753, + "codeIataAirport": "ZHW", + "codeIataCity": "ZHW", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2660034", + "latitudeAirport": 47.21526, + "longitudeAirport": 7.79607, + "nameAirport": "Langenthal Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "8", + "airportId": 9754, + "codeIataAirport": "ZHY", + "codeIataCity": "ZHY", + "codeIcaoAirport": "ZLZW", + "codeIso2Country": "CN", + "geonameId": "7910247", + "latitudeAirport": 37.568935, + "longitudeAirport": 105.15253, + "nameAirport": "Xiangshan", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 9755, + "codeIataAirport": "ZHZ", + "codeIataCity": "LEJ", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 51.43, + "longitudeAirport": 12.24, + "nameAirport": "Halle Railway", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9756, + "codeIataAirport": "ZIB", + "codeIataCity": "ZIB", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Nyborg Railway Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-4", + "airportId": 9757, + "codeIataAirport": "ZIC", + "codeIataCity": "ZIC", + "codeIcaoAirport": "SCTO", + "codeIso2Country": "CL", + "geonameId": "7730170", + "latitudeAirport": -38.216667, + "longitudeAirport": -72.333336, + "nameAirport": "Victoria", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "1", + "airportId": 9758, + "codeIataAirport": "ZID", + "codeIataCity": "AAR", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 56.162939, + "longitudeAirport": 10.203921, + "nameAirport": "Aarhus Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 9759, + "codeIataAirport": "ZIE", + "codeIataCity": "ZIE", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Harbour (Eolie Island)", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "airportId": 9760, + "codeIataAirport": "ZIF", + "codeIataCity": "YOW", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 45.411572, + "longitudeAirport": -75.698194, + "nameAirport": "Fallowfield Railway", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "0", + "airportId": 9761, + "codeIataAirport": "ZIG", + "codeIataCity": "ZIG", + "codeIcaoAirport": "GOGG", + "codeIso2Country": "SN", + "geonameId": "2243942", + "latitudeAirport": 12.556111, + "longitudeAirport": -16.275833, + "nameAirport": "Ziguinchor", + "nameCountry": "Senegal", + "phone": "", + "timezone": "Africa/Dakar" + }, + { + "GMT": "-6", + "airportId": 9762, + "codeIataAirport": "ZIH", + "codeIataCity": "ZIH", + "codeIcaoAirport": "MMZH", + "codeIso2Country": "MX", + "geonameId": "6299884", + "latitudeAirport": 17.606783, + "longitudeAirport": -101.464066, + "nameAirport": "Internacional", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "9.30", + "airportId": 9763, + "codeIataAirport": "ZII", + "codeIataCity": "ADL", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "0", + "latitudeAirport": -34.9286212, + "longitudeAirport": 138.5999594, + "nameAirport": "Adelaide Ferry Port", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "1", + "airportId": 9764, + "codeIataAirport": "ZIJ", + "codeIataCity": "ZIJ", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Nykobing Sjaelland Railway Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 9765, + "codeIataAirport": "ZIK", + "codeIataCity": "KLV", + "codeIcaoAirport": "", + "codeIso2Country": "CZ", + "geonameId": "0", + "latitudeAirport": 50.2322052, + "longitudeAirport": 12.8712765, + "nameAirport": "Karlovy Vary Bus Station", + "nameCountry": "Czech Republic", + "phone": "", + "timezone": "Europe/Prague" + }, + { + "GMT": "1", + "airportId": 9766, + "codeIataAirport": "ZIL", + "codeIataCity": "ZIL", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Horsens Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 9767, + "codeIataAirport": "ZIM", + "codeIataCity": "ODE", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 55.403756, + "longitudeAirport": 10.40237, + "nameAirport": "Odense Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 9768, + "codeIataAirport": "ZIO", + "codeIataCity": "ZIO", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2831580", + "latitudeAirport": 51.17343, + "longitudeAirport": 7.0845, + "nameAirport": "Solingen Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9769, + "codeIataAirport": "ZIP", + "codeIataCity": "ZIP", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 49.871666, + "longitudeAirport": 11.646667, + "nameAirport": "Harbour (Eolie Island)", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "airportId": 9770, + "codeIataAirport": "ZIQ", + "codeIataCity": "ZIQ", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Harbour (Eolie Island)", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "airportId": 9771, + "codeIataAirport": "ZIR", + "codeIataCity": "ZIR", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "2615006", + "latitudeAirport": 24.963888, + "longitudeAirport": 53.15278, + "nameAirport": "Randers Railway Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 9772, + "codeIataAirport": "ZIT", + "codeIataCity": "ZIT", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2804008", + "latitudeAirport": 50.89772, + "longitudeAirport": 14.80764, + "nameAirport": "Zittau Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "airportId": 9773, + "codeIataAirport": "ZIU", + "codeIataCity": "ZUH", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 22.270715, + "longitudeAirport": 113.576726, + "nameAirport": "Railway", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "0", + "airportId": 9774, + "codeIataAirport": "ZIV", + "codeIataCity": "INV", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 57.4766949, + "longitudeAirport": -4.2314535, + "nameAirport": "ScotRailway", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "8", + "airportId": 9775, + "codeIataAirport": "ZIY", + "codeIataCity": "ZIY", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Lianhuashan Port", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "5", + "airportId": 9776, + "codeIataAirport": "ZIZ", + "codeIataCity": "ZIZ", + "codeIcaoAirport": "", + "codeIso2Country": "PK", + "geonameId": "0", + "latitudeAirport": 26.733334, + "longitudeAirport": 67.666664, + "nameAirport": "Zamzama", + "nameCountry": "Pakistan", + "phone": "", + "timezone": "Asia/Karachi" + }, + { + "GMT": "1", + "airportId": 9777, + "codeIataAirport": "ZJA", + "codeIataCity": "ZJA", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2659960", + "latitudeAirport": 47.05953, + "longitudeAirport": 6.75228, + "nameAirport": "Le Locle Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "8", + "airportId": 9778, + "codeIataAirport": "ZJB", + "codeIataCity": "ZJB", + "codeIcaoAirport": "", + "codeIso2Country": "MY", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Kuantan Port", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "1", + "airportId": 9779, + "codeIataAirport": "ZJC", + "codeIataCity": "ZJC", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2659952", + "latitudeAirport": 47.38853, + "longitudeAirport": 8.17503, + "nameAirport": "Lenzburg Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9780, + "codeIataAirport": "ZJD", + "codeIataCity": "ZJD", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Lenzerheide/Lai Bus Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9781, + "codeIataAirport": "ZJE", + "codeIataCity": "ZJE", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Harbour (Eolie Island)", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-6", + "airportId": 9782, + "codeIataAirport": "ZJG", + "codeIataCity": "ZJG", + "codeIcaoAirport": "CZJG", + "codeIso2Country": "CA", + "geonameId": "7668158", + "latitudeAirport": 54.519444, + "longitudeAirport": -98.04611, + "nameAirport": "Jenpeg", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "1", + "airportId": 9783, + "codeIataAirport": "ZJH", + "codeIataCity": "AAR", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 19.941612, + "longitudeAirport": 110.45717, + "nameAirport": "Aarhus H Railway Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 9784, + "codeIataAirport": "ZJJ", + "codeIataCity": "ZJJ", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "3169807", + "latitudeAirport": 40.75691, + "longitudeAirport": 14.01443, + "nameAirport": "Harbour", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "airportId": 9785, + "codeIataAirport": "ZJL", + "codeIataCity": "ZJL", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2659808", + "latitudeAirport": 47.0741, + "longitudeAirport": 7.30655, + "nameAirport": "Lyss Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9786, + "codeIataAirport": "ZJM", + "codeIataCity": "ZJM", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Martigny Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "-6", + "airportId": 9787, + "codeIataAirport": "ZJN", + "codeIataCity": "ZJN", + "codeIcaoAirport": "CZJN", + "codeIso2Country": "CA", + "geonameId": "7668159", + "latitudeAirport": 52.11667, + "longitudeAirport": -101.23333, + "nameAirport": "Swan River", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-8", + "airportId": 9788, + "codeIataAirport": "ZJO", + "codeIataCity": "SJC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 37.3393857, + "longitudeAirport": -121.8949555, + "nameAirport": "San Jose Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 9789, + "codeIataAirport": "ZJP", + "codeIataCity": "ZJP", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2659601", + "latitudeAirport": 46.43301, + "longitudeAirport": 6.91143, + "nameAirport": "Montreux Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9790, + "codeIataAirport": "ZJQ", + "codeIataCity": "ZJQ", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2659587", + "latitudeAirport": 46.51127, + "longitudeAirport": 6.49854, + "nameAirport": "Morges Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "8", + "airportId": 9791, + "codeIataAirport": "ZJR", + "codeIataCity": "ZJR", + "codeIcaoAirport": "", + "codeIso2Country": "MY", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Penang Port", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "1", + "airportId": 9792, + "codeIataAirport": "ZJS", + "codeIataCity": "ZJS", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2895044", + "latitudeAirport": 18.31063, + "longitudeAirport": 109.409706, + "nameAirport": "Jena Railway", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "airportId": 9793, + "codeIataAirport": "ZJT", + "codeIataCity": "ZJT", + "codeIcaoAirport": "", + "codeIso2Country": "MY", + "geonameId": "1732725", + "latitudeAirport": 1.358, + "longitudeAirport": 103.5468, + "nameAirport": "Tanjung Pelepas Port", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "1", + "airportId": 9794, + "codeIataAirport": "ZJU", + "codeIataCity": "ZJU", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2659297", + "latitudeAirport": 47.34999, + "longitudeAirport": 7.90329, + "nameAirport": "Olten Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9795, + "codeIataAirport": "ZJV", + "codeIataCity": "ZJV", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2659172", + "latitudeAirport": 46.4955, + "longitudeAirport": 9.90126, + "nameAirport": "Pontresina Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9796, + "codeIataAirport": "ZJW", + "codeIataCity": "ZJW", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Rapperswil Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9797, + "codeIataAirport": "ZJX", + "codeIataCity": "ZJX", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Harbour (Eolie Island)", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "airportId": 9798, + "codeIataAirport": "ZJY", + "codeIataCity": "ZJY", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "3170189", + "latitudeAirport": 40.8938, + "longitudeAirport": 12.9625, + "nameAirport": "Harbour", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "airportId": 9799, + "codeIataAirport": "ZJZ", + "codeIataCity": "ZJZ", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2658969", + "latitudeAirport": 47.478, + "longitudeAirport": 9.4903, + "nameAirport": "Rorschach Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9800, + "codeIataAirport": "ZKA", + "codeIataCity": "ZKA", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2658793", + "latitudeAirport": 47.04896, + "longitudeAirport": 9.44103, + "nameAirport": "Sargans Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "2", + "airportId": 9801, + "codeIataAirport": "ZKB", + "codeIataCity": "ZKB", + "codeIcaoAirport": "FLKY", + "codeIso2Country": "ZM", + "geonameId": "7730508", + "latitudeAirport": -8.522222, + "longitudeAirport": 30.659721, + "nameAirport": "Kasaba Bay", + "nameCountry": "Zambia", + "phone": "", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "1", + "airportId": 9802, + "codeIataAirport": "ZKC", + "codeIataCity": "ZKC", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2658786", + "latitudeAirport": 46.89851, + "longitudeAirport": 8.25068, + "nameAirport": "Sarnen Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "3", + "airportId": 9803, + "codeIataAirport": "ZKD", + "codeIataCity": "MOW", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "0", + "latitudeAirport": 55.755786, + "longitudeAirport": 37.617633, + "nameAirport": "Leningradskiy Railway", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-5", + "airportId": 9804, + "codeIataAirport": "ZKE", + "codeIataCity": "ZKE", + "codeIcaoAirport": "CZKE", + "codeIso2Country": "CA", + "geonameId": "7668160", + "latitudeAirport": 52.333332, + "longitudeAirport": -81.333336, + "nameAirport": "Kaschechewan", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "airportId": 9805, + "codeIataAirport": "ZKF", + "codeIataCity": "ZKF", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "St Margrethen Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "-4", + "airportId": 9806, + "codeIataAirport": "ZKG", + "codeIataCity": "ZKG", + "codeIcaoAirport": "CTK6", + "codeIso2Country": "CA", + "geonameId": "7910267", + "latitudeAirport": 50.18889, + "longitudeAirport": -61.291668, + "nameAirport": "Kegaska", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Blanc-Sablon" + }, + { + "GMT": "1", + "airportId": 9807, + "codeIataAirport": "ZKH", + "codeIataCity": "SMV", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 46.49305, + "longitudeAirport": 9.83606, + "nameAirport": "St Moritz Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9808, + "codeIataAirport": "ZKI", + "codeIataCity": "ZKI", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2658898", + "latitudeAirport": 46.10805, + "longitudeAirport": 7.92741, + "nameAirport": "Saas-Fee Bus Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9809, + "codeIataAirport": "ZKJ", + "codeIataCity": "ZKJ", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2658761", + "latitudeAirport": 47.69732, + "longitudeAirport": 8.63493, + "nameAirport": "Schaffhausen Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9810, + "codeIataAirport": "ZKK", + "codeIataCity": "ZKK", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2658665", + "latitudeAirport": 47.02076, + "longitudeAirport": 8.65414, + "nameAirport": "Schwyz Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "9", + "airportId": 9811, + "codeIataAirport": "ZKL", + "codeIataCity": "ZKL", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "0", + "latitudeAirport": -2.102778, + "longitudeAirport": 133.51666, + "nameAirport": "Steenkool", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "airportId": 9812, + "codeIataAirport": "ZKM", + "codeIataCity": "ZKM", + "codeIcaoAirport": "FOOS", + "codeIso2Country": "GA", + "geonameId": "7730529", + "latitudeAirport": -2.533333, + "longitudeAirport": 9.75, + "nameAirport": "Sette Cama", + "nameCountry": "Gabon", + "phone": "", + "timezone": "Africa/Libreville" + }, + { + "GMT": "1", + "airportId": 9813, + "codeIataAirport": "ZKN", + "codeIataCity": "SQW", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 56.563556, + "longitudeAirport": 9.032142, + "nameAirport": "Skive Railway Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 9814, + "codeIataAirport": "ZKO", + "codeIataCity": "ZKO", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Sierre/Siders Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9815, + "codeIataAirport": "ZKS", + "codeIataCity": "ZKS", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2658564", + "latitudeAirport": 47.20791, + "longitudeAirport": 7.53714, + "nameAirport": "Solothurn Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9816, + "codeIataAirport": "ZKU", + "codeIataCity": "ZKU", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2658440", + "latitudeAirport": 47.16667, + "longitudeAirport": 8.1, + "nameAirport": "Sursee Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9817, + "codeIataAirport": "ZKV", + "codeIataCity": "ZKV", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Thalwil Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9818, + "codeIataAirport": "ZKW", + "codeIataCity": "ZKW", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Wetzikon Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9819, + "codeIataAirport": "ZKX", + "codeIataCity": "ZKX", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2658209", + "latitudeAirport": 47.43813, + "longitudeAirport": 9.13922, + "nameAirport": "Uzwil Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9820, + "codeIataAirport": "ZKY", + "codeIataCity": "ZKY", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2658168", + "latitudeAirport": 46.09872, + "longitudeAirport": 7.21621, + "nameAirport": "Verbier Bus Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9821, + "codeIataAirport": "ZKZ", + "codeIataCity": "ZKZ", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2658145", + "latitudeAirport": 46.46299, + "longitudeAirport": 6.84345, + "nameAirport": "Vevey Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9822, + "codeIataAirport": "ZLA", + "codeIataCity": "ZLA", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2658126", + "latitudeAirport": 36.033333, + "longitudeAirport": 103.86667, + "nameAirport": "Villars-sur-Ollon Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9823, + "codeIataAirport": "ZLB", + "codeIataCity": "ZLB", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2658112", + "latitudeAirport": 46.2937, + "longitudeAirport": 7.88149, + "nameAirport": "Visp Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9824, + "codeIataAirport": "ZLC", + "codeIataCity": "ZLC", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Waedenswil Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9825, + "codeIataAirport": "ZLD", + "codeIataCity": "ZLD", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2658036", + "latitudeAirport": 40.2, + "longitudeAirport": 94.683334, + "nameAirport": "Weinfelden Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9826, + "codeIataAirport": "ZLE", + "codeIataCity": "ZLE", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2658020", + "latitudeAirport": 46.60542, + "longitudeAirport": 7.92171, + "nameAirport": "Wengen Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9827, + "codeIataAirport": "ZLF", + "codeIataCity": "ZLF", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2658011", + "latitudeAirport": 47.4705, + "longitudeAirport": 8.31636, + "nameAirport": "Wettingen Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9828, + "codeIataAirport": "ZLH", + "codeIataCity": "ZLH", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Wil Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9829, + "codeIataAirport": "ZLI", + "codeIataCity": "ZLI", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2657970", + "latitudeAirport": 47.5, + "longitudeAirport": 8.75, + "nameAirport": "Winterthur Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9830, + "codeIataAirport": "ZLJ", + "codeIataCity": "ZLJ", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2657941", + "latitudeAirport": 46.77852, + "longitudeAirport": 6.64115, + "nameAirport": "Yverdon-les-Bains Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "3", + "airportId": 9831, + "codeIataAirport": "ZLK", + "codeIataCity": "LED", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "0", + "latitudeAirport": 59.939039, + "longitudeAirport": 30.315785, + "nameAirport": "Moscovskiy Railway Stn", + "nameCountry": "Russia", + "phone": "", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "airportId": 9832, + "codeIataAirport": "ZLL", + "codeIataCity": "ZLL", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2657915", + "latitudeAirport": 36.05, + "longitudeAirport": 103.85, + "nameAirport": "Zofingen Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9833, + "codeIataAirport": "ZLM", + "codeIataCity": "ZLM", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2657908", + "latitudeAirport": 47.17242, + "longitudeAirport": 8.51744, + "nameAirport": "Zug Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9834, + "codeIataAirport": "ZLN", + "codeIataCity": "LME", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 48.00611, + "longitudeAirport": 0.199556, + "nameAirport": "Le Mans Railway Station", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "airportId": 9835, + "codeIataAirport": "ZLO", + "codeIataCity": "ZLO", + "codeIcaoAirport": "MMZO", + "codeIso2Country": "MX", + "geonameId": "6299885", + "latitudeAirport": 19.113333, + "longitudeAirport": -104.350555, + "nameAirport": "Manzanillo", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "1", + "airportId": 9836, + "codeIataAirport": "ZLP", + "codeIataCity": "ZRH", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 47.367347, + "longitudeAirport": 8.5500025, + "nameAirport": "HB Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9837, + "codeIataAirport": "ZLQ", + "codeIataCity": "ZRH", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "0", + "latitudeAirport": 47.367347, + "longitudeAirport": 8.5500025, + "nameAirport": "Oerlikon Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "0", + "airportId": 9838, + "codeIataAirport": "ZLS", + "codeIataCity": "LON", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 51.51, + "longitudeAirport": 0.06, + "nameAirport": "Liverpool St Rail Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-4", + "airportId": 9839, + "codeIataAirport": "ZLT", + "codeIataCity": "ZLT", + "codeIcaoAirport": "CTU5", + "codeIso2Country": "CA", + "geonameId": "7730455", + "latitudeAirport": 50.828056, + "longitudeAirport": -58.97601, + "nameAirport": "La Tabatiere", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Blanc-Sablon" + }, + { + "GMT": "1", + "airportId": 9840, + "codeIataAirport": "ZLU", + "codeIataCity": "ZLU", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Ludwigslust Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "2", + "airportId": 9841, + "codeIataAirport": "ZLV", + "codeIataCity": "ZLV", + "codeIcaoAirport": "", + "codeIso2Country": "FI", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Luosto Bus Station", + "nameCountry": "Finland", + "phone": "", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "8", + "airportId": 9842, + "codeIataAirport": "ZLW", + "codeIataCity": "ZLW", + "codeIcaoAirport": "", + "codeIso2Country": "MY", + "geonameId": "1732722", + "latitudeAirport": 1.462, + "longitudeAirport": 103.9053, + "nameAirport": "Pasir Gudang Port", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "0", + "airportId": 9843, + "codeIataAirport": "ZLZ", + "codeIataCity": "LBA", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 37.568935, + "longitudeAirport": 105.15253, + "nameAirport": "Leeds Bus Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 9844, + "codeIataAirport": "ZMA", + "codeIataCity": "ZMA", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "2643097", + "latitudeAirport": 53.13333, + "longitudeAirport": -1.2, + "nameAirport": "Mansfield Bus Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 9845, + "codeIataAirport": "ZMB", + "codeIataCity": "HAM", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 53.553813, + "longitudeAirport": 9.991586, + "nameAirport": "Hamburg Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9846, + "codeIataAirport": "ZMC", + "codeIataCity": "ZMC", + "codeIcaoAirport": "", + "codeIso2Country": "PL", + "geonameId": "0", + "latitudeAirport": 48.13333, + "longitudeAirport": 114.9, + "nameAirport": "Miedzyzdroje Bus Station", + "nameCountry": "Poland", + "phone": "", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "-5", + "airportId": 9847, + "codeIataAirport": "ZMD", + "codeIataCity": "ZMD", + "codeIcaoAirport": "", + "codeIso2Country": "BR", + "geonameId": "8260768", + "latitudeAirport": -9.083333, + "longitudeAirport": -68.75, + "nameAirport": "Sena Madureira", + "nameCountry": "Brazil", + "phone": "", + "timezone": "America/Rio_Branco" + }, + { + "GMT": "-5", + "airportId": 9848, + "codeIataAirport": "ZME", + "codeIataCity": "EWR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Metropark Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 9849, + "codeIataAirport": "ZMF", + "codeIataCity": "NAP", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 40.8400969, + "longitudeAirport": 14.2516357, + "nameAirport": "Beverello Harbor", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-8", + "airportId": 9850, + "codeIataAirport": "ZMH", + "codeIataCity": "ZMH", + "codeIcaoAirport": "CZML", + "codeIso2Country": "CA", + "geonameId": "8261033", + "latitudeAirport": 51.745556, + "longitudeAirport": -121.339165, + "nameAirport": "108 Mile Ranch", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "airportId": 9851, + "codeIataAirport": "ZMI", + "codeIataCity": "NAP", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 40.8400969, + "longitudeAirport": 14.2516357, + "nameAirport": "Mergellina Railway", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "airportId": 9852, + "codeIataAirport": "ZMJ", + "codeIataCity": "NAP", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 40.8400969, + "longitudeAirport": 14.2516357, + "nameAirport": "Mergellina Harbour", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "8", + "airportId": 9853, + "codeIataAirport": "ZMK", + "codeIataCity": "ZMK", + "codeIcaoAirport": "", + "codeIso2Country": "MY", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Bintulu Port", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-6", + "airportId": 9854, + "codeIataAirport": "ZML", + "codeIataCity": "MKE", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 43.0387949, + "longitudeAirport": -87.9065334, + "nameAirport": "Milwaukee General Mitchell", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "airportId": 9855, + "codeIataAirport": "ZMM", + "codeIataCity": "ZMM", + "codeIcaoAirport": "", + "codeIso2Country": "MX", + "geonameId": "0", + "latitudeAirport": 19.983334, + "longitudeAirport": -102.26667, + "nameAirport": "Zamora", + "nameCountry": "Mexico", + "phone": "", + "timezone": "America/Mexico_City" + }, + { + "GMT": "1", + "airportId": 9856, + "codeIataAirport": "ZMO", + "codeIataCity": "ZMO", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "3173331", + "latitudeAirport": 44.64783, + "longitudeAirport": 10.92539, + "nameAirport": "Modena Bus Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "0", + "airportId": 9857, + "codeIataAirport": "ZMP", + "codeIataCity": "MAN", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 53.4807125, + "longitudeAirport": -2.2343765, + "nameAirport": "Manchester Bus Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 9858, + "codeIataAirport": "ZMQ", + "codeIataCity": "ZMQ", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3142228", + "latitudeAirport": 60.72638, + "longitudeAirport": 10.61718, + "nameAirport": "Raufoss Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9859, + "codeIataAirport": "ZMR", + "codeIataCity": "ZMR", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Merano/Meran Bus Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "airportId": 9860, + "codeIataAirport": "ZMS", + "codeIataCity": "FLR", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 45.13128, + "longitudeAirport": 110.17072, + "nameAirport": "S.M. Novella Rail.Svc", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-8", + "airportId": 9861, + "codeIataAirport": "ZMT", + "codeIataCity": "ZMT", + "codeIcaoAirport": "CZMT", + "codeIso2Country": "CA", + "geonameId": "7668164", + "latitudeAirport": 54.016666, + "longitudeAirport": -132.15, + "nameAirport": "Masset", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "airportId": 9862, + "codeIataAirport": "ZMU", + "codeIataCity": "MUC", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 47.85275, + "longitudeAirport": 106.76327, + "nameAirport": "Munich Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9863, + "codeIataAirport": "ZMW", + "codeIataCity": "ZMW", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "2623554", + "latitudeAirport": 55.93814, + "longitudeAirport": 9.12178, + "nameAirport": "Brande Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "airportId": 9864, + "codeIataAirport": "ZMX", + "codeIataCity": "ZMX", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3133498", + "latitudeAirport": 62.27594, + "longitudeAirport": 10.78241, + "nameAirport": "Tynset Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "8", + "airportId": 9865, + "codeIataAirport": "ZMY", + "codeIataCity": "ZMY", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 30.55, + "longitudeAirport": 116.43333, + "nameAirport": "Harbour", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 9866, + "codeIataAirport": "ZMZ", + "codeIataCity": "ZMZ", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3161474", + "latitudeAirport": 66.14908, + "longitudeAirport": 13.83622, + "nameAirport": "Bjerka Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-8", + "airportId": 9867, + "codeIataAirport": "ZNA", + "codeIataCity": "YCD", + "codeIcaoAirport": "CAC8", + "codeIso2Country": "CA", + "geonameId": "7730439", + "latitudeAirport": 49.05293, + "longitudeAirport": -123.87485, + "nameAirport": "Nanaimo Harbour", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "airportId": 9868, + "codeIataAirport": "ZNB", + "codeIataCity": "ZNB", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Hamm Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-9", + "airportId": 9869, + "codeIataAirport": "ZNC", + "codeIataCity": "ZNC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5870570", + "latitudeAirport": 61.0, + "longitudeAirport": -160.0, + "nameAirport": "Nyac", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "airportId": 9870, + "codeIataAirport": "ZND", + "codeIataCity": "ZND", + "codeIcaoAirport": "DRZR", + "codeIso2Country": "NE", + "geonameId": "6296462", + "latitudeAirport": 13.779444, + "longitudeAirport": 8.983056, + "nameAirport": "Zinder", + "nameCountry": "Niger", + "phone": "", + "timezone": "Africa/Niamey" + }, + { + "GMT": "8", + "airportId": 9871, + "codeIataAirport": "ZNE", + "codeIataCity": "ZNE", + "codeIcaoAirport": "YNWM", + "codeIso2Country": "AU", + "geonameId": "7668751", + "latitudeAirport": -23.416517, + "longitudeAirport": 119.80137, + "nameAirport": "Newman", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "airportId": 9872, + "codeIataAirport": "ZNG", + "codeIataCity": "ZNG", + "codeIcaoAirport": "CZNG", + "codeIso2Country": "CA", + "geonameId": "7730046", + "latitudeAirport": 53.0, + "longitudeAirport": -97.26667, + "nameAirport": "Negginan", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "1", + "airportId": 9873, + "codeIataAirport": "ZNQ", + "codeIataCity": "IGS", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Ingolstadt Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-8", + "airportId": 9874, + "codeIataAirport": "ZNU", + "codeIataCity": "ZNU", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260873", + "latitudeAirport": 51.85, + "longitudeAirport": -127.86667, + "nameAirport": "Namu", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "airportId": 9875, + "codeIataAirport": "ZNV", + "codeIataCity": "ZNV", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Koblenz Bus Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9876, + "codeIataAirport": "ZNW", + "codeIataCity": "ZNW", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2877650", + "latitudeAirport": 48.03138, + "longitudeAirport": 12.18221, + "nameAirport": "Limburg Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "3", + "airportId": 9877, + "codeIataAirport": "ZNZ", + "codeIataCity": "ZNZ", + "codeIcaoAirport": "HTZA", + "codeIso2Country": "TZ", + "geonameId": "6297372", + "latitudeAirport": -6.218466, + "longitudeAirport": 39.221184, + "nameAirport": "Kisauni", + "nameCountry": "Tanzania", + "phone": "", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-8", + "airportId": 9878, + "codeIataAirport": "ZOF", + "codeIataCity": "ZOF", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "8260880", + "latitudeAirport": 52.36667, + "longitudeAirport": -127.7, + "nameAirport": "Ocean Falls", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "airportId": 9879, + "codeIataAirport": "ZOG", + "codeIataCity": "ZOG", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Lueneburg Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9880, + "codeIataAirport": "ZOM", + "codeIataCity": "ZOM", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Minden Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9881, + "codeIataAirport": "ZOO", + "codeIataCity": "ZOO", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Muelheim an der Ruhr Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-4", + "airportId": 9882, + "codeIataAirport": "ZOS", + "codeIataCity": "ZOS", + "codeIcaoAirport": "SCJO", + "codeIso2Country": "CL", + "geonameId": "7730165", + "latitudeAirport": -40.607777, + "longitudeAirport": -73.05556, + "nameAirport": "Cañal Bajo", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "1", + "airportId": 9883, + "codeIataAirport": "ZOY", + "codeIataCity": "ZOY", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Oberhausen Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9884, + "codeIataAirport": "ZPA", + "codeIataCity": "ZPA", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2857798", + "latitudeAirport": 48.47377, + "longitudeAirport": 7.94495, + "nameAirport": "Offenburg Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "airportId": 9885, + "codeIataAirport": "ZPB", + "codeIataCity": "ZPB", + "codeIcaoAirport": "CZPB", + "codeIso2Country": "CA", + "geonameId": "7668165", + "latitudeAirport": 53.890556, + "longitudeAirport": -92.195274, + "nameAirport": "Sachigo Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-4", + "airportId": 9886, + "codeIataAirport": "ZPC", + "codeIataCity": "ZPC", + "codeIcaoAirport": "SCPC", + "codeIso2Country": "CL", + "geonameId": "7668446", + "latitudeAirport": -39.76389, + "longitudeAirport": -71.63333, + "nameAirport": "Pucon", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "1", + "airportId": 9887, + "codeIataAirport": "ZPD", + "codeIataCity": "ZPD", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Oldenburg Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9888, + "codeIataAirport": "ZPE", + "codeIataCity": "FMO", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 52.0920702, + "longitudeAirport": 7.6105746, + "nameAirport": "Osnabrueck Hbf Rail Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9889, + "codeIataAirport": "ZPF", + "codeIataCity": "ZPF", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2855328", + "latitudeAirport": 48.5665, + "longitudeAirport": 13.43122, + "nameAirport": "Passau Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "airportId": 9890, + "codeIataAirport": "ZPH", + "codeIataCity": "ZPH", + "codeIcaoAirport": "KZPH", + "codeIso2Country": "US", + "geonameId": "4178944", + "latitudeAirport": 28.233334, + "longitudeAirport": -82.183334, + "nameAirport": "Zephyrhills", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 9891, + "codeIataAirport": "ZPL", + "codeIataCity": "ZPL", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 24.40528, + "longitudeAirport": 98.5319, + "nameAirport": "Recklinghausen Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9892, + "codeIataAirport": "ZPM", + "codeIataCity": "ZPM", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2849483", + "latitudeAirport": 49.015, + "longitudeAirport": 12.09556, + "nameAirport": "Regensburg Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "airportId": 9893, + "codeIataAirport": "ZPO", + "codeIataCity": "ZPO", + "codeIcaoAirport": "CZPO", + "codeIso2Country": "CA", + "geonameId": "8260884", + "latitudeAirport": 55.516666, + "longitudeAirport": -106.583336, + "nameAirport": "Pine House", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "1", + "airportId": 9894, + "codeIataAirport": "ZPY", + "codeIataCity": "ZPY", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2832521", + "latitudeAirport": 50.80019, + "longitudeAirport": 7.20769, + "nameAirport": "Siegburg Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9895, + "codeIataAirport": "ZQF", + "codeIataCity": "ZQF", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2821164", + "latitudeAirport": 49.864, + "longitudeAirport": 6.787, + "nameAirport": "Fohren", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "12", + "airportId": 9896, + "codeIataAirport": "ZQN", + "codeIataCity": "ZQN", + "codeIcaoAirport": "NZQN", + "codeIso2Country": "NZ", + "geonameId": "6206225", + "latitudeAirport": -45.022038, + "longitudeAirport": 168.7391, + "nameAirport": "Queenstown", + "nameCountry": "New Zealand", + "phone": "", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-8", + "airportId": 9897, + "codeIataAirport": "ZQS", + "codeIataCity": "ZQS", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 53.0, + "longitudeAirport": -132.0, + "nameAirport": "Queen Charlotte Island", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "airportId": 9898, + "codeIataAirport": "ZQU", + "codeIataCity": "BWE", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 52.2641478, + "longitudeAirport": 10.5263803, + "nameAirport": "Wolfsburg Rail Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9899, + "codeIataAirport": "ZQV", + "codeIataCity": "ZQV", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2806142", + "latitudeAirport": 49.63278, + "longitudeAirport": 8.35916, + "nameAirport": "Worms Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9900, + "codeIataAirport": "ZQY", + "codeIataCity": "ZQY", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Giessen Bus Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "airportId": 9901, + "codeIataAirport": "ZQZ", + "codeIataCity": "ZQZ", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "8298673", + "latitudeAirport": 40.7392, + "longitudeAirport": 114.931, + "nameAirport": "Zhangjiakou", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 9902, + "codeIataAirport": "ZRA", + "codeIataCity": "AIY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Atlantic City Railway Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 9903, + "codeIataAirport": "ZRB", + "codeIataCity": "FRA", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Frankfurt Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9904, + "codeIataAirport": "ZRC", + "codeIataCity": "ZRC", + "codeIcaoAirport": "", + "codeIso2Country": "ES", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "San Pedro de Alcantara Bus Station", + "nameCountry": "Spain", + "phone": "", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-5", + "airportId": 9905, + "codeIataAirport": "ZRD", + "codeIataCity": "RIC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 37.542979, + "longitudeAirport": -77.469092, + "nameAirport": "Richmond VA Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 9906, + "codeIataAirport": "ZRF", + "codeIataCity": "RMC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": -32.85, + "longitudeAirport": 24.1667, + "nameAirport": "Park & Ride Bus Svc", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "airportId": 9907, + "codeIataAirport": "ZRG", + "codeIataCity": "BTS", + "codeIcaoAirport": "", + "codeIso2Country": "SK", + "geonameId": "0", + "latitudeAirport": 48.17, + "longitudeAirport": 17.21, + "nameAirport": "Bratislava Bus Station", + "nameCountry": "Slovakia", + "phone": "", + "timezone": "Europe/Bratislava" + }, + { + "GMT": "1", + "airportId": 9908, + "codeIataAirport": "ZRH", + "codeIataCity": "ZRH", + "codeIcaoAirport": "LSZH", + "codeIso2Country": "CH", + "geonameId": "6299722", + "latitudeAirport": 47.450603, + "longitudeAirport": 8.561746, + "nameAirport": "Zurich", + "nameCountry": "Switzerland", + "phone": "+41 (0) 43 81", + "timezone": "Europe/Zurich" + }, + { + "GMT": "9", + "airportId": 9909, + "codeIataAirport": "ZRI", + "codeIataCity": "ZRI", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "1627453", + "latitudeAirport": -1.883333, + "longitudeAirport": 136.23334, + "nameAirport": "Serui", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-6", + "airportId": 9910, + "codeIataAirport": "ZRJ", + "codeIataCity": "ZRJ", + "codeIcaoAirport": "CZRJ", + "codeIso2Country": "CA", + "geonameId": "7730047", + "latitudeAirport": 52.95, + "longitudeAirport": -91.316666, + "nameAirport": "Round Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-6", + "airportId": 9911, + "codeIataAirport": "ZRK", + "codeIataCity": "RMC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": -32.85, + "longitudeAirport": 24.1667, + "nameAirport": "VanGalder Bus Termina", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 9912, + "codeIataAirport": "ZRL", + "codeIataCity": "LNS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.0378755, + "longitudeAirport": -76.3055144, + "nameAirport": "Lancaster Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "airportId": 9913, + "codeIataAirport": "ZRM", + "codeIataCity": "ZRM", + "codeIcaoAirport": "", + "codeIso2Country": "ID", + "geonameId": "8260732", + "latitudeAirport": -1.85, + "longitudeAirport": 138.75, + "nameAirport": "Sarmi", + "nameCountry": "Indonesia", + "phone": "", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "airportId": 9914, + "codeIataAirport": "ZRN", + "codeIataCity": "ZRN", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2659422", + "latitudeAirport": 46.38318, + "longitudeAirport": 6.23955, + "nameAirport": "Nyon Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "airportId": 9915, + "codeIataAirport": "ZRO", + "codeIataCity": "ZRO", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "3169522", + "latitudeAirport": 44.69825, + "longitudeAirport": 10.63125, + "nameAirport": "Reggio nell'Emilia Bus Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "airportId": 9916, + "codeIataAirport": "ZRP", + "codeIataCity": "EWR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Pennsylvania Railroad Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 9917, + "codeIataAirport": "ZRR", + "codeIataCity": "ZRR", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Harbour", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "airportId": 9918, + "codeIataAirport": "ZRS", + "codeIataCity": "ZRS", + "codeIcaoAirport": "", + "codeIso2Country": "AT", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Flexenpass Heliport", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "-5", + "airportId": 9919, + "codeIataAirport": "ZRT", + "codeIataCity": "HFD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.7637111, + "longitudeAirport": -72.6850932, + "nameAirport": "Hartford Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 9920, + "codeIataAirport": "ZRU", + "codeIataCity": "BOS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.3584308, + "longitudeAirport": -71.0597732, + "nameAirport": "Boston RT128 Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 9921, + "codeIataAirport": "ZRV", + "codeIataCity": "PVD", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.8239891, + "longitudeAirport": -71.4128343, + "nameAirport": "Providence Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 9922, + "codeIataAirport": "ZRW", + "codeIataCity": "ZRW", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2850257", + "latitudeAirport": 48.85851, + "longitudeAirport": 8.20964, + "nameAirport": "Rastatt Bus Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9923, + "codeIataAirport": "ZRX", + "codeIataCity": "IES", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 51.3001422, + "longitudeAirport": 13.3021036, + "nameAirport": "Riesa Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9924, + "codeIataAirport": "ZRY", + "codeIataCity": "ZRY", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "2620425", + "latitudeAirport": 56.13932, + "longitudeAirport": 8.97378, + "nameAirport": "Herning Bus Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-5", + "airportId": 9925, + "codeIataAirport": "ZRZ", + "codeIataCity": "WAS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.8951118, + "longitudeAirport": -77.0363658, + "nameAirport": "New Carrolton RR", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 9926, + "codeIataAirport": "ZSA", + "codeIataCity": "ZSA", + "codeIcaoAirport": "MYSM", + "codeIso2Country": "BS", + "geonameId": "6299942", + "latitudeAirport": 24.06, + "longitudeAirport": -74.53306, + "nameAirport": "San Salvador", + "nameCountry": "Bahamas", + "phone": "", + "timezone": "America/Nassau" + }, + { + "GMT": "1", + "airportId": 9927, + "codeIataAirport": "ZSB", + "codeIataCity": "SZG", + "codeIcaoAirport": "", + "codeIso2Country": "AT", + "geonameId": "0", + "latitudeAirport": 47.80949, + "longitudeAirport": 13.05501, + "nameAirport": "Salzburg Hbf Railway Station", + "nameCountry": "Austria", + "phone": "", + "timezone": "Europe/Vienna" + }, + { + "GMT": "1", + "airportId": 9928, + "codeIataAirport": "ZSC", + "codeIataCity": "ZSC", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Schoena Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9929, + "codeIataAirport": "ZSD", + "codeIataCity": "ZSD", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2835249", + "latitudeAirport": 53.43333, + "longitudeAirport": 10.68333, + "nameAirport": "Schwanheide Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "4", + "airportId": 9930, + "codeIataAirport": "ZSE", + "codeIataCity": "ZSE", + "codeIcaoAirport": "KZSE", + "codeIso2Country": "RE", + "geonameId": "6297035", + "latitudeAirport": -21.333332, + "longitudeAirport": 55.483334, + "nameAirport": "St Pierre dela Reunion", + "nameCountry": "Reunion", + "phone": "", + "timezone": "Indian/Reunion" + }, + { + "GMT": "1", + "airportId": 9931, + "codeIataAirport": "ZSG", + "codeIataCity": "ZSG", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Sonneberg Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-7", + "airportId": 9932, + "codeIataAirport": "ZSH", + "codeIataCity": "ZSH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "5490263", + "latitudeAirport": 30.236935, + "longitudeAirport": 120.43236, + "nameAirport": "Santa Fe Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "airportId": 9933, + "codeIataAirport": "ZSI", + "codeIataCity": "ZSI", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Sassnitz Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "airportId": 9934, + "codeIataAirport": "ZSJ", + "codeIataCity": "ZSJ", + "codeIcaoAirport": "CZSJ", + "codeIso2Country": "CA", + "geonameId": "7668166", + "latitudeAirport": 53.033333, + "longitudeAirport": -93.23333, + "nameAirport": "Sandy Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "1", + "airportId": 9935, + "codeIataAirport": "ZSK", + "codeIataCity": "ZSK", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2855337", + "latitudeAirport": 53.50627, + "longitudeAirport": 13.98997, + "nameAirport": "Pasewalk Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "0", + "airportId": 9936, + "codeIataAirport": "ZSL", + "codeIataCity": "SXL", + "codeIcaoAirport": "", + "codeIso2Country": "IE", + "geonameId": "0", + "latitudeAirport": 54.2706069, + "longitudeAirport": -8.4715279, + "nameAirport": "Sligo Bus Station", + "nameCountry": "Ireland", + "phone": "", + "timezone": "Europe/Dublin" + }, + { + "GMT": "-8", + "airportId": 9937, + "codeIataAirport": "ZSM", + "codeIataCity": "ZSM", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Santa Clara Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "airportId": 9938, + "codeIataAirport": "ZSN", + "codeIataCity": "ZSN", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2827479", + "latitudeAirport": 52.6069, + "longitudeAirport": 11.85867, + "nameAirport": "Stendal Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9939, + "codeIataAirport": "ZSO", + "codeIataCity": "ZSO", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2824948", + "latitudeAirport": 31.85, + "longitudeAirport": 117.28333, + "nameAirport": "Suhl Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "airportId": 9940, + "codeIataAirport": "ZSP", + "codeIataCity": "ZSP", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "0", + "latitudeAirport": 47.916668, + "longitudeAirport": -69.25, + "nameAirport": "St Paul", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "airportId": 9941, + "codeIataAirport": "ZSQ", + "codeIataCity": "ZSQ", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "2842112", + "latitudeAirport": 36.265884, + "longitudeAirport": 120.38236, + "nameAirport": "Salzwedel Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9942, + "codeIataAirport": "ZSR", + "codeIataCity": "SZW", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 53.625743, + "longitudeAirport": 11.416893, + "nameAirport": "Schwerin Hbf Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "0", + "airportId": 9943, + "codeIataAirport": "ZSS", + "codeIataCity": "ZSS", + "codeIcaoAirport": "DISS", + "codeIso2Country": "CI", + "geonameId": "6296443", + "latitudeAirport": 4.924444, + "longitudeAirport": -6.135556, + "nameAirport": "Sassandra", + "nameCountry": "", + "phone": "", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "-8", + "airportId": 9944, + "codeIataAirport": "ZST", + "codeIataCity": "ZST", + "codeIcaoAirport": "CZST", + "codeIso2Country": "CA", + "geonameId": "6296357", + "latitudeAirport": 55.933334, + "longitudeAirport": -129.98334, + "nameAirport": "Stewart", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "airportId": 9945, + "codeIataAirport": "ZSU", + "codeIataCity": "ZSU", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Dessau Railway", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "airportId": 9946, + "codeIataAirport": "ZSV", + "codeIataCity": "STL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.6270025, + "longitudeAirport": -90.1994042, + "nameAirport": "St Louis Railway Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "airportId": 9947, + "codeIataAirport": "ZSW", + "codeIataCity": "YPR", + "codeIcaoAirport": "CZSW", + "codeIso2Country": "CA", + "geonameId": "7668167", + "latitudeAirport": 54.333332, + "longitudeAirport": -130.28334, + "nameAirport": "Seal Cove", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "airportId": 9948, + "codeIataAirport": "ZSX", + "codeIataCity": "BBH", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 54.3630771, + "longitudeAirport": 12.7249198, + "nameAirport": "Stralsund Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-7", + "airportId": 9949, + "codeIataAirport": "ZSY", + "codeIataCity": "ZSY", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Scottsdale Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Phoenix" + }, + { + "GMT": "2", + "airportId": 9950, + "codeIataAirport": "ZSZ", + "codeIataCity": "SWP", + "codeIcaoAirport": "", + "codeIso2Country": "NA", + "geonameId": "0", + "latitudeAirport": -22.674101, + "longitudeAirport": 14.52784, + "nameAirport": "Swakopmund Railway Station", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-10", + "airportId": 9951, + "codeIataAirport": "ZTA", + "codeIataCity": "ZTA", + "codeIcaoAirport": "NTGY", + "codeIso2Country": "PF", + "geonameId": "7730701", + "latitudeAirport": -20.816668, + "longitudeAirport": -138.5, + "nameAirport": "Tureira", + "nameCountry": "French Polynesia", + "phone": "", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-4", + "airportId": 9952, + "codeIataAirport": "ZTB", + "codeIataCity": "ZTB", + "codeIcaoAirport": "CTB6", + "codeIso2Country": "CA", + "geonameId": "7730454", + "latitudeAirport": 50.716667, + "longitudeAirport": -59.333332, + "nameAirport": "Tete-a-La Baleine", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Blanc-Sablon" + }, + { + "GMT": "1", + "airportId": 9953, + "codeIataAirport": "ZTC", + "codeIataCity": "TRN", + "codeIcaoAirport": "", + "codeIso2Country": "IT", + "geonameId": "0", + "latitudeAirport": 45.0705621, + "longitudeAirport": 7.6866186, + "nameAirport": "Turin Bus Station", + "nameCountry": "Italy", + "phone": "", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "airportId": 9954, + "codeIataAirport": "ZTD", + "codeIataCity": "SCH", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.8142432, + "longitudeAirport": -73.9395687, + "nameAirport": "Schenectady Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 9955, + "codeIataAirport": "ZTE", + "codeIataCity": "ROC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 43.161, + "longitudeAirport": -77.611, + "nameAirport": "Rochester NY Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 9956, + "codeIataAirport": "ZTF", + "codeIataCity": "ZTF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Stamford Railway Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 9957, + "codeIataAirport": "ZTG", + "codeIataCity": "AAL", + "codeIcaoAirport": "", + "codeIso2Country": "DK", + "geonameId": "0", + "latitudeAirport": 57.028811, + "longitudeAirport": 9.917771, + "nameAirport": "Aalborg Railway Station", + "nameCountry": "Denmark", + "phone": "", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "2", + "airportId": 9958, + "codeIataAirport": "ZTH", + "codeIataCity": "ZTH", + "codeIcaoAirport": "LGZA", + "codeIso2Country": "GR", + "geonameId": "6299516", + "latitudeAirport": 37.755833, + "longitudeAirport": 20.888332, + "nameAirport": "Zakinthos International Airport", + "nameCountry": "Greece", + "phone": "", + "timezone": "Europe/Athens" + }, + { + "GMT": "8", + "airportId": 9959, + "codeIataAirport": "ZTI", + "codeIataCity": "ZTI", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "6973333", + "latitudeAirport": 22.81843, + "longitudeAirport": 113.66953, + "nameAirport": "Humen Port", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "airportId": 9960, + "codeIataAirport": "ZTJ", + "codeIataCity": "PCT", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.3487181, + "longitudeAirport": -74.6590472, + "nameAirport": "Princeton JT Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 9961, + "codeIataAirport": "ZTK", + "codeIataCity": "ZTK", + "codeIcaoAirport": "", + "codeIso2Country": "CH", + "geonameId": "2658377", + "latitudeAirport": 46.75118, + "longitudeAirport": 7.62166, + "nameAirport": "Thun Railway Station", + "nameCountry": "Switzerland", + "phone": "", + "timezone": "Europe/Zurich" + }, + { + "GMT": "-7", + "airportId": 9962, + "codeIataAirport": "ZTL", + "codeIataCity": "TEX", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 37.9374939, + "longitudeAirport": -107.8122852, + "nameAirport": "Telluride Bus Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "airportId": 9963, + "codeIataAirport": "ZTM", + "codeIataCity": "ZTM", + "codeIcaoAirport": "CZTM", + "codeIso2Country": "CA", + "geonameId": "7668168", + "latitudeAirport": 55.858665, + "longitudeAirport": -92.0864, + "nameAirport": "Shamattawa", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "airportId": 9964, + "codeIataAirport": "ZTN", + "codeIataCity": "PHL", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 39.952335, + "longitudeAirport": -75.163789, + "nameAirport": "Trenton RailwaySTN", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 9965, + "codeIataAirport": "ZTO", + "codeIataCity": "BOS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.3584308, + "longitudeAirport": -71.0597732, + "nameAirport": "Boston South Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "airportId": 9966, + "codeIataAirport": "ZTR", + "codeIataCity": "ZTR", + "codeIcaoAirport": "UKKV", + "codeIso2Country": "UA", + "geonameId": "8299599", + "latitudeAirport": 50.25, + "longitudeAirport": 28.65, + "nameAirport": "Zhitomir Airport", + "nameCountry": "Ukraine", + "phone": "", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-8", + "airportId": 9967, + "codeIataAirport": "ZTS", + "codeIataCity": "ZTS", + "codeIcaoAirport": "", + "codeIso2Country": "CA", + "geonameId": "6161139", + "latitudeAirport": 49.933334, + "longitudeAirport": -126.666664, + "nameAirport": "Tahsis", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "airportId": 9968, + "codeIataAirport": "ZTT", + "codeIataCity": "CBU", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 51.7607292, + "longitudeAirport": 14.3274885, + "nameAirport": "Cottbus Railway", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "4", + "airportId": 9969, + "codeIataAirport": "ZTU", + "codeIataCity": "ZTU", + "codeIcaoAirport": "UBBY", + "codeIso2Country": "AZ", + "geonameId": "8349590", + "latitudeAirport": 41.56166, + "longitudeAirport": 46.664787, + "nameAirport": "Zaqatala", + "nameCountry": "Azerbaijan", + "phone": "", + "timezone": "Asia/Baku" + }, + { + "GMT": "-6", + "airportId": 9970, + "codeIataAirport": "ZTV", + "codeIataCity": "ZTV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Sturtevant Railway Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "airportId": 9971, + "codeIataAirport": "ZTW", + "codeIataCity": "ZTW", + "codeIcaoAirport": "", + "codeIso2Country": "HK", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Tsuen Wan Railway Station", + "nameCountry": "Hong Kong", + "phone": "", + "timezone": "Asia/Hong_Kong" + }, + { + "GMT": "-5", + "airportId": 9972, + "codeIataAirport": "ZTY", + "codeIataCity": "BOS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.3584308, + "longitudeAirport": -71.0597732, + "nameAirport": "Boston BKBAY Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 9973, + "codeIataAirport": "ZTZ", + "codeIataCity": "ZTZ", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Chemnitz Railway", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "airportId": 9974, + "codeIataAirport": "ZUA", + "codeIataCity": "UCA", + "codeIcaoAirport": "ZUAL", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 32.103817, + "longitudeAirport": 80.054276, + "nameAirport": "Utica N Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 9975, + "codeIataAirport": "ZUC", + "codeIataCity": "ZUC", + "codeIcaoAirport": "CZUC", + "codeIso2Country": "CA", + "geonameId": "7668169", + "latitudeAirport": 49.5, + "longitudeAirport": -91.833336, + "nameAirport": "Ignace", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-4", + "airportId": 9976, + "codeIataAirport": "ZUD", + "codeIataCity": "ZUD", + "codeIcaoAirport": "SCAC", + "codeIso2Country": "CL", + "geonameId": "6453412", + "latitudeAirport": -42.0, + "longitudeAirport": -73.833336, + "nameAirport": "Ancud", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "-5", + "airportId": 9977, + "codeIataAirport": "ZUG", + "codeIataCity": "HAR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Harrisburg Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 9978, + "codeIataAirport": "ZUH", + "codeIataCity": "ZUH", + "codeIcaoAirport": "ZGUH", + "codeIso2Country": "CN", + "geonameId": "7668792", + "latitudeAirport": 22.011787, + "longitudeAirport": 113.3706, + "nameAirport": "Zhuhai Airport", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "airportId": 9979, + "codeIataAirport": "ZUI", + "codeIataCity": "ZUH", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 22.270715, + "longitudeAirport": 113.576726, + "nameAirport": "Jiuzhou Ferry Port", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "airportId": 9980, + "codeIataAirport": "ZUK", + "codeIataCity": "ZUK", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 30.1575, + "longitudeAirport": 101.73472, + "nameAirport": "Lake Cook Road Railway Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 9981, + "codeIataAirport": "ZUL", + "codeIataCity": "ZUL", + "codeIcaoAirport": "OEZL", + "codeIso2Country": "SA", + "geonameId": "7730742", + "latitudeAirport": 26.25, + "longitudeAirport": 44.833332, + "nameAirport": "Zilfi", + "nameCountry": "Saudi Arabia", + "phone": "", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-4", + "airportId": 9982, + "codeIataAirport": "ZUM", + "codeIataCity": "ZUM", + "codeIcaoAirport": "CZUM", + "codeIso2Country": "CA", + "geonameId": "6957320", + "latitudeAirport": 53.56278, + "longitudeAirport": -64.10917, + "nameAirport": "Churchill Falls", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-6", + "airportId": 9983, + "codeIataAirport": "ZUN", + "codeIataCity": "CHI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.8781136, + "longitudeAirport": -87.6297982, + "nameAirport": "Chicago Union Railway Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "airportId": 9984, + "codeIataAirport": "ZVA", + "codeIataCity": "ZVA", + "codeIcaoAirport": "", + "codeIso2Country": "MG", + "geonameId": "1059051", + "latitudeAirport": -19.5, + "longitudeAirport": 45.466667, + "nameAirport": "Miandrivazo", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "1", + "airportId": 9985, + "codeIataAirport": "ZVB", + "codeIataCity": "ZVB", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3159894", + "latitudeAirport": 60.88095, + "longitudeAirport": 10.93948, + "nameAirport": "Brumunddal Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-4", + "airportId": 9986, + "codeIataAirport": "ZVC", + "codeIataCity": "ZVC", + "codeIcaoAirport": "", + "codeIso2Country": "CL", + "geonameId": "3868158", + "latitudeAirport": -39.28569, + "longitudeAirport": -72.2279, + "nameAirport": "Villarrica Bus Station", + "nameCountry": "", + "phone": "", + "timezone": "America/Santiago" + }, + { + "GMT": "1", + "airportId": 9987, + "codeIataAirport": "ZVD", + "codeIataCity": "ZVD", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3159007", + "latitudeAirport": 59.09773, + "longitudeAirport": 9.05867, + "nameAirport": "Drangedal Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "airportId": 9988, + "codeIataAirport": "ZVE", + "codeIataCity": "HVN", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 41.3081527, + "longitudeAirport": -72.9281577, + "nameAirport": "New Haven Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 9989, + "codeIataAirport": "ZVG", + "codeIataCity": "ZVG", + "codeIcaoAirport": "", + "codeIso2Country": "AU", + "geonameId": "8224808", + "latitudeAirport": -17.866667, + "longitudeAirport": 127.583336, + "nameAirport": "Springvale", + "nameCountry": "Australia", + "phone": "", + "timezone": "Australia/Perth" + }, + { + "GMT": "4", + "airportId": 9990, + "codeIataAirport": "ZVH", + "codeIataCity": "AAN", + "codeIcaoAirport": "", + "codeIso2Country": "AE", + "geonameId": "0", + "latitudeAirport": 24.2075, + "longitudeAirport": 55.7447222, + "nameAirport": "EK Bus Station", + "nameCountry": "United Arab Emirates", + "phone": "", + "timezone": "Asia/Dubai" + }, + { + "GMT": "4", + "airportId": 9991, + "codeIataAirport": "ZVJ", + "codeIataCity": "AUH", + "codeIcaoAirport": "", + "codeIso2Country": "AE", + "geonameId": "0", + "latitudeAirport": 24.4666667, + "longitudeAirport": 54.3666667, + "nameAirport": "EK Bus Station", + "nameCountry": "United Arab Emirates", + "phone": "", + "timezone": "Asia/Dubai" + }, + { + "GMT": "7", + "airportId": 9992, + "codeIataAirport": "ZVK", + "codeIataCity": "ZVK", + "codeIcaoAirport": "VLSK", + "codeIso2Country": "LA", + "geonameId": "6301109", + "latitudeAirport": 16.553612, + "longitudeAirport": 104.7625, + "nameAirport": "Savannakhet", + "nameCountry": "Laos", + "phone": "", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "1", + "airportId": 9993, + "codeIataAirport": "ZVM", + "codeIataCity": "HAJ", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 52.3720683, + "longitudeAirport": 9.7356861, + "nameAirport": "Messe-BF Railway Servi", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9994, + "codeIataAirport": "ZVR", + "codeIataCity": "HAJ", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 52.3720683, + "longitudeAirport": 9.7356861, + "nameAirport": "Hanover Railway", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "3", + "airportId": 9995, + "codeIataAirport": "ZWA", + "codeIataCity": "ZWA", + "codeIcaoAirport": "FMND", + "codeIso2Country": "MG", + "geonameId": "6297044", + "latitudeAirport": -14.65, + "longitudeAirport": 49.61667, + "nameAirport": "Andapa", + "nameCountry": "Madagascar", + "phone": "", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-5", + "airportId": 9996, + "codeIataAirport": "ZWB", + "codeIataCity": "PHF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 36.9787588, + "longitudeAirport": -76.428003, + "nameAirport": "Williamsburg Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 9997, + "codeIataAirport": "ZWC", + "codeIataCity": "SVG", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 38.13333, + "longitudeAirport": 85.53333, + "nameAirport": "Stavanger Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 9998, + "codeIataAirport": "ZWD", + "codeIataCity": "ZWD", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Warnemuende Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 9999, + "codeIataAirport": "ZWE", + "codeIataCity": "ANR", + "codeIcaoAirport": "", + "codeIso2Country": "BE", + "geonameId": "0", + "latitudeAirport": 49.21516, + "longitudeAirport": 7.399708, + "nameAirport": "Antwerp Central Railway Station", + "nameCountry": "Belgium", + "phone": "", + "timezone": "Europe/Brussels" + }, + { + "GMT": "2", + "airportId": 10000, + "codeIataAirport": "ZWH", + "codeIataCity": "WDH", + "codeIcaoAirport": "", + "codeIso2Country": "NA", + "geonameId": "7730049", + "latitudeAirport": -22.558904, + "longitudeAirport": 17.082481, + "nameAirport": "Windhoek Railway Station", + "nameCountry": "Namibia", + "phone": "", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-5", + "airportId": 10001, + "codeIataAirport": "ZWI", + "codeIataCity": "ILG", + "codeIcaoAirport": "EDBI", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 50.730556, + "longitudeAirport": 12.544444, + "nameAirport": "Wilmington Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 10002, + "codeIataAirport": "ZWJ", + "codeIataCity": "ZWJ", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Haugastol Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "airportId": 10003, + "codeIataAirport": "ZWL", + "codeIataCity": "ZWL", + "codeIcaoAirport": "CZWL", + "codeIso2Country": "CA", + "geonameId": "7668170", + "latitudeAirport": 58.1, + "longitudeAirport": -103.183334, + "nameAirport": "Wollaston Lake", + "nameCountry": "Canada", + "phone": "", + "timezone": "America/Regina" + }, + { + "GMT": "1", + "airportId": 10004, + "codeIataAirport": "ZWM", + "codeIataCity": "ZWM", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Wismar Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 10005, + "codeIataAirport": "ZWN", + "codeIataCity": "ZWN", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 53.0, + "longitudeAirport": 11.75, + "nameAirport": "Wittenberge Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "airportId": 10006, + "codeIataAirport": "ZWP", + "codeIataCity": "PBI", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 26.7153424, + "longitudeAirport": -80.0533746, + "nameAirport": "West Palm Beach Railway Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "airportId": 10007, + "codeIataAirport": "ZWR", + "codeIataCity": "ZWR", + "codeIcaoAirport": "", + "codeIso2Country": "MY", + "geonameId": "0", + "latitudeAirport": 5.976474, + "longitudeAirport": 116.115777, + "nameAirport": "Kota Kinabalu Port", + "nameCountry": "Malaysia", + "phone": "", + "timezone": "Asia/Kuching" + }, + { + "GMT": "1", + "airportId": 10008, + "codeIataAirport": "ZWS", + "codeIataCity": "STR", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 39.534973, + "longitudeAirport": 76.01107, + "nameAirport": "Stuttgart Hauptbahnhof", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "airportId": 10009, + "codeIataAirport": "ZWT", + "codeIataCity": "ZWT", + "codeIcaoAirport": "", + "codeIso2Country": "DE", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Lutherstadt Wittenberg Railway Station", + "nameCountry": "Germany", + "phone": "", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "airportId": 10010, + "codeIataAirport": "ZWU", + "codeIataCity": "WAS", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 38.8951118, + "longitudeAirport": -77.0363658, + "nameAirport": "Washington Union Railway Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "airportId": 10011, + "codeIataAirport": "ZWV", + "codeIataCity": "ZWV", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Glenview Railway Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "airportId": 10012, + "codeIataAirport": "ZWW", + "codeIataCity": "PHF", + "codeIcaoAirport": "ZWWW", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 43.90126, + "longitudeAirport": 87.47515, + "nameAirport": "Newport News Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "airportId": 10013, + "codeIataAirport": "ZXA", + "codeIataCity": "ABZ", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 57.1474915, + "longitudeAirport": -2.095397, + "nameAirport": "Aberdeen Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "airportId": 10014, + "codeIataAirport": "ZXE", + "codeIataCity": "EDI", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 55.9501755, + "longitudeAirport": -3.1875359, + "nameAirport": "Waverley Railway Station", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "airportId": 10015, + "codeIataAirport": "ZXM", + "codeIataCity": "ZXM", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3141548", + "latitudeAirport": 67.09528, + "longitudeAirport": 15.38778, + "nameAirport": "Rognan Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 10016, + "codeIataAirport": "ZXO", + "codeIataCity": "ZXO", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Fauske Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "0", + "airportId": 10017, + "codeIataAirport": "ZXP", + "codeIataCity": "PSL", + "codeIcaoAirport": "", + "codeIso2Country": "GB", + "geonameId": "0", + "latitudeAirport": 56.4094132, + "longitudeAirport": -3.447528, + "nameAirport": "ScotRailway", + "nameCountry": "United Kingdom", + "phone": "", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "airportId": 10018, + "codeIataAirport": "ZXS", + "codeIataCity": "BUF", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 42.8864468, + "longitudeAirport": -78.8783689, + "nameAirport": "Exchangest Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "4", + "airportId": 10019, + "codeIataAirport": "ZXT", + "codeIataCity": "BAK", + "codeIcaoAirport": "", + "codeIso2Country": "AZ", + "geonameId": "0", + "latitudeAirport": 40.485, + "longitudeAirport": 49.983612, + "nameAirport": "Heydar Aliyev", + "nameCountry": "Azerbaijan", + "phone": "", + "timezone": "Asia/Baku" + }, + { + "GMT": "1", + "airportId": 10020, + "codeIataAirport": "ZXU", + "codeIataCity": "ZXU", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Rygge Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 10021, + "codeIataAirport": "ZXX", + "codeIataCity": "ZXX", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Rade Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 10022, + "codeIataAirport": "ZXY", + "codeIataCity": "HAG", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Holland Spoor Rail Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "4", + "airportId": 10023, + "codeIataAirport": "ZXZ", + "codeIataCity": "DXB", + "codeIcaoAirport": "", + "codeIso2Country": "AE", + "geonameId": "0", + "latitudeAirport": 25.2644444, + "longitudeAirport": 55.3116667, + "nameAirport": "Jumeirah Beach Bus Station", + "nameCountry": "United Arab Emirates", + "phone": "", + "timezone": "Asia/Dubai" + }, + { + "GMT": "1", + "airportId": 10024, + "codeIataAirport": "ZYA", + "codeIataCity": "AMS", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "0", + "latitudeAirport": 52.3730556, + "longitudeAirport": 4.8922222, + "nameAirport": "Amsterdam Centraal Railway Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "0", + "airportId": 10025, + "codeIataAirport": "ZYD", + "codeIataCity": "LIS", + "codeIcaoAirport": "", + "codeIso2Country": "PT", + "geonameId": "0", + "latitudeAirport": 40.032368, + "longitudeAirport": 124.28081, + "nameAirport": "Lisbon TP", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "1", + "airportId": 10026, + "codeIataAirport": "ZYE", + "codeIataCity": "EIN", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "0", + "latitudeAirport": 51.441642, + "longitudeAirport": 5.4697225, + "nameAirport": "Eindhoven Railway Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "0", + "airportId": 10027, + "codeIataAirport": "ZYF", + "codeIataCity": "FAO", + "codeIcaoAirport": "", + "codeIso2Country": "PT", + "geonameId": "0", + "latitudeAirport": 37.0153597, + "longitudeAirport": -7.935113, + "nameAirport": "Faro TP", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "1", + "airportId": 10028, + "codeIataAirport": "ZYG", + "codeIataCity": "ZYG", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Gjovik Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 10029, + "codeIataAirport": "ZYH", + "codeIataCity": "HAG", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "0", + "latitudeAirport": 45.620853, + "longitudeAirport": 126.23644, + "nameAirport": "The Hague Centraal Railway Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "8", + "airportId": 10030, + "codeIataAirport": "ZYI", + "codeIataCity": "ZYI", + "codeIcaoAirport": "ZUZY", + "codeIso2Country": "CN", + "geonameId": "8260946", + "latitudeAirport": 27.666668, + "longitudeAirport": 106.833336, + "nameAirport": "Zunyi", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "0", + "airportId": 10031, + "codeIataAirport": "ZYJ", + "codeIataCity": "OPO", + "codeIcaoAirport": "", + "codeIso2Country": "PT", + "geonameId": "0", + "latitudeAirport": 41.149968, + "longitudeAirport": -8.6102426, + "nameAirport": "Porto TP Bus Station", + "nameCountry": "Portugal", + "phone": "", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "8", + "airportId": 10032, + "codeIataAirport": "ZYK", + "codeIataCity": "ZYK", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Shekou Ferry Port", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "6", + "airportId": 10033, + "codeIataAirport": "ZYL", + "codeIataCity": "ZYL", + "codeIcaoAirport": "VGSY", + "codeIso2Country": "BD", + "geonameId": "6301086", + "latitudeAirport": 24.957598, + "longitudeAirport": 91.870476, + "nameAirport": "Osmani International", + "nameCountry": "Bangladesh", + "phone": "", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "1", + "airportId": 10034, + "codeIataAirport": "ZYM", + "codeIataCity": "ZYM", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "2759661", + "latitudeAirport": 51.98, + "longitudeAirport": 5.91111, + "nameAirport": "Arnhem Railway Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "airportId": 10035, + "codeIataAirport": "ZYN", + "codeIataCity": "FNI", + "codeIcaoAirport": "", + "codeIso2Country": "FR", + "geonameId": "0", + "latitudeAirport": 43.836699, + "longitudeAirport": 4.360054, + "nameAirport": "Railway", + "nameCountry": "France", + "phone": "", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "airportId": 10036, + "codeIataAirport": "ZYO", + "codeIataCity": "ZYO", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "2747930", + "latitudeAirport": 51.53083, + "longitudeAirport": 4.46528, + "nameAirport": "Roosendaal Railway Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "-5", + "airportId": 10037, + "codeIataAirport": "ZYP", + "codeIataCity": "NYC", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 40.7143528, + "longitudeAirport": -74.0059731, + "nameAirport": "Penn Railway Station", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "airportId": 10038, + "codeIataAirport": "ZYQ", + "codeIataCity": "SYR", + "codeIcaoAirport": "", + "codeIso2Country": "US", + "geonameId": "0", + "latitudeAirport": 43.0481221, + "longitudeAirport": -76.1474244, + "nameAirport": "Syracuse Railway", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "airportId": 10039, + "codeIataAirport": "ZYR", + "codeIataCity": "BRU", + "codeIcaoAirport": "", + "codeIso2Country": "BE", + "geonameId": "0", + "latitudeAirport": -1.0, + "longitudeAirport": -1.0, + "nameAirport": "Midi Railway Station", + "nameCountry": "Belgium", + "phone": "", + "timezone": "Europe/Brussels" + }, + { + "GMT": "1", + "airportId": 10040, + "codeIataAirport": "ZYS", + "codeIataCity": "ZYS", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "3140390", + "latitudeAirport": 59.13118, + "longitudeAirport": 10.21665, + "nameAirport": "Sandefjord Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 10041, + "codeIataAirport": "ZYT", + "codeIataCity": "MST", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "0", + "latitudeAirport": 50.8513682, + "longitudeAirport": 5.6909725, + "nameAirport": "Maastricht Railway Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "airportId": 10042, + "codeIataAirport": "ZYU", + "codeIataCity": "UTC", + "codeIcaoAirport": "", + "codeIso2Country": "NL", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Utrecht Centraal Railway Station", + "nameCountry": "Netherlands", + "phone": "", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "airportId": 10043, + "codeIataAirport": "ZYV", + "codeIataCity": "ZYV", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Vegarshei Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 10044, + "codeIataAirport": "ZYW", + "codeIataCity": "ZYW", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 0.0, + "longitudeAirport": 0.0, + "nameAirport": "Sandvika Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "8", + "airportId": 10045, + "codeIataAirport": "ZYX", + "codeIataCity": "SZX", + "codeIcaoAirport": "", + "codeIso2Country": "CN", + "geonameId": "0", + "latitudeAirport": 22.543099, + "longitudeAirport": 114.057868, + "nameAirport": "Yantian Ferry Port", + "nameCountry": "China", + "phone": "", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "airportId": 10046, + "codeIataAirport": "ZYY", + "codeIataCity": "ZYY", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 42.885662, + "longitudeAirport": 129.43936, + "nameAirport": "Marnardal Railway Station", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "airportId": 10047, + "codeIataAirport": "ZYZ", + "codeIataCity": "ANR", + "codeIcaoAirport": "", + "codeIso2Country": "BE", + "geonameId": "0", + "latitudeAirport": 51.21992, + "longitudeAirport": 4.39625, + "nameAirport": "Berchem Railway", + "nameCountry": "Belgium", + "phone": "", + "timezone": "Europe/Brussels" + }, + { + "GMT": "1", + "airportId": 10048, + "codeIataAirport": "ZZN", + "codeIataCity": "OSL", + "codeIcaoAirport": "", + "codeIso2Country": "NO", + "geonameId": "0", + "latitudeAirport": 59.9138688, + "longitudeAirport": 10.7522454, + "nameAirport": "Nationaltheatret RailS", + "nameCountry": "Norway", + "phone": "", + "timezone": "Europe/Oslo" + }, + { + "GMT": "11", + "airportId": 10049, + "codeIataAirport": "ZZO", + "codeIataCity": "ZZO", + "codeIcaoAirport": "", + "codeIso2Country": "RU", + "geonameId": "8260765", + "latitudeAirport": 50.666668, + "longitudeAirport": 142.75, + "nameAirport": "Zonalnoye", + "nameCountry": "Russia", + "phone": "", + "timezone": "Asia/Sakhalin" + }, + { + "GMT": "2", + "airportId": 10050, + "codeIataAirport": "ZZU", + "codeIataCity": "ZZU", + "codeIcaoAirport": "FWUU", + "codeIso2Country": "MW", + "geonameId": "6297127", + "latitudeAirport": -11.442778, + "longitudeAirport": 34.01278, + "nameAirport": "Mzuzu", + "nameCountry": "Malawi", + "phone": "", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "-5", + "airportId": 10051, + "codeIataAirport": "ZZV", + "codeIataCity": "ZZV", + "codeIcaoAirport": "KZZV", + "codeIso2Country": "US", + "geonameId": "4528929", + "latitudeAirport": 39.933334, + "longitudeAirport": -82.01667, + "nameAirport": "Zanesville", + "nameCountry": "United States", + "phone": "", + "timezone": "America/New_York" + }, + { + "GMT": "5:30", + "airportId": 10052, + "codeIataAirport": "CNN", + "codeIataCity": null, + "codeIcaoAirport": "VOKN", + "codeIso2Country": "IN", + "geonameId": null, + "latitudeAirport": 11.915858, + "longitudeAirport": 75.55094, + "nameAirport": "Kannur International Airport", + "nameCountry": "India", + "phone": null, + "timezone": "Asia/Kolkata" + }, + { + "GMT": null, + "airportId": 10053, + "codeIataAirport": "PKX", + "codeIataCity": "PEK", + "codeIcaoAirport": "ZBAD", + "codeIso2Country": "CN", + "geonameId": null, + "latitudeAirport": 39.5092, + "longitudeAirport": 116.411, + "nameAirport": "Beijing Daxing International Airport", + "nameCountry": "Beijing", + "phone": "010-96158", + "timezone": "+8" + }, + { + "GMT": null, + "airportId": 10054, + "codeIataAirport": "BER", + "codeIataCity": "SXF", + "codeIcaoAirport": "EDDB", + "codeIso2Country": "DE", + "geonameId": null, + "latitudeAirport": 52.3667, + "longitudeAirport": 13.502, + "nameAirport": "Berlin Brandenburg Airport", + "nameCountry": "Berlin", + "phone": "+49 30 6091 6091 0", + "timezone": "+1" + }, + { + "GMT": "8", + "airportId": 10341, + "codeIataAirport": "AAP", + "codeIataCity": null, + "codeIcaoAirport": "WALS", + "codeIso2Country": "ID", + "geonameId": "11749267", + "latitudeAirport": -0.374448, + "longitudeAirport": 117.249392, + "nameAirport": "Aji Pangeran Tumenggung Pranoto International Airport", + "nameCountry": "Indonesia", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10342, + "codeIataAirport": "AHJ", + "codeIataCity": null, + "codeIcaoAirport": "ZUHY", + "codeIso2Country": "CN", + "geonameId": "8521741", + "latitudeAirport": 32.53154, + "longitudeAirport": 102.35224, + "nameAirport": "Aba Hongyuan Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10343, + "codeIataAirport": "AXF", + "codeIataCity": null, + "codeIcaoAirport": "ZBAL", + "codeIso2Country": "MN", + "geonameId": null, + "latitudeAirport": 38.74831, + "longitudeAirport": 105.58858, + "nameAirport": "Alxa Left Banner Bayanhot Airport", + "nameCountry": "Mongolia", + "phone": null, + "timezone": null + }, + { + "GMT": "9", + "airportId": 10344, + "codeIataAirport": "AXJ", + "codeIataCity": null, + "codeIcaoAirport": "RJDA", + "codeIso2Country": "JP", + "geonameId": "8520859", + "latitudeAirport": 32.482498, + "longitudeAirport": 130.158997, + "nameAirport": "Amakusa Airfield\r\n", + "nameCountry": "Japan", + "phone": null, + "timezone": null + }, + { + "GMT": "10", + "airportId": 10345, + "codeIataAirport": "BBL", + "codeIataCity": null, + "codeIcaoAirport": "YLLE", + "codeIso2Country": "AU", + "geonameId": "8533832", + "latitudeAirport": -27.405633, + "longitudeAirport": 141.809458, + "nameAirport": "Ballera Airport\r\n", + "nameCountry": "Australia", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10346, + "codeIataAirport": "BFJ", + "codeIataCity": null, + "codeIcaoAirport": "ZUBJ", + "codeIso2Country": "CN", + "geonameId": "8426217", + "latitudeAirport": 27.267066, + "longitudeAirport": 105.472097, + "nameAirport": "Bijie Feixiong AirportYCV\r\n", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "5", + "airportId": 10347, + "codeIataAirport": "BKN", + "codeIataCity": null, + "codeIcaoAirport": "UT1H", + "codeIso2Country": null, + "geonameId": "8581504", + "latitudeAirport": 39.481389, + "longitudeAirport": 54.362778, + "nameAirport": "Balkanabat Airport", + "nameCountry": "Turkmenistan", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10348, + "codeIataAirport": "BPN", + "codeIataCity": null, + "codeIcaoAirport": "WALL", + "codeIso2Country": "ID", + "geonameId": "7668668", + "latitudeAirport": -1.2682700157, + "longitudeAirport": 116.893997192, + "nameAirport": "Sultan Aji Muhamad Sulaiman Airport\r\n", + "nameCountry": "Indonesia", + "phone": null, + "timezone": null + }, + { + "GMT": "6", + "airportId": 10349, + "codeIataAirport": "BUT", + "codeIataCity": null, + "codeIcaoAirport": "VQBT", + "codeIso2Country": "BT", + "geonameId": "8531844", + "latitudeAirport": 27.5622, + "longitudeAirport": 90.7471, + "nameAirport": "Bathpalathang Airport\r\n", + "nameCountry": "Bhutan", + "phone": null, + "timezone": null + }, + { + "GMT": "7", + "airportId": 10350, + "codeIataAirport": "BUU", + "codeIataCity": null, + "codeIcaoAirport": "WIPI", + "codeIso2Country": "ID", + "geonameId": "11951798", + "latitudeAirport": -1.1278, + "longitudeAirport": 102.135, + "nameAirport": "Muara Bungo Airport\r\n", + "nameCountry": "Indonesia", + "phone": null, + "timezone": null + }, + { + "GMT": "3", + "airportId": 10351, + "codeIataAirport": "BVJ", + "codeIataCity": null, + "codeIcaoAirport": "LTFE", + "codeIso2Country": "TR", + "geonameId": "6299771", + "latitudeAirport": 37.25059, + "longitudeAirport": 27.6643, + "nameAirport": "Milas–Bodrum Airport\r\n", + "nameCountry": "Turkey", + "phone": null, + "timezone": null + }, + { + "GMT": "7", + "airportId": 10352, + "codeIataAirport": "BWX", + "codeIataCity": null, + "codeIcaoAirport": "WARB", + "codeIso2Country": "ID", + "geonameId": "8531789", + "latitudeAirport": -8.31015, + "longitudeAirport": 114.3401, + "nameAirport": "Blimbingsari Airport\r\n", + "nameCountry": "Indonesia", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10353, + "codeIataAirport": "BYP", + "codeIataCity": null, + "codeIcaoAirport": "YBRY", + "codeIso2Country": "AU", + "geonameId": "8555592", + "latitudeAirport": -22.6739006042, + "longitudeAirport": 119.1660003662, + "nameAirport": "Barimunya Airport\r\n", + "nameCountry": "Australia", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10354, + "codeIataAirport": "BZX", + "codeIataCity": null, + "codeIcaoAirport": "ZUBZ", + "codeIso2Country": "CN", + "geonameId": "11995099", + "latitudeAirport": 31.738, + "longitudeAirport": 106.64513, + "nameAirport": "Bazhong Enyang Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10355, + "codeIataAirport": "CCC", + "codeIataCity": null, + "codeIcaoAirport": "MUCC", + "codeIso2Country": "CU", + "geonameId": "8520847", + "latitudeAirport": 22.4610004425, + "longitudeAirport": -78.3283996582, + "nameAirport": "Jardines Del Rey Airport\r\n", + "nameCountry": "Cuba", + "phone": null, + "timezone": null + }, + { + "GMT": "-7", + "airportId": 10356, + "codeIataAirport": "CFM", + "codeIataCity": null, + "codeIcaoAirport": null, + "codeIso2Country": "CA", + "geonameId": null, + "latitudeAirport": 55.695301, + "longitudeAirport": -111.278999, + "nameAirport": "Conklin (Leismer) Airport\r\n", + "nameCountry": "Canada", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10357, + "codeIataAirport": "CJF", + "codeIataCity": null, + "codeIcaoAirport": "YCWA", + "codeIso2Country": "AU", + "geonameId": "8555599", + "latitudeAirport": -22.9666996002, + "longitudeAirport": 118.81300354, + "nameAirport": "Coondewanna Airport\r\n", + "nameCountry": "Australia", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10358, + "codeIataAirport": "CQM", + "codeIataCity": null, + "codeIcaoAirport": "LERL", + "codeIso2Country": "ES", + "geonameId": "6452899", + "latitudeAirport": 38.8563888889, + "longitudeAirport": -3.97, + "nameAirport": "Ciudad Real Central Airport\r\n", + "nameCountry": "Spain", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10359, + "codeIataAirport": "CSG", + "codeIataCity": null, + "codeIcaoAirport": "KCSG", + "codeIso2Country": "US", + "geonameId": "4188990", + "latitudeAirport": 32.5163002014, + "longitudeAirport": -84.9389038086, + "nameAirport": "Columbus Metropolitan Airport\r\n", + "nameCountry": "United States\r\n", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10360, + "codeIataAirport": "CWJ", + "codeIataCity": null, + "codeIcaoAirport": "ZPCW", + "codeIso2Country": "CN", + "geonameId": "11184550", + "latitudeAirport": 23.273889, + "longitudeAirport": 99.373611, + "nameAirport": "Cangyuan Washan Airport\r\n", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10361, + "codeIataAirport": "DBC", + "codeIataCity": null, + "codeIcaoAirport": "ZYBA", + "codeIso2Country": "CN", + "geonameId": "11101506", + "latitudeAirport": 45.505278, + "longitudeAirport": 123.019722, + "nameAirport": "Baicheng Chang'an Airport\r\n", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "5.3", + "airportId": 10362, + "codeIataAirport": "DBR", + "codeIataCity": null, + "codeIcaoAirport": "VE89", + "codeIso2Country": "IN", + "geonameId": null, + "latitudeAirport": 26.1936, + "longitudeAirport": 85.919403, + "nameAirport": "Darbhanga Airport", + "nameCountry": "India", + "phone": null, + "timezone": null + }, + { + "GMT": "5", + "airportId": 10363, + "codeIataAirport": "DDD", + "codeIataCity": null, + "codeIcaoAirport": "VRMU", + "codeIso2Country": "MV", + "geonameId": "11524617", + "latitudeAirport": 2.666075, + "longitudeAirport": 72.887118, + "nameAirport": "Dhaalu Airport", + "nameCountry": "Maldives", + "phone": null, + "timezone": null + }, + { + "GMT": "9", + "airportId": 10364, + "codeIataAirport": "DEX", + "codeIataCity": null, + "codeIcaoAirport": "WAVD", + "codeIso2Country": "ID", + "geonameId": null, + "latitudeAirport": -4.8557, + "longitudeAirport": 139.482006, + "nameAirport": "Nop Goliat Airport\r\n", + "nameCountry": "Indonesia", + "phone": null, + "timezone": null + }, + { + "GMT": "0", + "airportId": 10365, + "codeIataAirport": "DGX", + "codeIataCity": null, + "codeIcaoAirport": "EGSY", + "codeIso2Country": "GB", + "geonameId": null, + "latitudeAirport": null, + "longitudeAirport": null, + "nameAirport": "St. Athan Airport", + "nameCountry": "United Kingdom", + "phone": null, + "timezone": null + }, + { + "GMT": "4", + "airportId": 10366, + "codeIataAirport": "DQM", + "codeIataCity": null, + "codeIcaoAirport": "OODQ", + "codeIso2Country": "OM", + "geonameId": "8394117", + "latitudeAirport": 19.501944, + "longitudeAirport": 57.634167, + "nameAirport": "Duqm International Airport\r\n", + "nameCountry": "Oman", + "phone": null, + "timezone": null + }, + { + "GMT": "0", + "airportId": 10367, + "codeIataAirport": "DSS", + "codeIataCity": null, + "codeIcaoAirport": "GOBD", + "codeIso2Country": "SN", + "geonameId": "7732976", + "latitudeAirport": 14.67, + "longitudeAirport": -17.073333, + "nameAirport": "Blaise Diagne International Airport\r\n", + "nameCountry": "Senegal", + "phone": null, + "timezone": null + }, + { + "GMT": "7", + "airportId": 10368, + "codeIataAirport": "DTB", + "codeIataCity": null, + "codeIcaoAirport": "WIMN", + "codeIso2Country": "ID", + "geonameId": "8531809", + "latitudeAirport": 2.25973, + "longitudeAirport": 98.991898, + "nameAirport": "Silangit Airport\r\n", + "nameCountry": "Indonesia", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10369, + "codeIataAirport": "DTU", + "codeIataCity": null, + "codeIcaoAirport": "ZYDU", + "codeIso2Country": "CN", + "geonameId": "11128430", + "latitudeAirport": 48.445, + "longitudeAirport": 126.133, + "nameAirport": "Wudalianchi Dedu Airport\r\n", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "-6", + "airportId": 10370, + "codeIataAirport": "DXE", + "codeIataCity": null, + "codeIcaoAirport": "KMBO", + "codeIso2Country": "US", + "geonameId": "4419655", + "latitudeAirport": null, + "longitudeAirport": null, + "nameAirport": "Bruce Campbell Field", + "nameCountry": "United States\r\n", + "phone": null, + "timezone": null + }, + { + "GMT": "-6", + "airportId": 10371, + "codeIataAirport": "EDC", + "codeIataCity": null, + "codeIcaoAirport": "KEDC", + "codeIso2Country": "US", + "geonameId": null, + "latitudeAirport": 30.3974931, + "longitudeAirport": -97.5663935, + "nameAirport": "Austin Executive Airport ", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "2", + "airportId": 10372, + "codeIataAirport": "ETM", + "codeIataCity": null, + "codeIcaoAirport": "LLER", + "codeIso2Country": "IL", + "geonameId": "11153003", + "latitudeAirport": 29.723694, + "longitudeAirport": 35.011416, + "nameAirport": "Ramon Airport\r\n", + "nameCountry": "Israel", + "phone": null, + "timezone": null + }, + { + "GMT": "7", + "airportId": 10373, + "codeIataAirport": "FLZ", + "codeIataCity": null, + "codeIcaoAirport": "WIMS\r\n", + "codeIso2Country": "ID", + "geonameId": "6301238", + "latitudeAirport": 1.55594, + "longitudeAirport": 98.888901, + "nameAirport": "Dr Ferdinand Lumban Tobing Airport\r\n", + "nameCountry": "Indonesia\r\n", + "phone": null, + "timezone": null + }, + { + "GMT": "5", + "airportId": 10374, + "codeIataAirport": "FND", + "codeIataCity": null, + "codeIcaoAirport": "-", + "codeIso2Country": "MV", + "geonameId": "12104814", + "latitudeAirport": 6.1611, + "longitudeAirport": 73.2872, + "nameAirport": "Funadhoo Airport\r\n", + "nameCountry": "Maldives", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10375, + "codeIataAirport": "FRF", + "codeIataCity": null, + "codeIcaoAirport": "EDOL", + "codeIso2Country": "DE", + "geonameId": null, + "latitudeAirport": 52.040333, + "longitudeAirport": 11.202833, + "nameAirport": "Rhein-Main AFB airport\r\n", + "nameCountry": "Germany", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10376, + "codeIataAirport": "FYN", + "codeIataCity": null, + "codeIcaoAirport": "ZWFY", + "codeIso2Country": "CN", + "geonameId": "11127692", + "latitudeAirport": 46.804169, + "longitudeAirport": 89.512006, + "nameAirport": "Fuyun Koktokay Airport\r\n", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10377, + "codeIataAirport": "GBW", + "codeIataCity": null, + "codeIcaoAirport": "YGIA", + "codeIso2Country": "AU", + "geonameId": null, + "latitudeAirport": -22.5812, + "longitudeAirport": 120.03553, + "nameAirport": "Ginbata Airport", + "nameCountry": "Australia", + "phone": null, + "timezone": null + }, + { + "GMT": "-3", + "airportId": 10378, + "codeIataAirport": "GDR", + "codeIataCity": null, + "codeIcaoAirport": "SDAG", + "codeIso2Country": "BR", + "geonameId": null, + "latitudeAirport": -22.97527, + "longitudeAirport": -44.30722, + "nameAirport": "Angra dos Reis Airport", + "nameCountry": "Brazil", + "phone": null, + "timezone": null + }, + { + "GMT": "-4", + "airportId": 10379, + "codeIataAirport": "GGB", + "codeIataCity": null, + "codeIcaoAirport": "SWHP", + "codeIso2Country": null, + "geonameId": "12105153", + "latitudeAirport": -14.02531, + "longitudeAirport": -52.15432, + "nameAirport": "Água Boa Airport\r\n", + "nameCountry": "Brazil", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10380, + "codeIataAirport": "GHF", + "codeIataCity": null, + "codeIcaoAirport": "ETEU", + "codeIso2Country": "DE", + "geonameId": null, + "latitudeAirport": 49.6481018066, + "longitudeAirport": 9.9664897919, + "nameAirport": "Giebelstadt Army Air Field", + "nameCountry": "Germany", + "phone": null, + "timezone": null + }, + { + "GMT": "5", + "airportId": 10381, + "codeIataAirport": "GKK", + "codeIataCity": null, + "codeIcaoAirport": "VRMO", + "codeIso2Country": "MV", + "geonameId": "8411012", + "latitudeAirport": 0.7324, + "longitudeAirport": 73.4336, + "nameAirport": "Kooddoo Airport", + "nameCountry": "Maldives", + "phone": null, + "timezone": null + }, + { + "GMT": "2", + "airportId": 10382, + "codeIataAirport": "GML", + "codeIataCity": null, + "codeIcaoAirport": "UKKM", + "codeIso2Country": "UA", + "geonameId": "6300961", + "latitudeAirport": 50.6035003, + "longitudeAirport": 30.1919, + "nameAirport": "Gostomel Airport", + "nameCountry": "Ukraine", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10383, + "codeIataAirport": "GMQ", + "codeIataCity": null, + "codeIcaoAirport": "ZLGL", + "codeIso2Country": "CN", + "geonameId": "11185238", + "latitudeAirport": 34.418066, + "longitudeAirport": 100.301144, + "nameAirport": "Golog Maqin Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "4", + "airportId": 10384, + "codeIataAirport": "GSV", + "codeIataCity": null, + "codeIcaoAirport": "UWSG", + "codeIso2Country": "RU", + "geonameId": "11459350", + "latitudeAirport": 51.71252, + "longitudeAirport": 46.16881, + "nameAirport": "Saratov Gagarin Airport", + "nameCountry": "Russia", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10385, + "codeIataAirport": "GTB", + "codeIataCity": null, + "codeIcaoAirport": "KGTB", + "codeIso2Country": "US", + "geonameId": "6298323", + "latitudeAirport": 44.05562, + "longitudeAirport": -75.71946, + "nameAirport": "Wheeler-Sack Army Airfield", + "nameCountry": "United States\r\n", + "phone": null, + "timezone": null + }, + { + "GMT": "-6", + "airportId": 10386, + "codeIataAirport": "GYB", + "codeIataCity": null, + "codeIcaoAirport": "KGYB", + "codeIso2Country": "US", + "geonameId": null, + "latitudeAirport": 30.169167, + "longitudeAirport": -96.98, + "nameAirport": "Giddings–Lee County Airport", + "nameCountry": "United States\r\n", + "phone": null, + "timezone": null + }, + { + "GMT": "11", + "airportId": 10387, + "codeIataAirport": "GYZ", + "codeIataCity": null, + "codeIcaoAirport": "YGRM", + "codeIso2Country": "AU", + "geonameId": "12110485", + "latitudeAirport": -28.01838, + "longitudeAirport": 123.80329, + "nameAirport": " Gruyere Mine Airport", + "nameCountry": "Australia", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10388, + "codeIataAirport": "GZG", + "codeIataCity": null, + "codeIcaoAirport": "ZUGZ", + "codeIso2Country": "CN", + "geonameId": "12110486", + "latitudeAirport": 31.7575, + "longitudeAirport": 99.554167, + "nameAirport": "Garze Gesar Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10389, + "codeIataAirport": "HBQ", + "codeIataCity": null, + "codeIcaoAirport": "ZLHB", + "codeIso2Country": "CN", + "geonameId": "11874694", + "latitudeAirport": 38.012, + "longitudeAirport": 100.644, + "nameAirport": "Qilian Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "5", + "airportId": 10390, + "codeIataAirport": "HDK", + "codeIataCity": null, + "codeIcaoAirport": "VRBK", + "codeIso2Country": "MV", + "geonameId": "12076772", + "latitudeAirport": 6.631111, + "longitudeAirport": 73.066667, + "nameAirport": "Kulhudhuffushi Airport", + "nameCountry": "Maldives", + "phone": null, + "timezone": null + }, + { + "GMT": "5.3", + "airportId": 10391, + "codeIataAirport": "HDX", + "codeIataCity": null, + "codeIcaoAirport": "VIDX", + "codeIso2Country": "IN", + "geonameId": null, + "latitudeAirport": 28.70579, + "longitudeAirport": 77.342137, + "nameAirport": "Delhi Hindon Airport", + "nameCountry": "India", + "phone": null, + "timezone": null + }, + { + "GMT": "5", + "airportId": 10392, + "codeIataAirport": "HRF", + "codeIataCity": null, + "codeIcaoAirport": "VRAH", + "codeIso2Country": "MV", + "geonameId": null, + "latitudeAirport": 6.980556, + "longitudeAirport": 72.895833, + "nameAirport": "Hoarafushi Airport", + "nameCountry": "Maldives", + "phone": null, + "timezone": null + }, + { + "GMT": "6", + "airportId": 10393, + "codeIataAirport": "HSA", + "codeIataCity": null, + "codeIcaoAirport": "UAIT", + "codeIso2Country": "KZ", + "geonameId": null, + "latitudeAirport": 43.311111, + "longitudeAirport": 68.550278, + "nameAirport": "Hazret Sultan International Airport", + "nameCountry": "Kazakhstan", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10394, + "codeIataAirport": "HTT", + "codeIataCity": null, + "codeIcaoAirport": "ZLHX", + "codeIso2Country": "CN", + "geonameId": "11103469", + "latitudeAirport": 38.201984, + "longitudeAirport": 90.841495, + "nameAirport": "Huatugou Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10395, + "codeIataAirport": "HXD", + "codeIataCity": null, + "codeIcaoAirport": "ZLDL", + "codeIso2Country": "CN", + "geonameId": "8581628", + "latitudeAirport": 37.125286, + "longitudeAirport": 97.268658, + "nameAirport": "Delingha Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "-6", + "airportId": 10396, + "codeIataAirport": "HYI", + "codeIataCity": null, + "codeIcaoAirport": "KHYI", + "codeIso2Country": "US", + "geonameId": null, + "latitudeAirport": 29.892778, + "longitudeAirport": -97.863056, + "nameAirport": "San Marcos Regional Airport", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "6", + "airportId": 10397, + "codeIataAirport": "IKU", + "codeIataCity": null, + "codeIcaoAirport": "UAFL", + "codeIso2Country": "KG", + "geonameId": "8532010", + "latitudeAirport": 42.58792, + "longitudeAirport": 76.713046, + "nameAirport": "Issyk-Kul International Airport\r\n", + "nameCountry": "Kyrgyzstan", + "phone": null, + "timezone": null + }, + { + "GMT": "-6", + "airportId": 10398, + "codeIataAirport": "ILS", + "codeIataCity": null, + "codeIcaoAirport": "MSSS", + "codeIso2Country": "SV", + "geonameId": "6299912", + "latitudeAirport": 13.691667, + "longitudeAirport": -89.125556, + "nameAirport": "Ilopango International Airport", + "nameCountry": "El Salvador", + "phone": null, + "timezone": null + }, + { + "GMT": "3.3", + "airportId": 10399, + "codeIataAirport": "IMQ", + "codeIataCity": null, + "codeIcaoAirport": "OITU", + "codeIso2Country": "IR", + "geonameId": "6676732", + "latitudeAirport": 39.1925, + "longitudeAirport": 44.925278, + "nameAirport": "Maku International Airport\r\n\r\n", + "nameCountry": "Iran", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10400, + "codeIataAirport": "IMS", + "codeIataCity": null, + "codeIcaoAirport": "KIMS", + "codeIso2Country": "US", + "geonameId": "4207457", + "latitudeAirport": 33.61233, + "longitudeAirport": -83.46167, + "nameAirport": "Madison Municipal Airport", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "11", + "airportId": 10401, + "codeIataAirport": "ITU", + "codeIataCity": null, + "codeIcaoAirport": "UHSI", + "codeIso2Country": "RU", + "geonameId": "10943293", + "latitudeAirport": 45.256389, + "longitudeAirport": 147.955833, + "nameAirport": "Iturup Airport", + "nameCountry": "Russia", + "phone": null, + "timezone": null + }, + { + "GMT": "5.3", + "airportId": 10402, + "codeIataAirport": "IXX", + "codeIataCity": null, + "codeIcaoAirport": "VOBR", + "codeIso2Country": "IN", + "geonameId": "8441899", + "latitudeAirport": 17.9, + "longitudeAirport": 77.47, + "nameAirport": "Bidar Airport", + "nameCountry": "India", + "phone": null, + "timezone": null + }, + { + "GMT": "-3", + "airportId": 10403, + "codeIataAirport": "JJD", + "codeIataCity": null, + "codeIcaoAirport": "SBJE", + "codeIso2Country": "BR", + "geonameId": null, + "latitudeAirport": -2.906667, + "longitudeAirport": -40.358056, + "nameAirport": "Comte. Ariston Pessoa Regional Airport", + "nameCountry": "Brazil", + "phone": "+55 85 2181-6277", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-3", + "airportId": 10404, + "codeIataAirport": "JJG", + "codeIataCity": "JJG", + "codeIcaoAirport": "SBJA", + "codeIso2Country": "BR", + "geonameId": "10942827", + "latitudeAirport": -28.675278, + "longitudeAirport": -49.060278, + "nameAirport": "Jaguaruna Regional Airport", + "nameCountry": "Brazil", + "phone": null, + "timezone": null + }, + { + "GMT": "5.3", + "airportId": 10405, + "codeIataAirport": "JLG", + "codeIataCity": null, + "codeIcaoAirport": "VAJL", + "codeIso2Country": "IN", + "geonameId": "8477328", + "latitudeAirport": 20.961944, + "longitudeAirport": 75.626667, + "nameAirport": "Jalgaon Airport", + "nameCountry": "India", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10406, + "codeIataAirport": "JMJ", + "codeIataCity": null, + "codeIcaoAirport": "ZPJM", + "codeIso2Country": "CN", + "geonameId": "11288239", + "latitudeAirport": 22.415833, + "longitudeAirport": 99.786389, + "nameAirport": "Lancang Jingmai Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "5.3", + "airportId": 10407, + "codeIataAirport": "JRG", + "codeIataCity": null, + "codeIcaoAirport": "VEJH", + "codeIso2Country": "IN", + "geonameId": "6301074", + "latitudeAirport": 21.913333, + "longitudeAirport": 84.050278, + "nameAirport": "Jharsuguda Airport", + "nameCountry": "India", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10408, + "codeIataAirport": "JSJ", + "codeIataCity": null, + "codeIcaoAirport": "ZYJS", + "codeIso2Country": "CN", + "geonameId": "11237564", + "latitudeAirport": 47.11, + "longitudeAirport": 132.660278, + "nameAirport": "Jiansanjiang Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10409, + "codeIataAirport": "JZI", + "codeIataCity": null, + "codeIcaoAirport": "KJZI", + "codeIso2Country": "US", + "geonameId": "4574334", + "latitudeAirport": 32.700833, + "longitudeAirport": -80.002778, + "nameAirport": "Charleston Executive Airport", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "3", + "airportId": 10410, + "codeIataAirport": "KFS", + "codeIataCity": null, + "codeIcaoAirport": "LTAL", + "codeIso2Country": "TR", + "geonameId": "7730645", + "latitudeAirport": 41.314201355, + "longitudeAirport": 33.7957992554, + "nameAirport": "Kastamonu Airport", + "nameCountry": "Turkey", + "phone": null, + "timezone": null + }, + { + "GMT": "3", + "airportId": 10411, + "codeIataAirport": "KHB", + "codeIataCity": null, + "codeIcaoAirport": "OBKH", + "codeIso2Country": "BH", + "geonameId": null, + "latitudeAirport": 26.034722, + "longitudeAirport": 50.524444, + "nameAirport": "Sakhir Air Base", + "nameCountry": "Bahrain", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10412, + "codeIataAirport": "KJH", + "codeIataCity": null, + "codeIcaoAirport": "ZUKJ", + "codeIso2Country": "CN", + "geonameId": "8521371", + "latitudeAirport": 26.972, + "longitudeAirport": 107.988, + "nameAirport": "Kaili Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "5.3", + "airportId": 10413, + "codeIataAirport": "KQH", + "codeIataCity": null, + "codeIcaoAirport": "VIKG", + "codeIso2Country": "IN", + "geonameId": "11669749", + "latitudeAirport": 26.601473, + "longitudeAirport": 74.814147, + "nameAirport": "Kishangarh Airport", + "nameCountry": "India", + "phone": null, + "timezone": null + }, + { + "GMT": null, + "airportId": 10414, + "codeIataAirport": "KXB", + "codeIataCity": null, + "codeIcaoAirport": "WAWP", + "codeIso2Country": "ID", + "geonameId": null, + "latitudeAirport": -4.341217, + "longitudeAirport": 121.523983, + "nameAirport": "Kolaka Airport", + "nameCountry": "Indonesia", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10415, + "codeIataAirport": "LFQ", + "codeIataCity": null, + "codeIcaoAirport": "ZBLF", + "codeIso2Country": "CN", + "geonameId": "11102728", + "latitudeAirport": 36.132629, + "longitudeAirport": 111.641236, + "nameAirport": "Linfen Qiaoli Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10416, + "codeIataAirport": "LHW", + "codeIataCity": null, + "codeIcaoAirport": "ZLLL", + "codeIso2Country": "CN", + "geonameId": "6301373", + "latitudeAirport": 36.5152015686, + "longitudeAirport": 103.620002747, + "nameAirport": "Lanzhou Zhongchuan Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "9", + "airportId": 10417, + "codeIataAirport": "LLJ", + "codeIataCity": null, + "codeIcaoAirport": "WIPB", + "codeIso2Country": "ID", + "geonameId": "9036044", + "latitudeAirport": -3.28, + "longitudeAirport": 102.917222, + "nameAirport": "Silampari Airport", + "nameCountry": "Indonesia\r\n", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10418, + "codeIataAirport": "LLO", + "codeIataCity": null, + "codeIcaoAirport": "WAFD", + "codeIso2Country": "ID", + "geonameId": null, + "latitudeAirport": -3.084722, + "longitudeAirport": 120.245278, + "nameAirport": "Bua Airport", + "nameCountry": "Indonesia\r\n", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10419, + "codeIataAirport": "LLV", + "codeIataCity": null, + "codeIcaoAirport": "ZBLL", + "codeIso2Country": "CN", + "geonameId": "8593872", + "latitudeAirport": 37.683333, + "longitudeAirport": 111.142778, + "nameAirport": "Lüliang Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "7", + "airportId": 10420, + "codeIataAirport": "LMU", + "codeIataCity": null, + "codeIcaoAirport": "WIDL", + "codeIso2Country": "ID", + "geonameId": "11862126", + "latitudeAirport": 2.964167, + "longitudeAirport": 105.754444, + "nameAirport": "Letung Airport", + "nameCountry": "Indonesia\r\n", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10421, + "codeIataAirport": "LNL", + "codeIataCity": null, + "codeIcaoAirport": "ZLLN", + "codeIso2Country": "CN", + "geonameId": "11778483", + "latitudeAirport": 33.788, + "longitudeAirport": 105.797, + "nameAirport": "Longnan Chengzhou Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "9", + "airportId": 10422, + "codeIataAirport": "LNU", + "codeIataCity": null, + "codeIcaoAirport": "WAQM", + "codeIso2Country": "ID", + "geonameId": "8531915", + "latitudeAirport": 3.575278, + "longitudeAirport": 116.619722, + "nameAirport": "Robert Atty Bessing Airport", + "nameCountry": "Indonesia\r\n", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10423, + "codeIataAirport": "LPF", + "codeIataCity": null, + "codeIcaoAirport": "ZUPS", + "codeIso2Country": "CN", + "geonameId": null, + "latitudeAirport": 26.609417, + "longitudeAirport": 104.979, + "nameAirport": "Liupanshui Yuezhao Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10424, + "codeIataAirport": "MOH", + "codeIataCity": null, + "codeIcaoAirport": "WAFO", + "codeIso2Country": "ID", + "geonameId": null, + "latitudeAirport": -2.203333, + "longitudeAirport": 121.660278, + "nameAirport": "Maleo Airport", + "nameCountry": "Indonesia\r\n", + "phone": null, + "timezone": null + }, + { + "GMT": "-10", + "airportId": 10425, + "codeIataAirport": "NGF", + "codeIataCity": null, + "codeIcaoAirport": "PHNG", + "codeIso2Country": "US", + "geonameId": "6300277", + "latitudeAirport": 21.4505004, + "longitudeAirport": -157.768, + "nameAirport": "Kaneohe Bay MCAS (Marion E. Carl Field) Airport", + "nameCountry": "United States\r\n", + "phone": null, + "timezone": null + }, + { + "GMT": "3", + "airportId": 10426, + "codeIataAirport": "NKT", + "codeIataCity": null, + "codeIcaoAirport": "LTCV", + "codeIso2Country": "TR", + "geonameId": "8593875", + "latitudeAirport": 37.3647, + "longitudeAirport": 42.0582, + "nameAirport": "Sirnak Serafettin Elci Airport", + "nameCountry": "Turkey", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10427, + "codeIataAirport": "NLH", + "codeIataCity": null, + "codeIcaoAirport": "ZPNL", + "codeIso2Country": "CN", + "geonameId": "10943299", + "latitudeAirport": 27.5403, + "longitudeAirport": 100.7593, + "nameAirport": "Ninglang Luguhu Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "10", + "airportId": 10428, + "codeIataAirport": "NLI", + "codeIataCity": null, + "codeIcaoAirport": "UHNN", + "codeIso2Country": "RU", + "geonameId": "8617215", + "latitudeAirport": 53.154999, + "longitudeAirport": 140.649994, + "nameAirport": "Nikolayevsk-na-Amure Airport", + "nameCountry": "Russia", + "phone": null, + "timezone": null + }, + { + "GMT": "5", + "airportId": 10429, + "codeIataAirport": "NMF", + "codeIataCity": null, + "codeIcaoAirport": "VRDA", + "codeIso2Country": "MV", + "geonameId": "12088696", + "latitudeAirport": 5.822222, + "longitudeAirport": 5.822222, + "nameAirport": "Maafaru International Airport", + "nameCountry": "Maldives", + "phone": null, + "timezone": null + }, + { + "GMT": "6", + "airportId": 10430, + "codeIataAirport": "NQZ", + "codeIataCity": null, + "codeIcaoAirport": "UACC", + "codeIso2Country": "KZ", + "geonameId": "6300914", + "latitudeAirport": 51.021944, + "longitudeAirport": 71.466944, + "nameAirport": "Nursultan Nazarbayev International Airport", + "nameCountry": "Kazakhstan", + "phone": null, + "timezone": null + }, + { + "GMT": "6.5", + "airportId": 10431, + "codeIataAirport": "NYW", + "codeIataCity": null, + "codeIcaoAirport": "VYMY", + "codeIso2Country": "MM", + "geonameId": null, + "latitudeAirport": 22.221638, + "longitudeAirport": 95.093479, + "nameAirport": "Monywar Airport", + "nameCountry": "Burma", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10432, + "codeIataAirport": "NZL", + "codeIataCity": null, + "codeIcaoAirport": "ZBZL", + "codeIso2Country": "CN", + "geonameId": "11185307", + "latitudeAirport": 47.865833, + "longitudeAirport": 122.767503, + "nameAirport": "Chengjisihan Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10433, + "codeIataAirport": "OCM", + "codeIataCity": null, + "codeIcaoAirport": "YBGD", + "codeIso2Country": "AU", + "geonameId": "8533724", + "latitudeAirport": -22.54, + "longitudeAirport": 117.275, + "nameAirport": "Boolgeeda Airport", + "nameCountry": "Australia", + "phone": null, + "timezone": null + }, + { + "GMT": "3", + "airportId": 10434, + "codeIataAirport": "OGU", + "codeIataCity": null, + "codeIcaoAirport": "LTCB", + "codeIso2Country": "TR", + "geonameId": "10234006", + "latitudeAirport": 40.966047, + "longitudeAirport": 38.080994, + "nameAirport": "Ordu Giresun Airport", + "nameCountry": "Turkey", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10435, + "codeIataAirport": "OJU", + "codeIataCity": null, + "codeIcaoAirport": "WAFU", + "codeIso2Country": "ID", + "geonameId": "11951800", + "latitudeAirport": -0.864417, + "longitudeAirport": 121.623083, + "nameAirport": "Tanjung Api Airport ", + "nameCountry": "Indonesia", + "phone": null, + "timezone": null + }, + { + "GMT": "10.3", + "airportId": 10436, + "codeIataAirport": "OOD", + "codeIataCity": null, + "codeIcaoAirport": "YOOD", + "codeIso2Country": "AU", + "geonameId": "7731357", + "latitudeAirport": -27.56, + "longitudeAirport": 135.445, + "nameAirport": "Oodnadatta Airport", + "nameCountry": "Australia", + "phone": null, + "timezone": null + }, + { + "GMT": "3", + "airportId": 10437, + "codeIataAirport": "OSF", + "codeIataCity": null, + "codeIcaoAirport": "UUMO", + "codeIso2Country": "RU", + "geonameId": "8030066", + "latitudeAirport": 55.511667, + "longitudeAirport": 37.507222, + "nameAirport": "Ostafyevo International Airport", + "nameCountry": "Russia", + "phone": null, + "timezone": null + }, + { + "GMT": "7", + "airportId": 10438, + "codeIataAirport": "PHQ", + "codeIataCity": null, + "codeIcaoAirport": "YTMO", + "codeIso2Country": "AU", + "geonameId": "8555618", + "latitudeAirport": -21.811667, + "longitudeAirport": 139.923333, + "nameAirport": "The Monument Airport", + "nameCountry": "Australia", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10439, + "codeIataAirport": "PNM", + "codeIataCity": null, + "codeIcaoAirport": "KPNM", + "codeIso2Country": "US", + "geonameId": "5042363", + "latitudeAirport": 45.56, + "longitudeAirport": -93.608333, + "nameAirport": "Princeton Municipal Airport", + "nameCountry": "United States\r\n", + "phone": null, + "timezone": null + }, + { + "GMT": "-7", + "airportId": 10440, + "codeIataAirport": "PWY", + "codeIataCity": null, + "codeIcaoAirport": "KPNA", + "codeIso2Country": "US", + "geonameId": "5835906", + "latitudeAirport": 42.79550171, + "longitudeAirport": -109.8069992, + "nameAirport": "Ralph Wenz Field", + "nameCountry": "United States\r\n", + "phone": null, + "timezone": null + }, + { + "GMT": "5.3", + "airportId": 10441, + "codeIataAirport": "PYG", + "codeIataCity": null, + "codeIcaoAirport": "VEPY", + "codeIso2Country": "IN", + "geonameId": "11928000", + "latitudeAirport": 27.2325, + "longitudeAirport": 88.588333, + "nameAirport": "Pakyong Airport", + "nameCountry": "India", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10442, + "codeIataAirport": "QBQ", + "codeIataCity": null, + "codeIcaoAirport": "LFQM", + "codeIso2Country": "FR", + "geonameId": "6299465", + "latitudeAirport": 47.205278, + "longitudeAirport": 6.080556, + "nameAirport": "Besançon – La Vèze Aerodrome", + "nameCountry": "France", + "phone": null, + "timezone": null + }, + { + "GMT": "-3", + "airportId": 10443, + "codeIataAirport": "QDV", + "codeIataCity": null, + "codeIcaoAirport": "SBJD", + "codeIso2Country": "BR", + "geonameId": "8533002", + "latitudeAirport": -23.181667, + "longitudeAirport": -46.943611, + "nameAirport": "Comte. Rolim Adolfo Amaro State Airport", + "nameCountry": "Brazil", + "phone": null, + "timezone": null + }, + { + "GMT": null, + "airportId": 10444, + "codeIataAirport": "QEA", + "codeIataCity": null, + "codeIcaoAirport": "EKAC", + "codeIso2Country": "DK", + "geonameId": null, + "latitudeAirport": null, + "longitudeAirport": null, + "nameAirport": "Aarhus Sea Airport", + "nameCountry": "Denmark", + "phone": null, + "timezone": null + }, + { + "GMT": null, + "airportId": 10445, + "codeIataAirport": "QEC", + "codeIataCity": null, + "codeIcaoAirport": "EKCC", + "codeIso2Country": "DK", + "geonameId": null, + "latitudeAirport": null, + "longitudeAirport": null, + "nameAirport": "Copenhagen Sea Airport", + "nameCountry": "Denmark", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10446, + "codeIataAirport": "QEF", + "codeIataCity": null, + "codeIcaoAirport": "EDFE", + "codeIso2Country": "DE", + "geonameId": "3272939", + "latitudeAirport": 49.959999, + "longitudeAirport": 8.645833, + "nameAirport": "Frankfurt-Egelsbach Airport", + "nameCountry": "Germany", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10447, + "codeIataAirport": "QEG", + "codeIataCity": null, + "codeIcaoAirport": "LHFM", + "codeIso2Country": "HU", + "geonameId": "8555600", + "latitudeAirport": 47.582778, + "longitudeAirport": 16.845278, + "nameAirport": "Fertoszentmiklos Meidl Airport", + "nameCountry": "Hungary", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10448, + "codeIataAirport": "QEJ", + "codeIataCity": null, + "codeIcaoAirport": "EDWF", + "codeIso2Country": "DE", + "geonameId": "11153073", + "latitudeAirport": 53.271592, + "longitudeAirport": 7.44234, + "nameAirport": "Leer Papenburg Airport", + "nameCountry": "Germany", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10449, + "codeIataAirport": "QEK", + "codeIataCity": null, + "codeIcaoAirport": "EHBD", + "codeIso2Country": "NL", + "geonameId": "8532048", + "latitudeAirport": 51.254444, + "longitudeAirport": 5.600833, + "nameAirport": "Kempen Airport", + "nameCountry": "Netherlands", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10450, + "codeIataAirport": "QEL", + "codeIataCity": null, + "codeIcaoAirport": "ESTL", + "codeIso2Country": "SE", + "geonameId": "2694555", + "latitudeAirport": 56.082801, + "longitudeAirport": 13.21249, + "nameAirport": "Ljungbyhed Airport", + "nameCountry": "Sweden", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10451, + "codeIataAirport": "QEP", + "codeIataCity": null, + "codeIcaoAirport": "LKPM", + "codeIso2Country": "CZ", + "geonameId": "11711463", + "latitudeAirport": 49.7201, + "longitudeAirport": 14.1006, + "nameAirport": "Pribram Airport", + "nameCountry": "Czechia", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10452, + "codeIataAirport": "QER", + "codeIataCity": null, + "codeIcaoAirport": "EDFB", + "codeIso2Country": "DE", + "geonameId": "3208160", + "latitudeAirport": 50.33583, + "longitudeAirport": 8.87805, + "nameAirport": "Reichelsheim Airport", + "nameCountry": "Germany", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10453, + "codeIataAirport": "QEU", + "codeIataCity": null, + "codeIcaoAirport": "LHUD", + "codeIso2Country": "HU", + "geonameId": "6299532", + "latitudeAirport": 46.246895, + "longitudeAirport": 20.090799, + "nameAirport": "Szeged Airport", + "nameCountry": "Hungary", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10454, + "codeIataAirport": "QEV", + "codeIataCity": null, + "codeIcaoAirport": "EDLS", + "codeIso2Country": "DE", + "geonameId": "3206112", + "latitudeAirport": 51.9958343506, + "longitudeAirport": 6.8405561447, + "nameAirport": "Stadtlohn Vreden Airport", + "nameCountry": "Germany", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10455, + "codeIataAirport": "QEX", + "codeIataCity": null, + "codeIcaoAirport": "EDXR", + "codeIso2Country": "DE", + "geonameId": "3208582", + "latitudeAirport": 54.2200012207, + "longitudeAirport": 9.5994443893, + "nameAirport": "Rendsburg Schachtholm Airport", + "nameCountry": "Germany", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10456, + "codeIataAirport": "QEZ", + "codeIataCity": null, + "codeIcaoAirport": "EDFZ", + "codeIso2Country": "DE", + "geonameId": "3272937", + "latitudeAirport": 49.967499, + "longitudeAirport": 8.147222, + "nameAirport": "Mainz Finthen Airport", + "nameCountry": "Germany", + "phone": null, + "timezone": null + }, + { + "GMT": "0", + "airportId": 10457, + "codeIataAirport": "QLA", + "codeIataCity": null, + "codeIcaoAirport": "EGHL", + "codeIso2Country": "GB", + "geonameId": "7668208", + "latitudeAirport": 51.1871986389, + "longitudeAirport": -1.0334999, + "nameAirport": "Lasham Airport", + "nameCountry": "United Kingdom", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10458, + "codeIataAirport": "QNJ", + "codeIataCity": null, + "codeIcaoAirport": "LFLI", + "codeIso2Country": "FR", + "geonameId": "6694616", + "latitudeAirport": 46.192001, + "longitudeAirport": 6.26839, + "nameAirport": "Annemasse Airport", + "nameCountry": "France", + "phone": null, + "timezone": null + }, + { + "GMT": "-6", + "airportId": 10459, + "codeIataAirport": "QQA", + "codeIataCity": null, + "codeIcaoAirport": "KANE", + "codeIso2Country": "US", + "geonameId": null, + "latitudeAirport": 45.145, + "longitudeAirport": -93.210278, + "nameAirport": "Anoka County–Blaine Airport ", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10460, + "codeIataAirport": "QQB", + "codeIataCity": null, + "codeIcaoAirport": "KEVB", + "codeIso2Country": "US", + "geonameId": "4165915", + "latitudeAirport": 29.0557003021, + "longitudeAirport": -80.9488983154, + "nameAirport": "New Smyrna Beach Municipal Airport", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10461, + "codeIataAirport": "QQC", + "codeIataCity": null, + "codeIcaoAirport": "KCNI", + "codeIso2Country": "US", + "geonameId": null, + "latitudeAirport": 34.3122192, + "longitudeAirport": -84.4221528, + "nameAirport": "Canton Cherokee County Regional Airport", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "-7", + "airportId": 10462, + "codeIataAirport": "QQE", + "codeIataCity": null, + "codeIcaoAirport": "KEIK", + "codeIso2Country": "US", + "geonameId": "5582862", + "latitudeAirport": 40.0102005005, + "longitudeAirport": -105.047996521, + "nameAirport": "Erie Municipal Airport", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10463, + "codeIataAirport": "QQF", + "codeIataCity": null, + "codeIcaoAirport": "KFIN", + "codeIso2Country": "US", + "geonameId": null, + "latitudeAirport": 29.4651511, + "longitudeAirport": -81.2076489, + "nameAirport": "Bunnell Flagler County Airport", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "-6", + "airportId": 10464, + "codeIataAirport": "QQG", + "codeIataCity": null, + "codeIcaoAirport": "KGKY", + "codeIso2Country": "US", + "geonameId": "4671253", + "latitudeAirport": 32.663898468, + "longitudeAirport": -97.0942993164, + "nameAirport": "Arlington Municipal Airport", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "-6", + "airportId": 10465, + "codeIataAirport": "QQI", + "codeIataCity": null, + "codeIcaoAirport": "KIGQ", + "codeIso2Country": "US", + "geonameId": "6298438", + "latitudeAirport": 41.5349006653, + "longitudeAirport": -87.5295028687, + "nameAirport": "Chicago Lansing Municipal Airport", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "-6", + "airportId": 10466, + "codeIataAirport": "QQL", + "codeIataCity": null, + "codeIcaoAirport": "KLXT", + "codeIso2Country": "US", + "geonameId": "6298594", + "latitudeAirport": 38.95970154, + "longitudeAirport": -94.37139893, + "nameAirport": "Lee's Summit Municipal Airport", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10467, + "codeIataAirport": "QQQ", + "codeIataCity": null, + "codeIcaoAirport": "KMQJ", + "codeIso2Country": "US", + "geonameId": "4122411", + "latitudeAirport": 39.84349823, + "longitudeAirport": -85.89710236, + "nameAirport": "Mount Comfort Airport", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "-3", + "airportId": 10468, + "codeIataAirport": "QQT", + "codeIataCity": null, + "codeIcaoAirport": "BGQE", + "codeIso2Country": "GL", + "geonameId": "7730419", + "latitudeAirport": 69.9958611087, + "longitudeAirport": -51.3009166718, + "nameAirport": "Qeqertaq Heliport", + "nameCountry": "Greenland", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10469, + "codeIataAirport": "QQV", + "codeIataCity": null, + "codeIcaoAirport": "KVPC", + "codeIso2Country": "US", + "geonameId": "4186532", + "latitudeAirport": 34.1231002808, + "longitudeAirport": -84.8487014771, + "nameAirport": "Cartersville Airport", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10470, + "codeIataAirport": "QQZ", + "codeIataCity": null, + "codeIcaoAirport": "KBAZ", + "codeIso2Country": "US", + "geonameId": "4714136", + "latitudeAirport": 29.7045001984, + "longitudeAirport": -98.0421981812, + "nameAirport": "New Braunfels Regional Airport", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10471, + "codeIataAirport": "QSZ", + "codeIataCity": null, + "codeIcaoAirport": "ZWSC", + "codeIso2Country": "CN", + "geonameId": "11669752", + "latitudeAirport": 38.245, + "longitudeAirport": 77.06, + "nameAirport": "Shache Airport ", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10472, + "codeIataAirport": "QXB", + "codeIataCity": null, + "codeIcaoAirport": "LFMA", + "codeIso2Country": "FR", + "geonameId": null, + "latitudeAirport": 43.505278, + "longitudeAirport": 5.367222, + "nameAirport": "Aix-en-Provence Aerodrome", + "nameCountry": "France", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10473, + "codeIataAirport": "QYA", + "codeIataCity": null, + "codeIcaoAirport": "LFLI", + "codeIso2Country": "FR", + "geonameId": "6694616", + "latitudeAirport": 46.1920013428, + "longitudeAirport": 6.2683901787, + "nameAirport": "Annemasse Airport", + "nameCountry": "France", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10474, + "codeIataAirport": "QYB", + "codeIataCity": null, + "codeIcaoAirport": "LFQM", + "codeIso2Country": "FR", + "geonameId": "6299465", + "latitudeAirport": 47.2066, + "longitudeAirport": 6.083681, + "nameAirport": "Besancon La Veze Airport", + "nameCountry": "France", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10475, + "codeIataAirport": "QYR", + "codeIataCity": null, + "codeIcaoAirport": "LFQB", + "codeIso2Country": "FR", + "geonameId": null, + "latitudeAirport": 48.321667, + "longitudeAirport": 4.016667, + "nameAirport": "Troyes – Barberey Airport", + "nameCountry": "France", + "phone": null, + "timezone": null + }, + { + "GMT": "10", + "airportId": 10476, + "codeIataAirport": "RAB", + "codeIataCity": null, + "codeIcaoAirport": "AYTK", + "codeIso2Country": "PG", + "geonameId": null, + "latitudeAirport": -4.340278, + "longitudeAirport": 152.379444, + "nameAirport": "Rabaul Airport", + "nameCountry": "Papua New Guinea", + "phone": null, + "timezone": null + }, + { + "GMT": "5.3", + "airportId": 10477, + "codeIataAirport": "RDP", + "codeIataCity": null, + "codeIcaoAirport": "VEDG", + "codeIso2Country": "IN", + "geonameId": "10942839", + "latitudeAirport": 23.6225, + "longitudeAirport": 87.243, + "nameAirport": "Kazi Nazrul Islam Airport", + "nameCountry": "India", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10478, + "codeIataAirport": "RIH", + "codeIataCity": null, + "codeIcaoAirport": "MPRH", + "codeIso2Country": "PA", + "geonameId": "3701862", + "latitudeAirport": 8.3758802414, + "longitudeAirport": -80.1278991699, + "nameAirport": "Scarlett Martinez International Airport", + "nameCountry": "Panama", + "phone": null, + "timezone": null + }, + { + "GMT": "5.3", + "airportId": 10479, + "codeIataAirport": "SAG", + "codeIataCity": null, + "codeIcaoAirport": "VASD", + "codeIso2Country": "IN", + "geonameId": "8532031", + "latitudeAirport": 19.688611, + "longitudeAirport": 74.378889, + "nameAirport": "Shirdi Airport", + "nameCountry": "India", + "phone": null, + "timezone": null + }, + { + "GMT": "5", + "airportId": 10480, + "codeIataAirport": "SBT", + "codeIataCity": null, + "codeIcaoAirport": "USDA", + "codeIso2Country": "RU", + "geonameId": "11103760", + "latitudeAirport": 71.219167, + "longitudeAirport": 72.052222, + "nameAirport": "Sabetta International Airport", + "nameCountry": "Russia", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10481, + "codeIataAirport": "SCR", + "codeIataCity": null, + "codeIcaoAirport": "ESKS", + "codeIso2Country": "SE", + "geonameId": "2681745", + "latitudeAirport": 61.159, + "longitudeAirport": 12.84, + "nameAirport": "Scandinavian Mountains Airport", + "nameCountry": "Sweden", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10482, + "codeIataAirport": "SHF", + "codeIataCity": null, + "codeIcaoAirport": "ZWHZ", + "codeIso2Country": "CN", + "geonameId": "11493761", + "latitudeAirport": 44.241667, + "longitudeAirport": 85.891111, + "nameAirport": "Shihezi Huayuan Airport", + "nameCountry": null, + "phone": null, + "timezone": null + }, + { + "GMT": "2", + "airportId": 10483, + "codeIataAirport": "SPX", + "codeIataCity": null, + "codeIcaoAirport": "HESX", + "codeIso2Country": "EG", + "geonameId": "11203813", + "latitudeAirport": 30.109722, + "longitudeAirport": 30.894444, + "nameAirport": "Sphinx International Airport", + "nameCountry": "Egypt", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10484, + "codeIataAirport": "SQD", + "codeIataCity": null, + "codeIcaoAirport": "ZSSR", + "codeIso2Country": "CN", + "geonameId": "11154613", + "latitudeAirport": 28.3797, + "longitudeAirport": 117.9643, + "nameAirport": "Shangrao Sanqingshan Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10485, + "codeIataAirport": "SQJ", + "codeIataCity": null, + "codeIcaoAirport": "ZSSM", + "codeIso2Country": "CN", + "geonameId": "11102729", + "latitudeAirport": 26.4263, + "longitudeAirport": 117.8336, + "nameAirport": "Shaxian Airport", + "nameCountry": null, + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10486, + "codeIataAirport": "SSM", + "codeIataCity": null, + "codeIcaoAirport": "KANJ", + "codeIso2Country": "US", + "geonameId": "5009005", + "latitudeAirport": 46.479167, + "longitudeAirport": -84.368333, + "nameAirport": "Sault Ste. Marie Municipal Airport ", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10487, + "codeIataAirport": "TEV", + "codeIataCity": null, + "codeIcaoAirport": "LETL", + "codeIso2Country": "ES", + "geonameId": "10943187", + "latitudeAirport": 40.411944, + "longitudeAirport": -1.2175, + "nameAirport": "Teruel Airport", + "nameCountry": "Spain", + "phone": null, + "timezone": null + }, + { + "GMT": "-4", + "airportId": 10488, + "codeIataAirport": "TJL", + "codeIataCity": null, + "codeIcaoAirport": "SSTL", + "codeIso2Country": "BR", + "geonameId": "8643372", + "latitudeAirport": -20.75306, + "longitudeAirport": -51.682, + "nameAirport": "Plínio Alarcom Airport\r\n", + "nameCountry": "Brazil", + "phone": null, + "timezone": null + }, + { + "GMT": "9", + "airportId": 10489, + "codeIataAirport": "TLK", + "codeIataCity": null, + "codeIcaoAirport": "UECT", + "codeIso2Country": "RU", + "geonameId": "8468841", + "latitudeAirport": 59.876389, + "longitudeAirport": 111.044444, + "nameAirport": "Talakan Airport", + "nameCountry": "Russia", + "phone": null, + "timezone": null + }, + { + "GMT": "6", + "airportId": 10490, + "codeIataAirport": "TMF", + "codeIataCity": null, + "codeIcaoAirport": "VRNT", + "codeIso2Country": "MV", + "geonameId": "8617220", + "latitudeAirport": 2.211, + "longitudeAirport": 73.1533, + "nameAirport": "Thimarafushi Airport", + "nameCountry": "Maldives", + "phone": null, + "timezone": null + }, + { + "GMT": "10", + "airportId": 10491, + "codeIataAirport": "TQP", + "codeIataCity": null, + "codeIcaoAirport": "YTEE", + "codeIso2Country": "AU", + "geonameId": "8533833", + "latitudeAirport": -21.835, + "longitudeAirport": 140.888056, + "nameAirport": "Trepell Airport", + "nameCountry": "Australia", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10492, + "codeIataAirport": "TWC", + "codeIataCity": null, + "codeIcaoAirport": "ZWTS", + "codeIso2Country": "CN", + "geonameId": "12022101", + "latitudeAirport": 39.888139, + "longitudeAirport": 79.231911, + "nameAirport": "Tumxuk Tangwangcheng Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "7", + "airportId": 10493, + "codeIataAirport": "TXE", + "codeIataCity": null, + "codeIcaoAirport": "WITK", + "codeIso2Country": "ID", + "geonameId": "11184554", + "latitudeAirport": 4.720833, + "longitudeAirport": 96.849444, + "nameAirport": "Takengon Rembele Airport", + "nameCountry": "Indonesia", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10494, + "codeIataAirport": "TYQ", + "codeIataCity": null, + "codeIcaoAirport": "KTYQ", + "codeIso2Country": "US", + "geonameId": "4921871", + "latitudeAirport": 40.030556, + "longitudeAirport": -86.251389, + "nameAirport": "Indianapolis Executive Airport ", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10495, + "codeIataAirport": "UCB", + "codeIataCity": null, + "codeIcaoAirport": "ZBUC", + "codeIso2Country": "CN", + "geonameId": null, + "latitudeAirport": 41.129722, + "longitudeAirport": 113.108056, + "nameAirport": "Ulanqab Jining Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10496, + "codeIataAirport": "USA", + "codeIataCity": null, + "codeIcaoAirport": "KJQF", + "codeIso2Country": "US", + "geonameId": "6298496", + "latitudeAirport": 35.387778, + "longitudeAirport": -80.709167, + "nameAirport": "Concord-Padgett Regional Airport", + "nameCountry": "United States\r\n", + "phone": null, + "timezone": null + }, + { + "GMT": "7", + "airportId": 10497, + "codeIataAirport": "VDO", + "codeIataCity": null, + "codeIcaoAirport": "VVVD", + "codeIso2Country": "VN", + "geonameId": "11961817", + "latitudeAirport": 21.117778, + "longitudeAirport": 107.414167, + "nameAirport": "Van Don International Airport", + "nameCountry": "Vietnam", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10498, + "codeIataAirport": "WDS", + "codeIataCity": null, + "codeIcaoAirport": "ZHSY", + "codeIso2Country": "CN", + "geonameId": "11102720", + "latitudeAirport": 32.591667, + "longitudeAirport": 110.907778, + "nameAirport": "Shiyan Wudangshan Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10499, + "codeIataAirport": "WLE", + "codeIataCity": null, + "codeIcaoAirport": "YMLS", + "codeIso2Country": "AU", + "geonameId": "8556009", + "latitudeAirport": -26.809167, + "longitudeAirport": 150.165, + "nameAirport": "Miles Airport\r\n\r\n", + "nameCountry": "Australia", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10500, + "codeIataAirport": "WLP", + "codeIataCity": null, + "codeIcaoAirport": "YANG", + "codeIso2Country": "AU", + "geonameId": "8556010", + "latitudeAirport": null, + "longitudeAirport": null, + "nameAirport": "West Angelas Airport", + "nameCountry": "Australia", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10501, + "codeIataAirport": "WMT", + "codeIataCity": null, + "codeIcaoAirport": "ZUMT", + "codeIso2Country": "CN", + "geonameId": "11608591", + "latitudeAirport": 27.81638, + "longitudeAirport": 106.33268, + "nameAirport": "Zunyi Maotai Airport\r\n", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10502, + "codeIataAirport": "WNI", + "codeIataCity": null, + "codeIcaoAirport": "WAWD", + "codeIso2Country": "ID", + "geonameId": "11789255", + "latitudeAirport": -5.316667, + "longitudeAirport": 123.583333, + "nameAirport": "Matahora Airport\r\n", + "nameCountry": "Indonesia", + "phone": null, + "timezone": null + }, + { + "GMT": "0", + "airportId": 10503, + "codeIataAirport": "WRT", + "codeIataCity": null, + "codeIcaoAirport": "EGNO", + "codeIso2Country": "GB", + "geonameId": "9034837", + "latitudeAirport": 53.745098, + "longitudeAirport": -2.88306, + "nameAirport": "Warton Airport\r\n", + "nameCountry": "United Kingdom", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10504, + "codeIataAirport": "WSK", + "codeIataCity": null, + "codeIcaoAirport": "ZUWS", + "codeIso2Country": "CN", + "geonameId": "11928660", + "latitudeAirport": 31.064, + "longitudeAirport": 109.706, + "nameAirport": "Chongqing Wushan Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "10", + "airportId": 10505, + "codeIataAirport": "WTB", + "codeIataCity": null, + "codeIcaoAirport": "YBWW", + "codeIso2Country": "AU", + "geonameId": "9881357", + "latitudeAirport": -27.558332, + "longitudeAirport": 151.793335, + "nameAirport": "Toowoomba Wellcamp Airport\r\n", + "nameCountry": "Australia", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10506, + "codeIataAirport": "WUT", + "codeIataCity": null, + "codeIcaoAirport": "ZBXZ", + "codeIso2Country": "CN", + "geonameId": "11102730", + "latitudeAirport": 38.597456, + "longitudeAirport": 112.969173, + "nameAirport": "Xinzhou Wutaishan Airport\r\n", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10507, + "codeIataAirport": "XAC", + "codeIataCity": null, + "codeIcaoAirport": "LFCH", + "codeIso2Country": "FR", + "geonameId": "6694755", + "latitudeAirport": 44.596389, + "longitudeAirport": -1.110833, + "nameAirport": "Arcachon – La Teste-de-Buch Airport", + "nameCountry": "France", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10508, + "codeIataAirport": "XAI", + "codeIataCity": null, + "codeIcaoAirport": "ZHXY", + "codeIso2Country": "CN", + "geonameId": "11493830", + "latitudeAirport": 32.541389, + "longitudeAirport": 114.077778, + "nameAirport": "Xinyang Minggang Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10509, + "codeIataAirport": "XMU", + "codeIataCity": null, + "codeIcaoAirport": "LFHY", + "codeIso2Country": "FR", + "geonameId": "6694474", + "latitudeAirport": 46.5345993042, + "longitudeAirport": 3.423719883, + "nameAirport": "Moulins Montbeugny Airport", + "nameCountry": "France", + "phone": null, + "timezone": null + }, + { + "GMT": "7", + "airportId": 10510, + "codeIataAirport": "YIA", + "codeIataCity": null, + "codeIcaoAirport": "WAHI", + "codeIso2Country": "ID", + "geonameId": "12042155", + "latitudeAirport": -7.907459, + "longitudeAirport": 110.05448, + "nameAirport": "Yogyakarta International Airport", + "nameCountry": "Indonesia", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10511, + "codeIataAirport": "YIC", + "codeIataCity": null, + "codeIcaoAirport": "ZSYC", + "codeIso2Country": "CN", + "geonameId": "8435706", + "latitudeAirport": 27.8025, + "longitudeAirport": 114.3062, + "nameAirport": "Yichun Mingyueshan Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10512, + "codeIataAirport": "YKH", + "codeIataCity": null, + "codeIcaoAirport": "ZYYK", + "codeIso2Country": "CN", + "geonameId": "11102736", + "latitudeAirport": 40.542524, + "longitudeAirport": 122.3586, + "nameAirport": "Yingkou Lanqi Airport\r\n", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "3", + "airportId": 10513, + "codeIataAirport": "YKO", + "codeIataCity": null, + "codeIcaoAirport": "LTCW", + "codeIso2Country": "TR", + "geonameId": "8593887", + "latitudeAirport": 37.5497, + "longitudeAirport": 44.2381, + "nameAirport": "Hakkari Yüksekova Airport\r\n", + "nameCountry": "Turkey", + "phone": null, + "timezone": null + }, + { + "GMT": "6", + "airportId": 10514, + "codeIataAirport": "YON", + "codeIataCity": null, + "codeIcaoAirport": "VQTY", + "codeIso2Country": "BT", + "geonameId": "8411020", + "latitudeAirport": 27.2563889, + "longitudeAirport": 91.5144444, + "nameAirport": "Yongphulla Airport\r\n", + "nameCountry": "Bhutan", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10515, + "codeIataAirport": "YTW", + "codeIataCity": null, + "codeIcaoAirport": "ZWYT", + "codeIso2Country": "CN", + "geonameId": null, + "latitudeAirport": null, + "longitudeAirport": null, + "nameAirport": "Yutian Airport", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "-3", + "airportId": 10516, + "codeIataAirport": "ZCO", + "codeIataCity": null, + "codeIcaoAirport": "SCQP", + "codeIso2Country": "CL", + "geonameId": "11153726", + "latitudeAirport": -38.9259, + "longitudeAirport": -72.6515, + "nameAirport": "La Araucanía Airport", + "nameCountry": "Chile", + "phone": null, + "timezone": null + }, + { + "GMT": "3", + "airportId": 10517, + "codeIataAirport": "ZIA", + "codeIataCity": null, + "codeIcaoAirport": "UUBW", + "codeIso2Country": "RU", + "geonameId": "8531980", + "latitudeAirport": 55.553299, + "longitudeAirport": 38.150002, + "nameAirport": "Zhukovsky International Airport", + "nameCountry": "Russia", + "phone": null, + "timezone": null + }, + { + "GMT": "2", + "airportId": 10518, + "codeIataAirport": "ZIS", + "codeIataCity": null, + "codeIcaoAirport": "HLZN", + "codeIso2Country": "LY", + "geonameId": null, + "latitudeAirport": 31.774878, + "longitudeAirport": 12.25006, + "nameAirport": "Alzintan Airport\r\n", + "nameCountry": "Libya", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10519, + "codeIataAirport": "ZNO", + "codeIataCity": null, + "codeIcaoAirport": "EDVM", + "codeIso2Country": "DE", + "geonameId": "3206637", + "latitudeAirport": 52.181111, + "longitudeAirport": 9.946944, + "nameAirport": "Airport Hildesheim", + "nameCountry": "Germany", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10520, + "codeIataAirport": "ZQW", + "codeIataCity": null, + "codeIcaoAirport": "EDRZ", + "codeIso2Country": "DE", + "geonameId": "3208965", + "latitudeAirport": 49.2094, + "longitudeAirport": 7.40056, + "nameAirport": "Zweibrücken Airport", + "nameCountry": "Germany", + "phone": null, + "timezone": null + }, + { + "GMT": "-3", + "airportId": 10521, + "codeIataAirport": "ARX", + "codeIataCity": null, + "codeIcaoAirport": "SBAC", + "codeIso2Country": "BR", + "geonameId": "3407379", + "latitudeAirport": -4.568611, + "longitudeAirport": -37.804722, + "nameAirport": "Aracati - Dragão do Mar Regional Airport", + "nameCountry": "Brazil", + "phone": null, + "timezone": null + }, + { + "GMT": "0", + "airportId": 10522, + "codeIataAirport": "AYH", + "codeIataCity": null, + "codeIcaoAirport": "EGWZ", + "codeIso2Country": "GB", + "geonameId": "11591974", + "latitudeAirport": 52.363333, + "longitudeAirport": -0.222778, + "nameAirport": "Royal Air Force Alconbury", + "nameCountry": "United Kingdom", + "phone": null, + "timezone": null + }, + { + "GMT": "-9", + "airportId": 10523, + "codeIataAirport": "DGG", + "codeIataCity": null, + "codeIcaoAirport": "PADG", + "codeIso2Country": "US", + "geonameId": "5872534", + "latitudeAirport": 68.032222, + "longitudeAirport": -162.899167, + "nameAirport": "Red Dog Airport", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10524, + "codeIataAirport": "FYJ", + "codeIataCity": null, + "codeIcaoAirport": "ZYFY", + "codeIso2Country": "CN", + "geonameId": null, + "latitudeAirport": 48.199494, + "longitudeAirport": 134.366447, + "nameAirport": "Dongji Aiport\r\n", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "-3", + "airportId": 10525, + "codeIataAirport": "GGH", + "codeIataCity": null, + "codeIcaoAirport": "SSCT", + "codeIso2Country": "BR", + "geonameId": "12105156", + "latitudeAirport": -23.691667, + "longitudeAirport": -52.642222, + "nameAirport": "Engenheiro Gastão Mesquita Airport", + "nameCountry": "Brazil", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10526, + "codeIataAirport": "GXH", + "codeIataCity": null, + "codeIcaoAirport": "ZLXH", + "codeIso2Country": "CN", + "geonameId": "8521364", + "latitudeAirport": 34.8105, + "longitudeAirport": 102.6447, + "nameAirport": "Gannan Xiahe Airport\r\n", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10527, + "codeIataAirport": "HCJ", + "codeIataCity": null, + "codeIcaoAirport": "ZGHC", + "codeIso2Country": "CN", + "geonameId": null, + "latitudeAirport": 24.805, + "longitudeAirport": 107.6997, + "nameAirport": "Hechi Jinchengjiang Airport\r\n", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10528, + "codeIataAirport": "HDB", + "codeIataCity": null, + "codeIcaoAirport": "EDIU", + "codeIso2Country": "DE", + "geonameId": "997156", + "latitudeAirport": 49.393333, + "longitudeAirport": 8.6525, + "nameAirport": "Heidelberg Airport", + "nameCountry": "Germany", + "phone": null, + "timezone": null + }, + { + "GMT": "0", + "airportId": 10529, + "codeIataAirport": "HLE", + "codeIataCity": null, + "codeIcaoAirport": "FHSH", + "codeIso2Country": "GB", + "geonameId": "11126251", + "latitudeAirport": -15.957725, + "longitudeAirport": -5.645943, + "nameAirport": "St. Helena Airport\r\n", + "nameCountry": "United Kingdom", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10530, + "codeIataAirport": "HMP", + "codeIataCity": null, + "codeIcaoAirport": "KHMP", + "codeIso2Country": "US", + "geonameId": "4199556", + "latitudeAirport": 33.389167, + "longitudeAirport": -84.332222, + "nameAirport": "Hartsfield-Jackson Atlanta International Airport", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10531, + "codeIataAirport": "HPG", + "codeIataCity": null, + "codeIcaoAirport": "ZHSN", + "codeIso2Country": "CN", + "geonameId": "8594743", + "latitudeAirport": 31.626, + "longitudeAirport": 110.34, + "nameAirport": "Shennongjia Hongping Airport\r\n", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10532, + "codeIataAirport": "HUO", + "codeIataCity": null, + "codeIcaoAirport": "ZBHZ", + "codeIso2Country": "CN", + "geonameId": "11185240", + "latitudeAirport": 45.487222, + "longitudeAirport": 119.407222, + "nameAirport": "Holingol Huolinhe Airport\r\n", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10533, + "codeIataAirport": "HWY", + "codeIataCity": null, + "codeIcaoAirport": "KHWY", + "codeIso2Country": "US", + "geonameId": "4792269", + "latitudeAirport": 38.586389, + "longitudeAirport": -77.710556, + "nameAirport": "Warrenton–Fauquier Airport", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "5", + "airportId": 10534, + "codeIataAirport": "IFU", + "codeIataCity": null, + "codeIcaoAirport": "VREI", + "codeIso2Country": "MV", + "geonameId": "10943305", + "latitudeAirport": 5.7083, + "longitudeAirport": 73.025, + "nameAirport": "Ifuru Airport\r\n", + "nameCountry": "Maldives", + "phone": null, + "timezone": null + }, + { + "GMT": "-3", + "airportId": 10535, + "codeIataAirport": "JRT", + "codeIataCity": null, + "codeIcaoAirport": "SNRJ", + "codeIso2Country": "BR", + "geonameId": null, + "latitudeAirport": -2.186667, + "longitudeAirport": -56.090278, + "nameAirport": "Juruti Airport ", + "nameCountry": "Brazil", + "phone": null, + "timezone": null + }, + { + "GMT": "-3", + "airportId": 10536, + "codeIataAirport": "JTN", + "codeIataCity": null, + "codeIcaoAirport": "SDIM", + "codeIso2Country": "BR", + "geonameId": null, + "latitudeAirport": -24.164722, + "longitudeAirport": -46.785556, + "nameAirport": "Antônio Ribeiro Nogueira Jr. State Airport ", + "nameCountry": "Brazil", + "phone": null, + "timezone": null + }, + { + "GMT": "7", + "airportId": 10537, + "codeIataAirport": "KJT", + "codeIataCity": null, + "codeIcaoAirport": "WICA", + "codeIso2Country": "ID", + "geonameId": "11778474", + "latitudeAirport": -6.669167, + "longitudeAirport": 108.191111, + "nameAirport": "Kertajati International Airport", + "nameCountry": "Indonesia", + "phone": null, + "timezone": null + }, + { + "GMT": "0", + "airportId": 10538, + "codeIataAirport": "KRH", + "codeIataCity": null, + "codeIcaoAirport": "EGKR", + "codeIso2Country": "GB", + "geonameId": "7668209", + "latitudeAirport": 51.2136001587, + "longitudeAirport": 0.1386110038, + "nameAirport": "Redhill Aerodrome\r\n", + "nameCountry": "United Kingdom", + "phone": null, + "timezone": null + }, + { + "GMT": "-6", + "airportId": 10539, + "codeIataAirport": "LLQ", + "codeIataCity": null, + "codeIcaoAirport": "KLLQ", + "codeIso2Country": "US", + "geonameId": "4122023", + "latitudeAirport": 33.638611, + "longitudeAirport": -91.751111, + "nameAirport": "Monticello Municipal Airport", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "3", + "airportId": 10540, + "codeIataAirport": "NPY", + "codeIataCity": null, + "codeIcaoAirport": "HTMP", + "codeIso2Country": "TZ", + "geonameId": "8555863", + "latitudeAirport": -6.355556, + "longitudeAirport": 31.080556, + "nameAirport": "Mpanda Airport", + "nameCountry": "Tanzania", + "phone": null, + "timezone": null + }, + { + "GMT": "3", + "airportId": 10541, + "codeIataAirport": "NUM", + "codeIataCity": null, + "codeIcaoAirport": "OENN", + "codeIso2Country": "SA", + "geonameId": null, + "latitudeAirport": 27.925, + "longitudeAirport": 35.29, + "nameAirport": "Neom Bay Airport ", + "nameCountry": "Saudi Arabia", + "phone": null, + "timezone": null + }, + { + "GMT": "-6", + "airportId": 10542, + "codeIataAirport": "OFF", + "codeIataCity": null, + "codeIcaoAirport": "KOFF", + "codeIso2Country": "US", + "geonameId": "5074379", + "latitudeAirport": 41.1183013916, + "longitudeAirport": -95.9124984741, + "nameAirport": "Offutt Air Force Base\r\n", + "nameCountry": "United States\r\n", + "phone": null, + "timezone": null + }, + { + "GMT": "4", + "airportId": 10543, + "codeIataAirport": "OHS", + "codeIataCity": null, + "codeIcaoAirport": "OOSH", + "codeIso2Country": "OM", + "geonameId": "10943321", + "latitudeAirport": 24.38604, + "longitudeAirport": 56.62541, + "nameAirport": "Sohar Airport", + "nameCountry": "Oman", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10544, + "codeIataAirport": "PVL", + "codeIataCity": null, + "codeIcaoAirport": "KPBX", + "codeIso2Country": "US", + "geonameId": "4304231", + "latitudeAirport": 37.5617981, + "longitudeAirport": -82.56639862, + "nameAirport": "Pike County-Hatcher Field\r\n", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "3.3", + "airportId": 10545, + "codeIataAirport": "QAO", + "codeIataCity": null, + "codeIcaoAirport": "AT17", + "codeIso2Country": "AQ", + "geonameId": null, + "latitudeAirport": -70.821517, + "longitudeAirport": 11.643345, + "nameAirport": "Novo Runway", + "nameCountry": "Antarctica", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10546, + "codeIataAirport": "QEB", + "codeIataCity": null, + "codeIcaoAirport": "EPBC", + "codeIso2Country": "PL", + "geonameId": null, + "latitudeAirport": 52.2685012817, + "longitudeAirport": 20.9109992981, + "nameAirport": "Warsaw Babice Airport", + "nameCountry": "Poland", + "phone": null, + "timezone": null + }, + { + "GMT": "0", + "airportId": 10547, + "codeIataAirport": "QEE", + "codeIataCity": null, + "codeIcaoAirport": "EGTR", + "codeIso2Country": "GB", + "geonameId": "7668213", + "latitudeAirport": 51.6557998657, + "longitudeAirport": -0.3258329928, + "nameAirport": "London Elstree Aerodrome", + "nameCountry": "United Kingdom", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10548, + "codeIataAirport": "QEH", + "codeIataCity": null, + "codeIcaoAirport": "LKHK", + "codeIso2Country": "CZ", + "geonameId": "11711192", + "latitudeAirport": 50.253201, + "longitudeAirport": 15.8452, + "nameAirport": "Hradec Kralove Airport", + "nameCountry": "Czechia", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10549, + "codeIataAirport": "QEI", + "codeIataCity": null, + "codeIcaoAirport": "EPML", + "codeIso2Country": "PL", + "geonameId": "8532050", + "latitudeAirport": 50.32215, + "longitudeAirport": 21.46239, + "nameAirport": "Mielec Airport", + "nameCountry": "Poland", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10550, + "codeIataAirport": "QEM", + "codeIataCity": null, + "codeIcaoAirport": "ESSN", + "codeIso2Country": "SE", + "geonameId": null, + "latitudeAirport": 59.73279953, + "longitudeAirport": 18.6963996887, + "nameAirport": "Norrtalje Mellingeholms Airport", + "nameCountry": "Sweden", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10551, + "codeIataAirport": "QEN", + "codeIataCity": null, + "codeIcaoAirport": "ENAS", + "codeIso2Country": "SE", + "geonameId": "6296720", + "latitudeAirport": 78.9274978638, + "longitudeAirport": 11.8743, + "nameAirport": "Ny-Alesund Hamnerabben Airport", + "nameCountry": "Sweden", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10552, + "codeIataAirport": "QEO", + "codeIataCity": null, + "codeIcaoAirport": "EPKW", + "codeIso2Country": "PL", + "geonameId": null, + "latitudeAirport": 49.9399986, + "longitudeAirport": 19.0219994, + "nameAirport": "Bielsko-Bialo Kaniow Airfield", + "nameCountry": "Poland", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10553, + "codeIataAirport": "QES", + "codeIataCity": null, + "codeIcaoAirport": "ENSA", + "codeIso2Country": "NO", + "geonameId": null, + "latitudeAirport": 77.8969444, + "longitudeAirport": 16.725, + "nameAirport": "Svea Airport", + "nameCountry": "Norway", + "phone": null, + "timezone": null + }, + { + "GMT": "13", + "airportId": 10554, + "codeIataAirport": "QET", + "codeIataCity": null, + "codeIcaoAirport": "AT27", + "codeIso2Country": "AQ", + "geonameId": "6620460", + "latitudeAirport": -71.955389, + "longitudeAirport": 2.467397, + "nameAirport": "Troll Airfield", + "nameCountry": "Antarctica", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10555, + "codeIataAirport": "QEY", + "codeIataCity": null, + "codeIcaoAirport": "LHNY", + "codeIso2Country": "HU", + "geonameId": "6299524", + "latitudeAirport": 47.98389, + "longitudeAirport": 21.69232, + "nameAirport": "Nyiregyhaza Airport", + "nameCountry": "Hungary", + "phone": null, + "timezone": null + }, + { + "GMT": "-7", + "airportId": 10556, + "codeIataAirport": "QQJ", + "codeIataCity": null, + "codeIcaoAirport": "KMRJ", + "codeIso2Country": "US", + "geonameId": null, + "latitudeAirport": 46.52222222, + "longitudeAirport": -114.05694444, + "nameAirport": "Mineral Point Iowa County Airport", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10557, + "codeIataAirport": "RDO", + "codeIataCity": null, + "codeIcaoAirport": "EPRA", + "codeIso2Country": "PL", + "geonameId": "760772", + "latitudeAirport": 51.3891983032, + "longitudeAirport": 21.213300705, + "nameAirport": "Radom Airport\r\n", + "nameCountry": "Poland", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10558, + "codeIataAirport": "RQA", + "codeIataCity": null, + "codeIcaoAirport": "ZWRQ", + "codeIso2Country": "CN", + "geonameId": null, + "latitudeAirport": 38.974722, + "longitudeAirport": 88.008333, + "nameAirport": "Ruoqiang Loulan Airport ", + "nameCountry": "China", + "phone": null, + "timezone": null + }, + { + "GMT": "-3", + "airportId": 10559, + "codeIataAirport": "RRJ", + "codeIataCity": null, + "codeIcaoAirport": "SBJR", + "codeIso2Country": "BR", + "geonameId": "7538074", + "latitudeAirport": -22.9875, + "longitudeAirport": -43.37, + "nameAirport": "Jacarepaguá–Roberto Marinho Airport", + "nameCountry": "Brazil", + "phone": null, + "timezone": null + }, + { + "GMT": "5", + "airportId": 10560, + "codeIataAirport": "RUL", + "codeIataCity": null, + "codeIcaoAirport": "VRQM", + "codeIso2Country": "MV", + "geonameId": "12128609", + "latitudeAirport": 0.336667, + "longitudeAirport": 73.511389, + "nameAirport": "Maavarulu Airport", + "nameCountry": "Maldives", + "phone": null, + "timezone": null + }, + { + "GMT": "2", + "airportId": 10561, + "codeIataAirport": "TIP", + "codeIataCity": null, + "codeIcaoAirport": "HLLT", + "codeIso2Country": "LY", + "geonameId": "6297332", + "latitudeAirport": 32.6635017395, + "longitudeAirport": 13.1590003967, + "nameAirport": "Tripoli International Airport\r\n", + "nameCountry": "Libya", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10562, + "codeIataAirport": "TTX", + "codeIataCity": null, + "codeIcaoAirport": "YTST", + "codeIso2Country": "AU", + "geonameId": "8644119", + "latitudeAirport": -14.089722, + "longitudeAirport": 126.380833, + "nameAirport": "Mungalalu Truscott Airbase", + "nameCountry": "Australia", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10563, + "codeIataAirport": "UBN", + "codeIataCity": null, + "codeIcaoAirport": "ZMCK", + "codeIso2Country": "MN", + "geonameId": null, + "latitudeAirport": 47.65, + "longitudeAirport": 106.818889, + "nameAirport": "New Ulaanbaator International Airport", + "nameCountry": "Mongolia", + "phone": null, + "timezone": null + }, + { + "GMT": "6", + "airportId": 10564, + "codeIataAirport": "USJ", + "codeIataCity": null, + "codeIcaoAirport": "UAAL", + "codeIso2Country": "KZ", + "geonameId": "11473916", + "latitudeAirport": 46.190278, + "longitudeAirport": 80.831389, + "nameAirport": "Usharal Airport", + "nameCountry": "Kazakhstan", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10565, + "codeIataAirport": "UTC", + "codeIataCity": null, + "codeIcaoAirport": "EHSB", + "codeIso2Country": "NL", + "geonameId": "6301531", + "latitudeAirport": 52.1273002625, + "longitudeAirport": 5.2761898041, + "nameAirport": "Soesterberg Air Base\r\n", + "nameCountry": "Netherlands", + "phone": null, + "timezone": null + }, + { + "GMT": "-5", + "airportId": 10566, + "codeIataAirport": "VKX", + "codeIataCity": null, + "codeIcaoAirport": "KVKX", + "codeIso2Country": "US", + "geonameId": "4366002", + "latitudeAirport": 38.7486417, + "longitudeAirport": -76.9559222, + "nameAirport": "Potomac Airfield", + "nameCountry": "United States", + "phone": null, + "timezone": null + }, + { + "GMT": "8", + "airportId": 10567, + "codeIataAirport": "WRN", + "codeIataCity": null, + "codeIcaoAirport": "YWDG", + "codeIso2Country": "AU", + "geonameId": "8555625", + "latitudeAirport": -30.031667, + "longitudeAirport": 119.39, + "nameAirport": "Windarling Airport", + "nameCountry": "Australia", + "phone": null, + "timezone": null + }, + { + "GMT": "0", + "airportId": 10568, + "codeIataAirport": "WXF", + "codeIataCity": null, + "codeIcaoAirport": "EGVT", + "codeIso2Country": "GB", + "geonameId": "7730475", + "latitudeAirport": 51.971901, + "longitudeAirport": 0.509444, + "nameAirport": "Wethersfield Airport", + "nameCountry": "United Kingdom", + "phone": null, + "timezone": null + }, + { + "GMT": "1", + "airportId": 10569, + "codeIataAirport": "XCD", + "codeIataCity": null, + "codeIcaoAirport": "LFLH", + "codeIso2Country": "FR", + "geonameId": "6694615", + "latitudeAirport": 46.826111, + "longitudeAirport": 4.8175, + "nameAirport": "Chalon – Champforgeuil Airfield", + "nameCountry": "France", + "phone": null, + "timezone": null + }, + { + "GMT": "4", + "airportId": 10570, + "codeIataAirport": "ZDY", + "codeIataCity": null, + "codeIcaoAirport": "Dalma Island", + "codeIso2Country": "AE", + "geonameId": "8435661", + "latitudeAirport": 24.5033833, + "longitudeAirport": 52.3360528, + "nameAirport": "Dalma Airport", + "nameCountry": "United Arab Emirates", + "phone": null, + "timezone": null + } +] \ No newline at end of file diff --git a/apps/api/data/cities.json b/apps/api/data/cities.json new file mode 100644 index 0000000..ea4f403 --- /dev/null +++ b/apps/api/data/cities.json @@ -0,0 +1,103072 @@ +[ + { + "GMT": "-10", + "cityId": 1, + "codeIataCity": "AAA", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -17.05, + "longitudeCity": -145.41667, + "nameCity": "Anaa", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "10", + "cityId": 2, + "codeIataCity": "AAB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -26.7, + "longitudeCity": 141.04167, + "nameCity": "Arrabury", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "cityId": 3, + "codeIataCity": "AAC", + "codeIso2Country": "EG", + "geonameId": 361546, + "latitudeCity": 31.133333, + "longitudeCity": 33.75, + "nameCity": "El Arish", + "timezone": "Africa/Cairo" + }, + { + "GMT": "1", + "cityId": 4, + "codeIataCity": "AAE", + "codeIso2Country": "DZ", + "geonameId": 2506999, + "latitudeCity": 36.821392, + "longitudeCity": 7.811857, + "nameCity": "Annaba", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-6", + "cityId": 5, + "codeIataCity": "AAF", + "codeIso2Country": "US", + "geonameId": 4167695, + "latitudeCity": 29.733334, + "longitudeCity": -84.98333, + "nameCity": "Apalachicola", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 6, + "codeIataCity": "AAG", + "codeIso2Country": "BR", + "geonameId": 3471795, + "latitudeCity": -24.103611, + "longitudeCity": -49.79, + "nameCity": "Arapoti", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "cityId": 7, + "codeIataCity": "AAH", + "codeIso2Country": "DE", + "geonameId": 3247449, + "latitudeCity": 50.775438, + "longitudeCity": 6.08151, + "nameCity": "Aachen", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-3", + "cityId": 8, + "codeIataCity": "AAI", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -12.916667, + "longitudeCity": -46.933334, + "nameCity": "Arraias", + "timezone": "America/Araguaina" + }, + { + "GMT": "-3", + "cityId": 9, + "codeIataCity": "AAJ", + "codeIso2Country": "SR", + "geonameId": 0, + "latitudeCity": 3.9, + "longitudeCity": -55.36667, + "nameCity": "Awaradam", + "timezone": "America/Paramaribo" + }, + { + "GMT": "12", + "cityId": 10, + "codeIataCity": "AAK", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": 0.166667, + "longitudeCity": 173.58333, + "nameCity": "Aranuka", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "1", + "cityId": 11, + "codeIataCity": "AAL", + "codeIso2Country": "DK", + "geonameId": 2624886, + "latitudeCity": 57.028811, + "longitudeCity": 9.917771, + "nameCity": "Aalborg", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "2", + "cityId": 12, + "codeIataCity": "AAM", + "codeIso2Country": "ZA", + "geonameId": 954955, + "latitudeCity": -24.8, + "longitudeCity": 31.533333, + "nameCity": "Mala Mala", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "4", + "cityId": 13, + "codeIataCity": "AAN", + "codeIso2Country": "AE", + "geonameId": 292913, + "latitudeCity": 24.2075, + "longitudeCity": 55.744722, + "nameCity": "Al Ain", + "timezone": "Asia/Dubai" + }, + { + "GMT": "-4", + "cityId": 14, + "codeIataCity": "AAO", + "codeIso2Country": "VE", + "geonameId": 3486270, + "latitudeCity": 9.431944, + "longitudeCity": -64.46389, + "nameCity": "Anaco", + "timezone": "America/Caracas" + }, + { + "GMT": "3", + "cityId": 15, + "codeIataCity": "AAQ", + "codeIso2Country": "RU", + "geonameId": 582182, + "latitudeCity": 44.9, + "longitudeCity": 37.316666, + "nameCity": "Anapa", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "cityId": 16, + "codeIataCity": "AAR", + "codeIso2Country": "DK", + "geonameId": 2611664, + "latitudeCity": 56.162939, + "longitudeCity": 10.203921, + "nameCity": "Aarhus", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "9", + "cityId": 17, + "codeIataCity": "AAS", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.916667, + "longitudeCity": 139.25, + "nameCity": "Apalapsili", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "cityId": 18, + "codeIataCity": "AAT", + "codeIso2Country": "CN", + "geonameId": 1529651, + "latitudeCity": 47.750362, + "longitudeCity": 88.08444, + "nameCity": "Altay", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "13", + "cityId": 19, + "codeIataCity": "AAU", + "codeIso2Country": "WS", + "geonameId": 4035092, + "latitudeCity": -13.458333, + "longitudeCity": -172.6, + "nameCity": "Asau", + "timezone": "Pacific/Apia" + }, + { + "GMT": "8", + "cityId": 20, + "codeIataCity": "AAV", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 6.333333, + "longitudeCity": 124.76667, + "nameCity": "Surallah", + "timezone": "Asia/Manila" + }, + { + "GMT": "5", + "cityId": 21, + "codeIataCity": "AAW", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 34.2, + "longitudeCity": 73.25, + "nameCity": "Abbottabad", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-3", + "cityId": 22, + "codeIataCity": "AAX", + "codeIso2Country": "BR", + "geonameId": 3471691, + "latitudeCity": -19.568056, + "longitudeCity": -46.92917, + "nameCity": "Araxa", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "3", + "cityId": 23, + "codeIataCity": "AAY", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 16.19596, + "longitudeCity": 52.173256, + "nameCity": "Al Ghaydah", + "timezone": "Asia/Aden" + }, + { + "GMT": "-6", + "cityId": 24, + "codeIataCity": "AAZ", + "codeIso2Country": "GT", + "geonameId": 3599699, + "latitudeCity": 14.87, + "longitudeCity": -91.5, + "nameCity": "Quetzaltenango", + "timezone": "America/Guatemala" + }, + { + "GMT": "7", + "cityId": 25, + "codeIataCity": "ABA", + "codeIso2Country": "RU", + "geonameId": 1512236, + "latitudeCity": 53.716667, + "longitudeCity": 91.5, + "nameCity": "Abakan", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "0", + "cityId": 26, + "codeIataCity": "ABB", + "codeIso2Country": "NG", + "geonameId": 2640729, + "latitudeCity": 51.666668, + "longitudeCity": -1.283333, + "nameCity": "Asaba", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 27, + "codeIataCity": "ABC", + "codeIso2Country": "ES", + "geonameId": 2522258, + "latitudeCity": 38.997652, + "longitudeCity": -1.86007, + "nameCity": "Albacete", + "timezone": "Europe/Madrid" + }, + { + "GMT": "3.30", + "cityId": 28, + "codeIataCity": "ABD", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 30.363905, + "longitudeCity": 48.226597, + "nameCity": "Abadan", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-5", + "cityId": 29, + "codeIataCity": "ABE", + "codeIso2Country": "US", + "geonameId": 5178127, + "latitudeCity": 40.651573, + "longitudeCity": -75.434364, + "nameCity": "Allentown", + "timezone": "America/New_York" + }, + { + "GMT": "12", + "cityId": 30, + "codeIataCity": "ABF", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": 1.670833, + "longitudeCity": 173.30417, + "nameCity": "Abaiang", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "10", + "cityId": 31, + "codeIataCity": "ABG", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.666668, + "longitudeCity": 143.2, + "nameCity": "Abingdon", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 32, + "codeIataCity": "ABH", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -23.65, + "longitudeCity": 146.63333, + "nameCity": "Alpha", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "cityId": 33, + "codeIataCity": "ABI", + "codeIso2Country": "US", + "geonameId": 4669635, + "latitudeCity": 32.448736, + "longitudeCity": -99.733144, + "nameCity": "Abilene", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 34, + "codeIataCity": "ABJ", + "codeIso2Country": "CI", + "geonameId": 2293538, + "latitudeCity": 5.254879, + "longitudeCity": -3.933015, + "nameCity": "Abidjan", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "3", + "cityId": 35, + "codeIataCity": "ABK", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 6.733889, + "longitudeCity": 44.26611, + "nameCity": "Kabri Dar", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-9", + "cityId": 36, + "codeIataCity": "ABL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 67.0875, + "longitudeCity": -157.84584, + "nameCity": "Ambler", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 37, + "codeIataCity": "ABM", + "codeIso2Country": "AU", + "geonameId": 2177023, + "latitudeCity": -10.942619, + "longitudeCity": 142.45033, + "nameCity": "Bamaga", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "cityId": 38, + "codeIataCity": "ABN", + "codeIso2Country": "SR", + "geonameId": 3384792, + "latitudeCity": 5.5, + "longitudeCity": -54.083332, + "nameCity": "Albina", + "timezone": "America/Paramaribo" + }, + { + "GMT": "0", + "cityId": 39, + "codeIataCity": "ABO", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 5.433333, + "longitudeCity": -3.216667, + "nameCity": "Aboisso", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "10", + "cityId": 40, + "codeIataCity": "ABP", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.066667, + "longitudeCity": 141.1, + "nameCity": "Atkamba", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "cityId": 41, + "codeIataCity": "ABQ", + "codeIso2Country": "US", + "geonameId": 5454711, + "latitudeCity": 35.049625, + "longitudeCity": -106.617195, + "nameCity": "Albuquerque", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 42, + "codeIataCity": "ABR", + "codeIso2Country": "US", + "geonameId": 5225857, + "latitudeCity": 45.4525, + "longitudeCity": -98.42611, + "nameCity": "Aberdeen", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 43, + "codeIataCity": "ABS", + "codeIso2Country": "EG", + "geonameId": 362041, + "latitudeCity": 22.367567, + "longitudeCity": 31.609774, + "nameCity": "Abu Simbel", + "timezone": "Africa/Cairo" + }, + { + "GMT": "3", + "cityId": 44, + "codeIataCity": "ABT", + "codeIso2Country": "SA", + "geonameId": 0, + "latitudeCity": 20.29401, + "longitudeCity": 41.64002, + "nameCity": "Al-Baha", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "8", + "cityId": 45, + "codeIataCity": "ABU", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -9.133333, + "longitudeCity": 124.88333, + "nameCity": "Atambua", + "timezone": "Asia/Makassar" + }, + { + "GMT": "1", + "cityId": 46, + "codeIataCity": "ABV", + "codeIso2Country": "NG", + "geonameId": 0, + "latitudeCity": 9.004614, + "longitudeCity": 7.270447, + "nameCity": "Abuja", + "timezone": "Africa/Lagos" + }, + { + "GMT": "10", + "cityId": 47, + "codeIataCity": "ABW", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -10.183333, + "longitudeCity": 148.7, + "nameCity": "Abau", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 48, + "codeIataCity": "ABX", + "codeIso2Country": "AU", + "geonameId": 2178174, + "latitudeCity": -36.069626, + "longitudeCity": 146.95453, + "nameCity": "Albury", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-5", + "cityId": 49, + "codeIataCity": "ABY", + "codeIso2Country": "US", + "geonameId": 4179320, + "latitudeCity": 31.578507, + "longitudeCity": -84.155741, + "nameCity": "Albany", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 50, + "codeIataCity": "ABZ", + "codeIso2Country": "GB", + "geonameId": 2657832, + "latitudeCity": 57.147492, + "longitudeCity": -2.095397, + "nameCity": "Aberdeen", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "cityId": 51, + "codeIataCity": "ACA", + "codeIso2Country": "MX", + "geonameId": 3533462, + "latitudeCity": 16.762403, + "longitudeCity": -99.75459, + "nameCity": "Acapulco", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-5", + "cityId": 52, + "codeIataCity": "ACB", + "codeIso2Country": "US", + "geonameId": 4985583, + "latitudeCity": 44.983334, + "longitudeCity": -85.21667, + "nameCity": "Bellaire", + "timezone": "America/Detroit" + }, + { + "GMT": "0", + "cityId": 53, + "codeIataCity": "ACC", + "codeIso2Country": "GH", + "geonameId": 2306104, + "latitudeCity": 5.60737, + "longitudeCity": -0.171769, + "nameCity": "Accra", + "timezone": "Africa/Accra" + }, + { + "GMT": "-5", + "cityId": 54, + "codeIataCity": "ACD", + "codeIso2Country": "CO", + "geonameId": 3665580, + "latitudeCity": 8.516667, + "longitudeCity": -77.3, + "nameCity": "Acandi", + "timezone": "America/Bogota" + }, + { + "GMT": "0", + "cityId": 55, + "codeIataCity": "ACE", + "codeIso2Country": "ES", + "geonameId": 6355013, + "latitudeCity": 28.950668, + "longitudeCity": -13.609059, + "nameCity": "Arrecife", + "timezone": "Atlantic/Canary" + }, + { + "GMT": "1", + "cityId": 56, + "codeIataCity": "ACH", + "codeIso2Country": "CH", + "geonameId": 2661775, + "latitudeCity": 47.483334, + "longitudeCity": 9.566667, + "nameCity": "Altenrhein", + "timezone": "Europe/Zurich" + }, + { + "GMT": "0", + "cityId": 57, + "codeIataCity": "ACI", + "codeIso2Country": "GG", + "geonameId": 6692041, + "latitudeCity": 49.709347, + "longitudeCity": -2.215369, + "nameCity": "Alderney", + "timezone": "Europe/London" + }, + { + "GMT": "5.30", + "cityId": 58, + "codeIataCity": "ACJ", + "codeIso2Country": "LK", + "geonameId": 1251081, + "latitudeCity": 8.35, + "longitudeCity": 80.38333, + "nameCity": "Anuradhapura", + "timezone": "Asia/Colombo" + }, + { + "GMT": "-5", + "cityId": 59, + "codeIataCity": "ACK", + "codeIso2Country": "US", + "geonameId": 4944903, + "latitudeCity": 41.256668, + "longitudeCity": -70.05972, + "nameCity": "Nantucket", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 60, + "codeIataCity": "ACL", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 4.75, + "longitudeCity": -73.0, + "nameCity": "Aguaclara", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 61, + "codeIataCity": "ACM", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": -2.0, + "longitudeCity": -71.833336, + "nameCity": "Arica", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 62, + "codeIataCity": "ACN", + "codeIso2Country": "MX", + "geonameId": 3992619, + "latitudeCity": 29.3, + "longitudeCity": -100.916664, + "nameCity": "Acuna", + "timezone": "America/Matamoros" + }, + { + "GMT": "3.30", + "cityId": 63, + "codeIataCity": "ACP", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 37.347244, + "longitudeCity": 46.145115, + "nameCity": "Sahand", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-5", + "cityId": 64, + "codeIataCity": "ACR", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": -0.383333, + "longitudeCity": -72.3, + "nameCity": "Araracuara", + "timezone": "America/Bogota" + }, + { + "GMT": "7", + "cityId": 65, + "codeIataCity": "ACS", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 56.266666, + "longitudeCity": 90.566666, + "nameCity": "Achinsk", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "-6", + "cityId": 66, + "codeIataCity": "ACT", + "codeIso2Country": "US", + "geonameId": 4739526, + "latitudeCity": 31.549333, + "longitudeCity": -97.14667, + "nameCity": "Waco", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 67, + "codeIataCity": "ACU", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 9.576389, + "longitudeCity": -79.72444, + "nameCity": "Achutupo", + "timezone": "America/Panama" + }, + { + "GMT": "-8", + "cityId": 68, + "codeIataCity": "ACV", + "codeIso2Country": "US", + "geonameId": 5558953, + "latitudeCity": 40.970913, + "longitudeCity": -124.106926, + "nameCity": "Arcata", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "cityId": 69, + "codeIataCity": "ACX", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 25.085556, + "longitudeCity": 104.95944, + "nameCity": "Xingyi", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3.30", + "cityId": 70, + "codeIataCity": "ACZ", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 31.087694, + "longitudeCity": 61.542244, + "nameCity": "Zabol", + "timezone": "Asia/Tehran" + }, + { + "GMT": "3", + "cityId": 71, + "codeIataCity": "ADA", + "codeIso2Country": "TR", + "geonameId": 325363, + "latitudeCity": 37.0, + "longitudeCity": 35.321333, + "nameCity": "Adana", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "10", + "cityId": 72, + "codeIataCity": "ADC", + "codeIso2Country": "PG", + "geonameId": 2100827, + "latitudeCity": -7.133333, + "longitudeCity": 145.73334, + "nameCity": "Andakombe", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 73, + "codeIataCity": "ADD", + "codeIso2Country": "ET", + "geonameId": 344979, + "latitudeCity": 8.983759, + "longitudeCity": 38.7959, + "nameCity": "Addis Ababa", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "3", + "cityId": 74, + "codeIataCity": "ADE", + "codeIso2Country": "YE", + "geonameId": 415189, + "latitudeCity": 12.826116, + "longitudeCity": 45.037537, + "nameCity": "Aden", + "timezone": "Asia/Aden" + }, + { + "GMT": "3", + "cityId": 75, + "codeIataCity": "ADF", + "codeIso2Country": "TR", + "geonameId": 325330, + "latitudeCity": 37.75, + "longitudeCity": 38.266666, + "nameCity": "Adiyaman", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-5", + "cityId": 76, + "codeIataCity": "ADG", + "codeIso2Country": "US", + "geonameId": 4917712, + "latitudeCity": 41.9, + "longitudeCity": -84.03333, + "nameCity": "Adrian", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "9", + "cityId": 77, + "codeIataCity": "ADH", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 58.6, + "longitudeCity": 125.4, + "nameCity": "Aldan", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "2", + "cityId": 78, + "codeIataCity": "ADI", + "codeIso2Country": "NA", + "geonameId": 3352844, + "latitudeCity": -22.4, + "longitudeCity": 15.0, + "nameCity": "Arandis", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-10", + "cityId": 79, + "codeIataCity": "ADK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 51.88278, + "longitudeCity": -176.64473, + "nameCity": "Adak Island", + "timezone": "America/Adak" + }, + { + "GMT": "9.30", + "cityId": 80, + "codeIataCity": "ADL", + "codeIso2Country": "AU", + "geonameId": 2078025, + "latitudeCity": -34.928621, + "longitudeCity": 138.599959, + "nameCity": "Adelaide", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-6", + "cityId": 81, + "codeIataCity": "ADM", + "codeIso2Country": "US", + "geonameId": 4529469, + "latitudeCity": 34.303055, + "longitudeCity": -97.01945, + "nameCity": "Ardmore", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 82, + "codeIataCity": "ADN", + "codeIso2Country": "CO", + "geonameId": 3674962, + "latitudeCity": 5.666667, + "longitudeCity": -75.933334, + "nameCity": "Andes", + "timezone": "America/Bogota" + }, + { + "GMT": "9.30", + "cityId": 83, + "codeIataCity": "ADO", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -31.016666, + "longitudeCity": 137.15, + "nameCity": "Andamooka", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "5.30", + "cityId": 84, + "codeIataCity": "ADP", + "codeIso2Country": "LK", + "geonameId": 1251081, + "latitudeCity": 7.336389, + "longitudeCity": 81.625275, + "nameCity": "Ampara", + "timezone": "Asia/Colombo" + }, + { + "GMT": "-9", + "cityId": 85, + "codeIataCity": "ADQ", + "codeIso2Country": "US", + "geonameId": 5866583, + "latitudeCity": 57.79, + "longitudeCity": -152.407222, + "nameCity": "Kodiak", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 86, + "codeIataCity": "ADR", + "codeIso2Country": "US", + "geonameId": 4588718, + "latitudeCity": 33.45, + "longitudeCity": -79.566666, + "nameCity": "Andrews", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 87, + "codeIataCity": "ADT", + "codeIso2Country": "US", + "geonameId": 4529096, + "latitudeCity": 34.8, + "longitudeCity": -96.666664, + "nameCity": "Ada", + "timezone": "America/Chicago" + }, + { + "GMT": "3.30", + "cityId": 88, + "codeIataCity": "ADU", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 38.323826, + "longitudeCity": 48.42125, + "nameCity": "Ardabil", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-5", + "cityId": 89, + "codeIataCity": "ADW", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.816666, + "longitudeCity": -76.86667, + "nameCity": "Camp Springs", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 90, + "codeIataCity": "ADX", + "codeIso2Country": "GB", + "geonameId": 2644581, + "latitudeCity": 56.36667, + "longitudeCity": -2.866667, + "nameCity": "St Andrews", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "cityId": 91, + "codeIataCity": "ADY", + "codeIso2Country": "ZA", + "geonameId": 981827, + "latitudeCity": -22.666668, + "longitudeCity": 29.05, + "nameCity": "Alldays", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-5", + "cityId": 92, + "codeIataCity": "ADZ", + "codeIso2Country": "CO", + "geonameId": 3670218, + "latitudeCity": 12.586047, + "longitudeCity": -81.70221, + "nameCity": "San Andres Island", + "timezone": "America/Bogota" + }, + { + "GMT": "12", + "cityId": 93, + "codeIataCity": "AEA", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": 0.483333, + "longitudeCity": 173.85, + "nameCity": "Abemama Atoll", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "8", + "cityId": 94, + "codeIataCity": "AEB", + "codeIso2Country": "CN", + "geonameId": 1794330, + "latitudeCity": 23.71947, + "longitudeCity": 106.96777, + "nameCity": "Baise", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-9", + "cityId": 95, + "codeIataCity": "AED", + "codeIso2Country": "US", + "geonameId": 5879155, + "latitudeCity": 58.033333, + "longitudeCity": -152.9, + "nameCity": "Aleneva", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "cityId": 96, + "codeIataCity": "AEE", + "codeIso2Country": "SS", + "geonameId": 0, + "latitudeCity": 10.05667, + "longitudeCity": 32.96096, + "nameCity": "Adareil", + "timezone": "Africa/Juba" + }, + { + "GMT": "7", + "cityId": 97, + "codeIataCity": "AEG", + "codeIso2Country": "ID", + "geonameId": 1214618, + "latitudeCity": 1.399722, + "longitudeCity": 99.416664, + "nameCity": "Aek Godang", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "1", + "cityId": 98, + "codeIataCity": "AEH", + "codeIso2Country": "TD", + "geonameId": 0, + "latitudeCity": 13.851389, + "longitudeCity": 20.850834, + "nameCity": "Abeche", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "1", + "cityId": 99, + "codeIataCity": "AEI", + "codeIso2Country": "ES", + "geonameId": 2522013, + "latitudeCity": 36.1289, + "longitudeCity": -5.441301, + "nameCity": "Algeciras", + "timezone": "Europe/Madrid" + }, + { + "GMT": "10", + "cityId": 100, + "codeIataCity": "AEK", + "codeIso2Country": "PG", + "geonameId": 2100468, + "latitudeCity": -7.366667, + "longitudeCity": 146.28334, + "nameCity": "Aseki", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 101, + "codeIataCity": "AEL", + "codeIso2Country": "US", + "geonameId": 5016024, + "latitudeCity": 43.65, + "longitudeCity": -93.36667, + "nameCity": "Albert Lea", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 102, + "codeIataCity": "AEO", + "codeIso2Country": "MR", + "geonameId": 0, + "latitudeCity": 16.709167, + "longitudeCity": -9.635556, + "nameCity": "Aioun El Atrouss", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "3", + "cityId": 103, + "codeIataCity": "AER", + "codeIso2Country": "RU", + "geonameId": 491422, + "latitudeCity": 43.44884, + "longitudeCity": 39.941105, + "nameCity": "Sochi", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "cityId": 104, + "codeIataCity": "AES", + "codeIso2Country": "NO", + "geonameId": 3163392, + "latitudeCity": 62.559643, + "longitudeCity": 6.116605, + "nameCity": "Aalesund", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-9", + "cityId": 105, + "codeIataCity": "AET", + "codeIso2Country": "US", + "geonameId": 5879223, + "latitudeCity": 66.56167, + "longitudeCity": -152.65834, + "nameCity": "Allakaket", + "timezone": "America/Anchorage" + }, + { + "GMT": "3.30", + "cityId": 106, + "codeIataCity": "AEU", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 25.8875, + "longitudeCity": 55.041668, + "nameCity": "Abu Musa", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-6", + "cityId": 107, + "codeIataCity": "AEX", + "codeIso2Country": "US", + "geonameId": 4314550, + "latitudeCity": 31.311294, + "longitudeCity": -92.445137, + "nameCity": "Alexandria", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 108, + "codeIataCity": "AEY", + "codeIso2Country": "IS", + "geonameId": 2633274, + "latitudeCity": 65.654564, + "longitudeCity": -18.075068, + "nameCity": "Akureyri", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-3", + "cityId": 109, + "codeIataCity": "AFA", + "codeIso2Country": "AR", + "geonameId": 3836669, + "latitudeCity": -34.58917, + "longitudeCity": -68.40056, + "nameCity": "San Rafael", + "timezone": "America/Argentina/Mendoza" + }, + { + "GMT": "2", + "cityId": 110, + "codeIataCity": "AFD", + "codeIso2Country": "ZA", + "geonameId": 964432, + "latitudeCity": -33.583332, + "longitudeCity": 26.883333, + "nameCity": "Port Alfred", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-5", + "cityId": 111, + "codeIataCity": "AFI", + "codeIso2Country": "CO", + "geonameId": 3674962, + "latitudeCity": 6.916667, + "longitudeCity": -75.066666, + "nameCity": "Amalfi", + "timezone": "America/Bogota" + }, + { + "GMT": "-4", + "cityId": 112, + "codeIataCity": "AFL", + "codeIso2Country": "BR", + "geonameId": 6316343, + "latitudeCity": -9.872456, + "longitudeCity": -56.104767, + "nameCity": "Alta Floresta", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-5", + "cityId": 113, + "codeIataCity": "AFN", + "codeIso2Country": "US", + "geonameId": 5088061, + "latitudeCity": 42.833332, + "longitudeCity": -72.066666, + "nameCity": "Jaffrey", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 114, + "codeIataCity": "AFO", + "codeIso2Country": "US", + "geonameId": 5828648, + "latitudeCity": 42.733334, + "longitudeCity": -110.933334, + "nameCity": "Afton", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "cityId": 115, + "codeIataCity": "AFR", + "codeIso2Country": "PG", + "geonameId": 2101332, + "latitudeCity": -9.133333, + "longitudeCity": 148.38333, + "nameCity": "Afore", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5", + "cityId": 116, + "codeIataCity": "AFS", + "codeIso2Country": "UZ", + "geonameId": 0, + "latitudeCity": 41.61361, + "longitudeCity": 64.233055, + "nameCity": "Zarafshan", + "timezone": "Asia/Samarkand" + }, + { + "GMT": "11", + "cityId": 117, + "codeIataCity": "AFT", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -9.2, + "longitudeCity": 160.85, + "nameCity": "Afutara", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "3", + "cityId": 118, + "codeIataCity": "AFY", + "codeIso2Country": "TR", + "geonameId": 325303, + "latitudeCity": 38.733334, + "longitudeCity": 30.6, + "nameCity": "Afyon", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3.30", + "cityId": 119, + "codeIataCity": "AFZ", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 36.171513, + "longitudeCity": 57.60332, + "nameCity": "Sabzevar", + "timezone": "Asia/Tehran" + }, + { + "GMT": "0", + "cityId": 120, + "codeIataCity": "AGA", + "codeIso2Country": "MA", + "geonameId": 2561668, + "latitudeCity": 30.378326, + "longitudeCity": -9.555895, + "nameCity": "Agadir", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "9", + "cityId": 121, + "codeIataCity": "AGD", + "codeIso2Country": "ID", + "geonameId": 1636308, + "latitudeCity": -1.383333, + "longitudeCity": 133.86667, + "nameCity": "Anggi", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "cityId": 122, + "codeIataCity": "AGE", + "codeIso2Country": "DE", + "geonameId": 2814266, + "latitudeCity": 53.783333, + "longitudeCity": 7.916667, + "nameCity": "Wangerooge", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 123, + "codeIataCity": "AGF", + "codeIso2Country": "FR", + "geonameId": 3038634, + "latitudeCity": 44.17361, + "longitudeCity": 0.598611, + "nameCity": "Agen", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "cityId": 124, + "codeIataCity": "AGG", + "codeIso2Country": "PG", + "geonameId": 2100765, + "latitudeCity": -4.168611, + "longitudeCity": 144.07388, + "nameCity": "Angoram", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 125, + "codeIataCity": "AGH", + "codeIso2Country": "SE", + "geonameId": 2725900, + "latitudeCity": 56.2432, + "longitudeCity": 12.861509, + "nameCity": "Angelholm", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-3", + "cityId": 126, + "codeIataCity": "AGI", + "codeIso2Country": "SR", + "geonameId": 0, + "latitudeCity": 5.833333, + "longitudeCity": -56.833332, + "nameCity": "Wageningen", + "timezone": "America/Paramaribo" + }, + { + "GMT": "9", + "cityId": 127, + "codeIataCity": "AGJ", + "codeIso2Country": "JP", + "geonameId": 1856035, + "latitudeCity": 26.589722, + "longitudeCity": 127.23805, + "nameCity": "Aguni", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "10", + "cityId": 128, + "codeIataCity": "AGK", + "codeIso2Country": "PG", + "geonameId": 2095091, + "latitudeCity": -6.403333, + "longitudeCity": 143.84666, + "nameCity": "Kagua", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 129, + "codeIataCity": "AGL", + "codeIso2Country": "PG", + "geonameId": 2132313, + "latitudeCity": -9.340278, + "longitudeCity": 149.15527, + "nameCity": "Wanigela", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "cityId": 130, + "codeIataCity": "AGM", + "codeIso2Country": "GL", + "geonameId": 3424607, + "latitudeCity": 65.6, + "longitudeCity": -37.683334, + "nameCity": "Tasiilaq", + "timezone": "America/Godthab" + }, + { + "GMT": "-9", + "cityId": 131, + "codeIataCity": "AGN", + "codeIso2Country": "US", + "geonameId": 5844374, + "latitudeCity": 57.503887, + "longitudeCity": -134.58333, + "nameCity": "Angoon", + "timezone": "America/Juneau" + }, + { + "GMT": "-6", + "cityId": 132, + "codeIataCity": "AGO", + "codeIso2Country": "US", + "geonameId": 4115181, + "latitudeCity": 33.266666, + "longitudeCity": -93.23333, + "nameCity": "Magnolia", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 133, + "codeIataCity": "AGP", + "codeIso2Country": "ES", + "geonameId": 2514256, + "latitudeCity": 36.719648, + "longitudeCity": -4.420016, + "nameCity": "Malaga", + "timezone": "Europe/Madrid" + }, + { + "GMT": "2", + "cityId": 134, + "codeIataCity": "AGQ", + "codeIso2Country": "GR", + "geonameId": 252946, + "latitudeCity": 38.604168, + "longitudeCity": 21.351944, + "nameCity": "Agrinion", + "timezone": "Europe/Athens" + }, + { + "GMT": "5.30", + "cityId": 135, + "codeIataCity": "AGR", + "codeIso2Country": "IN", + "geonameId": 1279261, + "latitudeCity": 27.158333, + "longitudeCity": 77.962776, + "nameCity": "Agra", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "cityId": 136, + "codeIataCity": "AGS", + "codeIso2Country": "US", + "geonameId": 4180531, + "latitudeCity": 33.474246, + "longitudeCity": -82.00967, + "nameCity": "Augusta", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "cityId": 137, + "codeIataCity": "AGT", + "codeIso2Country": "PY", + "geonameId": 3439101, + "latitudeCity": -25.5, + "longitudeCity": -54.833332, + "nameCity": "Ciudad Del Este", + "timezone": "America/Asuncion" + }, + { + "GMT": "-6", + "cityId": 138, + "codeIataCity": "AGU", + "codeIso2Country": "MX", + "geonameId": 4019233, + "latitudeCity": 21.701416, + "longitudeCity": -102.31374, + "nameCity": "Aguascalientes", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-4", + "cityId": 139, + "codeIataCity": "AGV", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 9.552222, + "longitudeCity": -69.23333, + "nameCity": "Acarigua", + "timezone": "America/Caracas" + }, + { + "GMT": "10", + "cityId": 140, + "codeIataCity": "AGW", + "codeIso2Country": "AU", + "geonameId": 2144209, + "latitudeCity": -12.15, + "longitudeCity": 142.15, + "nameCity": "Agnew", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5.30", + "cityId": 141, + "codeIataCity": "AGX", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 10.828967, + "longitudeCity": 72.17987, + "nameCity": "Agatti Island", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "2", + "cityId": 142, + "codeIataCity": "AGZ", + "codeIso2Country": "ZA", + "geonameId": 0, + "latitudeCity": -29.05, + "longitudeCity": 18.85, + "nameCity": "Aggeneys", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "3", + "cityId": 143, + "codeIataCity": "AHB", + "codeIso2Country": "SA", + "geonameId": 110690, + "latitudeCity": 18.23429, + "longitudeCity": 42.657574, + "nameCity": "Abha", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-8", + "cityId": 144, + "codeIataCity": "AHC", + "codeIso2Country": "US", + "geonameId": 5565015, + "latitudeCity": 40.15, + "longitudeCity": -120.13333, + "nameCity": "Herlong", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-10", + "cityId": 145, + "codeIataCity": "AHE", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -14.428056, + "longitudeCity": -146.25694, + "nameCity": "Ahe", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-6", + "cityId": 146, + "codeIataCity": "AHF", + "codeIso2Country": "US", + "geonameId": 5071348, + "latitudeCity": 40.3, + "longitudeCity": -99.9, + "nameCity": "Arapahoe", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 147, + "codeIataCity": "AHH", + "codeIso2Country": "US", + "geonameId": 5037649, + "latitudeCity": 45.3, + "longitudeCity": -92.35, + "nameCity": "Amery", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "cityId": 148, + "codeIataCity": "AHI", + "codeIso2Country": "ID", + "geonameId": 1651531, + "latitudeCity": -3.333333, + "longitudeCity": 128.91667, + "nameCity": "Amahai", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-4", + "cityId": 149, + "codeIataCity": "AHL", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 2.483333, + "longitudeCity": -59.316666, + "nameCity": "Aishalton", + "timezone": "America/Guyana" + }, + { + "GMT": "-8", + "cityId": 150, + "codeIataCity": "AHM", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Ashland", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 151, + "codeIataCity": "AHN", + "codeIso2Country": "US", + "geonameId": 4180386, + "latitudeCity": 33.95195, + "longitudeCity": -83.32472, + "nameCity": "Athens", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 152, + "codeIataCity": "AHO", + "codeIso2Country": "IT", + "geonameId": 3183284, + "latitudeCity": 40.630405, + "longitudeCity": 8.295891, + "nameCity": "Alghero", + "timezone": "Europe/Rome" + }, + { + "GMT": "-6", + "cityId": 153, + "codeIataCity": "AHS", + "codeIso2Country": "HN", + "geonameId": 0, + "latitudeCity": 15.441667, + "longitudeCity": -84.425, + "nameCity": "Ahuas", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-10", + "cityId": 154, + "codeIataCity": "AHT", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 51.5, + "longitudeCity": 179.0, + "nameCity": "Amchitka", + "timezone": "America/Adak" + }, + { + "GMT": "0", + "cityId": 155, + "codeIataCity": "AHU", + "codeIso2Country": "MA", + "geonameId": 2558545, + "latitudeCity": 35.17972, + "longitudeCity": -3.836944, + "nameCity": "Al Hoceima", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "4", + "cityId": 156, + "codeIataCity": "AHW", + "codeIso2Country": "OM", + "geonameId": 0, + "latitudeCity": 31.34292, + "longitudeCity": 48.74668, + "nameCity": "Saih Rawl", + "timezone": "Asia/Muscat" + }, + { + "GMT": "3", + "cityId": 157, + "codeIataCity": "AHY", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -20.016666, + "longitudeCity": 45.533333, + "nameCity": "Ambatolahy", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "1", + "cityId": 158, + "codeIataCity": "AHZ", + "codeIso2Country": "FR", + "geonameId": 3008406, + "latitudeCity": 45.083332, + "longitudeCity": 6.083333, + "nameCity": "Alpe D Huez", + "timezone": "Europe/Paris" + }, + { + "GMT": "-7", + "cityId": 159, + "codeIataCity": "AIA", + "codeIso2Country": "US", + "geonameId": 5693164, + "latitudeCity": 42.051666, + "longitudeCity": -102.80666, + "nameCity": "Alliance", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "cityId": 160, + "codeIataCity": "AIB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 56.233334, + "longitudeCity": -132.38333, + "nameCity": "Anita Bay", + "timezone": "America/Sitka" + }, + { + "GMT": "12", + "cityId": 161, + "codeIataCity": "AIC", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 7.5, + "longitudeCity": 170.83333, + "nameCity": "Airok", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-5", + "cityId": 162, + "codeIataCity": "AID", + "codeIso2Country": "US", + "geonameId": 4917592, + "latitudeCity": 40.166668, + "longitudeCity": -85.683334, + "nameCity": "Anderson", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "10", + "cityId": 163, + "codeIataCity": "AIE", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.166667, + "longitudeCity": 144.66667, + "nameCity": "Aiome", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "cityId": 164, + "codeIataCity": "AIF", + "codeIso2Country": "BR", + "geonameId": 3471374, + "latitudeCity": -22.666668, + "longitudeCity": -50.416668, + "nameCity": "Assis", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "cityId": 165, + "codeIataCity": "AIG", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 6.516667, + "longitudeCity": 23.25, + "nameCity": "Yalinga", + "timezone": "Africa/Bangui" + }, + { + "GMT": "10", + "cityId": 166, + "codeIataCity": "AIH", + "codeIso2Country": "PG", + "geonameId": 2101258, + "latitudeCity": -7.348611, + "longitudeCity": 141.26639, + "nameCity": "Aiambak", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 167, + "codeIataCity": "AII", + "codeIso2Country": "DJ", + "geonameId": 0, + "latitudeCity": 11.15, + "longitudeCity": 42.716667, + "nameCity": "Alisabieh", + "timezone": "Africa/Djibouti" + }, + { + "GMT": "-5", + "cityId": 168, + "codeIataCity": "AIK", + "codeIso2Country": "US", + "geonameId": 4575352, + "latitudeCity": 33.566666, + "longitudeCity": -81.71667, + "nameCity": "Aiken", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 169, + "codeIataCity": "AIL", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 9.25, + "longitudeCity": -78.083336, + "nameCity": "Ailigandi", + "timezone": "America/Panama" + }, + { + "GMT": "12", + "cityId": 170, + "codeIataCity": "AIM", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 10.2, + "longitudeCity": 169.98334, + "nameCity": "Ailuk Island", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-9", + "cityId": 171, + "codeIataCity": "AIN", + "codeIso2Country": "US", + "geonameId": 5877543, + "latitudeCity": 70.63333, + "longitudeCity": -160.03334, + "nameCity": "Wainwright", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 172, + "codeIataCity": "AIO", + "codeIso2Country": "US", + "geonameId": 5074472, + "latitudeCity": 41.4, + "longitudeCity": -95.01667, + "nameCity": "Atlantic", + "timezone": "America/Chicago" + }, + { + "GMT": "12", + "cityId": 173, + "codeIataCity": "AIP", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 7.266667, + "longitudeCity": 168.81667, + "nameCity": "Ailinglapalap Island", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-4", + "cityId": 174, + "codeIataCity": "AIR", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -10.25, + "longitudeCity": -59.38333, + "nameCity": "Aripuana", + "timezone": "America/Cuiaba" + }, + { + "GMT": "12", + "cityId": 175, + "codeIataCity": "AIS", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": -2.65, + "longitudeCity": 176.83333, + "nameCity": "Arorae Island", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "-10", + "cityId": 176, + "codeIataCity": "AIT", + "codeIso2Country": "CK", + "geonameId": 0, + "latitudeCity": -18.829443, + "longitudeCity": -159.767, + "nameCity": "Aitutaki", + "timezone": "Pacific/Rarotonga" + }, + { + "GMT": "-10", + "cityId": 177, + "codeIataCity": "AIU", + "codeIso2Country": "CK", + "geonameId": 0, + "latitudeCity": -20.033333, + "longitudeCity": -158.1, + "nameCity": "Atiu Island", + "timezone": "Pacific/Rarotonga" + }, + { + "GMT": "-6", + "cityId": 178, + "codeIataCity": "AIV", + "codeIso2Country": "US", + "geonameId": 4829885, + "latitudeCity": 33.13333, + "longitudeCity": -88.15, + "nameCity": "Aliceville", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 179, + "codeIataCity": "AIW", + "codeIso2Country": "NA", + "geonameId": 0, + "latitudeCity": -27.983334, + "longitudeCity": 17.583332, + "nameCity": "Ai-ais", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-5", + "cityId": 180, + "codeIataCity": "AIY", + "codeIso2Country": "US", + "geonameId": 4500546, + "latitudeCity": 39.36, + "longitudeCity": -74.45722, + "nameCity": "Atlantic City", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 181, + "codeIataCity": "AIZ", + "codeIso2Country": "US", + "geonameId": 4402040, + "latitudeCity": 38.09833, + "longitudeCity": -92.54722, + "nameCity": "Kaiser", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 182, + "codeIataCity": "AJA", + "codeIso2Country": "FR", + "geonameId": 3038334, + "latitudeCity": 41.91987, + "longitudeCity": 8.794013, + "nameCity": "Ajaccio", + "timezone": "Europe/Paris" + }, + { + "GMT": "3", + "cityId": 183, + "codeIataCity": "AJF", + "codeIso2Country": "SA", + "geonameId": 0, + "latitudeCity": 29.788668, + "longitudeCity": 40.101486, + "nameCity": "Sakaka Al Jouf", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "3", + "cityId": 184, + "codeIataCity": "AJI", + "codeIso2Country": "TR", + "geonameId": 309647, + "latitudeCity": 39.65, + "longitudeCity": 43.025, + "nameCity": "Agri", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "0", + "cityId": 185, + "codeIataCity": "AJJ", + "codeIso2Country": "MR", + "geonameId": 0, + "latitudeCity": 19.730556, + "longitudeCity": -14.374444, + "nameCity": "Akjoujt", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "3.30", + "cityId": 186, + "codeIataCity": "AJK", + "codeIso2Country": "IR", + "geonameId": 7431358, + "latitudeCity": 34.13333, + "longitudeCity": 49.833332, + "nameCity": "Araak", + "timezone": "Asia/Tehran" + }, + { + "GMT": "5.30", + "cityId": 187, + "codeIataCity": "AJL", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 23.838985, + "longitudeCity": 92.62482, + "nameCity": "Aizawl", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "3", + "cityId": 188, + "codeIataCity": "AJN", + "codeIso2Country": "KM", + "geonameId": 0, + "latitudeCity": -12.126389, + "longitudeCity": 44.42972, + "nameCity": "Anjouan", + "timezone": "Indian/Comoro" + }, + { + "GMT": "1", + "cityId": 189, + "codeIataCity": "AJR", + "codeIso2Country": "SE", + "geonameId": 2725136, + "latitudeCity": 65.59139, + "longitudeCity": 19.285557, + "nameCity": "Arvidsjaur", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-7", + "cityId": 190, + "codeIataCity": "AJS", + "codeIso2Country": "MX", + "geonameId": 0, + "latitudeCity": 26.833332, + "longitudeCity": -113.666664, + "nameCity": "Abreojos", + "timezone": "America/Mazatlan" + }, + { + "GMT": "-3", + "cityId": 191, + "codeIataCity": "AJU", + "codeIso2Country": "BR", + "geonameId": 3471872, + "latitudeCity": -10.987206, + "longitudeCity": -37.072792, + "nameCity": "Aracaju", + "timezone": "America/Maceio" + }, + { + "GMT": "1", + "cityId": 192, + "codeIataCity": "AJY", + "codeIso2Country": "NE", + "geonameId": 0, + "latitudeCity": 16.964167, + "longitudeCity": 7.993056, + "nameCity": "Agades", + "timezone": "Africa/Niamey" + }, + { + "GMT": "8", + "cityId": 193, + "codeIataCity": "AKA", + "codeIso2Country": "CN", + "geonameId": 1789065, + "latitudeCity": 32.7091, + "longitudeCity": 108.936, + "nameCity": "Ankang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-10", + "cityId": 194, + "codeIataCity": "AKB", + "codeIso2Country": "US", + "geonameId": 5879729, + "latitudeCity": 52.21722, + "longitudeCity": -174.20084, + "nameCity": "Atka", + "timezone": "America/Adak" + }, + { + "GMT": "5.30", + "cityId": 195, + "codeIataCity": "AKD", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 20.666668, + "longitudeCity": 77.083336, + "nameCity": "Akola", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "cityId": 196, + "codeIataCity": "AKE", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -1.172222, + "longitudeCity": 13.916667, + "nameCity": "Akieni", + "timezone": "Africa/Libreville" + }, + { + "GMT": "2", + "cityId": 197, + "codeIataCity": "AKF", + "codeIso2Country": "LY", + "geonameId": 0, + "latitudeCity": 24.2, + "longitudeCity": 23.333332, + "nameCity": "Kufrah", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "10", + "cityId": 198, + "codeIataCity": "AKG", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -3.633333, + "longitudeCity": 142.01666, + "nameCity": "Anguganak", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 199, + "codeIataCity": "AKH", + "codeIso2Country": "SA", + "geonameId": 0, + "latitudeCity": 24.063334, + "longitudeCity": 47.580555, + "nameCity": "Al Kharj", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-9", + "cityId": 200, + "codeIataCity": "AKI", + "codeIso2Country": "US", + "geonameId": 5878993, + "latitudeCity": 60.905556, + "longitudeCity": -161.22333, + "nameCity": "Akiak", + "timezone": "America/Anchorage" + }, + { + "GMT": "9", + "cityId": 201, + "codeIataCity": "AKJ", + "codeIso2Country": "JP", + "geonameId": 2130629, + "latitudeCity": 43.67109, + "longitudeCity": 142.45454, + "nameCity": "Asahikawa", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-9", + "cityId": 202, + "codeIataCity": "AKK", + "codeIso2Country": "US", + "geonameId": 5878982, + "latitudeCity": 56.944443, + "longitudeCity": -154.16667, + "nameCity": "Akhiok", + "timezone": "America/Anchorage" + }, + { + "GMT": "12", + "cityId": 203, + "codeIataCity": "AKL", + "codeIso2Country": "NZ", + "geonameId": 2193733, + "latitudeCity": -36.84846, + "longitudeCity": 174.763331, + "nameCity": "Auckland", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "1", + "cityId": 204, + "codeIataCity": "AKM", + "codeIso2Country": "TD", + "geonameId": 2424121, + "latitudeCity": 10.883333, + "longitudeCity": 19.816668, + "nameCity": "Zakouma", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "-9", + "cityId": 205, + "codeIataCity": "AKN", + "codeIso2Country": "US", + "geonameId": 5866330, + "latitudeCity": 58.68274, + "longitudeCity": -156.66902, + "nameCity": "King Salmon", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "cityId": 206, + "codeIataCity": "AKO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 40.166668, + "longitudeCity": -103.21667, + "nameCity": "Akron", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "cityId": 207, + "codeIataCity": "AKP", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 68.1375, + "longitudeCity": -151.74, + "nameCity": "Anaktuvuk", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "cityId": 208, + "codeIataCity": "AKQ", + "codeIso2Country": "ID", + "geonameId": 1624917, + "latitudeCity": -4.616667, + "longitudeCity": 105.23333, + "nameCity": "Astraksetra", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "1", + "cityId": 209, + "codeIataCity": "AKR", + "codeIso2Country": "NG", + "geonameId": 2350841, + "latitudeCity": 7.25, + "longitudeCity": 5.083333, + "nameCity": "Akure", + "timezone": "Africa/Lagos" + }, + { + "GMT": "11", + "cityId": 210, + "codeIataCity": "AKS", + "codeIso2Country": "SB", + "geonameId": 2109701, + "latitudeCity": -8.697778, + "longitudeCity": 160.68083, + "nameCity": "Auki", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "2", + "cityId": 211, + "codeIataCity": "AKT", + "codeIso2Country": "CY", + "geonameId": 0, + "latitudeCity": 34.583332, + "longitudeCity": 32.983334, + "nameCity": "Akrotiri", + "timezone": "Asia/Nicosia" + }, + { + "GMT": "8", + "cityId": 212, + "codeIataCity": "AKU", + "codeIso2Country": "CN", + "geonameId": 1529660, + "latitudeCity": 41.259983, + "longitudeCity": 80.29262, + "nameCity": "Aksu", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 213, + "codeIataCity": "AKV", + "codeIso2Country": "CA", + "geonameId": 5882994, + "latitudeCity": 60.733334, + "longitudeCity": -78.583336, + "nameCity": "Akulivik", + "timezone": "America/Montreal" + }, + { + "GMT": "3.30", + "cityId": 214, + "codeIataCity": "AKW", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 30.75, + "longitudeCity": 49.683334, + "nameCity": "Aghajari", + "timezone": "Asia/Tehran" + }, + { + "GMT": "5", + "cityId": 215, + "codeIataCity": "AKX", + "codeIso2Country": "KZ", + "geonameId": 610611, + "latitudeCity": 50.249336, + "longitudeCity": 57.211403, + "nameCity": "Aktyubinsk", + "timezone": "Asia/Aqtobe" + }, + { + "GMT": "6.30", + "cityId": 216, + "codeIataCity": "AKY", + "codeIso2Country": "MM", + "geonameId": 1295765, + "latitudeCity": 20.130278, + "longitudeCity": 92.88028, + "nameCity": "Sittwe", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "6", + "cityId": 217, + "codeIataCity": "ALA", + "codeIso2Country": "KZ", + "geonameId": 1526384, + "latitudeCity": 43.255058, + "longitudeCity": 76.912628, + "nameCity": "Almaty", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-5", + "cityId": 218, + "codeIataCity": "ALB", + "codeIso2Country": "US", + "geonameId": 5106834, + "latitudeCity": 42.652579, + "longitudeCity": -73.756232, + "nameCity": "Albany", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 219, + "codeIataCity": "ALC", + "codeIso2Country": "ES", + "geonameId": 2521978, + "latitudeCity": 38.34521, + "longitudeCity": -0.480994, + "nameCity": "Alicante", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-5", + "cityId": 220, + "codeIataCity": "ALD", + "codeIso2Country": "PE", + "geonameId": 0, + "latitudeCity": -11.683333, + "longitudeCity": -69.333336, + "nameCity": "Alerta", + "timezone": "America/Lima" + }, + { + "GMT": "-6", + "cityId": 221, + "codeIataCity": "ALE", + "codeIso2Country": "US", + "geonameId": 5516203, + "latitudeCity": 30.416668, + "longitudeCity": -103.75, + "nameCity": "Alpine", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 222, + "codeIataCity": "ALF", + "codeIso2Country": "NO", + "geonameId": 847633, + "latitudeCity": 69.977165, + "longitudeCity": 23.355808, + "nameCity": "Alta", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 223, + "codeIataCity": "ALG", + "codeIso2Country": "DZ", + "geonameId": 2507480, + "latitudeCity": 36.70058, + "longitudeCity": 3.21167, + "nameCity": "Algiers", + "timezone": "Africa/Algiers" + }, + { + "GMT": "8", + "cityId": 224, + "codeIataCity": "ALH", + "codeIso2Country": "AU", + "geonameId": 2077963, + "latitudeCity": -34.944996, + "longitudeCity": 117.804, + "nameCity": "Albany", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "cityId": 225, + "codeIataCity": "ALI", + "codeIso2Country": "US", + "geonameId": 4670234, + "latitudeCity": 27.75, + "longitudeCity": -98.066666, + "nameCity": "Alice", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 226, + "codeIataCity": "ALJ", + "codeIso2Country": "ZA", + "geonameId": 0, + "latitudeCity": -28.567223, + "longitudeCity": 16.536388, + "nameCity": "Alexander Bay", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "3", + "cityId": 227, + "codeIataCity": "ALK", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 7.966667, + "longitudeCity": 39.11667, + "nameCity": "Asela", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "1", + "cityId": 228, + "codeIataCity": "ALL", + "codeIso2Country": "IT", + "geonameId": 3183343, + "latitudeCity": 44.05, + "longitudeCity": 8.216667, + "nameCity": "Albenga", + "timezone": "Europe/Rome" + }, + { + "GMT": "-7", + "cityId": 229, + "codeIataCity": "ALM", + "codeIso2Country": "US", + "geonameId": 5454627, + "latitudeCity": 32.899532, + "longitudeCity": -105.960265, + "nameCity": "Alamogordo", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 230, + "codeIataCity": "ALN", + "codeIso2Country": "US", + "geonameId": 4407066, + "latitudeCity": 38.891666, + "longitudeCity": -90.04833, + "nameCity": "Alton", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 231, + "codeIataCity": "ALO", + "codeIso2Country": "US", + "geonameId": 4880889, + "latitudeCity": 42.55611, + "longitudeCity": -92.39972, + "nameCity": "Waterloo", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 232, + "codeIataCity": "ALP", + "codeIso2Country": "SY", + "geonameId": 170063, + "latitudeCity": 36.185352, + "longitudeCity": 37.227074, + "nameCity": "Aleppo", + "timezone": "Asia/Damascus" + }, + { + "GMT": "-3", + "cityId": 233, + "codeIataCity": "ALQ", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -29.799723, + "longitudeCity": -55.763332, + "nameCity": "Alegrete", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "12", + "cityId": 234, + "codeIataCity": "ALR", + "codeIso2Country": "NZ", + "geonameId": 2184707, + "latitudeCity": -45.21389, + "longitudeCity": 169.36945, + "nameCity": "Alexandra", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-7", + "cityId": 235, + "codeIataCity": "ALS", + "codeIso2Country": "US", + "geonameId": 5411479, + "latitudeCity": 37.43667, + "longitudeCity": -105.86667, + "nameCity": "Alamosa", + "timezone": "America/Denver" + }, + { + "GMT": "-3", + "cityId": 236, + "codeIataCity": "ALT", + "codeIso2Country": "BR", + "geonameId": 3407980, + "latitudeCity": -1.933333, + "longitudeCity": -54.766666, + "nameCity": "Alenquer", + "timezone": "America/Santarem" + }, + { + "GMT": "3", + "cityId": 237, + "codeIataCity": "ALU", + "codeIso2Country": "SO", + "geonameId": 0, + "latitudeCity": 11.966667, + "longitudeCity": 50.8, + "nameCity": "Alula", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-8", + "cityId": 238, + "codeIataCity": "ALW", + "codeIso2Country": "US", + "geonameId": 5814916, + "latitudeCity": 46.094723, + "longitudeCity": -118.291115, + "nameCity": "Walla Walla", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 239, + "codeIataCity": "ALX", + "codeIso2Country": "US", + "geonameId": 4829843, + "latitudeCity": 32.933334, + "longitudeCity": -85.95, + "nameCity": "Alexander City", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 240, + "codeIataCity": "ALY", + "codeIso2Country": "EG", + "geonameId": 361058, + "latitudeCity": 31.2135, + "longitudeCity": 29.9443, + "nameCity": "Alexandria", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-9", + "cityId": 241, + "codeIataCity": "ALZ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 56.895832, + "longitudeCity": -154.24583, + "nameCity": "Alitak", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 242, + "codeIataCity": "AMA", + "codeIso2Country": "US", + "geonameId": 5516233, + "latitudeCity": 35.221997, + "longitudeCity": -101.831297, + "nameCity": "Amarillo", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 243, + "codeIataCity": "AMB", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -13.183333, + "longitudeCity": 48.983334, + "nameCity": "Ambilobe", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "1", + "cityId": 244, + "codeIataCity": "AMC", + "codeIso2Country": "TD", + "geonameId": 0, + "latitudeCity": 11.033333, + "longitudeCity": 20.283333, + "nameCity": "Am Timan", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "5.30", + "cityId": 245, + "codeIataCity": "AMD", + "codeIso2Country": "IN", + "geonameId": 1279233, + "latitudeCity": 23.06639, + "longitudeCity": 72.62417, + "nameCity": "Ahmedabad", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "2", + "cityId": 246, + "codeIataCity": "AME", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": -15.833333, + "longitudeCity": 37.583332, + "nameCity": "Alto Molocue", + "timezone": "Africa/Maputo" + }, + { + "GMT": "10", + "cityId": 247, + "codeIataCity": "AMF", + "codeIso2Country": "PG", + "geonameId": 2100991, + "latitudeCity": -4.166667, + "longitudeCity": 141.66667, + "nameCity": "Ama", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 248, + "codeIataCity": "AMG", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -4.616667, + "longitudeCity": 143.7, + "nameCity": "Amboin", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 249, + "codeIataCity": "AMH", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 6.036111, + "longitudeCity": 37.576942, + "nameCity": "Arba Mintch", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "8", + "cityId": 250, + "codeIataCity": "AMI", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -8.563165, + "longitudeCity": 116.10237, + "nameCity": "Mataram", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-3", + "cityId": 251, + "codeIataCity": "AMJ", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -16.183332, + "longitudeCity": -40.683334, + "nameCity": "Almenara", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "cityId": 252, + "codeIataCity": "AML", + "codeIso2Country": "PA", + "geonameId": 3711668, + "latitudeCity": 8.266667, + "longitudeCity": -82.86667, + "nameCity": "Puerto Armuellas", + "timezone": "America/Panama" + }, + { + "GMT": "2", + "cityId": 253, + "codeIataCity": "AMM", + "codeIso2Country": "JO", + "geonameId": 250441, + "latitudeCity": 31.722534, + "longitudeCity": 35.98932, + "nameCity": "Amman", + "timezone": "Asia/Amman" + }, + { + "GMT": "-5", + "cityId": 254, + "codeIataCity": "AMN", + "codeIso2Country": "US", + "geonameId": 4998830, + "latitudeCity": 43.38333, + "longitudeCity": -84.65, + "nameCity": "Alma", + "timezone": "America/Detroit" + }, + { + "GMT": "1", + "cityId": 255, + "codeIataCity": "AMO", + "codeIso2Country": "TD", + "geonameId": 2428394, + "latitudeCity": 14.116667, + "longitudeCity": 15.316667, + "nameCity": "Mao", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "3", + "cityId": 256, + "codeIataCity": "AMP", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -24.7, + "longitudeCity": 44.733334, + "nameCity": "Ampanihy", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "9", + "cityId": 257, + "codeIataCity": "AMQ", + "codeIso2Country": "ID", + "geonameId": 1651531, + "latitudeCity": -3.704996, + "longitudeCity": 128.08888, + "nameCity": "Ambon", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "12", + "cityId": 258, + "codeIataCity": "AMR", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 7.033333, + "longitudeCity": 171.23334, + "nameCity": "Arno", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "1", + "cityId": 259, + "codeIataCity": "AMS", + "codeIso2Country": "NL", + "geonameId": 2759794, + "latitudeCity": 52.373056, + "longitudeCity": 4.892222, + "nameCity": "Amsterdam", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "9.30", + "cityId": 260, + "codeIataCity": "AMT", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -26.766666, + "longitudeCity": 132.03334, + "nameCity": "Amata", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "10", + "cityId": 261, + "codeIataCity": "AMU", + "codeIso2Country": "PG", + "geonameId": 2100976, + "latitudeCity": -3.516667, + "longitudeCity": 141.15, + "nameCity": "Amanab", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 262, + "codeIataCity": "AMV", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 69.76667, + "longitudeCity": 61.55, + "nameCity": "Amderma", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "cityId": 263, + "codeIataCity": "AMW", + "codeIso2Country": "US", + "geonameId": 4846834, + "latitudeCity": 41.994167, + "longitudeCity": -93.61833, + "nameCity": "Ames", + "timezone": "America/Chicago" + }, + { + "GMT": "9.30", + "cityId": 264, + "codeIataCity": "AMX", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -21.74, + "longitudeCity": 135.24, + "nameCity": "Ammaroo", + "timezone": "Australia/Darwin" + }, + { + "GMT": "3", + "cityId": 265, + "codeIataCity": "AMY", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -17.683332, + "longitudeCity": 45.666668, + "nameCity": "Ambatomainty", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "12", + "cityId": 266, + "codeIataCity": "AMZ", + "codeIso2Country": "NZ", + "geonameId": 2193733, + "latitudeCity": -37.033333, + "longitudeCity": 174.96666, + "nameCity": "Ardmore", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-8", + "cityId": 267, + "codeIataCity": "ANA", + "codeIso2Country": "US", + "geonameId": 5323810, + "latitudeCity": 33.816666, + "longitudeCity": -117.933334, + "nameCity": "Anaheim", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 268, + "codeIataCity": "ANB", + "codeIso2Country": "US", + "geonameId": 4081914, + "latitudeCity": 33.659826, + "longitudeCity": -85.831632, + "nameCity": "Anniston", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 269, + "codeIataCity": "ANC", + "codeIso2Country": "US", + "geonameId": 5879400, + "latitudeCity": 61.218056, + "longitudeCity": -149.900278, + "nameCity": "Anchorage", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 270, + "codeIataCity": "AND", + "codeIso2Country": "US", + "geonameId": 4569298, + "latitudeCity": 34.49361, + "longitudeCity": -82.71, + "nameCity": "Anderson", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 271, + "codeIataCity": "ANE", + "codeIso2Country": "FR", + "geonameId": 3037656, + "latitudeCity": 47.478419, + "longitudeCity": -0.563166, + "nameCity": "Angers", + "timezone": "Europe/Paris" + }, + { + "GMT": "-4", + "cityId": 272, + "codeIataCity": "ANF", + "codeIso2Country": "CL", + "geonameId": 3899539, + "latitudeCity": -23.449, + "longitudeCity": -70.44079, + "nameCity": "Antofagasta", + "timezone": "America/Santiago" + }, + { + "GMT": "1", + "cityId": 273, + "codeIataCity": "ANG", + "codeIso2Country": "FR", + "geonameId": 3027064, + "latitudeCity": 45.733334, + "longitudeCity": 0.216667, + "nameCity": "Angouleme", + "timezone": "Europe/Paris" + }, + { + "GMT": "11", + "cityId": 274, + "codeIataCity": "ANH", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -8.983333, + "longitudeCity": 160.5, + "nameCity": "Anuha Island Resort", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-9", + "cityId": 275, + "codeIataCity": "ANI", + "codeIso2Country": "US", + "geonameId": 5879487, + "latitudeCity": 61.574398, + "longitudeCity": -159.53697, + "nameCity": "Aniak", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 276, + "codeIataCity": "ANJ", + "codeIso2Country": "CG", + "geonameId": 2254814, + "latitudeCity": -2.85, + "longitudeCity": 13.833333, + "nameCity": "Zanaga", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "3", + "cityId": 277, + "codeIataCity": "ANK", + "codeIso2Country": "TR", + "geonameId": 323786, + "latitudeCity": 39.866667, + "longitudeCity": 39.866667, + "nameCity": "Ankara", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "1", + "cityId": 278, + "codeIataCity": "ANL", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -11.25, + "longitudeCity": 17.25, + "nameCity": "Andulo", + "timezone": "Africa/Luanda" + }, + { + "GMT": "3", + "cityId": 279, + "codeIataCity": "ANM", + "codeIso2Country": "MG", + "geonameId": 1071296, + "latitudeCity": -15.0, + "longitudeCity": 50.316666, + "nameCity": "Antalaha", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-9", + "cityId": 280, + "codeIataCity": "ANN", + "codeIso2Country": "US", + "geonameId": 5554428, + "latitudeCity": 55.036945, + "longitudeCity": -131.57056, + "nameCity": "Annette Island", + "timezone": "America/Sitka" + }, + { + "GMT": "2", + "cityId": 281, + "codeIataCity": "ANO", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": -16.177778, + "longitudeCity": 39.936943, + "nameCity": "Angoche", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-5", + "cityId": 282, + "codeIataCity": "ANP", + "codeIso2Country": "US", + "geonameId": 4140963, + "latitudeCity": 38.983334, + "longitudeCity": -76.5, + "nameCity": "Annapolis", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 283, + "codeIataCity": "ANQ", + "codeIso2Country": "US", + "geonameId": 4917614, + "latitudeCity": 41.63333, + "longitudeCity": -85.0, + "nameCity": "Angola", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "1", + "cityId": 284, + "codeIataCity": "ANR", + "codeIso2Country": "BE", + "geonameId": 2803138, + "latitudeCity": 51.21992, + "longitudeCity": 4.39625, + "nameCity": "Antwerp", + "timezone": "Europe/Brussels" + }, + { + "GMT": "-5", + "cityId": 285, + "codeIataCity": "ANS", + "codeIso2Country": "PE", + "geonameId": 3947740, + "latitudeCity": -13.716667, + "longitudeCity": -73.355835, + "nameCity": "Andahuaylas", + "timezone": "America/Lima" + }, + { + "GMT": "1", + "cityId": 286, + "codeIataCity": "ANT", + "codeIso2Country": "AT", + "geonameId": 0, + "latitudeCity": 47.15, + "longitudeCity": 10.283333, + "nameCity": "St Anton", + "timezone": "Europe/Vienna" + }, + { + "GMT": "-4", + "cityId": 287, + "codeIataCity": "ANU", + "codeIso2Country": "AG", + "geonameId": 3576022, + "latitudeCity": 17.108334, + "longitudeCity": -61.76389, + "nameCity": "St. John's", + "timezone": "America/Antigua" + }, + { + "GMT": "-9", + "cityId": 288, + "codeIataCity": "ANV", + "codeIso2Country": "US", + "geonameId": 5879553, + "latitudeCity": 62.647778, + "longitudeCity": -160.18889, + "nameCity": "Anvik", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 289, + "codeIataCity": "ANW", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.55, + "longitudeCity": -99.86667, + "nameCity": "Ainsworth", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 290, + "codeIataCity": "ANX", + "codeIso2Country": "NO", + "geonameId": 3163146, + "latitudeCity": 69.30492, + "longitudeCity": 16.133326, + "nameCity": "Andenes", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "cityId": 291, + "codeIataCity": "ANY", + "codeIso2Country": "US", + "geonameId": 4281730, + "latitudeCity": 37.15, + "longitudeCity": -98.03333, + "nameCity": "Anthony", + "timezone": "America/Chicago" + }, + { + "GMT": "9.30", + "cityId": 292, + "codeIataCity": "ANZ", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -25.083332, + "longitudeCity": 132.16667, + "nameCity": "Angus Downs", + "timezone": "Australia/Darwin" + }, + { + "GMT": "10", + "cityId": 293, + "codeIataCity": "AOA", + "codeIso2Country": "PG", + "geonameId": 2100552, + "latitudeCity": -9.05, + "longitudeCity": 146.8, + "nameCity": "Aroa", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 294, + "codeIataCity": "AOB", + "codeIso2Country": "PG", + "geonameId": 2100742, + "latitudeCity": -4.916667, + "longitudeCity": 144.65, + "nameCity": "Annanberg", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 295, + "codeIataCity": "AOC", + "codeIso2Country": "DE", + "geonameId": 2957773, + "latitudeCity": 50.983334, + "longitudeCity": 12.45, + "nameCity": "Altenburg", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 296, + "codeIataCity": "AOD", + "codeIso2Country": "TD", + "geonameId": 0, + "latitudeCity": 11.474722, + "longitudeCity": 19.288889, + "nameCity": "Abou Deia", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "8", + "cityId": 297, + "codeIataCity": "AOG", + "codeIso2Country": "CN", + "geonameId": 2038632, + "latitudeCity": 41.166668, + "longitudeCity": 123.03333, + "nameCity": "Anshan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 298, + "codeIataCity": "AOH", + "codeIso2Country": "US", + "geonameId": 5160783, + "latitudeCity": 40.766666, + "longitudeCity": -84.1, + "nameCity": "Lima", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 299, + "codeIataCity": "AOI", + "codeIso2Country": "IT", + "geonameId": 3183089, + "latitudeCity": 43.60691, + "longitudeCity": 13.355723, + "nameCity": "Ancona", + "timezone": "Europe/Rome" + }, + { + "GMT": "9", + "cityId": 300, + "codeIataCity": "AOJ", + "codeIso2Country": "JP", + "geonameId": 2130658, + "latitudeCity": 40.738758, + "longitudeCity": 140.68922, + "nameCity": "Aomori", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "2", + "cityId": 301, + "codeIataCity": "AOK", + "codeIso2Country": "GR", + "geonameId": 264641, + "latitudeCity": 35.420685, + "longitudeCity": 27.146729, + "nameCity": "Karpathos", + "timezone": "Europe/Athens" + }, + { + "GMT": "-3", + "cityId": 302, + "codeIataCity": "AOL", + "codeIso2Country": "AR", + "geonameId": 3427279, + "latitudeCity": -29.683332, + "longitudeCity": -57.15, + "nameCity": "Paso De Los Libres", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "4", + "cityId": 303, + "codeIataCity": "AOM", + "codeIso2Country": "OM", + "geonameId": 289384, + "latitudeCity": 40.738758, + "longitudeCity": 140.68922, + "nameCity": "Adam", + "timezone": "Asia/Muscat" + }, + { + "GMT": "10", + "cityId": 304, + "codeIataCity": "AON", + "codeIso2Country": "PG", + "geonameId": 2100541, + "latitudeCity": -6.333333, + "longitudeCity": 146.0, + "nameCity": "Arona", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 305, + "codeIataCity": "AOO", + "codeIso2Country": "US", + "geonameId": 5200055, + "latitudeCity": 40.297222, + "longitudeCity": -78.32, + "nameCity": "Martinsburg", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 306, + "codeIataCity": "AOP", + "codeIso2Country": "PE", + "geonameId": 3699659, + "latitudeCity": -2.90464, + "longitudeCity": -76.40236, + "nameCity": "Andoas", + "timezone": "America/Lima" + }, + { + "GMT": "8", + "cityId": 307, + "codeIataCity": "AOR", + "codeIso2Country": "MY", + "geonameId": 1736309, + "latitudeCity": 6.201171, + "longitudeCity": 100.405266, + "nameCity": "Alor Setar", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "-9", + "cityId": 308, + "codeIataCity": "AOS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.466667, + "longitudeCity": -153.83333, + "nameCity": "Amook", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 309, + "codeIataCity": "AOT", + "codeIso2Country": "IT", + "geonameId": 3182997, + "latitudeCity": 45.73861, + "longitudeCity": 7.3625, + "nameCity": "Aosta", + "timezone": "Europe/Rome" + }, + { + "GMT": "7", + "cityId": 310, + "codeIataCity": "AOU", + "codeIso2Country": "LA", + "geonameId": 1665046, + "latitudeCity": 14.8, + "longitudeCity": 106.833336, + "nameCity": "Attopeu", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-4", + "cityId": 311, + "codeIataCity": "APB", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -14.716667, + "longitudeCity": -68.51667, + "nameCity": "Apolo", + "timezone": "America/La_Paz" + }, + { + "GMT": "-8", + "cityId": 312, + "codeIataCity": "APC", + "codeIso2Country": "US", + "geonameId": 5376095, + "latitudeCity": 38.212223, + "longitudeCity": -122.28, + "nameCity": "Napa", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 313, + "codeIataCity": "APE", + "codeIso2Country": "PE", + "geonameId": 0, + "latitudeCity": -11.933333, + "longitudeCity": -69.083336, + "nameCity": "San Juan Aposento", + "timezone": "America/Lima" + }, + { + "GMT": "-5", + "cityId": 314, + "codeIataCity": "APF", + "codeIso2Country": "US", + "geonameId": 4165565, + "latitudeCity": 26.152779, + "longitudeCity": -81.775276, + "nameCity": "Naples", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 315, + "codeIataCity": "APG", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.5, + "longitudeCity": -76.166664, + "nameCity": "Aberdeen", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 316, + "codeIataCity": "APH", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.05, + "longitudeCity": -77.35, + "nameCity": "Bowling Green", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 317, + "codeIataCity": "API", + "codeIso2Country": "CO", + "geonameId": 3689790, + "latitudeCity": 4.068889, + "longitudeCity": -73.05194, + "nameCity": "Apiay", + "timezone": "America/Bogota" + }, + { + "GMT": "-10", + "cityId": 318, + "codeIataCity": "APK", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -15.416667, + "longitudeCity": -146.08333, + "nameCity": "Apataki", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "2", + "cityId": 319, + "codeIataCity": "APL", + "codeIso2Country": "MZ", + "geonameId": 1033356, + "latitudeCity": -15.101667, + "longitudeCity": 39.287224, + "nameCity": "Nampula", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-5", + "cityId": 320, + "codeIataCity": "APN", + "codeIso2Country": "US", + "geonameId": 4984075, + "latitudeCity": 45.08167, + "longitudeCity": -83.55583, + "nameCity": "Alpena", + "timezone": "America/Detroit" + }, + { + "GMT": "-5", + "cityId": 321, + "codeIataCity": "APO", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 7.817678, + "longitudeCity": -76.71766, + "nameCity": "Apartado", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "cityId": 322, + "codeIataCity": "APP", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.983333, + "longitudeCity": 148.13333, + "nameCity": "Asapa", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "cityId": 323, + "codeIataCity": "APQ", + "codeIso2Country": "BR", + "geonameId": 3395981, + "latitudeCity": -9.75, + "longitudeCity": -36.65, + "nameCity": "Arapiraca", + "timezone": "America/Maceio" + }, + { + "GMT": "10", + "cityId": 324, + "codeIataCity": "APR", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.5, + "longitudeCity": 145.0, + "nameCity": "April River", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "cityId": 325, + "codeIataCity": "APS", + "codeIso2Country": "BR", + "geonameId": 3462377, + "latitudeCity": -16.333332, + "longitudeCity": -48.966667, + "nameCity": "Anapolis", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "cityId": 326, + "codeIataCity": "APT", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 35.066666, + "longitudeCity": -85.5, + "nameCity": "Jasper", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 327, + "codeIataCity": "APU", + "codeIso2Country": "BR", + "geonameId": 3457671, + "latitudeCity": -23.55, + "longitudeCity": -51.483334, + "nameCity": "Apucarana", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "cityId": 328, + "codeIataCity": "APV", + "codeIso2Country": "US", + "geonameId": 5324363, + "latitudeCity": 34.52639, + "longitudeCity": -117.212776, + "nameCity": "Apple Valley", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "13", + "cityId": 329, + "codeIataCity": "APW", + "codeIso2Country": "WS", + "geonameId": 4035413, + "latitudeCity": -13.833333, + "longitudeCity": -171.766667, + "nameCity": "Apia", + "timezone": "Pacific/Apia" + }, + { + "GMT": "-3", + "cityId": 330, + "codeIataCity": "APX", + "codeIso2Country": "BR", + "geonameId": 3457671, + "latitudeCity": -23.483334, + "longitudeCity": -51.466667, + "nameCity": "Arapongas", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-3", + "cityId": 331, + "codeIataCity": "APY", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -9.133333, + "longitudeCity": -45.933334, + "nameCity": "Alto Parnaiba", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-3", + "cityId": 332, + "codeIataCity": "APZ", + "codeIso2Country": "AR", + "geonameId": 8556185, + "latitudeCity": -38.916668, + "longitudeCity": -70.083336, + "nameCity": "Zapala", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-3", + "cityId": 333, + "codeIataCity": "AQA", + "codeIso2Country": "BR", + "geonameId": 3471766, + "latitudeCity": -21.816668, + "longitudeCity": -48.13333, + "nameCity": "Araraquara", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "cityId": 334, + "codeIataCity": "AQB", + "codeIso2Country": "GT", + "geonameId": 3599699, + "latitudeCity": 15.01, + "longitudeCity": -91.15, + "nameCity": "Quiche", + "timezone": "America/Guatemala" + }, + { + "GMT": "8", + "cityId": 335, + "codeIataCity": "AQG", + "codeIso2Country": "CN", + "geonameId": 1817993, + "latitudeCity": 30.5825, + "longitudeCity": 117.0509, + "nameCity": "Anqing", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "cityId": 336, + "codeIataCity": "AQI", + "codeIso2Country": "SA", + "geonameId": 0, + "latitudeCity": 28.334408, + "longitudeCity": 46.121315, + "nameCity": "Qaisumah", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "2", + "cityId": 337, + "codeIataCity": "AQJ", + "codeIso2Country": "JO", + "geonameId": 250774, + "latitudeCity": 29.610073, + "longitudeCity": 35.02151, + "nameCity": "Aqaba", + "timezone": "Asia/Amman" + }, + { + "GMT": "-4", + "cityId": 338, + "codeIataCity": "AQM", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -9.933333, + "longitudeCity": -63.066666, + "nameCity": "Ariquemes", + "timezone": "America/Porto_Velho" + }, + { + "GMT": "-5", + "cityId": 339, + "codeIataCity": "AQP", + "codeIso2Country": "PE", + "geonameId": 3947322, + "latitudeCity": -16.344812, + "longitudeCity": -71.56799, + "nameCity": "Arequipa", + "timezone": "America/Lima" + }, + { + "GMT": "12", + "cityId": 340, + "codeIataCity": "AQS", + "codeIso2Country": "FJ", + "geonameId": 0, + "latitudeCity": -17.0, + "longitudeCity": 170.9, + "nameCity": "Saqani", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-9", + "cityId": 341, + "codeIataCity": "AQY", + "codeIso2Country": "US", + "geonameId": 5879267, + "latitudeCity": 60.966667, + "longitudeCity": -149.11667, + "nameCity": "Alyeska", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 342, + "codeIataCity": "ARA", + "codeIso2Country": "US", + "geonameId": 4334971, + "latitudeCity": 30.037779, + "longitudeCity": -91.88389, + "nameCity": "New Iberia", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 343, + "codeIataCity": "ARB", + "codeIso2Country": "US", + "geonameId": 4984247, + "latitudeCity": 42.3, + "longitudeCity": -83.75, + "nameCity": "Ann Arbor", + "timezone": "America/Detroit" + }, + { + "GMT": "-9", + "cityId": 344, + "codeIataCity": "ARC", + "codeIso2Country": "US", + "geonameId": 5879636, + "latitudeCity": 68.1375, + "longitudeCity": -145.52444, + "nameCity": "Arctic Village", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "cityId": 345, + "codeIataCity": "ARD", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -8.683333, + "longitudeCity": 124.53333, + "nameCity": "Alor Island", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-4", + "cityId": 346, + "codeIataCity": "ARE", + "codeIso2Country": "PR", + "geonameId": 4562635, + "latitudeCity": 18.45, + "longitudeCity": -66.675835, + "nameCity": "Arecibo", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "-5", + "cityId": 347, + "codeIataCity": "ARF", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 0.533333, + "longitudeCity": -70.13333, + "nameCity": "Acaricuara", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 348, + "codeIataCity": "ARG", + "codeIso2Country": "US", + "geonameId": 4102412, + "latitudeCity": 36.066666, + "longitudeCity": -90.95, + "nameCity": "Walnut Ridge", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 349, + "codeIataCity": "ARH", + "codeIso2Country": "RU", + "geonameId": 581049, + "latitudeCity": 64.594795, + "longitudeCity": 40.711903, + "nameCity": "Arkhangelsk", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-4", + "cityId": 350, + "codeIataCity": "ARI", + "codeIso2Country": "CL", + "geonameId": 3899361, + "latitudeCity": -18.349766, + "longitudeCity": -70.335556, + "nameCity": "Arica", + "timezone": "America/Santiago" + }, + { + "GMT": "9", + "cityId": 351, + "codeIataCity": "ARJ", + "codeIso2Country": "ID", + "geonameId": 2082600, + "latitudeCity": -2.933333, + "longitudeCity": 140.78334, + "nameCity": "Arso", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "3", + "cityId": 352, + "codeIataCity": "ARK", + "codeIso2Country": "TZ", + "geonameId": 161325, + "latitudeCity": -3.366667, + "longitudeCity": 36.683334, + "nameCity": "Arusha", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "0", + "cityId": 353, + "codeIataCity": "ARL", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 11.6, + "longitudeCity": 1.483333, + "nameCity": "Arly", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "10", + "cityId": 354, + "codeIataCity": "ARM", + "codeIso2Country": "AU", + "geonameId": 2177671, + "latitudeCity": -30.532297, + "longitudeCity": 151.61493, + "nameCity": "Armidale", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-5", + "cityId": 355, + "codeIataCity": "ARO", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 8.85, + "longitudeCity": -76.433334, + "nameCity": "Arboletas", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "cityId": 356, + "codeIataCity": "ARP", + "codeIso2Country": "PG", + "geonameId": 2085070, + "latitudeCity": -9.8, + "longitudeCity": 149.5, + "nameCity": "Aragip", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 357, + "codeIataCity": "ARQ", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 7.033056, + "longitudeCity": -71.43166, + "nameCity": "Arauquita", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "cityId": 358, + "codeIataCity": "ARR", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -45.033333, + "longitudeCity": -70.833336, + "nameCity": "Alto Rio Senguerr", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "-3", + "cityId": 359, + "codeIataCity": "ARS", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -15.9, + "longitudeCity": -52.233334, + "nameCity": "Aragarcas", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "cityId": 360, + "codeIataCity": "ART", + "codeIso2Country": "US", + "geonameId": 5143396, + "latitudeCity": 43.990833, + "longitudeCity": -76.021385, + "nameCity": "Watertown", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 361, + "codeIataCity": "ARU", + "codeIso2Country": "BR", + "geonameId": 3471859, + "latitudeCity": -21.143612, + "longitudeCity": -50.42611, + "nameCity": "Aracatuba", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "cityId": 362, + "codeIataCity": "ARV", + "codeIso2Country": "US", + "geonameId": 5263156, + "latitudeCity": 45.924168, + "longitudeCity": -89.73222, + "nameCity": "Minocqua", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 363, + "codeIataCity": "ARW", + "codeIso2Country": "RO", + "geonameId": 686254, + "latitudeCity": 46.183334, + "longitudeCity": 21.266666, + "nameCity": "Arad", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "-5", + "cityId": 364, + "codeIataCity": "ARX", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 40.216667, + "longitudeCity": -74.1, + "nameCity": "Neptune", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 365, + "codeIataCity": "ARY", + "codeIso2Country": "AU", + "geonameId": 2177091, + "latitudeCity": -37.316666, + "longitudeCity": 143.0, + "nameCity": "Ararat", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "1", + "cityId": 366, + "codeIataCity": "ARZ", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -7.5, + "longitudeCity": 13.5, + "nameCity": "N'zeto", + "timezone": "Africa/Luanda" + }, + { + "GMT": "3", + "cityId": 367, + "codeIataCity": "ASA", + "codeIso2Country": "ER", + "geonameId": 0, + "latitudeCity": 13.07, + "longitudeCity": 42.638332, + "nameCity": "Assab", + "timezone": "Africa/Asmara" + }, + { + "GMT": "5", + "cityId": 368, + "codeIataCity": "ASB", + "codeIso2Country": "TM", + "geonameId": 162183, + "latitudeCity": 37.984184, + "longitudeCity": 58.366978, + "nameCity": "Ashgabat", + "timezone": "Asia/Ashgabat" + }, + { + "GMT": "-4", + "cityId": 369, + "codeIataCity": "ASC", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -15.916667, + "longitudeCity": -63.15, + "nameCity": "Ascension", + "timezone": "America/La_Paz" + }, + { + "GMT": "-5", + "cityId": 370, + "codeIataCity": "ASD", + "codeIso2Country": "BS", + "geonameId": 3572906, + "latitudeCity": 24.697779, + "longitudeCity": -77.79611, + "nameCity": "Andros Town", + "timezone": "America/Nassau" + }, + { + "GMT": "-7", + "cityId": 371, + "codeIataCity": "ASE", + "codeIso2Country": "US", + "geonameId": 5412230, + "latitudeCity": 39.219685, + "longitudeCity": -106.864685, + "nameCity": "Aspen", + "timezone": "America/Denver" + }, + { + "GMT": "3", + "cityId": 372, + "codeIataCity": "ASF", + "codeIso2Country": "RU", + "geonameId": 580497, + "latitudeCity": 46.2877, + "longitudeCity": 47.999977, + "nameCity": "Astrakhan", + "timezone": "Europe/Volgograd" + }, + { + "GMT": "12", + "cityId": 373, + "codeIataCity": "ASG", + "codeIso2Country": "NZ", + "geonameId": 6217081, + "latitudeCity": -43.9, + "longitudeCity": 171.78334, + "nameCity": "Ashburton", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-5", + "cityId": 374, + "codeIataCity": "ASH", + "codeIso2Country": "US", + "geonameId": 5090046, + "latitudeCity": 42.77889, + "longitudeCity": -71.509445, + "nameCity": "Nashua", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 375, + "codeIataCity": "ASI", + "codeIso2Country": "SH", + "geonameId": 2411397, + "latitudeCity": -7.966667, + "longitudeCity": -14.4, + "nameCity": "Georgetown", + "timezone": "Atlantic/St_Helena" + }, + { + "GMT": "9", + "cityId": 376, + "codeIataCity": "ASJ", + "codeIso2Country": "JP", + "geonameId": 0, + "latitudeCity": 28.431522, + "longitudeCity": 129.70793, + "nameCity": "Amami", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "0", + "cityId": 377, + "codeIataCity": "ASK", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 6.816667, + "longitudeCity": -5.283333, + "nameCity": "Yamoussoukro", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "-6", + "cityId": 378, + "codeIataCity": "ASL", + "codeIso2Country": "US", + "geonameId": 4709272, + "latitudeCity": 32.55, + "longitudeCity": -94.38333, + "nameCity": "Marshall", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 379, + "codeIataCity": "ASM", + "codeIso2Country": "ER", + "geonameId": 343300, + "latitudeCity": 15.291111, + "longitudeCity": 38.91028, + "nameCity": "Asmara", + "timezone": "Africa/Asmara" + }, + { + "GMT": "-6", + "cityId": 380, + "codeIataCity": "ASN", + "codeIso2Country": "US", + "geonameId": 4049979, + "latitudeCity": 33.433334, + "longitudeCity": -86.1, + "nameCity": "Talladega", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 381, + "codeIataCity": "ASO", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 10.047222, + "longitudeCity": 34.536667, + "nameCity": "Asosa", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "9.30", + "cityId": 382, + "codeIataCity": "ASP", + "codeIso2Country": "AU", + "geonameId": 2077895, + "latitudeCity": -23.70021, + "longitudeCity": 133.880611, + "nameCity": "Alice Springs", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-8", + "cityId": 383, + "codeIataCity": "ASQ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.466667, + "longitudeCity": -117.166664, + "nameCity": "Austin", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "cityId": 384, + "codeIataCity": "ASR", + "codeIso2Country": "TR", + "geonameId": 308464, + "latitudeCity": 38.7742, + "longitudeCity": 35.490707, + "nameCity": "Kayseri", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-8", + "cityId": 385, + "codeIataCity": "AST", + "codeIso2Country": "US", + "geonameId": 5711847, + "latitudeCity": 46.15972, + "longitudeCity": -123.88, + "nameCity": "Astoria", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "cityId": 386, + "codeIataCity": "ASU", + "codeIso2Country": "PY", + "geonameId": 3439389, + "latitudeCity": -25.241795, + "longitudeCity": -57.513794, + "nameCity": "Asuncion", + "timezone": "America/Asuncion" + }, + { + "GMT": "3", + "cityId": 387, + "codeIataCity": "ASV", + "codeIso2Country": "KE", + "geonameId": 201050, + "latitudeCity": -2.633333, + "longitudeCity": 37.25, + "nameCity": "Amboseli", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "2", + "cityId": 388, + "codeIataCity": "ASW", + "codeIso2Country": "EG", + "geonameId": 359792, + "latitudeCity": 23.968021, + "longitudeCity": 32.824818, + "nameCity": "Aswan", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-6", + "cityId": 389, + "codeIataCity": "ASX", + "codeIso2Country": "US", + "geonameId": 5024719, + "latitudeCity": 46.55, + "longitudeCity": -90.916664, + "nameCity": "Ashland", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 390, + "codeIataCity": "ASY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 46.033333, + "longitudeCity": -99.36667, + "nameCity": "Ashley", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 391, + "codeIataCity": "ASZ", + "codeIso2Country": "PG", + "geonameId": 2093967, + "latitudeCity": -5.866667, + "longitudeCity": 150.36667, + "nameCity": "Asirim", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 392, + "codeIataCity": "ATA", + "codeIso2Country": "PE", + "geonameId": 3699617, + "latitudeCity": -9.347222, + "longitudeCity": -77.6, + "nameCity": "Anta", + "timezone": "America/Lima" + }, + { + "GMT": "3", + "cityId": 393, + "codeIataCity": "ATB", + "codeIso2Country": "SD", + "geonameId": 0, + "latitudeCity": 17.716667, + "longitudeCity": 34.016666, + "nameCity": "Atbara", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "-5", + "cityId": 394, + "codeIataCity": "ATC", + "codeIso2Country": "BS", + "geonameId": 0, + "latitudeCity": 24.62861, + "longitudeCity": -75.67139, + "nameCity": "Arthur's Town", + "timezone": "America/Nassau" + }, + { + "GMT": "11", + "cityId": 395, + "codeIataCity": "ATD", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -8.866667, + "longitudeCity": 161.03334, + "nameCity": "Atoifi", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-6", + "cityId": 396, + "codeIataCity": "ATE", + "codeIso2Country": "US", + "geonameId": 4542367, + "latitudeCity": 34.233334, + "longitudeCity": -95.61667, + "nameCity": "Antlers", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 397, + "codeIataCity": "ATF", + "codeIso2Country": "EC", + "geonameId": 3660689, + "latitudeCity": -1.083333, + "longitudeCity": -78.7, + "nameCity": "Ambato", + "timezone": "America/Guayaquil" + }, + { + "GMT": "5", + "cityId": 398, + "codeIataCity": "ATG", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 33.9, + "longitudeCity": 72.25, + "nameCity": "Attock", + "timezone": "Asia/Karachi" + }, + { + "GMT": "2", + "cityId": 399, + "codeIataCity": "ATH", + "codeIso2Country": "GR", + "geonameId": 264371, + "latitudeCity": 37.93635, + "longitudeCity": 23.946486, + "nameCity": "Athens", + "timezone": "Europe/Athens" + }, + { + "GMT": "-3", + "cityId": 400, + "codeIataCity": "ATI", + "codeIso2Country": "UY", + "geonameId": 3443758, + "latitudeCity": -30.4, + "longitudeCity": -56.50833, + "nameCity": "Artigas", + "timezone": "America/Montevideo" + }, + { + "GMT": "3", + "cityId": 401, + "codeIataCity": "ATJ", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -19.85, + "longitudeCity": 47.016666, + "nameCity": "Antsirabe", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-9", + "cityId": 402, + "codeIataCity": "ATK", + "codeIso2Country": "US", + "geonameId": 5879756, + "latitudeCity": 70.5, + "longitudeCity": -157.33333, + "nameCity": "Atqasuk", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 403, + "codeIataCity": "ATL", + "codeIso2Country": "US", + "geonameId": 4180439, + "latitudeCity": 33.748995, + "longitudeCity": -84.387982, + "nameCity": "Atlanta", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 404, + "codeIataCity": "ATM", + "codeIso2Country": "BR", + "geonameId": 3407882, + "latitudeCity": -3.2, + "longitudeCity": -52.216667, + "nameCity": "Altamira", + "timezone": "America/Santarem" + }, + { + "GMT": "10", + "cityId": 405, + "codeIataCity": "ATN", + "codeIso2Country": "PG", + "geonameId": 2093685, + "latitudeCity": -3.666667, + "longitudeCity": 152.46666, + "nameCity": "Namatanai", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 406, + "codeIataCity": "ATO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.333332, + "longitudeCity": -82.1, + "nameCity": "Athens", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 407, + "codeIataCity": "ATP", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -3.166667, + "longitudeCity": 142.28334, + "nameCity": "Aitape", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5.30", + "cityId": 408, + "codeIataCity": "ATQ", + "codeIso2Country": "IN", + "geonameId": 1278710, + "latitudeCity": 31.706741, + "longitudeCity": 74.8073, + "nameCity": "Amritsar", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "0", + "cityId": 409, + "codeIataCity": "ATR", + "codeIso2Country": "MR", + "geonameId": 0, + "latitudeCity": 20.499443, + "longitudeCity": -13.046389, + "nameCity": "Atar", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "-7", + "cityId": 410, + "codeIataCity": "ATS", + "codeIso2Country": "US", + "geonameId": 5488441, + "latitudeCity": 32.84833, + "longitudeCity": -104.46694, + "nameCity": "Artesia", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "cityId": 411, + "codeIataCity": "ATT", + "codeIso2Country": "US", + "geonameId": 5879749, + "latitudeCity": 60.866943, + "longitudeCity": -162.2675, + "nameCity": "Atmautluak", + "timezone": "America/Nome" + }, + { + "GMT": "-10", + "cityId": 412, + "codeIataCity": "ATU", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 52.825832, + "longitudeCity": 173.17278, + "nameCity": "Attu Island", + "timezone": "America/Adak" + }, + { + "GMT": "1", + "cityId": 413, + "codeIataCity": "ATV", + "codeIso2Country": "TD", + "geonameId": 2436400, + "latitudeCity": 13.242222, + "longitudeCity": 18.3075, + "nameCity": "Ati", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "-6", + "cityId": 414, + "codeIataCity": "ATW", + "codeIso2Country": "US", + "geonameId": 5244080, + "latitudeCity": 44.26011, + "longitudeCity": -88.50994, + "nameCity": "Appleton", + "timezone": "America/Chicago" + }, + { + "GMT": "6", + "cityId": 415, + "codeIataCity": "ATX", + "codeIso2Country": "KZ", + "geonameId": 0, + "latitudeCity": 51.88333, + "longitudeCity": 68.4, + "nameCity": "Atbasar", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-6", + "cityId": 416, + "codeIataCity": "ATY", + "codeIso2Country": "US", + "geonameId": 5232741, + "latitudeCity": 44.90889, + "longitudeCity": -97.15417, + "nameCity": "Watertown", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 417, + "codeIataCity": "ATZ", + "codeIso2Country": "EG", + "geonameId": 0, + "latitudeCity": 27.033333, + "longitudeCity": 31.0, + "nameCity": "Assiut", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-4", + "cityId": 418, + "codeIataCity": "AUA", + "codeIso2Country": "AW", + "geonameId": 3577152, + "latitudeCity": 12.502222, + "longitudeCity": -70.013885, + "nameCity": "Aruba", + "timezone": "America/Aruba" + }, + { + "GMT": "-4", + "cityId": 419, + "codeIataCity": "AUB", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -5.766667, + "longitudeCity": -63.35, + "nameCity": "Itauba", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-5", + "cityId": 420, + "codeIataCity": "AUC", + "codeIso2Country": "CO", + "geonameId": 3689718, + "latitudeCity": 7.071667, + "longitudeCity": -70.7425, + "nameCity": "Arauca", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "cityId": 421, + "codeIataCity": "AUD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.506945, + "longitudeCity": 139.88167, + "nameCity": "Augustus Downs", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "cityId": 422, + "codeIataCity": "AUE", + "codeIso2Country": "EG", + "geonameId": 0, + "latitudeCity": 28.9, + "longitudeCity": 33.183334, + "nameCity": "Abu Rudeis", + "timezone": "Africa/Cairo" + }, + { + "GMT": "1", + "cityId": 423, + "codeIataCity": "AUF", + "codeIso2Country": "FR", + "geonameId": 3035843, + "latitudeCity": 47.85, + "longitudeCity": 3.5, + "nameCity": "Auxerre", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 424, + "codeIataCity": "AUG", + "codeIso2Country": "US", + "geonameId": 4957003, + "latitudeCity": 44.318054, + "longitudeCity": -69.79667, + "nameCity": "Augusta", + "timezone": "America/New_York" + }, + { + "GMT": "4", + "cityId": 425, + "codeIataCity": "AUH", + "codeIso2Country": "AE", + "geonameId": 292968, + "latitudeCity": 24.466667, + "longitudeCity": 54.366667, + "nameCity": "Abu Dhabi", + "timezone": "Asia/Dubai" + }, + { + "GMT": "10", + "cityId": 426, + "codeIataCity": "AUI", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -1.458333, + "longitudeCity": 143.075, + "nameCity": "Aua Island", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 427, + "codeIataCity": "AUJ", + "codeIso2Country": "PG", + "geonameId": 2100933, + "latitudeCity": -4.25, + "longitudeCity": 142.85, + "nameCity": "Ambunti", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 428, + "codeIataCity": "AUK", + "codeIso2Country": "US", + "geonameId": 5879057, + "latitudeCity": 62.689167, + "longitudeCity": -164.61084, + "nameCity": "Alakanuk", + "timezone": "America/Nome" + }, + { + "GMT": "12", + "cityId": 429, + "codeIataCity": "AUL", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 8.133333, + "longitudeCity": 171.16667, + "nameCity": "Aur Island", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-6", + "cityId": 430, + "codeIataCity": "AUM", + "codeIso2Country": "US", + "geonameId": 5016884, + "latitudeCity": 43.666668, + "longitudeCity": -92.98333, + "nameCity": "Austin", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 431, + "codeIataCity": "AUN", + "codeIso2Country": "US", + "geonameId": 5389489, + "latitudeCity": 38.9, + "longitudeCity": -121.066666, + "nameCity": "Auburn", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 432, + "codeIataCity": "AUO", + "codeIso2Country": "US", + "geonameId": 4081644, + "latitudeCity": 32.63333, + "longitudeCity": -85.5, + "nameCity": "Auburn", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 433, + "codeIataCity": "AUP", + "codeIso2Country": "PG", + "geonameId": 2085070, + "latitudeCity": -9.983333, + "longitudeCity": 149.58333, + "nameCity": "Agaun", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9:30", + "cityId": 434, + "codeIataCity": "AUQ", + "codeIso2Country": "PF", + "geonameId": 4020109, + "latitudeCity": -9.769324, + "longitudeCity": -139.00978, + "nameCity": "Atuona", + "timezone": "Pacific/Marquesas" + }, + { + "GMT": "1", + "cityId": 435, + "codeIataCity": "AUR", + "codeIso2Country": "FR", + "geonameId": 3036016, + "latitudeCity": 44.8975, + "longitudeCity": 2.418056, + "nameCity": "Aurillac", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "cityId": 436, + "codeIataCity": "AUS", + "codeIso2Country": "US", + "geonameId": 4671654, + "latitudeCity": 30.267153, + "longitudeCity": -97.743061, + "nameCity": "Austin", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "cityId": 437, + "codeIataCity": "AUT", + "codeIso2Country": "ID", + "geonameId": 1645457, + "latitudeCity": -8.216667, + "longitudeCity": 125.583336, + "nameCity": "Atauro", + "timezone": "Asia/Dili" + }, + { + "GMT": "10", + "cityId": 438, + "codeIataCity": "AUU", + "codeIso2Country": "AU", + "geonameId": 2144209, + "latitudeCity": -13.166667, + "longitudeCity": 142.25, + "nameCity": "Aurukun Mission", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 439, + "codeIataCity": "AUV", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.716667, + "longitudeCity": 148.43333, + "nameCity": "Aumo", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 440, + "codeIataCity": "AUW", + "codeIso2Country": "US", + "geonameId": 5278131, + "latitudeCity": 44.923332, + "longitudeCity": -89.623055, + "nameCity": "Wausau", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 441, + "codeIataCity": "AUX", + "codeIso2Country": "BR", + "geonameId": 3407357, + "latitudeCity": -7.2, + "longitudeCity": -48.2, + "nameCity": "Araguaina", + "timezone": "America/Araguaina" + }, + { + "GMT": "11", + "cityId": 442, + "codeIataCity": "AUY", + "codeIso2Country": "VU", + "geonameId": 2136499, + "latitudeCity": -20.333332, + "longitudeCity": 169.66667, + "nameCity": "Aneityum", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-6", + "cityId": 443, + "codeIataCity": "AUZ", + "codeIso2Country": "US", + "geonameId": 4887398, + "latitudeCity": 41.75, + "longitudeCity": -88.316666, + "nameCity": "Aurora", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 444, + "codeIataCity": "AVA", + "codeIso2Country": "CN", + "geonameId": 1809461, + "latitudeCity": 26.257221, + "longitudeCity": 105.87278, + "nameCity": "An Shun", + "timezone": "Asia/Chongqing" + }, + { + "GMT": "1", + "cityId": 445, + "codeIataCity": "AVB", + "codeIso2Country": "IT", + "geonameId": 3164603, + "latitudeCity": 46.033333, + "longitudeCity": 12.6, + "nameCity": "Aviano", + "timezone": "Europe/Rome" + }, + { + "GMT": "9.30", + "cityId": 446, + "codeIataCity": "AVG", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -15.65, + "longitudeCity": 130.01666, + "nameCity": "Auvergne", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-5", + "cityId": 447, + "codeIataCity": "AVI", + "codeIso2Country": "CU", + "geonameId": 0, + "latitudeCity": 22.025, + "longitudeCity": -78.79139, + "nameCity": "Ciego De Avila", + "timezone": "America/Havana" + }, + { + "GMT": "8", + "cityId": 448, + "codeIataCity": "AVK", + "codeIso2Country": "MN", + "geonameId": 0, + "latitudeCity": 46.266666, + "longitudeCity": 102.78333, + "nameCity": "Arvaikheer", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "-5", + "cityId": 449, + "codeIataCity": "AVL", + "codeIso2Country": "US", + "geonameId": 4453066, + "latitudeCity": 35.43508, + "longitudeCity": -82.537315, + "nameCity": "Fletcher", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 450, + "codeIataCity": "AVN", + "codeIso2Country": "FR", + "geonameId": 3035681, + "latitudeCity": 43.949317, + "longitudeCity": 4.805528, + "nameCity": "Avignon", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 451, + "codeIataCity": "AVO", + "codeIso2Country": "US", + "geonameId": 4160983, + "latitudeCity": 27.6, + "longitudeCity": -81.51667, + "nameCity": "Avon Park", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 452, + "codeIataCity": "AVP", + "codeIso2Country": "US", + "geonameId": 5219488, + "latitudeCity": 41.245915, + "longitudeCity": -75.881308, + "nameCity": "Wilkes-Barre", + "timezone": "America/New_York" + }, + { + "GMT": "11", + "cityId": 453, + "codeIataCity": "AVU", + "codeIso2Country": "SB", + "geonameId": 2109675, + "latitudeCity": -9.833333, + "longitudeCity": 160.38333, + "nameCity": "Avu Avu", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-8", + "cityId": 454, + "codeIataCity": "AVX", + "codeIso2Country": "US", + "geonameId": 5368361, + "latitudeCity": 33.340833, + "longitudeCity": -118.327778, + "nameCity": "Avalon", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "cityId": 455, + "codeIataCity": "AWA", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 7.061111, + "longitudeCity": 38.4875, + "nameCity": "Awassa", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "10", + "cityId": 456, + "codeIataCity": "AWB", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.016667, + "longitudeCity": 142.75, + "nameCity": "Awaba", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "11", + "cityId": 457, + "codeIataCity": "AWD", + "codeIso2Country": "VU", + "geonameId": 2136256, + "latitudeCity": -19.25, + "longitudeCity": 169.5, + "nameCity": "Aniwa", + "timezone": "Pacific/Efate" + }, + { + "GMT": "1", + "cityId": 458, + "codeIataCity": "AWE", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -0.75, + "longitudeCity": 9.45, + "nameCity": "Alowe", + "timezone": "Africa/Libreville" + }, + { + "GMT": "12", + "cityId": 459, + "codeIataCity": "AWK", + "codeIso2Country": "UM", + "geonameId": 0, + "latitudeCity": 19.283333, + "longitudeCity": 166.63333, + "nameCity": "Wake Island", + "timezone": "Pacific/Wake" + }, + { + "GMT": "-6", + "cityId": 460, + "codeIataCity": "AWM", + "codeIso2Country": "US", + "geonameId": 4641239, + "latitudeCity": 35.13333, + "longitudeCity": -90.183334, + "nameCity": "West Memphis", + "timezone": "America/Chicago" + }, + { + "GMT": "9.30", + "cityId": 461, + "codeIataCity": "AWN", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -26.25, + "longitudeCity": 138.66667, + "nameCity": "Alton Downs", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "9.30", + "cityId": 462, + "codeIataCity": "AWP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -20.5, + "longitudeCity": 137.75, + "nameCity": "Austral Downs", + "timezone": "Australia/Darwin" + }, + { + "GMT": "10", + "cityId": 463, + "codeIataCity": "AWR", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -4.124167, + "longitudeCity": 144.87029, + "nameCity": "Awar", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3.30", + "cityId": 464, + "codeIataCity": "AWZ", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 31.34292, + "longitudeCity": 48.74668, + "nameCity": "Ahwaz", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-4", + "cityId": 465, + "codeIataCity": "AXA", + "codeIso2Country": "AI", + "geonameId": 3573374, + "latitudeCity": 18.216667, + "longitudeCity": -63.066666, + "nameCity": "Anguilla", + "timezone": "America/Anguilla" + }, + { + "GMT": "-5", + "cityId": 466, + "codeIataCity": "AXB", + "codeIso2Country": "US", + "geonameId": 5106950, + "latitudeCity": 44.2525, + "longitudeCity": -75.90139, + "nameCity": "Alexandria Bay", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 467, + "codeIataCity": "AXC", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -22.958055, + "longitudeCity": 145.2425, + "nameCity": "Aramac", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "cityId": 468, + "codeIataCity": "AXD", + "codeIso2Country": "GR", + "geonameId": 736928, + "latitudeCity": 40.856785, + "longitudeCity": 25.944893, + "nameCity": "Alexandroupolis", + "timezone": "Europe/Athens" + }, + { + "GMT": "-3", + "cityId": 469, + "codeIataCity": "AXE", + "codeIso2Country": "BR", + "geonameId": 3466296, + "latitudeCity": -26.883333, + "longitudeCity": -52.38333, + "nameCity": "Xanxere", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "cityId": 470, + "codeIataCity": "AXG", + "codeIso2Country": "US", + "geonameId": 4866445, + "latitudeCity": 43.066666, + "longitudeCity": -94.23333, + "nameCity": "Algona", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 471, + "codeIataCity": "AXK", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 13.866667, + "longitudeCity": 46.3, + "nameCity": "Ataq", + "timezone": "Asia/Aden" + }, + { + "GMT": "9.30", + "cityId": 472, + "codeIataCity": "AXL", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -19.083332, + "longitudeCity": 136.66667, + "nameCity": "Alexandria", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-5", + "cityId": 473, + "codeIataCity": "AXM", + "codeIso2Country": "CO", + "geonameId": 3689560, + "latitudeCity": 4.452869, + "longitudeCity": -75.76804, + "nameCity": "Armenia", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 474, + "codeIataCity": "AXN", + "codeIso2Country": "US", + "geonameId": 5016108, + "latitudeCity": 45.86722, + "longitudeCity": -95.394165, + "nameCity": "Alexandria", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 475, + "codeIataCity": "AXP", + "codeIso2Country": "BS", + "geonameId": 3571370, + "latitudeCity": 22.45, + "longitudeCity": -73.96667, + "nameCity": "Spring Point", + "timezone": "America/Nassau" + }, + { + "GMT": "-10", + "cityId": 476, + "codeIataCity": "AXR", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -15.25, + "longitudeCity": -146.75, + "nameCity": "Arutua", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "9", + "cityId": 477, + "codeIataCity": "AXT", + "codeIso2Country": "JP", + "geonameId": 2113719, + "latitudeCity": 39.61177, + "longitudeCity": 140.22015, + "nameCity": "Akita", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "3", + "cityId": 478, + "codeIataCity": "AXU", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 14.120833, + "longitudeCity": 38.716667, + "nameCity": "Axum", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-5", + "cityId": 479, + "codeIataCity": "AXV", + "codeIso2Country": "US", + "geonameId": 5175670, + "latitudeCity": 40.566666, + "longitudeCity": -84.2, + "nameCity": "Wapakoneta", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 480, + "codeIataCity": "AXX", + "codeIso2Country": "US", + "geonameId": 5455214, + "latitudeCity": 36.416668, + "longitudeCity": -105.28333, + "nameCity": "Angel Fire", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "cityId": 481, + "codeIataCity": "AYA", + "codeIso2Country": "CO", + "geonameId": 3689381, + "latitudeCity": 8.316667, + "longitudeCity": -75.15, + "nameCity": "Ayapel", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 482, + "codeIataCity": "AYC", + "codeIso2Country": "CO", + "geonameId": 3690465, + "latitudeCity": 8.6, + "longitudeCity": -73.61667, + "nameCity": "Ayacucho", + "timezone": "America/Bogota" + }, + { + "GMT": "9.30", + "cityId": 483, + "codeIataCity": "AYD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -19.3, + "longitudeCity": 135.95, + "nameCity": "Alroy Downs", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-5", + "cityId": 484, + "codeIataCity": "AYE", + "codeIso2Country": "US", + "geonameId": 7257567, + "latitudeCity": 42.55, + "longitudeCity": -71.6, + "nameCity": "Fort Devens", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 485, + "codeIataCity": "AYG", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 1.533333, + "longitudeCity": -73.933334, + "nameCity": "Yaguara", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 486, + "codeIataCity": "AYI", + "codeIso2Country": "CO", + "geonameId": 3665757, + "latitudeCity": -0.333333, + "longitudeCity": -72.333336, + "nameCity": "Yari", + "timezone": "America/Bogota" + }, + { + "GMT": "6", + "cityId": 487, + "codeIataCity": "AYK", + "codeIso2Country": "KZ", + "geonameId": 0, + "latitudeCity": 50.316666, + "longitudeCity": 66.96667, + "nameCity": "Arkalyk", + "timezone": "Asia/Almaty" + }, + { + "GMT": "9.30", + "cityId": 488, + "codeIataCity": "AYL", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.033333, + "longitudeCity": 135.53334, + "nameCity": "Anthony Lagoon", + "timezone": "Australia/Darwin" + }, + { + "GMT": "8", + "cityId": 489, + "codeIataCity": "AYN", + "codeIso2Country": "CN", + "geonameId": 1785294, + "latitudeCity": 36.1, + "longitudeCity": 114.35, + "nameCity": "Anyang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-4", + "cityId": 490, + "codeIataCity": "AYO", + "codeIso2Country": "PY", + "geonameId": 3439378, + "latitudeCity": -27.366667, + "longitudeCity": -56.85, + "nameCity": "Ayolas", + "timezone": "America/Asuncion" + }, + { + "GMT": "-5", + "cityId": 491, + "codeIataCity": "AYP", + "codeIso2Country": "PE", + "geonameId": 3947019, + "latitudeCity": -13.197222, + "longitudeCity": -74.24722, + "nameCity": "Ayacucho", + "timezone": "America/Lima" + }, + { + "GMT": "9.30", + "cityId": 492, + "codeIataCity": "AYQ", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -25.190878, + "longitudeCity": 130.97658, + "nameCity": "Ayers Rock", + "timezone": "Australia/Darwin" + }, + { + "GMT": "10", + "cityId": 493, + "codeIataCity": "AYR", + "codeIso2Country": "AU", + "geonameId": 2146142, + "latitudeCity": -19.596666, + "longitudeCity": 147.32445, + "nameCity": "Ayr", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 494, + "codeIataCity": "AYS", + "codeIso2Country": "US", + "geonameId": 4229763, + "latitudeCity": 31.248611, + "longitudeCity": -82.39667, + "nameCity": "Waycross", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 495, + "codeIataCity": "AYT", + "codeIso2Country": "TR", + "geonameId": 323777, + "latitudeCity": 36.89928, + "longitudeCity": 30.80135, + "nameCity": "Antalya", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "10", + "cityId": 496, + "codeIataCity": "AYU", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.333333, + "longitudeCity": 145.9, + "nameCity": "Aiyura", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "cityId": 497, + "codeIataCity": "AYW", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -1.2, + "longitudeCity": 132.5, + "nameCity": "Ayawasi", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "5.30", + "cityId": 498, + "codeIataCity": "AYY", + "codeIso2Country": "LK", + "geonameId": 1226371, + "latitudeCity": 6.855, + "longitudeCity": 81.8311, + "nameCity": "Pothuvil", + "timezone": "Asia/Colombo" + }, + { + "GMT": "-5", + "cityId": 499, + "codeIataCity": "AYZ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 40.666668, + "longitudeCity": -73.416664, + "nameCity": "Amityville", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 500, + "codeIataCity": "AZB", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -10.15, + "longitudeCity": 148.81667, + "nameCity": "Amazon Bay", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3.30", + "cityId": 501, + "codeIataCity": "AZD", + "codeIso2Country": "IR", + "geonameId": 111822, + "latitudeCity": 31.903603, + "longitudeCity": 54.283264, + "nameCity": "Yazd", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-6", + "cityId": 502, + "codeIataCity": "AZG", + "codeIso2Country": "MX", + "geonameId": 0, + "latitudeCity": 19.068056, + "longitudeCity": -102.352776, + "nameCity": "Apatzingan", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-4", + "cityId": 503, + "codeIataCity": "AZL", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -13.47, + "longitudeCity": -58.85, + "nameCity": "Sapezal", + "timezone": "America/Cuiaba" + }, + { + "GMT": "5", + "cityId": 504, + "codeIataCity": "AZN", + "codeIso2Country": "UZ", + "geonameId": 0, + "latitudeCity": 40.733334, + "longitudeCity": 72.3, + "nameCity": "Andizhan", + "timezone": "Asia/Tashkent" + }, + { + "GMT": "-5", + "cityId": 505, + "codeIataCity": "AZO", + "codeIso2Country": "US", + "geonameId": 4997787, + "latitudeCity": 42.239964, + "longitudeCity": -85.55656, + "nameCity": "Kalamazoo", + "timezone": "America/Detroit" + }, + { + "GMT": "1", + "cityId": 506, + "codeIataCity": "AZR", + "codeIso2Country": "DZ", + "geonameId": 0, + "latitudeCity": 27.883333, + "longitudeCity": -0.283333, + "nameCity": "Adrar", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-4", + "cityId": 507, + "codeIataCity": "AZS", + "codeIso2Country": "DO", + "geonameId": 3500243, + "latitudeCity": 19.270555, + "longitudeCity": -69.736946, + "nameCity": "El Catey", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "-5", + "cityId": 508, + "codeIataCity": "AZT", + "codeIso2Country": "CO", + "geonameId": 3665587, + "latitudeCity": 6.866667, + "longitudeCity": -73.25, + "nameCity": "Zapatoca", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 509, + "codeIataCity": "AZZ", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -7.883333, + "longitudeCity": 13.15, + "nameCity": "Ambriz", + "timezone": "Africa/Luanda" + }, + { + "GMT": "10", + "cityId": 510, + "codeIataCity": "BAA", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.316667, + "longitudeCity": 151.03334, + "nameCity": "Bialla", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 511, + "codeIataCity": "BAC", + "codeIso2Country": "CO", + "geonameId": 3665900, + "latitudeCity": 4.583333, + "longitudeCity": -72.96667, + "nameCity": "Barranca De Upia", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 512, + "codeIataCity": "BAE", + "codeIso2Country": "FR", + "geonameId": 2990440, + "latitudeCity": 44.38333, + "longitudeCity": 6.666667, + "nameCity": "Barcelonnette", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 513, + "codeIataCity": "BAF", + "codeIso2Country": "US", + "geonameId": 4939783, + "latitudeCity": 42.13333, + "longitudeCity": -72.75, + "nameCity": "Westfield", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 514, + "codeIataCity": "BAG", + "codeIso2Country": "PH", + "geonameId": 1728930, + "latitudeCity": 16.376667, + "longitudeCity": 120.617775, + "nameCity": "Baguio", + "timezone": "Asia/Manila" + }, + { + "GMT": "3", + "cityId": 515, + "codeIataCity": "BAH", + "codeIso2Country": "BH", + "geonameId": 290340, + "latitudeCity": 26.26918, + "longitudeCity": 50.62605, + "nameCity": "Manama", + "timezone": "Asia/Bahrain" + }, + { + "GMT": "-6", + "cityId": 516, + "codeIataCity": "BAI", + "codeIso2Country": "CR", + "geonameId": 3625016, + "latitudeCity": 9.166667, + "longitudeCity": -83.333336, + "nameCity": "Buenos Aires", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "10", + "cityId": 517, + "codeIataCity": "BAJ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -4.833333, + "longitudeCity": 149.13333, + "nameCity": "Bali", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "4", + "cityId": 518, + "codeIataCity": "BAK", + "codeIso2Country": "AZ", + "geonameId": 587084, + "latitudeCity": 40.43495, + "longitudeCity": 49.867623, + "nameCity": "Baku", + "timezone": "Asia/Baku" + }, + { + "GMT": "3", + "cityId": 519, + "codeIataCity": "BAL", + "codeIso2Country": "TR", + "geonameId": 321836, + "latitudeCity": 37.916668, + "longitudeCity": 41.083332, + "nameCity": "Batman", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-8", + "cityId": 520, + "codeIataCity": "BAM", + "codeIso2Country": "US", + "geonameId": 5703670, + "latitudeCity": 40.63333, + "longitudeCity": -116.933334, + "nameCity": "Battle Mountain", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "cityId": 521, + "codeIataCity": "BAN", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -4.313333, + "longitudeCity": 20.428057, + "nameCity": "Basongo", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "7", + "cityId": 522, + "codeIataCity": "BAO", + "codeIso2Country": "TH", + "geonameId": 0, + "latitudeCity": 17.385, + "longitudeCity": 102.79278, + "nameCity": "Ban Mak Khaen", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "10", + "cityId": 523, + "codeIataCity": "BAP", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -10.333333, + "longitudeCity": 149.75, + "nameCity": "Baibara", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 524, + "codeIataCity": "BAQ", + "codeIso2Country": "CO", + "geonameId": 3689147, + "latitudeCity": 10.886398, + "longitudeCity": -74.77618, + "nameCity": "Barranquilla", + "timezone": "America/Bogota" + }, + { + "GMT": "-9", + "cityId": 525, + "codeIataCity": "BAR", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 55.333332, + "longitudeCity": -133.6, + "nameCity": "Baker Island", + "timezone": "America/Sitka" + }, + { + "GMT": "11", + "cityId": 526, + "codeIataCity": "BAS", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -6.983333, + "longitudeCity": 155.88333, + "nameCity": "Balalae", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-3", + "cityId": 527, + "codeIataCity": "BAT", + "codeIso2Country": "BR", + "geonameId": 3470451, + "latitudeCity": -20.55, + "longitudeCity": -48.55, + "nameCity": "Barretos", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "8", + "cityId": 528, + "codeIataCity": "BAV", + "codeIso2Country": "CN", + "geonameId": 2038432, + "latitudeCity": 40.563328, + "longitudeCity": 110.0009, + "nameCity": "Baotou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 529, + "codeIataCity": "BAW", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -0.666667, + "longitudeCity": 146.35, + "nameCity": "Biawonque", + "timezone": "Africa/Libreville" + }, + { + "GMT": "6", + "cityId": 530, + "codeIataCity": "BAX", + "codeIso2Country": "RU", + "geonameId": 1510853, + "latitudeCity": 53.361088, + "longitudeCity": 83.547646, + "nameCity": "Barnaul", + "timezone": "Asia/Omsk" + }, + { + "GMT": "2", + "cityId": 531, + "codeIataCity": "BAY", + "codeIso2Country": "RO", + "geonameId": 685826, + "latitudeCity": 47.65, + "longitudeCity": 23.466667, + "nameCity": "Baia Mare", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "-4", + "cityId": 532, + "codeIataCity": "BAZ", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -0.966944, + "longitudeCity": -62.933613, + "nameCity": "Barbelos", + "timezone": "America/Manaus" + }, + { + "GMT": "-4", + "cityId": 533, + "codeIataCity": "BBA", + "codeIso2Country": "CL", + "geonameId": 3898880, + "latitudeCity": -45.916668, + "longitudeCity": -71.695, + "nameCity": "Balmaceda", + "timezone": "America/Santiago" + }, + { + "GMT": "-6", + "cityId": 534, + "codeIataCity": "BBB", + "codeIso2Country": "US", + "geonameId": 5016108, + "latitudeCity": 45.316666, + "longitudeCity": -95.6, + "nameCity": "Benson", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 535, + "codeIataCity": "BBC", + "codeIso2Country": "US", + "geonameId": 4829307, + "latitudeCity": 28.983334, + "longitudeCity": -95.96667, + "nameCity": "Bay City", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 536, + "codeIataCity": "BBD", + "codeIso2Country": "US", + "geonameId": 4676798, + "latitudeCity": 31.133333, + "longitudeCity": -99.333336, + "nameCity": "Brady", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 537, + "codeIataCity": "BBF", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.5, + "longitudeCity": -71.183334, + "nameCity": "Burlington", + "timezone": "America/New_York" + }, + { + "GMT": "12", + "cityId": 538, + "codeIataCity": "BBG", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": 3.166667, + "longitudeCity": 172.75, + "nameCity": "Butaritari", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "1", + "cityId": 539, + "codeIataCity": "BBH", + "codeIso2Country": "DE", + "geonameId": 2826287, + "latitudeCity": 54.363077, + "longitudeCity": 12.72492, + "nameCity": "Barth", + "timezone": "Europe/Berlin" + }, + { + "GMT": "5.30", + "cityId": 540, + "codeIataCity": "BBI", + "codeIso2Country": "IN", + "geonameId": 1275817, + "latitudeCity": 20.252853, + "longitudeCity": 85.81738, + "nameCity": "Bhubaneswar", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "cityId": 541, + "codeIataCity": "BBJ", + "codeIso2Country": "DE", + "geonameId": 2948184, + "latitudeCity": 49.966667, + "longitudeCity": 6.516667, + "nameCity": "Bitburg", + "timezone": "Europe/Berlin" + }, + { + "GMT": "2", + "cityId": 542, + "codeIataCity": "BBK", + "codeIso2Country": "BW", + "geonameId": 933677, + "latitudeCity": -17.816668, + "longitudeCity": 25.15, + "nameCity": "Kasane", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "7", + "cityId": 543, + "codeIataCity": "BBM", + "codeIso2Country": "KH", + "geonameId": 1822214, + "latitudeCity": 13.116667, + "longitudeCity": 103.2, + "nameCity": "Battambang", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "8", + "cityId": 544, + "codeIataCity": "BBN", + "codeIso2Country": "MY", + "geonameId": 0, + "latitudeCity": 3.683333, + "longitudeCity": 115.46667, + "nameCity": "Bario", + "timezone": "Asia/Kuching" + }, + { + "GMT": "3", + "cityId": 545, + "codeIataCity": "BBO", + "codeIso2Country": "SO", + "geonameId": 64435, + "latitudeCity": 10.419444, + "longitudeCity": 45.00639, + "nameCity": "Berbera", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "0", + "cityId": 546, + "codeIataCity": "BBP", + "codeIso2Country": "GB", + "geonameId": 2638138, + "latitudeCity": 50.683334, + "longitudeCity": -1.083333, + "nameCity": "Bembridge", + "timezone": "Europe/London" + }, + { + "GMT": "-4", + "cityId": 547, + "codeIataCity": "BBQ", + "codeIso2Country": "AG", + "geonameId": 0, + "latitudeCity": 17.555555, + "longitudeCity": -61.765, + "nameCity": "Barbuda", + "timezone": "America/Antigua" + }, + { + "GMT": "-4", + "cityId": 548, + "codeIataCity": "BBR", + "codeIso2Country": "GP", + "geonameId": 0, + "latitudeCity": 16.01639, + "longitudeCity": -61.739445, + "nameCity": "Basse Terre", + "timezone": "America/Guadeloupe" + }, + { + "GMT": "0", + "cityId": 549, + "codeIataCity": "BBS", + "codeIso2Country": "GB", + "geonameId": 2643743, + "latitudeCity": 51.333332, + "longitudeCity": -0.85, + "nameCity": "Yateley", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 550, + "codeIataCity": "BBT", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 4.219167, + "longitudeCity": 15.788056, + "nameCity": "Berberati", + "timezone": "Africa/Bangui" + }, + { + "GMT": "0", + "cityId": 551, + "codeIataCity": "BBV", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 4.666667, + "longitudeCity": -6.95, + "nameCity": "Bereby", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "-6", + "cityId": 552, + "codeIataCity": "BBW", + "codeIso2Country": "US", + "geonameId": 5071348, + "latitudeCity": 41.4, + "longitudeCity": -99.63333, + "nameCity": "Broken Bow", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 553, + "codeIataCity": "BBX", + "codeIso2Country": "US", + "geonameId": 4560349, + "latitudeCity": 40.136665, + "longitudeCity": -75.2675, + "nameCity": "Blue Bell", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 554, + "codeIataCity": "BBY", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 5.845833, + "longitudeCity": 20.649721, + "nameCity": "Bambari", + "timezone": "Africa/Bangui" + }, + { + "GMT": "2", + "cityId": 555, + "codeIataCity": "BBZ", + "codeIso2Country": "ZM", + "geonameId": 0, + "latitudeCity": -13.537222, + "longitudeCity": 23.11, + "nameCity": "Zambezi", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-5", + "cityId": 556, + "codeIataCity": "BCA", + "codeIso2Country": "CU", + "geonameId": 3567834, + "latitudeCity": 20.35, + "longitudeCity": -74.5, + "nameCity": "Baracoa", + "timezone": "America/Havana" + }, + { + "GMT": "-5", + "cityId": 557, + "codeIataCity": "BCB", + "codeIso2Country": "US", + "geonameId": 4752665, + "latitudeCity": 37.233334, + "longitudeCity": -80.416664, + "nameCity": "Blacksburg", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 558, + "codeIataCity": "BCC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 45.183334, + "longitudeCity": -109.1, + "nameCity": "Bear Creek", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "cityId": 559, + "codeIataCity": "BCD", + "codeIso2Country": "PH", + "geonameId": 1729564, + "latitudeCity": 10.644815, + "longitudeCity": 122.93359, + "nameCity": "Bacolod", + "timezone": "Asia/Manila" + }, + { + "GMT": "-7", + "cityId": 560, + "codeIataCity": "BCE", + "codeIso2Country": "US", + "geonameId": 5544525, + "latitudeCity": 37.70111, + "longitudeCity": -112.13528, + "nameCity": "Bryce", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 561, + "codeIataCity": "BCF", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 6.75, + "longitudeCity": 18.416668, + "nameCity": "Bouca", + "timezone": "Africa/Bangui" + }, + { + "GMT": "-4", + "cityId": 562, + "codeIataCity": "BCG", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 6.55, + "longitudeCity": -58.55, + "nameCity": "Bemichi", + "timezone": "America/Guyana" + }, + { + "GMT": "9", + "cityId": 563, + "codeIataCity": "BCH", + "codeIso2Country": "TL", + "geonameId": 1645457, + "latitudeCity": -8.491667, + "longitudeCity": 126.39972, + "nameCity": "Baucau", + "timezone": "Asia/Dili" + }, + { + "GMT": "10", + "cityId": 564, + "codeIataCity": "BCI", + "codeIso2Country": "AU", + "geonameId": 2176895, + "latitudeCity": -23.559168, + "longitudeCity": 145.30194, + "nameCity": "Barcaldine", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-7", + "cityId": 565, + "codeIataCity": "BCJ", + "codeIso2Country": "US", + "geonameId": 5411479, + "latitudeCity": 39.0, + "longitudeCity": -106.0, + "nameCity": "Baca Grande", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "cityId": 566, + "codeIataCity": "BCK", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.4, + "longitudeCity": 144.16667, + "nameCity": "Bolwarra", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "cityId": 567, + "codeIataCity": "BCL", + "codeIso2Country": "CR", + "geonameId": 3621241, + "latitudeCity": 10.833333, + "longitudeCity": -82.96667, + "nameCity": "Barra Colorado", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "2", + "cityId": 568, + "codeIataCity": "BCM", + "codeIso2Country": "RO", + "geonameId": 685948, + "latitudeCity": 46.59861, + "longitudeCity": 26.881945, + "nameCity": "Bacau", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "1", + "cityId": 569, + "codeIataCity": "BCN", + "codeIso2Country": "ES", + "geonameId": 3128760, + "latitudeCity": 41.387917, + "longitudeCity": 2.169919, + "nameCity": "Barcelona", + "timezone": "Europe/Madrid" + }, + { + "GMT": "3", + "cityId": 570, + "codeIataCity": "BCO", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 5.783333, + "longitudeCity": 36.55, + "nameCity": "Jinka", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "10", + "cityId": 571, + "codeIataCity": "BCP", + "codeIso2Country": "PG", + "geonameId": 2099957, + "latitudeCity": -5.85, + "longitudeCity": 146.48334, + "nameCity": "Bambu", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "cityId": 572, + "codeIataCity": "BCQ", + "codeIso2Country": "LY", + "geonameId": 0, + "latitudeCity": 27.683332, + "longitudeCity": 14.216667, + "nameCity": "Brack", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "-4", + "cityId": 573, + "codeIataCity": "BCR", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -8.75, + "longitudeCity": -67.38333, + "nameCity": "Boca Do Acre", + "timezone": "America/Manaus" + }, + { + "GMT": "-6", + "cityId": 574, + "codeIataCity": "BCS", + "codeIso2Country": "US", + "geonameId": 4316329, + "latitudeCity": 29.966667, + "longitudeCity": -90.0, + "nameCity": "Belle Chasse", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 575, + "codeIataCity": "BCT", + "codeIso2Country": "US", + "geonameId": 4155966, + "latitudeCity": 26.35, + "longitudeCity": -80.083336, + "nameCity": "Boca Raton", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 576, + "codeIataCity": "BCU", + "codeIso2Country": "NG", + "geonameId": 0, + "latitudeCity": 10.366667, + "longitudeCity": 9.8, + "nameCity": "Bauchi", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-6", + "cityId": 577, + "codeIataCity": "BCV", + "codeIso2Country": "BZ", + "geonameId": 3582672, + "latitudeCity": 17.266666, + "longitudeCity": -88.78333, + "nameCity": "Belmopan", + "timezone": "America/Belize" + }, + { + "GMT": "2", + "cityId": 578, + "codeIataCity": "BCW", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": -21.884722, + "longitudeCity": 35.425, + "nameCity": "Benguera Island", + "timezone": "Africa/Maputo" + }, + { + "GMT": "5", + "cityId": 579, + "codeIataCity": "BCX", + "codeIso2Country": "RU", + "geonameId": 584329, + "latitudeCity": 53.933334, + "longitudeCity": 58.333332, + "nameCity": "Beloreck", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "3", + "cityId": 580, + "codeIataCity": "BCY", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 6.216667, + "longitudeCity": 36.666668, + "nameCity": "Bulchi", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "9.30", + "cityId": 581, + "codeIataCity": "BCZ", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -13.783333, + "longitudeCity": 137.8, + "nameCity": "Bickerton Island", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-4", + "cityId": 582, + "codeIataCity": "BDA", + "codeIso2Country": "BM", + "geonameId": 3573197, + "latitudeCity": 32.358281, + "longitudeCity": -64.680683, + "nameCity": "St. George", + "timezone": "Atlantic/Bermuda" + }, + { + "GMT": "10", + "cityId": 583, + "codeIataCity": "BDB", + "codeIso2Country": "AU", + "geonameId": 2173323, + "latitudeCity": -24.898708, + "longitudeCity": 152.32187, + "nameCity": "Bundaberg", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "cityId": 584, + "codeIataCity": "BDC", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -5.466667, + "longitudeCity": -45.266666, + "nameCity": "Barra Do Corda", + "timezone": "America/Fortaleza" + }, + { + "GMT": "10", + "cityId": 585, + "codeIataCity": "BDD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -10.148655, + "longitudeCity": 142.17166, + "nameCity": "Badu Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "cityId": 586, + "codeIataCity": "BDE", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 48.72278, + "longitudeCity": -94.60694, + "nameCity": "Baudette", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 587, + "codeIataCity": "BDF", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.183334, + "longitudeCity": -89.65, + "nameCity": "Bradford", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 588, + "codeIataCity": "BDG", + "codeIso2Country": "US", + "geonameId": 5535484, + "latitudeCity": 37.61667, + "longitudeCity": -109.48333, + "nameCity": "Blanding", + "timezone": "America/Denver" + }, + { + "GMT": "3.30", + "cityId": 589, + "codeIataCity": "BDH", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 26.529486, + "longitudeCity": 54.829147, + "nameCity": "Bandar Lengeh", + "timezone": "Asia/Tehran" + }, + { + "GMT": "4", + "cityId": 590, + "codeIataCity": "BDI", + "codeIso2Country": "SC", + "geonameId": 0, + "latitudeCity": -3.716667, + "longitudeCity": 55.216667, + "nameCity": "Bird Island", + "timezone": "Indian/Mahe" + }, + { + "GMT": "8", + "cityId": 591, + "codeIataCity": "BDJ", + "codeIso2Country": "ID", + "geonameId": 1650213, + "latitudeCity": -3.43804, + "longitudeCity": 114.75425, + "nameCity": "Banjarmasin", + "timezone": "Asia/Makassar" + }, + { + "GMT": "0", + "cityId": 592, + "codeIataCity": "BDK", + "codeIso2Country": "CI", + "geonameId": 2291136, + "latitudeCity": 8.033333, + "longitudeCity": -2.8, + "nameCity": "Bondoukou", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "-5", + "cityId": 593, + "codeIataCity": "BDL", + "codeIso2Country": "US", + "geonameId": 4835797, + "latitudeCity": 41.92953, + "longitudeCity": -72.6847, + "nameCity": "Windsor Locks", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 594, + "codeIataCity": "BDM", + "codeIso2Country": "TR", + "geonameId": 751077, + "latitudeCity": 40.318333, + "longitudeCity": 27.977222, + "nameCity": "Bandirma", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "5", + "cityId": 595, + "codeIataCity": "BDN", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 24.633333, + "longitudeCity": 68.9, + "nameCity": "Badin", + "timezone": "Asia/Karachi" + }, + { + "GMT": "7", + "cityId": 596, + "codeIataCity": "BDO", + "codeIso2Country": "ID", + "geonameId": 1650357, + "latitudeCity": -6.904648, + "longitudeCity": 107.58178, + "nameCity": "Bandung", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "5.45", + "cityId": 597, + "codeIataCity": "BDP", + "codeIso2Country": "NP", + "geonameId": 1283628, + "latitudeCity": 26.533333, + "longitudeCity": 88.083336, + "nameCity": "Bhadrapur", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "5.30", + "cityId": 598, + "codeIataCity": "BDQ", + "codeIso2Country": "IN", + "geonameId": 1253573, + "latitudeCity": 22.329077, + "longitudeCity": 73.2157, + "nameCity": "Vadodara", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "cityId": 599, + "codeIataCity": "BDR", + "codeIso2Country": "US", + "geonameId": 5282804, + "latitudeCity": 41.164165, + "longitudeCity": -73.12444, + "nameCity": "Bridgeport", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 600, + "codeIataCity": "BDS", + "codeIso2Country": "IT", + "geonameId": 3181528, + "latitudeCity": 40.636175, + "longitudeCity": 17.938991, + "nameCity": "Brindisi", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "cityId": 601, + "codeIataCity": "BDT", + "codeIso2Country": "CD", + "geonameId": 216404, + "latitudeCity": 4.083333, + "longitudeCity": 22.45, + "nameCity": "Gbadolite", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "1", + "cityId": 602, + "codeIataCity": "BDU", + "codeIso2Country": "NO", + "geonameId": 6355182, + "latitudeCity": 69.056114, + "longitudeCity": 18.54, + "nameCity": "Bardufoss", + "timezone": "Europe/Oslo" + }, + { + "GMT": "2", + "cityId": 603, + "codeIataCity": "BDV", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -7.0, + "longitudeCity": 29.8, + "nameCity": "Moba", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "8", + "cityId": 604, + "codeIataCity": "BDW", + "codeIso2Country": "AU", + "geonameId": 2059811, + "latitudeCity": -17.3, + "longitudeCity": 127.46667, + "nameCity": "Bedford Downs", + "timezone": "Australia/Perth" + }, + { + "GMT": "-7", + "cityId": 605, + "codeIataCity": "BDX", + "codeIso2Country": "US", + "geonameId": 5642048, + "latitudeCity": 45.466667, + "longitudeCity": -105.36667, + "nameCity": "Broadus", + "timezone": "America/Denver" + }, + { + "GMT": "-8", + "cityId": 606, + "codeIataCity": "BDY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 43.11667, + "longitudeCity": -124.416664, + "nameCity": "Bandon", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 607, + "codeIataCity": "BDZ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.333333, + "longitudeCity": 146.95, + "nameCity": "Baindoung", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 608, + "codeIataCity": "BEA", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.65, + "longitudeCity": 146.48334, + "nameCity": "Bereina", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "cityId": 609, + "codeIataCity": "BEB", + "codeIso2Country": "GB", + "geonameId": 2636790, + "latitudeCity": 57.473415, + "longitudeCity": -7.376028, + "nameCity": "Benbecula", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "cityId": 610, + "codeIataCity": "BED", + "codeIso2Country": "US", + "geonameId": 4930956, + "latitudeCity": 42.470833, + "longitudeCity": -71.29, + "nameCity": "Bedford", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 611, + "codeIataCity": "BEE", + "codeIso2Country": "AU", + "geonameId": 2144209, + "latitudeCity": -16.966667, + "longitudeCity": 122.666664, + "nameCity": "Beagle Bay", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "cityId": 612, + "codeIataCity": "BEF", + "codeIso2Country": "NI", + "geonameId": 0, + "latitudeCity": 11.996944, + "longitudeCity": -83.76861, + "nameCity": "Bluefields", + "timezone": "America/Managua" + }, + { + "GMT": "1", + "cityId": 613, + "codeIataCity": "BEG", + "codeIso2Country": "RS", + "geonameId": 792680, + "latitudeCity": 44.802416, + "longitudeCity": 20.465601, + "nameCity": "Belgrade", + "timezone": "Europe/Belgrade" + }, + { + "GMT": "-5", + "cityId": 614, + "codeIataCity": "BEH", + "codeIso2Country": "US", + "geonameId": 4985711, + "latitudeCity": 42.127777, + "longitudeCity": -86.42833, + "nameCity": "Benton Harbor", + "timezone": "America/Detroit" + }, + { + "GMT": "3", + "cityId": 615, + "codeIataCity": "BEI", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 9.391667, + "longitudeCity": 34.533333, + "nameCity": "Beica", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "8", + "cityId": 616, + "codeIataCity": "BEJ", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 2.166667, + "longitudeCity": 117.7, + "nameCity": "Tanjung Redep", + "timezone": "Asia/Makassar" + }, + { + "GMT": "5.30", + "cityId": 617, + "codeIataCity": "BEK", + "codeIso2Country": "IN", + "geonameId": 1277005, + "latitudeCity": 26.216667, + "longitudeCity": 81.23333, + "nameCity": "Bareli", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-3", + "cityId": 618, + "codeIataCity": "BEL", + "codeIso2Country": "BR", + "geonameId": 3405870, + "latitudeCity": -1.389865, + "longitudeCity": -48.480003, + "nameCity": "Belem", + "timezone": "America/Belem" + }, + { + "GMT": "2", + "cityId": 619, + "codeIataCity": "BEN", + "codeIso2Country": "LY", + "geonameId": 88319, + "latitudeCity": 32.085423, + "longitudeCity": 20.26489, + "nameCity": "Benghazi", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "5.30", + "cityId": 620, + "codeIataCity": "BEP", + "codeIso2Country": "IN", + "geonameId": 1254228, + "latitudeCity": 15.183333, + "longitudeCity": 76.9, + "nameCity": "Bellary", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "0", + "cityId": 621, + "codeIataCity": "BEQ", + "codeIso2Country": "GB", + "geonameId": 2654186, + "latitudeCity": 52.35, + "longitudeCity": 0.766667, + "nameCity": "Bury St Edmunds", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 622, + "codeIataCity": "BER", + "codeIso2Country": "DE", + "geonameId": 2950159, + "latitudeCity": 52.523405, + "longitudeCity": 13.4114, + "nameCity": "Berlin", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 623, + "codeIataCity": "BES", + "codeIso2Country": "FR", + "geonameId": 3030300, + "latitudeCity": 48.445374, + "longitudeCity": -4.415827, + "nameCity": "Brest", + "timezone": "Europe/Paris" + }, + { + "GMT": "-9", + "cityId": 624, + "codeIataCity": "BET", + "codeIso2Country": "US", + "geonameId": 5880568, + "latitudeCity": 60.792222, + "longitudeCity": -161.755833, + "nameCity": "Bethel", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 625, + "codeIataCity": "BEU", + "codeIso2Country": "AU", + "geonameId": 2076914, + "latitudeCity": -24.23, + "longitudeCity": 139.445, + "nameCity": "Bedourie", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "cityId": 626, + "codeIataCity": "BEV", + "codeIso2Country": "IL", + "geonameId": 295530, + "latitudeCity": 31.25, + "longitudeCity": 34.8, + "nameCity": "Beer Sheba", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "2", + "cityId": 627, + "codeIataCity": "BEW", + "codeIso2Country": "MZ", + "geonameId": 1052373, + "latitudeCity": -19.798805, + "longitudeCity": 34.90192, + "nameCity": "Beira", + "timezone": "Africa/Maputo" + }, + { + "GMT": "0", + "cityId": 628, + "codeIataCity": "BEX", + "codeIso2Country": "GB", + "geonameId": 2643743, + "latitudeCity": 51.63333, + "longitudeCity": -1.083333, + "nameCity": "Benson", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "cityId": 629, + "codeIataCity": "BEY", + "codeIso2Country": "LB", + "geonameId": 276781, + "latitudeCity": 33.826073, + "longitudeCity": 35.49308, + "nameCity": "Beirut", + "timezone": "Asia/Beirut" + }, + { + "GMT": "12", + "cityId": 630, + "codeIataCity": "BEZ", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": -1.333333, + "longitudeCity": 176.0, + "nameCity": "Beru", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "-4", + "cityId": 631, + "codeIataCity": "BFA", + "codeIso2Country": "PY", + "geonameId": 0, + "latitudeCity": -20.232779, + "longitudeCity": -58.170277, + "nameCity": "Bahia Negra", + "timezone": "America/Asuncion" + }, + { + "GMT": "-9", + "cityId": 632, + "codeIataCity": "BFB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 58.183334, + "longitudeCity": -152.13333, + "nameCity": "Blue Fox Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 633, + "codeIataCity": "BFC", + "codeIso2Country": "AU", + "geonameId": 2152681, + "latitudeCity": -15.9, + "longitudeCity": 145.33333, + "nameCity": "Bloomfield", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 634, + "codeIataCity": "BFD", + "codeIso2Country": "US", + "geonameId": 5181407, + "latitudeCity": 41.802223, + "longitudeCity": -78.63944, + "nameCity": "Bradford", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 635, + "codeIataCity": "BFE", + "codeIso2Country": "DE", + "geonameId": 2949186, + "latitudeCity": 52.016666, + "longitudeCity": 8.55, + "nameCity": "Bielefeld", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-7", + "cityId": 636, + "codeIataCity": "BFF", + "codeIso2Country": "US", + "geonameId": 5699404, + "latitudeCity": 41.87528, + "longitudeCity": -103.60111, + "nameCity": "Scottsbluff", + "timezone": "America/Denver" + }, + { + "GMT": "-7", + "cityId": 637, + "codeIataCity": "BFG", + "codeIso2Country": "US", + "geonameId": 5307778, + "latitudeCity": 37.545834, + "longitudeCity": -110.71333, + "nameCity": "Bullfrog Basin", + "timezone": "America/Phoenix" + }, + { + "GMT": "-3", + "cityId": 638, + "codeIataCity": "BFH", + "codeIso2Country": "BR", + "geonameId": 3464975, + "latitudeCity": -25.4025, + "longitudeCity": -49.23389, + "nameCity": "Curitiba.", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "cityId": 639, + "codeIataCity": "BFL", + "codeIso2Country": "US", + "geonameId": 5325738, + "latitudeCity": 35.429626, + "longitudeCity": -119.04533, + "nameCity": "Bakersfield", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "cityId": 640, + "codeIataCity": "BFN", + "codeIso2Country": "ZA", + "geonameId": 1018725, + "latitudeCity": -29.095854, + "longitudeCity": 26.297516, + "nameCity": "Bloemfontein", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "2", + "cityId": 641, + "codeIataCity": "BFO", + "codeIso2Country": "ZW", + "geonameId": 0, + "latitudeCity": -21.009167, + "longitudeCity": 31.579166, + "nameCity": "Buffalo Range", + "timezone": "Africa/Harare" + }, + { + "GMT": "-5", + "cityId": 642, + "codeIataCity": "BFP", + "codeIso2Country": "US", + "geonameId": 5206379, + "latitudeCity": 40.766666, + "longitudeCity": -80.4, + "nameCity": "Beaver Falls", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 643, + "codeIataCity": "BFQ", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 7.583333, + "longitudeCity": -78.166664, + "nameCity": "Bahia Pinas", + "timezone": "America/Panama" + }, + { + "GMT": "-5", + "cityId": 644, + "codeIataCity": "BFR", + "codeIso2Country": "US", + "geonameId": 4299276, + "latitudeCity": 38.86667, + "longitudeCity": -86.48333, + "nameCity": "Bedford", + "timezone": "America/Kentucky/Louisville" + }, + { + "GMT": "0", + "cityId": 645, + "codeIataCity": "BFS", + "codeIso2Country": "GB", + "geonameId": 2655984, + "latitudeCity": 54.597269, + "longitudeCity": -5.930109, + "nameCity": "Belfast", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "cityId": 646, + "codeIataCity": "BFT", + "codeIso2Country": "US", + "geonameId": 4570284, + "latitudeCity": 32.41083, + "longitudeCity": -80.635, + "nameCity": "Beaufort", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 647, + "codeIataCity": "BFU", + "codeIso2Country": "CN", + "geonameId": 1816440, + "latitudeCity": 32.95, + "longitudeCity": 117.333336, + "nameCity": "Bengbu", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "7", + "cityId": 648, + "codeIataCity": "BFV", + "codeIso2Country": "TH", + "geonameId": 1611453, + "latitudeCity": 15.226944, + "longitudeCity": 103.25528, + "nameCity": "Buri Ram", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "1", + "cityId": 649, + "codeIataCity": "BFW", + "codeIso2Country": "DZ", + "geonameId": 2475687, + "latitudeCity": 35.171665, + "longitudeCity": -0.589444, + "nameCity": "Sidi Belabbes", + "timezone": "Africa/Algiers" + }, + { + "GMT": "1", + "cityId": 650, + "codeIataCity": "BFX", + "codeIso2Country": "CM", + "geonameId": 0, + "latitudeCity": 5.483333, + "longitudeCity": 10.4, + "nameCity": "Bafoussam", + "timezone": "Africa/Douala" + }, + { + "GMT": "-5", + "cityId": 651, + "codeIataCity": "BGA", + "codeIso2Country": "CO", + "geonameId": 3688465, + "latitudeCity": 7.128045, + "longitudeCity": -73.1814, + "nameCity": "Bucaramanga", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 652, + "codeIataCity": "BGB", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -0.106667, + "longitudeCity": 11.938889, + "nameCity": "Booue", + "timezone": "Africa/Libreville" + }, + { + "GMT": "0", + "cityId": 653, + "codeIataCity": "BGC", + "codeIso2Country": "PT", + "geonameId": 2742027, + "latitudeCity": 41.816666, + "longitudeCity": -6.75, + "nameCity": "Braganca", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "-6", + "cityId": 654, + "codeIataCity": "BGD", + "codeIso2Country": "US", + "geonameId": 5516233, + "latitudeCity": 35.65, + "longitudeCity": -101.4, + "nameCity": "Borger", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 655, + "codeIataCity": "BGE", + "codeIso2Country": "US", + "geonameId": 4174715, + "latitudeCity": 30.916668, + "longitudeCity": -84.583336, + "nameCity": "Bainbridge", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 656, + "codeIataCity": "BGF", + "codeIso2Country": "CF", + "geonameId": 2389853, + "latitudeCity": 4.396111, + "longitudeCity": 18.520279, + "nameCity": "Bangui", + "timezone": "Africa/Bangui" + }, + { + "GMT": "3", + "cityId": 657, + "codeIataCity": "BGG", + "codeIso2Country": "TR", + "geonameId": 0, + "latitudeCity": 6.7, + "longitudeCity": -4.25, + "nameCity": "Bongouanou", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "0", + "cityId": 658, + "codeIataCity": "BGH", + "codeIso2Country": "MR", + "geonameId": 0, + "latitudeCity": 16.633333, + "longitudeCity": -14.2, + "nameCity": "Boghe", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "-4", + "cityId": 659, + "codeIataCity": "BGI", + "codeIso2Country": "BB", + "geonameId": 3374036, + "latitudeCity": 13.080732, + "longitudeCity": -59.487835, + "nameCity": "Bridgetown", + "timezone": "America/Barbados" + }, + { + "GMT": "0", + "cityId": 660, + "codeIataCity": "BGJ", + "codeIso2Country": "IS", + "geonameId": 6354943, + "latitudeCity": 66.0, + "longitudeCity": -14.5, + "nameCity": "Borgarfjordur Eystri", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-6", + "cityId": 661, + "codeIataCity": "BGK", + "codeIso2Country": "BZ", + "geonameId": 3582656, + "latitudeCity": 16.516666, + "longitudeCity": -88.4, + "nameCity": "Big Creek", + "timezone": "America/Belize" + }, + { + "GMT": "5.45", + "cityId": 662, + "codeIataCity": "BGL", + "codeIso2Country": "NP", + "geonameId": 1282898, + "latitudeCity": 28.215279, + "longitudeCity": 83.683334, + "nameCity": "Baglung", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-5", + "cityId": 663, + "codeIataCity": "BGM", + "codeIso2Country": "US", + "geonameId": 5109177, + "latitudeCity": 42.208534, + "longitudeCity": -75.98294, + "nameCity": "Binghamton", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 664, + "codeIataCity": "BGO", + "codeIso2Country": "NO", + "geonameId": 3161732, + "latitudeCity": 60.391263, + "longitudeCity": 5.322054, + "nameCity": "Bergen", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 665, + "codeIataCity": "BGP", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -1.65, + "longitudeCity": 13.433333, + "nameCity": "Bongo", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-9", + "cityId": 666, + "codeIataCity": "BGQ", + "codeIso2Country": "US", + "geonameId": 5879400, + "latitudeCity": 31.2, + "longitudeCity": -101.46667, + "nameCity": "Big Lake", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 667, + "codeIataCity": "BGR", + "codeIso2Country": "US", + "geonameId": 4957280, + "latitudeCity": 44.812298, + "longitudeCity": -68.82102, + "nameCity": "Bangor", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 668, + "codeIataCity": "BGT", + "codeIso2Country": "US", + "geonameId": 5309842, + "latitudeCity": 34.566666, + "longitudeCity": -113.183334, + "nameCity": "Bagdad", + "timezone": "America/Phoenix" + }, + { + "GMT": "1", + "cityId": 669, + "codeIataCity": "BGU", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 4.786667, + "longitudeCity": 22.784445, + "nameCity": "Bangassou", + "timezone": "Africa/Bangui" + }, + { + "GMT": "-3", + "cityId": 670, + "codeIataCity": "BGV", + "codeIso2Country": "BR", + "geonameId": 3470073, + "latitudeCity": -29.166668, + "longitudeCity": -51.516666, + "nameCity": "Bento Goncalves", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "3", + "cityId": 671, + "codeIataCity": "BGW", + "codeIso2Country": "IQ", + "geonameId": 98182, + "latitudeCity": 33.255554, + "longitudeCity": 44.225, + "nameCity": "Baghdad", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "-3", + "cityId": 672, + "codeIataCity": "BGX", + "codeIso2Country": "BR", + "geonameId": 3471196, + "latitudeCity": -31.398611, + "longitudeCity": -54.1125, + "nameCity": "Bage", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "0", + "cityId": 673, + "codeIataCity": "BGZ", + "codeIso2Country": "PT", + "geonameId": 2742032, + "latitudeCity": 41.55, + "longitudeCity": -8.433333, + "nameCity": "Braga", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "-5", + "cityId": 674, + "codeIataCity": "BHA", + "codeIso2Country": "EC", + "geonameId": 3651832, + "latitudeCity": -0.6, + "longitudeCity": -80.416664, + "nameCity": "Bahia De Caraquez", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-5", + "cityId": 675, + "codeIataCity": "BHB", + "codeIso2Country": "US", + "geonameId": 4957320, + "latitudeCity": 44.44889, + "longitudeCity": -68.361664, + "nameCity": "Bar Harbor", + "timezone": "America/New_York" + }, + { + "GMT": "5", + "cityId": 676, + "codeIataCity": "BHC", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 33.925, + "longitudeCity": 73.433334, + "nameCity": "Bhurban", + "timezone": "Asia/Karachi" + }, + { + "GMT": "12", + "cityId": 677, + "codeIataCity": "BHE", + "codeIso2Country": "NZ", + "geonameId": 6243926, + "latitudeCity": -41.513588, + "longitudeCity": 173.86765, + "nameCity": "Blenheim", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-5", + "cityId": 678, + "codeIataCity": "BHF", + "codeIso2Country": "CO", + "geonameId": 3673690, + "latitudeCity": 6.716667, + "longitudeCity": -77.51667, + "nameCity": "Bahia Cupica", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 679, + "codeIataCity": "BHG", + "codeIso2Country": "HN", + "geonameId": 3614663, + "latitudeCity": 15.734722, + "longitudeCity": -84.543335, + "nameCity": "Brus Laguna", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "3", + "cityId": 680, + "codeIataCity": "BHH", + "codeIso2Country": "SA", + "geonameId": 0, + "latitudeCity": 19.994509, + "longitudeCity": 42.618484, + "nameCity": "Bisha", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-3", + "cityId": 681, + "codeIataCity": "BHI", + "codeIso2Country": "AR", + "geonameId": 3865086, + "latitudeCity": -38.730556, + "longitudeCity": -62.150555, + "nameCity": "Bahia Blanca", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "5.30", + "cityId": 682, + "codeIataCity": "BHJ", + "codeIso2Country": "IN", + "geonameId": 1275812, + "latitudeCity": 23.2875, + "longitudeCity": 69.670555, + "nameCity": "Bhuj", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5", + "cityId": 683, + "codeIataCity": "BHK", + "codeIso2Country": "UZ", + "geonameId": 1217662, + "latitudeCity": 39.76037, + "longitudeCity": 64.47479, + "nameCity": "Bukhara", + "timezone": "Asia/Samarkand" + }, + { + "GMT": "-8", + "cityId": 684, + "codeIataCity": "BHL", + "codeIso2Country": "MX", + "geonameId": 0, + "latitudeCity": 28.95, + "longitudeCity": -113.55, + "nameCity": "Bahia Angeles", + "timezone": "America/Santa_Isabel" + }, + { + "GMT": "-6", + "cityId": 685, + "codeIataCity": "BHM", + "codeIso2Country": "US", + "geonameId": 4049979, + "latitudeCity": 33.560833, + "longitudeCity": -86.75219, + "nameCity": "Birmingham", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 686, + "codeIataCity": "BHN", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 14.783333, + "longitudeCity": 45.733334, + "nameCity": "Beihan", + "timezone": "Asia/Aden" + }, + { + "GMT": "5.30", + "cityId": 687, + "codeIataCity": "BHO", + "codeIso2Country": "IN", + "geonameId": 1275841, + "latitudeCity": 23.284761, + "longitudeCity": 77.34177, + "nameCity": "Bhopal", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.45", + "cityId": 688, + "codeIataCity": "BHP", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 27.183332, + "longitudeCity": 87.05, + "nameCity": "Bhojpur", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "9.30", + "cityId": 689, + "codeIataCity": "BHQ", + "codeIso2Country": "AU", + "geonameId": 2173911, + "latitudeCity": -31.998983, + "longitudeCity": 141.46857, + "nameCity": "Broken Hill", + "timezone": "Australia/Broken_Hill" + }, + { + "GMT": "5.45", + "cityId": 690, + "codeIataCity": "BHR", + "codeIso2Country": "NP", + "geonameId": 1283613, + "latitudeCity": 27.67639, + "longitudeCity": 84.4325, + "nameCity": "Bharatpur", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "10", + "cityId": 691, + "codeIataCity": "BHS", + "codeIso2Country": "AU", + "geonameId": 2176632, + "latitudeCity": -33.41387, + "longitudeCity": 149.65518, + "nameCity": "Bathurst", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "cityId": 692, + "codeIataCity": "BHT", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -23.366667, + "longitudeCity": 141.56667, + "nameCity": "Brighton Downs", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5.30", + "cityId": 693, + "codeIataCity": "BHU", + "codeIso2Country": "IN", + "geonameId": 1276032, + "latitudeCity": 21.755, + "longitudeCity": 72.18444, + "nameCity": "Bhavnagar", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5", + "cityId": 694, + "codeIataCity": "BHV", + "codeIso2Country": "PK", + "geonameId": 1183880, + "latitudeCity": 29.4, + "longitudeCity": 71.683334, + "nameCity": "Bahawalpur", + "timezone": "Asia/Karachi" + }, + { + "GMT": "0", + "cityId": 695, + "codeIataCity": "BHX", + "codeIso2Country": "GB", + "geonameId": 2655603, + "latitudeCity": 52.482961, + "longitudeCity": -1.893592, + "nameCity": "Birmingham", + "timezone": "Europe/London" + }, + { + "GMT": "8", + "cityId": 696, + "codeIataCity": "BHY", + "codeIso2Country": "CN", + "geonameId": 1816705, + "latitudeCity": 21.540333, + "longitudeCity": 109.28785, + "nameCity": "Beihai", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-3", + "cityId": 697, + "codeIataCity": "BHZ", + "codeIso2Country": "BR", + "geonameId": 3470127, + "latitudeCity": -19.919068, + "longitudeCity": -43.938575, + "nameCity": "Belo Horizonte", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "cityId": 698, + "codeIataCity": "BIA", + "codeIso2Country": "FR", + "geonameId": 3034640, + "latitudeCity": 42.547615, + "longitudeCity": 9.480124, + "nameCity": "Bastia", + "timezone": "Europe/Paris" + }, + { + "GMT": "3", + "cityId": 699, + "codeIataCity": "BIB", + "codeIso2Country": "SO", + "geonameId": 0, + "latitudeCity": 3.066667, + "longitudeCity": 43.63333, + "nameCity": "Baidoa", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-9", + "cityId": 700, + "codeIataCity": "BIC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 58.3, + "longitudeCity": -157.51666, + "nameCity": "Big Creek", + "timezone": "America/Sitka" + }, + { + "GMT": "-5", + "cityId": 701, + "codeIataCity": "BID", + "codeIso2Country": "US", + "geonameId": 6944260, + "latitudeCity": 41.169434, + "longitudeCity": -71.57961, + "nameCity": "Block Island", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 702, + "codeIataCity": "BIE", + "codeIso2Country": "US", + "geonameId": 5072006, + "latitudeCity": 40.3, + "longitudeCity": -96.75, + "nameCity": "Beatrice", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 703, + "codeIataCity": "BIG", + "codeIso2Country": "US", + "geonameId": 5880620, + "latitudeCity": 64.06778, + "longitudeCity": -145.73277, + "nameCity": "Big Delta", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "cityId": 704, + "codeIataCity": "BIH", + "codeIso2Country": "US", + "geonameId": 5328808, + "latitudeCity": 37.373333, + "longitudeCity": -118.365, + "nameCity": "Bishop", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "12", + "cityId": 705, + "codeIataCity": "BII", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 11.525081, + "longitudeCity": 165.56512, + "nameCity": "Bikini Atoll", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "10", + "cityId": 706, + "codeIataCity": "BIJ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.583333, + "longitudeCity": 146.2, + "nameCity": "Biliau", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "cityId": 707, + "codeIataCity": "BIK", + "codeIso2Country": "ID", + "geonameId": 1648844, + "latitudeCity": -1.191919, + "longitudeCity": 136.10582, + "nameCity": "Biak", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-7", + "cityId": 708, + "codeIataCity": "BIL", + "codeIso2Country": "US", + "geonameId": 5640350, + "latitudeCity": 45.803417, + "longitudeCity": -108.53723, + "nameCity": "Billings", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "cityId": 709, + "codeIataCity": "BIM", + "codeIso2Country": "BS", + "geonameId": 3572924, + "latitudeCity": 25.742847, + "longitudeCity": -79.250753, + "nameCity": "Bimini", + "timezone": "America/Nassau" + }, + { + "GMT": "4.30", + "cityId": 710, + "codeIataCity": "BIN", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 34.80417, + "longitudeCity": 67.82361, + "nameCity": "Bamiyan", + "timezone": "Asia/Kabul" + }, + { + "GMT": "1", + "cityId": 711, + "codeIataCity": "BIO", + "codeIso2Country": "ES", + "geonameId": 3128026, + "latitudeCity": 43.256963, + "longitudeCity": -2.923441, + "nameCity": "Bilbao", + "timezone": "Europe/Madrid" + }, + { + "GMT": "10", + "cityId": 712, + "codeIataCity": "BIP", + "codeIso2Country": "AU", + "geonameId": 2207247, + "latitudeCity": -16.15, + "longitudeCity": 143.75, + "nameCity": "Bulimba", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 713, + "codeIataCity": "BIQ", + "codeIso2Country": "FR", + "geonameId": 3032797, + "latitudeCity": 43.472416, + "longitudeCity": -1.531242, + "nameCity": "Biarritz", + "timezone": "Europe/Paris" + }, + { + "GMT": "5.45", + "cityId": 714, + "codeIataCity": "BIR", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 26.434723, + "longitudeCity": 87.28333, + "nameCity": "Biratnagar", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-6", + "cityId": 715, + "codeIataCity": "BIS", + "codeIso2Country": "US", + "geonameId": 5688025, + "latitudeCity": 46.77448, + "longitudeCity": -100.75821, + "nameCity": "Bismarck", + "timezone": "America/Chicago" + }, + { + "GMT": "5.45", + "cityId": 716, + "codeIataCity": "BIT", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 29.0, + "longitudeCity": 80.5, + "nameCity": "Baitadi", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "0", + "cityId": 717, + "codeIataCity": "BIU", + "codeIso2Country": "IS", + "geonameId": 3412173, + "latitudeCity": 65.833336, + "longitudeCity": -23.983334, + "nameCity": "Bildudalur", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "1", + "cityId": 718, + "codeIataCity": "BIV", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 6.533333, + "longitudeCity": 21.983334, + "nameCity": "Bria", + "timezone": "Africa/Bangui" + }, + { + "GMT": "8", + "cityId": 719, + "codeIataCity": "BIW", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -19.566668, + "longitudeCity": 127.166664, + "nameCity": "Billiluna", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "cityId": 720, + "codeIataCity": "BIX", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 30.4, + "longitudeCity": -88.88333, + "nameCity": "Biloxi", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 721, + "codeIataCity": "BIY", + "codeIso2Country": "ZA", + "geonameId": 1006984, + "latitudeCity": -35.88333, + "longitudeCity": 27.283333, + "nameCity": "Bisho", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "10", + "cityId": 722, + "codeIataCity": "BIZ", + "codeIso2Country": "PG", + "geonameId": 2099465, + "latitudeCity": -5.283333, + "longitudeCity": 142.01666, + "nameCity": "Bimin", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 723, + "codeIataCity": "BJA", + "codeIso2Country": "DZ", + "geonameId": 0, + "latitudeCity": 36.75, + "longitudeCity": 5.083333, + "nameCity": "Bejaia", + "timezone": "Africa/Algiers" + }, + { + "GMT": "3.30", + "cityId": 724, + "codeIataCity": "BJB", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 37.48972, + "longitudeCity": 57.30885, + "nameCity": "Bojnord", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-7", + "cityId": 725, + "codeIataCity": "BJC", + "codeIso2Country": "US", + "geonameId": 5419384, + "latitudeCity": 39.933334, + "longitudeCity": -105.066666, + "nameCity": "Broomfield", + "timezone": "America/Denver" + }, + { + "GMT": "0", + "cityId": 726, + "codeIataCity": "BJD", + "codeIso2Country": "IS", + "geonameId": 6354943, + "latitudeCity": 66.066666, + "longitudeCity": -14.75, + "nameCity": "Bakkafjordur", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "3", + "cityId": 727, + "codeIataCity": "BJE", + "codeIso2Country": "SD", + "geonameId": 0, + "latitudeCity": 11.21, + "longitudeCity": 28.52, + "nameCity": "Baleela", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "1", + "cityId": 728, + "codeIataCity": "BJF", + "codeIso2Country": "NO", + "geonameId": 779303, + "latitudeCity": 70.6, + "longitudeCity": 29.666668, + "nameCity": "Batsfjord", + "timezone": "Europe/Oslo" + }, + { + "GMT": "8", + "cityId": 729, + "codeIataCity": "BJG", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -0.95, + "longitudeCity": 122.1, + "nameCity": "Bolaang", + "timezone": "Asia/Makassar" + }, + { + "GMT": "5.45", + "cityId": 730, + "codeIataCity": "BJH", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 29.55, + "longitudeCity": 81.25, + "nameCity": "Bajhang", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-6", + "cityId": 731, + "codeIataCity": "BJI", + "codeIso2Country": "US", + "geonameId": 5017822, + "latitudeCity": 47.509724, + "longitudeCity": -94.93472, + "nameCity": "Bemidji", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 732, + "codeIataCity": "BJJ", + "codeIso2Country": "US", + "geonameId": 5177358, + "latitudeCity": 40.8, + "longitudeCity": -81.933334, + "nameCity": "Wooster", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "cityId": 733, + "codeIataCity": "BJK", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -6.083333, + "longitudeCity": 134.25, + "nameCity": "Benjina", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "0", + "cityId": 734, + "codeIataCity": "BJL", + "codeIso2Country": "GM", + "geonameId": 2413876, + "latitudeCity": 13.34406, + "longitudeCity": -16.6522, + "nameCity": "Banjul", + "timezone": "Africa/Banjul" + }, + { + "GMT": "2", + "cityId": 735, + "codeIataCity": "BJM", + "codeIso2Country": "BI", + "geonameId": 425378, + "latitudeCity": -3.383333, + "longitudeCity": 29.366667, + "nameCity": "Bujumbura", + "timezone": "Africa/Bujumbura" + }, + { + "GMT": "2", + "cityId": 736, + "codeIataCity": "BJN", + "codeIso2Country": "MZ", + "geonameId": 1052636, + "latitudeCity": -17.183332, + "longitudeCity": 38.083332, + "nameCity": "Bajone", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-4", + "cityId": 737, + "codeIataCity": "BJO", + "codeIso2Country": "BO", + "geonameId": 3923154, + "latitudeCity": -22.866667, + "longitudeCity": -64.333336, + "nameCity": "Bermejo", + "timezone": "America/La_Paz" + }, + { + "GMT": "-3", + "cityId": 738, + "codeIataCity": "BJP", + "codeIso2Country": "BR", + "geonameId": 3448439, + "latitudeCity": -22.95, + "longitudeCity": -46.566666, + "nameCity": "Braganca Paulista", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "4", + "cityId": 739, + "codeIataCity": "BJQ", + "codeIso2Country": "OM", + "geonameId": 0, + "latitudeCity": 19.875, + "longitudeCity": 56.0619, + "nameCity": "Bahja", + "timezone": "Asia/Muscat" + }, + { + "GMT": "3", + "cityId": 740, + "codeIataCity": "BJR", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 11.603292, + "longitudeCity": 37.32324, + "nameCity": "Bahar Dar", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "8", + "cityId": 741, + "codeIataCity": "BJS", + "codeIso2Country": "CN", + "geonameId": 1816670, + "latitudeCity": 39.904214, + "longitudeCity": 116.407413, + "nameCity": "Beijing", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "5.30", + "cityId": 742, + "codeIataCity": "BJT", + "codeIso2Country": "LK", + "geonameId": 0, + "latitudeCity": 6.483333, + "longitudeCity": 79.98333, + "nameCity": "Bentota River", + "timezone": "Asia/Colombo" + }, + { + "GMT": "5.45", + "cityId": 743, + "codeIataCity": "BJU", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 29.366667, + "longitudeCity": 81.333336, + "nameCity": "Bajura", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "3", + "cityId": 744, + "codeIataCity": "BJV", + "codeIso2Country": "TR", + "geonameId": 305359, + "latitudeCity": 37.25, + "longitudeCity": 27.66, + "nameCity": "Milas", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "8", + "cityId": 745, + "codeIataCity": "BJW", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -8.766667, + "longitudeCity": 120.98333, + "nameCity": "Bajawa", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-6", + "cityId": 746, + "codeIataCity": "BJX", + "codeIso2Country": "MX", + "geonameId": 4005270, + "latitudeCity": 20.985699, + "longitudeCity": -101.479, + "nameCity": "Leon", + "timezone": "America/Mexico_City" + }, + { + "GMT": "1", + "cityId": 747, + "codeIataCity": "BJZ", + "codeIso2Country": "ES", + "geonameId": 2521420, + "latitudeCity": 38.891666, + "longitudeCity": -6.82, + "nameCity": "Badajoz", + "timezone": "Europe/Madrid" + }, + { + "GMT": "5.30", + "cityId": 748, + "codeIataCity": "BKB", + "codeIso2Country": "IN", + "geonameId": 1275665, + "latitudeCity": 28.016666, + "longitudeCity": 73.3, + "nameCity": "Bikaner", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-9", + "cityId": 749, + "codeIataCity": "BKC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 65.97889, + "longitudeCity": -161.12666, + "nameCity": "Buckland", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 750, + "codeIataCity": "BKD", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 32.75, + "longitudeCity": -98.9, + "nameCity": "Breckenridge", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 751, + "codeIataCity": "BKE", + "codeIso2Country": "US", + "geonameId": 5712169, + "latitudeCity": 44.838333, + "longitudeCity": -117.81, + "nameCity": "Baker", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-7", + "cityId": 752, + "codeIataCity": "BKF", + "codeIso2Country": "US", + "geonameId": 5419384, + "latitudeCity": 58.6, + "longitudeCity": -156.23334, + "nameCity": "Katmai National Park", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 753, + "codeIataCity": "BKG", + "codeIso2Country": "US", + "geonameId": 4378219, + "latitudeCity": 36.53208, + "longitudeCity": -93.20055, + "nameCity": "Branson", + "timezone": "America/Chicago" + }, + { + "GMT": "-10", + "cityId": 754, + "codeIataCity": "BKH", + "codeIso2Country": "US", + "geonameId": 5849616, + "latitudeCity": 21.966667, + "longitudeCity": -159.71666, + "nameCity": "Kekaha", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "8", + "cityId": 755, + "codeIataCity": "BKI", + "codeIso2Country": "MY", + "geonameId": 1733432, + "latitudeCity": 5.923961, + "longitudeCity": 116.05075, + "nameCity": "Kota-Kinabalu", + "timezone": "Asia/Kuching" + }, + { + "GMT": "0", + "cityId": 756, + "codeIataCity": "BKJ", + "codeIso2Country": "GN", + "geonameId": 0, + "latitudeCity": 10.966667, + "longitudeCity": -14.283333, + "nameCity": "Boke", + "timezone": "Africa/Conakry" + }, + { + "GMT": "7", + "cityId": 757, + "codeIataCity": "BKK", + "codeIso2Country": "TH", + "geonameId": 1609350, + "latitudeCity": 13.723419, + "longitudeCity": 100.476232, + "nameCity": "Bangkok", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "8", + "cityId": 758, + "codeIataCity": "BKM", + "codeIso2Country": "MY", + "geonameId": 0, + "latitudeCity": 3.966667, + "longitudeCity": 115.61667, + "nameCity": "Bakalalan", + "timezone": "Asia/Kuching" + }, + { + "GMT": "0", + "cityId": 759, + "codeIataCity": "BKO", + "codeIso2Country": "ML", + "geonameId": 2460596, + "latitudeCity": 12.540926, + "longitudeCity": -7.947951, + "nameCity": "Bamako", + "timezone": "Africa/Bamako" + }, + { + "GMT": "10", + "cityId": 760, + "codeIataCity": "BKP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -20.5, + "longitudeCity": 138.5, + "nameCity": "Barkly Downs", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 761, + "codeIataCity": "BKQ", + "codeIso2Country": "AU", + "geonameId": 2175650, + "latitudeCity": -24.434168, + "longitudeCity": 145.42833, + "nameCity": "Blackall", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 762, + "codeIataCity": "BKR", + "codeIso2Country": "TD", + "geonameId": 0, + "latitudeCity": 12.416667, + "longitudeCity": 17.233334, + "nameCity": "Bokoro", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "7", + "cityId": 763, + "codeIataCity": "BKS", + "codeIso2Country": "ID", + "geonameId": 1649150, + "latitudeCity": -3.866159, + "longitudeCity": 102.34349, + "nameCity": "Bengkulu", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-5", + "cityId": 764, + "codeIataCity": "BKT", + "codeIso2Country": "US", + "geonameId": 4747839, + "latitudeCity": 37.066666, + "longitudeCity": -78.0, + "nameCity": "Blackstone", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 765, + "codeIataCity": "BKU", + "codeIso2Country": "MG", + "geonameId": 1066310, + "latitudeCity": -23.732222, + "longitudeCity": 44.39111, + "nameCity": "Betioky", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-5", + "cityId": 766, + "codeIataCity": "BKW", + "codeIso2Country": "US", + "geonameId": 4798308, + "latitudeCity": 37.781944, + "longitudeCity": -81.12417, + "nameCity": "Beckley", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 767, + "codeIataCity": "BKX", + "codeIso2Country": "US", + "geonameId": 5226534, + "latitudeCity": 44.303333, + "longitudeCity": -96.81111, + "nameCity": "Brookings", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 768, + "codeIataCity": "BKY", + "codeIso2Country": "CD", + "geonameId": 217831, + "latitudeCity": -2.3, + "longitudeCity": 28.816668, + "nameCity": "Bukavu", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "3", + "cityId": 769, + "codeIataCity": "BKZ", + "codeIso2Country": "TZ", + "geonameId": 0, + "latitudeCity": -1.3, + "longitudeCity": 31.8, + "nameCity": "Bukoba", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-4", + "cityId": 770, + "codeIataCity": "BLA", + "codeIso2Country": "VE", + "geonameId": 3648559, + "latitudeCity": 10.107936, + "longitudeCity": -64.68589, + "nameCity": "Barcelona", + "timezone": "America/Caracas" + }, + { + "GMT": "-5", + "cityId": 771, + "codeIataCity": "BLB", + "codeIso2Country": "PA", + "geonameId": 3714426, + "latitudeCity": 8.973056, + "longitudeCity": -79.5575, + "nameCity": "Balboa", + "timezone": "America/Panama" + }, + { + "GMT": "1", + "cityId": 772, + "codeIataCity": "BLC", + "codeIso2Country": "CM", + "geonameId": 2235029, + "latitudeCity": 5.897222, + "longitudeCity": 10.031667, + "nameCity": "Bali", + "timezone": "Africa/Douala" + }, + { + "GMT": "1", + "cityId": 773, + "codeIataCity": "BLE", + "codeIso2Country": "SE", + "geonameId": 2720383, + "latitudeCity": 60.485605, + "longitudeCity": 15.436302, + "nameCity": "Borlange", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "cityId": 774, + "codeIataCity": "BLF", + "codeIso2Country": "US", + "geonameId": 4819079, + "latitudeCity": 37.295834, + "longitudeCity": -81.20805, + "nameCity": "Princeton", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 775, + "codeIataCity": "BLG", + "codeIso2Country": "MY", + "geonameId": 1737486, + "latitudeCity": 2.7, + "longitudeCity": 113.78333, + "nameCity": "Belaga", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-7", + "cityId": 776, + "codeIataCity": "BLH", + "codeIso2Country": "US", + "geonameId": 5322053, + "latitudeCity": 33.620834, + "longitudeCity": -114.71889, + "nameCity": "Blythe", + "timezone": "America/Phoenix" + }, + { + "GMT": "-8", + "cityId": 777, + "codeIataCity": "BLI", + "codeIso2Country": "US", + "geonameId": 5786899, + "latitudeCity": 48.795734, + "longitudeCity": -122.53267, + "nameCity": "Bellingham", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 778, + "codeIataCity": "BLJ", + "codeIso2Country": "DZ", + "geonameId": 2505572, + "latitudeCity": 35.566666, + "longitudeCity": 6.183333, + "nameCity": "Batna", + "timezone": "Africa/Algiers" + }, + { + "GMT": "0", + "cityId": 779, + "codeIataCity": "BLK", + "codeIso2Country": "GB", + "geonameId": 2655459, + "latitudeCity": 53.778385, + "longitudeCity": -3.041985, + "nameCity": "Blackpool", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 780, + "codeIataCity": "BLL", + "codeIso2Country": "DK", + "geonameId": 2624144, + "latitudeCity": 55.747383, + "longitudeCity": 9.147874, + "nameCity": "Billund", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-5", + "cityId": 781, + "codeIataCity": "BLM", + "codeIso2Country": "US", + "geonameId": 5095335, + "latitudeCity": 40.183334, + "longitudeCity": -74.01667, + "nameCity": "Belmar - Farmingdale", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 782, + "codeIataCity": "BLN", + "codeIso2Country": "AU", + "geonameId": 2178174, + "latitudeCity": -36.55, + "longitudeCity": 145.98334, + "nameCity": "Benalla", + "timezone": "Australia/Sydney" + }, + { + "GMT": "0", + "cityId": 783, + "codeIataCity": "BLO", + "codeIso2Country": "IS", + "geonameId": 7117225, + "latitudeCity": 65.666664, + "longitudeCity": -20.3, + "nameCity": "Blonduos", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-5", + "cityId": 784, + "codeIataCity": "BLP", + "codeIso2Country": "PE", + "geonameId": 3691474, + "latitudeCity": -16.583332, + "longitudeCity": -69.416664, + "nameCity": "Bellavista", + "timezone": "America/Lima" + }, + { + "GMT": "1", + "cityId": 785, + "codeIataCity": "BLQ", + "codeIso2Country": "IT", + "geonameId": 3181928, + "latitudeCity": 44.49419, + "longitudeCity": 11.346519, + "nameCity": "Bologna", + "timezone": "Europe/Rome" + }, + { + "GMT": "5.30", + "cityId": 786, + "codeIataCity": "BLR", + "codeIso2Country": "IN", + "geonameId": 1277333, + "latitudeCity": 13.198889, + "longitudeCity": 77.70556, + "nameCity": "Bangalore", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "cityId": 787, + "codeIataCity": "BLS", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -28.05, + "longitudeCity": 147.48334, + "nameCity": "Bollon", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 788, + "codeIataCity": "BLT", + "codeIso2Country": "AU", + "geonameId": 2175403, + "latitudeCity": -23.602184, + "longitudeCity": 148.8084, + "nameCity": "Blackwater", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-8", + "cityId": 789, + "codeIataCity": "BLU", + "codeIso2Country": "US", + "geonameId": 5376502, + "latitudeCity": 39.25, + "longitudeCity": -120.71667, + "nameCity": "Blue Canyon", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 790, + "codeIataCity": "BLV", + "codeIso2Country": "US", + "geonameId": 4407066, + "latitudeCity": 38.65178, + "longitudeCity": -89.85183, + "nameCity": "Belleville", + "timezone": "America/Chicago" + }, + { + "GMT": "-10", + "cityId": 791, + "codeIataCity": "BLW", + "codeIso2Country": "US", + "geonameId": 5856195, + "latitudeCity": 21.333332, + "longitudeCity": -157.7, + "nameCity": "Waimanalo", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "1", + "cityId": 792, + "codeIataCity": "BLX", + "codeIso2Country": "IT", + "geonameId": 3182210, + "latitudeCity": 46.15, + "longitudeCity": 12.216667, + "nameCity": "Belluno", + "timezone": "Europe/Rome" + }, + { + "GMT": "0", + "cityId": 793, + "codeIataCity": "BLY", + "codeIso2Country": "IE", + "geonameId": 2960970, + "latitudeCity": 54.233334, + "longitudeCity": -10.0, + "nameCity": "Belmullet", + "timezone": "Europe/Dublin" + }, + { + "GMT": "2", + "cityId": 794, + "codeIataCity": "BLZ", + "codeIso2Country": "MW", + "geonameId": 931755, + "latitudeCity": -15.674722, + "longitudeCity": 34.970833, + "nameCity": "Blantyre", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "1", + "cityId": 795, + "codeIataCity": "BMB", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": 2.19, + "longitudeCity": 22.473333, + "nameCity": "Bumba", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "-7", + "cityId": 796, + "codeIataCity": "BMC", + "codeIso2Country": "US", + "geonameId": 5780993, + "latitudeCity": 41.549168, + "longitudeCity": -112.062225, + "nameCity": "Brigham City", + "timezone": "America/Denver" + }, + { + "GMT": "3", + "cityId": 797, + "codeIataCity": "BMD", + "codeIso2Country": "MG", + "geonameId": 1067531, + "latitudeCity": -20.733334, + "longitudeCity": 44.05, + "nameCity": "Belo", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "8", + "cityId": 798, + "codeIataCity": "BME", + "codeIso2Country": "AU", + "geonameId": 2075720, + "latitudeCity": -17.95264, + "longitudeCity": 122.23429, + "nameCity": "Broome", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "cityId": 799, + "codeIataCity": "BMF", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 5.733333, + "longitudeCity": 22.8, + "nameCity": "Bakouma", + "timezone": "Africa/Bangui" + }, + { + "GMT": "-5", + "cityId": 800, + "codeIataCity": "BMG", + "codeIso2Country": "US", + "geonameId": 4254679, + "latitudeCity": 39.14, + "longitudeCity": -86.61472, + "nameCity": "Bloomington", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "10", + "cityId": 801, + "codeIataCity": "BMH", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.416667, + "longitudeCity": 144.58333, + "nameCity": "Bomai", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 802, + "codeIataCity": "BMI", + "codeIso2Country": "US", + "geonameId": 4885164, + "latitudeCity": 40.48401, + "longitudeCity": -88.91483, + "nameCity": "Bloomington", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 803, + "codeIataCity": "BMJ", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 6.75, + "longitudeCity": -60.0, + "nameCity": "Baramita", + "timezone": "America/Guyana" + }, + { + "GMT": "1", + "cityId": 804, + "codeIataCity": "BMK", + "codeIso2Country": "DE", + "geonameId": 2946206, + "latitudeCity": 53.6, + "longitudeCity": 6.7, + "nameCity": "Borkum", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "cityId": 805, + "codeIataCity": "BML", + "codeIso2Country": "US", + "geonameId": 5086700, + "latitudeCity": 44.574722, + "longitudeCity": -71.17639, + "nameCity": "Berlin", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 806, + "codeIataCity": "BMM", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": 2.075833, + "longitudeCity": 11.490833, + "nameCity": "Bitam", + "timezone": "Africa/Libreville" + }, + { + "GMT": "3", + "cityId": 807, + "codeIataCity": "BMN", + "codeIso2Country": "IQ", + "geonameId": 96994, + "latitudeCity": 37.1, + "longitudeCity": 43.266666, + "nameCity": "Bamerny", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "6.30", + "cityId": 808, + "codeIataCity": "BMO", + "codeIso2Country": "MM", + "geonameId": 1328218, + "latitudeCity": 24.27389, + "longitudeCity": 97.25166, + "nameCity": "Bhamo", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "10", + "cityId": 809, + "codeIataCity": "BMP", + "codeIso2Country": "AU", + "geonameId": 6354936, + "latitudeCity": -20.783333, + "longitudeCity": 149.23334, + "nameCity": "Brampton Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "cityId": 810, + "codeIataCity": "BMQ", + "codeIso2Country": "KE", + "geonameId": 200656, + "latitudeCity": -4.5, + "longitudeCity": 39.833332, + "nameCity": "Bamburi", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "1", + "cityId": 811, + "codeIataCity": "BMR", + "codeIso2Country": "DE", + "geonameId": 2953006, + "latitudeCity": 53.716667, + "longitudeCity": 7.4, + "nameCity": "Baltrum Island", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-3", + "cityId": 812, + "codeIataCity": "BMS", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -14.233333, + "longitudeCity": -41.63333, + "nameCity": "Brumado", + "timezone": "America/Bahia" + }, + { + "GMT": "8", + "cityId": 813, + "codeIataCity": "BMU", + "codeIso2Country": "ID", + "geonameId": 1648759, + "latitudeCity": -8.5, + "longitudeCity": 118.916664, + "nameCity": "Bima", + "timezone": "Asia/Makassar" + }, + { + "GMT": "7", + "cityId": 814, + "codeIataCity": "BMV", + "codeIso2Country": "VN", + "geonameId": 1586896, + "latitudeCity": 12.666667, + "longitudeCity": 108.05, + "nameCity": "Banmethuot", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "1", + "cityId": 815, + "codeIataCity": "BMW", + "codeIso2Country": "DZ", + "geonameId": 2596771, + "latitudeCity": 21.316668, + "longitudeCity": 1.033333, + "nameCity": "Bordj Badji Mokhtar", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-9", + "cityId": 816, + "codeIataCity": "BMX", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 59.361942, + "longitudeCity": -155.25667, + "nameCity": "Big Mountain", + "timezone": "America/Anchorage" + }, + { + "GMT": "11", + "cityId": 817, + "codeIataCity": "BMY", + "codeIso2Country": "NC", + "geonameId": 0, + "latitudeCity": -19.75, + "longitudeCity": 163.66667, + "nameCity": "Belep Island", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "10", + "cityId": 818, + "codeIataCity": "BMZ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.833333, + "longitudeCity": 143.23334, + "nameCity": "Bamu", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 819, + "codeIataCity": "BNA", + "codeIso2Country": "US", + "geonameId": 4644585, + "latitudeCity": 36.13174, + "longitudeCity": -86.668945, + "nameCity": "Nashville", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 820, + "codeIataCity": "BNB", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -0.233056, + "longitudeCity": 20.87, + "nameCity": "Boende", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "2", + "cityId": 821, + "codeIataCity": "BNC", + "codeIso2Country": "CD", + "geonameId": 219057, + "latitudeCity": 0.566667, + "longitudeCity": 29.466667, + "nameCity": "Beni", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "3.30", + "cityId": 822, + "codeIataCity": "BND", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 27.21059, + "longitudeCity": 56.368385, + "nameCity": "Bandar Abbas", + "timezone": "Asia/Tehran" + }, + { + "GMT": "10", + "cityId": 823, + "codeIataCity": "BNE", + "codeIso2Country": "AU", + "geonameId": 2174003, + "latitudeCity": -27.470933, + "longitudeCity": 153.023502, + "nameCity": "Brisbane", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "cityId": 824, + "codeIataCity": "BNF", + "codeIso2Country": "US", + "geonameId": 5844535, + "latitudeCity": 57.0, + "longitudeCity": -135.0, + "nameCity": "Baranof", + "timezone": "America/Sitka" + }, + { + "GMT": "-8", + "cityId": 825, + "codeIataCity": "BNG", + "codeIso2Country": "US", + "geonameId": 5326032, + "latitudeCity": 33.933334, + "longitudeCity": -116.86667, + "nameCity": "Banning", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 826, + "codeIataCity": "BNI", + "codeIso2Country": "NG", + "geonameId": 2347283, + "latitudeCity": 6.316943, + "longitudeCity": 5.603863, + "nameCity": "Benin City", + "timezone": "Africa/Lagos" + }, + { + "GMT": "10", + "cityId": 827, + "codeIataCity": "BNK", + "codeIso2Country": "AU", + "geonameId": 2177069, + "latitudeCity": -28.837606, + "longitudeCity": 153.5564, + "nameCity": "Ballina", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-5", + "cityId": 828, + "codeIataCity": "BNL", + "codeIso2Country": "US", + "geonameId": 4575352, + "latitudeCity": 33.25, + "longitudeCity": -81.38333, + "nameCity": "Barnwell", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 829, + "codeIataCity": "BNM", + "codeIso2Country": "PG", + "geonameId": 2099296, + "latitudeCity": -9.116667, + "longitudeCity": 147.61667, + "nameCity": "Bodinumu", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 830, + "codeIataCity": "BNN", + "codeIso2Country": "NO", + "geonameId": 3159954, + "latitudeCity": 65.4617, + "longitudeCity": 12.215772, + "nameCity": "Bronnoysund", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-8", + "cityId": 831, + "codeIataCity": "BNO", + "codeIso2Country": "US", + "geonameId": 5716833, + "latitudeCity": 43.583332, + "longitudeCity": -118.95, + "nameCity": "Burns", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "5", + "cityId": 832, + "codeIataCity": "BNP", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 33.0, + "longitudeCity": 70.666664, + "nameCity": "Bannu", + "timezone": "Asia/Karachi" + }, + { + "GMT": "8", + "cityId": 833, + "codeIataCity": "BNQ", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 13.25, + "longitudeCity": 121.05, + "nameCity": "Baganga", + "timezone": "Asia/Manila" + }, + { + "GMT": "0", + "cityId": 834, + "codeIataCity": "BNR", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 10.666667, + "longitudeCity": -4.666667, + "nameCity": "Banfora", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-4", + "cityId": 835, + "codeIataCity": "BNS", + "codeIso2Country": "VE", + "geonameId": 3648546, + "latitudeCity": 8.618056, + "longitudeCity": -70.22111, + "nameCity": "Barinas", + "timezone": "America/Caracas" + }, + { + "GMT": "10", + "cityId": 836, + "codeIataCity": "BNT", + "codeIso2Country": "PG", + "geonameId": 2098818, + "latitudeCity": -5.75, + "longitudeCity": 145.45, + "nameCity": "Bundi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "cityId": 837, + "codeIataCity": "BNU", + "codeIso2Country": "BR", + "geonameId": 3469968, + "latitudeCity": -27.0, + "longitudeCity": -49.0, + "nameCity": "Blumenau", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "cityId": 838, + "codeIataCity": "BNV", + "codeIso2Country": "PG", + "geonameId": 2099315, + "latitudeCity": -6.425, + "longitudeCity": 146.81667, + "nameCity": "Boana", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 839, + "codeIataCity": "BNW", + "codeIso2Country": "US", + "geonameId": 4846834, + "latitudeCity": 42.066666, + "longitudeCity": -93.88333, + "nameCity": "Boone", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 840, + "codeIataCity": "BNX", + "codeIso2Country": "BA", + "geonameId": 3204541, + "latitudeCity": 44.933334, + "longitudeCity": 17.3, + "nameCity": "Banja Luka", + "timezone": "Europe/Sarajevo" + }, + { + "GMT": "11", + "cityId": 841, + "codeIataCity": "BNY", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -11.3, + "longitudeCity": 159.81667, + "nameCity": "Bellona", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "10", + "cityId": 842, + "codeIataCity": "BNZ", + "codeIso2Country": "PG", + "geonameId": 2099887, + "latitudeCity": -5.808333, + "longitudeCity": 144.61139, + "nameCity": "Banz", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 843, + "codeIataCity": "BOA", + "codeIso2Country": "CD", + "geonameId": 2316702, + "latitudeCity": -5.866667, + "longitudeCity": 13.066667, + "nameCity": "Boma", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "-10", + "cityId": 844, + "codeIataCity": "BOB", + "codeIso2Country": "PF", + "geonameId": 4033077, + "latitudeCity": -16.446207, + "longitudeCity": -151.75447, + "nameCity": "Bora Bora", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-5", + "cityId": 845, + "codeIataCity": "BOC", + "codeIso2Country": "PA", + "geonameId": 3713959, + "latitudeCity": 9.34, + "longitudeCity": -82.251945, + "nameCity": "Bocas Del Toro", + "timezone": "America/Panama" + }, + { + "GMT": "1", + "cityId": 846, + "codeIataCity": "BOD", + "codeIso2Country": "FR", + "geonameId": 3031582, + "latitudeCity": 44.837789, + "longitudeCity": -0.57918, + "nameCity": "Bordeaux", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "cityId": 847, + "codeIataCity": "BOE", + "codeIso2Country": "CG", + "geonameId": 0, + "latitudeCity": -1.033333, + "longitudeCity": 15.383333, + "nameCity": "Boundji", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-5", + "cityId": 848, + "codeIataCity": "BOG", + "codeIso2Country": "CO", + "geonameId": 3688689, + "latitudeCity": 4.698602, + "longitudeCity": -74.143135, + "nameCity": "Bogota", + "timezone": "America/Bogota" + }, + { + "GMT": "0", + "cityId": 849, + "codeIataCity": "BOH", + "codeIso2Country": "GB", + "geonameId": 2655095, + "latitudeCity": 50.77827, + "longitudeCity": -1.832476, + "nameCity": "Bournemouth", + "timezone": "Europe/London" + }, + { + "GMT": "-7", + "cityId": 850, + "codeIataCity": "BOI", + "codeIso2Country": "US", + "geonameId": 5586437, + "latitudeCity": 43.569263, + "longitudeCity": -116.22193, + "nameCity": "Boise", + "timezone": "America/Boise" + }, + { + "GMT": "2", + "cityId": 851, + "codeIataCity": "BOJ", + "codeIso2Country": "BG", + "geonameId": 732770, + "latitudeCity": 42.416668, + "longitudeCity": 27.283333, + "nameCity": "Bourgas", + "timezone": "Europe/Sofia" + }, + { + "GMT": "-8", + "cityId": 852, + "codeIataCity": "BOK", + "codeIso2Country": "US", + "geonameId": 5729080, + "latitudeCity": 42.05, + "longitudeCity": -124.28333, + "nameCity": "Brookings", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "0", + "cityId": 853, + "codeIataCity": "BOL", + "codeIso2Country": "GB", + "geonameId": 2643736, + "latitudeCity": 55.0, + "longitudeCity": -7.0, + "nameCity": "Ballykelly", + "timezone": "Europe/London" + }, + { + "GMT": "5.30", + "cityId": 854, + "codeIataCity": "BOM", + "codeIso2Country": "IN", + "geonameId": 1275339, + "latitudeCity": 19.095509, + "longitudeCity": 72.87497, + "nameCity": "Mumbai", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-4", + "cityId": 855, + "codeIataCity": "BON", + "codeIso2Country": "BQ", + "geonameId": 3513563, + "latitudeCity": 12.133403, + "longitudeCity": -68.27687, + "nameCity": "Kralendijk", + "timezone": "America/Kralendijk" + }, + { + "GMT": "1", + "cityId": 856, + "codeIataCity": "BOO", + "codeIso2Country": "NO", + "geonameId": 3160881, + "latitudeCity": 67.27262, + "longitudeCity": 14.367839, + "nameCity": "Bodo", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 857, + "codeIataCity": "BOP", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 6.0, + "longitudeCity": 15.666667, + "nameCity": "Bouar", + "timezone": "Africa/Bangui" + }, + { + "GMT": "10", + "cityId": 858, + "codeIataCity": "BOQ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.533333, + "longitudeCity": 155.35, + "nameCity": "Boku", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 859, + "codeIataCity": "BOS", + "codeIso2Country": "US", + "geonameId": 4930956, + "latitudeCity": 42.358431, + "longitudeCity": -71.059773, + "nameCity": "Boston", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 860, + "codeIataCity": "BOT", + "codeIso2Country": "PG", + "geonameId": 2099079, + "latitudeCity": -7.233333, + "longitudeCity": 141.08333, + "nameCity": "Boset", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 861, + "codeIataCity": "BOU", + "codeIso2Country": "FR", + "geonameId": 3031005, + "latitudeCity": 47.15, + "longitudeCity": 2.416667, + "nameCity": "Bourges", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "cityId": 862, + "codeIataCity": "BOV", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -3.366667, + "longitudeCity": 153.33333, + "nameCity": "Boang", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 863, + "codeIataCity": "BOW", + "codeIso2Country": "US", + "geonameId": 4167147, + "latitudeCity": 27.9, + "longitudeCity": -81.833336, + "nameCity": "Bartow", + "timezone": "America/New_York" + }, + { + "GMT": "9.30", + "cityId": 864, + "codeIataCity": "BOX", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -16.066668, + "longitudeCity": 136.28334, + "nameCity": "Borroloola", + "timezone": "Australia/Darwin" + }, + { + "GMT": "0", + "cityId": 865, + "codeIataCity": "BOY", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 11.163611, + "longitudeCity": -4.324444, + "nameCity": "Bobo Dioulasso", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "1", + "cityId": 866, + "codeIataCity": "BOZ", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 6.416667, + "longitudeCity": 16.583332, + "nameCity": "Bozoum", + "timezone": "Africa/Bangui" + }, + { + "GMT": "-5", + "cityId": 867, + "codeIataCity": "BPA", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 40.733334, + "longitudeCity": -73.48333, + "nameCity": "Bethpage", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 868, + "codeIataCity": "BPB", + "codeIso2Country": "PG", + "geonameId": 2099116, + "latitudeCity": -9.133333, + "longitudeCity": 147.53334, + "nameCity": "Boridi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 869, + "codeIataCity": "BPC", + "codeIso2Country": "CM", + "geonameId": 0, + "latitudeCity": 5.916667, + "longitudeCity": 10.15, + "nameCity": "Bamenda", + "timezone": "Africa/Douala" + }, + { + "GMT": "10", + "cityId": 870, + "codeIataCity": "BPD", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.75, + "longitudeCity": 147.01666, + "nameCity": "Bapi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "6.30", + "cityId": 871, + "codeIataCity": "BPE", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 24.0, + "longitudeCity": 96.0, + "nameCity": "Bagan", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "11", + "cityId": 872, + "codeIataCity": "BPF", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -8.55, + "longitudeCity": 158.11667, + "nameCity": "Batuna", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-4", + "cityId": 873, + "codeIataCity": "BPG", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -15.85, + "longitudeCity": -52.38333, + "nameCity": "Barra Do Garcas", + "timezone": "America/Cuiaba" + }, + { + "GMT": "8", + "cityId": 874, + "codeIataCity": "BPH", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 8.196667, + "longitudeCity": 126.32111, + "nameCity": "Bislig", + "timezone": "Asia/Manila" + }, + { + "GMT": "-7", + "cityId": 875, + "codeIataCity": "BPI", + "codeIso2Country": "US", + "geonameId": 5835178, + "latitudeCity": 42.533333, + "longitudeCity": -110.11667, + "nameCity": "Big Piney", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "cityId": 876, + "codeIataCity": "BPK", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.529722, + "longitudeCity": 141.74973, + "nameCity": "Biangabip", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 877, + "codeIataCity": "BPL", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 44.904232, + "longitudeCity": 82.024185, + "nameCity": "Bole", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 878, + "codeIataCity": "BPN", + "codeIso2Country": "ID", + "geonameId": 1650527, + "latitudeCity": -1.260623, + "longitudeCity": 116.90082, + "nameCity": "Balikpapan", + "timezone": "Asia/Makassar" + }, + { + "GMT": "8", + "cityId": 879, + "codeIataCity": "BPO", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Bo'ao", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-3", + "cityId": 880, + "codeIataCity": "BPS", + "codeIso2Country": "BR", + "geonameId": 3452640, + "latitudeCity": -16.441158, + "longitudeCity": -39.081097, + "nameCity": "Porto Seguro", + "timezone": "America/Bahia" + }, + { + "GMT": "-6", + "cityId": 881, + "codeIataCity": "BPT", + "codeIso2Country": "US", + "geonameId": 4672989, + "latitudeCity": 29.950832, + "longitudeCity": -94.02, + "nameCity": "Beaumont", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "cityId": 882, + "codeIataCity": "BPU", + "codeIso2Country": "JP", + "geonameId": 0, + "latitudeCity": 33.25, + "longitudeCity": 131.5, + "nameCity": "Beppu", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "8", + "cityId": 883, + "codeIataCity": "BPX", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 30.555834, + "longitudeCity": 97.10667, + "nameCity": "Bangda", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "cityId": 884, + "codeIataCity": "BPY", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -16.75, + "longitudeCity": 44.483334, + "nameCity": "Besalampy", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "8", + "cityId": 885, + "codeIataCity": "BQA", + "codeIso2Country": "PH", + "geonameId": 1721906, + "latitudeCity": 15.0, + "longitudeCity": 121.083336, + "nameCity": "Baler", + "timezone": "Asia/Manila" + }, + { + "GMT": "3", + "cityId": 886, + "codeIataCity": "BQB", + "codeIso2Country": "AU", + "geonameId": 694423, + "latitudeCity": -33.716667, + "longitudeCity": 115.25, + "nameCity": "Bussellton", + "timezone": "Europe/Simferopol" + }, + { + "GMT": "0", + "cityId": 887, + "codeIataCity": "BQE", + "codeIso2Country": "GW", + "geonameId": 0, + "latitudeCity": 11.3, + "longitudeCity": -15.85, + "nameCity": "Bubaque", + "timezone": "Africa/Bissau" + }, + { + "GMT": "10", + "cityId": 888, + "codeIataCity": "BQG", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 52.378334, + "longitudeCity": 140.44833, + "nameCity": "Bogorodskoye", + "timezone": "Asia/Vladivostok" + }, + { + "GMT": "2", + "cityId": 889, + "codeIataCity": "BQI", + "codeIso2Country": "NA", + "geonameId": 877349, + "latitudeCity": -18.118055, + "longitudeCity": 21.629723, + "nameCity": "Bagani", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "10", + "cityId": 890, + "codeIataCity": "BQJ", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 67.655, + "longitudeCity": 134.641667, + "nameCity": "Batagay", + "timezone": "Asia/Vladivostok" + }, + { + "GMT": "10", + "cityId": 891, + "codeIataCity": "BQL", + "codeIso2Country": "AU", + "geonameId": 2075982, + "latitudeCity": -22.9, + "longitudeCity": 139.9, + "nameCity": "Boulia", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-4", + "cityId": 892, + "codeIataCity": "BQN", + "codeIso2Country": "PR", + "geonameId": 4562506, + "latitudeCity": 18.495832, + "longitudeCity": -67.13, + "nameCity": "Aguadilla", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "0", + "cityId": 893, + "codeIataCity": "BQO", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 9.266667, + "longitudeCity": -3.0, + "nameCity": "Bouna", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "-3", + "cityId": 894, + "codeIataCity": "BQQ", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -11.083333, + "longitudeCity": -43.13333, + "nameCity": "Barra", + "timezone": "America/Bahia" + }, + { + "GMT": "9", + "cityId": 895, + "codeIataCity": "BQS", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 50.416668, + "longitudeCity": 127.4, + "nameCity": "Blagoveschensk", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "3", + "cityId": 896, + "codeIataCity": "BQT", + "codeIso2Country": "BY", + "geonameId": 629634, + "latitudeCity": 52.11667, + "longitudeCity": 23.883333, + "nameCity": "Brest", + "timezone": "Europe/Minsk" + }, + { + "GMT": "-4", + "cityId": 897, + "codeIataCity": "BQU", + "codeIso2Country": "VC", + "geonameId": 3577903, + "latitudeCity": 12.986667, + "longitudeCity": -61.264168, + "nameCity": "Bequia", + "timezone": "America/St_Vincent" + }, + { + "GMT": "8", + "cityId": 898, + "codeIataCity": "BQW", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -20.183332, + "longitudeCity": 127.8, + "nameCity": "Balgo Hills", + "timezone": "Australia/Perth" + }, + { + "GMT": "-3", + "cityId": 899, + "codeIataCity": "BRA", + "codeIso2Country": "BR", + "geonameId": 3470583, + "latitudeCity": -12.073056, + "longitudeCity": -45.00833, + "nameCity": "Barreiras", + "timezone": "America/Bahia" + }, + { + "GMT": "-3", + "cityId": 900, + "codeIataCity": "BRB", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -2.910626, + "longitudeCity": -57.11111, + "nameCity": "Barreirinhas", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-3", + "cityId": 901, + "codeIataCity": "BRC", + "codeIso2Country": "AR", + "geonameId": 7647007, + "latitudeCity": -41.145966, + "longitudeCity": -71.16109, + "nameCity": "San Carlos DeBariloche", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-6", + "cityId": 902, + "codeIataCity": "BRD", + "codeIso2Country": "US", + "geonameId": 5019116, + "latitudeCity": 46.39722, + "longitudeCity": -94.1375, + "nameCity": "Brainerd", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 903, + "codeIataCity": "BRE", + "codeIso2Country": "DE", + "geonameId": 2944388, + "latitudeCity": 53.05297, + "longitudeCity": 8.785352, + "nameCity": "Bremen", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "cityId": 904, + "codeIataCity": "BRG", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 37.11667, + "longitudeCity": -82.833336, + "nameCity": "Whitesburg", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 905, + "codeIataCity": "BRH", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.7, + "longitudeCity": 145.36667, + "nameCity": "Brahman", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 906, + "codeIataCity": "BRI", + "codeIso2Country": "IT", + "geonameId": 3182351, + "latitudeCity": 41.126, + "longitudeCity": 16.868378, + "nameCity": "Bari", + "timezone": "Europe/Rome" + }, + { + "GMT": "10", + "cityId": 907, + "codeIataCity": "BRJ", + "codeIso2Country": "AU", + "geonameId": 2174041, + "latitudeCity": -36.7, + "longitudeCity": 146.93333, + "nameCity": "Bright", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "10", + "cityId": 908, + "codeIataCity": "BRK", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -30.083332, + "longitudeCity": 145.93333, + "nameCity": "Bourke", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "cityId": 909, + "codeIataCity": "BRL", + "codeIso2Country": "US", + "geonameId": 4849826, + "latitudeCity": 40.78611, + "longitudeCity": -91.12334, + "nameCity": "Burlington", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 910, + "codeIataCity": "BRM", + "codeIso2Country": "VE", + "geonameId": 3648522, + "latitudeCity": 10.046267, + "longitudeCity": -69.35984, + "nameCity": "Barquisimeto", + "timezone": "America/Caracas" + }, + { + "GMT": "1", + "cityId": 911, + "codeIataCity": "BRN", + "codeIso2Country": "CH", + "geonameId": 2661552, + "latitudeCity": 46.947922, + "longitudeCity": 7.444609, + "nameCity": "Berne", + "timezone": "Europe/Zurich" + }, + { + "GMT": "-6", + "cityId": 912, + "codeIataCity": "BRO", + "codeIso2Country": "US", + "geonameId": 4676740, + "latitudeCity": 25.90889, + "longitudeCity": -97.42333, + "nameCity": "Brownsville", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 913, + "codeIataCity": "BRP", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.533333, + "longitudeCity": 146.7, + "nameCity": "Biaru", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 914, + "codeIataCity": "BRQ", + "codeIso2Country": "CZ", + "geonameId": 3078610, + "latitudeCity": 49.19098, + "longitudeCity": 16.611535, + "nameCity": "Brno", + "timezone": "Europe/Prague" + }, + { + "GMT": "0", + "cityId": 915, + "codeIataCity": "BRR", + "codeIso2Country": "GB", + "geonameId": 2635754, + "latitudeCity": 57.023335, + "longitudeCity": -7.440278, + "nameCity": "Barra", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 916, + "codeIataCity": "BRS", + "codeIso2Country": "GB", + "geonameId": 2654675, + "latitudeCity": 51.386757, + "longitudeCity": -2.710659, + "nameCity": "Bristol", + "timezone": "Europe/London" + }, + { + "GMT": "9.30", + "cityId": 917, + "codeIataCity": "BRT", + "codeIso2Country": "AU", + "geonameId": 2073124, + "latitudeCity": -11.766667, + "longitudeCity": 130.63333, + "nameCity": "Bathurst Island", + "timezone": "Australia/Darwin" + }, + { + "GMT": "1", + "cityId": 918, + "codeIataCity": "BRU", + "codeIso2Country": "BE", + "geonameId": 2800866, + "latitudeCity": 50.85034, + "longitudeCity": 4.35171, + "nameCity": "Brussels", + "timezone": "Europe/Brussels" + }, + { + "GMT": "1", + "cityId": 919, + "codeIataCity": "BRV", + "codeIso2Country": "DE", + "geonameId": 2944368, + "latitudeCity": 53.75, + "longitudeCity": 8.916667, + "nameCity": "Bremerhaven", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-9", + "cityId": 920, + "codeIataCity": "BRW", + "codeIso2Country": "US", + "geonameId": 5880054, + "latitudeCity": 71.288574, + "longitudeCity": -156.77579, + "nameCity": "Barrow", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "cityId": 921, + "codeIataCity": "BRX", + "codeIso2Country": "DO", + "geonameId": 3492985, + "latitudeCity": 18.216667, + "longitudeCity": -71.11667, + "nameCity": "Barahona", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "-5", + "cityId": 922, + "codeIataCity": "BRY", + "codeIso2Country": "US", + "geonameId": 4283133, + "latitudeCity": 37.816666, + "longitudeCity": -85.46667, + "nameCity": "Bardstown", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 923, + "codeIataCity": "BRZ", + "codeIso2Country": "IT", + "geonameId": 3181554, + "latitudeCity": 8.766667, + "longitudeCity": -7.5, + "nameCity": "Borotou", + "timezone": "Europe/Rome" + }, + { + "GMT": "3", + "cityId": 924, + "codeIataCity": "BSA", + "codeIso2Country": "SO", + "geonameId": 0, + "latitudeCity": 11.283333, + "longitudeCity": 49.15, + "nameCity": "Bossaso", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-3", + "cityId": 925, + "codeIataCity": "BSB", + "codeIso2Country": "BR", + "geonameId": 3469058, + "latitudeCity": -15.869807, + "longitudeCity": -47.921486, + "nameCity": "Brasilia", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "cityId": 926, + "codeIataCity": "BSC", + "codeIso2Country": "CO", + "geonameId": 3673690, + "latitudeCity": 6.183333, + "longitudeCity": -77.4, + "nameCity": "Bahia Solano", + "timezone": "America/Bogota" + }, + { + "GMT": "8", + "cityId": 927, + "codeIataCity": "BSD", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 25.055182, + "longitudeCity": 99.16143, + "nameCity": "Baoshan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 928, + "codeIataCity": "BSE", + "codeIso2Country": "MY", + "geonameId": 1734470, + "latitudeCity": 1.8, + "longitudeCity": 109.76667, + "nameCity": "Sematan", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-10", + "cityId": 929, + "codeIataCity": "BSF", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 21.383333, + "longitudeCity": -157.75, + "nameCity": "Pohakuloa", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "1", + "cityId": 930, + "codeIataCity": "BSG", + "codeIso2Country": "GQ", + "geonameId": 2310046, + "latitudeCity": 1.906667, + "longitudeCity": 9.802222, + "nameCity": "Bata", + "timezone": "Africa/Malabo" + }, + { + "GMT": "0", + "cityId": 931, + "codeIataCity": "BSH", + "codeIso2Country": "GB", + "geonameId": 2654710, + "latitudeCity": 50.816666, + "longitudeCity": -0.116667, + "nameCity": "Brighton", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "cityId": 932, + "codeIataCity": "BSI", + "codeIso2Country": "US", + "geonameId": 5192029, + "latitudeCity": 40.45, + "longitudeCity": -79.28333, + "nameCity": "Blairsville", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 933, + "codeIataCity": "BSJ", + "codeIso2Country": "AU", + "geonameId": 2177233, + "latitudeCity": -37.833332, + "longitudeCity": 147.63333, + "nameCity": "Bairnsdale", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "1", + "cityId": 934, + "codeIataCity": "BSK", + "codeIso2Country": "DZ", + "geonameId": 2503826, + "latitudeCity": 34.79333, + "longitudeCity": 5.738056, + "nameCity": "Biskra", + "timezone": "Africa/Algiers" + }, + { + "GMT": "3.30", + "cityId": 935, + "codeIataCity": "BSM", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 36.65, + "longitudeCity": 52.35, + "nameCity": "Bishe-kola", + "timezone": "Asia/Tehran" + }, + { + "GMT": "1", + "cityId": 936, + "codeIataCity": "BSN", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 6.583333, + "longitudeCity": 17.5, + "nameCity": "Bossangoa", + "timezone": "Africa/Bangui" + }, + { + "GMT": "8", + "cityId": 937, + "codeIataCity": "BSO", + "codeIso2Country": "PH", + "geonameId": 1726449, + "latitudeCity": 20.453056, + "longitudeCity": 121.977776, + "nameCity": "Basco", + "timezone": "Asia/Manila" + }, + { + "GMT": "10", + "cityId": 938, + "codeIataCity": "BSP", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.333333, + "longitudeCity": 141.08333, + "nameCity": "Bensbach", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "cityId": 939, + "codeIataCity": "BSQ", + "codeIso2Country": "US", + "geonameId": 5284905, + "latitudeCity": 31.36389, + "longitudeCity": -109.88111, + "nameCity": "Bisbee", + "timezone": "America/Phoenix" + }, + { + "GMT": "3", + "cityId": 940, + "codeIataCity": "BSR", + "codeIso2Country": "IQ", + "geonameId": 0, + "latitudeCity": 30.555555, + "longitudeCity": 47.79139, + "nameCity": "Basra", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "-3", + "cityId": 941, + "codeIataCity": "BSS", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -7.516667, + "longitudeCity": -46.05, + "nameCity": "Balsas", + "timezone": "America/Fortaleza" + }, + { + "GMT": "4.30", + "cityId": 942, + "codeIataCity": "BST", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 31.55, + "longitudeCity": 64.36667, + "nameCity": "Bost", + "timezone": "Asia/Kabul" + }, + { + "GMT": "1", + "cityId": 943, + "codeIataCity": "BSU", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": 1.221667, + "longitudeCity": 19.788889, + "nameCity": "Basankusu", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "3", + "cityId": 944, + "codeIataCity": "BSV", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -15.666667, + "longitudeCity": 47.066666, + "nameCity": "Besakoa", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-9", + "cityId": 945, + "codeIataCity": "BSW", + "codeIso2Country": "US", + "geonameId": 5877389, + "latitudeCity": 60.4, + "longitudeCity": -146.13333, + "nameCity": "Boswell Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "6.30", + "cityId": 946, + "codeIataCity": "BSX", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 16.8, + "longitudeCity": 94.78333, + "nameCity": "Bassein", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "3", + "cityId": 947, + "codeIataCity": "BSY", + "codeIso2Country": "SO", + "geonameId": 0, + "latitudeCity": 2.35, + "longitudeCity": 42.333332, + "nameCity": "Bardera", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-9", + "cityId": 948, + "codeIataCity": "BSZ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 58.233612, + "longitudeCity": -157.35028, + "nameCity": "Bartletts", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 949, + "codeIataCity": "BTA", + "codeIso2Country": "CM", + "geonameId": 0, + "latitudeCity": 4.540833, + "longitudeCity": 13.7275, + "nameCity": "Yaounde", + "timezone": "Africa/Douala" + }, + { + "GMT": "1", + "cityId": 950, + "codeIataCity": "BTB", + "codeIso2Country": "CG", + "geonameId": 0, + "latitudeCity": 3.05, + "longitudeCity": 18.5, + "nameCity": "Betou", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "5.30", + "cityId": 951, + "codeIataCity": "BTC", + "codeIso2Country": "LK", + "geonameId": 1242184, + "latitudeCity": 7.71, + "longitudeCity": 81.68, + "nameCity": "Batticaloa", + "timezone": "Asia/Colombo" + }, + { + "GMT": "9.30", + "cityId": 952, + "codeIataCity": "BTD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.666668, + "longitudeCity": 135.91667, + "nameCity": "Brunette Downs", + "timezone": "Australia/Darwin" + }, + { + "GMT": "0", + "cityId": 953, + "codeIataCity": "BTE", + "codeIso2Country": "SL", + "geonameId": 0, + "latitudeCity": 7.0, + "longitudeCity": -12.008333, + "nameCity": "Bonthe", + "timezone": "Africa/Freetown" + }, + { + "GMT": "-7", + "cityId": 954, + "codeIataCity": "BTF", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 40.88333, + "longitudeCity": -111.88333, + "nameCity": "Bountiful", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 955, + "codeIataCity": "BTG", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 7.416667, + "longitudeCity": 18.333332, + "nameCity": "Batangafo", + "timezone": "Africa/Bangui" + }, + { + "GMT": "7", + "cityId": 956, + "codeIataCity": "BTH", + "codeIso2Country": "ID", + "geonameId": 6295587, + "latitudeCity": 1.123627, + "longitudeCity": 104.11528, + "nameCity": "Batam", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-9", + "cityId": 957, + "codeIataCity": "BTI", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 70.13472, + "longitudeCity": -143.57834, + "nameCity": "Barter Island", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "cityId": 958, + "codeIataCity": "BTJ", + "codeIso2Country": "ID", + "geonameId": 1215502, + "latitudeCity": 5.518021, + "longitudeCity": 95.41833, + "nameCity": "Banda Aceh", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "8", + "cityId": 959, + "codeIataCity": "BTK", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 56.36667, + "longitudeCity": 101.816666, + "nameCity": "Bratsk", + "timezone": "Asia/Irkutsk" + }, + { + "GMT": "-5", + "cityId": 960, + "codeIataCity": "BTL", + "codeIso2Country": "US", + "geonameId": 4985153, + "latitudeCity": 42.37278, + "longitudeCity": -85.26481, + "nameCity": "Battle Creek", + "timezone": "America/Detroit" + }, + { + "GMT": "-7", + "cityId": 961, + "codeIataCity": "BTM", + "codeIso2Country": "US", + "geonameId": 5642934, + "latitudeCity": 45.95111, + "longitudeCity": -112.49389, + "nameCity": "Butte", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "cityId": 962, + "codeIataCity": "BTN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 34.61667, + "longitudeCity": -79.683334, + "nameCity": "Bennettsville", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 963, + "codeIataCity": "BTO", + "codeIso2Country": "SR", + "geonameId": 0, + "latitudeCity": 4.25, + "longitudeCity": -55.45, + "nameCity": "Botopasie", + "timezone": "America/Paramaribo" + }, + { + "GMT": "-5", + "cityId": 964, + "codeIataCity": "BTP", + "codeIso2Country": "US", + "geonameId": 5206379, + "latitudeCity": 40.85, + "longitudeCity": -79.916664, + "nameCity": "Butler", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 965, + "codeIataCity": "BTQ", + "codeIso2Country": "RW", + "geonameId": 203112, + "latitudeCity": -2.6, + "longitudeCity": 29.733334, + "nameCity": "Butare", + "timezone": "Africa/Kigali" + }, + { + "GMT": "-6", + "cityId": 966, + "codeIataCity": "BTR", + "codeIso2Country": "US", + "geonameId": 4315588, + "latitudeCity": 30.458283, + "longitudeCity": -91.14032, + "nameCity": "Baton Rouge", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 967, + "codeIataCity": "BTS", + "codeIso2Country": "SK", + "geonameId": 3060972, + "latitudeCity": 48.17, + "longitudeCity": 17.21, + "nameCity": "Bratislava", + "timezone": "Europe/Bratislava" + }, + { + "GMT": "-9", + "cityId": 968, + "codeIataCity": "BTT", + "codeIso2Country": "US", + "geonameId": 5880577, + "latitudeCity": 66.915276, + "longitudeCity": -151.52638, + "nameCity": "Bettles", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "cityId": 969, + "codeIataCity": "BTU", + "codeIso2Country": "MY", + "geonameId": 1737486, + "latitudeCity": 3.171772, + "longitudeCity": 113.04346, + "nameCity": "Bintulu", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-5", + "cityId": 970, + "codeIataCity": "BTV", + "codeIso2Country": "US", + "geonameId": 5234372, + "latitudeCity": 44.469013, + "longitudeCity": -73.15527, + "nameCity": "Burlington", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 971, + "codeIataCity": "BTW", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.0, + "longitudeCity": 116.0, + "nameCity": "Batu Licin", + "timezone": "Asia/Makassar" + }, + { + "GMT": "10", + "cityId": 972, + "codeIataCity": "BTX", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -25.7, + "longitudeCity": 140.73334, + "nameCity": "Betoota", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-8", + "cityId": 973, + "codeIataCity": "BTY", + "codeIso2Country": "US", + "geonameId": 5550561, + "latitudeCity": 36.9, + "longitudeCity": -116.76667, + "nameCity": "Beatty", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 974, + "codeIataCity": "BUA", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.422443, + "longitudeCity": 154.67288, + "nameCity": "Buka", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 975, + "codeIataCity": "BUB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.783333, + "longitudeCity": -99.13333, + "nameCity": "Burwell", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 976, + "codeIataCity": "BUC", + "codeIso2Country": "AU", + "geonameId": 2075336, + "latitudeCity": -17.75, + "longitudeCity": 139.53334, + "nameCity": "Burketown", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 977, + "codeIataCity": "BUD", + "codeIso2Country": "HU", + "geonameId": 3054643, + "latitudeCity": 47.498406, + "longitudeCity": 19.040758, + "nameCity": "Budapest", + "timezone": "Europe/Budapest" + }, + { + "GMT": "-3", + "cityId": 978, + "codeIataCity": "BUE", + "codeIso2Country": "AR", + "geonameId": 3435910, + "latitudeCity": -34.608418, + "longitudeCity": -58.373161, + "nameCity": "Buenos Aires", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "-5", + "cityId": 979, + "codeIataCity": "BUF", + "codeIso2Country": "US", + "geonameId": 5110629, + "latitudeCity": 42.886447, + "longitudeCity": -78.878369, + "nameCity": "Buffalo", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 980, + "codeIataCity": "BUG", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -12.606389, + "longitudeCity": 13.405556, + "nameCity": "Benguela", + "timezone": "Africa/Luanda" + }, + { + "GMT": "2", + "cityId": 981, + "codeIataCity": "BUH", + "codeIso2Country": "RO", + "geonameId": 683506, + "latitudeCity": 44.437711, + "longitudeCity": 26.097367, + "nameCity": "Bucharest", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "9", + "cityId": 982, + "codeIataCity": "BUI", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -2.0, + "longitudeCity": 133.58333, + "nameCity": "Bokondini", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "cityId": 983, + "codeIataCity": "BUJ", + "codeIso2Country": "DZ", + "geonameId": 0, + "latitudeCity": 35.166668, + "longitudeCity": 4.15, + "nameCity": "Boussaada", + "timezone": "Africa/Algiers" + }, + { + "GMT": "3", + "cityId": 984, + "codeIataCity": "BUK", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 15.833333, + "longitudeCity": 43.766666, + "nameCity": "Albuq", + "timezone": "Asia/Aden" + }, + { + "GMT": "10", + "cityId": 985, + "codeIataCity": "BUL", + "codeIso2Country": "PG", + "geonameId": 2098869, + "latitudeCity": -7.189722, + "longitudeCity": 146.64778, + "nameCity": "Bulolo", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 986, + "codeIataCity": "BUM", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.266666, + "longitudeCity": -94.333336, + "nameCity": "Butler", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 987, + "codeIataCity": "BUN", + "codeIso2Country": "CO", + "geonameId": 3688451, + "latitudeCity": 3.825, + "longitudeCity": -76.995834, + "nameCity": "Buenaventura", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "cityId": 988, + "codeIataCity": "BUO", + "codeIso2Country": "SO", + "geonameId": 0, + "latitudeCity": 9.5225, + "longitudeCity": 45.55417, + "nameCity": "Burao", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "5.30", + "cityId": 989, + "codeIataCity": "BUP", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 30.166668, + "longitudeCity": 74.96667, + "nameCity": "Bhatinda", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "2", + "cityId": 990, + "codeIataCity": "BUQ", + "codeIso2Country": "ZW", + "geonameId": 894701, + "latitudeCity": -20.014933, + "longitudeCity": 28.622616, + "nameCity": "Bulawayo", + "timezone": "Africa/Harare" + }, + { + "GMT": "-8", + "cityId": 991, + "codeIataCity": "BUR", + "codeIso2Country": "US", + "geonameId": 5331835, + "latitudeCity": 34.19619, + "longitudeCity": -118.35411, + "nameCity": "Burbank", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "4", + "cityId": 992, + "codeIataCity": "BUS", + "codeIso2Country": "GE", + "geonameId": 615532, + "latitudeCity": 41.610832, + "longitudeCity": 41.600555, + "nameCity": "Batumi", + "timezone": "Asia/Tbilisi" + }, + { + "GMT": "-3", + "cityId": 993, + "codeIataCity": "BUV", + "codeIso2Country": "UY", + "geonameId": 3439889, + "latitudeCity": -30.333332, + "longitudeCity": -57.083332, + "nameCity": "Bella Union", + "timezone": "America/Montevideo" + }, + { + "GMT": "8", + "cityId": 994, + "codeIataCity": "BUW", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -5.466667, + "longitudeCity": 122.63333, + "nameCity": "Baubau", + "timezone": "Asia/Makassar" + }, + { + "GMT": "2", + "cityId": 995, + "codeIataCity": "BUX", + "codeIso2Country": "CD", + "geonameId": 217695, + "latitudeCity": 1.571667, + "longitudeCity": 30.212778, + "nameCity": "Bunia", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "8", + "cityId": 996, + "codeIataCity": "BUY", + "codeIso2Country": "AU", + "geonameId": 2075432, + "latitudeCity": -33.316666, + "longitudeCity": 115.63333, + "nameCity": "Bunbury", + "timezone": "Australia/Perth" + }, + { + "GMT": "3.30", + "cityId": 997, + "codeIataCity": "BUZ", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 28.958284, + "longitudeCity": 50.825424, + "nameCity": "Bushehr", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-4", + "cityId": 998, + "codeIataCity": "BVB", + "codeIso2Country": "BR", + "geonameId": 3664980, + "latitudeCity": 2.833333, + "longitudeCity": -60.666668, + "nameCity": "Boa Vista", + "timezone": "America/Boa_Vista" + }, + { + "GMT": "-1", + "cityId": 999, + "codeIataCity": "BVC", + "codeIso2Country": "CV", + "geonameId": 3374660, + "latitudeCity": 16.083332, + "longitudeCity": -22.833332, + "nameCity": "Boa Vista", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "-9", + "cityId": 1000, + "codeIataCity": "BVD", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 53.733334, + "longitudeCity": -166.31667, + "nameCity": "Beaver Inlet", + "timezone": "America/Nome" + }, + { + "GMT": "1", + "cityId": 1001, + "codeIataCity": "BVE", + "codeIso2Country": "FR", + "geonameId": 3029974, + "latitudeCity": 45.166668, + "longitudeCity": 1.533333, + "nameCity": "Brive-La-Gaillarde", + "timezone": "Europe/Paris" + }, + { + "GMT": "12", + "cityId": 1002, + "codeIataCity": "BVF", + "codeIso2Country": "FJ", + "geonameId": 2203107, + "latitudeCity": -17.0, + "longitudeCity": 178.5, + "nameCity": "Bua", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "1", + "cityId": 1003, + "codeIataCity": "BVG", + "codeIso2Country": "NO", + "geonameId": 777073, + "latitudeCity": 70.86667, + "longitudeCity": 29.0, + "nameCity": "Berlevag", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-4", + "cityId": 1004, + "codeIataCity": "BVH", + "codeIso2Country": "BR", + "geonameId": 3924679, + "latitudeCity": -12.716667, + "longitudeCity": -60.11667, + "nameCity": "Vilhena", + "timezone": "America/Porto_Velho" + }, + { + "GMT": "10", + "cityId": 1005, + "codeIataCity": "BVI", + "codeIso2Country": "AU", + "geonameId": 2076533, + "latitudeCity": -25.898333, + "longitudeCity": 139.34334, + "nameCity": "Birdsville", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-4", + "cityId": 1006, + "codeIataCity": "BVK", + "codeIso2Country": "BO", + "geonameId": 3915079, + "latitudeCity": -13.55, + "longitudeCity": -63.75, + "nameCity": "Huacaraje", + "timezone": "America/La_Paz" + }, + { + "GMT": "-4", + "cityId": 1007, + "codeIataCity": "BVL", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -13.583333, + "longitudeCity": -63.583332, + "nameCity": "Baures", + "timezone": "America/La_Paz" + }, + { + "GMT": "-3", + "cityId": 1008, + "codeIataCity": "BVM", + "codeIso2Country": "BR", + "geonameId": 3452640, + "latitudeCity": -15.833333, + "longitudeCity": -38.916668, + "nameCity": "Belmonte", + "timezone": "America/Bahia" + }, + { + "GMT": "-6", + "cityId": 1009, + "codeIataCity": "BVO", + "codeIso2Country": "US", + "geonameId": 4529987, + "latitudeCity": 36.7625, + "longitudeCity": -96.01083, + "nameCity": "Bartlesville", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 1010, + "codeIataCity": "BVP", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.383333, + "longitudeCity": 141.7, + "nameCity": "Bolovip", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-1", + "cityId": 1011, + "codeIataCity": "BVR", + "codeIso2Country": "CV", + "geonameId": 0, + "latitudeCity": 14.866667, + "longitudeCity": -24.733334, + "nameCity": "Brava", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "-3", + "cityId": 1012, + "codeIataCity": "BVS", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -1.666667, + "longitudeCity": -50.466667, + "nameCity": "Breves", + "timezone": "America/Belem" + }, + { + "GMT": "-9", + "cityId": 1013, + "codeIataCity": "BVU", + "codeIso2Country": "US", + "geonameId": 5880474, + "latitudeCity": 61.169445, + "longitudeCity": -151.03612, + "nameCity": "Beluga", + "timezone": "America/Anchorage" + }, + { + "GMT": "11", + "cityId": 1014, + "codeIataCity": "BVV", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 44.928646, + "longitudeCity": 147.61337, + "nameCity": "Iturup Island", + "timezone": "Asia/Magadan" + }, + { + "GMT": "10", + "cityId": 1015, + "codeIataCity": "BVW", + "codeIso2Country": "AU", + "geonameId": 2144209, + "latitudeCity": -12.65, + "longitudeCity": 143.21666, + "nameCity": "Batavia Downs", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "cityId": 1016, + "codeIataCity": "BVX", + "codeIso2Country": "US", + "geonameId": 4100525, + "latitudeCity": 35.766666, + "longitudeCity": -91.65, + "nameCity": "Batesville", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 1017, + "codeIataCity": "BVY", + "codeIso2Country": "US", + "geonameId": 4934500, + "latitudeCity": 42.55, + "longitudeCity": -70.88333, + "nameCity": "Beverly", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 1018, + "codeIataCity": "BVZ", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -15.0, + "longitudeCity": 124.0, + "nameCity": "Beverley Springs", + "timezone": "Australia/Perth" + }, + { + "GMT": "5.45", + "cityId": 1019, + "codeIataCity": "BWA", + "codeIso2Country": "NP", + "geonameId": 1283621, + "latitudeCity": 27.504168, + "longitudeCity": 83.42, + "nameCity": "Bhairawa", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "8", + "cityId": 1020, + "codeIataCity": "BWB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -20.783333, + "longitudeCity": 115.416664, + "nameCity": "Barrow Island", + "timezone": "Australia/Perth" + }, + { + "GMT": "-8", + "cityId": 1021, + "codeIataCity": "BWC", + "codeIso2Country": "US", + "geonameId": 5330567, + "latitudeCity": 32.983334, + "longitudeCity": -115.51667, + "nameCity": "Brawley", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 1022, + "codeIataCity": "BWD", + "codeIso2Country": "US", + "geonameId": 4676798, + "latitudeCity": 31.794722, + "longitudeCity": -98.956665, + "nameCity": "Brownwood", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 1023, + "codeIataCity": "BWE", + "codeIso2Country": "DE", + "geonameId": 2945024, + "latitudeCity": 52.264148, + "longitudeCity": 10.52638, + "nameCity": "Braunschweig", + "timezone": "Europe/Berlin" + }, + { + "GMT": "0", + "cityId": 1024, + "codeIataCity": "BWF", + "codeIso2Country": "GB", + "geonameId": 2655459, + "latitudeCity": 54.11667, + "longitudeCity": -3.233333, + "nameCity": "Barrow-In-Furness", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "cityId": 1025, + "codeIataCity": "BWG", + "codeIso2Country": "US", + "geonameId": 4285268, + "latitudeCity": 36.962223, + "longitudeCity": -86.42222, + "nameCity": "Bowling Green", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 1026, + "codeIataCity": "BWH", + "codeIso2Country": "MY", + "geonameId": 1735106, + "latitudeCity": 5.466667, + "longitudeCity": 100.3925, + "nameCity": "Butterworth", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "-5", + "cityId": 1027, + "codeIataCity": "BWI", + "codeIso2Country": "US", + "geonameId": 4347778, + "latitudeCity": 39.286389, + "longitudeCity": -76.615, + "nameCity": "Baltimore", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 1028, + "codeIataCity": "BWJ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.4, + "longitudeCity": 146.9, + "nameCity": "Bawan", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 1029, + "codeIataCity": "BWK", + "codeIso2Country": "HR", + "geonameId": 3199180, + "latitudeCity": 43.283333, + "longitudeCity": 16.683332, + "nameCity": "Bol", + "timezone": "Europe/Zagreb" + }, + { + "GMT": "-6", + "cityId": 1030, + "codeIataCity": "BWL", + "codeIso2Country": "US", + "geonameId": 4281730, + "latitudeCity": 36.8, + "longitudeCity": -97.28333, + "nameCity": "Blackwell", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 1031, + "codeIataCity": "BWM", + "codeIso2Country": "US", + "geonameId": 5688789, + "latitudeCity": 46.183334, + "longitudeCity": -103.4, + "nameCity": "Bowman", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "cityId": 1032, + "codeIataCity": "BWN", + "codeIso2Country": "BN", + "geonameId": 1820906, + "latitudeCity": 4.945197, + "longitudeCity": 114.93375, + "nameCity": "Bandar Seri Begawan", + "timezone": "Asia/Brunei" + }, + { + "GMT": "3", + "cityId": 1033, + "codeIataCity": "BWO", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 51.86667, + "longitudeCity": 47.75, + "nameCity": "Balakovo", + "timezone": "Europe/Volgograd" + }, + { + "GMT": "10", + "cityId": 1034, + "codeIataCity": "BWP", + "codeIso2Country": "PG", + "geonameId": 2099579, + "latitudeCity": -3.016667, + "longitudeCity": 141.15, + "nameCity": "Bewani", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 1035, + "codeIataCity": "BWQ", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -29.95, + "longitudeCity": 146.86667, + "nameCity": "Brewarrina", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-8", + "cityId": 1036, + "codeIataCity": "BWS", + "codeIso2Country": "US", + "geonameId": 5787475, + "latitudeCity": 48.966667, + "longitudeCity": -122.833336, + "nameCity": "Blaine", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 1037, + "codeIataCity": "BWT", + "codeIso2Country": "AU", + "geonameId": 2173125, + "latitudeCity": -40.993145, + "longitudeCity": 145.72507, + "nameCity": "Burnie", + "timezone": "Australia/Hobart" + }, + { + "GMT": "-5", + "cityId": 1038, + "codeIataCity": "BWW", + "codeIso2Country": "CU", + "geonameId": 0, + "latitudeCity": 22.62118, + "longitudeCity": -79.14697, + "nameCity": "Cayo Las Brujas", + "timezone": "America/Havana" + }, + { + "GMT": "-6", + "cityId": 1039, + "codeIataCity": "BXA", + "codeIso2Country": "US", + "geonameId": 4335045, + "latitudeCity": 30.933332, + "longitudeCity": -89.88333, + "nameCity": "Bogalusa", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "cityId": 1040, + "codeIataCity": "BXB", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -2.55, + "longitudeCity": 133.41667, + "nameCity": "Babo", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-5", + "cityId": 1041, + "codeIataCity": "BXC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.483334, + "longitudeCity": -71.53333, + "nameCity": "Boxborough", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "cityId": 1042, + "codeIataCity": "BXD", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -7.166667, + "longitudeCity": 139.5, + "nameCity": "Bade", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "0", + "cityId": 1043, + "codeIataCity": "BXE", + "codeIso2Country": "SN", + "geonameId": 2254441, + "latitudeCity": 14.841667, + "longitudeCity": -12.467778, + "nameCity": "Bakel", + "timezone": "Africa/Dakar" + }, + { + "GMT": "8", + "cityId": 1044, + "codeIataCity": "BXF", + "codeIso2Country": "AU", + "geonameId": 2059811, + "latitudeCity": -17.545555, + "longitudeCity": 128.30779, + "nameCity": "Belburn", + "timezone": "Australia/Perth" + }, + { + "GMT": "10", + "cityId": 1045, + "codeIataCity": "BXG", + "codeIso2Country": "AU", + "geonameId": 2176187, + "latitudeCity": -36.734722, + "longitudeCity": 144.30194, + "nameCity": "Bendigo", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "6", + "cityId": 1046, + "codeIataCity": "BXH", + "codeIso2Country": "KZ", + "geonameId": 0, + "latitudeCity": 46.88333, + "longitudeCity": 75.01667, + "nameCity": "Balhash", + "timezone": "Asia/Almaty" + }, + { + "GMT": "0", + "cityId": 1047, + "codeIataCity": "BXI", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 8.75, + "longitudeCity": -6.5, + "nameCity": "Boundiali", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "-7", + "cityId": 1048, + "codeIataCity": "BXK", + "codeIso2Country": "US", + "geonameId": 5308655, + "latitudeCity": 33.36667, + "longitudeCity": -112.583336, + "nameCity": "Buckeye", + "timezone": "America/Phoenix" + }, + { + "GMT": "12", + "cityId": 1049, + "codeIataCity": "BXL", + "codeIso2Country": "FJ", + "geonameId": 8555974, + "latitudeCity": -16.75, + "longitudeCity": 179.0, + "nameCity": "Blue Lagoon", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "9", + "cityId": 1050, + "codeIataCity": "BXM", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -4.116667, + "longitudeCity": 140.85, + "nameCity": "Batom", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "cityId": 1051, + "codeIataCity": "BXO", + "codeIso2Country": "CH", + "geonameId": 2659811, + "latitudeCity": 46.966667, + "longitudeCity": 8.383333, + "nameCity": "Buochs", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 1052, + "codeIataCity": "BXP", + "codeIso2Country": "PL", + "geonameId": 776175, + "latitudeCity": 52.00551, + "longitudeCity": 23.14542, + "nameCity": "Biala Podlaska", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "3.30", + "cityId": 1053, + "codeIataCity": "BXR", + "codeIso2Country": "IR", + "geonameId": 141736, + "latitudeCity": 29.080082, + "longitudeCity": 58.449356, + "nameCity": "Bam", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-8", + "cityId": 1054, + "codeIataCity": "BXS", + "codeIso2Country": "US", + "geonameId": 5391811, + "latitudeCity": 33.343334, + "longitudeCity": -116.32778, + "nameCity": "Borrego Springs", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "cityId": 1055, + "codeIataCity": "BXT", + "codeIso2Country": "ID", + "geonameId": 1648186, + "latitudeCity": 0.166667, + "longitudeCity": 117.5, + "nameCity": "Bontang", + "timezone": "Asia/Makassar" + }, + { + "GMT": "8", + "cityId": 1056, + "codeIataCity": "BXU", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 8.947999, + "longitudeCity": 125.48123, + "nameCity": "Butuan", + "timezone": "Asia/Manila" + }, + { + "GMT": "0", + "cityId": 1057, + "codeIataCity": "BXV", + "codeIso2Country": "IS", + "geonameId": 2632428, + "latitudeCity": 64.76667, + "longitudeCity": -14.0, + "nameCity": "Breiddalsvik", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "3", + "cityId": 1058, + "codeIataCity": "BXX", + "codeIso2Country": "SO", + "geonameId": 0, + "latitudeCity": 9.966667, + "longitudeCity": 43.11667, + "nameCity": "Borama", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "10", + "cityId": 1059, + "codeIataCity": "BXZ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.716667, + "longitudeCity": 147.86667, + "nameCity": "Bunsil", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 1060, + "codeIataCity": "BYA", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 64.076385, + "longitudeCity": -141.11444, + "nameCity": "Boundary", + "timezone": "America/Anchorage" + }, + { + "GMT": "4", + "cityId": 1061, + "codeIataCity": "BYB", + "codeIso2Country": "OM", + "geonameId": 0, + "latitudeCity": 25.583332, + "longitudeCity": 56.25, + "nameCity": "Dibaa", + "timezone": "Asia/Muscat" + }, + { + "GMT": "-4", + "cityId": 1062, + "codeIataCity": "BYC", + "codeIso2Country": "BO", + "geonameId": 3901178, + "latitudeCity": -21.95, + "longitudeCity": -63.65, + "nameCity": "Yacuiba", + "timezone": "America/La_Paz" + }, + { + "GMT": "3", + "cityId": 1063, + "codeIataCity": "BYD", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 14.133333, + "longitudeCity": 46.55, + "nameCity": "Beidah", + "timezone": "Asia/Aden" + }, + { + "GMT": "1", + "cityId": 1064, + "codeIataCity": "BYF", + "codeIso2Country": "FR", + "geonameId": 3038271, + "latitudeCity": 50.00091, + "longitudeCity": 2.65096, + "nameCity": "Albert", + "timezone": "Europe/Paris" + }, + { + "GMT": "-7", + "cityId": 1065, + "codeIataCity": "BYG", + "codeIso2Country": "US", + "geonameId": 5819881, + "latitudeCity": 44.35, + "longitudeCity": -106.7, + "nameCity": "Buffalo", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 1066, + "codeIataCity": "BYH", + "codeIso2Country": "US", + "geonameId": 4102412, + "latitudeCity": 35.933334, + "longitudeCity": -89.916664, + "nameCity": "Blytheville", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 1067, + "codeIataCity": "BYI", + "codeIso2Country": "US", + "geonameId": 5587385, + "latitudeCity": 42.54139, + "longitudeCity": -113.77417, + "nameCity": "Rupert", + "timezone": "America/Boise" + }, + { + "GMT": "0", + "cityId": 1068, + "codeIataCity": "BYJ", + "codeIso2Country": "PT", + "geonameId": 2270985, + "latitudeCity": 38.0789, + "longitudeCity": -7.9324, + "nameCity": "Beja", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "0", + "cityId": 1069, + "codeIataCity": "BYK", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 7.739444, + "longitudeCity": -5.069167, + "nameCity": "Bouake", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "0", + "cityId": 1070, + "codeIataCity": "BYL", + "codeIso2Country": "LR", + "geonameId": 2278729, + "latitudeCity": 7.366667, + "longitudeCity": -10.0, + "nameCity": "Bella Yella", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-5", + "cityId": 1071, + "codeIataCity": "BYM", + "codeIso2Country": "CU", + "geonameId": 3567597, + "latitudeCity": 20.383333, + "longitudeCity": -76.65, + "nameCity": "Bayamo", + "timezone": "America/Havana" + }, + { + "GMT": "8", + "cityId": 1072, + "codeIataCity": "BYN", + "codeIso2Country": "MN", + "geonameId": 0, + "latitudeCity": 46.1, + "longitudeCity": 100.683334, + "nameCity": "Bayankhongor", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "-4", + "cityId": 1073, + "codeIataCity": "BYO", + "codeIso2Country": "BR", + "geonameId": 3469294, + "latitudeCity": -21.229445, + "longitudeCity": -56.456112, + "nameCity": "Bonito", + "timezone": "America/Campo_Grande" + }, + { + "GMT": "8", + "cityId": 1074, + "codeIataCity": "BYQ", + "codeIso2Country": "ID", + "geonameId": 1624725, + "latitudeCity": 3.583333, + "longitudeCity": 117.833336, + "nameCity": "Bunyu", + "timezone": "Asia/Makassar" + }, + { + "GMT": "1", + "cityId": 1075, + "codeIataCity": "BYR", + "codeIso2Country": "DK", + "geonameId": 0, + "latitudeCity": 57.27756, + "longitudeCity": 11.005083, + "nameCity": "Laeso Island", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-8", + "cityId": 1076, + "codeIataCity": "BYS", + "codeIso2Country": "US", + "geonameId": 5350057, + "latitudeCity": 35.266666, + "longitudeCity": -116.566666, + "nameCity": "Fort Irwin", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "0", + "cityId": 1077, + "codeIataCity": "BYT", + "codeIso2Country": "IE", + "geonameId": 2963522, + "latitudeCity": 51.683334, + "longitudeCity": -9.45, + "nameCity": "Bantry", + "timezone": "Europe/Dublin" + }, + { + "GMT": "1", + "cityId": 1078, + "codeIataCity": "BYU", + "codeIso2Country": "DE", + "geonameId": 2951825, + "latitudeCity": 49.985558, + "longitudeCity": 11.64, + "nameCity": "Bayreuth", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-8", + "cityId": 1079, + "codeIataCity": "BYW", + "codeIso2Country": "US", + "geonameId": 5795104, + "latitudeCity": 48.5, + "longitudeCity": -123.0, + "nameCity": "Blakely Island", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "cityId": 1080, + "codeIataCity": "BYX", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -13.2, + "longitudeCity": 136.23334, + "nameCity": "Baniyala", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-6", + "cityId": 1081, + "codeIataCity": "BZA", + "codeIso2Country": "NI", + "geonameId": 0, + "latitudeCity": 13.95, + "longitudeCity": -84.6, + "nameCity": "Bonanza", + "timezone": "America/Managua" + }, + { + "GMT": "2", + "cityId": 1082, + "codeIataCity": "BZB", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": -21.534721, + "longitudeCity": 35.49167, + "nameCity": "Bazaruto Island", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-3", + "cityId": 1083, + "codeIataCity": "BZC", + "codeIso2Country": "BR", + "geonameId": 3471487, + "latitudeCity": -22.769444, + "longitudeCity": -41.964443, + "nameCity": "Buzios", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "cityId": 1084, + "codeIataCity": "BZD", + "codeIso2Country": "AU", + "geonameId": 2177030, + "latitudeCity": -34.61667, + "longitudeCity": 143.61667, + "nameCity": "Balranald", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "cityId": 1085, + "codeIataCity": "BZE", + "codeIso2Country": "BZ", + "geonameId": 3582677, + "latitudeCity": 17.497713, + "longitudeCity": -88.186654, + "nameCity": "Belize City", + "timezone": "America/Belize" + }, + { + "GMT": "1", + "cityId": 1086, + "codeIataCity": "BZG", + "codeIso2Country": "PL", + "geonameId": 3102014, + "latitudeCity": 53.09667, + "longitudeCity": 17.978611, + "nameCity": "Bydgoszcz", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "2", + "cityId": 1087, + "codeIataCity": "BZH", + "codeIso2Country": "ZW", + "geonameId": 894679, + "latitudeCity": -16.816668, + "longitudeCity": 28.35, + "nameCity": "Bumi Hills", + "timezone": "Africa/Harare" + }, + { + "GMT": "3", + "cityId": 1088, + "codeIataCity": "BZI", + "codeIso2Country": "TR", + "geonameId": 751077, + "latitudeCity": 39.61722, + "longitudeCity": 27.927778, + "nameCity": "Balikesir", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3", + "cityId": 1089, + "codeIataCity": "BZK", + "codeIso2Country": "RU", + "geonameId": 571476, + "latitudeCity": 53.266666, + "longitudeCity": 34.333332, + "nameCity": "Briansk", + "timezone": "Europe/Moscow" + }, + { + "GMT": "6", + "cityId": 1090, + "codeIataCity": "BZL", + "codeIso2Country": "BD", + "geonameId": 0, + "latitudeCity": 22.8, + "longitudeCity": 90.3, + "nameCity": "Barisal", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "3", + "cityId": 1091, + "codeIataCity": "BZM", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": 51.466667, + "longitudeCity": 4.3, + "nameCity": "Bergen Op Zoom", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-7", + "cityId": 1092, + "codeIataCity": "BZN", + "codeIso2Country": "US", + "geonameId": 5641727, + "latitudeCity": 45.777687, + "longitudeCity": -111.16033, + "nameCity": "Bozeman", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 1093, + "codeIataCity": "BZO", + "codeIso2Country": "IT", + "geonameId": 3181913, + "latitudeCity": 46.496715, + "longitudeCity": 11.358005, + "nameCity": "Bolzano", + "timezone": "Europe/Rome" + }, + { + "GMT": "10", + "cityId": 1094, + "codeIataCity": "BZP", + "codeIso2Country": "AU", + "geonameId": 2163635, + "latitudeCity": -15.216667, + "longitudeCity": 144.63333, + "nameCity": "Bizant", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 1095, + "codeIataCity": "BZR", + "codeIso2Country": "FR", + "geonameId": 3038638, + "latitudeCity": 43.324165, + "longitudeCity": 3.354444, + "nameCity": "Beziers", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "cityId": 1096, + "codeIataCity": "BZT", + "codeIso2Country": "US", + "geonameId": 4676131, + "latitudeCity": 29.05, + "longitudeCity": -95.566666, + "nameCity": "Brazoria", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 1097, + "codeIataCity": "BZU", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": 2.8, + "longitudeCity": 24.733334, + "nameCity": "Buta", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "1", + "cityId": 1098, + "codeIataCity": "BZV", + "codeIso2Country": "CG", + "geonameId": 2260535, + "latitudeCity": -4.258899, + "longitudeCity": 15.251139, + "nameCity": "Brazzaville", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "2", + "cityId": 1099, + "codeIataCity": "BZY", + "codeIso2Country": "MD", + "geonameId": 617367, + "latitudeCity": 47.75, + "longitudeCity": 27.933332, + "nameCity": "Beltsy", + "timezone": "Europe/Chisinau" + }, + { + "GMT": "0", + "cityId": 1100, + "codeIataCity": "BZZ", + "codeIso2Country": "GB", + "geonameId": 2654659, + "latitudeCity": 51.75, + "longitudeCity": -1.587093, + "nameCity": "Brize Norton", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "cityId": 1101, + "codeIataCity": "CAA", + "codeIso2Country": "HN", + "geonameId": 3613974, + "latitudeCity": 14.830556, + "longitudeCity": -85.89445, + "nameCity": "Catacamas", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "1", + "cityId": 1102, + "codeIataCity": "CAB", + "codeIso2Country": "AO", + "geonameId": 2243271, + "latitudeCity": -5.583333, + "longitudeCity": 12.2, + "nameCity": "Cabinda", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-3", + "cityId": 1103, + "codeIataCity": "CAC", + "codeIso2Country": "BR", + "geonameId": 3466779, + "latitudeCity": -24.95, + "longitudeCity": -53.466667, + "nameCity": "Cascavel", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "cityId": 1104, + "codeIataCity": "CAD", + "codeIso2Country": "US", + "geonameId": 5002714, + "latitudeCity": 44.275833, + "longitudeCity": -85.42222, + "nameCity": "Cadillac", + "timezone": "America/Detroit" + }, + { + "GMT": "-5", + "cityId": 1105, + "codeIataCity": "CAE", + "codeIso2Country": "US", + "geonameId": 4575352, + "latitudeCity": 34.00071, + "longitudeCity": -81.034814, + "nameCity": "Columbia", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "cityId": 1106, + "codeIataCity": "CAF", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -4.9, + "longitudeCity": -66.916664, + "nameCity": "Carauari", + "timezone": "America/Manaus" + }, + { + "GMT": "1", + "cityId": 1107, + "codeIataCity": "CAG", + "codeIso2Country": "IT", + "geonameId": 2525473, + "latitudeCity": 39.254333, + "longitudeCity": 9.060673, + "nameCity": "Cagliari", + "timezone": "Europe/Rome" + }, + { + "GMT": "7", + "cityId": 1108, + "codeIataCity": "CAH", + "codeIso2Country": "VN", + "geonameId": 1568510, + "latitudeCity": 9.175556, + "longitudeCity": 105.17944, + "nameCity": "Ca Mau", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "2", + "cityId": 1109, + "codeIataCity": "CAI", + "codeIso2Country": "EG", + "geonameId": 360630, + "latitudeCity": 30.120106, + "longitudeCity": 31.40647, + "nameCity": "Cairo", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-4", + "cityId": 1110, + "codeIataCity": "CAJ", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 6.25, + "longitudeCity": -62.833332, + "nameCity": "Canaima", + "timezone": "America/Caracas" + }, + { + "GMT": "-5", + "cityId": 1111, + "codeIataCity": "CAK", + "codeIso2Country": "US", + "geonameId": 5145476, + "latitudeCity": 40.914963, + "longitudeCity": -81.43583, + "nameCity": "Akron/Canton", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 1112, + "codeIataCity": "CAL", + "codeIso2Country": "GB", + "geonameId": 2653915, + "latitudeCity": 55.43639, + "longitudeCity": -5.686667, + "nameCity": "Campbeltown", + "timezone": "Europe/London" + }, + { + "GMT": "-4", + "cityId": 1113, + "codeIataCity": "CAM", + "codeIso2Country": "BO", + "geonameId": 3922414, + "latitudeCity": -20.01111, + "longitudeCity": -63.56111, + "nameCity": "Camiri", + "timezone": "America/La_Paz" + }, + { + "GMT": "8", + "cityId": 1114, + "codeIataCity": "CAN", + "codeIso2Country": "CN", + "geonameId": 1809858, + "latitudeCity": 23.387861, + "longitudeCity": 113.29734, + "nameCity": "Guangzhou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "cityId": 1115, + "codeIataCity": "CAO", + "codeIso2Country": "US", + "geonameId": 5515613, + "latitudeCity": 36.45, + "longitudeCity": -103.183334, + "nameCity": "Clayton", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 1116, + "codeIataCity": "CAP", + "codeIso2Country": "HT", + "geonameId": 0, + "latitudeCity": 19.732779, + "longitudeCity": -72.195, + "nameCity": "Cap Haitien", + "timezone": "America/Port-au-Prince" + }, + { + "GMT": "-5", + "cityId": 1117, + "codeIataCity": "CAQ", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 7.6, + "longitudeCity": -75.25, + "nameCity": "Caucasia", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 1118, + "codeIataCity": "CAR", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 46.86667, + "longitudeCity": -68.01667, + "nameCity": "Caribou", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 1119, + "codeIataCity": "CAS", + "codeIso2Country": "MA", + "geonameId": 2553604, + "latitudeCity": 33.533333, + "longitudeCity": -7.583333, + "nameCity": "Casablanca", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "-5", + "cityId": 1120, + "codeIataCity": "CAT", + "codeIso2Country": "BS", + "geonameId": 0, + "latitudeCity": 24.315, + "longitudeCity": -75.45361, + "nameCity": "Cat Island", + "timezone": "America/Nassau" + }, + { + "GMT": "-3", + "cityId": 1121, + "codeIataCity": "CAU", + "codeIso2Country": "BR", + "geonameId": 3402655, + "latitudeCity": -8.25, + "longitudeCity": -35.916668, + "nameCity": "Caruaru", + "timezone": "America/Recife" + }, + { + "GMT": "1", + "cityId": 1122, + "codeIataCity": "CAV", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -11.9, + "longitudeCity": 22.866667, + "nameCity": "Cazombo", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-3", + "cityId": 1123, + "codeIataCity": "CAW", + "codeIso2Country": "BR", + "geonameId": 3467693, + "latitudeCity": -21.75, + "longitudeCity": -41.3, + "nameCity": "Campos", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "0", + "cityId": 1124, + "codeIataCity": "CAX", + "codeIso2Country": "GB", + "geonameId": 2653775, + "latitudeCity": 54.93667, + "longitudeCity": -2.809444, + "nameCity": "Carlisle", + "timezone": "Europe/London" + }, + { + "GMT": "-3", + "cityId": 1125, + "codeIataCity": "CAY", + "codeIso2Country": "GF", + "geonameId": 3382160, + "latitudeCity": 4.816667, + "longitudeCity": -52.36667, + "nameCity": "Cayenne", + "timezone": "America/Cayenne" + }, + { + "GMT": "10", + "cityId": 1126, + "codeIataCity": "CAZ", + "codeIso2Country": "AU", + "geonameId": 2171216, + "latitudeCity": -31.535, + "longitudeCity": 145.79333, + "nameCity": "Cobar", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-9", + "cityId": 1127, + "codeIataCity": "CBA", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.716667, + "longitudeCity": -135.2, + "nameCity": "Corner Bay", + "timezone": "America/Sitka" + }, + { + "GMT": "-4", + "cityId": 1128, + "codeIataCity": "CBB", + "codeIso2Country": "BO", + "geonameId": 3919968, + "latitudeCity": -17.413954, + "longitudeCity": -66.178894, + "nameCity": "Cochabamba", + "timezone": "America/La_Paz" + }, + { + "GMT": "8", + "cityId": 1129, + "codeIataCity": "CBC", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.916668, + "longitudeCity": 125.55, + "nameCity": "Cherrabun", + "timezone": "Australia/Perth" + }, + { + "GMT": "5.30", + "cityId": 1130, + "codeIataCity": "CBD", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 9.15, + "longitudeCity": 92.816666, + "nameCity": "Car Nicobar", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "cityId": 1131, + "codeIataCity": "CBE", + "codeIso2Country": "US", + "geonameId": 4352681, + "latitudeCity": 39.614445, + "longitudeCity": -78.76611, + "nameCity": "Cumberland", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 1132, + "codeIataCity": "CBF", + "codeIso2Country": "US", + "geonameId": 4852832, + "latitudeCity": 41.266666, + "longitudeCity": -95.86667, + "nameCity": "Council Bluffs", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 1133, + "codeIataCity": "CBG", + "codeIso2Country": "GB", + "geonameId": 2653941, + "latitudeCity": 52.2, + "longitudeCity": 0.183333, + "nameCity": "Cambridge", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 1134, + "codeIataCity": "CBH", + "codeIso2Country": "DZ", + "geonameId": 0, + "latitudeCity": 31.647778, + "longitudeCity": -2.259722, + "nameCity": "B?char", + "timezone": "Africa/Algiers" + }, + { + "GMT": "10", + "cityId": 1135, + "codeIataCity": "CBI", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -40.333332, + "longitudeCity": 148.16667, + "nameCity": "Cape Barren Island", + "timezone": "Australia/Hobart" + }, + { + "GMT": "-4", + "cityId": 1136, + "codeIataCity": "CBJ", + "codeIso2Country": "DO", + "geonameId": 3510888, + "latitudeCity": 17.933332, + "longitudeCity": -71.65, + "nameCity": "Cabo Rojo", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "-6", + "cityId": 1137, + "codeIataCity": "CBK", + "codeIso2Country": "US", + "geonameId": 5445194, + "latitudeCity": 39.4, + "longitudeCity": -101.05, + "nameCity": "Colby", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 1138, + "codeIataCity": "CBL", + "codeIso2Country": "VE", + "geonameId": 3645532, + "latitudeCity": 8.128056, + "longitudeCity": -63.5375, + "nameCity": "Ciudad Bolivar", + "timezone": "America/Caracas" + }, + { + "GMT": "7", + "cityId": 1139, + "codeIataCity": "CBN", + "codeIso2Country": "ID", + "geonameId": 1646170, + "latitudeCity": -6.75, + "longitudeCity": 108.53333, + "nameCity": "Cirebon", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "8", + "cityId": 1140, + "codeIataCity": "CBO", + "codeIso2Country": "PH", + "geonameId": 1716771, + "latitudeCity": 7.161412, + "longitudeCity": 124.21464, + "nameCity": "Cotabato", + "timezone": "Asia/Manila" + }, + { + "GMT": "0", + "cityId": 1141, + "codeIataCity": "CBP", + "codeIso2Country": "PT", + "geonameId": 2740637, + "latitudeCity": 40.2, + "longitudeCity": -8.416667, + "nameCity": "Coimbra", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "1", + "cityId": 1142, + "codeIataCity": "CBQ", + "codeIso2Country": "NG", + "geonameId": 2346229, + "latitudeCity": 4.96889, + "longitudeCity": 8.347415, + "nameCity": "Calabar", + "timezone": "Africa/Lagos" + }, + { + "GMT": "10", + "cityId": 1143, + "codeIataCity": "CBR", + "codeIso2Country": "AU", + "geonameId": 2172517, + "latitudeCity": -35.30735, + "longitudeCity": 149.19052, + "nameCity": "Canberra", + "timezone": "Australia/Canberra" + }, + { + "GMT": "-4", + "cityId": 1144, + "codeIataCity": "CBS", + "codeIso2Country": "VE", + "geonameId": 3647651, + "latitudeCity": 10.383333, + "longitudeCity": -71.416664, + "nameCity": "Cabimas", + "timezone": "America/Caracas" + }, + { + "GMT": "1", + "cityId": 1145, + "codeIataCity": "CBT", + "codeIso2Country": "AO", + "geonameId": 3350246, + "latitudeCity": -12.483333, + "longitudeCity": 13.483333, + "nameCity": "Catumbela", + "timezone": "Africa/Luanda" + }, + { + "GMT": "1", + "cityId": 1146, + "codeIataCity": "CBU", + "codeIso2Country": "DE", + "geonameId": 2939811, + "latitudeCity": 51.760729, + "longitudeCity": 14.327488, + "nameCity": "Cottbus", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "cityId": 1147, + "codeIataCity": "CBV", + "codeIso2Country": "GT", + "geonameId": 3598132, + "latitudeCity": 15.471667, + "longitudeCity": -90.409164, + "nameCity": "Coban", + "timezone": "America/Guatemala" + }, + { + "GMT": "-3", + "cityId": 1148, + "codeIataCity": "CBW", + "codeIso2Country": "BR", + "geonameId": 3457671, + "latitudeCity": -24.001944, + "longitudeCity": -52.356388, + "nameCity": "Campo Mourao", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "cityId": 1149, + "codeIataCity": "CBX", + "codeIso2Country": "AU", + "geonameId": 2143930, + "latitudeCity": -33.86667, + "longitudeCity": 148.25, + "nameCity": "Condobolin", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "cityId": 1150, + "codeIataCity": "CBY", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -19.478611, + "longitudeCity": 140.92612, + "nameCity": "Canobie", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "cityId": 1151, + "codeIataCity": "CBZ", + "codeIso2Country": "US", + "geonameId": 5554428, + "latitudeCity": 55.38333, + "longitudeCity": -132.41667, + "nameCity": "Cabin Creek", + "timezone": "America/Sitka" + }, + { + "GMT": "-6", + "cityId": 1152, + "codeIataCity": "CCA", + "codeIso2Country": "US", + "geonameId": 4111433, + "latitudeCity": 35.316666, + "longitudeCity": -94.3, + "nameCity": "Fort Chaffee", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 1153, + "codeIataCity": "CCB", + "codeIso2Country": "US", + "geonameId": 5404915, + "latitudeCity": 34.09751, + "longitudeCity": -117.648388, + "nameCity": "Upland", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 1154, + "codeIataCity": "CCC", + "codeIso2Country": "CU", + "geonameId": 0, + "latitudeCity": 22.5125, + "longitudeCity": -78.50833, + "nameCity": "Cayo Coco", + "timezone": "America/Havana" + }, + { + "GMT": "1", + "cityId": 1155, + "codeIataCity": "CCF", + "codeIso2Country": "FR", + "geonameId": 3028641, + "latitudeCity": 43.216667, + "longitudeCity": 2.316667, + "nameCity": "Carcassonne", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "cityId": 1156, + "codeIataCity": "CCG", + "codeIso2Country": "US", + "geonameId": 5526337, + "latitudeCity": 31.4, + "longitudeCity": -102.35, + "nameCity": "Crane", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 1157, + "codeIataCity": "CCH", + "codeIso2Country": "CL", + "geonameId": 3874966, + "latitudeCity": -46.55, + "longitudeCity": -71.7, + "nameCity": "Chile Chico", + "timezone": "America/Santiago" + }, + { + "GMT": "-3", + "cityId": 1158, + "codeIataCity": "CCI", + "codeIso2Country": "BR", + "geonameId": 3465721, + "latitudeCity": -27.181389, + "longitudeCity": -52.050556, + "nameCity": "Concordia", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "5.30", + "cityId": 1159, + "codeIataCity": "CCJ", + "codeIso2Country": "IN", + "geonameId": 1265873, + "latitudeCity": 11.14025, + "longitudeCity": 75.950584, + "nameCity": "Kozhikode", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "6.30", + "cityId": 1160, + "codeIataCity": "CCK", + "codeIso2Country": "CC", + "geonameId": 0, + "latitudeCity": -12.166667, + "longitudeCity": 96.916664, + "nameCity": "Cocos Islands", + "timezone": "Indian/Cocos" + }, + { + "GMT": "10", + "cityId": 1161, + "codeIataCity": "CCL", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -26.75, + "longitudeCity": 150.63333, + "nameCity": "Chinchilla", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "cityId": 1162, + "codeIataCity": "CCM", + "codeIso2Country": "BR", + "geonameId": 3465196, + "latitudeCity": -28.7, + "longitudeCity": -49.36667, + "nameCity": "Criciuma", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "4.30", + "cityId": 1163, + "codeIataCity": "CCN", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 34.533333, + "longitudeCity": 65.26667, + "nameCity": "Chakcharan", + "timezone": "Asia/Kabul" + }, + { + "GMT": "-5", + "cityId": 1164, + "codeIataCity": "CCO", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 4.566667, + "longitudeCity": -71.333336, + "nameCity": "Carimagua", + "timezone": "America/Bogota" + }, + { + "GMT": "-4", + "cityId": 1165, + "codeIataCity": "CCP", + "codeIso2Country": "CL", + "geonameId": 3893894, + "latitudeCity": -36.777122, + "longitudeCity": -73.05944, + "nameCity": "Concepcion", + "timezone": "America/Santiago" + }, + { + "GMT": "-3", + "cityId": 1166, + "codeIataCity": "CCQ", + "codeIso2Country": "BR", + "geonameId": 3450554, + "latitudeCity": -12.6, + "longitudeCity": -38.966667, + "nameCity": "Cachoeira", + "timezone": "America/Bahia" + }, + { + "GMT": "-8", + "cityId": 1167, + "codeIataCity": "CCR", + "codeIso2Country": "US", + "geonameId": 5339111, + "latitudeCity": 37.988888, + "longitudeCity": -122.05556, + "nameCity": "Concord", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "cityId": 1168, + "codeIataCity": "CCS", + "codeIso2Country": "VE", + "geonameId": 3646738, + "latitudeCity": 10.596942, + "longitudeCity": -67.00551, + "nameCity": "Caracas", + "timezone": "America/Caracas" + }, + { + "GMT": "-3", + "cityId": 1169, + "codeIataCity": "CCT", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -39.5, + "longitudeCity": -68.916664, + "nameCity": "Colonia Catriel", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "5.30", + "cityId": 1170, + "codeIataCity": "CCU", + "codeIso2Country": "IN", + "geonameId": 1275004, + "latitudeCity": 22.64531, + "longitudeCity": 88.43931, + "nameCity": "Kolkata", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "11", + "cityId": 1171, + "codeIataCity": "CCV", + "codeIso2Country": "VU", + "geonameId": 0, + "latitudeCity": -16.2, + "longitudeCity": 167.5, + "nameCity": "Craig Cove", + "timezone": "Pacific/Efate" + }, + { + "GMT": "9.30", + "cityId": 1172, + "codeIataCity": "CCW", + "codeIso2Country": "AU", + "geonameId": 2058430, + "latitudeCity": -33.63333, + "longitudeCity": 136.83333, + "nameCity": "Cowell", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-4", + "cityId": 1173, + "codeIataCity": "CCX", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -16.066668, + "longitudeCity": -57.7, + "nameCity": "Caceres", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-6", + "cityId": 1174, + "codeIataCity": "CCY", + "codeIso2Country": "US", + "geonameId": 4880889, + "latitudeCity": 43.066666, + "longitudeCity": -92.683334, + "nameCity": "Charles City", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 1175, + "codeIataCity": "CCZ", + "codeIso2Country": "BS", + "geonameId": 0, + "latitudeCity": 25.4175, + "longitudeCity": -77.881386, + "nameCity": "Chub Cay", + "timezone": "America/Nassau" + }, + { + "GMT": "9.30", + "cityId": 1176, + "codeIataCity": "CDA", + "codeIso2Country": "AU", + "geonameId": 8348394, + "latitudeCity": -12.905278, + "longitudeCity": 132.5225, + "nameCity": "Cooinda", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-9", + "cityId": 1177, + "codeIataCity": "CDB", + "codeIso2Country": "US", + "geonameId": 5859682, + "latitudeCity": 55.20457, + "longitudeCity": -162.71774, + "nameCity": "Cold Bay", + "timezone": "America/Nome" + }, + { + "GMT": "-7", + "cityId": 1178, + "codeIataCity": "CDC", + "codeIso2Country": "US", + "geonameId": 5536630, + "latitudeCity": 37.7025, + "longitudeCity": -113.09611, + "nameCity": "Cedar City", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 1179, + "codeIataCity": "CDD", + "codeIso2Country": "HN", + "geonameId": 0, + "latitudeCity": 15.322222, + "longitudeCity": -83.602776, + "nameCity": "Cauquira", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-5", + "cityId": 1180, + "codeIataCity": "CDE", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 8.333333, + "longitudeCity": -77.55, + "nameCity": "Caledonia", + "timezone": "America/Panama" + }, + { + "GMT": "-6", + "cityId": 1181, + "codeIataCity": "CDH", + "codeIso2Country": "US", + "geonameId": 4115181, + "latitudeCity": 33.583332, + "longitudeCity": -92.833336, + "nameCity": "Camden", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 1182, + "codeIataCity": "CDI", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -20.836111, + "longitudeCity": -41.186943, + "nameCity": "Cachoeiro Itapemirim", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-3", + "cityId": 1183, + "codeIataCity": "CDJ", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -8.233333, + "longitudeCity": -49.283333, + "nameCity": "Conceicao Do Araguaia", + "timezone": "America/Belem" + }, + { + "GMT": "-5", + "cityId": 1184, + "codeIataCity": "CDK", + "codeIso2Country": "US", + "geonameId": 4150356, + "latitudeCity": 29.133333, + "longitudeCity": -83.03333, + "nameCity": "Cedar Key", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 1185, + "codeIataCity": "CDL", + "codeIso2Country": "US", + "geonameId": 5858519, + "latitudeCity": 65.90806, + "longitudeCity": -161.93834, + "nameCity": "Candle", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 1186, + "codeIataCity": "CDN", + "codeIso2Country": "US", + "geonameId": 4573209, + "latitudeCity": 34.266666, + "longitudeCity": -80.6, + "nameCity": "Camden", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 1187, + "codeIataCity": "CDO", + "codeIso2Country": "ZA", + "geonameId": 1012600, + "latitudeCity": -32.13333, + "longitudeCity": 25.6, + "nameCity": "Cradock", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "5.30", + "cityId": 1188, + "codeIataCity": "CDP", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 14.516667, + "longitudeCity": 78.78333, + "nameCity": "Cuddapah", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "cityId": 1189, + "codeIataCity": "CDQ", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.3, + "longitudeCity": 142.25, + "nameCity": "Croydon", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-7", + "cityId": 1190, + "codeIataCity": "CDR", + "codeIso2Country": "US", + "geonameId": 5694163, + "latitudeCity": 42.835, + "longitudeCity": -103.09778, + "nameCity": "Chadron", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 1191, + "codeIataCity": "CDS", + "codeIso2Country": "US", + "geonameId": 5518758, + "latitudeCity": 37.416668, + "longitudeCity": -100.21667, + "nameCity": "Childress", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 1192, + "codeIataCity": "CDT", + "codeIso2Country": "ES", + "geonameId": 2509954, + "latitudeCity": 40.2097, + "longitudeCity": 0.06972, + "nameCity": "Castellon de la Plana", + "timezone": "Europe/Madrid" + }, + { + "GMT": "10", + "cityId": 1193, + "codeIataCity": "CDU", + "codeIso2Country": "AU", + "geonameId": 2147714, + "latitudeCity": -15.45, + "longitudeCity": 124.416664, + "nameCity": "Camden", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-9", + "cityId": 1194, + "codeIataCity": "CDV", + "codeIso2Country": "US", + "geonameId": 5859888, + "latitudeCity": 60.538716, + "longitudeCity": -145.700553, + "nameCity": "Cordova", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 1195, + "codeIataCity": "CDW", + "codeIso2Country": "US", + "geonameId": 5096133, + "latitudeCity": 40.833332, + "longitudeCity": -74.26667, + "nameCity": "Caldwell", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 1196, + "codeIataCity": "CDY", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 7.013611, + "longitudeCity": 118.495, + "nameCity": "Cagayan De Sulu", + "timezone": "Asia/Manila" + }, + { + "GMT": "1", + "cityId": 1197, + "codeIataCity": "CDZ", + "codeIso2Country": "ES", + "geonameId": 2520600, + "latitudeCity": 36.533333, + "longitudeCity": -6.3, + "nameCity": "Cadiz", + "timezone": "Europe/Madrid" + }, + { + "GMT": "8", + "cityId": 1198, + "codeIataCity": "CEB", + "codeIso2Country": "PH", + "geonameId": 1717512, + "latitudeCity": 10.313333, + "longitudeCity": 123.98278, + "nameCity": "Cebu", + "timezone": "Asia/Manila" + }, + { + "GMT": "-8", + "cityId": 1199, + "codeIataCity": "CEC", + "codeIso2Country": "US", + "geonameId": 5562087, + "latitudeCity": 41.78, + "longitudeCity": -124.23583, + "nameCity": "Crescent City", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "cityId": 1200, + "codeIataCity": "CED", + "codeIso2Country": "AU", + "geonameId": 2074685, + "latitudeCity": -32.12378, + "longitudeCity": 133.70122, + "nameCity": "Ceduna", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "3", + "cityId": 1201, + "codeIataCity": "CEE", + "codeIso2Country": "RU", + "geonameId": 569223, + "latitudeCity": 59.283333, + "longitudeCity": 38.066666, + "nameCity": "Cherepovets", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-5", + "cityId": 1202, + "codeIataCity": "CEF", + "codeIso2Country": "US", + "geonameId": 4939783, + "latitudeCity": 42.183376, + "longitudeCity": -72.55383, + "nameCity": "Chicopee", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 1203, + "codeIataCity": "CEG", + "codeIso2Country": "GB", + "geonameId": 2653228, + "latitudeCity": 53.166668, + "longitudeCity": -2.916667, + "nameCity": "Chester", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "cityId": 1204, + "codeIataCity": "CEH", + "codeIso2Country": "MW", + "geonameId": 0, + "latitudeCity": -10.55, + "longitudeCity": 33.8, + "nameCity": "Chelinda", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "7", + "cityId": 1205, + "codeIataCity": "CEI", + "codeIso2Country": "TH", + "geonameId": 1153669, + "latitudeCity": 19.954609, + "longitudeCity": 99.878815, + "nameCity": "Chiang Rai", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "5", + "cityId": 1206, + "codeIataCity": "CEK", + "codeIso2Country": "RU", + "geonameId": 1508291, + "latitudeCity": 55.297504, + "longitudeCity": 61.51235, + "nameCity": "Chelyabinsk", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-5", + "cityId": 1207, + "codeIataCity": "CEL", + "codeIso2Country": "BS", + "geonameId": 3571824, + "latitudeCity": 25.28389, + "longitudeCity": -76.33083, + "nameCity": "Cape Eleuthera", + "timezone": "America/Nassau" + }, + { + "GMT": "-9", + "cityId": 1208, + "codeIataCity": "CEM", + "codeIso2Country": "US", + "geonameId": 5858896, + "latitudeCity": 65.57472, + "longitudeCity": -144.78194, + "nameCity": "Central", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "cityId": 1209, + "codeIataCity": "CEN", + "codeIso2Country": "MX", + "geonameId": 4013704, + "latitudeCity": 27.391945, + "longitudeCity": -109.839165, + "nameCity": "Ciudad Obregon", + "timezone": "America/Hermosillo" + }, + { + "GMT": "1", + "cityId": 1210, + "codeIataCity": "CEO", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": 9.308333, + "longitudeCity": 124.73055, + "nameCity": "Waco Kungo", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-4", + "cityId": 1211, + "codeIataCity": "CEP", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -16.233334, + "longitudeCity": -62.083332, + "nameCity": "Concepcion", + "timezone": "America/La_Paz" + }, + { + "GMT": "1", + "cityId": 1212, + "codeIataCity": "CEQ", + "codeIso2Country": "FR", + "geonameId": 2996255, + "latitudeCity": 43.552847, + "longitudeCity": 7.017369, + "nameCity": "Cannes", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "cityId": 1213, + "codeIataCity": "CER", + "codeIso2Country": "FR", + "geonameId": 2972270, + "latitudeCity": 49.65111, + "longitudeCity": -1.465278, + "nameCity": "Cherbourg", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "cityId": 1214, + "codeIataCity": "CES", + "codeIso2Country": "AU", + "geonameId": 2152799, + "latitudeCity": -32.833332, + "longitudeCity": 151.35, + "nameCity": "Cessnock", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "cityId": 1215, + "codeIataCity": "CET", + "codeIso2Country": "FR", + "geonameId": 3025053, + "latitudeCity": 47.066666, + "longitudeCity": -0.866667, + "nameCity": "Cholet", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 1216, + "codeIataCity": "CEU", + "codeIso2Country": "US", + "geonameId": 4574989, + "latitudeCity": 34.683334, + "longitudeCity": -82.833336, + "nameCity": "Clemson", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 1217, + "codeIataCity": "CEV", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.65, + "longitudeCity": -85.13333, + "nameCity": "Connersville", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-6", + "cityId": 1218, + "codeIataCity": "CEW", + "codeIso2Country": "US", + "geonameId": 4152311, + "latitudeCity": 30.766666, + "longitudeCity": -86.566666, + "nameCity": "Crestview", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 1219, + "codeIataCity": "CEX", + "codeIso2Country": "US", + "geonameId": 5859060, + "latitudeCity": 65.05, + "longitudeCity": -146.16667, + "nameCity": "Chena Hot Springs", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 1220, + "codeIataCity": "CEY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 36.61667, + "longitudeCity": -88.316666, + "nameCity": "Murray", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 1221, + "codeIataCity": "CEZ", + "codeIso2Country": "US", + "geonameId": 5418104, + "latitudeCity": 37.302776, + "longitudeCity": -108.62722, + "nameCity": "Cortez", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "cityId": 1222, + "codeIataCity": "CFA", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 58.216667, + "longitudeCity": -157.5, + "nameCity": "Coffee Point", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "cityId": 1223, + "codeIataCity": "CFB", + "codeIso2Country": "BR", + "geonameId": 3468615, + "latitudeCity": -22.925, + "longitudeCity": -42.07861, + "nameCity": "Cabo Frio", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-3", + "cityId": 1224, + "codeIataCity": "CFC", + "codeIso2Country": "BR", + "geonameId": 6317166, + "latitudeCity": -26.790556, + "longitudeCity": -50.941387, + "nameCity": "Cacador", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "cityId": 1225, + "codeIataCity": "CFD", + "codeIso2Country": "US", + "geonameId": 4677008, + "latitudeCity": 30.666668, + "longitudeCity": -96.36667, + "nameCity": "Bryan", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 1226, + "codeIataCity": "CFE", + "codeIso2Country": "FR", + "geonameId": 3024635, + "latitudeCity": 45.78032, + "longitudeCity": 3.163893, + "nameCity": "Clermont-Ferrand", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "cityId": 1227, + "codeIataCity": "CFF", + "codeIso2Country": "AO", + "geonameId": 7768322, + "latitudeCity": -8.766667, + "longitudeCity": 18.0, + "nameCity": "Cafunfo", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-5", + "cityId": 1228, + "codeIataCity": "CFG", + "codeIso2Country": "CU", + "geonameId": 3564124, + "latitudeCity": 22.15, + "longitudeCity": -80.41417, + "nameCity": "Cienfuegos", + "timezone": "America/Havana" + }, + { + "GMT": "9.30", + "cityId": 1229, + "codeIataCity": "CFH", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -27.0, + "longitudeCity": 139.0, + "nameCity": "Clifton Hills", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "9.30", + "cityId": 1230, + "codeIataCity": "CFI", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.033333, + "longitudeCity": 131.28334, + "nameCity": "Camfield", + "timezone": "Australia/Darwin" + }, + { + "GMT": "1", + "cityId": 1231, + "codeIataCity": "CFK", + "codeIso2Country": "DZ", + "geonameId": 2498611, + "latitudeCity": 36.212223, + "longitudeCity": 1.331667, + "nameCity": "Chlef", + "timezone": "Africa/Algiers" + }, + { + "GMT": "0", + "cityId": 1232, + "codeIataCity": "CFN", + "codeIso2Country": "IE", + "geonameId": 2964752, + "latitudeCity": 55.041668, + "longitudeCity": -8.340278, + "nameCity": "Carrickfinn", + "timezone": "Europe/Dublin" + }, + { + "GMT": "-4", + "cityId": 1233, + "codeIataCity": "CFO", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -10.633333, + "longitudeCity": -51.566666, + "nameCity": "Confreza", + "timezone": "America/Cuiaba" + }, + { + "GMT": "10", + "cityId": 1234, + "codeIataCity": "CFP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.783333, + "longitudeCity": 144.35, + "nameCity": "Carpentaria Downs", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-7", + "cityId": 1235, + "codeIataCity": "CFQ", + "codeIso2Country": "CA", + "geonameId": 5932311, + "latitudeCity": 49.036945, + "longitudeCity": -116.49834, + "nameCity": "Creston", + "timezone": "America/Creston" + }, + { + "GMT": "1", + "cityId": 1236, + "codeIataCity": "CFR", + "codeIso2Country": "FR", + "geonameId": 3029241, + "latitudeCity": 49.183437, + "longitudeCity": -0.459276, + "nameCity": "Caen", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "cityId": 1237, + "codeIataCity": "CFS", + "codeIso2Country": "AU", + "geonameId": 2171085, + "latitudeCity": -30.322863, + "longitudeCity": 153.1153, + "nameCity": "Coffs Harbour", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-7", + "cityId": 1238, + "codeIataCity": "CFT", + "codeIso2Country": "US", + "geonameId": 5476799, + "latitudeCity": 33.05, + "longitudeCity": -109.3, + "nameCity": "Clifton", + "timezone": "America/Denver" + }, + { + "GMT": "2", + "cityId": 1239, + "codeIataCity": "CFU", + "codeIso2Country": "GR", + "geonameId": 2463679, + "latitudeCity": 39.60784, + "longitudeCity": 19.914644, + "nameCity": "Kerkyra", + "timezone": "Europe/Athens" + }, + { + "GMT": "-6", + "cityId": 1240, + "codeIataCity": "CFV", + "codeIso2Country": "US", + "geonameId": 4529987, + "latitudeCity": 37.033333, + "longitudeCity": -95.61667, + "nameCity": "Coffeyville", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 1241, + "codeIataCity": "CGA", + "codeIso2Country": "US", + "geonameId": 5845544, + "latitudeCity": 55.478382, + "longitudeCity": -133.14616, + "nameCity": "Craig", + "timezone": "America/Sitka" + }, + { + "GMT": "-4", + "cityId": 1242, + "codeIataCity": "CGB", + "codeIso2Country": "BR", + "geonameId": 3465038, + "latitudeCity": -15.651725, + "longitudeCity": -56.120266, + "nameCity": "Cuiaba", + "timezone": "America/Cuiaba" + }, + { + "GMT": "10", + "cityId": 1243, + "codeIataCity": "CGC", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.459167, + "longitudeCity": 148.51584, + "nameCity": "Cape Gloucester", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 1244, + "codeIataCity": "CGD", + "codeIso2Country": "CN", + "geonameId": 1791121, + "latitudeCity": 28.924467, + "longitudeCity": 111.63886, + "nameCity": "Changde", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 1245, + "codeIataCity": "CGE", + "codeIso2Country": "US", + "geonameId": 4140963, + "latitudeCity": 38.566666, + "longitudeCity": -76.083336, + "nameCity": "Cambridge", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 1246, + "codeIataCity": "CGG", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 16.083332, + "longitudeCity": 122.01667, + "nameCity": "Casiguran", + "timezone": "Asia/Manila" + }, + { + "GMT": "-6", + "cityId": 1247, + "codeIataCity": "CGI", + "codeIso2Country": "US", + "geonameId": 4379966, + "latitudeCity": 37.22361, + "longitudeCity": -89.57167, + "nameCity": "Cape Girardeau", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 1248, + "codeIataCity": "CGJ", + "codeIso2Country": "ZM", + "geonameId": 919009, + "latitudeCity": -12.516667, + "longitudeCity": 27.883333, + "nameCity": "Chingola", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "8", + "cityId": 1249, + "codeIataCity": "CGM", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 18.9, + "longitudeCity": 121.916664, + "nameCity": "Camiguin", + "timezone": "Asia/Manila" + }, + { + "GMT": "1", + "cityId": 1250, + "codeIataCity": "CGN", + "codeIso2Country": "DE", + "geonameId": 2886242, + "latitudeCity": 50.940664, + "longitudeCity": 6.959911, + "nameCity": "Cologne", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "cityId": 1251, + "codeIataCity": "CGO", + "codeIso2Country": "CN", + "geonameId": 1784658, + "latitudeCity": 34.52752, + "longitudeCity": 113.84024, + "nameCity": "Zhengzhou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "6", + "cityId": 1252, + "codeIataCity": "CGP", + "codeIso2Country": "BD", + "geonameId": 1205733, + "latitudeCity": 22.245201, + "longitudeCity": 91.81516, + "nameCity": "Chittagong", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "8", + "cityId": 1253, + "codeIataCity": "CGQ", + "codeIso2Country": "CN", + "geonameId": 2038180, + "latitudeCity": 43.902836, + "longitudeCity": 125.217545, + "nameCity": "Changchun", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-4", + "cityId": 1254, + "codeIataCity": "CGR", + "codeIso2Country": "BR", + "geonameId": 3467747, + "latitudeCity": -20.456991, + "longitudeCity": -54.668873, + "nameCity": "Campo Grande", + "timezone": "America/Campo_Grande" + }, + { + "GMT": "-5", + "cityId": 1255, + "codeIataCity": "CGS", + "codeIso2Country": "US", + "geonameId": 4140963, + "latitudeCity": 33.666668, + "longitudeCity": -84.45, + "nameCity": "College Park", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 1256, + "codeIataCity": "CGT", + "codeIso2Country": "MR", + "geonameId": 0, + "latitudeCity": 20.45, + "longitudeCity": -12.366667, + "nameCity": "Chinguitti", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "-4", + "cityId": 1257, + "codeIataCity": "CGU", + "codeIso2Country": "VE", + "geonameId": 3645528, + "latitudeCity": 8.305, + "longitudeCity": -62.734444, + "nameCity": "Ciudad Guayana", + "timezone": "America/Caracas" + }, + { + "GMT": "8.45", + "cityId": 1258, + "codeIataCity": "CGV", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -32.266666, + "longitudeCity": 125.46667, + "nameCity": "Caiguna", + "timezone": "Australia/Eucla" + }, + { + "GMT": "8", + "cityId": 1259, + "codeIataCity": "CGY", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 8.407744, + "longitudeCity": 124.61157, + "nameCity": "Cagayan De Oro", + "timezone": "Asia/Manila" + }, + { + "GMT": "-7", + "cityId": 1260, + "codeIataCity": "CGZ", + "codeIso2Country": "US", + "geonameId": 5288636, + "latitudeCity": 32.88333, + "longitudeCity": -111.75, + "nameCity": "Casa Grande", + "timezone": "America/Phoenix" + }, + { + "GMT": "-5", + "cityId": 1261, + "codeIataCity": "CHA", + "codeIso2Country": "US", + "geonameId": 4612862, + "latitudeCity": 35.04563, + "longitudeCity": -85.30968, + "nameCity": "Chattanooga", + "timezone": "America/New_York" + }, + { + "GMT": "5", + "cityId": 1262, + "codeIataCity": "CHB", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 35.416668, + "longitudeCity": 74.083336, + "nameCity": "Chilas", + "timezone": "Asia/Karachi" + }, + { + "GMT": "12", + "cityId": 1263, + "codeIataCity": "CHC", + "codeIso2Country": "NZ", + "geonameId": 2192362, + "latitudeCity": -43.488655, + "longitudeCity": 172.5389, + "nameCity": "Christchurch", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "9", + "cityId": 1264, + "codeIataCity": "CHF", + "codeIso2Country": "KR", + "geonameId": 1838524, + "latitudeCity": 35.1375, + "longitudeCity": 128.69778, + "nameCity": "Jinhae", + "timezone": "Asia/Seoul" + }, + { + "GMT": "8", + "cityId": 1265, + "codeIataCity": "CHG", + "codeIso2Country": "CN", + "geonameId": 2038120, + "latitudeCity": 41.545082, + "longitudeCity": 120.4372, + "nameCity": "Chaoyang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 1266, + "codeIataCity": "CHH", + "codeIso2Country": "PE", + "geonameId": 3698540, + "latitudeCity": -6.216667, + "longitudeCity": -77.85, + "nameCity": "Chachapoyas", + "timezone": "America/Lima" + }, + { + "GMT": "-6", + "cityId": 1267, + "codeIataCity": "CHI", + "codeIso2Country": "US", + "geonameId": 4887398, + "latitudeCity": 41.878114, + "longitudeCity": -87.629798, + "nameCity": "Chicago", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 1268, + "codeIataCity": "CHJ", + "codeIso2Country": "ZW", + "geonameId": 0, + "latitudeCity": -20.2, + "longitudeCity": 32.65, + "nameCity": "Chipinge", + "timezone": "Africa/Harare" + }, + { + "GMT": "-6", + "cityId": 1269, + "codeIataCity": "CHK", + "codeIso2Country": "US", + "geonameId": 4544349, + "latitudeCity": 35.05, + "longitudeCity": -97.96667, + "nameCity": "Chickasha", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 1270, + "codeIataCity": "CHL", + "codeIso2Country": "US", + "geonameId": 5597711, + "latitudeCity": 44.5, + "longitudeCity": -114.25, + "nameCity": "Challis", + "timezone": "America/Boise" + }, + { + "GMT": "-5", + "cityId": 1271, + "codeIataCity": "CHM", + "codeIso2Country": "PE", + "geonameId": 0, + "latitudeCity": -9.150556, + "longitudeCity": -78.53111, + "nameCity": "Chimbote", + "timezone": "America/Lima" + }, + { + "GMT": "9", + "cityId": 1272, + "codeIataCity": "CHN", + "codeIso2Country": "KR", + "geonameId": 1845604, + "latitudeCity": 37.016945, + "longitudeCity": 127.933334, + "nameCity": "Jeonju", + "timezone": "Asia/Seoul" + }, + { + "GMT": "-5", + "cityId": 1273, + "codeIataCity": "CHO", + "codeIso2Country": "US", + "geonameId": 4752031, + "latitudeCity": 38.139416, + "longitudeCity": -78.44928, + "nameCity": "Charlottesville", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 1274, + "codeIataCity": "CHP", + "codeIso2Country": "US", + "geonameId": 5859426, + "latitudeCity": 65.46667, + "longitudeCity": -144.58333, + "nameCity": "Circle Hot Springs", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "cityId": 1275, + "codeIataCity": "CHQ", + "codeIso2Country": "GR", + "geonameId": 260114, + "latitudeCity": 35.5402, + "longitudeCity": 24.140373, + "nameCity": "Chania", + "timezone": "Europe/Athens" + }, + { + "GMT": "1", + "cityId": 1276, + "codeIataCity": "CHR", + "codeIso2Country": "FR", + "geonameId": 3026204, + "latitudeCity": 46.816666, + "longitudeCity": 1.7, + "nameCity": "Chateauroux", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 1277, + "codeIataCity": "CHS", + "codeIso2Country": "US", + "geonameId": 4574324, + "latitudeCity": 32.884354, + "longitudeCity": -80.037155, + "nameCity": "Charleston", + "timezone": "America/New_York" + }, + { + "GMT": "12.45", + "cityId": 1278, + "codeIataCity": "CHT", + "codeIso2Country": "NZ", + "geonameId": 0, + "latitudeCity": -43.8, + "longitudeCity": -176.35, + "nameCity": "Chatham Island", + "timezone": "Pacific/Chatham" + }, + { + "GMT": "-9", + "cityId": 1279, + "codeIataCity": "CHU", + "codeIso2Country": "US", + "geonameId": 5859357, + "latitudeCity": 61.583435, + "longitudeCity": -159.23882, + "nameCity": "Chuathbaluk", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "cityId": 1280, + "codeIataCity": "CHV", + "codeIso2Country": "PT", + "geonameId": 2740761, + "latitudeCity": 41.733334, + "longitudeCity": -7.466667, + "nameCity": "Chaves", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "8", + "cityId": 1281, + "codeIataCity": "CHW", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 39.85, + "longitudeCity": 98.416664, + "nameCity": "Jiuquan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 1282, + "codeIataCity": "CHX", + "codeIso2Country": "PA", + "geonameId": 3712560, + "latitudeCity": 9.45, + "longitudeCity": -82.45, + "nameCity": "Changuinola", + "timezone": "America/Panama" + }, + { + "GMT": "11", + "cityId": 1283, + "codeIataCity": "CHY", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -6.713787, + "longitudeCity": 156.39856, + "nameCity": "Choiseul Bay", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-8", + "cityId": 1284, + "codeIataCity": "CHZ", + "codeIso2Country": "US", + "geonameId": 5719022, + "latitudeCity": 42.583332, + "longitudeCity": -121.86667, + "nameCity": "Chiloquin", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-8", + "cityId": 1285, + "codeIataCity": "CIC", + "codeIso2Country": "US", + "geonameId": 5336269, + "latitudeCity": 39.795834, + "longitudeCity": -121.85667, + "nameCity": "Chico", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 1286, + "codeIataCity": "CID", + "codeIso2Country": "US", + "geonameId": 4850751, + "latitudeCity": 41.889423, + "longitudeCity": -91.7003, + "nameCity": "Cedar Rapids", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 1287, + "codeIataCity": "CIE", + "codeIso2Country": "AU", + "geonameId": 2063293, + "latitudeCity": -33.36667, + "longitudeCity": 116.13333, + "nameCity": "Collie", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "cityId": 1288, + "codeIataCity": "CIF", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 42.237392, + "longitudeCity": 118.91089, + "nameCity": "Chifeng", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-7", + "cityId": 1289, + "codeIataCity": "CIG", + "codeIso2Country": "US", + "geonameId": 5576064, + "latitudeCity": 40.495556, + "longitudeCity": -107.525, + "nameCity": "Craig", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "cityId": 1290, + "codeIataCity": "CIH", + "codeIso2Country": "CN", + "geonameId": 1808956, + "latitudeCity": 36.24588, + "longitudeCity": 113.12158, + "nameCity": "Changzhi", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "cityId": 1291, + "codeIataCity": "CII", + "codeIso2Country": "TR", + "geonameId": 322830, + "latitudeCity": 47.90278, + "longitudeCity": -112.312225, + "nameCity": "Aydin", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-4", + "cityId": 1292, + "codeIataCity": "CIJ", + "codeIso2Country": "BO", + "geonameId": 3919998, + "latitudeCity": -11.026389, + "longitudeCity": -68.75278, + "nameCity": "Cobija", + "timezone": "America/La_Paz" + }, + { + "GMT": "-9", + "cityId": 1293, + "codeIataCity": "CIK", + "codeIso2Country": "US", + "geonameId": 5858949, + "latitudeCity": 66.648056, + "longitudeCity": -143.72917, + "nameCity": "Chalkyitsik", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 1294, + "codeIataCity": "CIL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 64.90833, + "longitudeCity": -163.73334, + "nameCity": "Council", + "timezone": "America/Nome" + }, + { + "GMT": "-5", + "cityId": 1295, + "codeIataCity": "CIM", + "codeIso2Country": "CO", + "geonameId": 3669808, + "latitudeCity": 6.483333, + "longitudeCity": -74.11667, + "nameCity": "Cimitarra", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 1296, + "codeIataCity": "CIN", + "codeIso2Country": "US", + "geonameId": 4850478, + "latitudeCity": 42.066666, + "longitudeCity": -94.86667, + "nameCity": "Carroll", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 1297, + "codeIataCity": "CIO", + "codeIso2Country": "PY", + "geonameId": 0, + "latitudeCity": -23.434444, + "longitudeCity": -57.41833, + "nameCity": "Concepcion", + "timezone": "America/Asuncion" + }, + { + "GMT": "2", + "cityId": 1298, + "codeIataCity": "CIP", + "codeIso2Country": "ZM", + "geonameId": 918702, + "latitudeCity": -13.556944, + "longitudeCity": 32.587223, + "nameCity": "Chipata", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-6", + "cityId": 1299, + "codeIataCity": "CIQ", + "codeIso2Country": "GT", + "geonameId": 3598132, + "latitudeCity": 14.85, + "longitudeCity": -89.61667, + "nameCity": "Chiquimula", + "timezone": "America/Guatemala" + }, + { + "GMT": "-6", + "cityId": 1300, + "codeIataCity": "CIR", + "codeIso2Country": "US", + "geonameId": 4243899, + "latitudeCity": 37.0, + "longitudeCity": -89.183334, + "nameCity": "Cairo", + "timezone": "America/Chicago" + }, + { + "GMT": "13", + "cityId": 1301, + "codeIataCity": "CIS", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": -2.833333, + "longitudeCity": -171.66667, + "nameCity": "Canton Island", + "timezone": "Pacific/Enderbury" + }, + { + "GMT": "6", + "cityId": 1302, + "codeIataCity": "CIT", + "codeIso2Country": "KZ", + "geonameId": 1518980, + "latitudeCity": 42.3, + "longitudeCity": 69.6, + "nameCity": "Shimkent", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-9", + "cityId": 1303, + "codeIataCity": "CIV", + "codeIso2Country": "US", + "geonameId": 5554428, + "latitudeCity": 55.216667, + "longitudeCity": -132.21666, + "nameCity": "Chomley", + "timezone": "America/Sitka" + }, + { + "GMT": "-4", + "cityId": 1304, + "codeIataCity": "CIW", + "codeIso2Country": "VC", + "geonameId": 3577937, + "latitudeCity": 12.7, + "longitudeCity": -61.316666, + "nameCity": "Canouan Island", + "timezone": "America/St_Vincent" + }, + { + "GMT": "-5", + "cityId": 1305, + "codeIataCity": "CIX", + "codeIso2Country": "PE", + "geonameId": 3698350, + "latitudeCity": -6.789722, + "longitudeCity": -79.83222, + "nameCity": "Chiclayo", + "timezone": "America/Lima" + }, + { + "GMT": "1", + "cityId": 1306, + "codeIataCity": "CIY", + "codeIso2Country": "IT", + "geonameId": 2524955, + "latitudeCity": 36.99167, + "longitudeCity": 14.606944, + "nameCity": "Comiso", + "timezone": "Europe/Rome" + }, + { + "GMT": "-4", + "cityId": 1307, + "codeIataCity": "CIZ", + "codeIso2Country": "BR", + "geonameId": 3664539, + "latitudeCity": -4.083333, + "longitudeCity": -63.13333, + "nameCity": "Coari", + "timezone": "America/Manaus" + }, + { + "GMT": "-5", + "cityId": 1308, + "codeIataCity": "CJA", + "codeIso2Country": "PE", + "geonameId": 3699088, + "latitudeCity": -7.133333, + "longitudeCity": -78.5, + "nameCity": "Cajamarca", + "timezone": "America/Lima" + }, + { + "GMT": "5.30", + "cityId": 1309, + "codeIataCity": "CJB", + "codeIso2Country": "IN", + "geonameId": 1273865, + "latitudeCity": 11.031026, + "longitudeCity": 77.03893, + "nameCity": "Coimbatore", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-4", + "cityId": 1310, + "codeIataCity": "CJC", + "codeIso2Country": "CL", + "geonameId": 3897347, + "latitudeCity": -22.495085, + "longitudeCity": -68.90843, + "nameCity": "Calama", + "timezone": "America/Santiago" + }, + { + "GMT": "-5", + "cityId": 1311, + "codeIataCity": "CJD", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 1.333333, + "longitudeCity": -74.26667, + "nameCity": "Candilejas", + "timezone": "America/Bogota" + }, + { + "GMT": "-8", + "cityId": 1312, + "codeIataCity": "CJH", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 51.333332, + "longitudeCity": -124.083336, + "nameCity": "Chilko Lake", + "timezone": "America/Vancouver" + }, + { + "GMT": "9", + "cityId": 1313, + "codeIataCity": "CJJ", + "codeIso2Country": "KR", + "geonameId": 1845604, + "latitudeCity": 36.7224, + "longitudeCity": 127.49509, + "nameCity": "Cheongju", + "timezone": "Asia/Seoul" + }, + { + "GMT": "5", + "cityId": 1314, + "codeIataCity": "CJL", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 35.886112, + "longitudeCity": 71.79444, + "nameCity": "Chitral", + "timezone": "Asia/Karachi" + }, + { + "GMT": "7", + "cityId": 1315, + "codeIataCity": "CJM", + "codeIso2Country": "TH", + "geonameId": 1151523, + "latitudeCity": 10.709722, + "longitudeCity": 99.36389, + "nameCity": "Chumphon", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-8", + "cityId": 1316, + "codeIataCity": "CJN", + "codeIso2Country": "US", + "geonameId": 5345529, + "latitudeCity": 32.8, + "longitudeCity": -116.96667, + "nameCity": "El Cajon", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-7", + "cityId": 1317, + "codeIataCity": "CJS", + "codeIso2Country": "MX", + "geonameId": 4013708, + "latitudeCity": 31.63593, + "longitudeCity": -106.4361, + "nameCity": "Ciudad Juarez", + "timezone": "America/Ojinaga" + }, + { + "GMT": "-6", + "cityId": 1318, + "codeIataCity": "CJT", + "codeIso2Country": "MX", + "geonameId": 3519537, + "latitudeCity": 16.166668, + "longitudeCity": -92.05, + "nameCity": "Comitan", + "timezone": "America/Mexico_City" + }, + { + "GMT": "9", + "cityId": 1319, + "codeIataCity": "CJU", + "codeIso2Country": "KR", + "geonameId": 1846266, + "latitudeCity": 33.499621, + "longitudeCity": 126.531188, + "nameCity": "Jeju", + "timezone": "Asia/Seoul" + }, + { + "GMT": "-6", + "cityId": 1320, + "codeIataCity": "CKA", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 36.75, + "longitudeCity": -98.35, + "nameCity": "Cherokee", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 1321, + "codeIataCity": "CKB", + "codeIso2Country": "US", + "geonameId": 4802316, + "latitudeCity": 39.295555, + "longitudeCity": -80.22945, + "nameCity": "Clarksburg", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 1322, + "codeIataCity": "CKC", + "codeIso2Country": "UA", + "geonameId": 710791, + "latitudeCity": 49.416668, + "longitudeCity": 32.0, + "nameCity": "Cherkassy", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-9", + "cityId": 1323, + "codeIataCity": "CKD", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 61.870834, + "longitudeCity": -158.10083, + "nameCity": "Crooked Creek", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "cityId": 1324, + "codeIataCity": "CKE", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.934723, + "longitudeCity": -122.62222, + "nameCity": "Clear Lake", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "cityId": 1325, + "codeIataCity": "CKG", + "codeIso2Country": "CN", + "geonameId": 1814906, + "latitudeCity": 29.72034, + "longitudeCity": 106.63408, + "nameCity": "Chongqing", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "11", + "cityId": 1326, + "codeIataCity": "CKH", + "codeIso2Country": "RU", + "geonameId": 2126123, + "latitudeCity": 70.63333, + "longitudeCity": 147.88333, + "nameCity": "Chokurdah", + "timezone": "Asia/Magadan" + }, + { + "GMT": "9.30", + "cityId": 1327, + "codeIataCity": "CKI", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -11.2, + "longitudeCity": 132.53334, + "nameCity": "Croker Island", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-6", + "cityId": 1328, + "codeIataCity": "CKK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 36.5, + "longitudeCity": -91.86667, + "nameCity": "Cherokee", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 1329, + "codeIataCity": "CKL", + "codeIso2Country": "RU", + "geonameId": 524901, + "latitudeCity": 55.86667, + "longitudeCity": 38.051945, + "nameCity": "Chkalovsky", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "cityId": 1330, + "codeIataCity": "CKM", + "codeIso2Country": "US", + "geonameId": 4421935, + "latitudeCity": 34.2, + "longitudeCity": -90.583336, + "nameCity": "Clarksdale", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 1331, + "codeIataCity": "CKN", + "codeIso2Country": "US", + "geonameId": 5059429, + "latitudeCity": 47.783333, + "longitudeCity": -96.61667, + "nameCity": "Crookston", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 1332, + "codeIataCity": "CKO", + "codeIso2Country": "BR", + "geonameId": 3458449, + "latitudeCity": -23.116667, + "longitudeCity": -50.666668, + "nameCity": "Cornelio Procopio", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "cityId": 1333, + "codeIataCity": "CKR", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 48.6, + "longitudeCity": -123.0, + "nameCity": "Crane Island", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "cityId": 1334, + "codeIataCity": "CKS", + "codeIso2Country": "BR", + "geonameId": 6317872, + "latitudeCity": -6.114749, + "longitudeCity": -50.001945, + "nameCity": "Carajas", + "timezone": "America/Belem" + }, + { + "GMT": "3.30", + "cityId": 1335, + "codeIataCity": "CKT", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 36.488056, + "longitudeCity": 61.07, + "nameCity": "Sarakhs", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-6", + "cityId": 1336, + "codeIataCity": "CKV", + "codeIso2Country": "US", + "geonameId": 4644585, + "latitudeCity": 36.620834, + "longitudeCity": -87.414444, + "nameCity": "Clarksville", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 1337, + "codeIataCity": "CKW", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": 52.430557, + "longitudeCity": -108.74722, + "nameCity": "Christmas Creek Mine", + "timezone": "Australia/Perth" + }, + { + "GMT": "-9", + "cityId": 1338, + "codeIataCity": "CKX", + "codeIso2Country": "US", + "geonameId": 5859162, + "latitudeCity": 64.06778, + "longitudeCity": -141.94917, + "nameCity": "Chicken", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "cityId": 1339, + "codeIataCity": "CKY", + "codeIso2Country": "GN", + "geonameId": 2422465, + "latitudeCity": 9.575655, + "longitudeCity": -13.62017, + "nameCity": "Conakry", + "timezone": "Africa/Conakry" + }, + { + "GMT": "3", + "cityId": 1340, + "codeIataCity": "CKZ", + "codeIso2Country": "TR", + "geonameId": 749780, + "latitudeCity": 40.13333, + "longitudeCity": 26.4, + "nameCity": "Canakkale", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "6", + "cityId": 1341, + "codeIataCity": "CLA", + "codeIso2Country": "BD", + "geonameId": 1185186, + "latitudeCity": 23.4375, + "longitudeCity": 91.19222, + "nameCity": "Comilla", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "-6", + "cityId": 1342, + "codeIataCity": "CLC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 29.556944, + "longitudeCity": -95.1375, + "nameCity": "Clearlake", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 1343, + "codeIataCity": "CLE", + "codeIso2Country": "US", + "geonameId": 5150529, + "latitudeCity": 41.499495, + "longitudeCity": -81.695409, + "nameCity": "Cleveland", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "cityId": 1344, + "codeIataCity": "CLG", + "codeIso2Country": "US", + "geonameId": 5338196, + "latitudeCity": 36.15, + "longitudeCity": -120.35, + "nameCity": "Coalinga", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 1345, + "codeIataCity": "CLH", + "codeIso2Country": "AU", + "geonameId": 2156404, + "latitudeCity": -31.833332, + "longitudeCity": 149.7, + "nameCity": "Coolah", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "cityId": 1346, + "codeIataCity": "CLI", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.566666, + "longitudeCity": -88.86667, + "nameCity": "Clintonville", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 1347, + "codeIataCity": "CLJ", + "codeIso2Country": "RO", + "geonameId": 681290, + "latitudeCity": 46.782063, + "longitudeCity": 23.687014, + "nameCity": "Cluj-Napoca", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "-6", + "cityId": 1348, + "codeIataCity": "CLL", + "codeIso2Country": "US", + "geonameId": 4682464, + "latitudeCity": 30.593842, + "longitudeCity": -96.36682, + "nameCity": "College Station", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 1349, + "codeIataCity": "CLM", + "codeIso2Country": "US", + "geonameId": 5807212, + "latitudeCity": 48.121883, + "longitudeCity": -123.49511, + "nameCity": "Port Angeles", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "cityId": 1350, + "codeIataCity": "CLN", + "codeIso2Country": "BR", + "geonameId": 3407357, + "latitudeCity": -7.333333, + "longitudeCity": -47.45, + "nameCity": "Carolina", + "timezone": "America/Araguaina" + }, + { + "GMT": "-5", + "cityId": 1351, + "codeIataCity": "CLO", + "codeIso2Country": "CO", + "geonameId": 3687925, + "latitudeCity": 3.543056, + "longitudeCity": -76.381386, + "nameCity": "Cali", + "timezone": "America/Bogota" + }, + { + "GMT": "-9", + "cityId": 1352, + "codeIataCity": "CLP", + "codeIso2Country": "US", + "geonameId": 5859460, + "latitudeCity": 58.843056, + "longitudeCity": -158.54306, + "nameCity": "Clarks Point", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 1353, + "codeIataCity": "CLQ", + "codeIso2Country": "MX", + "geonameId": 4013516, + "latitudeCity": 19.3, + "longitudeCity": -103.65, + "nameCity": "Colima", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-8", + "cityId": 1354, + "codeIataCity": "CLR", + "codeIso2Country": "US", + "geonameId": 5332929, + "latitudeCity": 33.13333, + "longitudeCity": -115.51667, + "nameCity": "Calipatria", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-8", + "cityId": 1355, + "codeIataCity": "CLS", + "codeIso2Country": "US", + "geonameId": 5789817, + "latitudeCity": 46.67389, + "longitudeCity": -122.98111, + "nameCity": "Chehalis", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 1356, + "codeIataCity": "CLT", + "codeIso2Country": "US", + "geonameId": 4460243, + "latitudeCity": 35.227087, + "longitudeCity": -80.843127, + "nameCity": "Charlotte", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 1357, + "codeIataCity": "CLU", + "codeIso2Country": "US", + "geonameId": 4256038, + "latitudeCity": 39.216667, + "longitudeCity": -85.916664, + "nameCity": "Columbus", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-3", + "cityId": 1358, + "codeIataCity": "CLV", + "codeIso2Country": "BR", + "geonameId": 3468100, + "latitudeCity": -17.75, + "longitudeCity": -48.63333, + "nameCity": "Caldas Novas", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "cityId": 1359, + "codeIataCity": "CLW", + "codeIso2Country": "US", + "geonameId": 4151316, + "latitudeCity": 27.976667, + "longitudeCity": -82.75861, + "nameCity": "Clearwater", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 1360, + "codeIataCity": "CLX", + "codeIso2Country": "AR", + "geonameId": 3435364, + "latitudeCity": -25.333332, + "longitudeCity": -57.666668, + "nameCity": "Clorinda", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "1", + "cityId": 1361, + "codeIataCity": "CLY", + "codeIso2Country": "FR", + "geonameId": 3029090, + "latitudeCity": 42.52778, + "longitudeCity": 8.791667, + "nameCity": "Calvi", + "timezone": "Europe/Paris" + }, + { + "GMT": "-4", + "cityId": 1362, + "codeIataCity": "CLZ", + "codeIso2Country": "VE", + "geonameId": 3647444, + "latitudeCity": 8.933333, + "longitudeCity": -67.433334, + "nameCity": "Calabozo", + "timezone": "America/Caracas" + }, + { + "GMT": "10", + "cityId": 1363, + "codeIataCity": "CMA", + "codeIso2Country": "AU", + "geonameId": 2169728, + "latitudeCity": -28.03139, + "longitudeCity": 145.6161, + "nameCity": "Cunnamulla", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5.30", + "cityId": 1364, + "codeIataCity": "CMB", + "codeIso2Country": "LK", + "geonameId": 1248991, + "latitudeCity": 6.927468, + "longitudeCity": 79.848358, + "nameCity": "Colombo", + "timezone": "Asia/Colombo" + }, + { + "GMT": "-3", + "cityId": 1365, + "codeIataCity": "CMC", + "codeIso2Country": "BR", + "geonameId": 3403687, + "latitudeCity": -2.916667, + "longitudeCity": -40.833332, + "nameCity": "Camocim", + "timezone": "America/Fortaleza" + }, + { + "GMT": "10", + "cityId": 1366, + "codeIataCity": "CMD", + "codeIso2Country": "AU", + "geonameId": 2170430, + "latitudeCity": -34.628334, + "longitudeCity": 148.04333, + "nameCity": "Cootamundra", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "cityId": 1367, + "codeIataCity": "CME", + "codeIso2Country": "MX", + "geonameId": 3530599, + "latitudeCity": 18.65103, + "longitudeCity": -91.802734, + "nameCity": "Ciudad Del Carmen", + "timezone": "America/Merida" + }, + { + "GMT": "1", + "cityId": 1368, + "codeIataCity": "CMF", + "codeIso2Country": "FR", + "geonameId": 3027422, + "latitudeCity": 45.637993, + "longitudeCity": 5.88437, + "nameCity": "Chambery", + "timezone": "Europe/Paris" + }, + { + "GMT": "-4", + "cityId": 1369, + "codeIataCity": "CMG", + "codeIso2Country": "BR", + "geonameId": 3465342, + "latitudeCity": -19.01111, + "longitudeCity": -57.672222, + "nameCity": "Corumba", + "timezone": "America/Campo_Grande" + }, + { + "GMT": "-5", + "cityId": 1370, + "codeIataCity": "CMH", + "codeIso2Country": "US", + "geonameId": 4509177, + "latitudeCity": 39.961176, + "longitudeCity": -82.998794, + "nameCity": "Columbus", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 1371, + "codeIataCity": "CMI", + "codeIso2Country": "US", + "geonameId": 4887158, + "latitudeCity": 40.039665, + "longitudeCity": -88.26905, + "nameCity": "Champaign", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 1372, + "codeIataCity": "CMJ", + "codeIso2Country": "TW", + "geonameId": 1668355, + "latitudeCity": 23.25, + "longitudeCity": 119.416664, + "nameCity": "Chi Mei", + "timezone": "Asia/Taipei" + }, + { + "GMT": "2", + "cityId": 1373, + "codeIataCity": "CMK", + "codeIso2Country": "MW", + "geonameId": 0, + "latitudeCity": -14.3, + "longitudeCity": 35.05, + "nameCity": "Club Makokola", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "10", + "cityId": 1374, + "codeIataCity": "CML", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -19.933332, + "longitudeCity": 138.11667, + "nameCity": "Camooweal", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "cityId": 1375, + "codeIataCity": "CMM", + "codeIso2Country": "GT", + "geonameId": 3595725, + "latitudeCity": 17.458332, + "longitudeCity": -90.05333, + "nameCity": "Carmelita", + "timezone": "America/Guatemala" + }, + { + "GMT": "3", + "cityId": 1376, + "codeIataCity": "CMO", + "codeIso2Country": "SO", + "geonameId": 0, + "latitudeCity": 5.366667, + "longitudeCity": 48.516666, + "nameCity": "Obbia", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-3", + "cityId": 1377, + "codeIataCity": "CMP", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -9.8, + "longitudeCity": -36.35, + "nameCity": "Santana Do Araguaia", + "timezone": "America/Belem" + }, + { + "GMT": "10", + "cityId": 1378, + "codeIataCity": "CMQ", + "codeIso2Country": "AU", + "geonameId": 2171365, + "latitudeCity": -22.866667, + "longitudeCity": 147.5, + "nameCity": "Clermont", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 1379, + "codeIataCity": "CMR", + "codeIso2Country": "FR", + "geonameId": 3024297, + "latitudeCity": 48.083332, + "longitudeCity": 7.366667, + "nameCity": "Colmar", + "timezone": "Europe/Paris" + }, + { + "GMT": "3", + "cityId": 1380, + "codeIataCity": "CMS", + "codeIso2Country": "SO", + "geonameId": 0, + "latitudeCity": 10.3, + "longitudeCity": 50.233334, + "nameCity": "Scusciuban", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-3", + "cityId": 1381, + "codeIataCity": "CMT", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -2.2, + "longitudeCity": -49.5, + "nameCity": "Cameta", + "timezone": "America/Belem" + }, + { + "GMT": "10", + "cityId": 1382, + "codeIataCity": "CMU", + "codeIso2Country": "PG", + "geonameId": 2093059, + "latitudeCity": -5.993889, + "longitudeCity": 144.97444, + "nameCity": "Kundiawa", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "12", + "cityId": 1383, + "codeIataCity": "CMV", + "codeIso2Country": "NZ", + "geonameId": 2193733, + "latitudeCity": -37.0, + "longitudeCity": 175.66667, + "nameCity": "Coromandel", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-5", + "cityId": 1384, + "codeIataCity": "CMW", + "codeIso2Country": "CU", + "geonameId": 3566067, + "latitudeCity": 21.418612, + "longitudeCity": -77.849724, + "nameCity": "Camaguey", + "timezone": "America/Havana" + }, + { + "GMT": "-5", + "cityId": 1385, + "codeIataCity": "CMX", + "codeIso2Country": "US", + "geonameId": 4995201, + "latitudeCity": 47.167778, + "longitudeCity": -88.48639, + "nameCity": "Hancock", + "timezone": "America/Detroit" + }, + { + "GMT": "-6", + "cityId": 1386, + "codeIataCity": "CMY", + "codeIso2Country": "US", + "geonameId": 5273927, + "latitudeCity": 44.03347, + "longitudeCity": -90.77897, + "nameCity": "Sparta", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 1387, + "codeIataCity": "CMZ", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": -17.85, + "longitudeCity": 35.4, + "nameCity": "Caia", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-7", + "cityId": 1388, + "codeIataCity": "CNA", + "codeIso2Country": "MX", + "geonameId": 4015700, + "latitudeCity": 31.0, + "longitudeCity": -110.333336, + "nameCity": "Cananea", + "timezone": "America/Hermosillo" + }, + { + "GMT": "10", + "cityId": 1389, + "codeIataCity": "CNB", + "codeIso2Country": "AU", + "geonameId": 2165596, + "latitudeCity": -30.980833, + "longitudeCity": 148.37833, + "nameCity": "Coonamble", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "cityId": 1390, + "codeIataCity": "CNC", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -10.050179, + "longitudeCity": 143.06659, + "nameCity": "Coconut Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "cityId": 1391, + "codeIataCity": "CND", + "codeIso2Country": "RO", + "geonameId": 680963, + "latitudeCity": 44.35, + "longitudeCity": 28.483334, + "nameCity": "Constanta", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "-7", + "cityId": 1392, + "codeIataCity": "CNE", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.45, + "longitudeCity": -105.23333, + "nameCity": "Canon City", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 1393, + "codeIataCity": "CNG", + "codeIso2Country": "FR", + "geonameId": 3026310, + "latitudeCity": 45.683334, + "longitudeCity": -0.333333, + "nameCity": "Cognac", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 1394, + "codeIataCity": "CNH", + "codeIso2Country": "US", + "geonameId": 5084633, + "latitudeCity": 43.38333, + "longitudeCity": -72.333336, + "nameCity": "Claremont", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 1395, + "codeIataCity": "CNI", + "codeIso2Country": "CN", + "geonameId": 1814087, + "latitudeCity": 31.25, + "longitudeCity": 121.433334, + "nameCity": "Changhai", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "cityId": 1396, + "codeIataCity": "CNJ", + "codeIso2Country": "AU", + "geonameId": 2171306, + "latitudeCity": -20.668905, + "longitudeCity": 140.50851, + "nameCity": "Cloncurry", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "cityId": 1397, + "codeIataCity": "CNK", + "codeIso2Country": "US", + "geonameId": 4269872, + "latitudeCity": 39.566666, + "longitudeCity": -97.666664, + "nameCity": "Concordia", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 1398, + "codeIataCity": "CNL", + "codeIso2Country": "DK", + "geonameId": 2621927, + "latitudeCity": 57.483334, + "longitudeCity": 10.216667, + "nameCity": "Sindal", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-7", + "cityId": 1399, + "codeIataCity": "CNM", + "codeIso2Country": "US", + "geonameId": 5460459, + "latitudeCity": 32.337223, + "longitudeCity": -104.26278, + "nameCity": "Carlsbad", + "timezone": "America/Denver" + }, + { + "GMT": "-8", + "cityId": 1400, + "codeIataCity": "CNO", + "codeIso2Country": "US", + "geonameId": 5336537, + "latitudeCity": 33.98083, + "longitudeCity": -117.63917, + "nameCity": "Chino", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-1", + "cityId": 1401, + "codeIataCity": "CNP", + "codeIso2Country": "GL", + "geonameId": 0, + "latitudeCity": 70.74306, + "longitudeCity": -22.658333, + "nameCity": "Neerlerit Inaat", + "timezone": "America/Scoresbysund" + }, + { + "GMT": "-3", + "cityId": 1402, + "codeIataCity": "CNQ", + "codeIso2Country": "AR", + "geonameId": 3435217, + "latitudeCity": -27.449722, + "longitudeCity": -58.762222, + "nameCity": "Corrientes", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-4", + "cityId": 1403, + "codeIataCity": "CNR", + "codeIso2Country": "CL", + "geonameId": 3897322, + "latitudeCity": -26.329166, + "longitudeCity": -70.604164, + "nameCity": "Chanaral", + "timezone": "America/Santiago" + }, + { + "GMT": "10", + "cityId": 1404, + "codeIataCity": "CNS", + "codeIso2Country": "AU", + "geonameId": 2172797, + "latitudeCity": -16.876537, + "longitudeCity": 145.75404, + "nameCity": "Cairns", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "cityId": 1405, + "codeIataCity": "CNT", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -27.216667, + "longitudeCity": -61.233334, + "nameCity": "Charata", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-6", + "cityId": 1406, + "codeIataCity": "CNU", + "codeIso2Country": "US", + "geonameId": 4271690, + "latitudeCity": 37.683334, + "longitudeCity": -95.45, + "nameCity": "Chanute", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 1407, + "codeIataCity": "CNV", + "codeIso2Country": "BR", + "geonameId": 3452640, + "latitudeCity": -15.666667, + "longitudeCity": -38.983334, + "nameCity": "Canavieiras", + "timezone": "America/Bahia" + }, + { + "GMT": "7", + "cityId": 1408, + "codeIataCity": "CNX", + "codeIso2Country": "TH", + "geonameId": 1153671, + "latitudeCity": 18.769573, + "longitudeCity": 98.96841, + "nameCity": "Chiang Mai", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-7", + "cityId": 1409, + "codeIataCity": "CNY", + "codeIso2Country": "US", + "geonameId": 5543307, + "latitudeCity": 38.759445, + "longitudeCity": -109.74611, + "nameCity": "Moab", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 1410, + "codeIataCity": "CNZ", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -11.5, + "longitudeCity": 19.0, + "nameCity": "Cangamba", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-8", + "cityId": 1411, + "codeIataCity": "COA", + "codeIso2Country": "US", + "geonameId": 5338800, + "latitudeCity": 38.02889, + "longitudeCity": -120.41278, + "nameCity": "Columbia", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "cityId": 1412, + "codeIataCity": "COB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -15.55, + "longitudeCity": 130.93333, + "nameCity": "Coolibah", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-3", + "cityId": 1413, + "codeIataCity": "COC", + "codeIso2Country": "AR", + "geonameId": 3435261, + "latitudeCity": -31.297222, + "longitudeCity": -57.996387, + "nameCity": "Concordia", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-7", + "cityId": 1414, + "codeIataCity": "COD", + "codeIso2Country": "US", + "geonameId": 5821593, + "latitudeCity": 44.515835, + "longitudeCity": -109.0275, + "nameCity": "Cody", + "timezone": "America/Denver" + }, + { + "GMT": "-8", + "cityId": 1415, + "codeIataCity": "COE", + "codeIso2Country": "US", + "geonameId": 5553955, + "latitudeCity": 47.683334, + "longitudeCity": -116.76667, + "nameCity": "Coeur D'Alene", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 1416, + "codeIataCity": "COG", + "codeIso2Country": "CO", + "geonameId": 3673690, + "latitudeCity": 5.079167, + "longitudeCity": -76.66333, + "nameCity": "Condoto", + "timezone": "America/Bogota" + }, + { + "GMT": "5.30", + "cityId": 1417, + "codeIataCity": "COH", + "codeIso2Country": "IN", + "geonameId": 1261521, + "latitudeCity": 26.333332, + "longitudeCity": 89.46667, + "nameCity": "Cooch Behar", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "cityId": 1418, + "codeIataCity": "COI", + "codeIso2Country": "US", + "geonameId": 4167147, + "latitudeCity": 28.386116, + "longitudeCity": -80.741998, + "nameCity": "Cocoa", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 1419, + "codeIataCity": "COJ", + "codeIso2Country": "AU", + "geonameId": 2170540, + "latitudeCity": -31.337221, + "longitudeCity": 149.27194, + "nameCity": "Coonabarabran", + "timezone": "Australia/Sydney" + }, + { + "GMT": "5.30", + "cityId": 1420, + "codeIataCity": "COK", + "codeIso2Country": "IN", + "geonameId": 7288503, + "latitudeCity": 10.155644, + "longitudeCity": 76.39053, + "nameCity": "Kochi", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "0", + "cityId": 1421, + "codeIataCity": "COL", + "codeIso2Country": "GB", + "geonameId": 2641108, + "latitudeCity": 56.61667, + "longitudeCity": -6.616667, + "nameCity": "Isle Of Coll", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "cityId": 1422, + "codeIataCity": "COM", + "codeIso2Country": "US", + "geonameId": 4669635, + "latitudeCity": 31.833332, + "longitudeCity": -99.433334, + "nameCity": "Coleman", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 1423, + "codeIataCity": "CON", + "codeIso2Country": "US", + "geonameId": 5084868, + "latitudeCity": 43.2, + "longitudeCity": -71.53333, + "nameCity": "Concord", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 1424, + "codeIataCity": "COO", + "codeIso2Country": "BJ", + "geonameId": 2394819, + "latitudeCity": 6.353097, + "longitudeCity": 2.385271, + "nameCity": "Cotonou", + "timezone": "Africa/Porto-Novo" + }, + { + "GMT": "-5", + "cityId": 1425, + "codeIataCity": "COP", + "codeIso2Country": "US", + "geonameId": 5106834, + "latitudeCity": 42.7, + "longitudeCity": -74.933334, + "nameCity": "Cooperstown", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 1426, + "codeIataCity": "COQ", + "codeIso2Country": "MN", + "geonameId": 0, + "latitudeCity": 48.13333, + "longitudeCity": 114.9, + "nameCity": "Choibalsan", + "timezone": "Asia/Choibalsan" + }, + { + "GMT": "-3", + "cityId": 1427, + "codeIataCity": "COR", + "codeIso2Country": "AR", + "geonameId": 3860259, + "latitudeCity": -31.31548, + "longitudeCity": -64.21377, + "nameCity": "Cordoba", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-7", + "cityId": 1428, + "codeIataCity": "COS", + "codeIso2Country": "US", + "geonameId": 5417598, + "latitudeCity": 38.833882, + "longitudeCity": -104.821363, + "nameCity": "Colorado Springs", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 1429, + "codeIataCity": "COT", + "codeIso2Country": "US", + "geonameId": 4718107, + "latitudeCity": 28.433332, + "longitudeCity": -99.23333, + "nameCity": "Cotulla", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 1430, + "codeIataCity": "COU", + "codeIso2Country": "US", + "geonameId": 4381982, + "latitudeCity": 38.81361, + "longitudeCity": -92.21917, + "nameCity": "Columbia", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 1431, + "codeIataCity": "COV", + "codeIso2Country": "PT", + "geonameId": 2740313, + "latitudeCity": 40.283333, + "longitudeCity": -7.5, + "nameCity": "Covilha", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "-4", + "cityId": 1432, + "codeIataCity": "COW", + "codeIso2Country": "CL", + "geonameId": 3893629, + "latitudeCity": -32.8, + "longitudeCity": -70.63333, + "nameCity": "Coquimbo", + "timezone": "America/Santiago" + }, + { + "GMT": "-5", + "cityId": 1433, + "codeIataCity": "COX", + "codeIso2Country": "BS", + "geonameId": 3572603, + "latitudeCity": 24.15, + "longitudeCity": -77.583336, + "nameCity": "Congo Town", + "timezone": "America/Nassau" + }, + { + "GMT": "8", + "cityId": 1434, + "codeIataCity": "COY", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -21.85, + "longitudeCity": 117.75, + "nameCity": "Coolawanyah", + "timezone": "Australia/Perth" + }, + { + "GMT": "-4", + "cityId": 1435, + "codeIataCity": "COZ", + "codeIso2Country": "DO", + "geonameId": 0, + "latitudeCity": 18.9, + "longitudeCity": -70.71667, + "nameCity": "Constanza", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "0", + "cityId": 1436, + "codeIataCity": "CPA", + "codeIso2Country": "LR", + "geonameId": 2276492, + "latitudeCity": 4.376667, + "longitudeCity": -7.695556, + "nameCity": "Cape Palmas", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-5", + "cityId": 1437, + "codeIataCity": "CPB", + "codeIso2Country": "CO", + "geonameId": 3687480, + "latitudeCity": 8.633333, + "longitudeCity": -77.333336, + "nameCity": "Capurgana", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "cityId": 1438, + "codeIataCity": "CPC", + "codeIso2Country": "AR", + "geonameId": 3836951, + "latitudeCity": -40.066666, + "longitudeCity": -71.13333, + "nameCity": "San Martin DeLos Andes", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "9.30", + "cityId": 1439, + "codeIataCity": "CPD", + "codeIso2Country": "AU", + "geonameId": 2073985, + "latitudeCity": -29.044443, + "longitudeCity": 134.75278, + "nameCity": "Coober Pedy", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-6", + "cityId": 1440, + "codeIataCity": "CPE", + "codeIso2Country": "MX", + "geonameId": 3531732, + "latitudeCity": 19.835, + "longitudeCity": -90.509445, + "nameCity": "Campeche", + "timezone": "America/Merida" + }, + { + "GMT": "7", + "cityId": 1441, + "codeIataCity": "CPF", + "codeIso2Country": "ID", + "geonameId": 1933998, + "latitudeCity": -7.15, + "longitudeCity": 111.583336, + "nameCity": "Cepu", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-3", + "cityId": 1442, + "codeIataCity": "CPG", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -40.833332, + "longitudeCity": -63.0, + "nameCity": "Carmen De Patagones", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "1", + "cityId": 1443, + "codeIataCity": "CPH", + "codeIso2Country": "DK", + "geonameId": 2618425, + "latitudeCity": 55.693403, + "longitudeCity": 12.583046, + "nameCity": "Copenhagen", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "10", + "cityId": 1444, + "codeIataCity": "CPI", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.433333, + "longitudeCity": 152.08333, + "nameCity": "Cape Orford", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 1445, + "codeIataCity": "CPL", + "codeIso2Country": "CO", + "geonameId": 3673899, + "latitudeCity": 3.716667, + "longitudeCity": -75.46667, + "nameCity": "Chaparral", + "timezone": "America/Bogota" + }, + { + "GMT": "-8", + "cityId": 1446, + "codeIataCity": "CPM", + "codeIso2Country": "US", + "geonameId": 5368361, + "latitudeCity": 33.894444, + "longitudeCity": -118.24778, + "nameCity": "Compton", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 1447, + "codeIataCity": "CPN", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -10.183333, + "longitudeCity": 148.36667, + "nameCity": "Cape Rodney", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "cityId": 1448, + "codeIataCity": "CPO", + "codeIso2Country": "CL", + "geonameId": 3893656, + "latitudeCity": -27.29892, + "longitudeCity": -70.414406, + "nameCity": "Copiapo", + "timezone": "America/Santiago" + }, + { + "GMT": "-3", + "cityId": 1449, + "codeIataCity": "CPQ", + "codeIso2Country": "BR", + "geonameId": 3467865, + "latitudeCity": -22.856462, + "longitudeCity": -47.111595, + "nameCity": "Campinas", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-7", + "cityId": 1450, + "codeIataCity": "CPR", + "codeIso2Country": "US", + "geonameId": 5820705, + "latitudeCity": 42.90861, + "longitudeCity": -106.4625, + "nameCity": "Casper", + "timezone": "America/Denver" + }, + { + "GMT": "2", + "cityId": 1451, + "codeIataCity": "CPT", + "codeIso2Country": "ZA", + "geonameId": 3369157, + "latitudeCity": -33.968906, + "longitudeCity": 18.596489, + "nameCity": "Cape Town", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-3", + "cityId": 1452, + "codeIataCity": "CPU", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -1.8, + "longitudeCity": -44.86667, + "nameCity": "Cururupu", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-3", + "cityId": 1453, + "codeIataCity": "CPV", + "codeIso2Country": "BR", + "geonameId": 3403642, + "latitudeCity": -7.266667, + "longitudeCity": -35.9, + "nameCity": "Campina Grande", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-4", + "cityId": 1454, + "codeIataCity": "CPX", + "codeIso2Country": "PR", + "geonameId": 4564070, + "latitudeCity": 18.3, + "longitudeCity": -65.316666, + "nameCity": "Culebra", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "-4", + "cityId": 1455, + "codeIataCity": "CQA", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -13.574167, + "longitudeCity": -52.27028, + "nameCity": "Canarana", + "timezone": "America/Cuiaba" + }, + { + "GMT": "3.30", + "cityId": 1456, + "codeIataCity": "CQD", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 32.294453, + "longitudeCity": 50.837536, + "nameCity": "Shahre-kord", + "timezone": "Asia/Tehran" + }, + { + "GMT": "1", + "cityId": 1457, + "codeIataCity": "CQF", + "codeIso2Country": "FR", + "geonameId": 3029162, + "latitudeCity": 50.95129, + "longitudeCity": 1.858686, + "nameCity": "Calais", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "cityId": 1458, + "codeIataCity": "CQM", + "codeIso2Country": "ES", + "geonameId": 2519402, + "latitudeCity": 38.986096, + "longitudeCity": -3.927263, + "nameCity": "Ciudad Real", + "timezone": "Europe/Madrid" + }, + { + "GMT": "10", + "cityId": 1459, + "codeIataCity": "CQP", + "codeIso2Country": "AU", + "geonameId": 2163635, + "latitudeCity": -18.2, + "longitudeCity": 147.5, + "nameCity": "Cape Flattery", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-4", + "cityId": 1460, + "codeIataCity": "CQS", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -12.416667, + "longitudeCity": -64.25, + "nameCity": "Costa Marques", + "timezone": "America/Porto_Velho" + }, + { + "GMT": "-5", + "cityId": 1461, + "codeIataCity": "CQT", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 1.616667, + "longitudeCity": -74.166664, + "nameCity": "Caquetania", + "timezone": "America/Bogota" + }, + { + "GMT": "2", + "cityId": 1462, + "codeIataCity": "CRA", + "codeIso2Country": "RO", + "geonameId": 680332, + "latitudeCity": 44.31889, + "longitudeCity": 23.886389, + "nameCity": "Craiova", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "10", + "cityId": 1463, + "codeIataCity": "CRB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -29.55, + "longitudeCity": 148.58333, + "nameCity": "Collarenebri", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-5", + "cityId": 1464, + "codeIataCity": "CRC", + "codeIso2Country": "CO", + "geonameId": 3687230, + "latitudeCity": 4.766667, + "longitudeCity": -75.933334, + "nameCity": "Cartago", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "cityId": 1465, + "codeIataCity": "CRD", + "codeIso2Country": "AR", + "geonameId": 3860443, + "latitudeCity": -45.787224, + "longitudeCity": -67.462776, + "nameCity": "Comodoro Rivadavia", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "1", + "cityId": 1466, + "codeIataCity": "CRF", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 4.983333, + "longitudeCity": 15.933333, + "nameCity": "Carnot", + "timezone": "Africa/Bangui" + }, + { + "GMT": "10", + "cityId": 1467, + "codeIataCity": "CRH", + "codeIso2Country": "AU", + "geonameId": 2146268, + "latitudeCity": -28.0, + "longitudeCity": 152.16667, + "nameCity": "Cherribah", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 1468, + "codeIataCity": "CRI", + "codeIso2Country": "BS", + "geonameId": 0, + "latitudeCity": 22.75, + "longitudeCity": -74.15, + "nameCity": "Crooked Island", + "timezone": "America/Nassau" + }, + { + "GMT": "9.30", + "cityId": 1469, + "codeIataCity": "CRJ", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -31.9, + "longitudeCity": 132.3, + "nameCity": "Coorabie", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "8", + "cityId": 1470, + "codeIataCity": "CRM", + "codeIso2Country": "PH", + "geonameId": 1717926, + "latitudeCity": 12.483333, + "longitudeCity": 124.583336, + "nameCity": "Catarman", + "timezone": "Asia/Manila" + }, + { + "GMT": "-8", + "cityId": 1471, + "codeIataCity": "CRO", + "codeIso2Country": "US", + "geonameId": 5339539, + "latitudeCity": 36.1, + "longitudeCity": -119.55, + "nameCity": "Corcoran", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 1472, + "codeIataCity": "CRP", + "codeIso2Country": "US", + "geonameId": 4683416, + "latitudeCity": 27.800583, + "longitudeCity": -97.396381, + "nameCity": "Corpus Christi", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 1473, + "codeIataCity": "CRQ", + "codeIso2Country": "BR", + "geonameId": 3466980, + "latitudeCity": -17.75, + "longitudeCity": -39.25, + "nameCity": "Caravelas", + "timezone": "America/Bahia" + }, + { + "GMT": "-3", + "cityId": 1474, + "codeIataCity": "CRR", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -29.916668, + "longitudeCity": -61.833332, + "nameCity": "Ceres", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-6", + "cityId": 1475, + "codeIataCity": "CRS", + "codeIso2Country": "US", + "geonameId": 4683462, + "latitudeCity": 32.1, + "longitudeCity": -96.46667, + "nameCity": "Corsicana", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 1476, + "codeIataCity": "CRT", + "codeIso2Country": "US", + "geonameId": 4107198, + "latitudeCity": 33.13333, + "longitudeCity": -91.96667, + "nameCity": "Crossett", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 1477, + "codeIataCity": "CRU", + "codeIso2Country": "GD", + "geonameId": 0, + "latitudeCity": 12.475, + "longitudeCity": -61.47222, + "nameCity": "Carriacou Island", + "timezone": "America/Grenada" + }, + { + "GMT": "1", + "cityId": 1478, + "codeIataCity": "CRV", + "codeIso2Country": "IT", + "geonameId": 2524881, + "latitudeCity": 39.0, + "longitudeCity": 17.083332, + "nameCity": "Crotone", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "cityId": 1479, + "codeIataCity": "CRW", + "codeIso2Country": "US", + "geonameId": 4801859, + "latitudeCity": 38.370342, + "longitudeCity": -81.596504, + "nameCity": "Charleston", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 1480, + "codeIataCity": "CRX", + "codeIso2Country": "US", + "geonameId": 4062577, + "latitudeCity": 34.9, + "longitudeCity": -88.6, + "nameCity": "Corinth", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 1481, + "codeIataCity": "CRY", + "codeIso2Country": "AU", + "geonameId": 2068110, + "latitudeCity": -15.466667, + "longitudeCity": 128.61667, + "nameCity": "Carlton Hill", + "timezone": "Australia/Perth" + }, + { + "GMT": "5", + "cityId": 1482, + "codeIataCity": "CRZ", + "codeIso2Country": "TM", + "geonameId": 0, + "latitudeCity": 39.083332, + "longitudeCity": 63.61667, + "nameCity": "Turkmenabad", + "timezone": "Asia/Ashgabat" + }, + { + "GMT": "0", + "cityId": 1483, + "codeIataCity": "CSA", + "codeIso2Country": "GB", + "geonameId": 2641108, + "latitudeCity": 56.083332, + "longitudeCity": -6.2, + "nameCity": "Isle Of Colonsay", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "cityId": 1484, + "codeIataCity": "CSB", + "codeIso2Country": "RO", + "geonameId": 665087, + "latitudeCity": 45.416668, + "longitudeCity": 22.216667, + "nameCity": "Caransebes", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "-6", + "cityId": 1485, + "codeIataCity": "CSC", + "codeIso2Country": "CR", + "geonameId": 3621278, + "latitudeCity": 10.766667, + "longitudeCity": -85.48333, + "nameCity": "Canas", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "9.30", + "cityId": 1486, + "codeIataCity": "CSD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.966667, + "longitudeCity": 135.91667, + "nameCity": "Cresswell Downs", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-7", + "cityId": 1487, + "codeIataCity": "CSE", + "codeIso2Country": "US", + "geonameId": 5418523, + "latitudeCity": 38.86667, + "longitudeCity": -106.98333, + "nameCity": "Crested Butte", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 1488, + "codeIataCity": "CSF", + "codeIso2Country": "FR", + "geonameId": 3022610, + "latitudeCity": 49.25, + "longitudeCity": 2.483333, + "nameCity": "Creil", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 1489, + "codeIataCity": "CSG", + "codeIso2Country": "US", + "geonameId": 4188985, + "latitudeCity": 32.466667, + "longitudeCity": -84.98333, + "nameCity": "Columbus", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 1490, + "codeIataCity": "CSH", + "codeIso2Country": "RU", + "geonameId": 577922, + "latitudeCity": 65.02944, + "longitudeCity": 35.733334, + "nameCity": "Solovetsky", + "timezone": "Europe/Moscow" + }, + { + "GMT": "10", + "cityId": 1491, + "codeIataCity": "CSI", + "codeIso2Country": "AU", + "geonameId": 2172153, + "latitudeCity": -28.883333, + "longitudeCity": 153.05833, + "nameCity": "Casino", + "timezone": "Australia/Sydney" + }, + { + "GMT": "7", + "cityId": 1492, + "codeIataCity": "CSJ", + "codeIso2Country": "VN", + "geonameId": 0, + "latitudeCity": 10.033333, + "longitudeCity": 111.0, + "nameCity": "Cape St Jacques", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "0", + "cityId": 1493, + "codeIataCity": "CSK", + "codeIso2Country": "SN", + "geonameId": 7302183, + "latitudeCity": 12.4, + "longitudeCity": -16.75, + "nameCity": "Cap Skirring", + "timezone": "Africa/Dakar" + }, + { + "GMT": "-8", + "cityId": 1494, + "codeIataCity": "CSL", + "codeIso2Country": "US", + "geonameId": 5392323, + "latitudeCity": 37.345777, + "longitudeCity": -120.471364, + "nameCity": "San Luis Obispo", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 1495, + "codeIataCity": "CSM", + "codeIso2Country": "US", + "geonameId": 4533738, + "latitudeCity": 35.539165, + "longitudeCity": -96.933334, + "nameCity": "Clinton", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 1496, + "codeIataCity": "CSN", + "codeIso2Country": "US", + "geonameId": 5501344, + "latitudeCity": 39.191666, + "longitudeCity": -119.73472, + "nameCity": "Carson City", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 1497, + "codeIataCity": "CSO", + "codeIso2Country": "DE", + "geonameId": 2874545, + "latitudeCity": 51.85, + "longitudeCity": 11.416667, + "nameCity": "Cochstedt", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-9", + "cityId": 1498, + "codeIataCity": "CSP", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Cape Spencer", + "timezone": "America/Juneau" + }, + { + "GMT": "-6", + "cityId": 1499, + "codeIataCity": "CSQ", + "codeIso2Country": "US", + "geonameId": 4853828, + "latitudeCity": 41.066666, + "longitudeCity": -94.36667, + "nameCity": "Creston", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 1500, + "codeIataCity": "CSR", + "codeIso2Country": "CO", + "geonameId": 3687070, + "latitudeCity": 5.833333, + "longitudeCity": -68.13333, + "nameCity": "Casuarito", + "timezone": "America/Bogota" + }, + { + "GMT": "-4", + "cityId": 1501, + "codeIataCity": "CSS", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -18.983334, + "longitudeCity": -51.983334, + "nameCity": "Cassilandia", + "timezone": "America/Campo_Grande" + }, + { + "GMT": "12", + "cityId": 1502, + "codeIataCity": "CST", + "codeIso2Country": "FJ", + "geonameId": 0, + "latitudeCity": -17.5, + "longitudeCity": 177.5, + "nameCity": "Castaway", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-3", + "cityId": 1503, + "codeIataCity": "CSU", + "codeIso2Country": "BR", + "geonameId": 3450269, + "latitudeCity": -29.683332, + "longitudeCity": -52.416668, + "nameCity": "Santa Cruz Do Sul", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "cityId": 1504, + "codeIataCity": "CSV", + "codeIso2Country": "US", + "geonameId": 4614088, + "latitudeCity": 35.95111, + "longitudeCity": -85.084724, + "nameCity": "Crossville", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "cityId": 1505, + "codeIataCity": "CSW", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -13.019444, + "longitudeCity": -61.168056, + "nameCity": "Colorado do Oeste", + "timezone": "America/Porto_Velho" + }, + { + "GMT": "8", + "cityId": 1506, + "codeIataCity": "CSX", + "codeIso2Country": "CN", + "geonameId": 1815577, + "latitudeCity": 28.193336, + "longitudeCity": 113.21459, + "nameCity": "Changsha", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "cityId": 1507, + "codeIataCity": "CSY", + "codeIso2Country": "RU", + "geonameId": 569696, + "latitudeCity": 56.13333, + "longitudeCity": 47.266666, + "nameCity": "Cheboksary", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-3", + "cityId": 1508, + "codeIataCity": "CSZ", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -37.433334, + "longitudeCity": -61.88333, + "nameCity": "Coronel Suarez", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "1", + "cityId": 1509, + "codeIataCity": "CTA", + "codeIso2Country": "IT", + "geonameId": 2525068, + "latitudeCity": 37.47066, + "longitudeCity": 15.065877, + "nameCity": "Catania", + "timezone": "Europe/Rome" + }, + { + "GMT": "-7", + "cityId": 1510, + "codeIataCity": "CTB", + "codeIso2Country": "US", + "geonameId": 5642247, + "latitudeCity": 48.63333, + "longitudeCity": -112.333336, + "nameCity": "Cut Bank", + "timezone": "America/Denver" + }, + { + "GMT": "-3", + "cityId": 1511, + "codeIataCity": "CTC", + "codeIso2Country": "AR", + "geonameId": 3837702, + "latitudeCity": -28.448334, + "longitudeCity": -65.779724, + "nameCity": "Catamarca", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "-5", + "cityId": 1512, + "codeIataCity": "CTD", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 7.966667, + "longitudeCity": -80.433334, + "nameCity": "Chitre", + "timezone": "America/Panama" + }, + { + "GMT": "-5", + "cityId": 1513, + "codeIataCity": "CTE", + "codeIso2Country": "PA", + "geonameId": 3703443, + "latitudeCity": 8.833333, + "longitudeCity": -80.833336, + "nameCity": "Carti", + "timezone": "America/Panama" + }, + { + "GMT": "-6", + "cityId": 1514, + "codeIataCity": "CTF", + "codeIso2Country": "GT", + "geonameId": 3591750, + "latitudeCity": 14.766667, + "longitudeCity": -91.916664, + "nameCity": "Coatepeque", + "timezone": "America/Guatemala" + }, + { + "GMT": "-5", + "cityId": 1515, + "codeIataCity": "CTG", + "codeIso2Country": "CO", + "geonameId": 3687238, + "latitudeCity": 10.445704, + "longitudeCity": -75.51659, + "nameCity": "Cartagena", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 1516, + "codeIataCity": "CTH", + "codeIso2Country": "US", + "geonameId": 4557247, + "latitudeCity": 39.983334, + "longitudeCity": -75.833336, + "nameCity": "Coatesville", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 1517, + "codeIataCity": "CTI", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -15.166667, + "longitudeCity": 19.166668, + "nameCity": "Cuito Cuanavale", + "timezone": "Africa/Luanda" + }, + { + "GMT": "1", + "cityId": 1518, + "codeIataCity": "CTJ", + "codeIso2Country": "IT", + "geonameId": 3179866, + "latitudeCity": 33.76025, + "longitudeCity": -85.1703, + "nameCity": "Carrollton", + "timezone": "Europe/Rome" + }, + { + "GMT": "-6", + "cityId": 1519, + "codeIataCity": "CTK", + "codeIso2Country": "US", + "geonameId": 5231851, + "latitudeCity": 43.3, + "longitudeCity": -96.583336, + "nameCity": "Canton", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 1520, + "codeIataCity": "CTL", + "codeIso2Country": "AU", + "geonameId": 2171764, + "latitudeCity": -26.413334, + "longitudeCity": 146.25842, + "nameCity": "Charleville", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 1521, + "codeIataCity": "CTM", + "codeIso2Country": "MX", + "geonameId": 3531023, + "latitudeCity": 18.481943, + "longitudeCity": -88.333336, + "nameCity": "Chetumal", + "timezone": "America/Cancun" + }, + { + "GMT": "10", + "cityId": 1522, + "codeIataCity": "CTN", + "codeIso2Country": "AU", + "geonameId": 2170658, + "latitudeCity": -15.443333, + "longitudeCity": 145.18333, + "nameCity": "Cooktown", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 1523, + "codeIataCity": "CTO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.63333, + "longitudeCity": -77.683334, + "nameCity": "Calverton", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 1524, + "codeIataCity": "CTP", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -1.25, + "longitudeCity": -46.016666, + "nameCity": "Carutapera", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-3", + "cityId": 1525, + "codeIataCity": "CTQ", + "codeIso2Country": "BR", + "geonameId": 3466187, + "latitudeCity": -18.85, + "longitudeCity": -50.1, + "nameCity": "Santa Vitoria", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "9.30", + "cityId": 1526, + "codeIataCity": "CTR", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.583332, + "longitudeCity": 131.0, + "nameCity": "Cattle Creek", + "timezone": "Australia/Darwin" + }, + { + "GMT": "1", + "cityId": 1527, + "codeIataCity": "CTT", + "codeIso2Country": "FR", + "geonameId": 2980933, + "latitudeCity": 43.25, + "longitudeCity": 5.783333, + "nameCity": "Le Castellet", + "timezone": "Europe/Paris" + }, + { + "GMT": "8", + "cityId": 1528, + "codeIataCity": "CTU", + "codeIso2Country": "CN", + "geonameId": 1815286, + "latitudeCity": 30.581135, + "longitudeCity": 103.9568, + "nameCity": "Chengdu", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-7", + "cityId": 1529, + "codeIataCity": "CTW", + "codeIso2Country": "US", + "geonameId": 5313667, + "latitudeCity": 34.733334, + "longitudeCity": -112.03333, + "nameCity": "Cottonwood", + "timezone": "America/Phoenix" + }, + { + "GMT": "-5", + "cityId": 1530, + "codeIataCity": "CTX", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.6, + "longitudeCity": -76.183334, + "nameCity": "Cortland", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 1531, + "codeIataCity": "CTY", + "codeIso2Country": "US", + "geonameId": 4152395, + "latitudeCity": 29.633333, + "longitudeCity": -83.11667, + "nameCity": "Cross City", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 1532, + "codeIataCity": "CTZ", + "codeIso2Country": "US", + "geonameId": 4487042, + "latitudeCity": 35.0, + "longitudeCity": -78.36667, + "nameCity": "Clinton", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 1533, + "codeIataCity": "CUA", + "codeIso2Country": "MX", + "geonameId": 3991361, + "latitudeCity": 25.036943, + "longitudeCity": -111.664444, + "nameCity": "Ciudad Constitucion", + "timezone": "America/Mazatlan" + }, + { + "GMT": "-5", + "cityId": 1534, + "codeIataCity": "CUC", + "codeIso2Country": "CO", + "geonameId": 3685533, + "latitudeCity": 7.927108, + "longitudeCity": -72.50815, + "nameCity": "Cucuta", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "cityId": 1535, + "codeIataCity": "CUD", + "codeIso2Country": "AU", + "geonameId": 2172710, + "latitudeCity": -26.8, + "longitudeCity": 153.15, + "nameCity": "Caloundra", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 1536, + "codeIataCity": "CUE", + "codeIso2Country": "EC", + "geonameId": 3658666, + "latitudeCity": -2.889343, + "longitudeCity": -78.98689, + "nameCity": "Cuenca", + "timezone": "America/Guayaquil" + }, + { + "GMT": "1", + "cityId": 1537, + "codeIataCity": "CUF", + "codeIso2Country": "IT", + "geonameId": 3177700, + "latitudeCity": 44.53528, + "longitudeCity": 7.6175, + "nameCity": "Cuneo", + "timezone": "Europe/Rome" + }, + { + "GMT": "10", + "cityId": 1538, + "codeIataCity": "CUG", + "codeIso2Country": "AU", + "geonameId": 2153778, + "latitudeCity": -32.0, + "longitudeCity": 151.0, + "nameCity": "Cudal", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "cityId": 1539, + "codeIataCity": "CUH", + "codeIso2Country": "US", + "geonameId": 4544349, + "latitudeCity": 35.983334, + "longitudeCity": -96.76667, + "nameCity": "Cushing", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 1540, + "codeIataCity": "CUI", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 4.666667, + "longitudeCity": -72.0, + "nameCity": "Currillo", + "timezone": "America/Bogota" + }, + { + "GMT": "8", + "cityId": 1541, + "codeIataCity": "CUJ", + "codeIso2Country": "PH", + "geonameId": 1716526, + "latitudeCity": 11.833333, + "longitudeCity": 120.0, + "nameCity": "Culion", + "timezone": "Asia/Manila" + }, + { + "GMT": "-6", + "cityId": 1542, + "codeIataCity": "CUK", + "codeIso2Country": "BZ", + "geonameId": 3582431, + "latitudeCity": 17.766666, + "longitudeCity": -88.0, + "nameCity": "Caye Caulker", + "timezone": "America/Belize" + }, + { + "GMT": "-7", + "cityId": 1543, + "codeIataCity": "CUL", + "codeIso2Country": "MX", + "geonameId": 4012176, + "latitudeCity": 24.76643, + "longitudeCity": -107.46958, + "nameCity": "Culiacan", + "timezone": "America/Mazatlan" + }, + { + "GMT": "-4", + "cityId": 1544, + "codeIataCity": "CUM", + "codeIso2Country": "VE", + "geonameId": 6692530, + "latitudeCity": 10.447778, + "longitudeCity": -64.19194, + "nameCity": "Cumana", + "timezone": "America/Caracas" + }, + { + "GMT": "-5", + "cityId": 1545, + "codeIataCity": "CUN", + "codeIso2Country": "MX", + "geonameId": 3531673, + "latitudeCity": 21.040457, + "longitudeCity": -86.874435, + "nameCity": "Cancun", + "timezone": "America/Cancun" + }, + { + "GMT": "-5", + "cityId": 1546, + "codeIataCity": "CUO", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 1.033333, + "longitudeCity": -71.23333, + "nameCity": "Caruru", + "timezone": "America/Bogota" + }, + { + "GMT": "-4", + "cityId": 1547, + "codeIataCity": "CUP", + "codeIso2Country": "VE", + "geonameId": 3795771, + "latitudeCity": 10.658889, + "longitudeCity": -63.2625, + "nameCity": "Carupano", + "timezone": "America/Caracas" + }, + { + "GMT": "10", + "cityId": 1548, + "codeIataCity": "CUQ", + "codeIso2Country": "AU", + "geonameId": 2171097, + "latitudeCity": -13.763889, + "longitudeCity": 143.11333, + "nameCity": "Coen", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-4", + "cityId": 1549, + "codeIataCity": "CUR", + "codeIso2Country": "CW", + "geonameId": 3513090, + "latitudeCity": 12.184615, + "longitudeCity": -68.95706, + "nameCity": "Curacao", + "timezone": "America/Curacao" + }, + { + "GMT": "-7", + "cityId": 1550, + "codeIataCity": "CUS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 31.833332, + "longitudeCity": -107.63333, + "nameCity": "Columbus", + "timezone": "America/Denver" + }, + { + "GMT": "-3", + "cityId": 1551, + "codeIataCity": "CUT", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -38.9, + "longitudeCity": -69.0, + "nameCity": "Cutral", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-7", + "cityId": 1552, + "codeIataCity": "CUU", + "codeIso2Country": "MX", + "geonameId": 4014338, + "latitudeCity": 28.704048, + "longitudeCity": -105.96952, + "nameCity": "Chihuahua", + "timezone": "America/Chihuahua" + }, + { + "GMT": "-4", + "cityId": 1553, + "codeIataCity": "CUV", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 11.066667, + "longitudeCity": -70.95, + "nameCity": "Casigua", + "timezone": "America/Caracas" + }, + { + "GMT": "-9", + "cityId": 1554, + "codeIataCity": "CUW", + "codeIso2Country": "US", + "geonameId": 5554072, + "latitudeCity": 57.941666, + "longitudeCity": -134.75, + "nameCity": "Cube Cove", + "timezone": "America/Juneau" + }, + { + "GMT": "8", + "cityId": 1555, + "codeIataCity": "CUY", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -27.45, + "longitudeCity": 117.916664, + "nameCity": "Cue", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "cityId": 1556, + "codeIataCity": "CUZ", + "codeIso2Country": "PE", + "geonameId": 3697530, + "latitudeCity": -13.538429, + "longitudeCity": -71.94371, + "nameCity": "Cuzco", + "timezone": "America/Lima" + }, + { + "GMT": "10", + "cityId": 1557, + "codeIataCity": "CVB", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -4.8, + "longitudeCity": 144.7, + "nameCity": "Chungribu", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9.30", + "cityId": 1558, + "codeIataCity": "CVC", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -33.7, + "longitudeCity": 136.5, + "nameCity": "Cleve", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-5", + "cityId": 1559, + "codeIataCity": "CVE", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 9.4, + "longitudeCity": -75.73333, + "nameCity": "Covenas", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 1560, + "codeIataCity": "CVF", + "codeIso2Country": "FR", + "geonameId": 3023065, + "latitudeCity": 45.396667, + "longitudeCity": 6.634722, + "nameCity": "Courchevel", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 1561, + "codeIataCity": "CVG", + "codeIso2Country": "US", + "geonameId": 4508722, + "latitudeCity": 39.083671, + "longitudeCity": -84.508554, + "nameCity": "Covington", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 1562, + "codeIataCity": "CVH", + "codeIso2Country": "AR", + "geonameId": 8556186, + "latitudeCity": -37.916668, + "longitudeCity": -71.0, + "nameCity": "Caviahue", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-3", + "cityId": 1563, + "codeIataCity": "CVI", + "codeIso2Country": "AR", + "geonameId": 3860443, + "latitudeCity": -46.416668, + "longitudeCity": -67.416664, + "nameCity": "Caleta Olivia", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "-6", + "cityId": 1564, + "codeIataCity": "CVJ", + "codeIso2Country": "MX", + "geonameId": 3530597, + "latitudeCity": 18.916668, + "longitudeCity": -99.25, + "nameCity": "Cuernavaca", + "timezone": "America/Mexico_City" + }, + { + "GMT": "10", + "cityId": 1565, + "codeIataCity": "CVL", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -9.466667, + "longitudeCity": 150.5, + "nameCity": "Cape Vogel", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 1566, + "codeIataCity": "CVM", + "codeIso2Country": "MX", + "geonameId": 3530580, + "latitudeCity": 23.713888, + "longitudeCity": -98.96528, + "nameCity": "Ciudad Victoria", + "timezone": "America/Monterrey" + }, + { + "GMT": "-7", + "cityId": 1567, + "codeIataCity": "CVN", + "codeIso2Country": "US", + "geonameId": 5462393, + "latitudeCity": 34.404799, + "longitudeCity": -103.205227, + "nameCity": "Clovis", + "timezone": "America/Denver" + }, + { + "GMT": "-8", + "cityId": 1568, + "codeIataCity": "CVO", + "codeIso2Country": "US", + "geonameId": 5720727, + "latitudeCity": 44.63333, + "longitudeCity": -123.11667, + "nameCity": "Albany", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "cityId": 1569, + "codeIataCity": "CVQ", + "codeIso2Country": "AU", + "geonameId": 2074865, + "latitudeCity": -24.883429, + "longitudeCity": 113.66358, + "nameCity": "Carnarvon", + "timezone": "Australia/Perth" + }, + { + "GMT": "-8", + "cityId": 1570, + "codeIataCity": "CVR", + "codeIso2Country": "US", + "geonameId": 5341114, + "latitudeCity": 33.975, + "longitudeCity": -118.417, + "nameCity": "Culver City", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "0", + "cityId": 1571, + "codeIataCity": "CVT", + "codeIso2Country": "GB", + "geonameId": 2652221, + "latitudeCity": 52.369167, + "longitudeCity": -1.478611, + "nameCity": "Coventry", + "timezone": "Europe/London" + }, + { + "GMT": "-1", + "cityId": 1572, + "codeIataCity": "CVU", + "codeIso2Country": "PT", + "geonameId": 0, + "latitudeCity": 39.7, + "longitudeCity": -31.1, + "nameCity": "Corvo Island", + "timezone": "Atlantic/Azores" + }, + { + "GMT": "-3", + "cityId": 1573, + "codeIataCity": "CWB", + "codeIso2Country": "BR", + "geonameId": 3464975, + "latitudeCity": -25.5322, + "longitudeCity": -49.176544, + "nameCity": "Curitiba", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "2", + "cityId": 1574, + "codeIataCity": "CWC", + "codeIso2Country": "UA", + "geonameId": 710719, + "latitudeCity": 48.266666, + "longitudeCity": 25.966667, + "nameCity": "Chernovtsy", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-5", + "cityId": 1575, + "codeIataCity": "CWG", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 32.84028, + "longitudeCity": -84.8825, + "nameCity": "Callaway Gardens", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 1576, + "codeIataCity": "CWI", + "codeIso2Country": "US", + "geonameId": 4853423, + "latitudeCity": 41.829445, + "longitudeCity": -90.33195, + "nameCity": "Clinton", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 1577, + "codeIataCity": "CWL", + "codeIso2Country": "GB", + "geonameId": 2653822, + "latitudeCity": 51.39877, + "longitudeCity": -3.339075, + "nameCity": "Cardiff", + "timezone": "Europe/London" + }, + { + "GMT": "5", + "cityId": 1578, + "codeIataCity": "CWP", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 33.766666, + "longitudeCity": 72.433334, + "nameCity": "Campbellpore", + "timezone": "Asia/Karachi" + }, + { + "GMT": "9.30", + "cityId": 1579, + "codeIataCity": "CWR", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -27.716667, + "longitudeCity": 138.33333, + "nameCity": "Cowarie", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-8", + "cityId": 1580, + "codeIataCity": "CWS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 47.485, + "longitudeCity": -122.83139, + "nameCity": "Center Island", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 1581, + "codeIataCity": "CWT", + "codeIso2Country": "AU", + "geonameId": 2170139, + "latitudeCity": -33.855, + "longitudeCity": 148.64667, + "nameCity": "Cowra", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "cityId": 1582, + "codeIataCity": "CWW", + "codeIso2Country": "AU", + "geonameId": 2170260, + "latitudeCity": -35.966667, + "longitudeCity": 146.35, + "nameCity": "Corowa", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-7", + "cityId": 1583, + "codeIataCity": "CWX", + "codeIso2Country": "US", + "geonameId": 5321088, + "latitudeCity": 32.25285, + "longitudeCity": -109.83201, + "nameCity": "Willcox", + "timezone": "America/Phoenix" + }, + { + "GMT": "-4", + "cityId": 1584, + "codeIataCity": "CXA", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 7.533333, + "longitudeCity": -66.15, + "nameCity": "Caicara Del Orinoco", + "timezone": "America/Caracas" + }, + { + "GMT": "6", + "cityId": 1585, + "codeIataCity": "CXB", + "codeIso2Country": "BD", + "geonameId": 1205733, + "latitudeCity": 21.45, + "longitudeCity": 91.96667, + "nameCity": "Cox's Bazar", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "-9", + "cityId": 1586, + "codeIataCity": "CXC", + "codeIso2Country": "US", + "geonameId": 5859304, + "latitudeCity": 61.583332, + "longitudeCity": -144.42778, + "nameCity": "Chitina", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 1587, + "codeIataCity": "CXF", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 67.26667, + "longitudeCity": -150.16667, + "nameCity": "Coldfoot", + "timezone": "America/Anchorage" + }, + { + "GMT": "14", + "cityId": 1588, + "codeIataCity": "CXI", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": 1.966667, + "longitudeCity": -157.45, + "nameCity": "Christmas Island", + "timezone": "Pacific/Kiritimati" + }, + { + "GMT": "-3", + "cityId": 1589, + "codeIataCity": "CXJ", + "codeIso2Country": "BR", + "geonameId": 3466537, + "latitudeCity": -29.166668, + "longitudeCity": -51.183334, + "nameCity": "Caxias Do Sul", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "cityId": 1590, + "codeIataCity": "CXL", + "codeIso2Country": "US", + "geonameId": 5332698, + "latitudeCity": 32.666668, + "longitudeCity": -115.51667, + "nameCity": "Calexico", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "cityId": 1591, + "codeIataCity": "CXN", + "codeIso2Country": "SO", + "geonameId": 0, + "latitudeCity": 11.5, + "longitudeCity": 49.916668, + "nameCity": "Candala", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-6", + "cityId": 1592, + "codeIataCity": "CXO", + "codeIso2Country": "US", + "geonameId": 4682991, + "latitudeCity": 30.316668, + "longitudeCity": -95.45, + "nameCity": "Conroe", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "cityId": 1593, + "codeIataCity": "CXP", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -7.733333, + "longitudeCity": 109.0, + "nameCity": "Cilacap", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "8", + "cityId": 1594, + "codeIataCity": "CXQ", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.866667, + "longitudeCity": 125.916664, + "nameCity": "Christmas Creek", + "timezone": "Australia/Perth" + }, + { + "GMT": "10", + "cityId": 1595, + "codeIataCity": "CXT", + "codeIso2Country": "AU", + "geonameId": 2171722, + "latitudeCity": -20.046667, + "longitudeCity": 146.26917, + "nameCity": "Charters Towers", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 1596, + "codeIataCity": "CXY", + "codeIso2Country": "BS", + "geonameId": 3572924, + "latitudeCity": 25.416668, + "longitudeCity": -77.816666, + "nameCity": "Cat Cays", + "timezone": "America/Nassau" + }, + { + "GMT": "-5", + "cityId": 1597, + "codeIataCity": "CYA", + "codeIso2Country": "HT", + "geonameId": 3728097, + "latitudeCity": 18.269722, + "longitudeCity": -73.78833, + "nameCity": "Les Cayes", + "timezone": "America/Port-au-Prince" + }, + { + "GMT": "-5", + "cityId": 1598, + "codeIataCity": "CYB", + "codeIso2Country": "KY", + "geonameId": 3580475, + "latitudeCity": 19.690191, + "longitudeCity": -79.87941, + "nameCity": "Cayman Brac Island", + "timezone": "America/Cayman" + }, + { + "GMT": "-6", + "cityId": 1599, + "codeIataCity": "CYC", + "codeIso2Country": "BZ", + "geonameId": 3581164, + "latitudeCity": 17.666668, + "longitudeCity": -88.833336, + "nameCity": "Caye Chapel", + "timezone": "America/Belize" + }, + { + "GMT": "-5", + "cityId": 1600, + "codeIataCity": "CYE", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.210278, + "longitudeCity": -75.83222, + "nameCity": "Crystal Lake", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 1601, + "codeIataCity": "CYF", + "codeIso2Country": "US", + "geonameId": 5859048, + "latitudeCity": 60.216667, + "longitudeCity": -164.2, + "nameCity": "Chefornak", + "timezone": "America/Nome" + }, + { + "GMT": "10", + "cityId": 1602, + "codeIataCity": "CYG", + "codeIso2Country": "AU", + "geonameId": 2178174, + "latitudeCity": -36.25, + "longitudeCity": 147.9, + "nameCity": "Corryong", + "timezone": "Australia/Sydney" + }, + { + "GMT": "8", + "cityId": 1603, + "codeIataCity": "CYI", + "codeIso2Country": "TW", + "geonameId": 1678834, + "latitudeCity": 23.466667, + "longitudeCity": 120.38333, + "nameCity": "Chiayi", + "timezone": "Asia/Taipei" + }, + { + "GMT": "-6", + "cityId": 1604, + "codeIataCity": "CYL", + "codeIso2Country": "HN", + "geonameId": 3608248, + "latitudeCity": 15.0, + "longitudeCity": -86.5, + "nameCity": "Coyoles", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-9", + "cityId": 1605, + "codeIataCity": "CYM", + "codeIso2Country": "US", + "geonameId": 5554072, + "latitudeCity": 57.5, + "longitudeCity": -135.0, + "nameCity": "Chatham", + "timezone": "America/Juneau" + }, + { + "GMT": "-5", + "cityId": 1606, + "codeIataCity": "CYO", + "codeIso2Country": "CU", + "geonameId": 0, + "latitudeCity": 21.616667, + "longitudeCity": -81.51667, + "nameCity": "Cayo Largo Del Sur", + "timezone": "America/Havana" + }, + { + "GMT": "8", + "cityId": 1607, + "codeIataCity": "CYP", + "codeIso2Country": "PH", + "geonameId": 1720402, + "latitudeCity": 12.075833, + "longitudeCity": 124.54305, + "nameCity": "Calbayog", + "timezone": "Asia/Manila" + }, + { + "GMT": "-3", + "cityId": 1608, + "codeIataCity": "CYR", + "codeIso2Country": "UY", + "geonameId": 0, + "latitudeCity": -34.166668, + "longitudeCity": -57.5, + "nameCity": "Colonia", + "timezone": "America/Montevideo" + }, + { + "GMT": "-7", + "cityId": 1609, + "codeIataCity": "CYS", + "codeIso2Country": "US", + "geonameId": 5821086, + "latitudeCity": 41.139981, + "longitudeCity": -104.820246, + "nameCity": "Cheyenne", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "cityId": 1610, + "codeIataCity": "CYT", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 60.08, + "longitudeCity": -142.49445, + "nameCity": "Yakataga", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "cityId": 1611, + "codeIataCity": "CYU", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 10.883333, + "longitudeCity": 121.0, + "nameCity": "Cuyo", + "timezone": "Asia/Manila" + }, + { + "GMT": "-6", + "cityId": 1612, + "codeIataCity": "CYW", + "codeIso2Country": "MX", + "geonameId": 4014875, + "latitudeCity": 20.55, + "longitudeCity": -100.9, + "nameCity": "Celaya", + "timezone": "America/Mexico_City" + }, + { + "GMT": "11", + "cityId": 1613, + "codeIataCity": "CYX", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 68.75, + "longitudeCity": 161.35, + "nameCity": "Cherskiy", + "timezone": "Asia/Magadan" + }, + { + "GMT": "8", + "cityId": 1614, + "codeIataCity": "CYZ", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 16.93, + "longitudeCity": 121.75584, + "nameCity": "Cauayan", + "timezone": "Asia/Manila" + }, + { + "GMT": "-6", + "cityId": 1615, + "codeIataCity": "CZA", + "codeIso2Country": "MX", + "geonameId": 3514876, + "latitudeCity": 20.666668, + "longitudeCity": -88.566666, + "nameCity": "Chichen Itza", + "timezone": "America/Merida" + }, + { + "GMT": "-3", + "cityId": 1616, + "codeIataCity": "CZB", + "codeIso2Country": "BR", + "geonameId": 3447423, + "latitudeCity": -28.641666, + "longitudeCity": -53.558334, + "nameCity": "Cruz Alta", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-9", + "cityId": 1617, + "codeIataCity": "CZC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 61.966667, + "longitudeCity": -145.3, + "nameCity": "Copper Centre", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "cityId": 1618, + "codeIataCity": "CZE", + "codeIso2Country": "VE", + "geonameId": 3645213, + "latitudeCity": 11.415833, + "longitudeCity": -69.681946, + "nameCity": "Coro", + "timezone": "America/Caracas" + }, + { + "GMT": "-9", + "cityId": 1619, + "codeIataCity": "CZF", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 61.781113, + "longitudeCity": -166.03639, + "nameCity": "Cape Romanzof", + "timezone": "America/Nome" + }, + { + "GMT": "-6", + "cityId": 1620, + "codeIataCity": "CZH", + "codeIso2Country": "BZ", + "geonameId": 3582305, + "latitudeCity": 18.383333, + "longitudeCity": -88.416664, + "nameCity": "Corozal", + "timezone": "America/Belize" + }, + { + "GMT": "-5", + "cityId": 1621, + "codeIataCity": "CZJ", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 9.570556, + "longitudeCity": -79.368614, + "nameCity": "Corazon De Jesus", + "timezone": "America/Panama" + }, + { + "GMT": "-8", + "cityId": 1622, + "codeIataCity": "CZK", + "codeIso2Country": "US", + "geonameId": 5718132, + "latitudeCity": 45.666668, + "longitudeCity": -121.9, + "nameCity": "Cascade Locks", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 1623, + "codeIataCity": "CZL", + "codeIso2Country": "DZ", + "geonameId": 2501152, + "latitudeCity": 36.286476, + "longitudeCity": 6.618425, + "nameCity": "Constantine", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-5", + "cityId": 1624, + "codeIataCity": "CZM", + "codeIso2Country": "MX", + "geonameId": 3521342, + "latitudeCity": 20.5112, + "longitudeCity": -86.930466, + "nameCity": "Cozumel", + "timezone": "America/Cancun" + }, + { + "GMT": "-9", + "cityId": 1625, + "codeIataCity": "CZN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 62.07083, + "longitudeCity": -142.05, + "nameCity": "Chisana", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 1626, + "codeIataCity": "CZO", + "codeIso2Country": "US", + "geonameId": 5859295, + "latitudeCity": 62.566666, + "longitudeCity": -144.66667, + "nameCity": "Chistochina", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 1627, + "codeIataCity": "CZP", + "codeIso2Country": "US", + "geonameId": 5845149, + "latitudeCity": 55.966667, + "longitudeCity": -133.78528, + "nameCity": "Cape Pole", + "timezone": "America/Juneau" + }, + { + "GMT": "-5", + "cityId": 1628, + "codeIataCity": "CZS", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -7.583333, + "longitudeCity": -72.78333, + "nameCity": "Cruzeiro Do Sul", + "timezone": "America/Rio_Branco" + }, + { + "GMT": "-6", + "cityId": 1629, + "codeIataCity": "CZT", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 28.516666, + "longitudeCity": -99.86667, + "nameCity": "Carrizo Springs", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 1630, + "codeIataCity": "CZU", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 9.3375, + "longitudeCity": -75.282776, + "nameCity": "Corozal", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 1631, + "codeIataCity": "CZW", + "codeIso2Country": "PL", + "geonameId": 3093133, + "latitudeCity": 50.816666, + "longitudeCity": 19.1, + "nameCity": "Czestochowa", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "8", + "cityId": 1632, + "codeIataCity": "CZX", + "codeIso2Country": "CN", + "geonameId": 1799962, + "latitudeCity": 31.914116, + "longitudeCity": 119.77976, + "nameCity": "Changzhou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "cityId": 1633, + "codeIataCity": "CZY", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -24.516666, + "longitudeCity": 139.53334, + "nameCity": "Cluny", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-8", + "cityId": 1634, + "codeIataCity": "CZZ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 37.1, + "longitudeCity": -102.583336, + "nameCity": "Campo", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 1635, + "codeIataCity": "DAA", + "codeIso2Country": "US", + "geonameId": 7257902, + "latitudeCity": 37.5, + "longitudeCity": -78.75, + "nameCity": "Fort Belvoir", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 1636, + "codeIataCity": "DAB", + "codeIso2Country": "US", + "geonameId": 4152872, + "latitudeCity": 29.185192, + "longitudeCity": -81.06083, + "nameCity": "Daytona Beach", + "timezone": "America/New_York" + }, + { + "GMT": "6", + "cityId": 1637, + "codeIataCity": "DAC", + "codeIso2Country": "BD", + "geonameId": 1185241, + "latitudeCity": 23.848648, + "longitudeCity": 90.405876, + "nameCity": "Dhaka", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "7", + "cityId": 1638, + "codeIataCity": "DAD", + "codeIso2Country": "VN", + "geonameId": 1583992, + "latitudeCity": 16.055399, + "longitudeCity": 108.20298, + "nameCity": "Da Nang", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "10", + "cityId": 1639, + "codeIataCity": "DAF", + "codeIso2Country": "PG", + "geonameId": 2098304, + "latitudeCity": -4.733333, + "longitudeCity": 144.95, + "nameCity": "Daup", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "cityId": 1640, + "codeIataCity": "DAG", + "codeIso2Country": "US", + "geonameId": 5341365, + "latitudeCity": 34.25, + "longitudeCity": -117.333336, + "nameCity": "Daggett", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "cityId": 1641, + "codeIataCity": "DAH", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 13.866667, + "longitudeCity": 46.13333, + "nameCity": "Dathina", + "timezone": "Asia/Aden" + }, + { + "GMT": "10", + "cityId": 1642, + "codeIataCity": "DAJ", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -9.433333, + "longitudeCity": 142.53334, + "nameCity": "Dauan Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "cityId": 1643, + "codeIataCity": "DAK", + "codeIso2Country": "EG", + "geonameId": 0, + "latitudeCity": 25.414722, + "longitudeCity": 28.999166, + "nameCity": "Dakhla Oasis", + "timezone": "Africa/Cairo" + }, + { + "GMT": "2", + "cityId": 1644, + "codeIataCity": "DAM", + "codeIso2Country": "SY", + "geonameId": 170654, + "latitudeCity": 33.41117, + "longitudeCity": 36.51249, + "nameCity": "Damascus", + "timezone": "Asia/Damascus" + }, + { + "GMT": "-5", + "cityId": 1645, + "codeIataCity": "DAN", + "codeIso2Country": "US", + "geonameId": 4755280, + "latitudeCity": 36.573055, + "longitudeCity": -79.335, + "nameCity": "Danville", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 1646, + "codeIataCity": "DAO", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.433056, + "longitudeCity": 147.84944, + "nameCity": "Dabo", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5.45", + "cityId": 1647, + "codeIataCity": "DAP", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 29.666668, + "longitudeCity": 80.5, + "nameCity": "Gokuleshwar", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "3", + "cityId": 1648, + "codeIataCity": "DAR", + "codeIso2Country": "TZ", + "geonameId": 160263, + "latitudeCity": -6.873533, + "longitudeCity": 39.20211, + "nameCity": "Dar Es Salaam", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-7", + "cityId": 1649, + "codeIataCity": "DAS", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 66.70306, + "longitudeCity": -119.712776, + "nameCity": "Great Bear Lake", + "timezone": "America/Yellowknife" + }, + { + "GMT": "8", + "cityId": 1650, + "codeIataCity": "DAT", + "codeIso2Country": "CN", + "geonameId": 2037799, + "latitudeCity": 40.05554, + "longitudeCity": 113.48136, + "nameCity": "Datong", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "cityId": 1651, + "codeIataCity": "DAU", + "codeIso2Country": "PG", + "geonameId": 2098329, + "latitudeCity": -9.08351, + "longitudeCity": 143.20605, + "nameCity": "Daru", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 1652, + "codeIataCity": "DAV", + "codeIso2Country": "PA", + "geonameId": 3711668, + "latitudeCity": 8.383333, + "longitudeCity": -82.433334, + "nameCity": "David", + "timezone": "America/Panama" + }, + { + "GMT": "8", + "cityId": 1653, + "codeIataCity": "DAX", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 31.135012, + "longitudeCity": 107.42689, + "nameCity": "Daxian", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 1654, + "codeIataCity": "DAY", + "codeIso2Country": "US", + "geonameId": 4509884, + "latitudeCity": 39.758948, + "longitudeCity": -84.191607, + "nameCity": "Dayton", + "timezone": "America/New_York" + }, + { + "GMT": "4.30", + "cityId": 1655, + "codeIataCity": "DAZ", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 38.466667, + "longitudeCity": 70.88333, + "nameCity": "Darwaz", + "timezone": "Asia/Kabul" + }, + { + "GMT": "5", + "cityId": 1656, + "codeIataCity": "DBA", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 28.883333, + "longitudeCity": 64.416664, + "nameCity": "Dalbandin", + "timezone": "Asia/Karachi" + }, + { + "GMT": "2", + "cityId": 1657, + "codeIataCity": "DBB", + "codeIso2Country": "EG", + "geonameId": 361612, + "latitudeCity": 30.924444, + "longitudeCity": 28.46139, + "nameCity": "Dabaa City", + "timezone": "Africa/Cairo" + }, + { + "GMT": "5.30", + "cityId": 1658, + "codeIataCity": "DBD", + "codeIso2Country": "IN", + "geonameId": 1272175, + "latitudeCity": 23.783333, + "longitudeCity": 86.45, + "nameCity": "Dhanbad", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "3", + "cityId": 1659, + "codeIataCity": "DBM", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 10.319444, + "longitudeCity": 37.743057, + "nameCity": "Debra Marcos", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-5", + "cityId": 1660, + "codeIataCity": "DBN", + "codeIso2Country": "US", + "geonameId": 4192205, + "latitudeCity": 32.561943, + "longitudeCity": -82.986115, + "nameCity": "Dublin", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 1661, + "codeIataCity": "DBO", + "codeIso2Country": "AU", + "geonameId": 2168305, + "latitudeCity": -32.218822, + "longitudeCity": 148.56956, + "nameCity": "Dubbo", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "cityId": 1662, + "codeIataCity": "DBP", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.283333, + "longitudeCity": 141.9, + "nameCity": "Debepare", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 1663, + "codeIataCity": "DBQ", + "codeIso2Country": "US", + "geonameId": 4854529, + "latitudeCity": 42.41, + "longitudeCity": -90.71083, + "nameCity": "Dubuque", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 1664, + "codeIataCity": "DBS", + "codeIso2Country": "US", + "geonameId": 5596475, + "latitudeCity": 44.166668, + "longitudeCity": -112.23333, + "nameCity": "Dubois", + "timezone": "America/Boise" + }, + { + "GMT": "3", + "cityId": 1665, + "codeIataCity": "DBT", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 11.968056, + "longitudeCity": 38.025276, + "nameCity": "Debra Tabor", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "5.30", + "cityId": 1666, + "codeIataCity": "DBU", + "codeIso2Country": "LK", + "geonameId": 0, + "latitudeCity": 7.86, + "longitudeCity": 80.651665, + "nameCity": "Dambula", + "timezone": "Asia/Colombo" + }, + { + "GMT": "1", + "cityId": 1667, + "codeIataCity": "DBV", + "codeIso2Country": "HR", + "geonameId": 3201047, + "latitudeCity": 42.56072, + "longitudeCity": 18.260616, + "nameCity": "Dubrovnik", + "timezone": "Europe/Zagreb" + }, + { + "GMT": "10", + "cityId": 1668, + "codeIataCity": "DBY", + "codeIso2Country": "AU", + "geonameId": 2146268, + "latitudeCity": -27.15, + "longitudeCity": 151.26666, + "nameCity": "Dalby", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 1669, + "codeIataCity": "DCI", + "codeIso2Country": "IT", + "geonameId": 2524865, + "latitudeCity": 39.35, + "longitudeCity": 8.966667, + "nameCity": "Decimomannu", + "timezone": "Europe/Rome" + }, + { + "GMT": "-9", + "cityId": 1670, + "codeIataCity": "DCK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 66.95, + "longitudeCity": -156.9, + "nameCity": "Dahl Creek", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 1671, + "codeIataCity": "DCM", + "codeIso2Country": "FR", + "geonameId": 3028263, + "latitudeCity": 43.555832, + "longitudeCity": 2.284167, + "nameCity": "Castres", + "timezone": "Europe/Paris" + }, + { + "GMT": "-8", + "cityId": 1672, + "codeIataCity": "DCP", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Cabin Plant", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 1673, + "codeIataCity": "DCR", + "codeIso2Country": "US", + "geonameId": 4920423, + "latitudeCity": 40.833332, + "longitudeCity": -84.933334, + "nameCity": "Decatur", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-5", + "cityId": 1674, + "codeIataCity": "DCT", + "codeIso2Country": "BS", + "geonameId": 0, + "latitudeCity": 22.25, + "longitudeCity": -75.75, + "nameCity": "Duncan Town", + "timezone": "America/Nassau" + }, + { + "GMT": "-6", + "cityId": 1675, + "codeIataCity": "DCU", + "codeIso2Country": "US", + "geonameId": 4058553, + "latitudeCity": 34.6, + "longitudeCity": -86.98333, + "nameCity": "Decatur", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 1676, + "codeIataCity": "DCY", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 38.70436, + "longitudeCity": -87.24733, + "nameCity": "Daocheng", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "cityId": 1677, + "codeIataCity": "DDC", + "codeIso2Country": "US", + "geonameId": 5445298, + "latitudeCity": 37.761665, + "longitudeCity": -99.965, + "nameCity": "Dodge City", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 1678, + "codeIataCity": "DDG", + "codeIso2Country": "CN", + "geonameId": 2037886, + "latitudeCity": 40.032368, + "longitudeCity": 124.28081, + "nameCity": "Dandong", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "cityId": 1679, + "codeIataCity": "DDI", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -20.266666, + "longitudeCity": 148.81667, + "nameCity": "Daydream Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 1680, + "codeIataCity": "DDM", + "codeIso2Country": "PG", + "geonameId": 2088122, + "latitudeCity": -8.483333, + "longitudeCity": 145.16667, + "nameCity": "Dodoima", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 1681, + "codeIataCity": "DDN", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -16.916668, + "longitudeCity": 141.3, + "nameCity": "Delta Downs", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-4", + "cityId": 1682, + "codeIataCity": "DDP", + "codeIso2Country": "PR", + "geonameId": 4564133, + "latitudeCity": 18.483334, + "longitudeCity": -66.15, + "nameCity": "Dorado", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "5", + "cityId": 1683, + "codeIataCity": "DDU", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 26.75, + "longitudeCity": 67.75, + "nameCity": "Dadu", + "timezone": "Asia/Karachi" + }, + { + "GMT": "5", + "cityId": 1684, + "codeIataCity": "DEA", + "codeIso2Country": "PK", + "geonameId": 1169825, + "latitudeCity": 29.960556, + "longitudeCity": 70.485275, + "nameCity": "Dera Ghazi Khan", + "timezone": "Asia/Karachi" + }, + { + "GMT": "1", + "cityId": 1685, + "codeIataCity": "DEB", + "codeIso2Country": "HU", + "geonameId": 721472, + "latitudeCity": 47.55, + "longitudeCity": 21.7, + "nameCity": "Debrecen", + "timezone": "Europe/Budapest" + }, + { + "GMT": "-6", + "cityId": 1686, + "codeIataCity": "DEC", + "codeIso2Country": "US", + "geonameId": 4236895, + "latitudeCity": 39.834167, + "longitudeCity": -88.868614, + "nameCity": "Decatur", + "timezone": "America/Chicago" + }, + { + "GMT": "5.30", + "cityId": 1687, + "codeIataCity": "DED", + "codeIso2Country": "IN", + "geonameId": 1273313, + "latitudeCity": 30.316668, + "longitudeCity": 78.03333, + "nameCity": "Dehra Dun", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "11", + "cityId": 1688, + "codeIataCity": "DEE", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 43.9584, + "longitudeCity": 145.683, + "nameCity": "Yuzhno-Kurilsk", + "timezone": "Asia/Sakhalin" + }, + { + "GMT": "3.30", + "cityId": 1689, + "codeIataCity": "DEF", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 32.438828, + "longitudeCity": 48.38468, + "nameCity": "Dezful", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-6", + "cityId": 1690, + "codeIataCity": "DEH", + "codeIso2Country": "US", + "geonameId": 4880889, + "latitudeCity": 43.3, + "longitudeCity": -91.8, + "nameCity": "Decorah", + "timezone": "America/Chicago" + }, + { + "GMT": "4", + "cityId": 1691, + "codeIataCity": "DEI", + "codeIso2Country": "SC", + "geonameId": 241274, + "latitudeCity": -3.8, + "longitudeCity": 55.666668, + "nameCity": "Denis Island", + "timezone": "Indian/Mahe" + }, + { + "GMT": "5.30", + "cityId": 1692, + "codeIataCity": "DEL", + "codeIso2Country": "IN", + "geonameId": 1273294, + "latitudeCity": 28.556555, + "longitudeCity": 77.10079, + "nameCity": "New Delhi", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "3", + "cityId": 1693, + "codeIataCity": "DEM", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 8.571111, + "longitudeCity": 34.88333, + "nameCity": "Dembidollo", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-7", + "cityId": 1694, + "codeIataCity": "DEN", + "codeIso2Country": "US", + "geonameId": 5419384, + "latitudeCity": 39.739154, + "longitudeCity": -104.984703, + "nameCity": "Denver", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "cityId": 1695, + "codeIataCity": "DEO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.3, + "longitudeCity": -83.166664, + "nameCity": "Dearborn", + "timezone": "America/Detroit" + }, + { + "GMT": "5.30", + "cityId": 1696, + "codeIataCity": "DEP", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 27.35, + "longitudeCity": 94.0, + "nameCity": "Deparizo", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "cityId": 1697, + "codeIataCity": "DER", + "codeIso2Country": "PG", + "geonameId": 2098218, + "latitudeCity": -6.1, + "longitudeCity": 147.08333, + "nameCity": "Derim", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "4", + "cityId": 1698, + "codeIataCity": "DES", + "codeIso2Country": "SC", + "geonameId": 0, + "latitudeCity": -5.683333, + "longitudeCity": 53.683334, + "nameCity": "Desroches", + "timezone": "Indian/Mahe" + }, + { + "GMT": "8", + "cityId": 1699, + "codeIataCity": "DEY", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Deyang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "cityId": 1700, + "codeIataCity": "DEZ", + "codeIso2Country": "SY", + "geonameId": 0, + "latitudeCity": 35.28755, + "longitudeCity": 40.186806, + "nameCity": "Deirezzor", + "timezone": "Asia/Damascus" + }, + { + "GMT": "-5", + "cityId": 1701, + "codeIataCity": "DFI", + "codeIso2Country": "US", + "geonameId": 4920423, + "latitudeCity": 41.283333, + "longitudeCity": -84.36667, + "nameCity": "Defiance", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "10", + "cityId": 1702, + "codeIataCity": "DFP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -16.0, + "longitudeCity": 143.33333, + "nameCity": "Drumduff", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "cityId": 1703, + "codeIataCity": "DFW", + "codeIso2Country": "US", + "geonameId": 4684888, + "latitudeCity": 32.802955, + "longitudeCity": -96.769923, + "nameCity": "Dallas", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 1704, + "codeIataCity": "DGA", + "codeIso2Country": "BZ", + "geonameId": 3582228, + "latitudeCity": 17.183332, + "longitudeCity": -88.566666, + "nameCity": "Dangriga", + "timezone": "America/Belize" + }, + { + "GMT": "-9", + "cityId": 1705, + "codeIataCity": "DGB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 58.083332, + "longitudeCity": -152.75, + "nameCity": "Danger Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "cityId": 1706, + "codeIataCity": "DGC", + "codeIso2Country": "ET", + "geonameId": 339594, + "latitudeCity": 8.233333, + "longitudeCity": 43.583332, + "nameCity": "Degahbur", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "8", + "cityId": 1707, + "codeIataCity": "DGD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -27.818056, + "longitudeCity": 117.30139, + "nameCity": "Dalgaranga", + "timezone": "Australia/Perth" + }, + { + "GMT": "10", + "cityId": 1708, + "codeIataCity": "DGE", + "codeIso2Country": "AU", + "geonameId": 2156404, + "latitudeCity": -32.566666, + "longitudeCity": 149.61667, + "nameCity": "Mudgee", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-8", + "cityId": 1709, + "codeIataCity": "DGF", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 50.166668, + "longitudeCity": -120.183334, + "nameCity": "Douglas Lake", + "timezone": "America/Vancouver" + }, + { + "GMT": "10", + "cityId": 1710, + "codeIataCity": "DGG", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": 68.03, + "longitudeCity": -162.9, + "nameCity": "Daugo", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "cityId": 1711, + "codeIataCity": "DGK", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": 6.90028, + "longitudeCity": 124.855, + "nameCity": "Dugong", + "timezone": "Africa/Maputo" + }, + { + "GMT": "5.30", + "cityId": 1712, + "codeIataCity": "DGM", + "codeIso2Country": "LK", + "geonameId": 0, + "latitudeCity": 23.03, + "longitudeCity": 113.74, + "nameCity": "Dongguan", + "timezone": "Asia/Colombo" + }, + { + "GMT": "-5", + "cityId": 1713, + "codeIataCity": "DGN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.2, + "longitudeCity": -88.683334, + "nameCity": "Dahlgren", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 1714, + "codeIataCity": "DGO", + "codeIso2Country": "MX", + "geonameId": 4011743, + "latitudeCity": 24.125, + "longitudeCity": -104.525, + "nameCity": "Durango", + "timezone": "America/Monterrey" + }, + { + "GMT": "2", + "cityId": 1715, + "codeIataCity": "DGP", + "codeIso2Country": "LV", + "geonameId": 460413, + "latitudeCity": 55.88333, + "longitudeCity": 26.533333, + "nameCity": "Daugavpils", + "timezone": "Europe/Riga" + }, + { + "GMT": "12", + "cityId": 1716, + "codeIataCity": "DGR", + "codeIso2Country": "NZ", + "geonameId": 2191911, + "latitudeCity": -35.933334, + "longitudeCity": 173.88333, + "nameCity": "Dargaville", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "8", + "cityId": 1717, + "codeIataCity": "DGT", + "codeIso2Country": "PH", + "geonameId": 1714201, + "latitudeCity": 9.332543, + "longitudeCity": 123.29601, + "nameCity": "Dumaguete", + "timezone": "Asia/Manila" + }, + { + "GMT": "0", + "cityId": 1718, + "codeIataCity": "DGU", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 12.466667, + "longitudeCity": -3.483333, + "nameCity": "Dedougou", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-7", + "cityId": 1719, + "codeIataCity": "DGW", + "codeIso2Country": "US", + "geonameId": 5823516, + "latitudeCity": 42.75, + "longitudeCity": -105.4, + "nameCity": "Douglas", + "timezone": "America/Denver" + }, + { + "GMT": "3", + "cityId": 1720, + "codeIataCity": "DHA", + "codeIso2Country": "SA", + "geonameId": 109323, + "latitudeCity": 26.39286, + "longitudeCity": 50.17475, + "nameCity": "Dhahran", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-8", + "cityId": 1721, + "codeIataCity": "DHB", + "codeIso2Country": "US", + "geonameId": 5795104, + "latitudeCity": 48.618397, + "longitudeCity": -123.00596, + "nameCity": "Deer Harbor", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 1722, + "codeIataCity": "DHD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -26.1, + "longitudeCity": 149.08333, + "nameCity": "Durham Downs", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5.45", + "cityId": 1723, + "codeIataCity": "DHI", + "codeIso2Country": "NP", + "geonameId": 1283467, + "latitudeCity": 28.683332, + "longitudeCity": 80.63333, + "nameCity": "Dhangarhi", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "3", + "cityId": 1724, + "codeIataCity": "DHL", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 13.7375, + "longitudeCity": 44.729168, + "nameCity": "Dhala", + "timezone": "Asia/Aden" + }, + { + "GMT": "5.30", + "cityId": 1725, + "codeIataCity": "DHM", + "codeIso2Country": "IN", + "geonameId": 1263967, + "latitudeCity": 32.3, + "longitudeCity": 76.26667, + "nameCity": "Dharamsala", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-6", + "cityId": 1726, + "codeIataCity": "DHN", + "codeIso2Country": "US", + "geonameId": 4059102, + "latitudeCity": 31.32, + "longitudeCity": -85.44833, + "nameCity": "Dothan", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 1727, + "codeIataCity": "DHO", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Horn River", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "cityId": 1728, + "codeIataCity": "DHR", + "codeIso2Country": "NL", + "geonameId": 2759794, + "latitudeCity": 52.95, + "longitudeCity": 4.75, + "nameCity": "Den Helder", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "-6", + "cityId": 1729, + "codeIataCity": "DHT", + "codeIso2Country": "US", + "geonameId": 5520552, + "latitudeCity": 36.066666, + "longitudeCity": -102.51667, + "nameCity": "Dalhart", + "timezone": "America/Chicago" + }, + { + "GMT": "5.30", + "cityId": 1730, + "codeIataCity": "DIB", + "codeIso2Country": "IN", + "geonameId": 1272648, + "latitudeCity": 27.482908, + "longitudeCity": 95.021065, + "nameCity": "Dibrugarh", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "3", + "cityId": 1731, + "codeIataCity": "DIE", + "codeIso2Country": "MG", + "geonameId": 1069128, + "latitudeCity": -12.346111, + "longitudeCity": 49.2925, + "nameCity": "Antsiranana", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "8", + "cityId": 1732, + "codeIataCity": "DIG", + "codeIso2Country": "CN", + "geonameId": 1906108, + "latitudeCity": 27.789722, + "longitudeCity": 99.67778, + "nameCity": "Diqing", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 1733, + "codeIataCity": "DIJ", + "codeIso2Country": "FR", + "geonameId": 3021372, + "latitudeCity": 47.270832, + "longitudeCity": 5.088889, + "nameCity": "Dijon", + "timezone": "Europe/Paris" + }, + { + "GMT": "-7", + "cityId": 1734, + "codeIataCity": "DIK", + "codeIso2Country": "US", + "geonameId": 5688789, + "latitudeCity": 46.833332, + "longitudeCity": -102.9, + "nameCity": "Dickinson", + "timezone": "America/Boise" + }, + { + "GMT": "9", + "cityId": 1735, + "codeIataCity": "DIL", + "codeIso2Country": "TL", + "geonameId": 1645457, + "latitudeCity": -8.549616, + "longitudeCity": 125.525, + "nameCity": "Dili", + "timezone": "Asia/Dili" + }, + { + "GMT": "0", + "cityId": 1736, + "codeIataCity": "DIM", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 6.75, + "longitudeCity": -4.766667, + "nameCity": "Dimbokro", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "7", + "cityId": 1737, + "codeIataCity": "DIN", + "codeIso2Country": "VN", + "geonameId": 1583477, + "latitudeCity": 21.383333, + "longitudeCity": 103.0, + "nameCity": "Dien Bien Phu", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-9", + "cityId": 1738, + "codeIataCity": "DIO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 65.75, + "longitudeCity": -168.95, + "nameCity": "Diomede Island", + "timezone": "America/Nome" + }, + { + "GMT": "0", + "cityId": 1739, + "codeIataCity": "DIP", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 12.033333, + "longitudeCity": 2.033333, + "nameCity": "Diapaga", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-3", + "cityId": 1740, + "codeIataCity": "DIQ", + "codeIso2Country": "BR", + "geonameId": 3465624, + "latitudeCity": -20.181389, + "longitudeCity": -44.869446, + "nameCity": "Divinopolis", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "3", + "cityId": 1741, + "codeIataCity": "DIR", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 9.61338, + "longitudeCity": 41.857994, + "nameCity": "Dire Dawa", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "1", + "cityId": 1742, + "codeIataCity": "DIS", + "codeIso2Country": "CG", + "geonameId": 2258261, + "latitudeCity": -4.205556, + "longitudeCity": 12.661389, + "nameCity": "Loubomo", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "5.30", + "cityId": 1743, + "codeIataCity": "DIU", + "codeIso2Country": "IN", + "geonameId": 1272502, + "latitudeCity": 20.716667, + "longitudeCity": 70.916664, + "nameCity": "Diu", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "0", + "cityId": 1744, + "codeIataCity": "DIV", + "codeIso2Country": "CI", + "geonameId": 2289887, + "latitudeCity": 5.8, + "longitudeCity": -5.25, + "nameCity": "Divo", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "5.30", + "cityId": 1745, + "codeIataCity": "DIW", + "codeIso2Country": "LK", + "geonameId": 0, + "latitudeCity": 5.990751, + "longitudeCity": 80.73323, + "nameCity": "Dickwella", + "timezone": "Asia/Colombo" + }, + { + "GMT": "3", + "cityId": 1746, + "codeIataCity": "DIY", + "codeIso2Country": "TR", + "geonameId": 316541, + "latitudeCity": 37.903873, + "longitudeCity": 40.20458, + "nameCity": "Diyarbakir", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "1", + "cityId": 1747, + "codeIataCity": "DJA", + "codeIso2Country": "BJ", + "geonameId": 0, + "latitudeCity": 9.7, + "longitudeCity": 1.666667, + "nameCity": "Djougou", + "timezone": "Africa/Porto-Novo" + }, + { + "GMT": "7", + "cityId": 1748, + "codeIataCity": "DJB", + "codeIso2Country": "ID", + "geonameId": 1642858, + "latitudeCity": -1.630432, + "longitudeCity": 103.63936, + "nameCity": "Jambi", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "1", + "cityId": 1749, + "codeIataCity": "DJE", + "codeIso2Country": "TN", + "geonameId": 7911272, + "latitudeCity": 33.87118, + "longitudeCity": 10.775145, + "nameCity": "Djerba", + "timezone": "Africa/Tunis" + }, + { + "GMT": "1", + "cityId": 1750, + "codeIataCity": "DJG", + "codeIso2Country": "DZ", + "geonameId": 2500275, + "latitudeCity": 24.465279, + "longitudeCity": 9.488889, + "nameCity": "Djanet", + "timezone": "Africa/Algiers" + }, + { + "GMT": "9", + "cityId": 1751, + "codeIataCity": "DJJ", + "codeIso2Country": "ID", + "geonameId": 2082460, + "latitudeCity": -2.569887, + "longitudeCity": 140.51299, + "nameCity": "Jayapura", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "cityId": 1752, + "codeIataCity": "DJM", + "codeIso2Country": "CG", + "geonameId": 0, + "latitudeCity": -2.533333, + "longitudeCity": 14.75, + "nameCity": "Djambala", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-9", + "cityId": 1753, + "codeIataCity": "DJN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 64.03333, + "longitudeCity": -145.68333, + "nameCity": "Delta Junction", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "cityId": 1754, + "codeIataCity": "DJO", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 6.866944, + "longitudeCity": -6.466667, + "nameCity": "Daloa", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "0", + "cityId": 1755, + "codeIataCity": "DJU", + "codeIso2Country": "IS", + "geonameId": 6354943, + "latitudeCity": 64.650276, + "longitudeCity": -14.268333, + "nameCity": "Djupivogur", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "1", + "cityId": 1756, + "codeIataCity": "DKA", + "codeIso2Country": "NG", + "geonameId": 0, + "latitudeCity": 13.003712, + "longitudeCity": 7.660803, + "nameCity": "Katsina", + "timezone": "Africa/Lagos" + }, + { + "GMT": "10", + "cityId": 1757, + "codeIataCity": "DKI", + "codeIso2Country": "AU", + "geonameId": 8358875, + "latitudeCity": -17.941668, + "longitudeCity": 146.13667, + "nameCity": "Dunk Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 1758, + "codeIataCity": "DKK", + "codeIso2Country": "US", + "geonameId": 5115495, + "latitudeCity": 42.483334, + "longitudeCity": -79.333336, + "nameCity": "Dunkirk", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "cityId": 1759, + "codeIataCity": "DKL", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Kiwigana Lodge", + "timezone": "America/Vancouver" + }, + { + "GMT": "0", + "cityId": 1760, + "codeIataCity": "DKR", + "codeIso2Country": "SN", + "geonameId": 2253354, + "latitudeCity": 14.744975, + "longitudeCity": -17.490194, + "nameCity": "Dakar", + "timezone": "Africa/Dakar" + }, + { + "GMT": "7", + "cityId": 1761, + "codeIataCity": "DKS", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 73.51667, + "longitudeCity": 80.36667, + "nameCity": "Dikson", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "9.30", + "cityId": 1762, + "codeIataCity": "DKV", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -24.866667, + "longitudeCity": 129.08333, + "nameCity": "Docker River", + "timezone": "Australia/Darwin" + }, + { + "GMT": "1", + "cityId": 1763, + "codeIataCity": "DLA", + "codeIso2Country": "CM", + "geonameId": 2232593, + "latitudeCity": 4.01346, + "longitudeCity": 9.717018, + "nameCity": "Douala", + "timezone": "Africa/Douala" + }, + { + "GMT": "10", + "cityId": 1764, + "codeIataCity": "DLB", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Dalbertis", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 1765, + "codeIataCity": "DLC", + "codeIso2Country": "CN", + "geonameId": 1814087, + "latitudeCity": 38.96102, + "longitudeCity": 121.53999, + "nameCity": "Dalian", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 1766, + "codeIataCity": "DLE", + "codeIso2Country": "FR", + "geonameId": 3021372, + "latitudeCity": 47.05, + "longitudeCity": 5.433333, + "nameCity": "Dole", + "timezone": "Europe/Paris" + }, + { + "GMT": "-9", + "cityId": 1767, + "codeIataCity": "DLG", + "codeIso2Country": "US", + "geonameId": 5860695, + "latitudeCity": 59.04246, + "longitudeCity": -158.51472, + "nameCity": "Dillingham", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 1768, + "codeIataCity": "DLH", + "codeIso2Country": "US", + "geonameId": 5024719, + "latitudeCity": 46.786672, + "longitudeCity": -92.100485, + "nameCity": "Duluth", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "cityId": 1769, + "codeIataCity": "DLI", + "codeIso2Country": "VN", + "geonameId": 1584071, + "latitudeCity": 11.749689, + "longitudeCity": 108.37603, + "nameCity": "Dalat", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "9.30", + "cityId": 1770, + "codeIataCity": "DLK", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -29.016666, + "longitudeCity": 139.46666, + "nameCity": "Dulkaninna", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-5", + "cityId": 1771, + "codeIataCity": "DLL", + "codeIso2Country": "US", + "geonameId": 4588718, + "latitudeCity": 34.416668, + "longitudeCity": -79.36667, + "nameCity": "Dillon", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 1772, + "codeIataCity": "DLM", + "codeIso2Country": "TR", + "geonameId": 447273, + "latitudeCity": 36.716667, + "longitudeCity": 28.783333, + "nameCity": "Dalaman", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-7", + "cityId": 1773, + "codeIataCity": "DLN", + "codeIso2Country": "US", + "geonameId": 5648657, + "latitudeCity": 45.216667, + "longitudeCity": -112.63333, + "nameCity": "Dillon", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "cityId": 1774, + "codeIataCity": "DLO", + "codeIso2Country": "US", + "geonameId": 5554428, + "latitudeCity": 55.122223, + "longitudeCity": -132.05, + "nameCity": "Dolomi", + "timezone": "America/Sitka" + }, + { + "GMT": "-8", + "cityId": 1775, + "codeIataCity": "DLS", + "codeIso2Country": "US", + "geonameId": 5756304, + "latitudeCity": 45.6, + "longitudeCity": -121.166664, + "nameCity": "The Dalles", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "cityId": 1776, + "codeIataCity": "DLU", + "codeIso2Country": "CN", + "geonameId": 1814093, + "latitudeCity": 25.65135, + "longitudeCity": 100.32316, + "nameCity": "Dali City", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9.30", + "cityId": 1777, + "codeIataCity": "DLV", + "codeIso2Country": "AU", + "geonameId": 2073124, + "latitudeCity": -12.566667, + "longitudeCity": 130.63333, + "nameCity": "Delissaville", + "timezone": "Australia/Darwin" + }, + { + "GMT": "11", + "cityId": 1778, + "codeIataCity": "DLY", + "codeIso2Country": "VU", + "geonameId": 2136256, + "latitudeCity": -18.7, + "longitudeCity": 169.15, + "nameCity": "Dillons Bay", + "timezone": "Pacific/Efate" + }, + { + "GMT": "8", + "cityId": 1779, + "codeIataCity": "DLZ", + "codeIso2Country": "MN", + "geonameId": 0, + "latitudeCity": 43.966667, + "longitudeCity": 104.683334, + "nameCity": "Dalanzadgad", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "6", + "cityId": 1780, + "codeIataCity": "DMB", + "codeIso2Country": "KZ", + "geonameId": 0, + "latitudeCity": 42.9, + "longitudeCity": 71.36667, + "nameCity": "Zhambyl", + "timezone": "Asia/Almaty" + }, + { + "GMT": "10", + "cityId": 1781, + "codeIataCity": "DMD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.939201, + "longitudeCity": 138.8216, + "nameCity": "Doomadgee", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "cityId": 1782, + "codeIataCity": "DMM", + "codeIso2Country": "SA", + "geonameId": 109323, + "latitudeCity": 26.471111, + "longitudeCity": 49.79778, + "nameCity": "Dammam", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-7", + "cityId": 1783, + "codeIataCity": "DMN", + "codeIso2Country": "US", + "geonameId": 5464806, + "latitudeCity": 32.266666, + "longitudeCity": -107.75, + "nameCity": "Deming", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 1784, + "codeIataCity": "DMO", + "codeIso2Country": "US", + "geonameId": 4408000, + "latitudeCity": 38.704166, + "longitudeCity": -93.18056, + "nameCity": "Sedalia", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 1785, + "codeIataCity": "DMR", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 14.533333, + "longitudeCity": 44.433334, + "nameCity": "Dhamar", + "timezone": "Asia/Aden" + }, + { + "GMT": "-4", + "cityId": 1786, + "codeIataCity": "DMT", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -14.5, + "longitudeCity": -56.5, + "nameCity": "Diamantino", + "timezone": "America/Cuiaba" + }, + { + "GMT": "5.30", + "cityId": 1787, + "codeIataCity": "DMU", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 25.879816, + "longitudeCity": 93.772865, + "nameCity": "Dimapur", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "cityId": 1788, + "codeIataCity": "DNB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -16.010834, + "longitudeCity": 142.39055, + "nameCity": "Dunbar", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "0", + "cityId": 1789, + "codeIataCity": "DND", + "codeIso2Country": "GB", + "geonameId": 2650752, + "latitudeCity": 56.461428, + "longitudeCity": -2.968111, + "nameCity": "Dundee", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "cityId": 1790, + "codeIataCity": "DNF", + "codeIso2Country": "LY", + "geonameId": 0, + "latitudeCity": 32.55, + "longitudeCity": 22.766666, + "nameCity": "Derna", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "8", + "cityId": 1791, + "codeIataCity": "DNG", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -15.383333, + "longitudeCity": 126.3, + "nameCity": "Doongan", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "cityId": 1792, + "codeIataCity": "DNH", + "codeIso2Country": "CN", + "geonameId": 1529531, + "latitudeCity": 40.2, + "longitudeCity": 94.683334, + "nameCity": "Dunhuang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "cityId": 1793, + "codeIataCity": "DNI", + "codeIso2Country": "SD", + "geonameId": 0, + "latitudeCity": 14.393889, + "longitudeCity": 33.543888, + "nameCity": "Wad Medani", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "2", + "cityId": 1794, + "codeIataCity": "DNK", + "codeIso2Country": "UA", + "geonameId": 709930, + "latitudeCity": 48.36874, + "longitudeCity": 35.09446, + "nameCity": "Dnepropetrovsk", + "timezone": "Europe/Kiev" + }, + { + "GMT": "8", + "cityId": 1795, + "codeIataCity": "DNM", + "codeIso2Country": "AU", + "geonameId": 2061676, + "latitudeCity": -25.916668, + "longitudeCity": 113.53333, + "nameCity": "Denham", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "cityId": 1796, + "codeIataCity": "DNN", + "codeIso2Country": "US", + "geonameId": 4185657, + "latitudeCity": 34.769802, + "longitudeCity": -84.970223, + "nameCity": "Dalton", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 1797, + "codeIataCity": "DNO", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -11.616667, + "longitudeCity": -46.85, + "nameCity": "Dianopolis", + "timezone": "America/Araguaina" + }, + { + "GMT": "5.45", + "cityId": 1798, + "codeIataCity": "DNP", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 28.116667, + "longitudeCity": 82.316666, + "nameCity": "Dang", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "10", + "cityId": 1799, + "codeIataCity": "DNQ", + "codeIso2Country": "AU", + "geonameId": 2169068, + "latitudeCity": -35.56, + "longitudeCity": 144.95166, + "nameCity": "Deniliquin", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "cityId": 1800, + "codeIataCity": "DNR", + "codeIso2Country": "FR", + "geonameId": 2978640, + "latitudeCity": 48.587776, + "longitudeCity": -2.083611, + "nameCity": "Dinard", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "cityId": 1801, + "codeIataCity": "DNS", + "codeIso2Country": "US", + "geonameId": 5074472, + "latitudeCity": 42.016666, + "longitudeCity": -95.35, + "nameCity": "Denison", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 1802, + "codeIataCity": "DNU", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.15, + "longitudeCity": 146.66667, + "nameCity": "Dinangat", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 1803, + "codeIataCity": "DNV", + "codeIso2Country": "US", + "geonameId": 4889426, + "latitudeCity": 40.197224, + "longitudeCity": -87.59695, + "nameCity": "Danville", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 1804, + "codeIataCity": "DNX", + "codeIso2Country": "SD", + "geonameId": 0, + "latitudeCity": 14.1, + "longitudeCity": 33.066666, + "nameCity": "Dinder", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "3", + "cityId": 1805, + "codeIataCity": "DNZ", + "codeIso2Country": "TR", + "geonameId": 317109, + "latitudeCity": 37.787224, + "longitudeCity": 29.703333, + "nameCity": "Denizli", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3", + "cityId": 1806, + "codeIataCity": "DOA", + "codeIso2Country": "MG", + "geonameId": 1065501, + "latitudeCity": -14.366667, + "longitudeCity": 49.5, + "nameCity": "Doany", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "9", + "cityId": 1807, + "codeIataCity": "DOB", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -5.75, + "longitudeCity": 134.0, + "nameCity": "Dobo", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "0", + "cityId": 1808, + "codeIataCity": "DOC", + "codeIso2Country": "GB", + "geonameId": 2636321, + "latitudeCity": 57.86667, + "longitudeCity": -4.033333, + "nameCity": "Dornoch", + "timezone": "Europe/London" + }, + { + "GMT": "3", + "cityId": 1809, + "codeIataCity": "DOD", + "codeIso2Country": "TZ", + "geonameId": 160196, + "latitudeCity": -6.166667, + "longitudeCity": 35.75028, + "nameCity": "Dodoma", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-3", + "cityId": 1810, + "codeIataCity": "DOE", + "codeIso2Country": "SR", + "geonameId": 3384316, + "latitudeCity": 4.016667, + "longitudeCity": -55.483334, + "nameCity": "Djoemoe", + "timezone": "America/Paramaribo" + }, + { + "GMT": "-9", + "cityId": 1811, + "codeIataCity": "DOF", + "codeIso2Country": "US", + "geonameId": 5845812, + "latitudeCity": 55.2125, + "longitudeCity": -132.26666, + "nameCity": "Dora Bay", + "timezone": "America/Juneau" + }, + { + "GMT": "3", + "cityId": 1812, + "codeIataCity": "DOG", + "codeIso2Country": "SD", + "geonameId": 0, + "latitudeCity": 19.183332, + "longitudeCity": 30.45, + "nameCity": "Dongola", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "3", + "cityId": 1813, + "codeIataCity": "DOH", + "codeIso2Country": "QA", + "geonameId": 290030, + "latitudeCity": 25.267569, + "longitudeCity": 51.558067, + "nameCity": "Doha", + "timezone": "Asia/Qatar" + }, + { + "GMT": "10", + "cityId": 1814, + "codeIataCity": "DOI", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -10.716667, + "longitudeCity": 150.71666, + "nameCity": "Doini", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "cityId": 1815, + "codeIataCity": "DOK", + "codeIso2Country": "UA", + "geonameId": 709717, + "latitudeCity": 48.083332, + "longitudeCity": 37.75, + "nameCity": "Donetsk", + "timezone": "Europe/Kiev" + }, + { + "GMT": "1", + "cityId": 1816, + "codeIataCity": "DOL", + "codeIso2Country": "FR", + "geonameId": 3021668, + "latitudeCity": 49.362778, + "longitudeCity": 0.164167, + "nameCity": "Deauville", + "timezone": "Europe/Paris" + }, + { + "GMT": "-4", + "cityId": 1817, + "codeIataCity": "DOM", + "codeIso2Country": "DM", + "geonameId": 3575721, + "latitudeCity": 15.414999, + "longitudeCity": -61.370976, + "nameCity": "Dominica", + "timezone": "America/Dominica" + }, + { + "GMT": "-6", + "cityId": 1818, + "codeIataCity": "DON", + "codeIso2Country": "GT", + "geonameId": 3595725, + "latitudeCity": 17.633333, + "longitudeCity": -89.666664, + "nameCity": "Dos Lagunas", + "timezone": "America/Guatemala" + }, + { + "GMT": "10", + "cityId": 1819, + "codeIataCity": "DOO", + "codeIso2Country": "PG", + "geonameId": 2088122, + "latitudeCity": -9.266667, + "longitudeCity": 147.55, + "nameCity": "Dorobisoro", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5.45", + "cityId": 1820, + "codeIataCity": "DOP", + "codeIso2Country": "NP", + "geonameId": 7972352, + "latitudeCity": 29.0, + "longitudeCity": 82.816666, + "nameCity": "Dolpa", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "0", + "cityId": 1821, + "codeIataCity": "DOR", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 14.033333, + "longitudeCity": -0.033333, + "nameCity": "Dori", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "10", + "cityId": 1822, + "codeIataCity": "DOS", + "codeIso2Country": "PG", + "geonameId": 2098120, + "latitudeCity": -5.533333, + "longitudeCity": 154.83333, + "nameCity": "Dios", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "cityId": 1823, + "codeIataCity": "DOU", + "codeIso2Country": "BR", + "geonameId": 3464460, + "latitudeCity": -22.202778, + "longitudeCity": -54.925556, + "nameCity": "Dourados", + "timezone": "America/Campo_Grande" + }, + { + "GMT": "-5", + "cityId": 1824, + "codeIataCity": "DOV", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.128613, + "longitudeCity": -75.464165, + "nameCity": "Dover-Cheswold", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 1825, + "codeIataCity": "DOX", + "codeIso2Country": "AU", + "geonameId": 2072691, + "latitudeCity": -29.25, + "longitudeCity": 114.933334, + "nameCity": "Dongara", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "cityId": 1826, + "codeIataCity": "DOY", + "codeIso2Country": "CN", + "geonameId": 1812101, + "latitudeCity": 37.518333, + "longitudeCity": 118.78778, + "nameCity": "Dongying", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 1827, + "codeIataCity": "DPE", + "codeIso2Country": "FR", + "geonameId": 3021411, + "latitudeCity": 49.961388, + "longitudeCity": 1.241111, + "nameCity": "Dieppe", + "timezone": "Europe/Paris" + }, + { + "GMT": "-7", + "cityId": 1828, + "codeIataCity": "DPG", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 40.233334, + "longitudeCity": -112.75, + "nameCity": "Dugway", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "cityId": 1829, + "codeIataCity": "DPK", + "codeIso2Country": "US", + "geonameId": 5128581, + "latitudeCity": 41.0, + "longitudeCity": -73.53333, + "nameCity": "Deer Park", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 1830, + "codeIataCity": "DPL", + "codeIso2Country": "PH", + "geonameId": 1714674, + "latitudeCity": 8.599978, + "longitudeCity": 123.34418, + "nameCity": "Dipolog", + "timezone": "Asia/Manila" + }, + { + "GMT": "10", + "cityId": 1831, + "codeIataCity": "DPO", + "codeIso2Country": "AU", + "geonameId": 2168943, + "latitudeCity": -41.172054, + "longitudeCity": 146.42754, + "nameCity": "Devonport", + "timezone": "Australia/Hobart" + }, + { + "GMT": "8", + "cityId": 1832, + "codeIataCity": "DPS", + "codeIso2Country": "ID", + "geonameId": 1645528, + "latitudeCity": -8.74446, + "longitudeCity": 115.16331, + "nameCity": "Denpasar", + "timezone": "Asia/Makassar" + }, + { + "GMT": "10", + "cityId": 1833, + "codeIataCity": "DPU", + "codeIso2Country": "PG", + "geonameId": 2097912, + "latitudeCity": -5.883333, + "longitudeCity": 145.75, + "nameCity": "Dumpu", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 1834, + "codeIataCity": "DQA", + "codeIso2Country": "CN", + "geonameId": 2037860, + "latitudeCity": 46.58736, + "longitudeCity": 125.22841, + "nameCity": "Daqing", + "timezone": "Asia/Harbin" + }, + { + "GMT": "-8", + "cityId": 1835, + "codeIataCity": "DRA", + "codeIso2Country": "US", + "geonameId": 5508158, + "latitudeCity": 36.666668, + "longitudeCity": -115.96667, + "nameCity": "Mercury", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "cityId": 1836, + "codeIataCity": "DRB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.303678, + "longitudeCity": 123.630105, + "nameCity": "Derby", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "cityId": 1837, + "codeIataCity": "DRC", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -17.833332, + "longitudeCity": 20.7, + "nameCity": "Dirico", + "timezone": "Africa/Luanda" + }, + { + "GMT": "10", + "cityId": 1838, + "codeIataCity": "DRD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -16.5, + "longitudeCity": 142.33333, + "nameCity": "Dorunda Station", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 1839, + "codeIataCity": "DRE", + "codeIso2Country": "US", + "geonameId": 5000460, + "latitudeCity": 46.016666, + "longitudeCity": -83.75, + "nameCity": "Drummond Island", + "timezone": "America/Detroit" + }, + { + "GMT": "-9", + "cityId": 1840, + "codeIataCity": "DRF", + "codeIso2Country": "US", + "geonameId": 5860978, + "latitudeCity": 60.583332, + "longitudeCity": -152.15, + "nameCity": "Drift River", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 1841, + "codeIataCity": "DRG", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 66.0712, + "longitudeCity": -162.75989, + "nameCity": "Deering", + "timezone": "America/Nome" + }, + { + "GMT": "9", + "cityId": 1842, + "codeIataCity": "DRH", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.25, + "longitudeCity": 138.56667, + "nameCity": "Dabra", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-6", + "cityId": 1843, + "codeIataCity": "DRI", + "codeIso2Country": "US", + "geonameId": 4330236, + "latitudeCity": 30.85, + "longitudeCity": -93.28333, + "nameCity": "De Ridder", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 1844, + "codeIataCity": "DRJ", + "codeIso2Country": "SR", + "geonameId": 3384285, + "latitudeCity": 4.116667, + "longitudeCity": -54.666668, + "nameCity": "Drietabbetje", + "timezone": "America/Paramaribo" + }, + { + "GMT": "-6", + "cityId": 1845, + "codeIataCity": "DRK", + "codeIso2Country": "CR", + "geonameId": 8014933, + "latitudeCity": 8.71962, + "longitudeCity": -83.6446, + "nameCity": "Drake Bay", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "10", + "cityId": 1846, + "codeIataCity": "DRN", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -28.586666, + "longitudeCity": 148.21527, + "nameCity": "Dirranbandi", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-7", + "cityId": 1847, + "codeIataCity": "DRO", + "codeIso2Country": "US", + "geonameId": 5420241, + "latitudeCity": 37.27528, + "longitudeCity": -107.880067, + "nameCity": "Durango", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "cityId": 1848, + "codeIataCity": "DRR", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -25.616667, + "longitudeCity": 140.21666, + "nameCity": "Durrie", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 1849, + "codeIataCity": "DRS", + "codeIso2Country": "DE", + "geonameId": 2935022, + "latitudeCity": 51.13, + "longitudeCity": 13.77, + "nameCity": "Dresden", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "cityId": 1850, + "codeIataCity": "DRT", + "codeIso2Country": "US", + "geonameId": 5520076, + "latitudeCity": 29.370886, + "longitudeCity": -100.895867, + "nameCity": "Del Rio", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 1851, + "codeIataCity": "DRU", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 46.666668, + "longitudeCity": -113.15, + "nameCity": "Drummond", + "timezone": "America/Denver" + }, + { + "GMT": "5", + "cityId": 1852, + "codeIataCity": "DRV", + "codeIso2Country": "MV", + "geonameId": 0, + "latitudeCity": 5.156111, + "longitudeCity": 73.13028, + "nameCity": "Dharavandhoo Island", + "timezone": "Indian/Maldives" + }, + { + "GMT": "9.30", + "cityId": 1853, + "codeIataCity": "DRW", + "codeIso2Country": "AU", + "geonameId": 2073124, + "latitudeCity": -12.46282, + "longitudeCity": 130.841769, + "nameCity": "Darwin", + "timezone": "Australia/Darwin" + }, + { + "GMT": "8", + "cityId": 1854, + "codeIataCity": "DRY", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -15.666667, + "longitudeCity": 126.416664, + "nameCity": "Drysdale River", + "timezone": "Australia/Perth" + }, + { + "GMT": "0", + "cityId": 1855, + "codeIataCity": "DSA", + "codeIso2Country": "GB", + "geonameId": 2633352, + "latitudeCity": 53.523041, + "longitudeCity": -1.133762, + "nameCity": "Doncaster", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 1856, + "codeIataCity": "DSC", + "codeIso2Country": "CM", + "geonameId": 0, + "latitudeCity": 5.833333, + "longitudeCity": 10.091667, + "nameCity": "Dschang", + "timezone": "Africa/Douala" + }, + { + "GMT": "-4", + "cityId": 1857, + "codeIataCity": "DSD", + "codeIso2Country": "GP", + "geonameId": 0, + "latitudeCity": 16.333332, + "longitudeCity": -61.016666, + "nameCity": "La Desirade", + "timezone": "America/Guadeloupe" + }, + { + "GMT": "3", + "cityId": 1858, + "codeIataCity": "DSE", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 11.075, + "longitudeCity": 39.71528, + "nameCity": "Dessie", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "8", + "cityId": 1859, + "codeIataCity": "DSG", + "codeIso2Country": "PH", + "geonameId": 1714887, + "latitudeCity": 14.0, + "longitudeCity": 120.0, + "nameCity": "Dilasag", + "timezone": "Asia/Manila" + }, + { + "GMT": "-6", + "cityId": 1860, + "codeIataCity": "DSI", + "codeIso2Country": "US", + "geonameId": 4153188, + "latitudeCity": 30.383333, + "longitudeCity": -86.5, + "nameCity": "Destin", + "timezone": "America/Chicago" + }, + { + "GMT": "5", + "cityId": 1861, + "codeIataCity": "DSK", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 31.916668, + "longitudeCity": 70.9, + "nameCity": "Dera Ismail Khan", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-6", + "cityId": 1862, + "codeIataCity": "DSM", + "codeIso2Country": "US", + "geonameId": 4853828, + "latitudeCity": 41.532433, + "longitudeCity": -93.64809, + "nameCity": "Des Moines", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 1863, + "codeIataCity": "DSN", + "codeIso2Country": "CN", + "geonameId": 1812256, + "latitudeCity": 39.85, + "longitudeCity": 110.03333, + "nameCity": "Ordos (Dongsheng)", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8.30", + "cityId": 1864, + "codeIataCity": "DSO", + "codeIso2Country": "KP", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Sondok", + "timezone": "Asia/Pyongyang" + }, + { + "GMT": "-5", + "cityId": 1865, + "codeIataCity": "DSV", + "codeIso2Country": "US", + "geonameId": 5134086, + "latitudeCity": 42.566666, + "longitudeCity": -77.7, + "nameCity": "Dansville", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 1866, + "codeIataCity": "DTA", + "codeIso2Country": "US", + "geonameId": 5545710, + "latitudeCity": 39.38333, + "longitudeCity": -112.5, + "nameCity": "Delta", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "cityId": 1867, + "codeIataCity": "DTD", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 0.621316, + "longitudeCity": 116.60037, + "nameCity": "Datadawai", + "timezone": "Asia/Makassar" + }, + { + "GMT": "8", + "cityId": 1868, + "codeIataCity": "DTE", + "codeIso2Country": "PH", + "geonameId": 1698829, + "latitudeCity": 14.133333, + "longitudeCity": 122.98333, + "nameCity": "Daet", + "timezone": "Asia/Manila" + }, + { + "GMT": "-8", + "cityId": 1869, + "codeIataCity": "DTH", + "codeIso2Country": "US", + "geonameId": 5367846, + "latitudeCity": 36.5, + "longitudeCity": -117.0, + "nameCity": "Death Valley", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "cityId": 1870, + "codeIataCity": "DTI", + "codeIso2Country": "BR", + "geonameId": 3464728, + "latitudeCity": -18.230804, + "longitudeCity": -43.647846, + "nameCity": "Diamantina", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "cityId": 1871, + "codeIataCity": "DTL", + "codeIso2Country": "US", + "geonameId": 5024237, + "latitudeCity": 46.82639, + "longitudeCity": -95.88611, + "nameCity": "Detroit Lakes", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 1872, + "codeIataCity": "DTM", + "codeIso2Country": "DE", + "geonameId": 2935517, + "latitudeCity": 51.514828, + "longitudeCity": 7.613139, + "nameCity": "Dortmund", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-8", + "cityId": 1873, + "codeIataCity": "DTR", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 48.516666, + "longitudeCity": -122.833336, + "nameCity": "Decatur Island", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 1874, + "codeIataCity": "DTT", + "codeIso2Country": "US", + "geonameId": 4990729, + "latitudeCity": 42.331427, + "longitudeCity": -83.045754, + "nameCity": "Detroit", + "timezone": "America/Detroit" + }, + { + "GMT": "-6", + "cityId": 1875, + "codeIataCity": "DUA", + "codeIso2Country": "US", + "geonameId": 4535414, + "latitudeCity": 33.983334, + "longitudeCity": -96.416664, + "nameCity": "Durant", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 1876, + "codeIataCity": "DUB", + "codeIso2Country": "IE", + "geonameId": 2964574, + "latitudeCity": 53.42728, + "longitudeCity": -6.24357, + "nameCity": "Dublin", + "timezone": "Europe/Dublin" + }, + { + "GMT": "-6", + "cityId": 1877, + "codeIataCity": "DUC", + "codeIso2Country": "US", + "geonameId": 4529469, + "latitudeCity": 34.47222, + "longitudeCity": -97.959724, + "nameCity": "Duncan", + "timezone": "America/Chicago" + }, + { + "GMT": "12", + "cityId": 1878, + "codeIataCity": "DUD", + "codeIso2Country": "NZ", + "geonameId": 2191562, + "latitudeCity": -45.92387, + "longitudeCity": 170.19905, + "nameCity": "Dunedin", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "1", + "cityId": 1879, + "codeIataCity": "DUE", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -7.4, + "longitudeCity": 20.816668, + "nameCity": "Dundo", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-5", + "cityId": 1880, + "codeIataCity": "DUF", + "codeIso2Country": "US", + "geonameId": 4791259, + "latitudeCity": 36.25833, + "longitudeCity": -75.78889, + "nameCity": "Corolla", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 1881, + "codeIataCity": "DUG", + "codeIso2Country": "US", + "geonameId": 5293083, + "latitudeCity": 31.344547, + "longitudeCity": -109.545345, + "nameCity": "Douglas", + "timezone": "America/Phoenix" + }, + { + "GMT": "1", + "cityId": 1882, + "codeIataCity": "DUI", + "codeIso2Country": "DE", + "geonameId": 2934691, + "latitudeCity": 51.4333, + "longitudeCity": 6.75, + "nameCity": "Duisburg", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "cityId": 1883, + "codeIataCity": "DUJ", + "codeIso2Country": "US", + "geonameId": 5181828, + "latitudeCity": 41.178333, + "longitudeCity": -78.89889, + "nameCity": "Du Bois", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 1884, + "codeIataCity": "DUK", + "codeIso2Country": "ZA", + "geonameId": 0, + "latitudeCity": -28.366667, + "longitudeCity": 32.234165, + "nameCity": "Dukuduk", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "7", + "cityId": 1885, + "codeIataCity": "DUM", + "codeIso2Country": "ID", + "geonameId": 1645133, + "latitudeCity": 1.583333, + "longitudeCity": 101.46667, + "nameCity": "Dumai", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-3", + "cityId": 1886, + "codeIataCity": "DUN", + "codeIso2Country": "GL", + "geonameId": 0, + "latitudeCity": 76.577225, + "longitudeCity": -68.77556, + "nameCity": "Dundas", + "timezone": "America/Godthab" + }, + { + "GMT": "-8", + "cityId": 1887, + "codeIataCity": "DUQ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 48.783333, + "longitudeCity": -123.7, + "nameCity": "Duncan/Quam", + "timezone": "America/Vancouver" + }, + { + "GMT": "2", + "cityId": 1888, + "codeIataCity": "DUR", + "codeIso2Country": "ZA", + "geonameId": 1007311, + "latitudeCity": -29.857876, + "longitudeCity": 31.027581, + "nameCity": "Durban", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "1", + "cityId": 1889, + "codeIataCity": "DUS", + "codeIso2Country": "DE", + "geonameId": 2934246, + "latitudeCity": 51.224943, + "longitudeCity": 6.775652, + "nameCity": "Dusseldorf", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-9", + "cityId": 1890, + "codeIataCity": "DUT", + "codeIso2Country": "US", + "geonameId": 5861117, + "latitudeCity": 53.89446, + "longitudeCity": -166.54224, + "nameCity": "Dutch Harbor", + "timezone": "America/Nome" + }, + { + "GMT": "3", + "cityId": 1891, + "codeIataCity": "DVD", + "codeIso2Country": "MG", + "geonameId": 1078237, + "latitudeCity": -22.078333, + "longitudeCity": 43.259167, + "nameCity": "Andavadoaka", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-7", + "cityId": 1892, + "codeIataCity": "DVK", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 64.51139, + "longitudeCity": -110.289444, + "nameCity": "Diavik", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-6", + "cityId": 1893, + "codeIataCity": "DVL", + "codeIso2Country": "US", + "geonameId": 5058868, + "latitudeCity": 48.113056, + "longitudeCity": -98.9075, + "nameCity": "Devils Lake", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 1894, + "codeIataCity": "DVN", + "codeIso2Country": "US", + "geonameId": 4853423, + "latitudeCity": 41.610558, + "longitudeCity": -90.58861, + "nameCity": "Davenport", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 1895, + "codeIataCity": "DVO", + "codeIso2Country": "PH", + "geonameId": 1715348, + "latitudeCity": 7.130696, + "longitudeCity": 125.6447, + "nameCity": "Davao", + "timezone": "Asia/Manila" + }, + { + "GMT": "10", + "cityId": 1896, + "codeIataCity": "DVP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -24.133333, + "longitudeCity": 141.11667, + "nameCity": "Davenport Downs", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "9.30", + "cityId": 1897, + "codeIataCity": "DVR", + "codeIso2Country": "AU", + "geonameId": 2078024, + "latitudeCity": -13.75, + "longitudeCity": 130.68333, + "nameCity": "Daly River", + "timezone": "Australia/Darwin" + }, + { + "GMT": "2", + "cityId": 1898, + "codeIataCity": "DWA", + "codeIso2Country": "MW", + "geonameId": 0, + "latitudeCity": -13.0, + "longitudeCity": 34.13333, + "nameCity": "Dwangwa", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "3", + "cityId": 1899, + "codeIataCity": "DWB", + "codeIso2Country": "MG", + "geonameId": 1056487, + "latitudeCity": -16.1, + "longitudeCity": 45.36667, + "nameCity": "Soalala", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "3", + "cityId": 1900, + "codeIataCity": "DWD", + "codeIso2Country": "SA", + "geonameId": 0, + "latitudeCity": 24.445545, + "longitudeCity": 44.1287, + "nameCity": "Dawadmi", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "4.30", + "cityId": 1901, + "codeIataCity": "DWR", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Dwyer", + "timezone": "Asia/Kabul" + }, + { + "GMT": "4", + "cityId": 1902, + "codeIataCity": "DXB", + "codeIso2Country": "AE", + "geonameId": 292223, + "latitudeCity": 25.264444, + "longitudeCity": 55.311667, + "nameCity": "Dubai", + "timezone": "Asia/Dubai" + }, + { + "GMT": "10", + "cityId": 1903, + "codeIataCity": "DXD", + "codeIso2Country": "AU", + "geonameId": 2168690, + "latitudeCity": -15.166667, + "longitudeCity": 143.66667, + "nameCity": "Dixie", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-5", + "cityId": 1904, + "codeIataCity": "DXR", + "codeIso2Country": "US", + "geonameId": 4832353, + "latitudeCity": 41.38333, + "longitudeCity": -73.45, + "nameCity": "Danbury", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 1905, + "codeIataCity": "DYA", + "codeIso2Country": "AU", + "geonameId": 2171365, + "latitudeCity": -23.5, + "longitudeCity": 148.0, + "nameCity": "Dysart", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "cityId": 1906, + "codeIataCity": "DYG", + "codeIso2Country": "CN", + "geonameId": 1813171, + "latitudeCity": 29.10712, + "longitudeCity": 110.44569, + "nameCity": "Dayong", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 1907, + "codeIataCity": "DYL", + "codeIso2Country": "US", + "geonameId": 4560349, + "latitudeCity": 40.316666, + "longitudeCity": -75.13333, + "nameCity": "Doylestown", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 1908, + "codeIataCity": "DYM", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -26.75, + "longitudeCity": 139.16667, + "nameCity": "Diamantina Lakes", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "12", + "cityId": 1909, + "codeIataCity": "DYR", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 64.73333, + "longitudeCity": 177.75, + "nameCity": "Anadyr", + "timezone": "Asia/Anadyr" + }, + { + "GMT": "5", + "cityId": 1910, + "codeIataCity": "DYU", + "codeIso2Country": "TJ", + "geonameId": 1221874, + "latitudeCity": 38.54894, + "longitudeCity": 68.81728, + "nameCity": "Dushanbe", + "timezone": "Asia/Dushanbe" + }, + { + "GMT": "9.30", + "cityId": 1911, + "codeIataCity": "DYW", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -16.25, + "longitudeCity": 133.4, + "nameCity": "Daly Waters", + "timezone": "Australia/Darwin" + }, + { + "GMT": "3", + "cityId": 1912, + "codeIataCity": "DZA", + "codeIso2Country": "YT", + "geonameId": 0, + "latitudeCity": -12.804901, + "longitudeCity": 45.2821, + "nameCity": "Dzaoudzi", + "timezone": "Indian/Mayotte" + }, + { + "GMT": "-5", + "cityId": 1913, + "codeIataCity": "DZI", + "codeIso2Country": "CO", + "geonameId": 3686146, + "latitudeCity": 10.016667, + "longitudeCity": -73.25, + "nameCity": "Codazzi", + "timezone": "America/Bogota" + }, + { + "GMT": "6", + "cityId": 1914, + "codeIataCity": "DZN", + "codeIso2Country": "KZ", + "geonameId": 0, + "latitudeCity": 47.7, + "longitudeCity": 67.73333, + "nameCity": "Zhezkazgan", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-3", + "cityId": 1915, + "codeIataCity": "DZO", + "codeIso2Country": "UY", + "geonameId": 3442727, + "latitudeCity": -33.416668, + "longitudeCity": -56.516666, + "nameCity": "Durazno", + "timezone": "America/Montevideo" + }, + { + "GMT": "8", + "cityId": 1916, + "codeIataCity": "DZU", + "codeIso2Country": "CN", + "geonameId": 1814906, + "latitudeCity": 29.7, + "longitudeCity": 105.71667, + "nameCity": "Dazu", + "timezone": "Asia/Chongqing" + }, + { + "GMT": "-9", + "cityId": 1917, + "codeIataCity": "EAA", + "codeIso2Country": "US", + "geonameId": 5861126, + "latitudeCity": 64.776665, + "longitudeCity": -141.1486, + "nameCity": "Eagle", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "cityId": 1918, + "codeIataCity": "EAB", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 14.583333, + "longitudeCity": 43.5, + "nameCity": "Abbse", + "timezone": "Asia/Aden" + }, + { + "GMT": "11", + "cityId": 1919, + "codeIataCity": "EAE", + "codeIso2Country": "VU", + "geonameId": 0, + "latitudeCity": -17.166668, + "longitudeCity": 168.41667, + "nameCity": "Emae", + "timezone": "Pacific/Efate" + }, + { + "GMT": "12", + "cityId": 1920, + "codeIataCity": "EAL", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 9.333333, + "longitudeCity": 166.84723, + "nameCity": "Kwajalein Atoll", + "timezone": "Pacific/Kwajalein" + }, + { + "GMT": "3", + "cityId": 1921, + "codeIataCity": "EAM", + "codeIso2Country": "SA", + "geonameId": 103630, + "latitudeCity": 17.613281, + "longitudeCity": 44.414646, + "nameCity": "Nejran", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-7", + "cityId": 1922, + "codeIataCity": "EAN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.05, + "longitudeCity": -104.96667, + "nameCity": "Wheatland", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 1923, + "codeIataCity": "EAP", + "codeIso2Country": "CH", + "geonameId": 2991214, + "latitudeCity": 47.752, + "longitudeCity": 7.336, + "nameCity": "Mulhouse", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "cityId": 1924, + "codeIataCity": "EAR", + "codeIso2Country": "US", + "geonameId": 5071348, + "latitudeCity": 40.728333, + "longitudeCity": -98.998886, + "nameCity": "Kearney", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 1925, + "codeIataCity": "EAS", + "codeIso2Country": "ES", + "geonameId": 3120304, + "latitudeCity": 43.320812, + "longitudeCity": -1.984447, + "nameCity": "San Sebastian", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-8", + "cityId": 1926, + "codeIataCity": "EAT", + "codeIso2Country": "US", + "geonameId": 5815342, + "latitudeCity": 47.399723, + "longitudeCity": -120.20778, + "nameCity": "Wenatchee", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 1927, + "codeIataCity": "EAU", + "codeIso2Country": "US", + "geonameId": 5251436, + "latitudeCity": 44.864445, + "longitudeCity": -91.48722, + "nameCity": "Eau Claire", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 1928, + "codeIataCity": "EBA", + "codeIso2Country": "IT", + "geonameId": 6534703, + "latitudeCity": 42.766666, + "longitudeCity": 10.283333, + "nameCity": "Elba Island", + "timezone": "Europe/Rome" + }, + { + "GMT": "3", + "cityId": 1929, + "codeIataCity": "EBB", + "codeIso2Country": "UG", + "geonameId": 233508, + "latitudeCity": 0.045111, + "longitudeCity": 32.443184, + "nameCity": "Entebbe", + "timezone": "Africa/Kampala" + }, + { + "GMT": "3", + "cityId": 1930, + "codeIataCity": "EBD", + "codeIso2Country": "SD", + "geonameId": 379003, + "latitudeCity": 13.159722, + "longitudeCity": 30.234167, + "nameCity": "El Obeid", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "-5", + "cityId": 1931, + "codeIataCity": "EBG", + "codeIso2Country": "CO", + "geonameId": 3684945, + "latitudeCity": 7.616667, + "longitudeCity": -74.816666, + "nameCity": "El Bagre", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 1932, + "codeIataCity": "EBH", + "codeIso2Country": "DZ", + "geonameId": 2498543, + "latitudeCity": 33.717804, + "longitudeCity": 1.094105, + "nameCity": "El Bayadh", + "timezone": "Africa/Algiers" + }, + { + "GMT": "1", + "cityId": 1933, + "codeIataCity": "EBJ", + "codeIso2Country": "DK", + "geonameId": 2622447, + "latitudeCity": 55.476466, + "longitudeCity": 8.459405, + "nameCity": "Esbjerg", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "3", + "cityId": 1934, + "codeIataCity": "EBL", + "codeIso2Country": "IQ", + "geonameId": 95446, + "latitudeCity": 36.2375, + "longitudeCity": 43.963055, + "nameCity": "Erbil", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "1", + "cityId": 1935, + "codeIataCity": "EBM", + "codeIso2Country": "TN", + "geonameId": 0, + "latitudeCity": 31.716667, + "longitudeCity": 9.266667, + "nameCity": "El Borma", + "timezone": "Africa/Tunis" + }, + { + "GMT": "12", + "cityId": 1936, + "codeIataCity": "EBN", + "codeIso2Country": "MH", + "geonameId": 7304466, + "latitudeCity": 9.333333, + "longitudeCity": 166.8, + "nameCity": "Ebadon", + "timezone": "Pacific/Kwajalein" + }, + { + "GMT": "12", + "cityId": 1937, + "codeIataCity": "EBO", + "codeIso2Country": "MH", + "geonameId": 7306512, + "latitudeCity": 4.6, + "longitudeCity": 168.75, + "nameCity": "Ebon", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-6", + "cityId": 1938, + "codeIataCity": "EBS", + "codeIso2Country": "US", + "geonameId": 4853828, + "latitudeCity": 42.466667, + "longitudeCity": -93.816666, + "nameCity": "Webster City", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 1939, + "codeIataCity": "EBU", + "codeIso2Country": "FR", + "geonameId": 2996944, + "latitudeCity": 45.54139, + "longitudeCity": 4.296944, + "nameCity": "St Etienne", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "cityId": 1940, + "codeIataCity": "EBW", + "codeIso2Country": "CM", + "geonameId": 0, + "latitudeCity": 2.916667, + "longitudeCity": 11.166667, + "nameCity": "Ebolowa", + "timezone": "Africa/Douala" + }, + { + "GMT": "-5", + "cityId": 1941, + "codeIataCity": "ECA", + "codeIso2Country": "US", + "geonameId": 4991692, + "latitudeCity": 44.266666, + "longitudeCity": -83.48333, + "nameCity": "East Tawas", + "timezone": "America/Detroit" + }, + { + "GMT": "-5", + "cityId": 1942, + "codeIataCity": "ECG", + "codeIso2Country": "US", + "geonameId": 4465088, + "latitudeCity": 36.259167, + "longitudeCity": -76.17306, + "nameCity": "Elizabeth City", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 1943, + "codeIataCity": "ECH", + "codeIso2Country": "AU", + "geonameId": 2157355, + "latitudeCity": -36.15, + "longitudeCity": 144.75, + "nameCity": "Echuca", + "timezone": "Australia/Sydney" + }, + { + "GMT": "2", + "cityId": 1944, + "codeIataCity": "ECN", + "codeIso2Country": "CY", + "geonameId": 146400, + "latitudeCity": 35.15812, + "longitudeCity": 33.50307, + "nameCity": "Lefkosa", + "timezone": "Asia/Nicosia" + }, + { + "GMT": "-5", + "cityId": 1945, + "codeIataCity": "ECO", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": -1.616667, + "longitudeCity": -73.23333, + "nameCity": "El Encanto", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 1946, + "codeIataCity": "ECR", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 2.5, + "longitudeCity": -78.0, + "nameCity": "El Charco", + "timezone": "America/Bogota" + }, + { + "GMT": "-7", + "cityId": 1947, + "codeIataCity": "ECS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 43.833332, + "longitudeCity": -104.183334, + "nameCity": "Newcastle", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "cityId": 1948, + "codeIataCity": "EDA", + "codeIso2Country": "US", + "geonameId": 5845973, + "latitudeCity": 55.95, + "longitudeCity": -133.66667, + "nameCity": "Edna Bay", + "timezone": "America/Nome" + }, + { + "GMT": "3", + "cityId": 1949, + "codeIataCity": "EDB", + "codeIso2Country": "SD", + "geonameId": 0, + "latitudeCity": 18.283333, + "longitudeCity": 30.833332, + "nameCity": "Eldebba", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "9.30", + "cityId": 1950, + "codeIataCity": "EDD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -25.25, + "longitudeCity": 133.2, + "nameCity": "Erldunda", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-5", + "cityId": 1951, + "codeIataCity": "EDE", + "codeIso2Country": "US", + "geonameId": 4464897, + "latitudeCity": 36.066666, + "longitudeCity": -76.65, + "nameCity": "Edenton", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 1952, + "codeIataCity": "EDG", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.465668, + "longitudeCity": -76.360916, + "nameCity": "Edgewood", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 1953, + "codeIataCity": "EDI", + "codeIso2Country": "GB", + "geonameId": 2650225, + "latitudeCity": 55.950176, + "longitudeCity": -3.187536, + "nameCity": "Edinburgh", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "cityId": 1954, + "codeIataCity": "EDK", + "codeIso2Country": "US", + "geonameId": 4281730, + "latitudeCity": 37.816666, + "longitudeCity": -96.86667, + "nameCity": "El Dorado", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 1955, + "codeIataCity": "EDL", + "codeIso2Country": "KE", + "geonameId": 198629, + "latitudeCity": 0.4054, + "longitudeCity": 35.2236, + "nameCity": "Eldoret", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "1", + "cityId": 1956, + "codeIataCity": "EDM", + "codeIso2Country": "FR", + "geonameId": 3006767, + "latitudeCity": 46.7, + "longitudeCity": -1.383333, + "nameCity": "La Roche", + "timezone": "Europe/Paris" + }, + { + "GMT": "3", + "cityId": 1957, + "codeIataCity": "EDO", + "codeIso2Country": "TR", + "geonameId": 315985, + "latitudeCity": 39.583332, + "longitudeCity": 27.033333, + "nameCity": "Edremit", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-6", + "cityId": 1958, + "codeIataCity": "EDQ", + "codeIso2Country": "HN", + "geonameId": 3613321, + "latitudeCity": 14.233333, + "longitudeCity": -88.416664, + "nameCity": "Erandique", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "10", + "cityId": 1959, + "codeIataCity": "EDR", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -14.9, + "longitudeCity": 141.61667, + "nameCity": "Edward River", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-8", + "cityId": 1960, + "codeIataCity": "EDW", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 35.0, + "longitudeCity": -117.916664, + "nameCity": "Edwards", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-8", + "cityId": 1961, + "codeIataCity": "EED", + "codeIso2Country": "US", + "geonameId": 5376358, + "latitudeCity": 34.85, + "longitudeCity": -114.61667, + "nameCity": "Needles", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-9", + "cityId": 1962, + "codeIataCity": "EEK", + "codeIso2Country": "US", + "geonameId": 5861393, + "latitudeCity": 60.216667, + "longitudeCity": -162.01666, + "nameCity": "Eek", + "timezone": "America/Nome" + }, + { + "GMT": "1", + "cityId": 1963, + "codeIataCity": "EEL", + "codeIso2Country": "ES", + "geonameId": 3107418, + "latitudeCity": 53.120277, + "longitudeCity": 6.575556, + "nameCity": "Tudela", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-5", + "cityId": 1964, + "codeIataCity": "EEN", + "codeIso2Country": "US", + "geonameId": 5088262, + "latitudeCity": 42.900833, + "longitudeCity": -72.270836, + "nameCity": "Keene", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 1965, + "codeIataCity": "EFB", + "codeIso2Country": "US", + "geonameId": 5554072, + "latitudeCity": 58.0, + "longitudeCity": -135.73334, + "nameCity": "Eight Fathom Bight", + "timezone": "America/Juneau" + }, + { + "GMT": "10", + "cityId": 1966, + "codeIataCity": "EFG", + "codeIso2Country": "PG", + "geonameId": 2088122, + "latitudeCity": -9.15, + "longitudeCity": 147.66667, + "nameCity": "Efogi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 1967, + "codeIataCity": "EFK", + "codeIso2Country": "US", + "geonameId": 5241611, + "latitudeCity": 44.889442, + "longitudeCity": -72.23, + "nameCity": "Newport", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 1968, + "codeIataCity": "EFL", + "codeIso2Country": "GR", + "geonameId": 253071, + "latitudeCity": 38.118057, + "longitudeCity": 20.505556, + "nameCity": "Kefalonia", + "timezone": "Europe/Athens" + }, + { + "GMT": "-9", + "cityId": 1969, + "codeIataCity": "EFO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "East Fork", + "timezone": "America/Nome" + }, + { + "GMT": "-6", + "cityId": 1970, + "codeIataCity": "EFW", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.016666, + "longitudeCity": -94.38333, + "nameCity": "Jefferson", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 1971, + "codeIataCity": "EGA", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.916667, + "longitudeCity": 146.1, + "nameCity": "Engati", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 1972, + "codeIataCity": "EGC", + "codeIso2Country": "FR", + "geonameId": 3033391, + "latitudeCity": 44.85, + "longitudeCity": 0.483333, + "nameCity": "Bergerac", + "timezone": "Europe/Paris" + }, + { + "GMT": "-7", + "cityId": 1973, + "codeIataCity": "EGE", + "codeIso2Country": "US", + "geonameId": 5420328, + "latitudeCity": 39.640264, + "longitudeCity": -106.374195, + "nameCity": "Vail", + "timezone": "America/Denver" + }, + { + "GMT": "3", + "cityId": 1974, + "codeIataCity": "EGL", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 5.283333, + "longitudeCity": 39.716667, + "nameCity": "Neghelli", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "11", + "cityId": 1975, + "codeIataCity": "EGM", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -8.577956, + "longitudeCity": 157.87506, + "nameCity": "Sege", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "3", + "cityId": 1976, + "codeIataCity": "EGN", + "codeIso2Country": "SD", + "geonameId": 0, + "latitudeCity": 13.4875, + "longitudeCity": 22.469444, + "nameCity": "Geneina", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "3", + "cityId": 1977, + "codeIataCity": "EGO", + "codeIso2Country": "RU", + "geonameId": 578072, + "latitudeCity": 50.63333, + "longitudeCity": 36.65, + "nameCity": "Belgorod", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "cityId": 1978, + "codeIataCity": "EGP", + "codeIso2Country": "US", + "geonameId": 5520677, + "latitudeCity": 28.702223, + "longitudeCity": -100.48055, + "nameCity": "Eagle Pass", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 1979, + "codeIataCity": "EGS", + "codeIso2Country": "IS", + "geonameId": 6354943, + "latitudeCity": 65.27778, + "longitudeCity": -14.402778, + "nameCity": "Egilsstadir", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-6", + "cityId": 1980, + "codeIataCity": "EGV", + "codeIso2Country": "US", + "geonameId": 5251171, + "latitudeCity": 45.92917, + "longitudeCity": -89.26583, + "nameCity": "Eagle River", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 1981, + "codeIataCity": "EGX", + "codeIso2Country": "US", + "geonameId": 5861423, + "latitudeCity": 58.20778, + "longitudeCity": -157.37029, + "nameCity": "Egegik", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "cityId": 1982, + "codeIataCity": "EHL", + "codeIso2Country": "AR", + "geonameId": 3858765, + "latitudeCity": -42.0, + "longitudeCity": -71.75, + "nameCity": "El Bolson", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-9", + "cityId": 1983, + "codeIataCity": "EHM", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 58.64722, + "longitudeCity": -162.06056, + "nameCity": "Cape Newenham", + "timezone": "America/Nome" + }, + { + "GMT": "-5", + "cityId": 1984, + "codeIataCity": "EHT", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.766666, + "longitudeCity": -72.65, + "nameCity": "East Hartford", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 1985, + "codeIataCity": "EIA", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.116667, + "longitudeCity": 147.63333, + "nameCity": "Eia", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 1986, + "codeIataCity": "EIB", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 50.983334, + "longitudeCity": 10.483333, + "nameCity": "Eisenach", + "timezone": "Europe/Berlin" + }, + { + "GMT": "7", + "cityId": 1987, + "codeIataCity": "EIE", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 58.466667, + "longitudeCity": 92.11667, + "nameCity": "Eniseysk", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "10", + "cityId": 1988, + "codeIataCity": "EIH", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.5, + "longitudeCity": 144.1, + "nameCity": "Einasleigh", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "cityId": 1989, + "codeIataCity": "EIK", + "codeIso2Country": "RU", + "geonameId": 466885, + "latitudeCity": 63.2, + "longitudeCity": 38.21, + "nameCity": "Yeysk", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "cityId": 1990, + "codeIataCity": "EIN", + "codeIso2Country": "NL", + "geonameId": 2756253, + "latitudeCity": 51.441642, + "longitudeCity": 5.469722, + "nameCity": "Eindhoven", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "-4", + "cityId": 1991, + "codeIataCity": "EIS", + "codeIso2Country": "VG", + "geonameId": 3577369, + "latitudeCity": 18.44389, + "longitudeCity": -64.54278, + "nameCity": "Beef Island", + "timezone": "America/Tortola" + }, + { + "GMT": "2", + "cityId": 1992, + "codeIataCity": "EIY", + "codeIso2Country": "IL", + "geonameId": 294041, + "latitudeCity": 30.633333, + "longitudeCity": 35.183334, + "nameCity": "Ein Yahav", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "-5", + "cityId": 1993, + "codeIataCity": "EJA", + "codeIso2Country": "CO", + "geonameId": 3689169, + "latitudeCity": 7.015833, + "longitudeCity": -73.799164, + "nameCity": "Barrancabermeja", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "cityId": 1994, + "codeIataCity": "EJH", + "codeIso2Country": "SA", + "geonameId": 0, + "latitudeCity": 26.207716, + "longitudeCity": 36.47481, + "nameCity": "Wedjh", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "12", + "cityId": 1995, + "codeIataCity": "EJT", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 6.083333, + "longitudeCity": 171.95, + "nameCity": "Mili Atoll", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-8", + "cityId": 1996, + "codeIataCity": "EKA", + "codeIso2Country": "US", + "geonameId": 5563397, + "latitudeCity": 40.805, + "longitudeCity": -124.115, + "nameCity": "Eureka", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "6", + "cityId": 1997, + "codeIataCity": "EKB", + "codeIso2Country": "KZ", + "geonameId": 0, + "latitudeCity": 51.583332, + "longitudeCity": 75.21667, + "nameCity": "Ekibastuz", + "timezone": "Asia/Almaty" + }, + { + "GMT": "9.30", + "cityId": 1998, + "codeIataCity": "EKD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -21.15, + "longitudeCity": 135.55, + "nameCity": "Elkedra", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-4", + "cityId": 1999, + "codeIataCity": "EKE", + "codeIso2Country": "GY", + "geonameId": 3661366, + "latitudeCity": 5.916667, + "longitudeCity": -59.88333, + "nameCity": "Ekereku", + "timezone": "America/Guyana" + }, + { + "GMT": "-5", + "cityId": 2000, + "codeIataCity": "EKI", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.72222, + "longitudeCity": -85.992226, + "nameCity": "Elkhart", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-5", + "cityId": 2001, + "codeIataCity": "EKN", + "codeIso2Country": "US", + "geonameId": 4805033, + "latitudeCity": 38.889442, + "longitudeCity": -79.85778, + "nameCity": "Elkins", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "cityId": 2002, + "codeIataCity": "EKO", + "codeIso2Country": "US", + "geonameId": 5703670, + "latitudeCity": 40.82389, + "longitudeCity": -115.78972, + "nameCity": "Elko", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "11", + "cityId": 2003, + "codeIataCity": "EKS", + "codeIso2Country": "RU", + "geonameId": 2121367, + "latitudeCity": 45.267853, + "longitudeCity": -111.65034, + "nameCity": "Shakhtersk", + "timezone": "Asia/Sakhalin" + }, + { + "GMT": "1", + "cityId": 2004, + "codeIataCity": "EKT", + "codeIso2Country": "SE", + "geonameId": 2673730, + "latitudeCity": 59.366468, + "longitudeCity": 16.508427, + "nameCity": "Eskilstuna", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "cityId": 2005, + "codeIataCity": "EKX", + "codeIso2Country": "US", + "geonameId": 4290988, + "latitudeCity": 37.68889, + "longitudeCity": -85.92778, + "nameCity": "Elizabethtown", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 2006, + "codeIataCity": "ELA", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 29.583332, + "longitudeCity": -96.333336, + "nameCity": "Eagle Lake", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 2007, + "codeIataCity": "ELB", + "codeIso2Country": "CO", + "geonameId": 3690465, + "latitudeCity": 9.048889, + "longitudeCity": -73.97417, + "nameCity": "El Banco", + "timezone": "America/Bogota" + }, + { + "GMT": "9.30", + "cityId": 2008, + "codeIataCity": "ELC", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -12.019817, + "longitudeCity": 135.5698, + "nameCity": "Elcho Island", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-6", + "cityId": 2009, + "codeIataCity": "ELD", + "codeIso2Country": "US", + "geonameId": 4109785, + "latitudeCity": 33.220554, + "longitudeCity": -92.81472, + "nameCity": "El Dorado", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 2010, + "codeIataCity": "ELE", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 8.166667, + "longitudeCity": -77.833336, + "nameCity": "El Real", + "timezone": "America/Panama" + }, + { + "GMT": "3", + "cityId": 2011, + "codeIataCity": "ELF", + "codeIso2Country": "SD", + "geonameId": 379555, + "latitudeCity": 13.616667, + "longitudeCity": 25.316668, + "nameCity": "El Fasher", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "1", + "cityId": 2012, + "codeIataCity": "ELG", + "codeIso2Country": "DZ", + "geonameId": 2498305, + "latitudeCity": 30.5675, + "longitudeCity": 2.864722, + "nameCity": "El Golea", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-5", + "cityId": 2013, + "codeIataCity": "ELH", + "codeIso2Country": "BS", + "geonameId": 3572462, + "latitudeCity": 25.476917, + "longitudeCity": -76.68192, + "nameCity": "North Eleuthera", + "timezone": "America/Nassau" + }, + { + "GMT": "-9", + "cityId": 2014, + "codeIataCity": "ELI", + "codeIso2Country": "US", + "geonameId": 5861582, + "latitudeCity": 64.61361, + "longitudeCity": -162.27028, + "nameCity": "Elim", + "timezone": "America/Nome" + }, + { + "GMT": "-5", + "cityId": 2015, + "codeIataCity": "ELJ", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 2.0, + "longitudeCity": -73.833336, + "nameCity": "El Recreo", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 2016, + "codeIataCity": "ELK", + "codeIso2Country": "US", + "geonameId": 4535823, + "latitudeCity": 35.416668, + "longitudeCity": -99.416664, + "nameCity": "Elk City", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 2017, + "codeIataCity": "ELL", + "codeIso2Country": "ZA", + "geonameId": 945141, + "latitudeCity": -23.716667, + "longitudeCity": 27.683332, + "nameCity": "Ellisras", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-5", + "cityId": 2018, + "codeIataCity": "ELM", + "codeIso2Country": "US", + "geonameId": 5121309, + "latitudeCity": 42.16304, + "longitudeCity": -76.89586, + "nameCity": "Elmira", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "cityId": 2019, + "codeIataCity": "ELN", + "codeIso2Country": "US", + "geonameId": 5793639, + "latitudeCity": 46.983334, + "longitudeCity": -120.566666, + "nameCity": "Ellensburg", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "cityId": 2020, + "codeIataCity": "ELO", + "codeIso2Country": "AR", + "geonameId": 3429777, + "latitudeCity": -26.5, + "longitudeCity": -54.733334, + "nameCity": "Eldorado", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-7", + "cityId": 2021, + "codeIataCity": "ELP", + "codeIso2Country": "US", + "geonameId": 5520993, + "latitudeCity": 31.75872, + "longitudeCity": -106.486931, + "nameCity": "El Paso", + "timezone": "America/Denver" + }, + { + "GMT": "3", + "cityId": 2022, + "codeIataCity": "ELQ", + "codeIso2Country": "SA", + "geonameId": 107304, + "latitudeCity": 26.305029, + "longitudeCity": 43.768177, + "nameCity": "Buraidah", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "9", + "cityId": 2023, + "codeIataCity": "ELR", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.816667, + "longitudeCity": 140.06667, + "nameCity": "Elelim", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "2", + "cityId": 2024, + "codeIataCity": "ELS", + "codeIso2Country": "ZA", + "geonameId": 1006984, + "latitudeCity": -33.038437, + "longitudeCity": 27.82892, + "nameCity": "East London", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "2", + "cityId": 2025, + "codeIataCity": "ELT", + "codeIso2Country": "EG", + "geonameId": 349340, + "latitudeCity": 28.216667, + "longitudeCity": 33.63333, + "nameCity": "Tour Sinai City", + "timezone": "Africa/Cairo" + }, + { + "GMT": "1", + "cityId": 2026, + "codeIataCity": "ELU", + "codeIso2Country": "DZ", + "geonameId": 0, + "latitudeCity": 33.516666, + "longitudeCity": 6.783333, + "nameCity": "El Oued", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-9", + "cityId": 2027, + "codeIataCity": "ELV", + "codeIso2Country": "US", + "geonameId": 5845988, + "latitudeCity": 58.183334, + "longitudeCity": -136.31667, + "nameCity": "Elfin Cove", + "timezone": "America/Juneau" + }, + { + "GMT": "-9", + "cityId": 2028, + "codeIataCity": "ELW", + "codeIso2Country": "US", + "geonameId": 5861603, + "latitudeCity": 60.9, + "longitudeCity": -146.23334, + "nameCity": "Ellamar", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "cityId": 2029, + "codeIataCity": "ELX", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 8.883333, + "longitudeCity": -64.26667, + "nameCity": "El Tigre", + "timezone": "America/Caracas" + }, + { + "GMT": "-8", + "cityId": 2030, + "codeIataCity": "ELY", + "codeIso2Country": "US", + "geonameId": 5503694, + "latitudeCity": 39.301945, + "longitudeCity": -114.84194, + "nameCity": "Ely", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 2031, + "codeIataCity": "ELZ", + "codeIso2Country": "US", + "geonameId": 5108647, + "latitudeCity": 42.11667, + "longitudeCity": -77.95, + "nameCity": "Wellsville", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 2032, + "codeIataCity": "EMD", + "codeIso2Country": "AU", + "geonameId": 2167426, + "latitudeCity": -23.56861, + "longitudeCity": 148.1744, + "nameCity": "Emerald", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 2033, + "codeIataCity": "EME", + "codeIso2Country": "DE", + "geonameId": 2930596, + "latitudeCity": 53.36667, + "longitudeCity": 7.2, + "nameCity": "Emden", + "timezone": "Europe/Berlin" + }, + { + "GMT": "2", + "cityId": 2034, + "codeIataCity": "EMG", + "codeIso2Country": "ZA", + "geonameId": 1005544, + "latitudeCity": -28.75, + "longitudeCity": 31.9, + "nameCity": "Empangeni", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "10", + "cityId": 2035, + "codeIataCity": "EMI", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -1.65, + "longitudeCity": 149.98334, + "nameCity": "Emirau", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 2036, + "codeIataCity": "EMK", + "codeIso2Country": "US", + "geonameId": 5861668, + "latitudeCity": 62.776943, + "longitudeCity": -164.52083, + "nameCity": "Emmonak", + "timezone": "America/Nome" + }, + { + "GMT": "1", + "cityId": 2037, + "codeIataCity": "EML", + "codeIso2Country": "CH", + "geonameId": 2660911, + "latitudeCity": 47.0925, + "longitudeCity": 8.304722, + "nameCity": "Luzern", + "timezone": "Europe/Zurich" + }, + { + "GMT": "-7", + "cityId": 2038, + "codeIataCity": "EMM", + "codeIso2Country": "US", + "geonameId": 5824805, + "latitudeCity": 41.783333, + "longitudeCity": -110.55, + "nameCity": "Kemerer", + "timezone": "America/Denver" + }, + { + "GMT": "0", + "cityId": 2039, + "codeIataCity": "EMN", + "codeIso2Country": "MR", + "geonameId": 0, + "latitudeCity": 16.6, + "longitudeCity": -7.283333, + "nameCity": "Nema", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "10", + "cityId": 2040, + "codeIataCity": "EMO", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -9.15, + "longitudeCity": 147.95, + "nameCity": "Emo", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 2041, + "codeIataCity": "EMP", + "codeIso2Country": "US", + "geonameId": 4280539, + "latitudeCity": 38.3325, + "longitudeCity": -96.190834, + "nameCity": "Emporia", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 2042, + "codeIataCity": "EMS", + "codeIso2Country": "PG", + "geonameId": 2097713, + "latitudeCity": -9.45, + "longitudeCity": 148.86667, + "nameCity": "Embessa", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "cityId": 2043, + "codeIataCity": "EMT", + "codeIso2Country": "US", + "geonameId": 5368361, + "latitudeCity": 34.083332, + "longitudeCity": -118.03333, + "nameCity": "El Monte", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "cityId": 2044, + "codeIataCity": "EMX", + "codeIso2Country": "AR", + "geonameId": 7647007, + "latitudeCity": -42.033333, + "longitudeCity": -71.15, + "nameCity": "El Maiten", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "2", + "cityId": 2045, + "codeIataCity": "EMY", + "codeIso2Country": "EG", + "geonameId": 0, + "latitudeCity": 28.1, + "longitudeCity": 30.75, + "nameCity": "El Minya", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-9", + "cityId": 2046, + "codeIataCity": "ENA", + "codeIso2Country": "US", + "geonameId": 5866063, + "latitudeCity": 60.56521, + "longitudeCity": -151.24644, + "nameCity": "Kenai", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "cityId": 2047, + "codeIataCity": "ENB", + "codeIso2Country": "AU", + "geonameId": 2072691, + "latitudeCity": -30.083332, + "longitudeCity": 114.98333, + "nameCity": "Eneabba West", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "cityId": 2048, + "codeIataCity": "ENE", + "codeIso2Country": "ID", + "geonameId": 1644932, + "latitudeCity": -8.833333, + "longitudeCity": 121.65, + "nameCity": "Ende", + "timezone": "Asia/Makassar" + }, + { + "GMT": "2", + "cityId": 2049, + "codeIataCity": "ENF", + "codeIso2Country": "FI", + "geonameId": 660229, + "latitudeCity": 68.35, + "longitudeCity": 23.416668, + "nameCity": "Enontekio", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "8", + "cityId": 2050, + "codeIataCity": "ENH", + "codeIso2Country": "CN", + "geonameId": 1811720, + "latitudeCity": 30.321934, + "longitudeCity": 109.48201, + "nameCity": "Enshi", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 2051, + "codeIataCity": "ENI", + "codeIso2Country": "PH", + "geonameId": 1713917, + "latitudeCity": 11.205556, + "longitudeCity": 119.41278, + "nameCity": "El Nido", + "timezone": "Asia/Manila" + }, + { + "GMT": "-6", + "cityId": 2052, + "codeIataCity": "ENJ", + "codeIso2Country": "GT", + "geonameId": 3595725, + "latitudeCity": 17.333332, + "longitudeCity": -90.166664, + "nameCity": "El Naranjo", + "timezone": "America/Guatemala" + }, + { + "GMT": "0", + "cityId": 2053, + "codeIataCity": "ENK", + "codeIso2Country": "GB", + "geonameId": 2649984, + "latitudeCity": 54.35, + "longitudeCity": -7.633333, + "nameCity": "Enniskillen", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "cityId": 2054, + "codeIataCity": "ENL", + "codeIso2Country": "US", + "geonameId": 4245152, + "latitudeCity": 38.516666, + "longitudeCity": -89.13333, + "nameCity": "Centralia", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 2055, + "codeIataCity": "ENN", + "codeIso2Country": "US", + "geonameId": 5869822, + "latitudeCity": 64.566666, + "longitudeCity": -149.11667, + "nameCity": "Nenana", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "cityId": 2056, + "codeIataCity": "ENO", + "codeIso2Country": "PY", + "geonameId": 3436776, + "latitudeCity": -27.25, + "longitudeCity": -55.833332, + "nameCity": "Encarnacion", + "timezone": "America/Asuncion" + }, + { + "GMT": "-6", + "cityId": 2057, + "codeIataCity": "ENQ", + "codeIso2Country": "HN", + "geonameId": 0, + "latitudeCity": 14.369167, + "longitudeCity": -87.617226, + "nameCity": "Coronel E Soto Cano AB", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "1", + "cityId": 2058, + "codeIataCity": "ENS", + "codeIso2Country": "NL", + "geonameId": 2749644, + "latitudeCity": 52.220337, + "longitudeCity": 6.895964, + "nameCity": "Enschede", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "12", + "cityId": 2059, + "codeIataCity": "ENT", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 11.5, + "longitudeCity": 162.25, + "nameCity": "Enewetak Island", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "1", + "cityId": 2060, + "codeIataCity": "ENU", + "codeIso2Country": "NG", + "geonameId": 2343279, + "latitudeCity": 6.472048, + "longitudeCity": 7.56772, + "nameCity": "Enugu", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-7", + "cityId": 2061, + "codeIataCity": "ENV", + "codeIso2Country": "US", + "geonameId": 5784492, + "latitudeCity": 40.733334, + "longitudeCity": -114.03333, + "nameCity": "Wendover", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 2062, + "codeIataCity": "ENW", + "codeIso2Country": "US", + "geonameId": 5258393, + "latitudeCity": 42.583332, + "longitudeCity": -87.816666, + "nameCity": "Kenosha", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 2063, + "codeIataCity": "ENY", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 36.639366, + "longitudeCity": 109.55148, + "nameCity": "Yan'an", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "0", + "cityId": 2064, + "codeIataCity": "EOI", + "codeIso2Country": "GB", + "geonameId": 8299623, + "latitudeCity": 59.183334, + "longitudeCity": -2.783333, + "nameCity": "Eday", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "cityId": 2065, + "codeIataCity": "EOK", + "codeIso2Country": "US", + "geonameId": 4863349, + "latitudeCity": 40.458332, + "longitudeCity": -91.43, + "nameCity": "Keokuk", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 2066, + "codeIataCity": "EOR", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 6.733333, + "longitudeCity": -61.88333, + "nameCity": "El Dorado", + "timezone": "America/Caracas" + }, + { + "GMT": "-6", + "cityId": 2067, + "codeIataCity": "EOS", + "codeIso2Country": "US", + "geonameId": 4400183, + "latitudeCity": 36.86667, + "longitudeCity": -94.36667, + "nameCity": "Neosho", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 2068, + "codeIataCity": "EOZ", + "codeIso2Country": "VE", + "geonameId": 3642390, + "latitudeCity": 7.166667, + "longitudeCity": -69.53333, + "nameCity": "Elorza", + "timezone": "America/Caracas" + }, + { + "GMT": "-3", + "cityId": 2069, + "codeIataCity": "EPA", + "codeIso2Country": "AR", + "geonameId": 3435910, + "latitudeCity": -34.608334, + "longitudeCity": -58.6125, + "nameCity": "El Palomar", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "-6", + "cityId": 2070, + "codeIataCity": "EPG", + "codeIso2Country": "US", + "geonameId": 5081518, + "latitudeCity": 40.86667, + "longitudeCity": -96.13333, + "nameCity": "Weeping Water", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 2071, + "codeIataCity": "EPH", + "codeIso2Country": "US", + "geonameId": 5793832, + "latitudeCity": 47.30417, + "longitudeCity": -119.5125, + "nameCity": "Ephrata", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "11", + "cityId": 2072, + "codeIataCity": "EPI", + "codeIso2Country": "VU", + "geonameId": 0, + "latitudeCity": -16.716667, + "longitudeCity": 168.25, + "nameCity": "Epi", + "timezone": "Pacific/Efate" + }, + { + "GMT": "1", + "cityId": 2073, + "codeIataCity": "EPL", + "codeIso2Country": "FR", + "geonameId": 3034559, + "latitudeCity": 48.325832, + "longitudeCity": 6.069444, + "nameCity": "Epinal", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "cityId": 2074, + "codeIataCity": "EPN", + "codeIso2Country": "CG", + "geonameId": 0, + "latitudeCity": 1.366667, + "longitudeCity": 17.533333, + "nameCity": "Epena", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "8", + "cityId": 2075, + "codeIataCity": "EPR", + "codeIso2Country": "AU", + "geonameId": 2071860, + "latitudeCity": -33.68248, + "longitudeCity": 121.83039, + "nameCity": "Esperance", + "timezone": "Australia/Perth" + }, + { + "GMT": "-4", + "cityId": 2076, + "codeIataCity": "EPS", + "codeIso2Country": "DO", + "geonameId": 3500243, + "latitudeCity": 19.25, + "longitudeCity": -69.5, + "nameCity": "Samana", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "10", + "cityId": 2077, + "codeIataCity": "EPT", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.033333, + "longitudeCity": 141.66667, + "nameCity": "Eliptamin", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "cityId": 2078, + "codeIataCity": "EPU", + "codeIso2Country": "EE", + "geonameId": 589580, + "latitudeCity": 58.418888, + "longitudeCity": 24.472778, + "nameCity": "Parnu", + "timezone": "Europe/Tallinn" + }, + { + "GMT": "-3", + "cityId": 2079, + "codeIataCity": "EQS", + "codeIso2Country": "AR", + "geonameId": 3855974, + "latitudeCity": -42.90972, + "longitudeCity": -71.1425, + "nameCity": "Esquel", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "3", + "cityId": 2080, + "codeIataCity": "ERA", + "codeIso2Country": "SO", + "geonameId": 0, + "latitudeCity": 10.616667, + "longitudeCity": 47.4, + "nameCity": "Erigavo", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "9.30", + "cityId": 2081, + "codeIataCity": "ERB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -26.283333, + "longitudeCity": 132.11667, + "nameCity": "Ernabella", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "3", + "cityId": 2082, + "codeIataCity": "ERC", + "codeIso2Country": "TR", + "geonameId": 315373, + "latitudeCity": 39.711666, + "longitudeCity": 39.516945, + "nameCity": "Erzincan", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "2", + "cityId": 2083, + "codeIataCity": "ERD", + "codeIso2Country": "UA", + "geonameId": 712451, + "latitudeCity": 46.733334, + "longitudeCity": 36.783333, + "nameCity": "Berdyansk", + "timezone": "Europe/Zaporozhye" + }, + { + "GMT": "10", + "cityId": 2084, + "codeIataCity": "ERE", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.633333, + "longitudeCity": 143.9, + "nameCity": "Erave", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 2085, + "codeIataCity": "ERF", + "codeIso2Country": "DE", + "geonameId": 2929670, + "latitudeCity": 50.973734, + "longitudeCity": 11.022435, + "nameCity": "Erfurt", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "cityId": 2086, + "codeIataCity": "ERG", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 61.275, + "longitudeCity": 108.03, + "nameCity": "Yerbogachen", + "timezone": "Asia/Irkutsk" + }, + { + "GMT": "0", + "cityId": 2087, + "codeIataCity": "ERH", + "codeIso2Country": "MA", + "geonameId": 7280528, + "latitudeCity": 31.95, + "longitudeCity": -4.4, + "nameCity": "Er-Rachidia", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "-5", + "cityId": 2088, + "codeIataCity": "ERI", + "codeIso2Country": "US", + "geonameId": 5188843, + "latitudeCity": 42.08314, + "longitudeCity": -80.18203, + "nameCity": "Erie", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 2089, + "codeIataCity": "ERL", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 43.426674, + "longitudeCity": 112.09845, + "nameCity": "Erenhot", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-3", + "cityId": 2090, + "codeIataCity": "ERM", + "codeIso2Country": "BR", + "geonameId": 3464073, + "latitudeCity": -27.641666, + "longitudeCity": -52.275555, + "nameCity": "Erechim", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "cityId": 2091, + "codeIataCity": "ERN", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -6.583333, + "longitudeCity": -69.88333, + "nameCity": "Eirunepe", + "timezone": "America/Eirunepe" + }, + { + "GMT": "-9", + "cityId": 2092, + "codeIataCity": "ERO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": -22.616667, + "longitudeCity": 17.083332, + "nameCity": "Eldred Rock", + "timezone": "America/Juneau" + }, + { + "GMT": "10", + "cityId": 2093, + "codeIataCity": "ERQ", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -20.976667, + "longitudeCity": 141.0086, + "nameCity": "Elrose Mine", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 2094, + "codeIataCity": "ERR", + "codeIso2Country": "US", + "geonameId": 5085927, + "latitudeCity": 44.783333, + "longitudeCity": -71.13333, + "nameCity": "Errol", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 2095, + "codeIataCity": "ERT", + "codeIso2Country": "MN", + "geonameId": 0, + "latitudeCity": 49.066666, + "longitudeCity": 104.15, + "nameCity": "Erdenet", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "10", + "cityId": 2096, + "codeIataCity": "ERU", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.416667, + "longitudeCity": 147.08333, + "nameCity": "Erume", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 2097, + "codeIataCity": "ERV", + "codeIso2Country": "US", + "geonameId": 4703078, + "latitudeCity": 30.05, + "longitudeCity": -99.13333, + "nameCity": "Kerrville", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 2098, + "codeIataCity": "ERZ", + "codeIso2Country": "TR", + "geonameId": 315368, + "latitudeCity": 39.955555, + "longitudeCity": 41.17361, + "nameCity": "Erzurum", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "10", + "cityId": 2099, + "codeIataCity": "ESA", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -9.733333, + "longitudeCity": 150.81667, + "nameCity": "Esa'Ala", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 2100, + "codeIataCity": "ESC", + "codeIso2Country": "US", + "geonameId": 4992232, + "latitudeCity": 45.720554, + "longitudeCity": -87.08667, + "nameCity": "Escanaba", + "timezone": "America/Detroit" + }, + { + "GMT": "-8", + "cityId": 2101, + "codeIataCity": "ESD", + "codeIso2Country": "US", + "geonameId": 5793307, + "latitudeCity": 48.708332, + "longitudeCity": -122.9125, + "nameCity": "Eastsound", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-8", + "cityId": 2102, + "codeIataCity": "ESE", + "codeIso2Country": "MX", + "geonameId": 0, + "latitudeCity": 31.866667, + "longitudeCity": -116.61667, + "nameCity": "Ensenada", + "timezone": "America/Santa_Isabel" + }, + { + "GMT": "-4", + "cityId": 2103, + "codeIataCity": "ESG", + "codeIso2Country": "PY", + "geonameId": 0, + "latitudeCity": -22.033333, + "longitudeCity": -60.61667, + "nameCity": "Mariscal Estigarribia", + "timezone": "America/Asuncion" + }, + { + "GMT": "0", + "cityId": 2104, + "codeIataCity": "ESH", + "codeIso2Country": "GB", + "geonameId": 2643743, + "latitudeCity": 50.833332, + "longitudeCity": -0.3, + "nameCity": "Shoreham By Sea", + "timezone": "Europe/London" + }, + { + "GMT": "-3", + "cityId": 2105, + "codeIataCity": "ESI", + "codeIso2Country": "BR", + "geonameId": 3463939, + "latitudeCity": -15.0, + "longitudeCity": -44.0, + "nameCity": "Espinosa", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "3", + "cityId": 2106, + "codeIataCity": "ESK", + "codeIso2Country": "TR", + "geonameId": 315202, + "latitudeCity": 39.784302, + "longitudeCity": 30.51922, + "nameCity": "Eskisehir", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3", + "cityId": 2107, + "codeIataCity": "ESL", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 46.36667, + "longitudeCity": 44.333332, + "nameCity": "Elista", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-5", + "cityId": 2108, + "codeIataCity": "ESM", + "codeIso2Country": "EC", + "geonameId": 3660515, + "latitudeCity": 0.966667, + "longitudeCity": -79.625, + "nameCity": "Esmeraldas", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-5", + "cityId": 2109, + "codeIataCity": "ESN", + "codeIso2Country": "US", + "geonameId": 4140963, + "latitudeCity": 38.802776, + "longitudeCity": -76.06778, + "nameCity": "Easton", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 2110, + "codeIataCity": "ESO", + "codeIso2Country": "US", + "geonameId": 5467024, + "latitudeCity": 36.1, + "longitudeCity": -106.03333, + "nameCity": "Espanola", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "cityId": 2111, + "codeIataCity": "ESP", + "codeIso2Country": "US", + "geonameId": 5214543, + "latitudeCity": 40.983334, + "longitudeCity": -75.2, + "nameCity": "East Stroudsburg", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "cityId": 2112, + "codeIataCity": "ESR", + "codeIso2Country": "CL", + "geonameId": 3890417, + "latitudeCity": -26.315277, + "longitudeCity": -69.76528, + "nameCity": "El Salvador", + "timezone": "America/Santiago" + }, + { + "GMT": "1", + "cityId": 2113, + "codeIataCity": "ESS", + "codeIso2Country": "DE", + "geonameId": 2934246, + "latitudeCity": 51.40389, + "longitudeCity": 6.941667, + "nameCity": "Essen", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "cityId": 2114, + "codeIataCity": "EST", + "codeIso2Country": "US", + "geonameId": 4855709, + "latitudeCity": 43.4, + "longitudeCity": -94.833336, + "nameCity": "Estherville", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 2115, + "codeIataCity": "ESU", + "codeIso2Country": "MA", + "geonameId": 2549263, + "latitudeCity": 31.3975, + "longitudeCity": -9.681667, + "nameCity": "Essaouira", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "-8", + "cityId": 2116, + "codeIataCity": "ESW", + "codeIso2Country": "US", + "geonameId": 5809844, + "latitudeCity": 47.233334, + "longitudeCity": -121.183334, + "nameCity": "Easton", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 2117, + "codeIataCity": "ETB", + "codeIso2Country": "US", + "geonameId": 5263045, + "latitudeCity": 43.416668, + "longitudeCity": -88.183334, + "nameCity": "West Bend", + "timezone": "America/Chicago" + }, + { + "GMT": "9.30", + "cityId": 2118, + "codeIataCity": "ETD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -27.5, + "longitudeCity": 138.0, + "nameCity": "Etadunna", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "3", + "cityId": 2119, + "codeIataCity": "ETE", + "codeIso2Country": "ET", + "geonameId": 330789, + "latitudeCity": 12.933333, + "longitudeCity": 36.166668, + "nameCity": "Genda Wuha", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "2", + "cityId": 2120, + "codeIataCity": "ETH", + "codeIso2Country": "IL", + "geonameId": 295277, + "latitudeCity": 29.555616, + "longitudeCity": 34.95357, + "nameCity": "Eilat", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "-6", + "cityId": 2121, + "codeIataCity": "ETN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 32.38333, + "longitudeCity": -98.833336, + "nameCity": "Eastland", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 2122, + "codeIataCity": "ETR", + "codeIso2Country": "EC", + "geonameId": 2643743, + "latitudeCity": -3.452222, + "longitudeCity": -79.96167, + "nameCity": "Santa Rosa", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-6", + "cityId": 2123, + "codeIataCity": "ETS", + "codeIso2Country": "US", + "geonameId": 4059102, + "latitudeCity": 31.316668, + "longitudeCity": -85.85, + "nameCity": "Enterprise", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 2124, + "codeIataCity": "ETZ", + "codeIso2Country": "FR", + "geonameId": 2994160, + "latitudeCity": 49.119666, + "longitudeCity": 6.176905, + "nameCity": "Metz", + "timezone": "Europe/Paris" + }, + { + "GMT": "13", + "cityId": 2125, + "codeIataCity": "EUA", + "codeIso2Country": "TO", + "geonameId": 4032402, + "latitudeCity": -21.377012, + "longitudeCity": -174.95699, + "nameCity": "Eua", + "timezone": "Pacific/Tongatapu" + }, + { + "GMT": "8.45", + "cityId": 2126, + "codeIataCity": "EUC", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -31.716667, + "longitudeCity": 128.86667, + "nameCity": "Eucla", + "timezone": "Australia/Eucla" + }, + { + "GMT": "-8", + "cityId": 2127, + "codeIataCity": "EUE", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.5, + "longitudeCity": -115.916664, + "nameCity": "Eureka", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 2128, + "codeIataCity": "EUF", + "codeIso2Country": "US", + "geonameId": 4060954, + "latitudeCity": 31.9, + "longitudeCity": -85.15, + "nameCity": "Eufaula", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 2129, + "codeIataCity": "EUG", + "codeIso2Country": "US", + "geonameId": 5725846, + "latitudeCity": 44.119198, + "longitudeCity": -123.21197, + "nameCity": "Eugene", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 2130, + "codeIataCity": "EUM", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 54.066666, + "longitudeCity": 9.966667, + "nameCity": "Neumuenster", + "timezone": "Europe/Berlin" + }, + { + "GMT": "0", + "cityId": 2131, + "codeIataCity": "EUN", + "codeIso2Country": "MA", + "geonameId": 0, + "latitudeCity": 27.133333, + "longitudeCity": -13.216667, + "nameCity": "Laayoune", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "-5", + "cityId": 2132, + "codeIataCity": "EUO", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 4.38, + "longitudeCity": -73.2, + "nameCity": "Paratebueno", + "timezone": "America/Bogota" + }, + { + "GMT": "8", + "cityId": 2133, + "codeIataCity": "EUQ", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 10.775, + "longitudeCity": 121.941666, + "nameCity": "Antique", + "timezone": "Asia/Manila" + }, + { + "GMT": "-4", + "cityId": 2134, + "codeIataCity": "EUX", + "codeIso2Country": "BQ", + "geonameId": 3513083, + "latitudeCity": 17.493055, + "longitudeCity": -62.97778, + "nameCity": "St Eustatius", + "timezone": "America/Kralendijk" + }, + { + "GMT": "-6", + "cityId": 2135, + "codeIataCity": "EVA", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 30.35, + "longitudeCity": -94.066666, + "nameCity": "Evadale", + "timezone": "America/Chicago" + }, + { + "GMT": "9.30", + "cityId": 2136, + "codeIataCity": "EVD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.016666, + "longitudeCity": 134.86667, + "nameCity": "Eva Downs", + "timezone": "Australia/Darwin" + }, + { + "GMT": "1", + "cityId": 2137, + "codeIataCity": "EVE", + "codeIso2Country": "NO", + "geonameId": 3135020, + "latitudeCity": 68.496666, + "longitudeCity": 16.679722, + "nameCity": "Harstad-narvik", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 2138, + "codeIataCity": "EVG", + "codeIso2Country": "SE", + "geonameId": 2670061, + "latitudeCity": 62.033333, + "longitudeCity": 14.35, + "nameCity": "Sveg", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "10", + "cityId": 2139, + "codeIataCity": "EVH", + "codeIso2Country": "AU", + "geonameId": 2172880, + "latitudeCity": -29.1, + "longitudeCity": 153.41667, + "nameCity": "Evans Head", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "cityId": 2140, + "codeIataCity": "EVM", + "codeIso2Country": "US", + "geonameId": 5024719, + "latitudeCity": 47.426388, + "longitudeCity": -92.495834, + "nameCity": "Eveleth", + "timezone": "America/Chicago" + }, + { + "GMT": "4", + "cityId": 2141, + "codeIataCity": "EVN", + "codeIso2Country": "AM", + "geonameId": 616052, + "latitudeCity": 40.15272, + "longitudeCity": 44.39805, + "nameCity": "Yerevan", + "timezone": "Asia/Yerevan" + }, + { + "GMT": "-6", + "cityId": 2142, + "codeIataCity": "EVV", + "codeIso2Country": "US", + "geonameId": 4257227, + "latitudeCity": 38.046165, + "longitudeCity": -87.52796, + "nameCity": "Evansville", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 2143, + "codeIataCity": "EVW", + "codeIso2Country": "US", + "geonameId": 5824805, + "latitudeCity": 41.266666, + "longitudeCity": -110.96667, + "nameCity": "Evanston", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 2144, + "codeIataCity": "EVX", + "codeIso2Country": "FR", + "geonameId": 0, + "latitudeCity": 49.016666, + "longitudeCity": 1.15, + "nameCity": "Evreux", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 2145, + "codeIataCity": "EWB", + "codeIso2Country": "US", + "geonameId": 4945121, + "latitudeCity": 41.676945, + "longitudeCity": -70.95917, + "nameCity": "New Bedford", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 2146, + "codeIataCity": "EWD", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 56.45639, + "longitudeCity": -159.76222, + "nameCity": "Wildman Lake", + "timezone": "America/Anchorage" + }, + { + "GMT": "9", + "cityId": 2147, + "codeIataCity": "EWE", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -5.483333, + "longitudeCity": 138.08333, + "nameCity": "Ewer", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "9", + "cityId": 2148, + "codeIataCity": "EWI", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.966667, + "longitudeCity": 136.33333, + "nameCity": "Enarotali", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-6", + "cityId": 2149, + "codeIataCity": "EWK", + "codeIso2Country": "US", + "geonameId": 4276248, + "latitudeCity": 38.033333, + "longitudeCity": -97.36667, + "nameCity": "Newton", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 2150, + "codeIataCity": "EWN", + "codeIso2Country": "US", + "geonameId": 4481682, + "latitudeCity": 35.078342, + "longitudeCity": -77.03462, + "nameCity": "New Bern", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 2151, + "codeIataCity": "EWO", + "codeIso2Country": "CG", + "geonameId": 2260009, + "latitudeCity": -0.883333, + "longitudeCity": 14.8, + "nameCity": "Ewo", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-5", + "cityId": 2152, + "codeIataCity": "EWR", + "codeIso2Country": "US", + "geonameId": 5128581, + "latitudeCity": 40.68907, + "longitudeCity": -74.17876, + "nameCity": "Newark", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 2153, + "codeIataCity": "EXI", + "codeIso2Country": "US", + "geonameId": 5846125, + "latitudeCity": 58.420834, + "longitudeCity": -135.44722, + "nameCity": "Excursion Inlet", + "timezone": "America/Juneau" + }, + { + "GMT": "8", + "cityId": 2154, + "codeIataCity": "EXM", + "codeIso2Country": "AU", + "geonameId": 2079492, + "latitudeCity": -22.25, + "longitudeCity": 114.25, + "nameCity": "Exmouth Gulf", + "timezone": "Australia/Perth" + }, + { + "GMT": "0", + "cityId": 2155, + "codeIataCity": "EXT", + "codeIso2Country": "GB", + "geonameId": 2649808, + "latitudeCity": 50.73111, + "longitudeCity": -3.410968, + "nameCity": "Exeter", + "timezone": "Europe/London" + }, + { + "GMT": "5", + "cityId": 2156, + "codeIataCity": "EYK", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 63.696682, + "longitudeCity": 66.70121, + "nameCity": "Beloyarsky", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "0", + "cityId": 2157, + "codeIataCity": "EYL", + "codeIso2Country": "ML", + "geonameId": 0, + "latitudeCity": 15.133333, + "longitudeCity": -10.566667, + "nameCity": "Yelimane", + "timezone": "Africa/Bamako" + }, + { + "GMT": "-5", + "cityId": 2158, + "codeIataCity": "EYP", + "codeIso2Country": "CO", + "geonameId": 3673369, + "latitudeCity": 5.320729, + "longitudeCity": -72.386284, + "nameCity": "El Yopal", + "timezone": "America/Bogota" + }, + { + "GMT": "-8", + "cityId": 2159, + "codeIataCity": "EYR", + "codeIso2Country": "US", + "geonameId": 5515507, + "latitudeCity": 39.0, + "longitudeCity": -119.25, + "nameCity": "Yerington", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "cityId": 2160, + "codeIataCity": "EYS", + "codeIso2Country": "KE", + "geonameId": 0, + "latitudeCity": 3.25, + "longitudeCity": 35.966667, + "nameCity": "Eliye Springs", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-5", + "cityId": 2161, + "codeIataCity": "EYW", + "codeIso2Country": "US", + "geonameId": 4160812, + "latitudeCity": 24.555702, + "longitudeCity": -81.782591, + "nameCity": "Key West", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 2162, + "codeIataCity": "EZS", + "codeIso2Country": "TR", + "geonameId": 304922, + "latitudeCity": 38.608334, + "longitudeCity": 39.291668, + "nameCity": "Elazig", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "5", + "cityId": 2163, + "codeIataCity": "EZV", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 63.924583, + "longitudeCity": 65.04485, + "nameCity": "Berezovo", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "0", + "cityId": 2164, + "codeIataCity": "FAA", + "codeIso2Country": "GN", + "geonameId": 0, + "latitudeCity": 10.033333, + "longitudeCity": -10.75, + "nameCity": "Faranah", + "timezone": "Africa/Conakry" + }, + { + "GMT": "0", + "cityId": 2165, + "codeIataCity": "FAB", + "codeIso2Country": "GB", + "geonameId": 2643743, + "latitudeCity": 51.283333, + "longitudeCity": -0.766667, + "nameCity": "Farnborough", + "timezone": "Europe/London" + }, + { + "GMT": "-10", + "cityId": 2166, + "codeIataCity": "FAC", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -16.683332, + "longitudeCity": -145.33333, + "nameCity": "Faaite", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "0", + "cityId": 2167, + "codeIataCity": "FAE", + "codeIso2Country": "FO", + "geonameId": 2611396, + "latitudeCity": 62.066666, + "longitudeCity": -7.266667, + "nameCity": "Sorv?gur", + "timezone": "Atlantic/Faroe" + }, + { + "GMT": "-5", + "cityId": 2168, + "codeIataCity": "FAF", + "codeIso2Country": "US", + "geonameId": 4793846, + "latitudeCity": 37.166668, + "longitudeCity": -76.6, + "nameCity": "Fort Eustis", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 2169, + "codeIataCity": "FAG", + "codeIso2Country": "IS", + "geonameId": 2627082, + "latitudeCity": 63.88333, + "longitudeCity": -16.65, + "nameCity": "Fagurholsmyri", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "4.30", + "cityId": 2170, + "codeIataCity": "FAH", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 32.36667, + "longitudeCity": 62.11667, + "nameCity": "Farah", + "timezone": "Asia/Kabul" + }, + { + "GMT": "-9", + "cityId": 2171, + "codeIataCity": "FAI", + "codeIso2Country": "US", + "geonameId": 5861897, + "latitudeCity": 64.837778, + "longitudeCity": -147.716389, + "nameCity": "Fairbanks", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "cityId": 2172, + "codeIataCity": "FAJ", + "codeIso2Country": "PR", + "geonameId": 4564946, + "latitudeCity": 18.338888, + "longitudeCity": -65.50222, + "nameCity": "Fajardo", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "-9", + "cityId": 2173, + "codeIataCity": "FAK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.530556, + "longitudeCity": -135.21666, + "nameCity": "False Island", + "timezone": "America/Sitka" + }, + { + "GMT": "-6", + "cityId": 2174, + "codeIataCity": "FAL", + "codeIso2Country": "US", + "geonameId": 4709796, + "latitudeCity": 26.583332, + "longitudeCity": -99.13333, + "nameCity": "Roma", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 2175, + "codeIataCity": "FAM", + "codeIso2Country": "US", + "geonameId": 4386289, + "latitudeCity": 37.780834, + "longitudeCity": -90.42167, + "nameCity": "Farmington", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 2176, + "codeIataCity": "FAO", + "codeIso2Country": "PT", + "geonameId": 2268339, + "latitudeCity": 37.01536, + "longitudeCity": -7.935113, + "nameCity": "Faro", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "10", + "cityId": 2177, + "codeIataCity": "FAQ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -4.616667, + "longitudeCity": 141.95833, + "nameCity": "Freida River", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 2178, + "codeIataCity": "FAR", + "codeIso2Country": "US", + "geonameId": 5059163, + "latitudeCity": 46.91953, + "longitudeCity": -96.82551, + "nameCity": "Fargo", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 2179, + "codeIataCity": "FAS", + "codeIso2Country": "IS", + "geonameId": 2632428, + "latitudeCity": 64.95, + "longitudeCity": -14.016667, + "nameCity": "Faskrudsfjordur", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-8", + "cityId": 2180, + "codeIataCity": "FAT", + "codeIso2Country": "US", + "geonameId": 5350937, + "latitudeCity": 36.747727, + "longitudeCity": -119.772366, + "nameCity": "Fresno", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "4", + "cityId": 2181, + "codeIataCity": "FAU", + "codeIso2Country": "OM", + "geonameId": 0, + "latitudeCity": 22.3506, + "longitudeCity": 56.4864, + "nameCity": "Fahud", + "timezone": "Asia/Muscat" + }, + { + "GMT": "-10", + "cityId": 2182, + "codeIataCity": "FAV", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -16.053486, + "longitudeCity": -145.65225, + "nameCity": "Fakarava", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-5", + "cityId": 2183, + "codeIataCity": "FAY", + "codeIso2Country": "US", + "geonameId": 4466033, + "latitudeCity": 35.052664, + "longitudeCity": -78.878359, + "nameCity": "Fayetteville", + "timezone": "America/New_York" + }, + { + "GMT": "3.30", + "cityId": 2184, + "codeIataCity": "FAZ", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 28.933332, + "longitudeCity": 53.7, + "nameCity": "Fasa", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-4", + "cityId": 2185, + "codeIataCity": "FBA", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -2.531212, + "longitudeCity": -66.08454, + "nameCity": "Fonte Boa", + "timezone": "America/Manaus" + }, + { + "GMT": "4.30", + "cityId": 2186, + "codeIataCity": "FBD", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 37.1, + "longitudeCity": 70.566666, + "nameCity": "Faizabad", + "timezone": "Asia/Kabul" + }, + { + "GMT": "-3", + "cityId": 2187, + "codeIataCity": "FBE", + "codeIso2Country": "BR", + "geonameId": 3462996, + "latitudeCity": -26.083332, + "longitudeCity": -53.066666, + "nameCity": "Francisco Beltrao", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "cityId": 2188, + "codeIataCity": "FBG", + "codeIso2Country": "US", + "geonameId": 4466033, + "latitudeCity": 35.166668, + "longitudeCity": -79.01667, + "nameCity": "Fort Bragg", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 2189, + "codeIataCity": "FBL", + "codeIso2Country": "US", + "geonameId": 5026291, + "latitudeCity": 44.3, + "longitudeCity": -93.26667, + "nameCity": "Faribault", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 2190, + "codeIataCity": "FBM", + "codeIso2Country": "CD", + "geonameId": 922704, + "latitudeCity": -11.590833, + "longitudeCity": 27.529167, + "nameCity": "Lubumbashi", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-7", + "cityId": 2191, + "codeIataCity": "FBR", + "codeIso2Country": "US", + "geonameId": 5825393, + "latitudeCity": 41.316666, + "longitudeCity": -110.38333, + "nameCity": "Fort Bridger", + "timezone": "America/Denver" + }, + { + "GMT": "-8", + "cityId": 2192, + "codeIataCity": "FBS", + "codeIso2Country": "US", + "geonameId": 5795104, + "latitudeCity": 48.54361, + "longitudeCity": -123.00611, + "nameCity": "Friday Harbor", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 2193, + "codeIataCity": "FBY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 40.13333, + "longitudeCity": -97.183334, + "nameCity": "Fairbury", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 2194, + "codeIataCity": "FCA", + "codeIso2Country": "US", + "geonameId": 5660340, + "latitudeCity": 48.307304, + "longitudeCity": -114.25315, + "nameCity": "Kalispell", + "timezone": "America/Denver" + }, + { + "GMT": "2", + "cityId": 2195, + "codeIataCity": "FCB", + "codeIso2Country": "ZA", + "geonameId": 1004303, + "latitudeCity": -28.825, + "longitudeCity": 27.908333, + "nameCity": "Ficksburg", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "1", + "cityId": 2196, + "codeIataCity": "FCN", + "codeIso2Country": "DE", + "geonameId": 2939658, + "latitudeCity": 53.783054, + "longitudeCity": 8.666667, + "nameCity": "Cuxhaven", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "cityId": 2197, + "codeIataCity": "FCY", + "codeIso2Country": "US", + "geonameId": 4111382, + "latitudeCity": 34.95, + "longitudeCity": -90.76667, + "nameCity": "Forrest City", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 2198, + "codeIataCity": "FDE", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 61.39178, + "longitudeCity": 5.762073, + "nameCity": "Forde", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-4", + "cityId": 2199, + "codeIataCity": "FDF", + "codeIso2Country": "MQ", + "geonameId": 3570396, + "latitudeCity": 14.596061, + "longitudeCity": -60.999947, + "nameCity": "Fort De France", + "timezone": "America/Martinique" + }, + { + "GMT": "1", + "cityId": 2200, + "codeIataCity": "FDH", + "codeIso2Country": "DE", + "geonameId": 2924585, + "latitudeCity": 47.672775, + "longitudeCity": 9.523482, + "nameCity": "Friedrichshafen", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "cityId": 2201, + "codeIataCity": "FDK", + "codeIso2Country": "US", + "geonameId": 4140963, + "latitudeCity": 39.416668, + "longitudeCity": -77.416664, + "nameCity": "Frederick", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 2202, + "codeIataCity": "FDR", + "codeIso2Country": "US", + "geonameId": 4540737, + "latitudeCity": 34.38333, + "longitudeCity": -99.01667, + "nameCity": "Frederick", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 2203, + "codeIataCity": "FDU", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -3.305556, + "longitudeCity": 17.383333, + "nameCity": "Bandundu", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "-5", + "cityId": 2204, + "codeIataCity": "FDY", + "codeIso2Country": "US", + "geonameId": 5153924, + "latitudeCity": 41.033333, + "longitudeCity": -84.53333, + "nameCity": "Findlay", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 2205, + "codeIataCity": "FEA", + "codeIso2Country": "GB", + "geonameId": 7670886, + "latitudeCity": 60.583332, + "longitudeCity": -0.966667, + "nameCity": "Fetlar", + "timezone": "Europe/London" + }, + { + "GMT": "5.45", + "cityId": 2206, + "codeIataCity": "FEB", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 29.233334, + "longitudeCity": 81.21667, + "nameCity": "Sanfebagar", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-3", + "cityId": 2207, + "codeIataCity": "FEC", + "codeIso2Country": "BR", + "geonameId": 3463478, + "latitudeCity": -12.2025, + "longitudeCity": -38.906113, + "nameCity": "Feira De Santana", + "timezone": "America/Bahia" + }, + { + "GMT": "5", + "cityId": 2208, + "codeIataCity": "FEG", + "codeIso2Country": "UZ", + "geonameId": 1514018, + "latitudeCity": 40.350277, + "longitudeCity": 71.73361, + "nameCity": "Fergana", + "timezone": "Asia/Tashkent" + }, + { + "GMT": "-5", + "cityId": 2209, + "codeIataCity": "FEJ", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -8.15, + "longitudeCity": -70.35, + "nameCity": "Feijo", + "timezone": "America/Rio_Branco" + }, + { + "GMT": "0", + "cityId": 2210, + "codeIataCity": "FEK", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 9.6, + "longitudeCity": -5.2, + "nameCity": "Ferkessedougou", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "1", + "cityId": 2211, + "codeIataCity": "FEL", + "codeIso2Country": "DE", + "geonameId": 2867714, + "latitudeCity": 48.2, + "longitudeCity": 11.266667, + "nameCity": "Fuerstenfeldbruck", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-2", + "cityId": 2212, + "codeIataCity": "FEN", + "codeIso2Country": "BR", + "geonameId": 3399637, + "latitudeCity": -3.85, + "longitudeCity": -32.416668, + "nameCity": "Fernando De Noronha", + "timezone": "America/Noronha" + }, + { + "GMT": "-6", + "cityId": 2213, + "codeIataCity": "FEP", + "codeIso2Country": "US", + "geonameId": 4893171, + "latitudeCity": 42.283333, + "longitudeCity": -89.6, + "nameCity": "Freeport", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 2214, + "codeIataCity": "FES", + "codeIso2Country": "ES", + "geonameId": 0, + "latitudeCity": 36.466667, + "longitudeCity": -6.183333, + "nameCity": "San Fernando", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-6", + "cityId": 2215, + "codeIataCity": "FET", + "codeIso2Country": "US", + "geonameId": 5074472, + "latitudeCity": 41.433334, + "longitudeCity": -96.5, + "nameCity": "Fremont", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 2216, + "codeIataCity": "FEZ", + "codeIso2Country": "MA", + "geonameId": 2548885, + "latitudeCity": 33.93079, + "longitudeCity": -4.982138, + "nameCity": "Fez", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "-5", + "cityId": 2217, + "codeIataCity": "FFA", + "codeIso2Country": "US", + "geonameId": 4474274, + "latitudeCity": 36.016666, + "longitudeCity": -75.666664, + "nameCity": "Kill Devil Hills", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 2218, + "codeIataCity": "FFD", + "codeIso2Country": "GB", + "geonameId": 2649741, + "latitudeCity": 51.733334, + "longitudeCity": -1.783333, + "nameCity": "Fairford", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "cityId": 2219, + "codeIataCity": "FFL", + "codeIso2Country": "US", + "geonameId": 4862034, + "latitudeCity": 40.933334, + "longitudeCity": -91.95, + "nameCity": "Fairfield", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 2220, + "codeIataCity": "FFM", + "codeIso2Country": "US", + "geonameId": 5026416, + "latitudeCity": 46.283333, + "longitudeCity": -96.066666, + "nameCity": "Fergus Falls", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 2221, + "codeIataCity": "FFT", + "codeIso2Country": "US", + "geonameId": 4292188, + "latitudeCity": 38.18222, + "longitudeCity": -84.905, + "nameCity": "Frankfort", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "cityId": 2222, + "codeIataCity": "FFU", + "codeIso2Country": "CL", + "geonameId": 3889223, + "latitudeCity": -43.2, + "longitudeCity": -71.816666, + "nameCity": "Futaleufu", + "timezone": "America/Santiago" + }, + { + "GMT": "0", + "cityId": 2223, + "codeIataCity": "FGD", + "codeIso2Country": "MR", + "geonameId": 0, + "latitudeCity": 22.675, + "longitudeCity": -12.731944, + "nameCity": "Fderik", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "12", + "cityId": 2224, + "codeIataCity": "FGL", + "codeIso2Country": "NZ", + "geonameId": 2179565, + "latitudeCity": -43.466667, + "longitudeCity": 170.01666, + "nameCity": "Fox Glacier", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "1", + "cityId": 2225, + "codeIataCity": "FGR", + "codeIso2Country": "ES", + "geonameId": 2517595, + "latitudeCity": 36.533333, + "longitudeCity": -4.633333, + "nameCity": "Fuengirola", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-10", + "cityId": 2226, + "codeIataCity": "FGU", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -16.05, + "longitudeCity": -141.83333, + "nameCity": "Fangatau", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-7", + "cityId": 2227, + "codeIataCity": "FHU", + "codeIso2Country": "US", + "geonameId": 5314328, + "latitudeCity": 31.588888, + "longitudeCity": -110.343056, + "nameCity": "Sierra Vista", + "timezone": "America/Phoenix" + }, + { + "GMT": "-10", + "cityId": 2228, + "codeIataCity": "FHZ", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -15.99095, + "longitudeCity": -140.16446, + "nameCity": "Fakahina", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-9", + "cityId": 2229, + "codeIataCity": "FIC", + "codeIso2Country": "US", + "geonameId": 5554428, + "latitudeCity": 55.77778, + "longitudeCity": -131.5375, + "nameCity": "Fire Cove", + "timezone": "America/Sitka" + }, + { + "GMT": "-5", + "cityId": 2230, + "codeIataCity": "FID", + "codeIso2Country": "US", + "geonameId": 5117263, + "latitudeCity": 41.0, + "longitudeCity": -72.0, + "nameCity": "Fishers Island", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 2231, + "codeIataCity": "FIE", + "codeIso2Country": "GB", + "geonameId": 2644605, + "latitudeCity": 59.5, + "longitudeCity": -1.666667, + "nameCity": "Fair Isle", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 2232, + "codeIataCity": "FIG", + "codeIso2Country": "GN", + "geonameId": 0, + "latitudeCity": 10.35, + "longitudeCity": -13.566667, + "nameCity": "Fria", + "timezone": "Africa/Conakry" + }, + { + "GMT": "1", + "cityId": 2233, + "codeIataCity": "FIH", + "codeIso2Country": "CD", + "geonameId": 2314302, + "latitudeCity": -4.320836, + "longitudeCity": 15.29866, + "nameCity": "Kinshasa", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "9.30", + "cityId": 2234, + "codeIataCity": "FIK", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -25.566668, + "longitudeCity": 134.58333, + "nameCity": "Finke", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-7", + "cityId": 2235, + "codeIataCity": "FIL", + "codeIso2Country": "US", + "geonameId": 5542323, + "latitudeCity": 38.958332, + "longitudeCity": -112.3625, + "nameCity": "Fillmore", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "cityId": 2236, + "codeIataCity": "FIN", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.6275, + "longitudeCity": 147.86389, + "nameCity": "Finschhafen", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 2237, + "codeIataCity": "FIV", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.266666, + "longitudeCity": -133.63333, + "nameCity": "Five Finger Coast Guard Heliport", + "timezone": "America/Juneau" + }, + { + "GMT": "8", + "cityId": 2238, + "codeIataCity": "FIZ", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.178333, + "longitudeCity": 125.55417, + "nameCity": "Fitzroy Crossing", + "timezone": "Australia/Perth" + }, + { + "GMT": "4", + "cityId": 2239, + "codeIataCity": "FJR", + "codeIso2Country": "AE", + "geonameId": 292878, + "latitudeCity": 25.109444, + "longitudeCity": 56.330555, + "nameCity": "Al-fujairah", + "timezone": "Asia/Dubai" + }, + { + "GMT": "1", + "cityId": 2240, + "codeIataCity": "FKB", + "codeIso2Country": "DE", + "geonameId": 2825297, + "latitudeCity": 49.008085, + "longitudeCity": 8.403756, + "nameCity": "Karlsruhe", + "timezone": "Europe/Berlin" + }, + { + "GMT": "2", + "cityId": 2241, + "codeIataCity": "FKI", + "codeIso2Country": "CD", + "geonameId": 212730, + "latitudeCity": 0.516667, + "longitudeCity": 25.2, + "nameCity": "Kisangani", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "9", + "cityId": 2242, + "codeIataCity": "FKJ", + "codeIso2Country": "JP", + "geonameId": 1863985, + "latitudeCity": 36.13972, + "longitudeCity": 136.22667, + "nameCity": "Fukui", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "cityId": 2243, + "codeIataCity": "FKL", + "codeIso2Country": "US", + "geonameId": 5188843, + "latitudeCity": 41.379166, + "longitudeCity": -79.85972, + "nameCity": "Franklin", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 2244, + "codeIataCity": "FKN", + "codeIso2Country": "US", + "geonameId": 4788158, + "latitudeCity": 36.683334, + "longitudeCity": -76.933334, + "nameCity": "Franklin", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "cityId": 2245, + "codeIataCity": "FKQ", + "codeIso2Country": "ID", + "geonameId": 6619356, + "latitudeCity": -2.916667, + "longitudeCity": 132.3, + "nameCity": "Fak Fak", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "9", + "cityId": 2246, + "codeIataCity": "FKS", + "codeIso2Country": "JP", + "geonameId": 2112141, + "latitudeCity": 37.226665, + "longitudeCity": 140.43279, + "nameCity": "Fukushima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "cityId": 2247, + "codeIataCity": "FLA", + "codeIso2Country": "CO", + "geonameId": 3682426, + "latitudeCity": 1.588889, + "longitudeCity": -75.55889, + "nameCity": "Florencia", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "cityId": 2248, + "codeIataCity": "FLB", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -6.8, + "longitudeCity": -43.033333, + "nameCity": "Floriano", + "timezone": "America/Fortaleza" + }, + { + "GMT": "10", + "cityId": 2249, + "codeIataCity": "FLC", + "codeIso2Country": "AU", + "geonameId": 2166893, + "latitudeCity": -36.833332, + "longitudeCity": 143.28334, + "nameCity": "Falls Creek", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "cityId": 2250, + "codeIataCity": "FLD", + "codeIso2Country": "US", + "geonameId": 5253352, + "latitudeCity": 43.771667, + "longitudeCity": -88.48444, + "nameCity": "Fond Du Lac", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 2251, + "codeIataCity": "FLF", + "codeIso2Country": "DE", + "geonameId": 2926271, + "latitudeCity": 54.77222, + "longitudeCity": 9.383333, + "nameCity": "Flensburg", + "timezone": "Europe/Berlin" + }, + { + "GMT": "0", + "cityId": 2252, + "codeIataCity": "FLH", + "codeIso2Country": "GB", + "geonameId": 8299623, + "latitudeCity": 58.5, + "longitudeCity": -3.0, + "nameCity": "Flotta", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 2253, + "codeIataCity": "FLI", + "codeIso2Country": "IS", + "geonameId": 3417363, + "latitudeCity": 65.98333, + "longitudeCity": -23.7, + "nameCity": "Flateyri", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-9", + "cityId": 2254, + "codeIataCity": "FLJ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 60.0325, + "longitudeCity": -148.00833, + "nameCity": "Falls Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 2255, + "codeIataCity": "FLL", + "codeIso2Country": "US", + "geonameId": 4155966, + "latitudeCity": 26.122308, + "longitudeCity": -80.143379, + "nameCity": "Fort Lauderdale", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "cityId": 2256, + "codeIataCity": "FLM", + "codeIso2Country": "PY", + "geonameId": 0, + "latitudeCity": -22.35, + "longitudeCity": -60.033333, + "nameCity": "Filadelfia", + "timezone": "America/Asuncion" + }, + { + "GMT": "-3", + "cityId": 2257, + "codeIataCity": "FLN", + "codeIso2Country": "BR", + "geonameId": 3463237, + "latitudeCity": -27.664446, + "longitudeCity": -48.5452, + "nameCity": "Florianopolis", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "cityId": 2258, + "codeIataCity": "FLO", + "codeIso2Country": "US", + "geonameId": 4578737, + "latitudeCity": 34.18889, + "longitudeCity": -79.72444, + "nameCity": "Florence", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 2259, + "codeIataCity": "FLP", + "codeIso2Country": "US", + "geonameId": 4378219, + "latitudeCity": 36.3, + "longitudeCity": -92.583336, + "nameCity": "Flippin", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 2260, + "codeIataCity": "FLR", + "codeIso2Country": "IT", + "geonameId": 3176959, + "latitudeCity": 43.768732, + "longitudeCity": 11.256901, + "nameCity": "Florence", + "timezone": "Europe/Rome" + }, + { + "GMT": "10", + "cityId": 2261, + "codeIataCity": "FLS", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -40.095, + "longitudeCity": 147.99667, + "nameCity": "Flinders Island", + "timezone": "Australia/Hobart" + }, + { + "GMT": "-9", + "cityId": 2262, + "codeIataCity": "FLT", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 62.454166, + "longitudeCity": -157.98666, + "nameCity": "Flat", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 2263, + "codeIataCity": "FLV", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.36667, + "longitudeCity": -94.916664, + "nameCity": "Fort Leavenworth", + "timezone": "America/Chicago" + }, + { + "GMT": "-1", + "cityId": 2264, + "codeIataCity": "FLW", + "codeIso2Country": "PT", + "geonameId": 0, + "latitudeCity": 39.466667, + "longitudeCity": -31.15, + "nameCity": "Flores Island", + "timezone": "Atlantic/Azores" + }, + { + "GMT": "10", + "cityId": 2265, + "codeIataCity": "FLY", + "codeIso2Country": "AU", + "geonameId": 2166675, + "latitudeCity": -35.65, + "longitudeCity": 145.58333, + "nameCity": "Finley", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-3", + "cityId": 2266, + "codeIataCity": "FMA", + "codeIso2Country": "AR", + "geonameId": 3433899, + "latitudeCity": -26.212778, + "longitudeCity": -58.235, + "nameCity": "Formosa", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-9", + "cityId": 2267, + "codeIataCity": "FMC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 66.916664, + "longitudeCity": -149.84166, + "nameCity": "Five Mile", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 2268, + "codeIataCity": "FME", + "codeIso2Country": "US", + "geonameId": 4140963, + "latitudeCity": 39.103863, + "longitudeCity": -76.84414, + "nameCity": "Fort Meade", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 2269, + "codeIataCity": "FMG", + "codeIso2Country": "CR", + "geonameId": 8051159, + "latitudeCity": 10.416667, + "longitudeCity": -85.78333, + "nameCity": "Flamingo", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-5", + "cityId": 2270, + "codeIataCity": "FMH", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.666668, + "longitudeCity": -70.55, + "nameCity": "Falmouth", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 2271, + "codeIataCity": "FMI", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -5.878333, + "longitudeCity": 29.245277, + "nameCity": "Kalemie", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "1", + "cityId": 2272, + "codeIataCity": "FMM", + "codeIso2Country": "DE", + "geonameId": 2871992, + "latitudeCity": 47.98861, + "longitudeCity": 10.239444, + "nameCity": "Memmingen", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-7", + "cityId": 2273, + "codeIataCity": "FMN", + "codeIso2Country": "US", + "geonameId": 5467328, + "latitudeCity": 36.74111, + "longitudeCity": -108.229164, + "nameCity": "Farmington", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 2274, + "codeIataCity": "FMO", + "codeIso2Country": "DE", + "geonameId": 2867543, + "latitudeCity": 52.09207, + "longitudeCity": 7.610575, + "nameCity": "Greven", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "cityId": 2275, + "codeIataCity": "FMS", + "codeIso2Country": "US", + "geonameId": 4857507, + "latitudeCity": 40.65889, + "longitudeCity": -91.3275, + "nameCity": "Fort Madison", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 2276, + "codeIataCity": "FMU", + "codeIso2Country": "US", + "geonameId": 5727032, + "latitudeCity": 43.98526, + "longitudeCity": -124.11047, + "nameCity": "Florence", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 2277, + "codeIataCity": "FMY", + "codeIso2Country": "US", + "geonameId": 4155995, + "latitudeCity": 26.640628, + "longitudeCity": -81.872308, + "nameCity": "Fort Myers", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 2278, + "codeIataCity": "FNA", + "codeIso2Country": "SL", + "geonameId": 2409306, + "latitudeCity": 8.484146, + "longitudeCity": -13.22867, + "nameCity": "Freetown", + "timezone": "Africa/Freetown" + }, + { + "GMT": "1", + "cityId": 2279, + "codeIataCity": "FNB", + "codeIso2Country": "DE", + "geonameId": 2866135, + "latitudeCity": 53.60278, + "longitudeCity": 13.307222, + "nameCity": "Neubrandenburg", + "timezone": "Europe/Berlin" + }, + { + "GMT": "0", + "cityId": 2280, + "codeIataCity": "FNC", + "codeIso2Country": "PT", + "geonameId": 2267827, + "latitudeCity": 32.693123, + "longitudeCity": -16.775635, + "nameCity": "Funchal", + "timezone": "Atlantic/Madeira" + }, + { + "GMT": "10", + "cityId": 2281, + "codeIataCity": "FNE", + "codeIso2Country": "PG", + "geonameId": 2088122, + "latitudeCity": -8.6, + "longitudeCity": 147.23334, + "nameCity": "Fane", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "cityId": 2282, + "codeIataCity": "FNG", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 12.066667, + "longitudeCity": 0.35, + "nameCity": "Fada Ngourma", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "3", + "cityId": 2283, + "codeIataCity": "FNH", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 9.583333, + "longitudeCity": 37.433334, + "nameCity": "Fincha", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "1", + "cityId": 2284, + "codeIataCity": "FNI", + "codeIso2Country": "FR", + "geonameId": 2990363, + "latitudeCity": 43.836699, + "longitudeCity": 4.360054, + "nameCity": "Nimes", + "timezone": "Europe/Paris" + }, + { + "GMT": "8.30", + "cityId": 2285, + "codeIataCity": "FNJ", + "codeIso2Country": "KP", + "geonameId": 1871859, + "latitudeCity": 39.2, + "longitudeCity": 125.666664, + "nameCity": "Pyongyang", + "timezone": "Asia/Pyongyang" + }, + { + "GMT": "-9", + "cityId": 2286, + "codeIataCity": "FNK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 69.5, + "longitudeCity": -147.58333, + "nameCity": "Fin Creek", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "cityId": 2287, + "codeIataCity": "FNL", + "codeIso2Country": "US", + "geonameId": 5579368, + "latitudeCity": 40.58526, + "longitudeCity": -105.084423, + "nameCity": "Fort Collins", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "cityId": 2288, + "codeIataCity": "FNR", + "codeIso2Country": "US", + "geonameId": 5554072, + "latitudeCity": 58.333332, + "longitudeCity": -134.58333, + "nameCity": "Funter Bay", + "timezone": "America/Juneau" + }, + { + "GMT": "-5", + "cityId": 2289, + "codeIataCity": "FNT", + "codeIso2Country": "US", + "geonameId": 4992982, + "latitudeCity": 42.973812, + "longitudeCity": -83.73891, + "nameCity": "Flint", + "timezone": "America/Detroit" + }, + { + "GMT": "1", + "cityId": 2290, + "codeIataCity": "FNU", + "codeIso2Country": "IT", + "geonameId": 2523964, + "latitudeCity": 39.90306, + "longitudeCity": 8.59194, + "nameCity": "Oristano", + "timezone": "Europe/Rome" + }, + { + "GMT": "0", + "cityId": 2291, + "codeIataCity": "FOA", + "codeIso2Country": "GB", + "geonameId": 2644605, + "latitudeCity": 60.166668, + "longitudeCity": -2.083333, + "nameCity": "Foula", + "timezone": "Europe/London" + }, + { + "GMT": "-8", + "cityId": 2292, + "codeIataCity": "FOB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.474445, + "longitudeCity": -123.79444, + "nameCity": "Fort Bragg", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "cityId": 2293, + "codeIataCity": "FOC", + "codeIso2Country": "CN", + "geonameId": 1810821, + "latitudeCity": 25.93123, + "longitudeCity": 119.66923, + "nameCity": "Fuzhou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "cityId": 2294, + "codeIataCity": "FOD", + "codeIso2Country": "US", + "geonameId": 4857486, + "latitudeCity": 42.5525, + "longitudeCity": -94.18972, + "nameCity": "Fort Dodge", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 2295, + "codeIataCity": "FOG", + "codeIso2Country": "IT", + "geonameId": 3176885, + "latitudeCity": 41.462292, + "longitudeCity": 15.544746, + "nameCity": "Foggia", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "cityId": 2296, + "codeIataCity": "FOK", + "codeIso2Country": "US", + "geonameId": 5133926, + "latitudeCity": 40.833332, + "longitudeCity": -72.666664, + "nameCity": "Westhampton", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 2297, + "codeIataCity": "FOM", + "codeIso2Country": "CM", + "geonameId": 0, + "latitudeCity": 5.75, + "longitudeCity": 10.833333, + "nameCity": "Foumban", + "timezone": "Africa/Douala" + }, + { + "GMT": "-6", + "cityId": 2298, + "codeIataCity": "FON", + "codeIso2Country": "CR", + "geonameId": 3623716, + "latitudeCity": 10.4, + "longitudeCity": -84.48333, + "nameCity": "Fortuna", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "9", + "cityId": 2299, + "codeIataCity": "FOO", + "codeIso2Country": "ID", + "geonameId": 1636308, + "latitudeCity": -1.05, + "longitudeCity": 134.9, + "nameCity": "Numfoor", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-5", + "cityId": 2300, + "codeIataCity": "FOP", + "codeIso2Country": "US", + "geonameId": 4180531, + "latitudeCity": 33.61667, + "longitudeCity": -84.36667, + "nameCity": "Forest Park", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 2301, + "codeIataCity": "FOR", + "codeIso2Country": "BR", + "geonameId": 3399415, + "latitudeCity": -3.779073, + "longitudeCity": -38.540836, + "nameCity": "Fortaleza", + "timezone": "America/Fortaleza" + }, + { + "GMT": "8", + "cityId": 2302, + "codeIataCity": "FOS", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -30.816668, + "longitudeCity": 128.05, + "nameCity": "Forrest", + "timezone": "Australia/Perth" + }, + { + "GMT": "10", + "cityId": 2303, + "codeIataCity": "FOT", + "codeIso2Country": "AU", + "geonameId": 2166309, + "latitudeCity": -32.183334, + "longitudeCity": 151.51666, + "nameCity": "Forster", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "cityId": 2304, + "codeIataCity": "FOU", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -1.2, + "longitudeCity": 10.783333, + "nameCity": "Fougamou", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-9", + "cityId": 2305, + "codeIataCity": "FOX", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 64.0, + "longitudeCity": -147.0, + "nameCity": "Fox", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "cityId": 2306, + "codeIataCity": "FOY", + "codeIso2Country": "LR", + "geonameId": 0, + "latitudeCity": 8.366667, + "longitudeCity": -10.216667, + "nameCity": "Foya", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-5", + "cityId": 2307, + "codeIataCity": "FPO", + "codeIso2Country": "BS", + "geonameId": 3572375, + "latitudeCity": 26.547293, + "longitudeCity": -78.7052, + "nameCity": "Freeport", + "timezone": "America/Nassau" + }, + { + "GMT": "-5", + "cityId": 2308, + "codeIataCity": "FPR", + "codeIso2Country": "US", + "geonameId": 4156018, + "latitudeCity": 27.45, + "longitudeCity": -80.333336, + "nameCity": "Fort Pierce", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 2309, + "codeIataCity": "FPY", + "codeIso2Country": "US", + "geonameId": 4174715, + "latitudeCity": 30.116667, + "longitudeCity": -83.583336, + "nameCity": "Perry", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 2310, + "codeIataCity": "FRA", + "codeIso2Country": "DE", + "geonameId": 2925533, + "latitudeCity": 50.050735, + "longitudeCity": 8.570773, + "nameCity": "Frankfurt", + "timezone": "Europe/Berlin" + }, + { + "GMT": "10", + "cityId": 2311, + "codeIataCity": "FRB", + "codeIso2Country": "AU", + "geonameId": 2143930, + "latitudeCity": -33.4, + "longitudeCity": 148.05, + "nameCity": "Forbes", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-3", + "cityId": 2312, + "codeIataCity": "FRC", + "codeIso2Country": "BR", + "geonameId": 3463011, + "latitudeCity": -20.551945, + "longitudeCity": -47.4375, + "nameCity": "Franca", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "cityId": 2313, + "codeIataCity": "FRD", + "codeIso2Country": "US", + "geonameId": 5795104, + "latitudeCity": 48.524807, + "longitudeCity": -123.0265, + "nameCity": "Friday Harbor", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "11", + "cityId": 2314, + "codeIataCity": "FRE", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -8.1, + "longitudeCity": 159.58333, + "nameCity": "Fera Island", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-5", + "cityId": 2315, + "codeIataCity": "FRG", + "codeIso2Country": "US", + "geonameId": 5116931, + "latitudeCity": 40.733334, + "longitudeCity": -73.416664, + "nameCity": "Farmingdale", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 2316, + "codeIataCity": "FRH", + "codeIso2Country": "US", + "geonameId": 4299276, + "latitudeCity": 38.55, + "longitudeCity": -86.61667, + "nameCity": "French Lick", + "timezone": "America/Kentucky/Louisville" + }, + { + "GMT": "-6", + "cityId": 2317, + "codeIataCity": "FRI", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.083332, + "longitudeCity": -96.78333, + "nameCity": "Fort Riley", + "timezone": "America/Chicago" + }, + { + "GMT": "4", + "cityId": 2318, + "codeIataCity": "FRK", + "codeIso2Country": "SC", + "geonameId": 241274, + "latitudeCity": -4.583333, + "longitudeCity": 55.966667, + "nameCity": "Fregate Island", + "timezone": "Indian/Mahe" + }, + { + "GMT": "1", + "cityId": 2319, + "codeIataCity": "FRL", + "codeIso2Country": "IT", + "geonameId": 3176959, + "latitudeCity": 44.19857, + "longitudeCity": 12.07076, + "nameCity": "Forli", + "timezone": "Europe/Rome" + }, + { + "GMT": "-6", + "cityId": 2320, + "codeIataCity": "FRM", + "codeIso2Country": "US", + "geonameId": 5026114, + "latitudeCity": 43.64722, + "longitudeCity": -94.423615, + "nameCity": "Fairmont", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 2321, + "codeIataCity": "FRN", + "codeIso2Country": "US", + "geonameId": 5862368, + "latitudeCity": 61.25, + "longitudeCity": -149.68333, + "nameCity": "Fort Richardson", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 2322, + "codeIataCity": "FRO", + "codeIso2Country": "NO", + "geonameId": 3156980, + "latitudeCity": 61.58643, + "longitudeCity": 5.024577, + "nameCity": "Floro", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-9", + "cityId": 2323, + "codeIataCity": "FRP", + "codeIso2Country": "US", + "geonameId": 5554072, + "latitudeCity": 57.845833, + "longitudeCity": -135.025, + "nameCity": "Fresh Water Bay", + "timezone": "America/Juneau" + }, + { + "GMT": "10", + "cityId": 2324, + "codeIataCity": "FRQ", + "codeIso2Country": "PG", + "geonameId": 2097441, + "latitudeCity": -5.416667, + "longitudeCity": 141.7, + "nameCity": "Feramin", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 2325, + "codeIataCity": "FRR", + "codeIso2Country": "US", + "geonameId": 4760232, + "latitudeCity": 38.916668, + "longitudeCity": -78.2, + "nameCity": "Front Royal", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 2326, + "codeIataCity": "FRS", + "codeIso2Country": "GT", + "geonameId": 3595725, + "latitudeCity": 16.916668, + "longitudeCity": -89.88333, + "nameCity": "Flores", + "timezone": "America/Guatemala" + }, + { + "GMT": "-4", + "cityId": 2327, + "codeIataCity": "FRT", + "codeIso2Country": "CL", + "geonameId": 3889262, + "latitudeCity": -41.125, + "longitudeCity": -73.06528, + "nameCity": "Frutillar", + "timezone": "America/Santiago" + }, + { + "GMT": "6", + "cityId": 2328, + "codeIataCity": "FRU", + "codeIso2Country": "KG", + "geonameId": 1528675, + "latitudeCity": 43.05358, + "longitudeCity": 74.46945, + "nameCity": "Bishkek", + "timezone": "Asia/Bishkek" + }, + { + "GMT": "2", + "cityId": 2329, + "codeIataCity": "FRW", + "codeIso2Country": "BW", + "geonameId": 933778, + "latitudeCity": -21.16, + "longitudeCity": 27.4825, + "nameCity": "Francistown", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "-5", + "cityId": 2330, + "codeIataCity": "FRY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 44.016666, + "longitudeCity": -70.98333, + "nameCity": "Fryeburg", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 2331, + "codeIataCity": "FRZ", + "codeIso2Country": "DE", + "geonameId": 2892518, + "latitudeCity": 51.11667, + "longitudeCity": 9.266667, + "nameCity": "Fritzlar", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 2332, + "codeIataCity": "FSC", + "codeIso2Country": "FR", + "geonameId": 6620210, + "latitudeCity": 41.498634, + "longitudeCity": 9.098223, + "nameCity": "Figari", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "cityId": 2333, + "codeIataCity": "FSD", + "codeIso2Country": "US", + "geonameId": 5231851, + "latitudeCity": 43.580296, + "longitudeCity": -96.73115, + "nameCity": "Sioux Falls", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 2334, + "codeIataCity": "FSI", + "codeIso2Country": "US", + "geonameId": 4540737, + "latitudeCity": 34.650723, + "longitudeCity": -98.419975, + "nameCity": "Fort Sill", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 2335, + "codeIataCity": "FSK", + "codeIso2Country": "US", + "geonameId": 4271690, + "latitudeCity": 37.833332, + "longitudeCity": -94.7, + "nameCity": "Fort Scott", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 2336, + "codeIataCity": "FSL", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.2, + "longitudeCity": 125.8, + "nameCity": "Fossil Downs", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "cityId": 2337, + "codeIataCity": "FSM", + "codeIso2Country": "US", + "geonameId": 4111410, + "latitudeCity": 35.34124, + "longitudeCity": -94.3589, + "nameCity": "Fort Smith", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 2338, + "codeIataCity": "FSN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.15, + "longitudeCity": -87.96667, + "nameCity": "Fort Sheridan", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 2339, + "codeIataCity": "FSP", + "codeIso2Country": "PM", + "geonameId": 3424934, + "latitudeCity": 46.916668, + "longitudeCity": -56.166668, + "nameCity": "St Pierre", + "timezone": "America/Miquelon" + }, + { + "GMT": "0", + "cityId": 2340, + "codeIataCity": "FSS", + "codeIso2Country": "GB", + "geonameId": 2649192, + "latitudeCity": 57.65, + "longitudeCity": -3.566667, + "nameCity": "Forres", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "cityId": 2341, + "codeIataCity": "FST", + "codeIso2Country": "US", + "geonameId": 5521746, + "latitudeCity": 30.893888, + "longitudeCity": -102.87889, + "nameCity": "Fort Stockton", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 2342, + "codeIataCity": "FSU", + "codeIso2Country": "US", + "geonameId": 5462393, + "latitudeCity": 34.466667, + "longitudeCity": -104.25, + "nameCity": "Fort Sumner", + "timezone": "America/Denver" + }, + { + "GMT": "9", + "cityId": 2343, + "codeIataCity": "FSZ", + "codeIso2Country": "JP", + "geonameId": 1852472, + "latitudeCity": 34.796112, + "longitudeCity": 138.18944, + "nameCity": "Shizuoka", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "11", + "cityId": 2344, + "codeIataCity": "FTA", + "codeIso2Country": "VU", + "geonameId": 0, + "latitudeCity": -19.416668, + "longitudeCity": 170.25, + "nameCity": "Futuna Island", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-3", + "cityId": 2345, + "codeIataCity": "FTE", + "codeIso2Country": "AR", + "geonameId": 3858677, + "latitudeCity": -50.284225, + "longitudeCity": -72.053696, + "nameCity": "El Calafate", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "-11", + "cityId": 2346, + "codeIataCity": "FTI", + "codeIso2Country": "AS", + "geonameId": 0, + "latitudeCity": -14.216667, + "longitudeCity": -169.45, + "nameCity": "Fitiuta", + "timezone": "Pacific/Pago_Pago" + }, + { + "GMT": "-5", + "cityId": 2347, + "codeIataCity": "FTK", + "codeIso2Country": "US", + "geonameId": 7259771, + "latitudeCity": 37.9, + "longitudeCity": -85.95, + "nameCity": "Fort Knox", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 2348, + "codeIataCity": "FTL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 61.88333, + "longitudeCity": -162.08333, + "nameCity": "Fortuna Ledge", + "timezone": "America/Nome" + }, + { + "GMT": "3", + "cityId": 2349, + "codeIataCity": "FTU", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -25.038055, + "longitudeCity": 46.955555, + "nameCity": "Fort Dauphin", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-6", + "cityId": 2350, + "codeIataCity": "FTW", + "codeIso2Country": "US", + "geonameId": 4691930, + "latitudeCity": 32.75, + "longitudeCity": -97.333336, + "nameCity": "Fort Worth", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 2351, + "codeIataCity": "FTX", + "codeIso2Country": "CG", + "geonameId": 2255542, + "latitudeCity": -0.983333, + "longitudeCity": 16.008333, + "nameCity": "Owando", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "10", + "cityId": 2352, + "codeIataCity": "FUB", + "codeIso2Country": "PG", + "geonameId": 2097320, + "latitudeCity": -6.066667, + "longitudeCity": 150.65, + "nameCity": "Fulleborn", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "cityId": 2353, + "codeIataCity": "FUE", + "codeIso2Country": "ES", + "geonameId": 6544334, + "latitudeCity": 28.450605, + "longitudeCity": -13.869893, + "nameCity": "Puerto del Rosario", + "timezone": "Atlantic/Canary" + }, + { + "GMT": "8", + "cityId": 2354, + "codeIataCity": "FUG", + "codeIso2Country": "CN", + "geonameId": 1809271, + "latitudeCity": 32.86667, + "longitudeCity": 115.7, + "nameCity": "Fuyang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9", + "cityId": 2355, + "codeIataCity": "FUJ", + "codeIso2Country": "JP", + "geonameId": 1856177, + "latitudeCity": 32.667828, + "longitudeCity": 128.83762, + "nameCity": "Fukue", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "9", + "cityId": 2356, + "codeIataCity": "FUK", + "codeIso2Country": "JP", + "geonameId": 1863967, + "latitudeCity": 33.584286, + "longitudeCity": 130.4439, + "nameCity": "Fukuoka", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-8", + "cityId": 2357, + "codeIataCity": "FUL", + "codeIso2Country": "US", + "geonameId": 5323810, + "latitudeCity": 33.86667, + "longitudeCity": -117.975, + "nameCity": "Fullerton", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 2358, + "codeIataCity": "FUM", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.383333, + "longitudeCity": 142.43333, + "nameCity": "Fuma", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "12", + "cityId": 2359, + "codeIataCity": "FUN", + "codeIso2Country": "TV", + "geonameId": 0, + "latitudeCity": -8.516667, + "longitudeCity": 179.20833, + "nameCity": "Funafuti Atoll", + "timezone": "Pacific/Funafuti" + }, + { + "GMT": "8", + "cityId": 2360, + "codeIataCity": "FUO", + "codeIso2Country": "CN", + "geonameId": 1809858, + "latitudeCity": 23.021548, + "longitudeCity": 113.121416, + "nameCity": "Fuoshan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "12", + "cityId": 2361, + "codeIataCity": "FUT", + "codeIso2Country": "WF", + "geonameId": 0, + "latitudeCity": -14.25, + "longitudeCity": -178.15, + "nameCity": "Futuna Island", + "timezone": "Pacific/Wallis" + }, + { + "GMT": "8", + "cityId": 2362, + "codeIataCity": "FVL", + "codeIso2Country": "AU", + "geonameId": 2070176, + "latitudeCity": -18.283333, + "longitudeCity": 128.41667, + "nameCity": "Flora Valley", + "timezone": "Australia/Perth" + }, + { + "GMT": "5", + "cityId": 2363, + "codeIataCity": "FVM", + "codeIso2Country": "MV", + "geonameId": 1281980, + "latitudeCity": -0.309444, + "longitudeCity": 73.43278, + "nameCity": "Fuvahmulak", + "timezone": "Indian/Maldives" + }, + { + "GMT": "8", + "cityId": 2364, + "codeIataCity": "FVR", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -15.253056, + "longitudeCity": 127.833336, + "nameCity": "Forrest River", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "cityId": 2365, + "codeIataCity": "FWA", + "codeIso2Country": "US", + "geonameId": 4920423, + "latitudeCity": 41.079273, + "longitudeCity": -85.139351, + "nameCity": "Fort Wayne", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-9", + "cityId": 2366, + "codeIataCity": "FWL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 62.509724, + "longitudeCity": -153.88945, + "nameCity": "Farewell", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "cityId": 2367, + "codeIataCity": "FWM", + "codeIso2Country": "GB", + "geonameId": 2649169, + "latitudeCity": 56.816666, + "longitudeCity": -5.116667, + "nameCity": "Fort William", + "timezone": "Europe/London" + }, + { + "GMT": "-9", + "cityId": 2368, + "codeIataCity": "FXM", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 70.2, + "longitudeCity": -146.0, + "nameCity": "Flaxman Island", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "cityId": 2369, + "codeIataCity": "FXO", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": -14.805278, + "longitudeCity": 36.526943, + "nameCity": "Cuamba", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-6", + "cityId": 2370, + "codeIataCity": "FXY", + "codeIso2Country": "US", + "geonameId": 4866445, + "latitudeCity": 43.266666, + "longitudeCity": -93.65, + "nameCity": "Forest City", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 2371, + "codeIataCity": "FYM", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 35.15, + "longitudeCity": -86.566666, + "nameCity": "Fayetteville", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 2372, + "codeIataCity": "FYT", + "codeIso2Country": "TD", + "geonameId": 0, + "latitudeCity": 17.916668, + "longitudeCity": 19.116667, + "nameCity": "Faya", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "-9", + "cityId": 2373, + "codeIataCity": "FYU", + "codeIso2Country": "US", + "geonameId": 5862371, + "latitudeCity": 66.56981, + "longitudeCity": -145.2482, + "nameCity": "Fort Yukon", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 2374, + "codeIataCity": "FYV", + "codeIso2Country": "US", + "geonameId": 4110486, + "latitudeCity": 36.062579, + "longitudeCity": -94.157426, + "nameCity": "Fayetteville", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 2375, + "codeIataCity": "FZO", + "codeIso2Country": "GB", + "geonameId": 2654675, + "latitudeCity": 51.516666, + "longitudeCity": -2.583333, + "nameCity": "Filton", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "cityId": 2376, + "codeIataCity": "GAA", + "codeIso2Country": "CO", + "geonameId": 3674597, + "latitudeCity": 9.15, + "longitudeCity": -74.23333, + "nameCity": "Guamal", + "timezone": "America/Bogota" + }, + { + "GMT": "-8", + "cityId": 2377, + "codeIataCity": "GAB", + "codeIso2Country": "US", + "geonameId": 5503914, + "latitudeCity": 38.86667, + "longitudeCity": -117.916664, + "nameCity": "Gabbs", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 2378, + "codeIataCity": "GAC", + "codeIso2Country": "HN", + "geonameId": 3609586, + "latitudeCity": 14.596667, + "longitudeCity": -88.59389, + "nameCity": "Gracias", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-6", + "cityId": 2379, + "codeIataCity": "GAD", + "codeIso2Country": "US", + "geonameId": 4063619, + "latitudeCity": 33.97361, + "longitudeCity": -86.08722, + "nameCity": "Gadsden", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 2380, + "codeIataCity": "GAE", + "codeIso2Country": "TN", + "geonameId": 0, + "latitudeCity": 33.88333, + "longitudeCity": 10.033333, + "nameCity": "Gabes", + "timezone": "Africa/Tunis" + }, + { + "GMT": "1", + "cityId": 2381, + "codeIataCity": "GAF", + "codeIso2Country": "TN", + "geonameId": 2468353, + "latitudeCity": 34.416668, + "longitudeCity": 8.816667, + "nameCity": "Gafsa", + "timezone": "Africa/Tunis" + }, + { + "GMT": "-6", + "cityId": 2382, + "codeIataCity": "GAG", + "codeIso2Country": "US", + "geonameId": 4556050, + "latitudeCity": 36.35, + "longitudeCity": -99.88333, + "nameCity": "Gage", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 2383, + "codeIataCity": "GAH", + "codeIso2Country": "AU", + "geonameId": 2143180, + "latitudeCity": -25.433332, + "longitudeCity": 151.48334, + "nameCity": "Gayndah", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 2384, + "codeIataCity": "GAI", + "codeIso2Country": "US", + "geonameId": 4140963, + "latitudeCity": 39.15, + "longitudeCity": -77.2, + "nameCity": "Gaithersburg", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "cityId": 2385, + "codeIataCity": "GAJ", + "codeIso2Country": "JP", + "geonameId": 2110793, + "latitudeCity": 38.410645, + "longitudeCity": 140.36583, + "nameCity": "Yamagata", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-9", + "cityId": 2386, + "codeIataCity": "GAK", + "codeIso2Country": "US", + "geonameId": 5862648, + "latitudeCity": 62.333332, + "longitudeCity": -145.31667, + "nameCity": "Gakona", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 2387, + "codeIataCity": "GAL", + "codeIso2Country": "US", + "geonameId": 5862655, + "latitudeCity": 64.73798, + "longitudeCity": -156.94186, + "nameCity": "Galena", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 2388, + "codeIataCity": "GAM", + "codeIso2Country": "US", + "geonameId": 5862664, + "latitudeCity": 63.776596, + "longitudeCity": -171.71355, + "nameCity": "Gambell", + "timezone": "America/Nome" + }, + { + "GMT": "5", + "cityId": 2389, + "codeIataCity": "GAN", + "codeIso2Country": "MV", + "geonameId": 1281980, + "latitudeCity": -0.690003, + "longitudeCity": 73.15654, + "nameCity": "Gan Island", + "timezone": "Indian/Maldives" + }, + { + "GMT": "-5", + "cityId": 2390, + "codeIataCity": "GAO", + "codeIso2Country": "CU", + "geonameId": 0, + "latitudeCity": 20.14303, + "longitudeCity": -75.209007, + "nameCity": "Guantanamo", + "timezone": "America/Havana" + }, + { + "GMT": "10", + "cityId": 2391, + "codeIataCity": "GAP", + "codeIso2Country": "PG", + "geonameId": 2096546, + "latitudeCity": -6.5, + "longitudeCity": 146.33333, + "nameCity": "Gusap", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "cityId": 2392, + "codeIataCity": "GAQ", + "codeIso2Country": "ML", + "geonameId": 0, + "latitudeCity": 16.248611, + "longitudeCity": -0.001389, + "nameCity": "Gao", + "timezone": "Africa/Bamako" + }, + { + "GMT": "10", + "cityId": 2393, + "codeIataCity": "GAR", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.873333, + "longitudeCity": 147.1375, + "nameCity": "Garaina", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 2394, + "codeIataCity": "GAS", + "codeIso2Country": "KE", + "geonameId": 0, + "latitudeCity": -0.45, + "longitudeCity": 39.65, + "nameCity": "Garissa", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "1", + "cityId": 2395, + "codeIataCity": "GAT", + "codeIso2Country": "FR", + "geonameId": 2973485, + "latitudeCity": 44.55, + "longitudeCity": 6.083333, + "nameCity": "Gap", + "timezone": "Europe/Paris" + }, + { + "GMT": "5.30", + "cityId": 2396, + "codeIataCity": "GAU", + "codeIso2Country": "IN", + "geonameId": 1271476, + "latitudeCity": 26.105982, + "longitudeCity": 91.58881, + "nameCity": "Gawahati", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "9", + "cityId": 2397, + "codeIataCity": "GAV", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -26.0, + "longitudeCity": 130.88333, + "nameCity": "Gag Island", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "6.30", + "cityId": 2398, + "codeIataCity": "GAW", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 22.166668, + "longitudeCity": 94.13333, + "nameCity": "Gangaw", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "1", + "cityId": 2399, + "codeIataCity": "GAX", + "codeIso2Country": "GA", + "geonameId": 2400547, + "latitudeCity": -2.766667, + "longitudeCity": 9.983333, + "nameCity": "Gamba", + "timezone": "Africa/Libreville" + }, + { + "GMT": "5.30", + "cityId": 2400, + "codeIataCity": "GAY", + "codeIso2Country": "IN", + "geonameId": 1271439, + "latitudeCity": 24.746668, + "longitudeCity": 84.94583, + "nameCity": "Gaya", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "cityId": 2401, + "codeIataCity": "GAZ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -9.2, + "longitudeCity": 152.93333, + "nameCity": "Guasopa", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "11", + "cityId": 2402, + "codeIataCity": "GBA", + "codeIso2Country": "VU", + "geonameId": 0, + "latitudeCity": -15.0, + "longitudeCity": 166.0, + "nameCity": "Big Bay", + "timezone": "Pacific/Efate" + }, + { + "GMT": "4", + "cityId": 2403, + "codeIataCity": "GBB", + "codeIso2Country": "AZ", + "geonameId": 585170, + "latitudeCity": 27.0, + "longitudeCity": -7.566667, + "nameCity": "Gabala", + "timezone": "Asia/Baku" + }, + { + "GMT": "10", + "cityId": 2404, + "codeIataCity": "GBC", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.1, + "longitudeCity": 141.73334, + "nameCity": "Gasuke", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 2405, + "codeIataCity": "GBD", + "codeIso2Country": "US", + "geonameId": 4272340, + "latitudeCity": 38.34722, + "longitudeCity": -98.86417, + "nameCity": "Great Bend", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 2406, + "codeIataCity": "GBE", + "codeIso2Country": "BW", + "geonameId": 933773, + "latitudeCity": -24.557981, + "longitudeCity": 25.92451, + "nameCity": "Gaborone", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "10", + "cityId": 2407, + "codeIataCity": "GBF", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.583333, + "longitudeCity": 144.66667, + "nameCity": "Negarbo", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 2408, + "codeIataCity": "GBG", + "codeIso2Country": "US", + "geonameId": 4893392, + "latitudeCity": 40.93861, + "longitudeCity": -90.42889, + "nameCity": "Galesburg", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 2409, + "codeIataCity": "GBH", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 68.46667, + "longitudeCity": -149.48334, + "nameCity": "Galbraith Lake", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 2410, + "codeIataCity": "GBI", + "codeIso2Country": "BS", + "geonameId": 0, + "latitudeCity": 26.666668, + "longitudeCity": -78.5, + "nameCity": "Grand Bahama", + "timezone": "America/Nassau" + }, + { + "GMT": "-4", + "cityId": 2411, + "codeIataCity": "GBJ", + "codeIso2Country": "GP", + "geonameId": 0, + "latitudeCity": 15.866667, + "longitudeCity": -61.266666, + "nameCity": "Marie Galante", + "timezone": "America/Guadeloupe" + }, + { + "GMT": "0", + "cityId": 2412, + "codeIataCity": "GBK", + "codeIso2Country": "SL", + "geonameId": 0, + "latitudeCity": 7.8, + "longitudeCity": -12.366667, + "nameCity": "Gbangbatok", + "timezone": "Africa/Freetown" + }, + { + "GMT": "9.30", + "cityId": 2413, + "codeIataCity": "GBL", + "codeIso2Country": "AU", + "geonameId": 2078934, + "latitudeCity": -11.55, + "longitudeCity": 133.43333, + "nameCity": "Goulburn Island", + "timezone": "Australia/Darwin" + }, + { + "GMT": "3", + "cityId": 2414, + "codeIataCity": "GBM", + "codeIso2Country": "SO", + "geonameId": 0, + "latitudeCity": 3.333333, + "longitudeCity": 42.183334, + "nameCity": "Garbaharey", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "1", + "cityId": 2415, + "codeIataCity": "GBN", + "codeIso2Country": "IT", + "geonameId": 3168234, + "latitudeCity": 41.701668, + "longitudeCity": 15.730556, + "nameCity": "San Giovanni Rotondo", + "timezone": "Europe/Rome" + }, + { + "GMT": "10", + "cityId": 2416, + "codeIataCity": "GBP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -16.55, + "longitudeCity": 143.66667, + "nameCity": "Gamboola", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 2417, + "codeIataCity": "GBR", + "codeIso2Country": "US", + "geonameId": 5106834, + "latitudeCity": 42.2, + "longitudeCity": -73.36667, + "nameCity": "Great Barrington", + "timezone": "America/New_York" + }, + { + "GMT": "12", + "cityId": 2418, + "codeIataCity": "GBS", + "codeIso2Country": "NZ", + "geonameId": 2184367, + "latitudeCity": -36.13333, + "longitudeCity": 175.33333, + "nameCity": "Port Fitzroy", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "3.30", + "cityId": 2419, + "codeIataCity": "GBT", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 36.90851, + "longitudeCity": 54.410515, + "nameCity": "Gorgan", + "timezone": "Asia/Tehran" + }, + { + "GMT": "3", + "cityId": 2420, + "codeIataCity": "GBU", + "codeIso2Country": "SD", + "geonameId": 0, + "latitudeCity": 14.926389, + "longitudeCity": 35.88889, + "nameCity": "Khashm El Girba", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "8", + "cityId": 2421, + "codeIataCity": "GBV", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -15.65, + "longitudeCity": 126.63333, + "nameCity": "Gibb River", + "timezone": "Australia/Perth" + }, + { + "GMT": "12", + "cityId": 2422, + "codeIataCity": "GBZ", + "codeIso2Country": "NZ", + "geonameId": 2193733, + "latitudeCity": -36.25, + "longitudeCity": 175.41667, + "nameCity": "Great Barrier Island", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-5", + "cityId": 2423, + "codeIataCity": "GCA", + "codeIso2Country": "CO", + "geonameId": 3673899, + "latitudeCity": 2.316667, + "longitudeCity": -75.5, + "nameCity": "Guacamaya", + "timezone": "America/Bogota" + }, + { + "GMT": "-7", + "cityId": 2424, + "codeIataCity": "GCC", + "codeIso2Country": "US", + "geonameId": 5826027, + "latitudeCity": 44.346355, + "longitudeCity": -105.532684, + "nameCity": "Gillette", + "timezone": "America/Denver" + }, + { + "GMT": "-8", + "cityId": 2425, + "codeIataCity": "GCD", + "codeIso2Country": "US", + "geonameId": 5789826, + "latitudeCity": 47.92348, + "longitudeCity": -119.08058, + "nameCity": "Electric City", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3.30", + "cityId": 2426, + "codeIataCity": "GCH", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 30.333332, + "longitudeCity": 50.816666, + "nameCity": "Gachsaran", + "timezone": "Asia/Tehran" + }, + { + "GMT": "0", + "cityId": 2427, + "codeIataCity": "GCI", + "codeIso2Country": "GG", + "geonameId": 0, + "latitudeCity": 49.432755, + "longitudeCity": -2.595044, + "nameCity": "Guernsey", + "timezone": "Europe/Guernsey" + }, + { + "GMT": "-6", + "cityId": 2428, + "codeIataCity": "GCK", + "codeIso2Country": "US", + "geonameId": 5445439, + "latitudeCity": 37.92861, + "longitudeCity": -100.72972, + "nameCity": "Garden City", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 2429, + "codeIataCity": "GCM", + "codeIso2Country": "KY", + "geonameId": 3580661, + "latitudeCity": 19.29637, + "longitudeCity": -81.35779, + "nameCity": "Georgetown", + "timezone": "America/Cayman" + }, + { + "GMT": "-7", + "cityId": 2430, + "codeIataCity": "GCN", + "codeIso2Country": "US", + "geonameId": 5296391, + "latitudeCity": 36.355164, + "longitudeCity": -112.661209, + "nameCity": "Grand Canyon", + "timezone": "America/Phoenix" + }, + { + "GMT": "-3", + "cityId": 2431, + "codeIataCity": "GCV", + "codeIso2Country": "BR", + "geonameId": 3452925, + "latitudeCity": -29.941668, + "longitudeCity": -50.994167, + "nameCity": "Gravatai", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-7", + "cityId": 2432, + "codeIataCity": "GCW", + "codeIso2Country": "US", + "geonameId": 5301067, + "latitudeCity": 36.07211, + "longitudeCity": -113.9495, + "nameCity": "Grand Canyon West", + "timezone": "America/Phoenix" + }, + { + "GMT": "-5", + "cityId": 2433, + "codeIataCity": "GCY", + "codeIso2Country": "US", + "geonameId": 4453066, + "latitudeCity": 36.216667, + "longitudeCity": -82.85, + "nameCity": "Greenville", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 2434, + "codeIataCity": "GDA", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 9.333333, + "longitudeCity": 21.166668, + "nameCity": "Gounda", + "timezone": "Africa/Bangui" + }, + { + "GMT": "8", + "cityId": 2435, + "codeIataCity": "GDD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.716667, + "longitudeCity": 128.55, + "nameCity": "Gordon Downs", + "timezone": "Australia/Perth" + }, + { + "GMT": "3", + "cityId": 2436, + "codeIataCity": "GDE", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 5.902222, + "longitudeCity": 43.628334, + "nameCity": "Gode", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "9", + "cityId": 2437, + "codeIataCity": "GDG", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 53.466667, + "longitudeCity": 125.8, + "nameCity": "Magdagachi", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "-9", + "cityId": 2438, + "codeIataCity": "GDH", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 59.716667, + "longitudeCity": -158.16667, + "nameCity": "Golden Horn Lodge", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 2439, + "codeIataCity": "GDI", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 9.733333, + "longitudeCity": 21.583332, + "nameCity": "Gordil", + "timezone": "Africa/Bangui" + }, + { + "GMT": "2", + "cityId": 2440, + "codeIataCity": "GDJ", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -6.766667, + "longitudeCity": 23.966667, + "nameCity": "Gandajika", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-6", + "cityId": 2441, + "codeIataCity": "GDL", + "codeIso2Country": "MX", + "geonameId": 4005539, + "latitudeCity": 20.525198, + "longitudeCity": -103.29921, + "nameCity": "Guadalajara", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-5", + "cityId": 2442, + "codeIataCity": "GDM", + "codeIso2Country": "US", + "geonameId": 4930956, + "latitudeCity": 42.566666, + "longitudeCity": -71.98333, + "nameCity": "Gardner", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 2443, + "codeIataCity": "GDN", + "codeIso2Country": "PL", + "geonameId": 3099434, + "latitudeCity": 54.380978, + "longitudeCity": 18.468655, + "nameCity": "Gdansk", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "-4", + "cityId": 2444, + "codeIataCity": "GDO", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 7.233333, + "longitudeCity": -70.8, + "nameCity": "Guasdualito", + "timezone": "America/Caracas" + }, + { + "GMT": "-3", + "cityId": 2445, + "codeIataCity": "GDP", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -6.781944, + "longitudeCity": -43.58167, + "nameCity": "Guadalupe", + "timezone": "America/Fortaleza" + }, + { + "GMT": "3", + "cityId": 2446, + "codeIataCity": "GDQ", + "codeIso2Country": "ET", + "geonameId": 336014, + "latitudeCity": 12.514444, + "longitudeCity": 37.445557, + "nameCity": "Gondar", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-4", + "cityId": 2447, + "codeIataCity": "GDT", + "codeIso2Country": "TC", + "geonameId": 0, + "latitudeCity": 21.466667, + "longitudeCity": -71.13333, + "nameCity": "Grand Turk Island", + "timezone": "America/Grand_Turk" + }, + { + "GMT": "-7", + "cityId": 2448, + "codeIataCity": "GDV", + "codeIso2Country": "US", + "geonameId": 5654391, + "latitudeCity": 47.13889, + "longitudeCity": -104.806946, + "nameCity": "Glendive", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "cityId": 2449, + "codeIataCity": "GDW", + "codeIso2Country": "US", + "geonameId": 4993985, + "latitudeCity": 43.983334, + "longitudeCity": -84.48333, + "nameCity": "Gladwin", + "timezone": "America/Detroit" + }, + { + "GMT": "11", + "cityId": 2450, + "codeIataCity": "GDX", + "codeIso2Country": "RU", + "geonameId": 2123628, + "latitudeCity": 59.916668, + "longitudeCity": 150.71666, + "nameCity": "Magadan", + "timezone": "Asia/Magadan" + }, + { + "GMT": "3", + "cityId": 2451, + "codeIataCity": "GDZ", + "codeIso2Country": "RU", + "geonameId": 561667, + "latitudeCity": 44.566666, + "longitudeCity": 38.016666, + "nameCity": "Gelendzik", + "timezone": "Europe/Moscow" + }, + { + "GMT": "9", + "cityId": 2452, + "codeIataCity": "GEB", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 0.083333, + "longitudeCity": 129.41667, + "nameCity": "Gebe", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "2", + "cityId": 2453, + "codeIataCity": "GEC", + "codeIso2Country": "CY", + "geonameId": 18918, + "latitudeCity": 35.233334, + "longitudeCity": 33.716667, + "nameCity": "Gecitkale", + "timezone": "Asia/Nicosia" + }, + { + "GMT": "-5", + "cityId": 2454, + "codeIataCity": "GED", + "codeIso2Country": "US", + "geonameId": 4144284, + "latitudeCity": 38.68833, + "longitudeCity": -75.3575, + "nameCity": "Georgetown", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 2455, + "codeIataCity": "GEE", + "codeIso2Country": "AU", + "geonameId": 2152653, + "latitudeCity": -18.283333, + "longitudeCity": 143.55, + "nameCity": "George Town", + "timezone": "Australia/Hobart" + }, + { + "GMT": "11", + "cityId": 2456, + "codeIataCity": "GEF", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -7.578333, + "longitudeCity": 156.59778, + "nameCity": "Geva", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-8", + "cityId": 2457, + "codeIataCity": "GEG", + "codeIso2Country": "US", + "geonameId": 5811696, + "latitudeCity": 47.65878, + "longitudeCity": -117.426047, + "nameCity": "Spokane", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 2458, + "codeIataCity": "GEI", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -4.5, + "longitudeCity": 154.16667, + "nameCity": "Green Islands", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 2459, + "codeIataCity": "GEK", + "codeIso2Country": "US", + "geonameId": 5862671, + "latitudeCity": 63.1, + "longitudeCity": -156.43333, + "nameCity": "Ganes Creek", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "cityId": 2460, + "codeIataCity": "GEL", + "codeIso2Country": "BR", + "geonameId": 3462419, + "latitudeCity": -28.28111, + "longitudeCity": -54.168056, + "nameCity": "Santo Angelo", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "cityId": 2461, + "codeIataCity": "GEN", + "codeIso2Country": "ES", + "geonameId": 0, + "latitudeCity": 37.38333, + "longitudeCity": -4.766667, + "nameCity": "Puente Genil", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-4", + "cityId": 2462, + "codeIataCity": "GEO", + "codeIso2Country": "GY", + "geonameId": 3378644, + "latitudeCity": 6.503833, + "longitudeCity": -58.25308, + "nameCity": "Georgetown", + "timezone": "America/Guyana" + }, + { + "GMT": "-5", + "cityId": 2463, + "codeIataCity": "GER", + "codeIso2Country": "CU", + "geonameId": 3545867, + "latitudeCity": 21.8375, + "longitudeCity": -82.78, + "nameCity": "Nueva Gerona", + "timezone": "America/Havana" + }, + { + "GMT": "8", + "cityId": 2464, + "codeIataCity": "GES", + "codeIso2Country": "PH", + "geonameId": 1713022, + "latitudeCity": 6.108066, + "longitudeCity": 125.23424, + "nameCity": "General Santos", + "timezone": "Asia/Manila" + }, + { + "GMT": "8", + "cityId": 2465, + "codeIataCity": "GET", + "codeIso2Country": "AU", + "geonameId": 2070998, + "latitudeCity": -28.796078, + "longitudeCity": 114.70205, + "nameCity": "Geraldton", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "cityId": 2466, + "codeIataCity": "GEV", + "codeIso2Country": "SE", + "geonameId": 606086, + "latitudeCity": 67.134445, + "longitudeCity": 20.816668, + "nameCity": "Gallivare", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "10", + "cityId": 2467, + "codeIataCity": "GEW", + "codeIso2Country": "PG", + "geonameId": 2096996, + "latitudeCity": -9.3, + "longitudeCity": 148.46666, + "nameCity": "Gewoia", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 2468, + "codeIataCity": "GEX", + "codeIso2Country": "AU", + "geonameId": 2158177, + "latitudeCity": -38.13333, + "longitudeCity": 144.35, + "nameCity": "Geelong", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-7", + "cityId": 2469, + "codeIataCity": "GEY", + "codeIso2Country": "US", + "geonameId": 5821593, + "latitudeCity": 44.5, + "longitudeCity": -108.05, + "nameCity": "Greybull", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "cityId": 2470, + "codeIataCity": "GFB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 59.016666, + "longitudeCity": -160.05, + "nameCity": "Togiak Fish", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 2471, + "codeIataCity": "GFD", + "codeIso2Country": "US", + "geonameId": 4258285, + "latitudeCity": 39.783333, + "longitudeCity": -85.76667, + "nameCity": "Greenfield", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "10", + "cityId": 2472, + "codeIataCity": "GFE", + "codeIso2Country": "AU", + "geonameId": 2164457, + "latitudeCity": -33.9, + "longitudeCity": 148.18333, + "nameCity": "Grenfell", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "cityId": 2473, + "codeIataCity": "GFF", + "codeIso2Country": "AU", + "geonameId": 2164422, + "latitudeCity": -34.255432, + "longitudeCity": 146.0627, + "nameCity": "Griffith", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "cityId": 2474, + "codeIataCity": "GFK", + "codeIso2Country": "US", + "geonameId": 5059429, + "latitudeCity": 47.9488, + "longitudeCity": -97.17587, + "nameCity": "Grand Forks", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 2475, + "codeIataCity": "GFL", + "codeIso2Country": "US", + "geonameId": 5133279, + "latitudeCity": 43.344444, + "longitudeCity": -73.60917, + "nameCity": "Glens Falls", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 2476, + "codeIataCity": "GFN", + "codeIso2Country": "AU", + "geonameId": 2164771, + "latitudeCity": -29.759521, + "longitudeCity": 153.02834, + "nameCity": "Grafton", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-4", + "cityId": 2477, + "codeIataCity": "GFO", + "codeIso2Country": "GY", + "geonameId": 3378644, + "latitudeCity": 6.416667, + "longitudeCity": -58.583332, + "nameCity": "Bartica", + "timezone": "America/Guyana" + }, + { + "GMT": "1", + "cityId": 2478, + "codeIataCity": "GFR", + "codeIso2Country": "FR", + "geonameId": 3014867, + "latitudeCity": 48.88333, + "longitudeCity": -1.566667, + "nameCity": "Granville", + "timezone": "Europe/Paris" + }, + { + "GMT": "2", + "cityId": 2479, + "codeIataCity": "GFY", + "codeIso2Country": "NA", + "geonameId": 0, + "latitudeCity": -19.6, + "longitudeCity": 18.133333, + "nameCity": "Grootfontein", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "0", + "cityId": 2480, + "codeIataCity": "GGA", + "codeIso2Country": "ES", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "La Graciosa", + "timezone": "Atlantic/Canary" + }, + { + "GMT": "1", + "cityId": 2481, + "codeIataCity": "GGC", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -12.65, + "longitudeCity": 22.566668, + "nameCity": "Lumbala", + "timezone": "Africa/Luanda" + }, + { + "GMT": "10", + "cityId": 2482, + "codeIataCity": "GGD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.633333, + "longitudeCity": 139.23334, + "nameCity": "Gregory Downs", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 2483, + "codeIataCity": "GGE", + "codeIso2Country": "US", + "geonameId": 4588718, + "latitudeCity": 33.38333, + "longitudeCity": -79.28333, + "nameCity": "Georgetown", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 2484, + "codeIataCity": "GGG", + "codeIso2Country": "US", + "geonameId": 4707814, + "latitudeCity": 32.386665, + "longitudeCity": -94.71528, + "nameCity": "Kilgore", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 2485, + "codeIataCity": "GGL", + "codeIso2Country": "CO", + "geonameId": 7551448, + "latitudeCity": 8.333333, + "longitudeCity": -77.083336, + "nameCity": "Gilgal", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "cityId": 2486, + "codeIataCity": "GGM", + "codeIso2Country": "KE", + "geonameId": 195272, + "latitudeCity": 0.266425, + "longitudeCity": 34.783333, + "nameCity": "Kakamega", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "0", + "cityId": 2487, + "codeIataCity": "GGN", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 6.133333, + "longitudeCity": -5.933333, + "nameCity": "Gagnoa", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "0", + "cityId": 2488, + "codeIataCity": "GGO", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 6.333333, + "longitudeCity": -7.75, + "nameCity": "Guiglo", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "3", + "cityId": 2489, + "codeIataCity": "GGR", + "codeIso2Country": "SO", + "geonameId": 0, + "latitudeCity": 8.283333, + "longitudeCity": 48.333332, + "nameCity": "Garoe", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-3", + "cityId": 2490, + "codeIataCity": "GGS", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -48.766666, + "longitudeCity": -70.25, + "nameCity": "Gobernador Gregores", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "-5", + "cityId": 2491, + "codeIataCity": "GGT", + "codeIso2Country": "BS", + "geonameId": 3572349, + "latitudeCity": 23.564018, + "longitudeCity": -75.872475, + "nameCity": "George Town", + "timezone": "America/Nassau" + }, + { + "GMT": "-7", + "cityId": 2492, + "codeIataCity": "GGW", + "codeIso2Country": "US", + "geonameId": 5654320, + "latitudeCity": 48.212776, + "longitudeCity": -106.615555, + "nameCity": "Glasgow", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 2493, + "codeIataCity": "GHA", + "codeIso2Country": "DZ", + "geonameId": 0, + "latitudeCity": 32.38222, + "longitudeCity": 3.800556, + "nameCity": "Ghardaia", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-5", + "cityId": 2494, + "codeIataCity": "GHB", + "codeIso2Country": "BS", + "geonameId": 3572269, + "latitudeCity": 25.280489, + "longitudeCity": -76.32488, + "nameCity": "Governors Harbour", + "timezone": "America/Nassau" + }, + { + "GMT": "-5", + "cityId": 2495, + "codeIataCity": "GHC", + "codeIso2Country": "BS", + "geonameId": 3571824, + "latitudeCity": 25.738056, + "longitudeCity": -77.84028, + "nameCity": "Great Harbour", + "timezone": "America/Nassau" + }, + { + "GMT": "-5", + "cityId": 2496, + "codeIataCity": "GHE", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 8.033333, + "longitudeCity": -78.25, + "nameCity": "Garachine", + "timezone": "America/Panama" + }, + { + "GMT": "1", + "cityId": 2497, + "codeIataCity": "GHF", + "codeIso2Country": "DE", + "geonameId": 2805615, + "latitudeCity": 49.65, + "longitudeCity": 9.966667, + "nameCity": "Giebelstadt", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "cityId": 2498, + "codeIataCity": "GHM", + "codeIso2Country": "US", + "geonameId": 4644585, + "latitudeCity": 35.783333, + "longitudeCity": -87.46667, + "nameCity": "Centerville", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 2499, + "codeIataCity": "GHN", + "codeIso2Country": "CN", + "geonameId": 1555090, + "latitudeCity": 30.466667, + "longitudeCity": 106.65, + "nameCity": "Guanghan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "cityId": 2500, + "codeIataCity": "GHT", + "codeIso2Country": "LY", + "geonameId": 0, + "latitudeCity": 24.966667, + "longitudeCity": 10.166667, + "nameCity": "Ghat", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "-3", + "cityId": 2501, + "codeIataCity": "GHU", + "codeIso2Country": "AR", + "geonameId": 3433658, + "latitudeCity": -33.004166, + "longitudeCity": -58.61222, + "nameCity": "Gualeguaychu", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "1", + "cityId": 2502, + "codeIataCity": "GIB", + "codeIso2Country": "GI", + "geonameId": 2411585, + "latitudeCity": 36.153763, + "longitudeCity": -5.349271, + "nameCity": "Gibraltar", + "timezone": "Europe/Gibraltar" + }, + { + "GMT": "10", + "cityId": 2503, + "codeIataCity": "GIC", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -9.233333, + "longitudeCity": 142.21666, + "nameCity": "Boigu Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "cityId": 2504, + "codeIataCity": "GID", + "codeIso2Country": "BI", + "geonameId": 426272, + "latitudeCity": -3.416667, + "longitudeCity": 29.916668, + "nameCity": "Gitega", + "timezone": "Africa/Bujumbura" + }, + { + "GMT": "-5", + "cityId": 2505, + "codeIataCity": "GIF", + "codeIso2Country": "US", + "geonameId": 4167147, + "latitudeCity": 28.066668, + "longitudeCity": -81.75, + "nameCity": "Winter Haven", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 2506, + "codeIataCity": "GII", + "codeIso2Country": "GN", + "geonameId": 0, + "latitudeCity": 11.516667, + "longitudeCity": -9.166667, + "nameCity": "Siguiri", + "timezone": "Africa/Conakry" + }, + { + "GMT": "5", + "cityId": 2507, + "codeIataCity": "GIL", + "codeIso2Country": "PK", + "geonameId": 1178338, + "latitudeCity": 35.91972, + "longitudeCity": 74.33224, + "nameCity": "Gilgit", + "timezone": "Asia/Karachi" + }, + { + "GMT": "1", + "cityId": 2508, + "codeIataCity": "GIM", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -0.016667, + "longitudeCity": 11.4, + "nameCity": "Miele Mimbale", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-5", + "cityId": 2509, + "codeIataCity": "GIR", + "codeIso2Country": "CO", + "geonameId": 3682028, + "latitudeCity": 4.3, + "longitudeCity": -74.8, + "nameCity": "Girardot", + "timezone": "America/Bogota" + }, + { + "GMT": "12", + "cityId": 2510, + "codeIataCity": "GIS", + "codeIso2Country": "NZ", + "geonameId": 2206854, + "latitudeCity": -38.661934, + "longitudeCity": 177.98228, + "nameCity": "Gisborne", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "3", + "cityId": 2511, + "codeIataCity": "GIT", + "codeIso2Country": "TZ", + "geonameId": 0, + "latitudeCity": -2.8, + "longitudeCity": 32.2, + "nameCity": "Geita", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "5.30", + "cityId": 2512, + "codeIataCity": "GIU", + "codeIso2Country": "LK", + "geonameId": 1228051, + "latitudeCity": 7.956408, + "longitudeCity": 80.759575, + "nameCity": "Sigiriya", + "timezone": "Asia/Colombo" + }, + { + "GMT": "2", + "cityId": 2513, + "codeIataCity": "GIY", + "codeIso2Country": "ZA", + "geonameId": 946973, + "latitudeCity": -23.283333, + "longitudeCity": 30.666668, + "nameCity": "Giyani", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "3", + "cityId": 2514, + "codeIataCity": "GIZ", + "codeIso2Country": "SA", + "geonameId": 105299, + "latitudeCity": 16.898949, + "longitudeCity": 42.582344, + "nameCity": "Jazan", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-6", + "cityId": 2515, + "codeIataCity": "GJA", + "codeIso2Country": "HN", + "geonameId": 3609293, + "latitudeCity": 16.445, + "longitudeCity": -85.90583, + "nameCity": "Guanaja", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "1", + "cityId": 2516, + "codeIataCity": "GJL", + "codeIso2Country": "DZ", + "geonameId": 2492913, + "latitudeCity": 36.8, + "longitudeCity": 5.883333, + "nameCity": "Jijel", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-4", + "cityId": 2517, + "codeIataCity": "GJM", + "codeIso2Country": "BR", + "geonameId": 3925075, + "latitudeCity": -10.783333, + "longitudeCity": -65.36667, + "nameCity": "Guajara-Mirim", + "timezone": "America/Porto_Velho" + }, + { + "GMT": "0", + "cityId": 2518, + "codeIataCity": "GJR", + "codeIso2Country": "IS", + "geonameId": 3415667, + "latitudeCity": 65.98333, + "longitudeCity": -21.35, + "nameCity": "Gjogur", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-7", + "cityId": 2519, + "codeIataCity": "GJT", + "codeIso2Country": "US", + "geonameId": 5423573, + "latitudeCity": 39.122665, + "longitudeCity": -108.528336, + "nameCity": "Grand Junction", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "cityId": 2520, + "codeIataCity": "GKA", + "codeIso2Country": "PG", + "geonameId": 2096742, + "latitudeCity": -6.075244, + "longitudeCity": 145.39293, + "nameCity": "Goroka", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 2521, + "codeIataCity": "GKD", + "codeIso2Country": "TR", + "geonameId": 745260, + "latitudeCity": 40.19955, + "longitudeCity": 25.8837, + "nameCity": "Gokceada", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "1", + "cityId": 2522, + "codeIataCity": "GKE", + "codeIso2Country": "DE", + "geonameId": 2934246, + "latitudeCity": 50.966667, + "longitudeCity": 6.133333, + "nameCity": "Geilenkirchen", + "timezone": "Europe/Berlin" + }, + { + "GMT": "5.45", + "cityId": 2523, + "codeIataCity": "GKH", + "codeIso2Country": "NP", + "geonameId": 1283240, + "latitudeCity": 28.0, + "longitudeCity": 84.675, + "nameCity": "Gorkha", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "10", + "cityId": 2524, + "codeIataCity": "GKL", + "codeIso2Country": "AU", + "geonameId": 2142316, + "latitudeCity": -23.183332, + "longitudeCity": 150.94167, + "nameCity": "Great Keppel Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "cityId": 2525, + "codeIataCity": "GKN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 62.155277, + "longitudeCity": -145.45222, + "nameCity": "Gulkana", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 2526, + "codeIataCity": "GKO", + "codeIso2Country": "GA", + "geonameId": 2399997, + "latitudeCity": -0.083333, + "longitudeCity": 11.466667, + "nameCity": "Kongoboumba", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-5", + "cityId": 2527, + "codeIataCity": "GKT", + "codeIso2Country": "US", + "geonameId": 4649251, + "latitudeCity": 35.85139, + "longitudeCity": -83.51861, + "nameCity": "Gatlinburg", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 2528, + "codeIataCity": "GLA", + "codeIso2Country": "GB", + "geonameId": 2648579, + "latitudeCity": 55.865627, + "longitudeCity": -4.257223, + "nameCity": "Glasgow", + "timezone": "Europe/London" + }, + { + "GMT": "-7", + "cityId": 2529, + "codeIataCity": "GLB", + "codeIso2Country": "US", + "geonameId": 5296013, + "latitudeCity": 5.95, + "longitudeCity": -10.033333, + "nameCity": "Globe", + "timezone": "America/Phoenix" + }, + { + "GMT": "3", + "cityId": 2530, + "codeIataCity": "GLC", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 6.966667, + "longitudeCity": 46.416668, + "nameCity": "Geladi", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-7", + "cityId": 2531, + "codeIataCity": "GLD", + "codeIso2Country": "US", + "geonameId": 5445479, + "latitudeCity": 39.370277, + "longitudeCity": -101.69945, + "nameCity": "Goodland", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 2532, + "codeIataCity": "GLE", + "codeIso2Country": "US", + "geonameId": 4692746, + "latitudeCity": 33.63333, + "longitudeCity": -97.13333, + "nameCity": "Gainesville", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 2533, + "codeIataCity": "GLF", + "codeIso2Country": "CR", + "geonameId": 3623656, + "latitudeCity": 8.651389, + "longitudeCity": -83.18083, + "nameCity": "Golfito", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "10", + "cityId": 2534, + "codeIataCity": "GLG", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -24.816668, + "longitudeCity": 139.6, + "nameCity": "Glengyle", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "cityId": 2535, + "codeIataCity": "GLH", + "codeIso2Country": "US", + "geonameId": 4428475, + "latitudeCity": 33.484444, + "longitudeCity": -90.985, + "nameCity": "Greenville", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 2536, + "codeIataCity": "GLI", + "codeIso2Country": "AU", + "geonameId": 2165291, + "latitudeCity": -29.676666, + "longitudeCity": 151.69083, + "nameCity": "Glen Innes", + "timezone": "Australia/Sydney" + }, + { + "GMT": "3", + "cityId": 2537, + "codeIataCity": "GLK", + "codeIso2Country": "SO", + "geonameId": 59611, + "latitudeCity": 6.766667, + "longitudeCity": 47.433334, + "nameCity": "Galcaio", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "1", + "cityId": 2538, + "codeIataCity": "GLL", + "codeIso2Country": "NO", + "geonameId": 3155422, + "latitudeCity": 60.7, + "longitudeCity": 8.95, + "nameCity": "Gol", + "timezone": "Europe/Oslo" + }, + { + "GMT": "10", + "cityId": 2539, + "codeIataCity": "GLM", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -22.916668, + "longitudeCity": 138.83333, + "nameCity": "Glenormiston", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "0", + "cityId": 2540, + "codeIataCity": "GLN", + "codeIso2Country": "MA", + "geonameId": 0, + "latitudeCity": 29.016666, + "longitudeCity": -10.066667, + "nameCity": "Goulimime", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "0", + "cityId": 2541, + "codeIataCity": "GLO", + "codeIso2Country": "GB", + "geonameId": 2653261, + "latitudeCity": 51.88333, + "longitudeCity": -2.233333, + "nameCity": "Gloucester", + "timezone": "Europe/London" + }, + { + "GMT": "10", + "cityId": 2542, + "codeIataCity": "GLP", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.283333, + "longitudeCity": 141.51666, + "nameCity": "Gulgubip", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 2543, + "codeIataCity": "GLQ", + "codeIso2Country": "US", + "geonameId": 5862936, + "latitudeCity": 62.11667, + "longitudeCity": -145.55, + "nameCity": "Glennallen", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 2544, + "codeIataCity": "GLR", + "codeIso2Country": "US", + "geonameId": 4993756, + "latitudeCity": 45.033333, + "longitudeCity": -84.666664, + "nameCity": "Gaylord", + "timezone": "America/Detroit" + }, + { + "GMT": "-6", + "cityId": 2545, + "codeIataCity": "GLS", + "codeIso2Country": "US", + "geonameId": 4692883, + "latitudeCity": 29.2675, + "longitudeCity": -94.860275, + "nameCity": "Galveston", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 2546, + "codeIataCity": "GLT", + "codeIso2Country": "AU", + "geonameId": 2165478, + "latitudeCity": -23.87147, + "longitudeCity": 151.22351, + "nameCity": "Gladstone", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "cityId": 2547, + "codeIataCity": "GLV", + "codeIso2Country": "US", + "geonameId": 5863074, + "latitudeCity": 64.54417, + "longitudeCity": -163.0375, + "nameCity": "Golovin", + "timezone": "America/Nome" + }, + { + "GMT": "-6", + "cityId": 2548, + "codeIataCity": "GLW", + "codeIso2Country": "US", + "geonameId": 4292826, + "latitudeCity": 37.0, + "longitudeCity": -85.916664, + "nameCity": "Glasgow", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "cityId": 2549, + "codeIataCity": "GLX", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 1.833333, + "longitudeCity": 127.833336, + "nameCity": "Galela", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "cityId": 2550, + "codeIataCity": "GLY", + "codeIso2Country": "AU", + "geonameId": 2070704, + "latitudeCity": -20.083332, + "longitudeCity": 119.666664, + "nameCity": "Goldsworthy", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "cityId": 2551, + "codeIataCity": "GLZ", + "codeIso2Country": "NL", + "geonameId": 2759794, + "latitudeCity": 51.583332, + "longitudeCity": 4.75, + "nameCity": "Breda", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "cityId": 2552, + "codeIataCity": "GMA", + "codeIso2Country": "CD", + "geonameId": 2315728, + "latitudeCity": 3.235, + "longitudeCity": 19.768612, + "nameCity": "Gemena", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "3", + "cityId": 2553, + "codeIataCity": "GMB", + "codeIso2Country": "ET", + "geonameId": 337404, + "latitudeCity": 8.283333, + "longitudeCity": 34.583332, + "nameCity": "Gambela", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-5", + "cityId": 2554, + "codeIataCity": "GMC", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 49.433334, + "longitudeCity": -2.6, + "nameCity": "Guerima", + "timezone": "America/Bogota" + }, + { + "GMT": "0", + "cityId": 2555, + "codeIataCity": "GMD", + "codeIso2Country": "MA", + "geonameId": 2555519, + "latitudeCity": 33.61297, + "longitudeCity": -7.12079, + "nameCity": "Ben Slimane", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "3", + "cityId": 2556, + "codeIataCity": "GME", + "codeIso2Country": "BY", + "geonameId": 627907, + "latitudeCity": 52.416668, + "longitudeCity": 31.0, + "nameCity": "Gomel", + "timezone": "Europe/Minsk" + }, + { + "GMT": "10", + "cityId": 2557, + "codeIataCity": "GMI", + "codeIso2Country": "PG", + "geonameId": 2093967, + "latitudeCity": -6.3, + "longitudeCity": 150.33333, + "nameCity": "Gasmata Island", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 2558, + "codeIataCity": "GMM", + "codeIso2Country": "CG", + "geonameId": 0, + "latitudeCity": -1.933333, + "longitudeCity": 15.866667, + "nameCity": "Gamboma", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "12", + "cityId": 2559, + "codeIataCity": "GMN", + "codeIso2Country": "NZ", + "geonameId": 2206895, + "latitudeCity": -42.45, + "longitudeCity": 171.2, + "nameCity": "Greymouth", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "1", + "cityId": 2560, + "codeIataCity": "GMO", + "codeIso2Country": "NG", + "geonameId": 0, + "latitudeCity": 10.298056, + "longitudeCity": 10.898889, + "nameCity": "Gombe", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-9", + "cityId": 2561, + "codeIataCity": "GMR", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -23.084, + "longitudeCity": -134.88757, + "nameCity": "Gambier Island", + "timezone": "Pacific/Gambier" + }, + { + "GMT": "-3", + "cityId": 2562, + "codeIataCity": "GMS", + "codeIso2Country": "BR", + "geonameId": 3445831, + "latitudeCity": -2.15, + "longitudeCity": -44.7, + "nameCity": "Guimaraes", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-9", + "cityId": 2563, + "codeIataCity": "GMT", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 65.405556, + "longitudeCity": -161.2775, + "nameCity": "Granite Mountain", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "cityId": 2564, + "codeIataCity": "GMV", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 37.001945, + "longitudeCity": -110.20278, + "nameCity": "Monument Valley Gldngs", + "timezone": "America/Denver" + }, + { + "GMT": "0", + "cityId": 2565, + "codeIataCity": "GMZ", + "codeIso2Country": "ES", + "geonameId": 2512461, + "latitudeCity": 28.016666, + "longitudeCity": -17.2, + "nameCity": "San Sebas De La Gomera", + "timezone": "Atlantic/Canary" + }, + { + "GMT": "3", + "cityId": 2566, + "codeIataCity": "GNA", + "codeIso2Country": "BY", + "geonameId": 628096, + "latitudeCity": 53.666668, + "longitudeCity": 23.8, + "nameCity": "Grodna", + "timezone": "Europe/Minsk" + }, + { + "GMT": "-4", + "cityId": 2567, + "codeIataCity": "GND", + "codeIso2Country": "GD", + "geonameId": 3579925, + "latitudeCity": 12.004167, + "longitudeCity": -61.78611, + "nameCity": "St. Georges", + "timezone": "America/Grenada" + }, + { + "GMT": "-8", + "cityId": 2568, + "codeIataCity": "GNF", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 33.975307, + "longitudeCity": -89.93228, + "nameCity": "Quincy", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-7", + "cityId": 2569, + "codeIataCity": "GNG", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.933334, + "longitudeCity": -114.71667, + "nameCity": "Gooding", + "timezone": "America/Boise" + }, + { + "GMT": "8", + "cityId": 2570, + "codeIataCity": "GNI", + "codeIso2Country": "TW", + "geonameId": 1672314, + "latitudeCity": 23.1, + "longitudeCity": 121.46667, + "nameCity": "Green Island", + "timezone": "Asia/Taipei" + }, + { + "GMT": "-3", + "cityId": 2571, + "codeIataCity": "GNM", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -14.3, + "longitudeCity": -42.783333, + "nameCity": "Guanambi", + "timezone": "America/Bahia" + }, + { + "GMT": "3", + "cityId": 2572, + "codeIataCity": "GNN", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 7.15, + "longitudeCity": 40.716667, + "nameCity": "Ghinnir", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-3", + "cityId": 2573, + "codeIataCity": "GNR", + "codeIso2Country": "AR", + "geonameId": 3843123, + "latitudeCity": -39.983334, + "longitudeCity": -67.6, + "nameCity": "General Roca", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "7", + "cityId": 2574, + "codeIataCity": "GNS", + "codeIso2Country": "ID", + "geonameId": 1215102, + "latitudeCity": 1.25, + "longitudeCity": 97.5, + "nameCity": "Gunungsitoli", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-7", + "cityId": 2575, + "codeIataCity": "GNT", + "codeIso2Country": "US", + "geonameId": 5469841, + "latitudeCity": 35.15, + "longitudeCity": -107.86667, + "nameCity": "Grants", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "cityId": 2576, + "codeIataCity": "GNU", + "codeIso2Country": "US", + "geonameId": 5863097, + "latitudeCity": 59.1125, + "longitudeCity": -161.58055, + "nameCity": "Goodnews Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 2577, + "codeIataCity": "GNV", + "codeIso2Country": "US", + "geonameId": 4156404, + "latitudeCity": 29.686142, + "longitudeCity": -82.276794, + "nameCity": "Gainesville", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 2578, + "codeIataCity": "GNZ", + "codeIso2Country": "BW", + "geonameId": 0, + "latitudeCity": -21.7, + "longitudeCity": 21.666668, + "nameCity": "Ghanzi", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "1", + "cityId": 2579, + "codeIataCity": "GOA", + "codeIso2Country": "IT", + "geonameId": 3176219, + "latitudeCity": 44.415066, + "longitudeCity": 8.85081, + "nameCity": "Genova", + "timezone": "Europe/Rome" + }, + { + "GMT": "3", + "cityId": 2580, + "codeIataCity": "GOB", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 7.013889, + "longitudeCity": 39.980556, + "nameCity": "Goba", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "10", + "cityId": 2581, + "codeIataCity": "GOC", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -9.166667, + "longitudeCity": 148.81667, + "nameCity": "Gora", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 2582, + "codeIataCity": "GOE", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.366667, + "longitudeCity": 151.85, + "nameCity": "Gonalia", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "cityId": 2583, + "codeIataCity": "GOG", + "codeIso2Country": "NA", + "geonameId": 0, + "latitudeCity": -22.504723, + "longitudeCity": 18.974722, + "nameCity": "Gobabis", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-3", + "cityId": 2584, + "codeIataCity": "GOH", + "codeIso2Country": "GL", + "geonameId": 3421319, + "latitudeCity": 64.181946, + "longitudeCity": -51.725, + "nameCity": "Nuuk", + "timezone": "America/Godthab" + }, + { + "GMT": "5.30", + "cityId": 2585, + "codeIataCity": "GOI", + "codeIso2Country": "IN", + "geonameId": 1271156, + "latitudeCity": 15.384534, + "longitudeCity": 73.83983, + "nameCity": "Goa", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "3", + "cityId": 2586, + "codeIataCity": "GOJ", + "codeIso2Country": "RU", + "geonameId": 520555, + "latitudeCity": 56.218613, + "longitudeCity": 43.789764, + "nameCity": "Nizhniy Novgorod", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "cityId": 2587, + "codeIataCity": "GOK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 35.88333, + "longitudeCity": -97.416664, + "nameCity": "Guthrie", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 2588, + "codeIataCity": "GOL", + "codeIso2Country": "US", + "geonameId": 5843997, + "latitudeCity": 42.416668, + "longitudeCity": -124.416664, + "nameCity": "Gold Beach", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "cityId": 2589, + "codeIataCity": "GOM", + "codeIso2Country": "CD", + "geonameId": 216281, + "latitudeCity": -1.67, + "longitudeCity": 29.235, + "nameCity": "Goma", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-5", + "cityId": 2590, + "codeIataCity": "GON", + "codeIso2Country": "US", + "geonameId": 4835461, + "latitudeCity": 41.355654, + "longitudeCity": -72.099521, + "nameCity": "New London", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 2591, + "codeIataCity": "GOO", + "codeIso2Country": "AU", + "geonameId": 2164972, + "latitudeCity": -28.524445, + "longitudeCity": 150.31944, + "nameCity": "Goondiwindi", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5.30", + "cityId": 2592, + "codeIataCity": "GOP", + "codeIso2Country": "IN", + "geonameId": 1270927, + "latitudeCity": 26.746862, + "longitudeCity": 83.44376, + "nameCity": "Gorakhpur", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "8", + "cityId": 2593, + "codeIataCity": "GOQ", + "codeIso2Country": "CN", + "geonameId": 1281184, + "latitudeCity": 36.404633, + "longitudeCity": 94.78931, + "nameCity": "Golmud", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "cityId": 2594, + "codeIataCity": "GOR", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 8.155556, + "longitudeCity": 35.538055, + "nameCity": "Gore", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "10", + "cityId": 2595, + "codeIataCity": "GOS", + "codeIso2Country": "AU", + "geonameId": 2164849, + "latitudeCity": -33.433334, + "longitudeCity": 151.35, + "nameCity": "Gosford", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "cityId": 2596, + "codeIataCity": "GOT", + "codeIso2Country": "SE", + "geonameId": 2711537, + "latitudeCity": 57.696994, + "longitudeCity": 11.9865, + "nameCity": "Gothenburg", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 2597, + "codeIataCity": "GOU", + "codeIso2Country": "CM", + "geonameId": 0, + "latitudeCity": 9.336111, + "longitudeCity": 13.375556, + "nameCity": "Garoua", + "timezone": "Africa/Douala" + }, + { + "GMT": "9.30", + "cityId": 2598, + "codeIataCity": "GOV", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -12.269595, + "longitudeCity": 136.82265, + "nameCity": "Gove", + "timezone": "Australia/Darwin" + }, + { + "GMT": "5.30", + "cityId": 2599, + "codeIataCity": "GOY", + "codeIso2Country": "LK", + "geonameId": 1242184, + "latitudeCity": 7.333333, + "longitudeCity": 81.61667, + "nameCity": "Gal Oya", + "timezone": "Asia/Colombo" + }, + { + "GMT": "2", + "cityId": 2600, + "codeIataCity": "GOZ", + "codeIso2Country": "BG", + "geonameId": 733643, + "latitudeCity": 43.11667, + "longitudeCity": 25.666668, + "nameCity": "Gorna Oriahovitsa", + "timezone": "Europe/Sofia" + }, + { + "GMT": "2", + "cityId": 2601, + "codeIataCity": "GPA", + "codeIso2Country": "GR", + "geonameId": 255683, + "latitudeCity": 38.25, + "longitudeCity": 21.733334, + "nameCity": "Patras", + "timezone": "Europe/Athens" + }, + { + "GMT": "-3", + "cityId": 2602, + "codeIataCity": "GPB", + "codeIso2Country": "BR", + "geonameId": 3461879, + "latitudeCity": -25.333332, + "longitudeCity": -51.5, + "nameCity": "Guarapuava", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "cityId": 2603, + "codeIataCity": "GPD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -19.999445, + "longitudeCity": 139.91777, + "nameCity": "Mount Gordon Mine", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 2604, + "codeIataCity": "GPI", + "codeIso2Country": "CO", + "geonameId": 3681505, + "latitudeCity": 2.5, + "longitudeCity": -78.34167, + "nameCity": "Guapi", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 2605, + "codeIataCity": "GPL", + "codeIso2Country": "CR", + "geonameId": 3621849, + "latitudeCity": 10.2, + "longitudeCity": -83.8, + "nameCity": "Guapiles", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "9.30", + "cityId": 2606, + "codeIataCity": "GPN", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -11.766667, + "longitudeCity": 130.01666, + "nameCity": "Garden Point", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-3", + "cityId": 2607, + "codeIataCity": "GPO", + "codeIso2Country": "AR", + "geonameId": 3833875, + "latitudeCity": -35.63333, + "longitudeCity": -63.766666, + "nameCity": "General Pico", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "-6", + "cityId": 2608, + "codeIataCity": "GPS", + "codeIso2Country": "EC", + "geonameId": 3651163, + "latitudeCity": -0.434722, + "longitudeCity": -90.282776, + "nameCity": "Galapagos Island", + "timezone": "Pacific/Galapagos" + }, + { + "GMT": "-6", + "cityId": 2609, + "codeIataCity": "GPT", + "codeIso2Country": "US", + "geonameId": 4428667, + "latitudeCity": 30.413284, + "longitudeCity": -89.07203, + "nameCity": "Gulfport", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 2610, + "codeIataCity": "GPZ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 47.214443, + "longitudeCity": -93.51111, + "nameCity": "Grand Rapids", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 2611, + "codeIataCity": "GQQ", + "codeIso2Country": "US", + "geonameId": 4509177, + "latitudeCity": 40.736668, + "longitudeCity": -82.757225, + "nameCity": "Galion", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 2612, + "codeIataCity": "GRA", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 8.333333, + "longitudeCity": -73.7, + "nameCity": "Gamarra", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 2613, + "codeIataCity": "GRB", + "codeIso2Country": "US", + "geonameId": 5254962, + "latitudeCity": 44.492847, + "longitudeCity": -88.121895, + "nameCity": "Green Bay", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 2614, + "codeIataCity": "GRC", + "codeIso2Country": "LR", + "geonameId": 2276625, + "latitudeCity": 4.6, + "longitudeCity": -8.166667, + "nameCity": "Grand Cess", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-5", + "cityId": 2615, + "codeIataCity": "GRD", + "codeIso2Country": "US", + "geonameId": 4180531, + "latitudeCity": 34.25139, + "longitudeCity": -82.15833, + "nameCity": "Greenwood", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 2616, + "codeIataCity": "GRE", + "codeIso2Country": "US", + "geonameId": 4407066, + "latitudeCity": 38.88333, + "longitudeCity": -89.416664, + "nameCity": "Greenville", + "timezone": "America/Chicago" + }, + { + "GMT": "4.30", + "cityId": 2617, + "codeIataCity": "GRG", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 33.61667, + "longitudeCity": 69.11667, + "nameCity": "Gardez", + "timezone": "Asia/Kabul" + }, + { + "GMT": "10", + "cityId": 2618, + "codeIataCity": "GRH", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -10.225, + "longitudeCity": 150.55, + "nameCity": "Garuahi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 2619, + "codeIataCity": "GRI", + "codeIso2Country": "US", + "geonameId": 5069297, + "latitudeCity": 40.96722, + "longitudeCity": -98.30666, + "nameCity": "Grand Island", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 2620, + "codeIataCity": "GRJ", + "codeIso2Country": "ZA", + "geonameId": 1002145, + "latitudeCity": -34.00148, + "longitudeCity": 22.382235, + "nameCity": "George", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "10", + "cityId": 2621, + "codeIataCity": "GRL", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.95, + "longitudeCity": 147.18333, + "nameCity": "Garasa", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 2622, + "codeIataCity": "GRM", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 46.666668, + "longitudeCity": -85.98333, + "nameCity": "Grand Marais", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 2623, + "codeIataCity": "GRN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.8, + "longitudeCity": -102.2, + "nameCity": "Gordon", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 2624, + "codeIataCity": "GRO", + "codeIso2Country": "ES", + "geonameId": 3121456, + "latitudeCity": 41.89804, + "longitudeCity": 2.766383, + "nameCity": "Gerona", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-3", + "cityId": 2625, + "codeIataCity": "GRP", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -11.666667, + "longitudeCity": -49.216667, + "nameCity": "Gurupi", + "timezone": "America/Araguaina" + }, + { + "GMT": "1", + "cityId": 2626, + "codeIataCity": "GRQ", + "codeIso2Country": "NL", + "geonameId": 2755251, + "latitudeCity": 53.120277, + "longitudeCity": 6.575556, + "nameCity": "Groningen", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "-5", + "cityId": 2627, + "codeIataCity": "GRR", + "codeIso2Country": "US", + "geonameId": 4994358, + "latitudeCity": 42.88501, + "longitudeCity": -85.52974, + "nameCity": "Grand Rapids", + "timezone": "America/Detroit" + }, + { + "GMT": "1", + "cityId": 2628, + "codeIataCity": "GRS", + "codeIso2Country": "IT", + "geonameId": 3175786, + "latitudeCity": 42.761944, + "longitudeCity": 11.070556, + "nameCity": "Grosseto", + "timezone": "Europe/Rome" + }, + { + "GMT": "5", + "cityId": 2629, + "codeIataCity": "GRT", + "codeIso2Country": "PK", + "geonameId": 1164909, + "latitudeCity": 32.666668, + "longitudeCity": 74.03333, + "nameCity": "Gujrat", + "timezone": "Asia/Karachi" + }, + { + "GMT": "3", + "cityId": 2630, + "codeIataCity": "GRV", + "codeIso2Country": "RU", + "geonameId": 558418, + "latitudeCity": 43.333332, + "longitudeCity": 45.75, + "nameCity": "Groznyj", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-1", + "cityId": 2631, + "codeIataCity": "GRW", + "codeIso2Country": "PT", + "geonameId": 3372644, + "latitudeCity": 39.090954, + "longitudeCity": -28.027958, + "nameCity": "Graciosa Island", + "timezone": "Atlantic/Azores" + }, + { + "GMT": "1", + "cityId": 2632, + "codeIataCity": "GRX", + "codeIso2Country": "ES", + "geonameId": 2517117, + "latitudeCity": 37.176487, + "longitudeCity": -3.597929, + "nameCity": "Granada", + "timezone": "Europe/Madrid" + }, + { + "GMT": "0", + "cityId": 2633, + "codeIataCity": "GRY", + "codeIso2Country": "IS", + "geonameId": 2633274, + "latitudeCity": 66.566666, + "longitudeCity": -18.016666, + "nameCity": "Grimsey", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "1", + "cityId": 2634, + "codeIataCity": "GRZ", + "codeIso2Country": "AT", + "geonameId": 2778067, + "latitudeCity": 46.994125, + "longitudeCity": 15.444928, + "nameCity": "Graz", + "timezone": "Europe/Vienna" + }, + { + "GMT": "8", + "cityId": 2635, + "codeIataCity": "GSA", + "codeIso2Country": "MY", + "geonameId": 1737714, + "latitudeCity": 4.416667, + "longitudeCity": 115.76667, + "nameCity": "Long Pasia", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-5", + "cityId": 2636, + "codeIataCity": "GSB", + "codeIso2Country": "US", + "geonameId": 4468261, + "latitudeCity": 35.38333, + "longitudeCity": -77.98333, + "nameCity": "Goldsboro", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 2637, + "codeIataCity": "GSC", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -25.166668, + "longitudeCity": 115.25, + "nameCity": "Gascoyne Junction", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "cityId": 2638, + "codeIataCity": "GSH", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.583332, + "longitudeCity": -85.833336, + "nameCity": "Goshen", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "11", + "cityId": 2639, + "codeIataCity": "GSI", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -9.533333, + "longitudeCity": 160.2, + "nameCity": "Guadalcanal", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-6", + "cityId": 2640, + "codeIataCity": "GSJ", + "codeIso2Country": "GT", + "geonameId": 3599699, + "latitudeCity": 13.93619, + "longitudeCity": -90.83583, + "nameCity": "Puerto San Jose", + "timezone": "America/Guatemala" + }, + { + "GMT": "-7", + "cityId": 2641, + "codeIataCity": "GSL", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 62.5975, + "longitudeCity": -111.54444, + "nameCity": "Taltheilei Narrows", + "timezone": "America/Yellowknife" + }, + { + "GMT": "3.30", + "cityId": 2642, + "codeIataCity": "GSM", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 26.757778, + "longitudeCity": 55.905277, + "nameCity": "Gheshm", + "timezone": "Asia/Tehran" + }, + { + "GMT": "9.30", + "cityId": 2643, + "codeIataCity": "GSN", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -31.666668, + "longitudeCity": 137.76666, + "nameCity": "Mount Gunson", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-5", + "cityId": 2644, + "codeIataCity": "GSO", + "codeIso2Country": "US", + "geonameId": 4469146, + "latitudeCity": 36.105324, + "longitudeCity": -79.9373, + "nameCity": "Greensboro", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 2645, + "codeIataCity": "GSP", + "codeIso2Country": "US", + "geonameId": 4580543, + "latitudeCity": 34.852618, + "longitudeCity": -82.39401, + "nameCity": "Greenville", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 2646, + "codeIataCity": "GSQ", + "codeIso2Country": "EG", + "geonameId": 0, + "latitudeCity": 22.583332, + "longitudeCity": 28.716667, + "nameCity": "Shark Elowainat", + "timezone": "Africa/Cairo" + }, + { + "GMT": "3", + "cityId": 2647, + "codeIataCity": "GSR", + "codeIso2Country": "SO", + "geonameId": 0, + "latitudeCity": 9.5, + "longitudeCity": 49.05, + "nameCity": "Gardo", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "2", + "cityId": 2648, + "codeIataCity": "GSS", + "codeIso2Country": "ZA", + "geonameId": 954955, + "latitudeCity": -25.116667, + "longitudeCity": 30.8, + "nameCity": "Sabi Sabi", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-9", + "cityId": 2649, + "codeIataCity": "GST", + "codeIso2Country": "US", + "geonameId": 5846871, + "latitudeCity": 58.413333, + "longitudeCity": -135.736944, + "nameCity": "Gustavus", + "timezone": "America/Juneau" + }, + { + "GMT": "3", + "cityId": 2650, + "codeIataCity": "GSU", + "codeIso2Country": "SD", + "geonameId": 0, + "latitudeCity": 14.033333, + "longitudeCity": 35.466667, + "nameCity": "Gedaref", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "0", + "cityId": 2651, + "codeIataCity": "GSY", + "codeIso2Country": "GB", + "geonameId": 2647878, + "latitudeCity": 53.583332, + "longitudeCity": -0.083333, + "nameCity": "Grimsby", + "timezone": "Europe/London" + }, + { + "GMT": "11", + "cityId": 2652, + "codeIataCity": "GTA", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -8.766667, + "longitudeCity": 158.18333, + "nameCity": "Gatokae", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "8", + "cityId": 2653, + "codeIataCity": "GTB", + "codeIso2Country": "MY", + "geonameId": 1735882, + "latitudeCity": 2.116667, + "longitudeCity": 111.7, + "nameCity": "Genting", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-5", + "cityId": 2654, + "codeIataCity": "GTC", + "codeIso2Country": "BS", + "geonameId": 0, + "latitudeCity": 26.25, + "longitudeCity": -77.36667, + "nameCity": "Green Turtle", + "timezone": "America/Nassau" + }, + { + "GMT": "9.30", + "cityId": 2655, + "codeIataCity": "GTE", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -13.973887, + "longitudeCity": 136.46002, + "nameCity": "Groote Eylandt", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-7", + "cityId": 2656, + "codeIataCity": "GTF", + "codeIso2Country": "US", + "geonameId": 5655240, + "latitudeCity": 47.500235, + "longitudeCity": -111.300808, + "nameCity": "Great Falls", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 2657, + "codeIataCity": "GTG", + "codeIso2Country": "US", + "geonameId": 5048814, + "latitudeCity": 45.783333, + "longitudeCity": -92.683334, + "nameCity": "Grantsburg", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 2658, + "codeIataCity": "GTI", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 54.38333, + "longitudeCity": 12.316667, + "nameCity": "Guettin", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "cityId": 2659, + "codeIataCity": "GTK", + "codeIso2Country": "MY", + "geonameId": 0, + "latitudeCity": 2.6, + "longitudeCity": 102.916664, + "nameCity": "Sungei Tekai", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "8", + "cityId": 2660, + "codeIataCity": "GTO", + "codeIso2Country": "ID", + "geonameId": 1643837, + "latitudeCity": 0.639039, + "longitudeCity": 122.850876, + "nameCity": "Gorontalo", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-8", + "cityId": 2661, + "codeIataCity": "GTP", + "codeIso2Country": "US", + "geonameId": 5729080, + "latitudeCity": 42.43901, + "longitudeCity": -123.32839, + "nameCity": "Grants Pass", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "cityId": 2662, + "codeIataCity": "GTS", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -26.966667, + "longitudeCity": 133.61667, + "nameCity": "Granites", + "timezone": "Australia/Darwin" + }, + { + "GMT": "10", + "cityId": 2663, + "codeIataCity": "GTT", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.416668, + "longitudeCity": 143.78334, + "nameCity": "Georgetown", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 2664, + "codeIataCity": "GTW", + "codeIso2Country": "CZ", + "geonameId": 3078610, + "latitudeCity": 49.2, + "longitudeCity": 17.516666, + "nameCity": "Zlin", + "timezone": "Europe/Prague" + }, + { + "GMT": "-5", + "cityId": 2665, + "codeIataCity": "GTY", + "codeIso2Country": "US", + "geonameId": 4558183, + "latitudeCity": 39.833332, + "longitudeCity": -77.23333, + "nameCity": "Gettysburg", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 2666, + "codeIataCity": "GTZ", + "codeIso2Country": "TZ", + "geonameId": 0, + "latitudeCity": -2.160833, + "longitudeCity": 34.225555, + "nameCity": "Grumeti", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-6", + "cityId": 2667, + "codeIataCity": "GUA", + "codeIso2Country": "GT", + "geonameId": 3598132, + "latitudeCity": 14.588071, + "longitudeCity": -90.53068, + "nameCity": "Guatemala City", + "timezone": "America/Guatemala" + }, + { + "GMT": "-7", + "cityId": 2668, + "codeIataCity": "GUB", + "codeIso2Country": "MX", + "geonameId": 0, + "latitudeCity": 28.033333, + "longitudeCity": -114.066666, + "nameCity": "Guerrero Negro", + "timezone": "America/Mazatlan" + }, + { + "GMT": "-7", + "cityId": 2669, + "codeIataCity": "GUC", + "codeIso2Country": "US", + "geonameId": 5424099, + "latitudeCity": 38.53389, + "longitudeCity": -106.93889, + "nameCity": "Gunnison", + "timezone": "America/Denver" + }, + { + "GMT": "0", + "cityId": 2670, + "codeIataCity": "GUD", + "codeIso2Country": "ML", + "geonameId": 0, + "latitudeCity": 16.3575, + "longitudeCity": -3.609722, + "nameCity": "Goundam", + "timezone": "Africa/Bamako" + }, + { + "GMT": "10", + "cityId": 2671, + "codeIataCity": "GUE", + "codeIso2Country": "PG", + "geonameId": 2096573, + "latitudeCity": -3.583333, + "longitudeCity": 141.58333, + "nameCity": "Guriaso", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 2672, + "codeIataCity": "GUF", + "codeIso2Country": "US", + "geonameId": 4065552, + "latitudeCity": 30.166668, + "longitudeCity": -87.583336, + "nameCity": "Gulf Shores", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 2673, + "codeIataCity": "GUG", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.516667, + "longitudeCity": 146.9, + "nameCity": "Guari", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 2674, + "codeIataCity": "GUH", + "codeIso2Country": "AU", + "geonameId": 2164206, + "latitudeCity": -30.95, + "longitudeCity": 150.23334, + "nameCity": "Gunnedah", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-4", + "cityId": 2675, + "codeIataCity": "GUI", + "codeIso2Country": "VE", + "geonameId": 3795771, + "latitudeCity": 10.566667, + "longitudeCity": -62.3, + "nameCity": "Guiria", + "timezone": "America/Caracas" + }, + { + "GMT": "-3", + "cityId": 2676, + "codeIataCity": "GUJ", + "codeIso2Country": "BR", + "geonameId": 3471949, + "latitudeCity": -22.816668, + "longitudeCity": -45.216667, + "nameCity": "Guaratingueta", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "cityId": 2677, + "codeIataCity": "GUL", + "codeIso2Country": "AU", + "geonameId": 2164837, + "latitudeCity": -34.75, + "longitudeCity": 149.71666, + "nameCity": "Goulburn", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "cityId": 2678, + "codeIataCity": "GUM", + "codeIso2Country": "GU", + "geonameId": 7874631, + "latitudeCity": 13.47617, + "longitudeCity": 144.751511, + "nameCity": "Agana", + "timezone": "Pacific/Guam" + }, + { + "GMT": "-6", + "cityId": 2679, + "codeIataCity": "GUO", + "codeIso2Country": "HN", + "geonameId": 3609389, + "latitudeCity": 15.116667, + "longitudeCity": -86.13333, + "nameCity": "Gualaco", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-7", + "cityId": 2680, + "codeIataCity": "GUP", + "codeIso2Country": "US", + "geonameId": 5468773, + "latitudeCity": 35.511112, + "longitudeCity": -108.78667, + "nameCity": "Gallup", + "timezone": "America/Denver" + }, + { + "GMT": "-4", + "cityId": 2681, + "codeIataCity": "GUQ", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 9.025278, + "longitudeCity": -69.75, + "nameCity": "Guanare", + "timezone": "America/Caracas" + }, + { + "GMT": "10", + "cityId": 2682, + "codeIataCity": "GUR", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -10.310833, + "longitudeCity": 150.33861, + "nameCity": "Alotau", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 2683, + "codeIataCity": "GUS", + "codeIso2Country": "US", + "geonameId": 4259418, + "latitudeCity": 40.75, + "longitudeCity": -86.066666, + "nameCity": "Peru", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "1", + "cityId": 2684, + "codeIataCity": "GUT", + "codeIso2Country": "DE", + "geonameId": 2847690, + "latitudeCity": 51.904906, + "longitudeCity": 8.39275, + "nameCity": "Guetersloh", + "timezone": "Europe/Berlin" + }, + { + "GMT": "0", + "cityId": 2685, + "codeIataCity": "GUU", + "codeIso2Country": "IS", + "geonameId": 3414079, + "latitudeCity": 64.96667, + "longitudeCity": -23.166668, + "nameCity": "Grundarfjordur", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "10", + "cityId": 2686, + "codeIataCity": "GUV", + "codeIso2Country": "PG", + "geonameId": 2090415, + "latitudeCity": -6.283333, + "longitudeCity": 142.41667, + "nameCity": "Mougulu", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5", + "cityId": 2687, + "codeIataCity": "GUW", + "codeIso2Country": "KZ", + "geonameId": 610529, + "latitudeCity": 47.122814, + "longitudeCity": 51.829556, + "nameCity": "Atyrau", + "timezone": "Asia/Aqtau" + }, + { + "GMT": "5.30", + "cityId": 2688, + "codeIataCity": "GUX", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 24.666668, + "longitudeCity": 77.316666, + "nameCity": "Guna", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-6", + "cityId": 2689, + "codeIataCity": "GUY", + "codeIso2Country": "US", + "geonameId": 5515743, + "latitudeCity": 36.682777, + "longitudeCity": -101.507774, + "nameCity": "Guymon", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 2690, + "codeIataCity": "GVA", + "codeIso2Country": "CH", + "geonameId": 2660646, + "latitudeCity": 46.198392, + "longitudeCity": 6.142296, + "nameCity": "Geneva", + "timezone": "Europe/Zurich" + }, + { + "GMT": "-5", + "cityId": 2691, + "codeIataCity": "GVE", + "codeIso2Country": "US", + "geonameId": 4781708, + "latitudeCity": 38.13333, + "longitudeCity": -78.2, + "nameCity": "Gordonsville", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 2692, + "codeIataCity": "GVI", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -3.966667, + "longitudeCity": 141.15, + "nameCity": "Green River", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 2693, + "codeIataCity": "GVL", + "codeIso2Country": "US", + "geonameId": 4180439, + "latitudeCity": 34.3, + "longitudeCity": -83.833336, + "nameCity": "Gainesville", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 2694, + "codeIataCity": "GVN", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 48.93, + "longitudeCity": 140.3, + "nameCity": "Sovetskaya Gavan", + "timezone": "Asia/Vladivostok" + }, + { + "GMT": "10", + "cityId": 2695, + "codeIataCity": "GVP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -15.783333, + "longitudeCity": 144.61667, + "nameCity": "Greenvale", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "cityId": 2696, + "codeIataCity": "GVR", + "codeIso2Country": "BR", + "geonameId": 3462315, + "latitudeCity": -18.850279, + "longitudeCity": -41.933334, + "nameCity": "Governador Valadares", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "cityId": 2697, + "codeIataCity": "GVT", + "codeIso2Country": "US", + "geonameId": 4684888, + "latitudeCity": 33.066666, + "longitudeCity": -96.06167, + "nameCity": "Greenville", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 2698, + "codeIataCity": "GVW", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.88333, + "longitudeCity": -94.53333, + "nameCity": "Grandview", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 2699, + "codeIataCity": "GVX", + "codeIso2Country": "SE", + "geonameId": 2712414, + "latitudeCity": 60.674616, + "longitudeCity": 17.141831, + "nameCity": "Gavle", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "6.30", + "cityId": 2700, + "codeIataCity": "GWA", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 21.0, + "longitudeCity": 94.0, + "nameCity": "Gwa", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "5", + "cityId": 2701, + "codeIataCity": "GWD", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 25.230556, + "longitudeCity": 62.33889, + "nameCity": "Gwadar", + "timezone": "Asia/Karachi" + }, + { + "GMT": "2", + "cityId": 2702, + "codeIataCity": "GWE", + "codeIso2Country": "ZW", + "geonameId": 0, + "latitudeCity": -19.435833, + "longitudeCity": 29.86111, + "nameCity": "Gweru", + "timezone": "Africa/Harare" + }, + { + "GMT": "5.30", + "cityId": 2703, + "codeIataCity": "GWL", + "codeIso2Country": "IN", + "geonameId": 1270583, + "latitudeCity": 26.293888, + "longitudeCity": 78.23, + "nameCity": "Gwalior", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "cityId": 2704, + "codeIataCity": "GWN", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.566667, + "longitudeCity": 146.25, + "nameCity": "Gnarowein", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 2705, + "codeIataCity": "GWO", + "codeIso2Country": "US", + "geonameId": 4420617, + "latitudeCity": 33.495, + "longitudeCity": -90.08889, + "nameCity": "Greenwood", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 2706, + "codeIataCity": "GWS", + "codeIso2Country": "US", + "geonameId": 5423092, + "latitudeCity": 39.583168, + "longitudeCity": -107.41441, + "nameCity": "Glenwood Springs", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 2707, + "codeIataCity": "GWT", + "codeIso2Country": "DE", + "geonameId": 2810284, + "latitudeCity": 54.91528, + "longitudeCity": 8.343056, + "nameCity": "Westerland", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "cityId": 2708, + "codeIataCity": "GWV", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 43.11667, + "longitudeCity": -87.95, + "nameCity": "Glendale", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 2709, + "codeIataCity": "GWY", + "codeIso2Country": "IE", + "geonameId": 2964180, + "latitudeCity": 53.283333, + "longitudeCity": -9.033333, + "nameCity": "Galway", + "timezone": "Europe/Dublin" + }, + { + "GMT": "3", + "cityId": 2710, + "codeIataCity": "GXF", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 15.961794, + "longitudeCity": 48.787086, + "nameCity": "Seiyun", + "timezone": "Asia/Aden" + }, + { + "GMT": "1", + "cityId": 2711, + "codeIataCity": "GXG", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -7.783333, + "longitudeCity": 15.45, + "nameCity": "Negage", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-4", + "cityId": 2712, + "codeIataCity": "GXQ", + "codeIso2Country": "CL", + "geonameId": 3894426, + "latitudeCity": -45.58889, + "longitudeCity": -72.09861, + "nameCity": "Coyhaique", + "timezone": "America/Santiago" + }, + { + "GMT": "1", + "cityId": 2713, + "codeIataCity": "GXX", + "codeIso2Country": "CM", + "geonameId": 0, + "latitudeCity": 10.358333, + "longitudeCity": 15.2375, + "nameCity": "Yagoua", + "timezone": "Africa/Douala" + }, + { + "GMT": "-7", + "cityId": 2714, + "codeIataCity": "GXY", + "codeIso2Country": "US", + "geonameId": 5577592, + "latitudeCity": 40.416668, + "longitudeCity": -104.7, + "nameCity": "Greeley", + "timezone": "America/Denver" + }, + { + "GMT": "-4", + "cityId": 2715, + "codeIataCity": "GYA", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -10.83, + "longitudeCity": -65.361664, + "nameCity": "Guayaramerin", + "timezone": "America/La_Paz" + }, + { + "GMT": "-5", + "cityId": 2716, + "codeIataCity": "GYE", + "codeIso2Country": "EC", + "geonameId": 3657509, + "latitudeCity": -2.142654, + "longitudeCity": -79.88032, + "nameCity": "Guayaquil", + "timezone": "America/Guayaquil" + }, + { + "GMT": "2", + "cityId": 2717, + "codeIataCity": "GYI", + "codeIso2Country": "RW", + "geonameId": 0, + "latitudeCity": -1.683333, + "longitudeCity": 29.25, + "nameCity": "Gisenyi", + "timezone": "Africa/Kigali" + }, + { + "GMT": "8", + "cityId": 2718, + "codeIataCity": "GYL", + "codeIso2Country": "AU", + "geonameId": 2059811, + "latitudeCity": -16.333332, + "longitudeCity": 128.66667, + "nameCity": "Argyle", + "timezone": "Australia/Perth" + }, + { + "GMT": "-7", + "cityId": 2719, + "codeIataCity": "GYM", + "codeIso2Country": "MX", + "geonameId": 4005143, + "latitudeCity": 27.955557, + "longitudeCity": -110.93056, + "nameCity": "Guaymas", + "timezone": "America/Hermosillo" + }, + { + "GMT": "-3", + "cityId": 2720, + "codeIataCity": "GYN", + "codeIso2Country": "BR", + "geonameId": 3462377, + "latitudeCity": -16.632631, + "longitudeCity": -49.226624, + "nameCity": "Goiania", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "cityId": 2721, + "codeIataCity": "GYP", + "codeIso2Country": "AU", + "geonameId": 2155132, + "latitudeCity": -26.183332, + "longitudeCity": 152.63333, + "nameCity": "Gympie", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-7", + "cityId": 2722, + "codeIataCity": "GYR", + "codeIso2Country": "US", + "geonameId": 5308655, + "latitudeCity": 33.433334, + "longitudeCity": -112.35, + "nameCity": "Goodyear", + "timezone": "America/Phoenix" + }, + { + "GMT": "8", + "cityId": 2723, + "codeIataCity": "GYS", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 32.395, + "longitudeCity": 105.69972, + "nameCity": "Guang Yuan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 2724, + "codeIataCity": "GYU", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 40.833332, + "longitudeCity": 43.9, + "nameCity": "Guyuan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "cityId": 2725, + "codeIataCity": "GYY", + "codeIso2Country": "US", + "geonameId": 4887398, + "latitudeCity": 41.61667, + "longitudeCity": -87.416664, + "nameCity": "Gary", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 2726, + "codeIataCity": "GZA", + "codeIso2Country": "PS", + "geonameId": 281133, + "latitudeCity": 31.24639, + "longitudeCity": 34.27611, + "nameCity": "Rafah", + "timezone": "Asia/Gaza" + }, + { + "GMT": "4.30", + "cityId": 2727, + "codeIataCity": "GZI", + "codeIso2Country": "AF", + "geonameId": 1141269, + "latitudeCity": 33.0, + "longitudeCity": 68.416664, + "nameCity": "Ghazni", + "timezone": "Asia/Kabul" + }, + { + "GMT": "1", + "cityId": 2728, + "codeIataCity": "GZM", + "codeIso2Country": "MT", + "geonameId": 0, + "latitudeCity": 36.041668, + "longitudeCity": 14.208333, + "nameCity": "Gozo", + "timezone": "Europe/Malta" + }, + { + "GMT": "11", + "cityId": 2729, + "codeIataCity": "GZO", + "codeIso2Country": "SB", + "geonameId": 2108857, + "latitudeCity": -8.116667, + "longitudeCity": 156.83333, + "nameCity": "Gizo", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "3", + "cityId": 2730, + "codeIataCity": "GZP", + "codeIso2Country": "TR", + "geonameId": 324190, + "latitudeCity": 36.2993, + "longitudeCity": 32.3014, + "nameCity": "Alanya", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3", + "cityId": 2731, + "codeIataCity": "GZT", + "codeIso2Country": "TR", + "geonameId": 314830, + "latitudeCity": 36.944935, + "longitudeCity": 37.473747, + "nameCity": "Gaziantep", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3.30", + "cityId": 2732, + "codeIataCity": "GZW", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 36.233334, + "longitudeCity": 50.033333, + "nameCity": "Ghazvin", + "timezone": "Asia/Tehran" + }, + { + "GMT": "1", + "cityId": 2733, + "codeIataCity": "HAA", + "codeIso2Country": "NO", + "geonameId": 779642, + "latitudeCity": 70.46667, + "longitudeCity": 22.15, + "nameCity": "Hasvik", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "cityId": 2734, + "codeIataCity": "HAB", + "codeIso2Country": "US", + "geonameId": 4065965, + "latitudeCity": 34.15, + "longitudeCity": -88.1, + "nameCity": "Hamilton", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "cityId": 2735, + "codeIataCity": "HAC", + "codeIso2Country": "JP", + "geonameId": 1856867, + "latitudeCity": 33.117947, + "longitudeCity": 139.78122, + "nameCity": "Hachijo Jima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "cityId": 2736, + "codeIataCity": "HAD", + "codeIso2Country": "SE", + "geonameId": 2708365, + "latitudeCity": 56.680935, + "longitudeCity": 12.815005, + "nameCity": "Halmstad", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-7", + "cityId": 2737, + "codeIataCity": "HAE", + "codeIso2Country": "US", + "geonameId": 5541458, + "latitudeCity": 36.230556, + "longitudeCity": -112.66944, + "nameCity": "Havasupai", + "timezone": "America/Phoenix" + }, + { + "GMT": "-8", + "cityId": 2738, + "codeIataCity": "HAF", + "codeIso2Country": "US", + "geonameId": 5391959, + "latitudeCity": 37.466667, + "longitudeCity": -122.433334, + "nameCity": "Half Moon", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 2739, + "codeIataCity": "HAG", + "codeIso2Country": "NL", + "geonameId": 2747373, + "latitudeCity": 45.620853, + "longitudeCity": 126.23644, + "nameCity": "The Hague", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "-5", + "cityId": 2740, + "codeIataCity": "HAI", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.95, + "longitudeCity": -85.63333, + "nameCity": "Three Rivers", + "timezone": "America/Detroit" + }, + { + "GMT": "1", + "cityId": 2741, + "codeIataCity": "HAJ", + "codeIso2Country": "DE", + "geonameId": 2910831, + "latitudeCity": 52.372068, + "longitudeCity": 9.735686, + "nameCity": "Hanover", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "cityId": 2742, + "codeIataCity": "HAK", + "codeIso2Country": "CN", + "geonameId": 1809078, + "latitudeCity": 19.941612, + "longitudeCity": 110.45717, + "nameCity": "Haikou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "cityId": 2743, + "codeIataCity": "HAL", + "codeIso2Country": "NA", + "geonameId": 0, + "latitudeCity": -19.966667, + "longitudeCity": 13.066667, + "nameCity": "Halali", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "1", + "cityId": 2744, + "codeIataCity": "HAM", + "codeIso2Country": "DE", + "geonameId": 2911298, + "latitudeCity": 53.553813, + "longitudeCity": 9.991586, + "nameCity": "Hamburg", + "timezone": "Europe/Berlin" + }, + { + "GMT": "7", + "cityId": 2745, + "codeIataCity": "HAN", + "codeIso2Country": "VN", + "geonameId": 1581130, + "latitudeCity": 21.214184, + "longitudeCity": 105.802826, + "nameCity": "Hanoi", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-5", + "cityId": 2746, + "codeIataCity": "HAO", + "codeIso2Country": "US", + "geonameId": 4508722, + "latitudeCity": 39.4, + "longitudeCity": -84.566666, + "nameCity": "Hamilton", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 2747, + "codeIataCity": "HAP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -20.5, + "longitudeCity": 148.75, + "nameCity": "Long Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5", + "cityId": 2748, + "codeIataCity": "HAQ", + "codeIso2Country": "MV", + "geonameId": 1282286, + "latitudeCity": 6.748433, + "longitudeCity": 73.16838, + "nameCity": "Hanimaadhoo", + "timezone": "Indian/Maldives" + }, + { + "GMT": "-5", + "cityId": 2749, + "codeIataCity": "HAR", + "codeIso2Country": "US", + "geonameId": 5192726, + "latitudeCity": 40.21611, + "longitudeCity": -76.85222, + "nameCity": "Harrisburg", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 2750, + "codeIataCity": "HAS", + "codeIso2Country": "SA", + "geonameId": 0, + "latitudeCity": 27.438158, + "longitudeCity": 41.690483, + "nameCity": "Hail", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "10", + "cityId": 2751, + "codeIataCity": "HAT", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -19.720833, + "longitudeCity": 140.58333, + "nameCity": "Heathlands", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 2752, + "codeIataCity": "HAU", + "codeIso2Country": "NO", + "geonameId": 3153623, + "latitudeCity": 59.344765, + "longitudeCity": 5.215903, + "nameCity": "Haugesund", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "cityId": 2753, + "codeIataCity": "HAV", + "codeIso2Country": "CU", + "geonameId": 3553478, + "latitudeCity": 22.99845, + "longitudeCity": -82.40818, + "nameCity": "Havana", + "timezone": "America/Havana" + }, + { + "GMT": "0", + "cityId": 2754, + "codeIataCity": "HAW", + "codeIso2Country": "GB", + "geonameId": 2647311, + "latitudeCity": 51.8, + "longitudeCity": -4.966667, + "nameCity": "Haverfordwest", + "timezone": "Europe/London" + }, + { + "GMT": "-9", + "cityId": 2755, + "codeIataCity": "HAY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 65.21667, + "longitudeCity": -161.16667, + "nameCity": "Haycock", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 2756, + "codeIataCity": "HAZ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -4.433333, + "longitudeCity": 145.18333, + "nameCity": "Hatzfeldthaven", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 2757, + "codeIataCity": "HBA", + "codeIso2Country": "AU", + "geonameId": 2163355, + "latitudeCity": -42.837257, + "longitudeCity": 147.50519, + "nameCity": "Hobart", + "timezone": "Australia/Hobart" + }, + { + "GMT": "-9", + "cityId": 2758, + "codeIataCity": "HBC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.5, + "longitudeCity": -135.91667, + "nameCity": "Hanus Bay", + "timezone": "America/Sitka" + }, + { + "GMT": "10", + "cityId": 2759, + "codeIataCity": "HBD", + "codeIso2Country": "PG", + "geonameId": 2096470, + "latitudeCity": -6.333056, + "longitudeCity": 142.49777, + "nameCity": "Habi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 2760, + "codeIataCity": "HBG", + "codeIso2Country": "US", + "geonameId": 4429295, + "latitudeCity": 31.316668, + "longitudeCity": -89.26667, + "nameCity": "Hattiesburg", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 2761, + "codeIataCity": "HBH", + "codeIso2Country": "US", + "geonameId": 5847133, + "latitudeCity": 57.408333, + "longitudeCity": -133.46666, + "nameCity": "Hobart Bay", + "timezone": "America/Juneau" + }, + { + "GMT": "-5", + "cityId": 2762, + "codeIataCity": "HBI", + "codeIso2Country": "BS", + "geonameId": 0, + "latitudeCity": 25.516666, + "longitudeCity": -76.6, + "nameCity": "Harbour Island", + "timezone": "America/Nassau" + }, + { + "GMT": "-7", + "cityId": 2763, + "codeIataCity": "HBK", + "codeIso2Country": "US", + "geonameId": 5284580, + "latitudeCity": 34.936, + "longitudeCity": -110.14197, + "nameCity": "Holbrook", + "timezone": "America/Phoenix" + }, + { + "GMT": "7", + "cityId": 2764, + "codeIataCity": "HBN", + "codeIso2Country": "VN", + "geonameId": 0, + "latitudeCity": 12.0, + "longitudeCity": 106.0, + "nameCity": "Phu-bon", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-6", + "cityId": 2765, + "codeIataCity": "HBO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 40.166668, + "longitudeCity": -95.95, + "nameCity": "Humboldt", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 2766, + "codeIataCity": "HBR", + "codeIso2Country": "US", + "geonameId": 4540737, + "latitudeCity": 35.016666, + "longitudeCity": -99.1, + "nameCity": "Hobart", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "cityId": 2767, + "codeIataCity": "HBU", + "codeIso2Country": "MN", + "geonameId": 0, + "latitudeCity": 46.102222, + "longitudeCity": 91.58611, + "nameCity": "Bulgan, Hovd", + "timezone": "Asia/Hovd" + }, + { + "GMT": "5.30", + "cityId": 2768, + "codeIataCity": "HBX", + "codeIso2Country": "IN", + "geonameId": 1269920, + "latitudeCity": 15.358738, + "longitudeCity": 75.08608, + "nameCity": "Hubli", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-6", + "cityId": 2769, + "codeIataCity": "HCA", + "codeIso2Country": "US", + "geonameId": 5517061, + "latitudeCity": 32.250398, + "longitudeCity": -101.478735, + "nameCity": "Big Spring", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 2770, + "codeIataCity": "HCB", + "codeIso2Country": "US", + "geonameId": 5554428, + "latitudeCity": 55.45, + "longitudeCity": -131.28334, + "nameCity": "Shoal Cove", + "timezone": "America/Sitka" + }, + { + "GMT": "-5", + "cityId": 2771, + "codeIataCity": "HCC", + "codeIso2Country": "US", + "geonameId": 5121509, + "latitudeCity": 42.293056, + "longitudeCity": -73.710556, + "nameCity": "Hudson", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 2772, + "codeIataCity": "HCM", + "codeIso2Country": "SO", + "geonameId": 0, + "latitudeCity": 7.916667, + "longitudeCity": 49.8, + "nameCity": "Eil", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "8", + "cityId": 2773, + "codeIataCity": "HCN", + "codeIso2Country": "TW", + "geonameId": 1676242, + "latitudeCity": 21.933332, + "longitudeCity": 120.833336, + "nameCity": "Hengchun", + "timezone": "Asia/Taipei" + }, + { + "GMT": "8", + "cityId": 2774, + "codeIataCity": "HCQ", + "codeIso2Country": "AU", + "geonameId": 2070176, + "latitudeCity": -18.233334, + "longitudeCity": 127.666664, + "nameCity": "Halls Creek", + "timezone": "Australia/Perth" + }, + { + "GMT": "-9", + "cityId": 2775, + "codeIataCity": "HCR", + "codeIso2Country": "US", + "geonameId": 5864131, + "latitudeCity": 62.18889, + "longitudeCity": -159.77167, + "nameCity": "Holy Cross", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 2776, + "codeIataCity": "HCW", + "codeIso2Country": "US", + "geonameId": 4460243, + "latitudeCity": 34.7, + "longitudeCity": -79.88333, + "nameCity": "Cheraw", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 2777, + "codeIataCity": "HDA", + "codeIso2Country": "US", + "geonameId": 5557293, + "latitudeCity": 57.2, + "longitudeCity": -134.85, + "nameCity": "Hidden Falls", + "timezone": "America/Sitka" + }, + { + "GMT": "1", + "cityId": 2778, + "codeIataCity": "HDB", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 49.4019, + "longitudeCity": 8.680285, + "nameCity": "Heidelberg", + "timezone": "Europe/Berlin" + }, + { + "GMT": "5", + "cityId": 2779, + "codeIataCity": "HDD", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 25.322222, + "longitudeCity": 68.36389, + "nameCity": "Hyderabad", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-6", + "cityId": 2780, + "codeIataCity": "HDE", + "codeIso2Country": "US", + "geonameId": 5070216, + "latitudeCity": 40.433334, + "longitudeCity": -99.38333, + "nameCity": "Holdrege", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 2781, + "codeIataCity": "HDF", + "codeIso2Country": "DE", + "geonameId": 2833988, + "latitudeCity": 53.87825, + "longitudeCity": 14.138242, + "nameCity": "Heringsdorf", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "cityId": 2782, + "codeIataCity": "HDG", + "codeIso2Country": "CN", + "geonameId": 1808963, + "latitudeCity": 36.525833, + "longitudeCity": 114.425, + "nameCity": "Handan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-10", + "cityId": 2783, + "codeIataCity": "HDH", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 21.466667, + "longitudeCity": -157.96666, + "nameCity": "Oahu", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "3.30", + "cityId": 2784, + "codeIataCity": "HDM", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 34.867146, + "longitudeCity": 48.53732, + "nameCity": "Hamadan", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-7", + "cityId": 2785, + "codeIataCity": "HDN", + "codeIso2Country": "US", + "geonameId": 5577864, + "latitudeCity": 40.48481, + "longitudeCity": -107.220764, + "nameCity": "Hayden", + "timezone": "America/Denver" + }, + { + "GMT": "3.30", + "cityId": 2786, + "codeIataCity": "HDR", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 27.05, + "longitudeCity": 56.166668, + "nameCity": "Havadarya", + "timezone": "Asia/Tehran" + }, + { + "GMT": "2", + "cityId": 2787, + "codeIataCity": "HDS", + "codeIso2Country": "ZA", + "geonameId": 996195, + "latitudeCity": -24.35, + "longitudeCity": 30.95, + "nameCity": "Hoedspruit", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "7", + "cityId": 2788, + "codeIataCity": "HDY", + "codeIso2Country": "TH", + "geonameId": 1610780, + "latitudeCity": 6.936764, + "longitudeCity": 100.39356, + "nameCity": "Hat Yai", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "4.30", + "cityId": 2789, + "codeIataCity": "HEA", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 34.212696, + "longitudeCity": 62.22599, + "nameCity": "Herat", + "timezone": "Asia/Kabul" + }, + { + "GMT": "6.30", + "cityId": 2790, + "codeIataCity": "HEB", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 17.633333, + "longitudeCity": 95.46667, + "nameCity": "Henzada", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-9", + "cityId": 2791, + "codeIataCity": "HED", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 55.833332, + "longitudeCity": -160.83333, + "nameCity": "Herendeen", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 2792, + "codeIataCity": "HEE", + "codeIso2Country": "US", + "geonameId": 4641239, + "latitudeCity": 34.533333, + "longitudeCity": -90.6, + "nameCity": "Helena", + "timezone": "America/Chicago" + }, + { + "GMT": "6.30", + "cityId": 2793, + "codeIataCity": "HEH", + "codeIso2Country": "MM", + "geonameId": 1325259, + "latitudeCity": 20.743862, + "longitudeCity": 96.79341, + "nameCity": "Heho", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "1", + "cityId": 2794, + "codeIataCity": "HEI", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 54.155556, + "longitudeCity": 8.902778, + "nameCity": "Heide-Buesum", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "cityId": 2795, + "codeIataCity": "HEK", + "codeIso2Country": "CN", + "geonameId": 2036973, + "latitudeCity": 50.216667, + "longitudeCity": 127.433334, + "nameCity": "Heihe", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "cityId": 2796, + "codeIataCity": "HEL", + "codeIso2Country": "FI", + "geonameId": 658225, + "latitudeCity": 60.294361, + "longitudeCity": 25.040243, + "nameCity": "Helsinki", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "10", + "cityId": 2797, + "codeIataCity": "HEO", + "codeIso2Country": "PG", + "geonameId": 2088122, + "latitudeCity": -9.133333, + "longitudeCity": 147.58333, + "nameCity": "Haelogo", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "cityId": 2798, + "codeIataCity": "HER", + "codeIso2Country": "GR", + "geonameId": 261745, + "latitudeCity": 35.33663, + "longitudeCity": 25.174192, + "nameCity": "Heraklion", + "timezone": "Europe/Athens" + }, + { + "GMT": "-8", + "cityId": 2799, + "codeIataCity": "HES", + "codeIso2Country": "US", + "geonameId": 5731070, + "latitudeCity": 45.85, + "longitudeCity": -119.28333, + "nameCity": "Hermiston", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "cityId": 2800, + "codeIataCity": "HET", + "codeIso2Country": "CN", + "geonameId": 2036892, + "latitudeCity": 40.854713, + "longitudeCity": 111.814156, + "nameCity": "Hohhot", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 2801, + "codeIataCity": "HEV", + "codeIso2Country": "ES", + "geonameId": 2516548, + "latitudeCity": 37.266666, + "longitudeCity": -6.95, + "nameCity": "Huelva", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-6", + "cityId": 2802, + "codeIataCity": "HEZ", + "codeIso2Country": "US", + "geonameId": 4437982, + "latitudeCity": 31.614721, + "longitudeCity": -91.29639, + "nameCity": "Natchez", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 2803, + "codeIataCity": "HFA", + "codeIso2Country": "IL", + "geonameId": 294801, + "latitudeCity": 32.81182, + "longitudeCity": 35.04018, + "nameCity": "Haifa", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "-5", + "cityId": 2804, + "codeIataCity": "HFD", + "codeIso2Country": "US", + "geonameId": 4835797, + "latitudeCity": 41.763711, + "longitudeCity": -72.685093, + "nameCity": "Hartford", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 2805, + "codeIataCity": "HFE", + "codeIso2Country": "CN", + "geonameId": 1808722, + "latitudeCity": 31.85, + "longitudeCity": 117.28333, + "nameCity": "Hefei (Luogang Airport)", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 2806, + "codeIataCity": "HFF", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 35.033333, + "longitudeCity": -79.566666, + "nameCity": "Hoffman", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 2807, + "codeIataCity": "HFN", + "codeIso2Country": "IS", + "geonameId": 2630299, + "latitudeCity": 64.28333, + "longitudeCity": -15.266667, + "nameCity": "Hornafjordur", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "1", + "cityId": 2808, + "codeIataCity": "HFS", + "codeIso2Country": "SE", + "geonameId": 2709214, + "latitudeCity": 60.0175, + "longitudeCity": 13.569167, + "nameCity": "Hagfors", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 2809, + "codeIataCity": "HFT", + "codeIso2Country": "NO", + "geonameId": 779683, + "latitudeCity": 70.67999, + "longitudeCity": 23.675867, + "nameCity": "Hammerfest", + "timezone": "Europe/Oslo" + }, + { + "GMT": "3", + "cityId": 2810, + "codeIataCity": "HGA", + "codeIso2Country": "SO", + "geonameId": 0, + "latitudeCity": 9.515833, + "longitudeCity": 44.091667, + "nameCity": "Hargeisa", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "10", + "cityId": 2811, + "codeIataCity": "HGD", + "codeIso2Country": "AU", + "geonameId": 2162976, + "latitudeCity": -20.81889, + "longitudeCity": 144.22444, + "nameCity": "Hughenden", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "cityId": 2812, + "codeIataCity": "HGH", + "codeIso2Country": "CN", + "geonameId": 1808926, + "latitudeCity": 30.236935, + "longitudeCity": 120.43236, + "nameCity": "Hangzhou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "cityId": 2813, + "codeIataCity": "HGI", + "codeIso2Country": "SD", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Higlieg", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "1", + "cityId": 2814, + "codeIataCity": "HGL", + "codeIso2Country": "DE", + "geonameId": 3208547, + "latitudeCity": 54.186943, + "longitudeCity": 7.916667, + "nameCity": "Helgoland", + "timezone": "Europe/Berlin" + }, + { + "GMT": "7", + "cityId": 2815, + "codeIataCity": "HGN", + "codeIso2Country": "TH", + "geonameId": 1152222, + "latitudeCity": 19.29968, + "longitudeCity": 97.97523, + "nameCity": "Mae Hong Son", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "0", + "cityId": 2816, + "codeIataCity": "HGO", + "codeIso2Country": "CI", + "geonameId": 2286304, + "latitudeCity": 9.413889, + "longitudeCity": -5.616667, + "nameCity": "Korhogo", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "-5", + "cityId": 2817, + "codeIataCity": "HGR", + "codeIso2Country": "US", + "geonameId": 4357141, + "latitudeCity": 39.70778, + "longitudeCity": -77.73, + "nameCity": "Hagerstown", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "cityId": 2818, + "codeIataCity": "HGT", + "codeIso2Country": "US", + "geonameId": 5361153, + "latitudeCity": 35.966667, + "longitudeCity": -121.15, + "nameCity": "Jolon", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 2819, + "codeIataCity": "HGU", + "codeIso2Country": "PG", + "geonameId": 2090409, + "latitudeCity": -5.828767, + "longitudeCity": 144.29738, + "nameCity": "Mount Hagen", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 2820, + "codeIataCity": "HGZ", + "codeIso2Country": "US", + "geonameId": 5864076, + "latitudeCity": 66.191666, + "longitudeCity": -155.66888, + "nameCity": "Hogatza", + "timezone": "America/Anchorage" + }, + { + "GMT": "9", + "cityId": 2821, + "codeIataCity": "HHE", + "codeIso2Country": "JP", + "geonameId": 0, + "latitudeCity": 40.549168, + "longitudeCity": 141.47084, + "nameCity": "Hachinohe", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "cityId": 2822, + "codeIataCity": "HHH", + "codeIso2Country": "US", + "geonameId": 4581833, + "latitudeCity": 32.216667, + "longitudeCity": -80.683334, + "nameCity": "Hilton Head", + "timezone": "America/New_York" + }, + { + "GMT": "-10", + "cityId": 2823, + "codeIataCity": "HHI", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 21.5, + "longitudeCity": -158.03334, + "nameCity": "Wahiawa", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "7", + "cityId": 2824, + "codeIataCity": "HHQ", + "codeIso2Country": "TH", + "geonameId": 1153269, + "latitudeCity": 12.6274, + "longitudeCity": 99.95145, + "nameCity": "Hua Hin", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-8", + "cityId": 2825, + "codeIataCity": "HHR", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 33.926945, + "longitudeCity": -118.33639, + "nameCity": "Hawthorne", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-10", + "cityId": 2826, + "codeIataCity": "HHZ", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -17.533333, + "longitudeCity": -142.53334, + "nameCity": "Hikueru", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "8", + "cityId": 2827, + "codeIataCity": "HIA", + "codeIso2Country": "CN", + "geonameId": 1797873, + "latitudeCity": 33.7875, + "longitudeCity": 119.12778, + "nameCity": "Huai'an", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "cityId": 2828, + "codeIataCity": "HIB", + "codeIso2Country": "US", + "geonameId": 5030005, + "latitudeCity": 47.38861, + "longitudeCity": -92.83861, + "nameCity": "Chisholm", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 2829, + "codeIataCity": "HID", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -10.583333, + "longitudeCity": 142.28334, + "nameCity": "Horn Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 2830, + "codeIataCity": "HIE", + "codeIso2Country": "US", + "geonameId": 5094647, + "latitudeCity": 44.365833, + "longitudeCity": -71.548615, + "nameCity": "Whitefield", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 2831, + "codeIataCity": "HIG", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -16.416668, + "longitudeCity": 143.15, + "nameCity": "Highbury", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 2832, + "codeIataCity": "HIH", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -20.166668, + "longitudeCity": 148.95, + "nameCity": "Hook Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-7", + "cityId": 2833, + "codeIataCity": "HII", + "codeIso2Country": "US", + "geonameId": 5301388, + "latitudeCity": 34.568333, + "longitudeCity": -114.35528, + "nameCity": "Lake Havasu City", + "timezone": "America/Phoenix" + }, + { + "GMT": "9", + "cityId": 2834, + "codeIataCity": "HIJ", + "codeIso2Country": "JP", + "geonameId": 1862415, + "latitudeCity": 34.385203, + "longitudeCity": 132.455293, + "nameCity": "Hiroshima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "3", + "cityId": 2835, + "codeIataCity": "HIL", + "codeIso2Country": "ET", + "geonameId": 328553, + "latitudeCity": 6.083333, + "longitudeCity": 44.766666, + "nameCity": "Shillavo", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "5.30", + "cityId": 2836, + "codeIataCity": "HIM", + "codeIso2Country": "LK", + "geonameId": 1244108, + "latitudeCity": 8.05, + "longitudeCity": 80.97111, + "nameCity": "Hingurakgoda", + "timezone": "Asia/Colombo" + }, + { + "GMT": "9", + "cityId": 2837, + "codeIataCity": "HIN", + "codeIso2Country": "KR", + "geonameId": 1838524, + "latitudeCity": 35.09263, + "longitudeCity": 128.08676, + "nameCity": "Jinju", + "timezone": "Asia/Seoul" + }, + { + "GMT": "-8", + "cityId": 2838, + "codeIataCity": "HIO", + "codeIso2Country": "US", + "geonameId": 5731371, + "latitudeCity": 45.516666, + "longitudeCity": -122.98333, + "nameCity": "Hillsboro", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 2839, + "codeIataCity": "HIP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -21.316668, + "longitudeCity": 138.28334, + "nameCity": "Headingly", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "11", + "cityId": 2840, + "codeIataCity": "HIR", + "codeIso2Country": "SB", + "geonameId": 2108502, + "latitudeCity": -9.428592, + "longitudeCity": 160.04819, + "nameCity": "Honiara", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "10", + "cityId": 2841, + "codeIataCity": "HIS", + "codeIso2Country": "AU", + "geonameId": 6354937, + "latitudeCity": -20.066668, + "longitudeCity": 148.86667, + "nameCity": "Hayman Island", + "timezone": "Australia/Lindeman" + }, + { + "GMT": "10", + "cityId": 2842, + "codeIataCity": "HIT", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.933333, + "longitudeCity": 143.06667, + "nameCity": "Hivaro", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 2843, + "codeIataCity": "HJJ", + "codeIso2Country": "CN", + "geonameId": 7304020, + "latitudeCity": 27.44139, + "longitudeCity": 109.69972, + "nameCity": "Zhi Jiang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "5.30", + "cityId": 2844, + "codeIataCity": "HJR", + "codeIso2Country": "IN", + "geonameId": 1267154, + "latitudeCity": 24.818747, + "longitudeCity": 79.91642, + "nameCity": "Khajuraho", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "8", + "cityId": 2845, + "codeIataCity": "HJT", + "codeIso2Country": "MN", + "geonameId": 0, + "latitudeCity": 46.9, + "longitudeCity": 102.76667, + "nameCity": "Khujirt", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "-9", + "cityId": 2846, + "codeIataCity": "HKB", + "codeIso2Country": "US", + "geonameId": 5868582, + "latitudeCity": 63.86667, + "longitudeCity": -148.96666, + "nameCity": "Healy Lake", + "timezone": "America/Anchorage" + }, + { + "GMT": "9", + "cityId": 2847, + "codeIataCity": "HKD", + "codeIso2Country": "JP", + "geonameId": 2130188, + "latitudeCity": 41.776127, + "longitudeCity": 140.81581, + "nameCity": "Hakodate", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "8", + "cityId": 2848, + "codeIataCity": "HKG", + "codeIso2Country": "HK", + "geonameId": 1819729, + "latitudeCity": 22.24786, + "longitudeCity": 114.203384, + "nameCity": "Hong Kong", + "timezone": "Asia/Hong_Kong" + }, + { + "GMT": "12", + "cityId": 2849, + "codeIataCity": "HKK", + "codeIso2Country": "NZ", + "geonameId": 2206894, + "latitudeCity": -42.714912, + "longitudeCity": 170.98346, + "nameCity": "Hokitika", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "10", + "cityId": 2850, + "codeIataCity": "HKN", + "codeIso2Country": "PG", + "geonameId": 2096037, + "latitudeCity": -5.456876, + "longitudeCity": 150.403, + "nameCity": "Hoskins", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "7", + "cityId": 2851, + "codeIataCity": "HKT", + "codeIso2Country": "TH", + "geonameId": 1151254, + "latitudeCity": 8.107619, + "longitudeCity": 98.306435, + "nameCity": "Phuket", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "2", + "cityId": 2852, + "codeIataCity": "HKV", + "codeIso2Country": "BG", + "geonameId": 730435, + "latitudeCity": 41.933334, + "longitudeCity": 25.55, + "nameCity": "Haskovo", + "timezone": "Europe/Sofia" + }, + { + "GMT": "-5", + "cityId": 2853, + "codeIataCity": "HKY", + "codeIso2Country": "US", + "geonameId": 4470778, + "latitudeCity": 35.73861, + "longitudeCity": -81.39167, + "nameCity": "Hickory", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 2854, + "codeIataCity": "HLB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.3, + "longitudeCity": -85.21667, + "nameCity": "Batesville", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-6", + "cityId": 2855, + "codeIataCity": "HLC", + "codeIso2Country": "US", + "geonameId": 4272782, + "latitudeCity": 39.36667, + "longitudeCity": -99.85, + "nameCity": "Hill City", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 2856, + "codeIataCity": "HLD", + "codeIso2Country": "CN", + "geonameId": 2037078, + "latitudeCity": 49.209873, + "longitudeCity": 119.80654, + "nameCity": "Hailar", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 2857, + "codeIataCity": "HLF", + "codeIso2Country": "SE", + "geonameId": 2662881, + "latitudeCity": 57.52639, + "longitudeCity": 15.827778, + "nameCity": "Hultsfred", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "cityId": 2858, + "codeIataCity": "HLG", + "codeIso2Country": "US", + "geonameId": 5206379, + "latitudeCity": 40.183334, + "longitudeCity": -80.65, + "nameCity": "Wheeling", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 2859, + "codeIataCity": "HLH", + "codeIso2Country": "CN", + "geonameId": 2034312, + "latitudeCity": 46.19349, + "longitudeCity": 122.00148, + "nameCity": "Ulanhot", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-8", + "cityId": 2860, + "codeIataCity": "HLI", + "codeIso2Country": "US", + "geonameId": 5357499, + "latitudeCity": 36.85, + "longitudeCity": -121.4, + "nameCity": "Hollister", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "cityId": 2861, + "codeIataCity": "HLL", + "codeIso2Country": "AU", + "geonameId": 2059811, + "latitudeCity": -21.783333, + "longitudeCity": 119.333336, + "nameCity": "Hillside", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "cityId": 2862, + "codeIataCity": "HLM", + "codeIso2Country": "US", + "geonameId": 4996248, + "latitudeCity": 42.783333, + "longitudeCity": -86.11667, + "nameCity": "Holland", + "timezone": "America/Detroit" + }, + { + "GMT": "-7", + "cityId": 2863, + "codeIataCity": "HLN", + "codeIso2Country": "US", + "geonameId": 5656882, + "latitudeCity": 46.61052, + "longitudeCity": -111.99018, + "nameCity": "Helena", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "cityId": 2864, + "codeIataCity": "HLS", + "codeIso2Country": "AU", + "geonameId": 2150679, + "latitudeCity": -41.266666, + "longitudeCity": 148.25, + "nameCity": "St Helens", + "timezone": "Australia/Hobart" + }, + { + "GMT": "10", + "cityId": 2865, + "codeIataCity": "HLT", + "codeIso2Country": "AU", + "geonameId": 2144528, + "latitudeCity": -37.65, + "longitudeCity": 142.06056, + "nameCity": "Hamilton", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "11", + "cityId": 2866, + "codeIataCity": "HLU", + "codeIso2Country": "NC", + "geonameId": 0, + "latitudeCity": -21.033333, + "longitudeCity": 166.06667, + "nameCity": "Houailou", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "10", + "cityId": 2867, + "codeIataCity": "HLV", + "codeIso2Country": "AU", + "geonameId": 2152681, + "latitudeCity": -15.683333, + "longitudeCity": 145.2, + "nameCity": "Helenvale", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "cityId": 2868, + "codeIataCity": "HLW", + "codeIso2Country": "ZA", + "geonameId": 996256, + "latitudeCity": -28.016666, + "longitudeCity": 32.25, + "nameCity": "Hluhluwe", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "0", + "cityId": 2869, + "codeIataCity": "HLY", + "codeIso2Country": "GB", + "geonameId": 2646686, + "latitudeCity": 53.3, + "longitudeCity": -4.633333, + "nameCity": "Holyhead", + "timezone": "Europe/London" + }, + { + "GMT": "12", + "cityId": 2870, + "codeIataCity": "HLZ", + "codeIso2Country": "NZ", + "geonameId": 2190324, + "latitudeCity": -37.86622, + "longitudeCity": 175.33603, + "nameCity": "Hamilton", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "5", + "cityId": 2871, + "codeIataCity": "HMA", + "codeIso2Country": "RU", + "geonameId": 1503772, + "latitudeCity": 61.02613, + "longitudeCity": 69.09714, + "nameCity": "Khanty-Mansiysk", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "2", + "cityId": 2872, + "codeIataCity": "HMB", + "codeIso2Country": "EG", + "geonameId": 0, + "latitudeCity": 26.338877, + "longitudeCity": 31.737167, + "nameCity": "Sohag", + "timezone": "Africa/Cairo" + }, + { + "GMT": "1", + "cityId": 2873, + "codeIataCity": "HME", + "codeIso2Country": "DZ", + "geonameId": 2494029, + "latitudeCity": 31.675303, + "longitudeCity": 6.145436, + "nameCity": "Hassi Messaoud", + "timezone": "Africa/Algiers" + }, + { + "GMT": "9.30", + "cityId": 2874, + "codeIataCity": "HMG", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -23.95, + "longitudeCity": 132.75, + "nameCity": "Hermannsburg", + "timezone": "Australia/Darwin" + }, + { + "GMT": "8", + "cityId": 2875, + "codeIataCity": "HMI", + "codeIso2Country": "CN", + "geonameId": 1529484, + "latitudeCity": 42.916668, + "longitudeCity": 93.416664, + "nameCity": "Hami", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "cityId": 2876, + "codeIataCity": "HMJ", + "codeIso2Country": "UA", + "geonameId": 706950, + "latitudeCity": 49.416668, + "longitudeCity": 27.0, + "nameCity": "Khmelnitskiy", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-7", + "cityId": 2877, + "codeIataCity": "HMO", + "codeIso2Country": "MX", + "geonameId": 4004898, + "latitudeCity": 29.089905, + "longitudeCity": -111.051704, + "nameCity": "Hermosillo", + "timezone": "America/Hermosillo" + }, + { + "GMT": "1", + "cityId": 2878, + "codeIataCity": "HMR", + "codeIso2Country": "NO", + "geonameId": 3154084, + "latitudeCity": 60.8, + "longitudeCity": 11.116667, + "nameCity": "Hamar", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-9", + "cityId": 2879, + "codeIataCity": "HMS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 58.294445, + "longitudeCity": -135.34723, + "nameCity": "Homeshore", + "timezone": "America/Juneau" + }, + { + "GMT": "-8", + "cityId": 2880, + "codeIataCity": "HMT", + "codeIso2Country": "US", + "geonameId": 5323810, + "latitudeCity": 33.733334, + "longitudeCity": -117.025, + "nameCity": "Hemet", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 2881, + "codeIataCity": "HMV", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 65.727776, + "longitudeCity": 15.273056, + "nameCity": "Hemavan", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "9", + "cityId": 2882, + "codeIataCity": "HNA", + "codeIso2Country": "JP", + "geonameId": 2112823, + "latitudeCity": 39.426926, + "longitudeCity": 141.13077, + "nameCity": "Hanamaki", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "cityId": 2883, + "codeIataCity": "HNB", + "codeIso2Country": "US", + "geonameId": 4259271, + "latitudeCity": 38.3, + "longitudeCity": -86.95, + "nameCity": "Huntingburg", + "timezone": "America/Indiana/Vincennes" + }, + { + "GMT": "-5", + "cityId": 2884, + "codeIataCity": "HNC", + "codeIso2Country": "US", + "geonameId": 4470225, + "latitudeCity": 35.216667, + "longitudeCity": -75.7, + "nameCity": "Hatteras", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 2885, + "codeIataCity": "HNE", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 61.88333, + "longitudeCity": -147.33333, + "nameCity": "Tahneta Pass Lodge", + "timezone": "America/Anchorage" + }, + { + "GMT": "11", + "cityId": 2886, + "codeIataCity": "HNG", + "codeIso2Country": "NC", + "geonameId": 0, + "latitudeCity": -20.666668, + "longitudeCity": 164.9, + "nameCity": "Hienghene", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "-9", + "cityId": 2887, + "codeIataCity": "HNH", + "codeIso2Country": "US", + "geonameId": 5847155, + "latitudeCity": 58.098057, + "longitudeCity": -135.40334, + "nameCity": "Hoonah", + "timezone": "America/Juneau" + }, + { + "GMT": "10", + "cityId": 2888, + "codeIataCity": "HNI", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": 22.213057, + "longitudeCity": 159.44695, + "nameCity": "Heiweni", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-10", + "cityId": 2889, + "codeIataCity": "HNL", + "codeIso2Country": "US", + "geonameId": 5856195, + "latitudeCity": 21.306944, + "longitudeCity": -157.858333, + "nameCity": "Honolulu", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "-10", + "cityId": 2890, + "codeIataCity": "HNM", + "codeIso2Country": "US", + "geonameId": 5849297, + "latitudeCity": 20.795834, + "longitudeCity": -156.01889, + "nameCity": "Hana", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "10", + "cityId": 2891, + "codeIataCity": "HNN", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.133333, + "longitudeCity": 142.23334, + "nameCity": "Honinabi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 2892, + "codeIataCity": "HNS", + "codeIso2Country": "US", + "geonameId": 5846871, + "latitudeCity": 59.245834, + "longitudeCity": -135.51889, + "nameCity": "Haines", + "timezone": "America/Juneau" + }, + { + "GMT": "-7", + "cityId": 2893, + "codeIataCity": "HNX", + "codeIso2Country": "US", + "geonameId": 5836068, + "latitudeCity": 41.833332, + "longitudeCity": -106.5, + "nameCity": "Hanna", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "cityId": 2894, + "codeIataCity": "HNY", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 26.85, + "longitudeCity": 112.5, + "nameCity": "Hengyang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "cityId": 2895, + "codeIataCity": "HOA", + "codeIso2Country": "KE", + "geonameId": 196752, + "latitudeCity": -1.0, + "longitudeCity": 40.0, + "nameCity": "Hola", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-7", + "cityId": 2896, + "codeIataCity": "HOB", + "codeIso2Country": "US", + "geonameId": 5471578, + "latitudeCity": 32.702612, + "longitudeCity": -103.13604, + "nameCity": "Hobbs", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "cityId": 2897, + "codeIataCity": "HOC", + "codeIso2Country": "PG", + "geonameId": 2093634, + "latitudeCity": -7.416667, + "longitudeCity": 145.88333, + "nameCity": "Komako", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 2898, + "codeIataCity": "HOD", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 14.755638, + "longitudeCity": 42.970478, + "nameCity": "Hodeidah", + "timezone": "Asia/Aden" + }, + { + "GMT": "7", + "cityId": 2899, + "codeIataCity": "HOE", + "codeIso2Country": "LA", + "geonameId": 0, + "latitudeCity": 20.5, + "longitudeCity": 103.75, + "nameCity": "Houeisay", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "3", + "cityId": 2900, + "codeIataCity": "HOF", + "codeIso2Country": "SA", + "geonameId": 109571, + "latitudeCity": 25.294783, + "longitudeCity": 49.48746, + "nameCity": "Alahsa", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-5", + "cityId": 2901, + "codeIataCity": "HOG", + "codeIso2Country": "CU", + "geonameId": 3564653, + "latitudeCity": 20.785278, + "longitudeCity": -76.315, + "nameCity": "Holguin", + "timezone": "America/Havana" + }, + { + "GMT": "1", + "cityId": 2902, + "codeIataCity": "HOH", + "codeIso2Country": "AT", + "geonameId": 2780741, + "latitudeCity": 47.36081, + "longitudeCity": 9.68671, + "nameCity": "Hohenems", + "timezone": "Europe/Vienna" + }, + { + "GMT": "-10", + "cityId": 2903, + "codeIataCity": "HOI", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -18.06248, + "longitudeCity": -140.96529, + "nameCity": "Hao Island", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "9.30", + "cityId": 2904, + "codeIataCity": "HOK", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.335, + "longitudeCity": 130.6325, + "nameCity": "Hooker Creek", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-9", + "cityId": 2905, + "codeIataCity": "HOL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 62.86667, + "longitudeCity": -159.65, + "nameCity": "Holikachu", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 2906, + "codeIataCity": "HOM", + "codeIso2Country": "US", + "geonameId": 5864145, + "latitudeCity": 59.64324, + "longitudeCity": -151.49316, + "nameCity": "Homer", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 2907, + "codeIataCity": "HON", + "codeIso2Country": "US", + "geonameId": 5228673, + "latitudeCity": 44.38361, + "longitudeCity": -98.22639, + "nameCity": "Huron", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "cityId": 2908, + "codeIataCity": "HOO", + "codeIso2Country": "VN", + "geonameId": 1584071, + "latitudeCity": 12.009722, + "longitudeCity": 107.68806, + "nameCity": "Quanduc", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-6", + "cityId": 2909, + "codeIataCity": "HOP", + "codeIso2Country": "US", + "geonameId": 4644585, + "latitudeCity": 36.86667, + "longitudeCity": -87.48333, + "nameCity": "Hopkinsville", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 2910, + "codeIataCity": "HOQ", + "codeIso2Country": "DE", + "geonameId": 2902768, + "latitudeCity": 50.289165, + "longitudeCity": 11.862222, + "nameCity": "Hof", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-1", + "cityId": 2911, + "codeIataCity": "HOR", + "codeIso2Country": "PT", + "geonameId": 3372988, + "latitudeCity": 38.52, + "longitudeCity": -28.717222, + "nameCity": "Horta", + "timezone": "Atlantic/Azores" + }, + { + "GMT": "-3", + "cityId": 2912, + "codeIataCity": "HOS", + "codeIso2Country": "AR", + "geonameId": 3861262, + "latitudeCity": -37.416668, + "longitudeCity": -70.21667, + "nameCity": "Chos Malal", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-6", + "cityId": 2913, + "codeIataCity": "HOT", + "codeIso2Country": "US", + "geonameId": 4115412, + "latitudeCity": 34.47889, + "longitudeCity": -93.09611, + "nameCity": "Hot Springs", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 2914, + "codeIataCity": "HOU", + "codeIso2Country": "US", + "geonameId": 4699066, + "latitudeCity": 29.762778, + "longitudeCity": -95.383056, + "nameCity": "Houston", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 2915, + "codeIataCity": "HOV", + "codeIso2Country": "NO", + "geonameId": 3336588, + "latitudeCity": 62.179787, + "longitudeCity": 6.078802, + "nameCity": "Orsta-Volda", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "cityId": 2916, + "codeIataCity": "HOW", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Fort Kobbe", + "timezone": "America/Panama" + }, + { + "GMT": "6.30", + "cityId": 2917, + "codeIataCity": "HOX", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 24.866667, + "longitudeCity": 94.916664, + "nameCity": "Homalin", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "0", + "cityId": 2918, + "codeIataCity": "HOY", + "codeIso2Country": "GB", + "geonameId": 2635881, + "latitudeCity": 58.833332, + "longitudeCity": -3.3, + "nameCity": "Hoy Island", + "timezone": "Europe/London" + }, + { + "GMT": "13", + "cityId": 2919, + "codeIataCity": "HPA", + "codeIso2Country": "TO", + "geonameId": 0, + "latitudeCity": -19.778538, + "longitudeCity": -174.34088, + "nameCity": "Ha'Apai", + "timezone": "Pacific/Tongatapu" + }, + { + "GMT": "-9", + "cityId": 2920, + "codeIataCity": "HPB", + "codeIso2Country": "US", + "geonameId": 5864197, + "latitudeCity": 61.525078, + "longitudeCity": -166.14586, + "nameCity": "Hooper Bay", + "timezone": "America/Nome" + }, + { + "GMT": "10", + "cityId": 2921, + "codeIataCity": "HPE", + "codeIso2Country": "AU", + "geonameId": 8219775, + "latitudeCity": -14.666667, + "longitudeCity": 144.91667, + "nameCity": "Hope Vale", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "7", + "cityId": 2922, + "codeIataCity": "HPH", + "codeIso2Country": "VN", + "geonameId": 1581298, + "latitudeCity": 20.823315, + "longitudeCity": 106.727325, + "nameCity": "Haiphong", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-5", + "cityId": 2923, + "codeIataCity": "HPN", + "codeIso2Country": "US", + "geonameId": 5144336, + "latitudeCity": 41.068672, + "longitudeCity": -73.70389, + "nameCity": "Westchester County", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 2924, + "codeIataCity": "HPT", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.75, + "longitudeCity": -93.2, + "nameCity": "Hampton", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 2925, + "codeIataCity": "HPY", + "codeIso2Country": "US", + "geonameId": 4699066, + "latitudeCity": 29.733334, + "longitudeCity": -94.96667, + "nameCity": "Baytown", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 2926, + "codeIataCity": "HQM", + "codeIso2Country": "US", + "geonameId": 5797693, + "latitudeCity": 46.97111, + "longitudeCity": -123.935555, + "nameCity": "Hoquiam", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "5", + "cityId": 2927, + "codeIataCity": "HRA", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 34.333332, + "longitudeCity": 73.2, + "nameCity": "Mansehra", + "timezone": "Asia/Karachi" + }, + { + "GMT": "8", + "cityId": 2928, + "codeIataCity": "HRB", + "codeIso2Country": "CN", + "geonameId": 2037013, + "latitudeCity": 45.620853, + "longitudeCity": 126.23644, + "nameCity": "Harbin", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "6", + "cityId": 2929, + "codeIataCity": "HRC", + "codeIso2Country": "KZ", + "geonameId": 0, + "latitudeCity": 48.466667, + "longitudeCity": 70.46667, + "nameCity": "Zhairem", + "timezone": "Asia/Almaty" + }, + { + "GMT": "2", + "cityId": 2930, + "codeIataCity": "HRE", + "codeIso2Country": "ZW", + "geonameId": 890299, + "latitudeCity": -17.91863, + "longitudeCity": 31.099249, + "nameCity": "Harare", + "timezone": "Africa/Harare" + }, + { + "GMT": "2", + "cityId": 2931, + "codeIataCity": "HRG", + "codeIso2Country": "EG", + "geonameId": 361291, + "latitudeCity": 27.189156, + "longitudeCity": 33.8055, + "nameCity": "Hurghada", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-8", + "cityId": 2932, + "codeIataCity": "HRI", + "codeIso2Country": "LK", + "geonameId": 5745380, + "latitudeCity": 27.911552, + "longitudeCity": 45.522972, + "nameCity": "Hambantota", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "5.45", + "cityId": 2933, + "codeIataCity": "HRJ", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 28.0, + "longitudeCity": 82.333336, + "nameCity": "Chaurjhari", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "2", + "cityId": 2934, + "codeIataCity": "HRK", + "codeIso2Country": "UA", + "geonameId": 706483, + "latitudeCity": 49.92078, + "longitudeCity": 36.281185, + "nameCity": "Kharkov", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-6", + "cityId": 2935, + "codeIataCity": "HRL", + "codeIso2Country": "US", + "geonameId": 4696233, + "latitudeCity": 26.223482, + "longitudeCity": -97.662254, + "nameCity": "Harlingen", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 2936, + "codeIataCity": "HRM", + "codeIso2Country": "DZ", + "geonameId": 0, + "latitudeCity": 33.166668, + "longitudeCity": 3.2, + "nameCity": "Hassi R'mel", + "timezone": "Africa/Algiers" + }, + { + "GMT": "10", + "cityId": 2937, + "codeIataCity": "HRN", + "codeIso2Country": "AU", + "geonameId": 6354955, + "latitudeCity": -23.433332, + "longitudeCity": 151.91667, + "nameCity": "Heron Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "cityId": 2938, + "codeIataCity": "HRO", + "codeIso2Country": "US", + "geonameId": 4113956, + "latitudeCity": 36.261665, + "longitudeCity": -93.155556, + "nameCity": "Harrison", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 2939, + "codeIataCity": "HRR", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 3.216667, + "longitudeCity": -75.85, + "nameCity": "Herrera", + "timezone": "America/Bogota" + }, + { + "GMT": "2", + "cityId": 2940, + "codeIataCity": "HRS", + "codeIso2Country": "ZA", + "geonameId": 997751, + "latitudeCity": -26.233334, + "longitudeCity": 29.1, + "nameCity": "Harrismith", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "0", + "cityId": 2941, + "codeIataCity": "HRT", + "codeIso2Country": "GB", + "geonameId": 2633352, + "latitudeCity": 54.0, + "longitudeCity": -1.55, + "nameCity": "Harrogate", + "timezone": "Europe/London" + }, + { + "GMT": "9.30", + "cityId": 2942, + "codeIataCity": "HRY", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -24.583332, + "longitudeCity": 133.25, + "nameCity": "Henbury", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-3", + "cityId": 2943, + "codeIataCity": "HRZ", + "codeIso2Country": "BR", + "geonameId": 3461659, + "latitudeCity": -27.638332, + "longitudeCity": -54.340557, + "nameCity": "Horizontina", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "cityId": 2944, + "codeIataCity": "HSB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 37.733334, + "longitudeCity": -88.53333, + "nameCity": "Harrisburg", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 2945, + "codeIataCity": "HSC", + "codeIso2Country": "CN", + "geonameId": 1795874, + "latitudeCity": 24.833332, + "longitudeCity": 113.61667, + "nameCity": "Shaoguan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9", + "cityId": 2946, + "codeIataCity": "HSG", + "codeIso2Country": "JP", + "geonameId": 1863967, + "latitudeCity": 33.153828, + "longitudeCity": 130.30278, + "nameCity": "Saga", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-6", + "cityId": 2947, + "codeIataCity": "HSI", + "codeIso2Country": "US", + "geonameId": 5069297, + "latitudeCity": 40.605556, + "longitudeCity": -98.42694, + "nameCity": "Hastings", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 2948, + "codeIataCity": "HSK", + "codeIso2Country": "ES", + "geonameId": 3120514, + "latitudeCity": 42.140102, + "longitudeCity": -0.408898, + "nameCity": "Huesca", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-9", + "cityId": 2949, + "codeIataCity": "HSL", + "codeIso2Country": "US", + "geonameId": 5864431, + "latitudeCity": 65.7025, + "longitudeCity": -156.375, + "nameCity": "Huslia", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 2950, + "codeIataCity": "HSM", + "codeIso2Country": "AU", + "geonameId": 2163055, + "latitudeCity": -36.666668, + "longitudeCity": 142.16667, + "nameCity": "Horsham", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "8", + "cityId": 2951, + "codeIataCity": "HSN", + "codeIso2Country": "CN", + "geonameId": 1799397, + "latitudeCity": 29.935259, + "longitudeCity": 122.35691, + "nameCity": "Zhoushan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 2952, + "codeIataCity": "HSP", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 37.950558, + "longitudeCity": -79.833885, + "nameCity": "Hot Springs", + "timezone": "America/New_York" + }, + { + "GMT": "5.30", + "cityId": 2953, + "codeIataCity": "HSS", + "codeIso2Country": "IN", + "geonameId": 1270022, + "latitudeCity": 29.166668, + "longitudeCity": 75.8, + "nameCity": "Hissar", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "cityId": 2954, + "codeIataCity": "HST", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 25.483334, + "longitudeCity": -80.48333, + "nameCity": "Homestead", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 2955, + "codeIataCity": "HSV", + "codeIso2Country": "US", + "geonameId": 4068590, + "latitudeCity": 34.730369, + "longitudeCity": -86.586104, + "nameCity": "Huntsville", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 2956, + "codeIataCity": "HSZ", + "codeIso2Country": "TW", + "geonameId": 1668341, + "latitudeCity": 24.816668, + "longitudeCity": 120.933334, + "nameCity": "Hsinchu", + "timezone": "Asia/Taipei" + }, + { + "GMT": "9", + "cityId": 2957, + "codeIataCity": "HTA", + "codeIso2Country": "RU", + "geonameId": 2025339, + "latitudeCity": 52.033333, + "longitudeCity": 113.3, + "nameCity": "Chita", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "-4", + "cityId": 2958, + "codeIataCity": "HTB", + "codeIso2Country": "GP", + "geonameId": 3578351, + "latitudeCity": 15.716667, + "longitudeCity": -61.63333, + "nameCity": "Terre-de-Bas", + "timezone": "America/Guadeloupe" + }, + { + "GMT": "7", + "cityId": 2959, + "codeIataCity": "HTG", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 71.96667, + "longitudeCity": 102.5, + "nameCity": "Hatanga", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "-8", + "cityId": 2960, + "codeIataCity": "HTH", + "codeIso2Country": "US", + "geonameId": 5330736, + "latitudeCity": 38.533333, + "longitudeCity": -118.63333, + "nameCity": "Hawthorne", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 2961, + "codeIataCity": "HTI", + "codeIso2Country": "AU", + "geonameId": 8310714, + "latitudeCity": -20.35175, + "longitudeCity": 148.94847, + "nameCity": "Hamilton Island", + "timezone": "Australia/Lindeman" + }, + { + "GMT": "-5", + "cityId": 2962, + "codeIataCity": "HTL", + "codeIso2Country": "US", + "geonameId": 4996580, + "latitudeCity": 44.448055, + "longitudeCity": -84.71111, + "nameCity": "Houghton", + "timezone": "America/Detroit" + }, + { + "GMT": "8", + "cityId": 2963, + "codeIataCity": "HTM", + "codeIso2Country": "MN", + "geonameId": 0, + "latitudeCity": 50.45, + "longitudeCity": 100.166664, + "nameCity": "Khatgal", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "8", + "cityId": 2964, + "codeIataCity": "HTN", + "codeIso2Country": "CN", + "geonameId": 1281019, + "latitudeCity": 37.040436, + "longitudeCity": 79.87245, + "nameCity": "Hotan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 2965, + "codeIataCity": "HTO", + "codeIso2Country": "US", + "geonameId": 5115871, + "latitudeCity": 40.959442, + "longitudeCity": -72.25166, + "nameCity": "East Hampton", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "cityId": 2966, + "codeIataCity": "HTR", + "codeIso2Country": "JP", + "geonameId": 1850822, + "latitudeCity": 24.05, + "longitudeCity": 123.8, + "nameCity": "Hateruma", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "cityId": 2967, + "codeIataCity": "HTS", + "codeIso2Country": "US", + "geonameId": 4809537, + "latitudeCity": 38.366943, + "longitudeCity": -82.556114, + "nameCity": "Huntington", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 2968, + "codeIataCity": "HTU", + "codeIso2Country": "AU", + "geonameId": 2142781, + "latitudeCity": -35.7, + "longitudeCity": 142.36667, + "nameCity": "Hopetoun", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-6", + "cityId": 2969, + "codeIataCity": "HTV", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 30.716667, + "longitudeCity": -95.55, + "nameCity": "Huntsville", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 2970, + "codeIataCity": "HTW", + "codeIso2Country": "US", + "geonameId": 4287192, + "latitudeCity": 36.833332, + "longitudeCity": -76.28333, + "nameCity": "Huntington", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 2971, + "codeIataCity": "HTY", + "codeIso2Country": "TR", + "geonameId": 323779, + "latitudeCity": 36.364544, + "longitudeCity": 36.28057, + "nameCity": "Hatay", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-5", + "cityId": 2972, + "codeIataCity": "HTZ", + "codeIso2Country": "CO", + "geonameId": 3829804, + "latitudeCity": 6.033333, + "longitudeCity": -72.63333, + "nameCity": "Hato Corozal", + "timezone": "America/Bogota" + }, + { + "GMT": "9.30", + "cityId": 2973, + "codeIataCity": "HUB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -16.5, + "longitudeCity": 130.75, + "nameCity": "Humbert River", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-4", + "cityId": 2974, + "codeIataCity": "HUC", + "codeIso2Country": "PR", + "geonameId": 4565564, + "latitudeCity": 18.15, + "longitudeCity": -65.83, + "nameCity": "Humacao", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "-6", + "cityId": 2975, + "codeIataCity": "HUD", + "codeIso2Country": "US", + "geonameId": 4846834, + "latitudeCity": 42.733334, + "longitudeCity": -94.21667, + "nameCity": "Humboldt", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 2976, + "codeIataCity": "HUE", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 14.25, + "longitudeCity": 36.583332, + "nameCity": "Humera", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-5", + "cityId": 2977, + "codeIataCity": "HUF", + "codeIso2Country": "US", + "geonameId": 4265737, + "latitudeCity": 39.454445, + "longitudeCity": -87.3075, + "nameCity": "Terre Haute", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-6", + "cityId": 2978, + "codeIataCity": "HUG", + "codeIso2Country": "GT", + "geonameId": 3591750, + "latitudeCity": 15.333333, + "longitudeCity": -91.46667, + "nameCity": "Huehuetenango", + "timezone": "America/Guatemala" + }, + { + "GMT": "-10", + "cityId": 2979, + "codeIataCity": "HUH", + "codeIso2Country": "PF", + "geonameId": 4034376, + "latitudeCity": -16.689682, + "longitudeCity": -151.02826, + "nameCity": "Huahine", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "7", + "cityId": 2980, + "codeIataCity": "HUI", + "codeIso2Country": "VN", + "geonameId": 1580240, + "latitudeCity": 16.398224, + "longitudeCity": 107.700874, + "nameCity": "Hue", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-6", + "cityId": 2981, + "codeIataCity": "HUJ", + "codeIso2Country": "US", + "geonameId": 4685892, + "latitudeCity": 34.016666, + "longitudeCity": -95.51667, + "nameCity": "Hugo", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 2982, + "codeIataCity": "HUK", + "codeIso2Country": "BW", + "geonameId": 0, + "latitudeCity": -23.983334, + "longitudeCity": 21.75, + "nameCity": "Hukuntsi", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "-5", + "cityId": 2983, + "codeIataCity": "HUL", + "codeIso2Country": "US", + "geonameId": 4972220, + "latitudeCity": 46.13333, + "longitudeCity": -67.8, + "nameCity": "Houlton", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 2984, + "codeIataCity": "HUM", + "codeIso2Country": "US", + "geonameId": 4328010, + "latitudeCity": 29.566944, + "longitudeCity": -90.660835, + "nameCity": "Houma", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 2985, + "codeIataCity": "HUN", + "codeIso2Country": "TW", + "geonameId": 1674504, + "latitudeCity": 24.025764, + "longitudeCity": 121.613434, + "nameCity": "Hualien", + "timezone": "Asia/Taipei" + }, + { + "GMT": "2", + "cityId": 2986, + "codeIataCity": "HUQ", + "codeIso2Country": "LY", + "geonameId": 0, + "latitudeCity": 29.5, + "longitudeCity": 15.5, + "nameCity": "Houn", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "-9", + "cityId": 2987, + "codeIataCity": "HUS", + "codeIso2Country": "US", + "geonameId": 5864351, + "latitudeCity": 66.04056, + "longitudeCity": -154.26334, + "nameCity": "Hughes", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 2988, + "codeIataCity": "HUT", + "codeIso2Country": "US", + "geonameId": 4273299, + "latitudeCity": 38.068054, + "longitudeCity": -97.861115, + "nameCity": "Hutchinson", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 2989, + "codeIataCity": "HUU", + "codeIso2Country": "PE", + "geonameId": 0, + "latitudeCity": -9.866667, + "longitudeCity": -76.21667, + "nameCity": "Huanuco", + "timezone": "America/Lima" + }, + { + "GMT": "1", + "cityId": 2990, + "codeIataCity": "HUV", + "codeIso2Country": "SE", + "geonameId": 2704613, + "latitudeCity": 61.733334, + "longitudeCity": 17.116667, + "nameCity": "Hudiksvall", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-4", + "cityId": 2991, + "codeIataCity": "HUW", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": 53.583447, + "longitudeCity": -0.348669, + "nameCity": "Humaita", + "timezone": "America/Manaus" + }, + { + "GMT": "-6", + "cityId": 2992, + "codeIataCity": "HUX", + "codeIso2Country": "MX", + "geonameId": 3517251, + "latitudeCity": 15.768333, + "longitudeCity": -96.23556, + "nameCity": "Huatulco", + "timezone": "America/Mexico_City" + }, + { + "GMT": "0", + "cityId": 2993, + "codeIataCity": "HUY", + "codeIso2Country": "GB", + "geonameId": 2633352, + "latitudeCity": 53.583378, + "longitudeCity": -0.34851, + "nameCity": "Humberside", + "timezone": "Europe/London" + }, + { + "GMT": "8", + "cityId": 2994, + "codeIataCity": "HUZ", + "codeIso2Country": "CN", + "geonameId": 1795565, + "latitudeCity": 23.083332, + "longitudeCity": 114.36667, + "nameCity": "Huizhou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "cityId": 2995, + "codeIataCity": "HVA", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -14.633333, + "longitudeCity": 47.766666, + "nameCity": "Analalava", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "10", + "cityId": 2996, + "codeIataCity": "HVB", + "codeIso2Country": "AU", + "geonameId": 6354957, + "latitudeCity": -25.319868, + "longitudeCity": 152.88521, + "nameCity": "Hervey Bay", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "7", + "cityId": 2997, + "codeIataCity": "HVD", + "codeIso2Country": "MN", + "geonameId": 0, + "latitudeCity": 48.016666, + "longitudeCity": 91.65, + "nameCity": "Khovd", + "timezone": "Asia/Hovd" + }, + { + "GMT": "-7", + "cityId": 2998, + "codeIataCity": "HVE", + "codeIso2Country": "US", + "geonameId": 5542323, + "latitudeCity": 38.36667, + "longitudeCity": -110.71667, + "nameCity": "Hanksville", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 2999, + "codeIataCity": "HVG", + "codeIso2Country": "NO", + "geonameId": 779554, + "latitudeCity": 70.98333, + "longitudeCity": 25.833332, + "nameCity": "Honningsvag", + "timezone": "Europe/Oslo" + }, + { + "GMT": "0", + "cityId": 3000, + "codeIataCity": "HVK", + "codeIso2Country": "IS", + "geonameId": 3415667, + "latitudeCity": 65.7, + "longitudeCity": -22.466667, + "nameCity": "Holmavik", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-5", + "cityId": 3001, + "codeIataCity": "HVN", + "codeIso2Country": "US", + "geonameId": 4839366, + "latitudeCity": 41.308153, + "longitudeCity": -72.928158, + "nameCity": "New Haven", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 3002, + "codeIataCity": "HVR", + "codeIso2Country": "US", + "geonameId": 5656497, + "latitudeCity": 48.544445, + "longitudeCity": -109.76111, + "nameCity": "Havre", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "cityId": 3003, + "codeIataCity": "HVS", + "codeIso2Country": "US", + "geonameId": 4575352, + "latitudeCity": 34.38333, + "longitudeCity": -80.066666, + "nameCity": "Hartsville", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 3004, + "codeIataCity": "HVZ", + "codeIso2Country": "HU", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Heviz", + "timezone": "Europe/Budapest" + }, + { + "GMT": "10", + "cityId": 3005, + "codeIataCity": "HWA", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.433333, + "longitudeCity": 145.96666, + "nameCity": "Hawabango", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "cityId": 3006, + "codeIataCity": "HWD", + "codeIso2Country": "US", + "geonameId": 5391959, + "latitudeCity": 37.666668, + "longitudeCity": -122.083336, + "nameCity": "Hayward", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-9", + "cityId": 3007, + "codeIataCity": "HWI", + "codeIso2Country": "US", + "geonameId": 5847014, + "latitudeCity": 58.11778, + "longitudeCity": -134.75417, + "nameCity": "Hawk Inlet", + "timezone": "America/Juneau" + }, + { + "GMT": "9.30", + "cityId": 3008, + "codeIataCity": "HWK", + "codeIso2Country": "AU", + "geonameId": 2063056, + "latitudeCity": -31.716667, + "longitudeCity": 138.41667, + "nameCity": "Hawker", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "2", + "cityId": 3009, + "codeIataCity": "HWN", + "codeIso2Country": "ZW", + "geonameId": 0, + "latitudeCity": -19.3625, + "longitudeCity": 26.518333, + "nameCity": "Hwange Nat Park", + "timezone": "Africa/Harare" + }, + { + "GMT": "-5", + "cityId": 3010, + "codeIataCity": "HWO", + "codeIso2Country": "US", + "geonameId": 4158928, + "latitudeCity": 26.0, + "longitudeCity": -80.15, + "nameCity": "Hollywood", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 3011, + "codeIataCity": "HXX", + "codeIso2Country": "AU", + "geonameId": 2163774, + "latitudeCity": -34.516666, + "longitudeCity": 144.83333, + "nameCity": "Hay", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-5", + "cityId": 3012, + "codeIataCity": "HYA", + "codeIso2Country": "US", + "geonameId": 4940190, + "latitudeCity": 41.665833, + "longitudeCity": -70.280556, + "nameCity": "Hyannis", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 3013, + "codeIataCity": "HYC", + "codeIso2Country": "GB", + "geonameId": 2646914, + "latitudeCity": 51.61667, + "longitudeCity": -0.75, + "nameCity": "High Wycombe", + "timezone": "Europe/London" + }, + { + "GMT": "5.30", + "cityId": 3014, + "codeIataCity": "HYD", + "codeIso2Country": "IN", + "geonameId": 1269843, + "latitudeCity": 17.385044, + "longitudeCity": 78.486671, + "nameCity": "Hyderabad", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "cityId": 3015, + "codeIataCity": "HYF", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -3.633333, + "longitudeCity": 143.05, + "nameCity": "Hayfields", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 3016, + "codeIataCity": "HYG", + "codeIso2Country": "US", + "geonameId": 5553646, + "latitudeCity": 55.20667, + "longitudeCity": -132.82666, + "nameCity": "Hydaburg", + "timezone": "America/Sitka" + }, + { + "GMT": "-9", + "cityId": 3017, + "codeIataCity": "HYL", + "codeIso2Country": "US", + "geonameId": 5554428, + "latitudeCity": 55.48263, + "longitudeCity": -132.65062, + "nameCity": "Hollis", + "timezone": "America/Sitka" + }, + { + "GMT": "8", + "cityId": 3018, + "codeIataCity": "HYN", + "codeIso2Country": "CN", + "geonameId": 8400694, + "latitudeCity": 28.558096, + "longitudeCity": 121.41675, + "nameCity": "Taizhou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "cityId": 3019, + "codeIataCity": "HYR", + "codeIso2Country": "US", + "geonameId": 5255882, + "latitudeCity": 46.024445, + "longitudeCity": -91.44444, + "nameCity": "Hayward", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 3020, + "codeIataCity": "HYS", + "codeIso2Country": "US", + "geonameId": 4272782, + "latitudeCity": 38.84611, + "longitudeCity": -99.27417, + "nameCity": "Hays", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 3021, + "codeIataCity": "HYV", + "codeIso2Country": "FI", + "geonameId": 658225, + "latitudeCity": 60.654167, + "longitudeCity": 24.884443, + "nameCity": "Hyvinkaa", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "1", + "cityId": 3022, + "codeIataCity": "HZB", + "codeIso2Country": "FR", + "geonameId": 2998324, + "latitudeCity": 50.61667, + "longitudeCity": 2.65, + "nameCity": "Hazebrouck", + "timezone": "Europe/Paris" + }, + { + "GMT": "8", + "cityId": 3023, + "codeIataCity": "HZG", + "codeIso2Country": "CN", + "geonameId": 1808857, + "latitudeCity": 32.983334, + "longitudeCity": 107.183334, + "nameCity": "Hanzhong", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 3024, + "codeIataCity": "HZH", + "codeIso2Country": "CN", + "geonameId": 1789403, + "latitudeCity": 26.320213, + "longitudeCity": 109.15381, + "nameCity": "Liping City", + "timezone": "Asia/Chongqing" + }, + { + "GMT": "0", + "cityId": 3025, + "codeIataCity": "HZK", + "codeIso2Country": "IS", + "geonameId": 2633274, + "latitudeCity": 65.95528, + "longitudeCity": -17.427778, + "nameCity": "Husavik", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-5", + "cityId": 3026, + "codeIataCity": "HZL", + "codeIso2Country": "US", + "geonameId": 5193011, + "latitudeCity": 40.98639, + "longitudeCity": -75.99111, + "nameCity": "Hazleton", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 3027, + "codeIataCity": "HZP", + "codeIso2Country": "CA", + "geonameId": 5955895, + "latitudeCity": 57.381668, + "longitudeCity": -111.70111, + "nameCity": "Fort MacKay", + "timezone": "America/Edmonton" + }, + { + "GMT": "2", + "cityId": 3028, + "codeIataCity": "HZV", + "codeIso2Country": "ZA", + "geonameId": 997255, + "latitudeCity": -25.066668, + "longitudeCity": 31.130556, + "nameCity": "Hazyview", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "7", + "cityId": 3029, + "codeIataCity": "IAA", + "codeIso2Country": "RU", + "geonameId": 1505991, + "latitudeCity": 67.433334, + "longitudeCity": 86.63333, + "nameCity": "Igarka", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "-5", + "cityId": 3030, + "codeIataCity": "IAG", + "codeIso2Country": "US", + "geonameId": 5128723, + "latitudeCity": 43.1, + "longitudeCity": -78.95, + "nameCity": "Niagara Falls", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 3031, + "codeIataCity": "IAM", + "codeIso2Country": "DZ", + "geonameId": 0, + "latitudeCity": 28.051111, + "longitudeCity": 9.638056, + "nameCity": "In Amenas", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-9", + "cityId": 3032, + "codeIataCity": "IAN", + "codeIso2Country": "US", + "geonameId": 5866155, + "latitudeCity": 66.975555, + "longitudeCity": -160.43056, + "nameCity": "Kiana", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "cityId": 3033, + "codeIataCity": "IAO", + "codeIso2Country": "PH", + "geonameId": 1713046, + "latitudeCity": 9.858889, + "longitudeCity": 126.013885, + "nameCity": "Del Carmen", + "timezone": "Asia/Manila" + }, + { + "GMT": "3.30", + "cityId": 3034, + "codeIataCity": "IAQ", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 28.933332, + "longitudeCity": 50.833332, + "nameCity": "Bahregan", + "timezone": "Asia/Tehran" + }, + { + "GMT": "3", + "cityId": 3035, + "codeIataCity": "IAR", + "codeIso2Country": "RU", + "geonameId": 468902, + "latitudeCity": 57.61667, + "longitudeCity": 39.88333, + "nameCity": "Yaroslavl", + "timezone": "Europe/Moscow" + }, + { + "GMT": "2", + "cityId": 3036, + "codeIataCity": "IAS", + "codeIso2Country": "RO", + "geonameId": 675810, + "latitudeCity": 47.176987, + "longitudeCity": 27.616993, + "nameCity": "Iasi", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "10", + "cityId": 3037, + "codeIataCity": "IAU", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -9.783333, + "longitudeCity": 148.1, + "nameCity": "Iaura", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 3038, + "codeIataCity": "IBA", + "codeIso2Country": "NG", + "geonameId": 2339354, + "latitudeCity": 7.431944, + "longitudeCity": 3.911111, + "nameCity": "Ibadan", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-6", + "cityId": 3039, + "codeIataCity": "IBB", + "codeIso2Country": "EC", + "geonameId": 3652694, + "latitudeCity": -0.94278, + "longitudeCity": -90.9531, + "nameCity": "Isabela Island", + "timezone": "Pacific/Galapagos" + }, + { + "GMT": "-5", + "cityId": 3040, + "codeIataCity": "IBE", + "codeIso2Country": "CO", + "geonameId": 3680656, + "latitudeCity": 4.423948, + "longitudeCity": -75.13858, + "nameCity": "Ibague", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "cityId": 3041, + "codeIataCity": "IBI", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.553333, + "longitudeCity": 149.19028, + "nameCity": "Iboki", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "cityId": 3042, + "codeIataCity": "IBL", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": -21.708, + "longitudeCity": 35.4528, + "nameCity": "Indigo Bay Lodge", + "timezone": "Africa/Maputo" + }, + { + "GMT": "2", + "cityId": 3043, + "codeIataCity": "IBO", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": -12.333333, + "longitudeCity": 40.583332, + "nameCity": "Ibo", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-5", + "cityId": 3044, + "codeIataCity": "IBP", + "codeIso2Country": "PE", + "geonameId": 0, + "latitudeCity": -11.366667, + "longitudeCity": -69.583336, + "nameCity": "Iberia", + "timezone": "America/Lima" + }, + { + "GMT": "9", + "cityId": 3045, + "codeIataCity": "IBR", + "codeIso2Country": "JP", + "geonameId": 1862033, + "latitudeCity": 36.181667, + "longitudeCity": 140.41472, + "nameCity": "Ibaraki", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "cityId": 3046, + "codeIataCity": "IBZ", + "codeIso2Country": "ES", + "geonameId": 2516479, + "latitudeCity": 38.876595, + "longitudeCity": 1.367803, + "nameCity": "Ibiza", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-4", + "cityId": 3047, + "codeIataCity": "ICA", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 4.333333, + "longitudeCity": -61.733334, + "nameCity": "Icabaru", + "timezone": "America/Caracas" + }, + { + "GMT": "12", + "cityId": 3048, + "codeIataCity": "ICI", + "codeIso2Country": "FJ", + "geonameId": 0, + "latitudeCity": -17.75, + "longitudeCity": -179.33333, + "nameCity": "Cicia", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-3", + "cityId": 3049, + "codeIataCity": "ICK", + "codeIso2Country": "SR", + "geonameId": 3383427, + "latitudeCity": 5.933333, + "longitudeCity": -56.983334, + "nameCity": "Nieuw Nickerie", + "timezone": "America/Paramaribo" + }, + { + "GMT": "-6", + "cityId": 3050, + "codeIataCity": "ICL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 40.733334, + "longitudeCity": -95.03333, + "nameCity": "Clarinda", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 3051, + "codeIataCity": "ICO", + "codeIso2Country": "PH", + "geonameId": 1729564, + "latitudeCity": 11.433333, + "longitudeCity": 123.26667, + "nameCity": "Sicogon Island", + "timezone": "Asia/Manila" + }, + { + "GMT": "-5", + "cityId": 3052, + "codeIataCity": "ICR", + "codeIso2Country": "CU", + "geonameId": 0, + "latitudeCity": 20.983334, + "longitudeCity": -75.975, + "nameCity": "Nicaro", + "timezone": "America/Havana" + }, + { + "GMT": "-7", + "cityId": 3053, + "codeIataCity": "ICS", + "codeIso2Country": "US", + "geonameId": 5586437, + "latitudeCity": 44.49378, + "longitudeCity": -116.01624, + "nameCity": "Cascade", + "timezone": "America/Boise" + }, + { + "GMT": "-6", + "cityId": 3054, + "codeIataCity": "ICT", + "codeIso2Country": "US", + "geonameId": 4281730, + "latitudeCity": 37.692236, + "longitudeCity": -97.337545, + "nameCity": "Wichita", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 3055, + "codeIataCity": "ICY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 60.0, + "longitudeCity": -141.25, + "nameCity": "Icy Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "cityId": 3056, + "codeIataCity": "IDA", + "codeIso2Country": "US", + "geonameId": 5596475, + "latitudeCity": 43.514854, + "longitudeCity": -112.06751, + "nameCity": "Idaho Falls", + "timezone": "America/Boise" + }, + { + "GMT": "1", + "cityId": 3057, + "codeIataCity": "IDB", + "codeIso2Country": "SE", + "geonameId": 2680615, + "latitudeCity": 61.86667, + "longitudeCity": 12.683333, + "nameCity": "Idre", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "2", + "cityId": 3058, + "codeIataCity": "IDC", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": -22.1806, + "longitudeCity": 35.5222, + "nameCity": "Ila Da Chilonzuene", + "timezone": "Africa/Maputo" + }, + { + "GMT": "1", + "cityId": 3059, + "codeIataCity": "IDF", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -5.033333, + "longitudeCity": 19.6, + "nameCity": "Idiofa", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "-6", + "cityId": 3060, + "codeIataCity": "IDG", + "codeIso2Country": "US", + "geonameId": 4861464, + "latitudeCity": 42.35, + "longitudeCity": -95.46667, + "nameCity": "Ida Grove", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 3061, + "codeIataCity": "IDH", + "codeIso2Country": "US", + "geonameId": 5594474, + "latitudeCity": 45.94256, + "longitudeCity": -116.12342, + "nameCity": "Grangeville", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 3062, + "codeIataCity": "IDI", + "codeIso2Country": "US", + "geonameId": 5194868, + "latitudeCity": 40.61667, + "longitudeCity": -79.15, + "nameCity": "Indiana", + "timezone": "America/New_York" + }, + { + "GMT": "9.30", + "cityId": 3063, + "codeIataCity": "IDK", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -26.966667, + "longitudeCity": 133.325, + "nameCity": "Indulkana", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "10", + "cityId": 3064, + "codeIataCity": "IDN", + "codeIso2Country": "PG", + "geonameId": 2095613, + "latitudeCity": -6.2, + "longitudeCity": 147.25, + "nameCity": "Indagen", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "cityId": 3065, + "codeIataCity": "IDO", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -11.566667, + "longitudeCity": -50.666668, + "nameCity": "Santa Isabel Do Morro", + "timezone": "America/Araguaina" + }, + { + "GMT": "-6", + "cityId": 3066, + "codeIataCity": "IDP", + "codeIso2Country": "US", + "geonameId": 4529987, + "latitudeCity": 37.233334, + "longitudeCity": -95.7, + "nameCity": "Independence", + "timezone": "America/Chicago" + }, + { + "GMT": "5.30", + "cityId": 3067, + "codeIataCity": "IDR", + "codeIso2Country": "IN", + "geonameId": 1269743, + "latitudeCity": 22.728651, + "longitudeCity": 75.80944, + "nameCity": "Indore", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "cityId": 3068, + "codeIataCity": "IDY", + "codeIso2Country": "FR", + "geonameId": 2990969, + "latitudeCity": 46.71787, + "longitudeCity": -2.388694, + "nameCity": "Ile d'Yeu", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "cityId": 3069, + "codeIataCity": "IEG", + "codeIso2Country": "PL", + "geonameId": 3088171, + "latitudeCity": 51.933334, + "longitudeCity": 15.516667, + "nameCity": "Zielona Gora", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "9", + "cityId": 3070, + "codeIataCity": "IEJ", + "codeIso2Country": "JP", + "geonameId": 1856035, + "latitudeCity": 26.733334, + "longitudeCity": 127.8, + "nameCity": "Iejima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "cityId": 3071, + "codeIataCity": "IES", + "codeIso2Country": "DE", + "geonameId": 2846939, + "latitudeCity": 51.300142, + "longitudeCity": 13.302104, + "nameCity": "Riesa", + "timezone": "Europe/Berlin" + }, + { + "GMT": "2", + "cityId": 3072, + "codeIataCity": "IEV", + "codeIso2Country": "UA", + "geonameId": 703448, + "latitudeCity": 50.45, + "longitudeCity": 30.5, + "nameCity": "Kiev", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-6", + "cityId": 3073, + "codeIataCity": "IFA", + "codeIso2Country": "US", + "geonameId": 4862069, + "latitudeCity": 42.516666, + "longitudeCity": -93.26667, + "nameCity": "Iowa Falls", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 3074, + "codeIataCity": "IFF", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.9, + "longitudeCity": 141.21666, + "nameCity": "Iffley", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3.30", + "cityId": 3075, + "codeIataCity": "IFH", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 32.916668, + "longitudeCity": 51.55, + "nameCity": "Hesa", + "timezone": "Asia/Tehran" + }, + { + "GMT": "0", + "cityId": 3076, + "codeIataCity": "IFJ", + "codeIso2Country": "IS", + "geonameId": 3415667, + "latitudeCity": 66.05972, + "longitudeCity": -23.132778, + "nameCity": "Isafjordur", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "10", + "cityId": 3077, + "codeIataCity": "IFL", + "codeIso2Country": "AU", + "geonameId": 2162683, + "latitudeCity": -17.55, + "longitudeCity": 146.01666, + "nameCity": "Innisfail", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3.30", + "cityId": 3078, + "codeIataCity": "IFN", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 32.745686, + "longitudeCity": 51.87638, + "nameCity": "Isfahan", + "timezone": "Asia/Tehran" + }, + { + "GMT": "2", + "cityId": 3079, + "codeIataCity": "IFO", + "codeIso2Country": "UA", + "geonameId": 707471, + "latitudeCity": 48.887535, + "longitudeCity": 24.707565, + "nameCity": "Ivano-Frankovsk", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-7", + "cityId": 3080, + "codeIataCity": "IFP", + "codeIso2Country": "US", + "geonameId": 5287565, + "latitudeCity": 35.165634, + "longitudeCity": -114.55695, + "nameCity": "Bullhead City", + "timezone": "America/Phoenix" + }, + { + "GMT": "-5", + "cityId": 3081, + "codeIataCity": "IGA", + "codeIso2Country": "BS", + "geonameId": 0, + "latitudeCity": 20.983334, + "longitudeCity": -73.666664, + "nameCity": "Inagua", + "timezone": "America/Nassau" + }, + { + "GMT": "-3", + "cityId": 3082, + "codeIataCity": "IGB", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -41.3, + "longitudeCity": -69.583336, + "nameCity": "Ingeniero Jacobacci", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "3", + "cityId": 3083, + "codeIataCity": "IGD", + "codeIso2Country": "TR", + "geonameId": 0, + "latitudeCity": 39.974445, + "longitudeCity": 43.879723, + "nameCity": "Igdir", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "1", + "cityId": 3084, + "codeIataCity": "IGE", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -1.916667, + "longitudeCity": 9.316667, + "nameCity": "Iguela", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-9", + "cityId": 3085, + "codeIataCity": "IGG", + "codeIso2Country": "US", + "geonameId": 5864529, + "latitudeCity": 59.316666, + "longitudeCity": -155.9, + "nameCity": "Igiugig", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 3086, + "codeIataCity": "IGH", + "codeIso2Country": "AU", + "geonameId": 2146142, + "latitudeCity": -18.716667, + "longitudeCity": 146.16667, + "nameCity": "Ingham", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-7", + "cityId": 3087, + "codeIataCity": "IGM", + "codeIso2Country": "US", + "geonameId": 5301067, + "latitudeCity": 35.256668, + "longitudeCity": -113.94, + "nameCity": "Kingman", + "timezone": "America/Phoenix" + }, + { + "GMT": "8", + "cityId": 3088, + "codeIataCity": "IGN", + "codeIso2Country": "PH", + "geonameId": 1711084, + "latitudeCity": 8.131111, + "longitudeCity": 124.214165, + "nameCity": "Iligan", + "timezone": "Asia/Manila" + }, + { + "GMT": "-5", + "cityId": 3089, + "codeIataCity": "IGO", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 7.681667, + "longitudeCity": -76.68667, + "nameCity": "Chigorodo", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "cityId": 3090, + "codeIataCity": "IGR", + "codeIso2Country": "AR", + "geonameId": 3429777, + "latitudeCity": -25.731504, + "longitudeCity": -54.47635, + "nameCity": "Iguazu", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "1", + "cityId": 3091, + "codeIataCity": "IGS", + "codeIso2Country": "DE", + "geonameId": 2867714, + "latitudeCity": 48.72, + "longitudeCity": 11.53, + "nameCity": "Ingolstadt-manching", + "timezone": "Europe/Berlin" + }, + { + "GMT": "3", + "cityId": 3092, + "codeIataCity": "IGT", + "codeIso2Country": "RU", + "geonameId": 6313621, + "latitudeCity": 43.31778, + "longitudeCity": 45.001667, + "nameCity": "Nazran", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-3", + "cityId": 3093, + "codeIataCity": "IGU", + "codeIso2Country": "BR", + "geonameId": 3463030, + "latitudeCity": -25.597937, + "longitudeCity": -54.488823, + "nameCity": "Iguassu Falls", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "9", + "cityId": 3094, + "codeIataCity": "IHA", + "codeIso2Country": "JP", + "geonameId": 1855425, + "latitudeCity": 33.916668, + "longitudeCity": 133.26666, + "nameCity": "Niihama", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "2", + "cityId": 3095, + "codeIataCity": "IHC", + "codeIso2Country": "MZ", + "geonameId": 1045194, + "latitudeCity": -26.0, + "longitudeCity": 32.933334, + "nameCity": "Inhaca", + "timezone": "Africa/Maputo" + }, + { + "GMT": "3", + "cityId": 3096, + "codeIataCity": "IHN", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 15.05, + "longitudeCity": 50.05, + "nameCity": "Qishn", + "timezone": "Asia/Aden" + }, + { + "GMT": "3", + "cityId": 3097, + "codeIataCity": "IHO", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -22.416668, + "longitudeCity": 46.11667, + "nameCity": "Ihosy", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "3.30", + "cityId": 3098, + "codeIataCity": "IHR", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 27.228365, + "longitudeCity": 60.71806, + "nameCity": "Iran Shahr", + "timezone": "Asia/Tehran" + }, + { + "GMT": "10", + "cityId": 3099, + "codeIataCity": "IHU", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.9, + "longitudeCity": 145.38333, + "nameCity": "Ihu", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "cityId": 3100, + "codeIataCity": "IIA", + "codeIso2Country": "IE", + "geonameId": 0, + "latitudeCity": 53.083332, + "longitudeCity": -9.533333, + "nameCity": "Galloway", + "timezone": "Europe/Dublin" + }, + { + "GMT": "3.30", + "cityId": 3101, + "codeIataCity": "IIL", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 33.58637, + "longitudeCity": 46.399235, + "nameCity": "Ilaam", + "timezone": "Asia/Tehran" + }, + { + "GMT": "9", + "cityId": 3102, + "codeIataCity": "IIN", + "codeIso2Country": "JP", + "geonameId": 1855203, + "latitudeCity": 30.716667, + "longitudeCity": 130.98334, + "nameCity": "Nishinoomote", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "10", + "cityId": 3103, + "codeIataCity": "IIS", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -4.333333, + "longitudeCity": 154.34166, + "nameCity": "Nissan Island", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "4", + "cityId": 3104, + "codeIataCity": "IJK", + "codeIso2Country": "RU", + "geonameId": 554840, + "latitudeCity": 56.833332, + "longitudeCity": 53.466667, + "nameCity": "Izhevsk", + "timezone": "Europe/Samara" + }, + { + "GMT": "-3", + "cityId": 3105, + "codeIataCity": "IJU", + "codeIso2Country": "BR", + "geonameId": 3462419, + "latitudeCity": -28.416668, + "longitudeCity": -53.916668, + "nameCity": "Ijui", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "cityId": 3106, + "codeIataCity": "IJX", + "codeIso2Country": "US", + "geonameId": 4241704, + "latitudeCity": 39.774166, + "longitudeCity": -90.23722, + "nameCity": "Jacksonville", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 3107, + "codeIataCity": "IKB", + "codeIso2Country": "US", + "geonameId": 4456703, + "latitudeCity": 36.15, + "longitudeCity": -81.15, + "nameCity": "Wilkesboro", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "cityId": 3108, + "codeIataCity": "IKI", + "codeIso2Country": "JP", + "geonameId": 1863967, + "latitudeCity": 33.745556, + "longitudeCity": 129.78833, + "nameCity": "Iki", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-6", + "cityId": 3109, + "codeIataCity": "IKK", + "codeIso2Country": "US", + "geonameId": 4898182, + "latitudeCity": 41.38333, + "longitudeCity": -88.25, + "nameCity": "Kankakee", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 3110, + "codeIataCity": "IKL", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -1.666667, + "longitudeCity": 23.666668, + "nameCity": "Ikela", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "-9", + "cityId": 3111, + "codeIataCity": "IKO", + "codeIso2Country": "US", + "geonameId": 5869979, + "latitudeCity": 52.941666, + "longitudeCity": -168.85, + "nameCity": "Nikolski", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 3112, + "codeIataCity": "IKP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -16.25, + "longitudeCity": 141.5, + "nameCity": "Inkerman", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "9", + "cityId": 3113, + "codeIataCity": "IKS", + "codeIso2Country": "RU", + "geonameId": 2015306, + "latitudeCity": 71.7, + "longitudeCity": 128.9, + "nameCity": "Tiksi", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "8", + "cityId": 3114, + "codeIataCity": "IKT", + "codeIso2Country": "RU", + "geonameId": 2023469, + "latitudeCity": 52.273308, + "longitudeCity": 104.35607, + "nameCity": "Irkutsk", + "timezone": "Asia/Irkutsk" + }, + { + "GMT": "9", + "cityId": 3115, + "codeIataCity": "ILA", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.65, + "longitudeCity": 133.73334, + "nameCity": "Illaga", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-4", + "cityId": 3116, + "codeIataCity": "ILB", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -20.333332, + "longitudeCity": -51.333332, + "nameCity": "Ilha Solteira", + "timezone": "America/Campo_Grande" + }, + { + "GMT": "1", + "cityId": 3117, + "codeIataCity": "ILD", + "codeIso2Country": "ES", + "geonameId": 3118514, + "latitudeCity": 41.728836, + "longitudeCity": 0.543302, + "nameCity": "Lleida", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-6", + "cityId": 3118, + "codeIataCity": "ILE", + "codeIso2Country": "US", + "geonameId": 4671654, + "latitudeCity": 31.117119, + "longitudeCity": -97.727796, + "nameCity": "Killeen", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 3119, + "codeIataCity": "ILF", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 56.066666, + "longitudeCity": -95.61667, + "nameCity": "Ilford", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "cityId": 3120, + "codeIataCity": "ILG", + "codeIso2Country": "US", + "geonameId": 4145381, + "latitudeCity": 39.745833, + "longitudeCity": -75.546667, + "nameCity": "Wilmington", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 3121, + "codeIataCity": "ILH", + "codeIso2Country": "DE", + "geonameId": 2896543, + "latitudeCity": 49.47, + "longitudeCity": 10.39, + "nameCity": "Illisheim", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-9", + "cityId": 3122, + "codeIataCity": "ILI", + "codeIso2Country": "US", + "geonameId": 5864637, + "latitudeCity": 59.752777, + "longitudeCity": -154.90834, + "nameCity": "Iliamna", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "cityId": 3123, + "codeIataCity": "ILK", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -20.333332, + "longitudeCity": 47.166668, + "nameCity": "Ilaka", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-6", + "cityId": 3124, + "codeIataCity": "ILL", + "codeIso2Country": "US", + "geonameId": 5052916, + "latitudeCity": 45.115276, + "longitudeCity": -95.08528, + "nameCity": "Willmar", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 3125, + "codeIataCity": "ILM", + "codeIso2Country": "US", + "geonameId": 4499379, + "latitudeCity": 34.26705, + "longitudeCity": -77.91063, + "nameCity": "Wilmington", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 3126, + "codeIataCity": "ILN", + "codeIso2Country": "US", + "geonameId": 4528463, + "latitudeCity": 39.493057, + "longitudeCity": -83.74083, + "nameCity": "Wilmington", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 3127, + "codeIataCity": "ILO", + "codeIso2Country": "PH", + "geonameId": 1711005, + "latitudeCity": 10.714312, + "longitudeCity": 122.543884, + "nameCity": "Iloilo", + "timezone": "Asia/Manila" + }, + { + "GMT": "11", + "cityId": 3128, + "codeIataCity": "ILP", + "codeIso2Country": "NC", + "geonameId": 2140066, + "latitudeCity": -22.589722, + "longitudeCity": 167.4475, + "nameCity": "Ile Des Pins", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "-5", + "cityId": 3129, + "codeIataCity": "ILQ", + "codeIso2Country": "PE", + "geonameId": 3938415, + "latitudeCity": -17.666668, + "longitudeCity": -71.333336, + "nameCity": "Ilo", + "timezone": "America/Lima" + }, + { + "GMT": "1", + "cityId": 3130, + "codeIataCity": "ILR", + "codeIso2Country": "NG", + "geonameId": 0, + "latitudeCity": 8.5, + "longitudeCity": 4.533333, + "nameCity": "Ilorin", + "timezone": "Africa/Lagos" + }, + { + "GMT": "3", + "cityId": 3131, + "codeIataCity": "ILU", + "codeIso2Country": "KE", + "geonameId": 201050, + "latitudeCity": -2.9, + "longitudeCity": 38.05, + "nameCity": "Kilaguni", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "10", + "cityId": 3132, + "codeIataCity": "ILX", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.48, + "longitudeCity": 145.83, + "nameCity": "Ileg", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "cityId": 3133, + "codeIataCity": "ILY", + "codeIso2Country": "GB", + "geonameId": 2641108, + "latitudeCity": 55.681946, + "longitudeCity": -6.254167, + "nameCity": "Islay", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 3134, + "codeIataCity": "ILZ", + "codeIso2Country": "SK", + "geonameId": 3056508, + "latitudeCity": 49.233334, + "longitudeCity": 18.766666, + "nameCity": "Zilina", + "timezone": "Europe/Bratislava" + }, + { + "GMT": "10", + "cityId": 3135, + "codeIataCity": "IMA", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -9.466667, + "longitudeCity": 150.5, + "nameCity": "Iamalele", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "cityId": 3136, + "codeIataCity": "IMB", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 5.716667, + "longitudeCity": -60.283333, + "nameCity": "Imbaimadai", + "timezone": "America/Guyana" + }, + { + "GMT": "10", + "cityId": 3137, + "codeIataCity": "IMD", + "codeIso2Country": "PG", + "geonameId": 2095651, + "latitudeCity": -3.433333, + "longitudeCity": 141.2, + "nameCity": "Imonda", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5.30", + "cityId": 3138, + "codeIataCity": "IMF", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 24.76457, + "longitudeCity": 93.897064, + "nameCity": "Imphal", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "2", + "cityId": 3139, + "codeIataCity": "IMG", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": -18.433332, + "longitudeCity": 35.0, + "nameCity": "Inhaminga", + "timezone": "Africa/Maputo" + }, + { + "GMT": "12", + "cityId": 3140, + "codeIataCity": "IMI", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 6.983333, + "longitudeCity": 171.61667, + "nameCity": "Ine Island", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "5.45", + "cityId": 3141, + "codeIataCity": "IMK", + "codeIso2Country": "NP", + "geonameId": 1282779, + "latitudeCity": 29.966667, + "longitudeCity": 81.816666, + "nameCity": "Simikot", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-6", + "cityId": 3142, + "codeIataCity": "IML", + "codeIso2Country": "US", + "geonameId": 5697939, + "latitudeCity": 40.516666, + "longitudeCity": -101.65, + "nameCity": "Imperial", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 3143, + "codeIataCity": "IMM", + "codeIso2Country": "US", + "geonameId": 4155995, + "latitudeCity": 26.416668, + "longitudeCity": -81.416664, + "nameCity": "Immokalee", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 3144, + "codeIataCity": "IMN", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.7, + "longitudeCity": 146.08333, + "nameCity": "Imane", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 3145, + "codeIataCity": "IMO", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 5.033333, + "longitudeCity": 25.083332, + "nameCity": "Zemio", + "timezone": "Africa/Bangui" + }, + { + "GMT": "-3", + "cityId": 3146, + "codeIataCity": "IMP", + "codeIso2Country": "BR", + "geonameId": 3398269, + "latitudeCity": -5.531944, + "longitudeCity": -47.480556, + "nameCity": "Imperatriz", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-6", + "cityId": 3147, + "codeIataCity": "IMT", + "codeIso2Country": "US", + "geonameId": 4997232, + "latitudeCity": 45.815556, + "longitudeCity": -88.11417, + "nameCity": "Iron Mountain", + "timezone": "America/Menominee" + }, + { + "GMT": "3", + "cityId": 3148, + "codeIataCity": "INA", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 66.066666, + "longitudeCity": 60.1, + "nameCity": "Inta", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "cityId": 3149, + "codeIataCity": "INB", + "codeIso2Country": "BZ", + "geonameId": 3581905, + "latitudeCity": 17.547222, + "longitudeCity": -88.3, + "nameCity": "Independence", + "timezone": "America/Belize" + }, + { + "GMT": "8", + "cityId": 3150, + "codeIataCity": "INC", + "codeIso2Country": "CN", + "geonameId": 1786657, + "latitudeCity": 38.35, + "longitudeCity": 106.35, + "nameCity": "Yinchuan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 3151, + "codeIataCity": "IND", + "codeIso2Country": "US", + "geonameId": 4259418, + "latitudeCity": 39.714516, + "longitudeCity": -86.29805, + "nameCity": "Indianapolis", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "2", + "cityId": 3152, + "codeIataCity": "INE", + "codeIso2Country": "MZ", + "geonameId": 1024697, + "latitudeCity": -18.616667, + "longitudeCity": 36.4, + "nameCity": "Chinde", + "timezone": "Africa/Maputo" + }, + { + "GMT": "1", + "cityId": 3153, + "codeIataCity": "INF", + "codeIso2Country": "DZ", + "geonameId": 0, + "latitudeCity": 19.616667, + "longitudeCity": 5.866667, + "nameCity": "In Guezzam", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-3", + "cityId": 3154, + "codeIataCity": "ING", + "codeIso2Country": "AR", + "geonameId": 3858677, + "latitudeCity": -50.583332, + "longitudeCity": -72.666664, + "nameCity": "Lago Argentino", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "2", + "cityId": 3155, + "codeIataCity": "INH", + "codeIso2Country": "MZ", + "geonameId": 1045114, + "latitudeCity": -23.874443, + "longitudeCity": 35.408333, + "nameCity": "Inhambane", + "timezone": "Africa/Maputo" + }, + { + "GMT": "1", + "cityId": 3156, + "codeIataCity": "INI", + "codeIso2Country": "RS", + "geonameId": 787657, + "latitudeCity": 43.33389, + "longitudeCity": 21.851667, + "nameCity": "Nis", + "timezone": "Europe/Belgrade" + }, + { + "GMT": "10", + "cityId": 3157, + "codeIataCity": "INJ", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -25.883333, + "longitudeCity": 148.53334, + "nameCity": "Injune", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "cityId": 3158, + "codeIataCity": "INK", + "codeIso2Country": "US", + "geonameId": 5527554, + "latitudeCity": 31.75, + "longitudeCity": -103.15, + "nameCity": "Wink", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 3159, + "codeIataCity": "INL", + "codeIso2Country": "US", + "geonameId": 5031404, + "latitudeCity": 48.563057, + "longitudeCity": -93.40417, + "nameCity": "International Falls", + "timezone": "America/Chicago" + }, + { + "GMT": "9.30", + "cityId": 3160, + "codeIataCity": "INM", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -27.75, + "longitudeCity": 140.73334, + "nameCity": "Innamincka", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "1", + "cityId": 3161, + "codeIataCity": "INN", + "codeIso2Country": "AT", + "geonameId": 2775220, + "latitudeCity": 47.25745, + "longitudeCity": 11.351467, + "nameCity": "Innsbruck", + "timezone": "Europe/Vienna" + }, + { + "GMT": "1", + "cityId": 3162, + "codeIataCity": "INO", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -1.95, + "longitudeCity": 18.279167, + "nameCity": "Inongo", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "0", + "cityId": 3163, + "codeIataCity": "INQ", + "codeIso2Country": "IE", + "geonameId": 7870002, + "latitudeCity": 53.033333, + "longitudeCity": -9.433333, + "nameCity": "Inisheer", + "timezone": "Europe/Dublin" + }, + { + "GMT": "-8", + "cityId": 3164, + "codeIataCity": "INS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 36.583332, + "longitudeCity": -115.666664, + "nameCity": "Indian Springs", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 3165, + "codeIataCity": "INT", + "codeIso2Country": "US", + "geonameId": 4499612, + "latitudeCity": 36.135277, + "longitudeCity": -80.225555, + "nameCity": "Winston Salem", + "timezone": "America/New_York" + }, + { + "GMT": "12", + "cityId": 3166, + "codeIataCity": "INU", + "codeIso2Country": "NR", + "geonameId": 0, + "latitudeCity": -0.533333, + "longitudeCity": 166.91667, + "nameCity": "Nauru Island", + "timezone": "Pacific/Nauru" + }, + { + "GMT": "0", + "cityId": 3167, + "codeIataCity": "INV", + "codeIso2Country": "GB", + "geonameId": 2646088, + "latitudeCity": 57.476695, + "longitudeCity": -4.231453, + "nameCity": "Inverness", + "timezone": "Europe/London" + }, + { + "GMT": "-7", + "cityId": 3168, + "codeIataCity": "INW", + "codeIso2Country": "US", + "geonameId": 5294810, + "latitudeCity": 35.024166, + "longitudeCity": -110.725, + "nameCity": "Winslow", + "timezone": "America/Phoenix" + }, + { + "GMT": "9", + "cityId": 3169, + "codeIataCity": "INX", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -2.166667, + "longitudeCity": 132.23334, + "nameCity": "Inanwatan", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "2", + "cityId": 3170, + "codeIataCity": "INY", + "codeIso2Country": "ZA", + "geonameId": 0, + "latitudeCity": -24.783333, + "longitudeCity": 31.383333, + "nameCity": "Inyati", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "1", + "cityId": 3171, + "codeIataCity": "INZ", + "codeIso2Country": "DZ", + "geonameId": 6930641, + "latitudeCity": 27.25, + "longitudeCity": 2.516667, + "nameCity": "In Salah", + "timezone": "Africa/Algiers" + }, + { + "GMT": "2", + "cityId": 3172, + "codeIataCity": "IOA", + "codeIso2Country": "GR", + "geonameId": 261779, + "latitudeCity": 39.696667, + "longitudeCity": 20.825832, + "nameCity": "Ioannina", + "timezone": "Europe/Athens" + }, + { + "GMT": "10", + "cityId": 3173, + "codeIataCity": "IOK", + "codeIso2Country": "PG", + "geonameId": 2095550, + "latitudeCity": -8.4, + "longitudeCity": 146.26666, + "nameCity": "Iokea", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "cityId": 3174, + "codeIataCity": "IOM", + "codeIso2Country": "IM", + "geonameId": 3042264, + "latitudeCity": 54.08677, + "longitudeCity": -4.63473, + "nameCity": "Isle Of Man", + "timezone": "Europe/Isle_of_Man" + }, + { + "GMT": "1", + "cityId": 3175, + "codeIataCity": "ION", + "codeIso2Country": "CG", + "geonameId": 2259655, + "latitudeCity": 1.613333, + "longitudeCity": 18.061943, + "nameCity": "Impfondo", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "10", + "cityId": 3176, + "codeIataCity": "IOP", + "codeIso2Country": "PG", + "geonameId": 2095546, + "latitudeCity": -8.35, + "longitudeCity": 147.75, + "nameCity": "Ioma", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "cityId": 3177, + "codeIataCity": "IOR", + "codeIso2Country": "IE", + "geonameId": 2964180, + "latitudeCity": 53.11667, + "longitudeCity": -9.75, + "nameCity": "Inishmore", + "timezone": "Europe/Dublin" + }, + { + "GMT": "-3", + "cityId": 3178, + "codeIataCity": "IOS", + "codeIso2Country": "BR", + "geonameId": 3461408, + "latitudeCity": -14.813889, + "longitudeCity": -39.03, + "nameCity": "Ilheus", + "timezone": "America/Bahia" + }, + { + "GMT": "11", + "cityId": 3179, + "codeIataCity": "IOU", + "codeIso2Country": "NC", + "geonameId": 0, + "latitudeCity": -22.463888, + "longitudeCity": 166.78305, + "nameCity": "Ile Ouen", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "-6", + "cityId": 3180, + "codeIataCity": "IOW", + "codeIso2Country": "US", + "geonameId": 4862034, + "latitudeCity": 41.666668, + "longitudeCity": -91.53333, + "nameCity": "Iowa City", + "timezone": "America/Chicago" + }, + { + "GMT": "11", + "cityId": 3181, + "codeIataCity": "IPA", + "codeIso2Country": "VU", + "geonameId": 2136256, + "latitudeCity": -18.75, + "longitudeCity": 169.18333, + "nameCity": "Ipota", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-6", + "cityId": 3182, + "codeIataCity": "IPC", + "codeIso2Country": "CL", + "geonameId": 4030754, + "latitudeCity": -27.116667, + "longitudeCity": -109.36667, + "nameCity": "Easter Island", + "timezone": "Pacific/Easter" + }, + { + "GMT": "8", + "cityId": 3183, + "codeIataCity": "IPE", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 7.783333, + "longitudeCity": 122.583336, + "nameCity": "Ipil", + "timezone": "Asia/Manila" + }, + { + "GMT": "-4", + "cityId": 3184, + "codeIataCity": "IPG", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -3.216667, + "longitudeCity": -65.95, + "nameCity": "Ipiranga", + "timezone": "America/Manaus" + }, + { + "GMT": "8", + "cityId": 3185, + "codeIataCity": "IPH", + "codeIso2Country": "MY", + "geonameId": 1734634, + "latitudeCity": 4.566944, + "longitudeCity": 101.09583, + "nameCity": "Ipoh", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "-5", + "cityId": 3186, + "codeIataCity": "IPI", + "codeIso2Country": "CO", + "geonameId": 3680539, + "latitudeCity": 0.866389, + "longitudeCity": -77.71167, + "nameCity": "Ipiales", + "timezone": "America/Bogota" + }, + { + "GMT": "-8", + "cityId": 3187, + "codeIataCity": "IPL", + "codeIso2Country": "US", + "geonameId": 5359052, + "latitudeCity": 32.837223, + "longitudeCity": -115.57472, + "nameCity": "Imperial", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "cityId": 3188, + "codeIataCity": "IPN", + "codeIso2Country": "BR", + "geonameId": 3461144, + "latitudeCity": -19.5, + "longitudeCity": -42.533333, + "nameCity": "Ipatinga", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "cityId": 3189, + "codeIataCity": "IPT", + "codeIso2Country": "US", + "geonameId": 5219585, + "latitudeCity": 41.24222, + "longitudeCity": -76.920555, + "nameCity": "Williamsport", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 3190, + "codeIataCity": "IPU", + "codeIso2Country": "BR", + "geonameId": 3453190, + "latitudeCity": -14.133333, + "longitudeCity": -39.733334, + "nameCity": "Ipiau", + "timezone": "America/Bahia" + }, + { + "GMT": "0", + "cityId": 3191, + "codeIataCity": "IPW", + "codeIso2Country": "GB", + "geonameId": 2646057, + "latitudeCity": 52.066666, + "longitudeCity": 1.166667, + "nameCity": "Ipswich", + "timezone": "Europe/London" + }, + { + "GMT": "3", + "cityId": 3192, + "codeIataCity": "IQA", + "codeIso2Country": "IQ", + "geonameId": 0, + "latitudeCity": 63.75175, + "longitudeCity": -68.53658, + "nameCity": "Al Asad", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "8", + "cityId": 3193, + "codeIataCity": "IQM", + "codeIso2Country": "CN", + "geonameId": 1280249, + "latitudeCity": 38.13333, + "longitudeCity": 85.53333, + "nameCity": "Qiemo", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 3194, + "codeIataCity": "IQN", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 35.8001, + "longitudeCity": 107.6044, + "nameCity": "Qingyang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-4", + "cityId": 3195, + "codeIataCity": "IQQ", + "codeIso2Country": "CL", + "geonameId": 3887127, + "latitudeCity": -20.547937, + "longitudeCity": -70.17848, + "nameCity": "Iquique", + "timezone": "America/Santiago" + }, + { + "GMT": "-5", + "cityId": 3196, + "codeIataCity": "IQT", + "codeIso2Country": "PE", + "geonameId": 3696183, + "latitudeCity": -3.785098, + "longitudeCity": -73.30284, + "nameCity": "Iquitos", + "timezone": "America/Lima" + }, + { + "GMT": "11", + "cityId": 3197, + "codeIataCity": "IRA", + "codeIso2Country": "SB", + "geonameId": 2178753, + "latitudeCity": -10.5, + "longitudeCity": 161.83333, + "nameCity": "Kirakira", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-6", + "cityId": 3198, + "codeIataCity": "IRB", + "codeIso2Country": "US", + "geonameId": 5523798, + "latitudeCity": 30.7, + "longitudeCity": -101.933334, + "nameCity": "Iraan", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 3199, + "codeIataCity": "IRC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 65.82917, + "longitudeCity": -144.06389, + "nameCity": "Circle", + "timezone": "America/Anchorage" + }, + { + "GMT": "6", + "cityId": 3200, + "codeIataCity": "IRD", + "codeIso2Country": "BD", + "geonameId": 0, + "latitudeCity": 24.133333, + "longitudeCity": 89.05278, + "nameCity": "Ishurdi", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "-3", + "cityId": 3201, + "codeIataCity": "IRE", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -11.3, + "longitudeCity": -41.86667, + "nameCity": "Irece", + "timezone": "America/Bahia" + }, + { + "GMT": "10", + "cityId": 3202, + "codeIataCity": "IRG", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -12.788889, + "longitudeCity": 143.3125, + "nameCity": "Lockhart River", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "cityId": 3203, + "codeIataCity": "IRI", + "codeIso2Country": "TZ", + "geonameId": 0, + "latitudeCity": -7.670556, + "longitudeCity": 35.75028, + "nameCity": "Iringa", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-3", + "cityId": 3204, + "codeIataCity": "IRJ", + "codeIso2Country": "AR", + "geonameId": 3848950, + "latitudeCity": -29.383333, + "longitudeCity": -66.78333, + "nameCity": "La Rioja", + "timezone": "America/Argentina/La_Rioja" + }, + { + "GMT": "-6", + "cityId": 3205, + "codeIataCity": "IRK", + "codeIso2Country": "US", + "geonameId": 4247703, + "latitudeCity": 40.0925, + "longitudeCity": -92.54389, + "nameCity": "Kirksville", + "timezone": "America/Chicago" + }, + { + "GMT": "5", + "cityId": 3206, + "codeIataCity": "IRM", + "codeIso2Country": "RU", + "geonameId": 1505965, + "latitudeCity": 63.200756, + "longitudeCity": 64.433945, + "nameCity": "Igrim", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-6", + "cityId": 3207, + "codeIataCity": "IRN", + "codeIso2Country": "HN", + "geonameId": 0, + "latitudeCity": 15.95, + "longitudeCity": -85.183334, + "nameCity": "Iriona", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "1", + "cityId": 3208, + "codeIataCity": "IRO", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 10.186389, + "longitudeCity": 22.713888, + "nameCity": "Birao", + "timezone": "Africa/Bangui" + }, + { + "GMT": "2", + "cityId": 3209, + "codeIataCity": "IRP", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": 2.781944, + "longitudeCity": 27.630833, + "nameCity": "Isiro", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-5", + "cityId": 3210, + "codeIataCity": "IRS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.816666, + "longitudeCity": -85.43528, + "nameCity": "Sturgis", + "timezone": "America/Detroit" + }, + { + "GMT": "5.30", + "cityId": 3211, + "codeIataCity": "IRU", + "codeIso2Country": "LK", + "geonameId": 0, + "latitudeCity": 35.921055, + "longitudeCity": 139.50674, + "nameCity": "Iranamadu", + "timezone": "Asia/Colombo" + }, + { + "GMT": "-4", + "cityId": 3212, + "codeIataCity": "IRZ", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -0.380296, + "longitudeCity": -64.996025, + "nameCity": "Santa Isabel Rio Negro", + "timezone": "America/Manaus" + }, + { + "GMT": "10", + "cityId": 3213, + "codeIataCity": "ISA", + "codeIso2Country": "AU", + "geonameId": 2065594, + "latitudeCity": -20.667637, + "longitudeCity": 139.49179, + "nameCity": "Mount Isa", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5", + "cityId": 3214, + "codeIataCity": "ISB", + "codeIso2Country": "PK", + "geonameId": 1176615, + "latitudeCity": 33.609707, + "longitudeCity": 73.1051, + "nameCity": "Islamabad", + "timezone": "Asia/Karachi" + }, + { + "GMT": "0", + "cityId": 3215, + "codeIataCity": "ISC", + "codeIso2Country": "GB", + "geonameId": 2646452, + "latitudeCity": 49.91, + "longitudeCity": -6.29, + "nameCity": "St Marys, Isles Of Scilly", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "cityId": 3216, + "codeIataCity": "ISD", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 2.466667, + "longitudeCity": -77.98333, + "nameCity": "Iscuande", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "cityId": 3217, + "codeIataCity": "ISE", + "codeIso2Country": "TR", + "geonameId": 311073, + "latitudeCity": 37.86611, + "longitudeCity": 30.382221, + "nameCity": "Isparta", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "9", + "cityId": 3218, + "codeIataCity": "ISG", + "codeIso2Country": "JP", + "geonameId": 1861416, + "latitudeCity": 24.336945, + "longitudeCity": 124.16889, + "nameCity": "Ishigaki", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "cityId": 3219, + "codeIataCity": "ISH", + "codeIso2Country": "IT", + "geonameId": 3175458, + "latitudeCity": 40.733334, + "longitudeCity": 13.95, + "nameCity": "Ischia", + "timezone": "Europe/Rome" + }, + { + "GMT": "10", + "cityId": 3220, + "codeIataCity": "ISI", + "codeIso2Country": "AU", + "geonameId": 2159630, + "latitudeCity": -24.263332, + "longitudeCity": 144.42334, + "nameCity": "Isisford", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 3221, + "codeIataCity": "ISJ", + "codeIso2Country": "MX", + "geonameId": 3526756, + "latitudeCity": 21.266666, + "longitudeCity": -86.75, + "nameCity": "Isla Mujeres", + "timezone": "America/Cancun" + }, + { + "GMT": "5.30", + "cityId": 3222, + "codeIataCity": "ISK", + "codeIso2Country": "IN", + "geonameId": 1261731, + "latitudeCity": 19.966942, + "longitudeCity": 73.811264, + "nameCity": "Nasik", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-9", + "cityId": 3223, + "codeIataCity": "ISL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 63.5, + "longitudeCity": -145.03334, + "nameCity": "Isabel Pass", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 3224, + "codeIataCity": "ISM", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 28.45, + "longitudeCity": -81.333336, + "nameCity": "Kissimmee", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 3225, + "codeIataCity": "ISN", + "codeIso2Country": "US", + "geonameId": 5692947, + "latitudeCity": 48.17611, + "longitudeCity": -103.63611, + "nameCity": "Williston", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 3226, + "codeIataCity": "ISO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 35.326668, + "longitudeCity": -77.61667, + "nameCity": "Kinston", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 3227, + "codeIataCity": "ISP", + "codeIso2Country": "US", + "geonameId": 5122413, + "latitudeCity": 40.789314, + "longitudeCity": -73.09755, + "nameCity": "Islip", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 3228, + "codeIataCity": "ISQ", + "codeIso2Country": "US", + "geonameId": 5000625, + "latitudeCity": 45.95, + "longitudeCity": -86.25, + "nameCity": "Manistique", + "timezone": "America/Detroit" + }, + { + "GMT": "-5", + "cityId": 3229, + "codeIataCity": "ISS", + "codeIso2Country": "US", + "geonameId": 4959473, + "latitudeCity": 44.0, + "longitudeCity": -69.666664, + "nameCity": "Wiscasset", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 3230, + "codeIataCity": "IST", + "codeIso2Country": "TR", + "geonameId": 745044, + "latitudeCity": 40.976665, + "longitudeCity": 28.815277, + "nameCity": "Istanbul", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3", + "cityId": 3231, + "codeIataCity": "ISU", + "codeIso2Country": "IQ", + "geonameId": 98463, + "latitudeCity": 35.5608, + "longitudeCity": 45.314716, + "nameCity": "Sulaimaniyah", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "-6", + "cityId": 3232, + "codeIataCity": "ISW", + "codeIso2Country": "US", + "geonameId": 5279436, + "latitudeCity": 44.36028, + "longitudeCity": -89.83889, + "nameCity": "Wisconsin Rapids", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 3233, + "codeIataCity": "ITA", + "codeIso2Country": "BR", + "geonameId": 3399725, + "latitudeCity": -3.133333, + "longitudeCity": -58.416668, + "nameCity": "Itacoatiara", + "timezone": "America/Manaus" + }, + { + "GMT": "-3", + "cityId": 3234, + "codeIataCity": "ITB", + "codeIso2Country": "BR", + "geonameId": 3397967, + "latitudeCity": -4.283333, + "longitudeCity": -55.983334, + "nameCity": "Itaituba", + "timezone": "America/Santarem" + }, + { + "GMT": "-3", + "cityId": 3235, + "codeIataCity": "ITE", + "codeIso2Country": "BR", + "geonameId": 3468100, + "latitudeCity": -13.7, + "longitudeCity": -39.2, + "nameCity": "Itubera", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "cityId": 3236, + "codeIataCity": "ITH", + "codeIso2Country": "US", + "geonameId": 5122432, + "latitudeCity": 42.49034, + "longitudeCity": -76.46359, + "nameCity": "Ithaca", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 3237, + "codeIataCity": "ITI", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -18.0, + "longitudeCity": -41.5, + "nameCity": "Itambacuri", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "cityId": 3238, + "codeIataCity": "ITK", + "codeIso2Country": "PG", + "geonameId": 2088122, + "latitudeCity": -9.3, + "longitudeCity": 148.2, + "nameCity": "Itokama", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "cityId": 3239, + "codeIataCity": "ITN", + "codeIso2Country": "BR", + "geonameId": 3460949, + "latitudeCity": -14.8, + "longitudeCity": -39.3, + "nameCity": "Itabuna", + "timezone": "America/Bahia" + }, + { + "GMT": "-10", + "cityId": 3240, + "codeIataCity": "ITO", + "codeIso2Country": "US", + "geonameId": 5855927, + "latitudeCity": 19.714565, + "longitudeCity": -155.03963, + "nameCity": "Hilo", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "-3", + "cityId": 3241, + "codeIataCity": "ITP", + "codeIso2Country": "BR", + "geonameId": 3467693, + "latitudeCity": -21.21889, + "longitudeCity": -41.875, + "nameCity": "Itaperuna", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-3", + "cityId": 3242, + "codeIataCity": "ITQ", + "codeIso2Country": "BR", + "geonameId": 3445679, + "latitudeCity": -29.133333, + "longitudeCity": -56.55, + "nameCity": "Itaqui", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-3", + "cityId": 3243, + "codeIataCity": "ITR", + "codeIso2Country": "BR", + "geonameId": 3468100, + "latitudeCity": -18.445, + "longitudeCity": -49.21417, + "nameCity": "Itumbiara", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-11", + "cityId": 3244, + "codeIataCity": "IUE", + "codeIso2Country": "NU", + "geonameId": 4036284, + "latitudeCity": -19.083332, + "longitudeCity": -169.93333, + "nameCity": "Niue Island", + "timezone": "Pacific/Niue" + }, + { + "GMT": "9", + "cityId": 3245, + "codeIataCity": "IUL", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.733333, + "longitudeCity": 138.16667, + "nameCity": "Ilu", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-8", + "cityId": 3246, + "codeIataCity": "IUM", + "codeIso2Country": "CA", + "geonameId": 6113365, + "latitudeCity": 54.333332, + "longitudeCity": -122.666664, + "nameCity": "Summit Lake", + "timezone": "America/Vancouver" + }, + { + "GMT": "10", + "cityId": 3247, + "codeIataCity": "IUS", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.816667, + "longitudeCity": 155.16667, + "nameCity": "Inus", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 3248, + "codeIataCity": "IVA", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -13.642222, + "longitudeCity": 48.45778, + "nameCity": "Ambanja", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "12", + "cityId": 3249, + "codeIataCity": "IVC", + "codeIso2Country": "NZ", + "geonameId": 2189529, + "latitudeCity": -46.415432, + "longitudeCity": 168.32175, + "nameCity": "Invercargill", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "1", + "cityId": 3250, + "codeIataCity": "IVG", + "codeIso2Country": "ME", + "geonameId": 3199071, + "latitudeCity": 42.839027, + "longitudeCity": 19.862028, + "nameCity": "Berane", + "timezone": "Europe/Podgorica" + }, + { + "GMT": "-9", + "cityId": 3251, + "codeIataCity": "IVH", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 69.4, + "longitudeCity": -148.25, + "nameCity": "Ivishak", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 3252, + "codeIataCity": "IVI", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 69.4, + "longitudeCity": -148.25, + "nameCity": "Isla Viveros", + "timezone": "America/Panama" + }, + { + "GMT": "2", + "cityId": 3253, + "codeIataCity": "IVL", + "codeIso2Country": "FI", + "geonameId": 656220, + "latitudeCity": 68.611115, + "longitudeCity": 27.415556, + "nameCity": "Ivalo", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-5", + "cityId": 3254, + "codeIataCity": "IVO", + "codeIso2Country": "CO", + "geonameId": 3686445, + "latitudeCity": 9.516667, + "longitudeCity": -74.53333, + "nameCity": "Chivolo", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "cityId": 3255, + "codeIataCity": "IVR", + "codeIso2Country": "AU", + "geonameId": 2162662, + "latitudeCity": -29.883896, + "longitudeCity": 151.14056, + "nameCity": "Inverell", + "timezone": "Australia/Sydney" + }, + { + "GMT": "9.30", + "cityId": 3256, + "codeIataCity": "IVW", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.833332, + "longitudeCity": 129.63333, + "nameCity": "Inverway", + "timezone": "Australia/Darwin" + }, + { + "GMT": "3", + "cityId": 3257, + "codeIataCity": "IWA", + "codeIso2Country": "RU", + "geonameId": 555312, + "latitudeCity": 56.942955, + "longitudeCity": 40.944546, + "nameCity": "Ivanova", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "cityId": 3258, + "codeIataCity": "IWD", + "codeIso2Country": "US", + "geonameId": 5263156, + "latitudeCity": 46.525555, + "longitudeCity": -90.13167, + "nameCity": "Ironwood", + "timezone": "America/Menominee" + }, + { + "GMT": "9", + "cityId": 3259, + "codeIataCity": "IWJ", + "codeIso2Country": "JP", + "geonameId": 1861202, + "latitudeCity": 34.676388, + "longitudeCity": 131.79028, + "nameCity": "Iwami", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "9", + "cityId": 3260, + "codeIataCity": "IWK", + "codeIso2Country": "JP", + "geonameId": 0, + "latitudeCity": 34.135277, + "longitudeCity": 132.23555, + "nameCity": "Iwakuni", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "9", + "cityId": 3261, + "codeIataCity": "IWO", + "codeIso2Country": "JP", + "geonameId": 0, + "latitudeCity": 24.783333, + "longitudeCity": 141.31667, + "nameCity": "Iwo Jima Vol", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "5.30", + "cityId": 3262, + "codeIataCity": "IXA", + "codeIso2Country": "IN", + "geonameId": 1279290, + "latitudeCity": 23.8926, + "longitudeCity": 91.244514, + "nameCity": "Agartala", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3263, + "codeIataCity": "IXB", + "codeIso2Country": "IN", + "geonameId": 1256525, + "latitudeCity": 26.68488, + "longitudeCity": 88.324814, + "nameCity": "Bagdogra", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3264, + "codeIataCity": "IXC", + "codeIso2Country": "IN", + "geonameId": 1274746, + "latitudeCity": 30.674921, + "longitudeCity": 76.797386, + "nameCity": "Chandigarh", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3265, + "codeIataCity": "IXD", + "codeIso2Country": "IN", + "geonameId": 1278994, + "latitudeCity": 25.439722, + "longitudeCity": 81.736115, + "nameCity": "Allahabad", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3266, + "codeIataCity": "IXE", + "codeIso2Country": "IN", + "geonameId": 1263780, + "latitudeCity": 12.963543, + "longitudeCity": 74.890144, + "nameCity": "Mangalore", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3267, + "codeIataCity": "IXG", + "codeIso2Country": "IN", + "geonameId": 1274989, + "latitudeCity": 15.858611, + "longitudeCity": 74.61833, + "nameCity": "Belgaum", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3268, + "codeIataCity": "IXH", + "codeIso2Country": "IN", + "geonameId": 1279290, + "latitudeCity": 24.307222, + "longitudeCity": 92.00889, + "nameCity": "Kailashahar", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3269, + "codeIataCity": "IXI", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 27.290277, + "longitudeCity": 94.08889, + "nameCity": "Lilabari", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3270, + "codeIataCity": "IXJ", + "codeIso2Country": "IN", + "geonameId": 1269321, + "latitudeCity": 32.68077, + "longitudeCity": 74.84283, + "nameCity": "Jammu", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3271, + "codeIataCity": "IXK", + "codeIso2Country": "IN", + "geonameId": 1255818, + "latitudeCity": 21.319445, + "longitudeCity": 70.270836, + "nameCity": "Keshod", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3272, + "codeIataCity": "IXL", + "codeIso2Country": "IN", + "geonameId": 1264976, + "latitudeCity": 34.14035, + "longitudeCity": 77.54746, + "nameCity": "Leh", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3273, + "codeIataCity": "IXM", + "codeIso2Country": "IN", + "geonameId": 1264521, + "latitudeCity": 9.837471, + "longitudeCity": 78.09112, + "nameCity": "Madurai", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3274, + "codeIataCity": "IXN", + "codeIso2Country": "IN", + "geonameId": 1279290, + "latitudeCity": 24.063889, + "longitudeCity": 91.60333, + "nameCity": "Khowai", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3275, + "codeIataCity": "IXP", + "codeIso2Country": "IN", + "geonameId": 1278710, + "latitudeCity": 32.216667, + "longitudeCity": 75.63333, + "nameCity": "Pathankot", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3276, + "codeIataCity": "IXQ", + "codeIso2Country": "IN", + "geonameId": 1279290, + "latitudeCity": 24.1325, + "longitudeCity": 91.81556, + "nameCity": "Kamalpur", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3277, + "codeIataCity": "IXR", + "codeIso2Country": "IN", + "geonameId": 1258526, + "latitudeCity": 23.318192, + "longitudeCity": 85.32285, + "nameCity": "Ranchi", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3278, + "codeIataCity": "IXS", + "codeIso2Country": "IN", + "geonameId": 1256287, + "latitudeCity": 24.916018, + "longitudeCity": 92.979256, + "nameCity": "Silchar", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3279, + "codeIataCity": "IXT", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 28.016666, + "longitudeCity": 95.333336, + "nameCity": "Pasighat", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3280, + "codeIataCity": "IXU", + "codeIso2Country": "IN", + "geonameId": 1278149, + "latitudeCity": 19.866465, + "longitudeCity": 75.39721, + "nameCity": "Aurangabad", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3281, + "codeIataCity": "IXV", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 28.2, + "longitudeCity": 94.816666, + "nameCity": "Along", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3282, + "codeIataCity": "IXW", + "codeIso2Country": "IN", + "geonameId": 1269300, + "latitudeCity": 22.813057, + "longitudeCity": 86.16889, + "nameCity": "Jamshedpur", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3283, + "codeIataCity": "IXY", + "codeIso2Country": "IN", + "geonameId": 1271717, + "latitudeCity": 23.11111, + "longitudeCity": 70.104164, + "nameCity": "Kandla", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3284, + "codeIataCity": "IXZ", + "codeIso2Country": "IN", + "geonameId": 1259385, + "latitudeCity": 11.650083, + "longitudeCity": 92.73227, + "nameCity": "Port Blair", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-8", + "cityId": 3285, + "codeIataCity": "IYK", + "codeIso2Country": "US", + "geonameId": 5359623, + "latitudeCity": 35.656666, + "longitudeCity": -117.82917, + "nameCity": "Inyokern", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "cityId": 3286, + "codeIataCity": "IZM", + "codeIso2Country": "TR", + "geonameId": 311046, + "latitudeCity": 38.29, + "longitudeCity": 27.16, + "nameCity": "Izmir", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "9", + "cityId": 3287, + "codeIataCity": "IZO", + "codeIso2Country": "JP", + "geonameId": 1861084, + "latitudeCity": 35.41485, + "longitudeCity": 132.88576, + "nameCity": "Izumo", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-6", + "cityId": 3288, + "codeIataCity": "IZT", + "codeIso2Country": "MX", + "geonameId": 0, + "latitudeCity": 16.569166, + "longitudeCity": -95.10833, + "nameCity": "Ixtepec", + "timezone": "America/Mexico_City" + }, + { + "GMT": "4.30", + "cityId": 3289, + "codeIataCity": "JAA", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 34.433334, + "longitudeCity": 70.46667, + "nameCity": "Jalalabad", + "timezone": "Asia/Kabul" + }, + { + "GMT": "9.30", + "cityId": 3290, + "codeIataCity": "JAB", + "codeIso2Country": "AU", + "geonameId": 7290714, + "latitudeCity": -12.659722, + "longitudeCity": 132.89194, + "nameCity": "Jabiru", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-7", + "cityId": 3291, + "codeIataCity": "JAC", + "codeIso2Country": "US", + "geonameId": 5828648, + "latitudeCity": 43.602806, + "longitudeCity": -110.73613, + "nameCity": "Jackson", + "timezone": "America/Denver" + }, + { + "GMT": "5.30", + "cityId": 3292, + "codeIataCity": "JAF", + "codeIso2Country": "LK", + "geonameId": 0, + "latitudeCity": 9.791667, + "longitudeCity": 80.075, + "nameCity": "Jaffna", + "timezone": "Asia/Colombo" + }, + { + "GMT": "5", + "cityId": 3293, + "codeIataCity": "JAG", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 28.3, + "longitudeCity": 68.45, + "nameCity": "Jacobabad", + "timezone": "Asia/Karachi" + }, + { + "GMT": "5.30", + "cityId": 3294, + "codeIataCity": "JAI", + "codeIso2Country": "IN", + "geonameId": 1269515, + "latitudeCity": 26.820772, + "longitudeCity": 75.80151, + "nameCity": "Jaipur", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "cityId": 3295, + "codeIataCity": "JAK", + "codeIso2Country": "HT", + "geonameId": 3723779, + "latitudeCity": 18.240557, + "longitudeCity": -72.51861, + "nameCity": "Jacmel", + "timezone": "America/Port-au-Prince" + }, + { + "GMT": "-6", + "cityId": 3296, + "codeIataCity": "JAL", + "codeIso2Country": "MX", + "geonameId": 3526617, + "latitudeCity": 19.472221, + "longitudeCity": -96.781944, + "nameCity": "Jalapa", + "timezone": "America/Mexico_City" + }, + { + "GMT": "2", + "cityId": 3297, + "codeIataCity": "JAM", + "codeIso2Country": "BG", + "geonameId": 732770, + "latitudeCity": 42.516666, + "longitudeCity": 26.483334, + "nameCity": "Jambol", + "timezone": "Europe/Sofia" + }, + { + "GMT": "-6", + "cityId": 3298, + "codeIataCity": "JAN", + "codeIso2Country": "US", + "geonameId": 4431410, + "latitudeCity": 32.298757, + "longitudeCity": -90.18481, + "nameCity": "Jackson", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 3299, + "codeIataCity": "JAP", + "codeIso2Country": "CR", + "geonameId": 0, + "latitudeCity": 9.966667, + "longitudeCity": -84.833336, + "nameCity": "Punta Renes", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "10", + "cityId": 3300, + "codeIataCity": "JAQ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.6, + "longitudeCity": 151.51666, + "nameCity": "Jacquinot Bay", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3.30", + "cityId": 3301, + "codeIataCity": "JAR", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 28.516666, + "longitudeCity": 53.55, + "nameCity": "Jahrom", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-6", + "cityId": 3302, + "codeIataCity": "JAS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 30.933332, + "longitudeCity": -94.01667, + "nameCity": "Jasper", + "timezone": "America/Chicago" + }, + { + "GMT": "12", + "cityId": 3303, + "codeIataCity": "JAT", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 7.75, + "longitudeCity": 168.96666, + "nameCity": "Jabot", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-5", + "cityId": 3304, + "codeIataCity": "JAU", + "codeIso2Country": "PE", + "geonameId": 3937733, + "latitudeCity": -11.75, + "longitudeCity": -75.25, + "nameCity": "Jauja", + "timezone": "America/Lima" + }, + { + "GMT": "-3", + "cityId": 3305, + "codeIataCity": "JAV", + "codeIso2Country": "GL", + "geonameId": 3423146, + "latitudeCity": 69.23444, + "longitudeCity": -51.05111, + "nameCity": "Ilulissat", + "timezone": "America/Godthab" + }, + { + "GMT": "-5", + "cityId": 3306, + "codeIataCity": "JAX", + "codeIso2Country": "US", + "geonameId": 4160021, + "latitudeCity": 30.332184, + "longitudeCity": -81.655651, + "nameCity": "Jacksonville", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "cityId": 3307, + "codeIataCity": "JBK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 37.86667, + "longitudeCity": -122.3, + "nameCity": "Berkeley", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "cityId": 3308, + "codeIataCity": "JBQ", + "codeIso2Country": "DO", + "geonameId": 3492908, + "latitudeCity": 18.575731, + "longitudeCity": -69.98144, + "nameCity": "Higuero", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "-6", + "cityId": 3309, + "codeIataCity": "JBR", + "codeIso2Country": "US", + "geonameId": 4116834, + "latitudeCity": 35.83, + "longitudeCity": -90.64833, + "nameCity": "Jonesboro", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 3310, + "codeIataCity": "JBS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 37.699722, + "longitudeCity": -121.9, + "nameCity": "Pleasanton", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "cityId": 3311, + "codeIataCity": "JCB", + "codeIso2Country": "BR", + "geonameId": 3459869, + "latitudeCity": -27.166668, + "longitudeCity": -51.516666, + "nameCity": "Joacaba", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-3", + "cityId": 3312, + "codeIataCity": "JCH", + "codeIso2Country": "GL", + "geonameId": 3420768, + "latitudeCity": 68.81515, + "longitudeCity": -51.20133, + "nameCity": "Qasigiannguit", + "timezone": "America/Godthab" + }, + { + "GMT": "10", + "cityId": 3313, + "codeIataCity": "JCK", + "codeIso2Country": "AU", + "geonameId": 2162098, + "latitudeCity": -20.583332, + "longitudeCity": 141.7, + "nameCity": "Julia Creek", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "cityId": 3314, + "codeIataCity": "JCM", + "codeIso2Country": "BR", + "geonameId": 3460344, + "latitudeCity": -11.183333, + "longitudeCity": -40.516666, + "nameCity": "Jacobina", + "timezone": "America/Bahia" + }, + { + "GMT": "9", + "cityId": 3315, + "codeIataCity": "JCN", + "codeIso2Country": "KR", + "geonameId": 1843564, + "latitudeCity": 37.466667, + "longitudeCity": 126.6, + "nameCity": "Incheon", + "timezone": "Asia/Seoul" + }, + { + "GMT": "1", + "cityId": 3316, + "codeIataCity": "JCO", + "codeIso2Country": "MT", + "geonameId": 0, + "latitudeCity": 36.016666, + "longitudeCity": 14.333333, + "nameCity": "Comino", + "timezone": "Europe/Malta" + }, + { + "GMT": "-3", + "cityId": 3317, + "codeIataCity": "JCR", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -5.983333, + "longitudeCity": -57.533333, + "nameCity": "Jacareacanga", + "timezone": "America/Santarem" + }, + { + "GMT": "-6", + "cityId": 3318, + "codeIataCity": "JCT", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 30.483334, + "longitudeCity": -99.76667, + "nameCity": "Junction", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 3319, + "codeIataCity": "JCU", + "codeIso2Country": "ES", + "geonameId": 6362987, + "latitudeCity": 35.899166, + "longitudeCity": -5.338333, + "nameCity": "Ceuta", + "timezone": "Africa/Ceuta" + }, + { + "GMT": "-6", + "cityId": 3320, + "codeIataCity": "JCY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 30.283333, + "longitudeCity": -98.416664, + "nameCity": "Johnson", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 3321, + "codeIataCity": "JDA", + "codeIso2Country": "US", + "geonameId": 5733770, + "latitudeCity": 44.416668, + "longitudeCity": -118.95, + "nameCity": "John Day", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "cityId": 3322, + "codeIataCity": "JDF", + "codeIso2Country": "BR", + "geonameId": 3459505, + "latitudeCity": -21.765008, + "longitudeCity": -43.348824, + "nameCity": "Juiz De Fora", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "9", + "cityId": 3323, + "codeIataCity": "JDG", + "codeIso2Country": "KR", + "geonameId": 1846266, + "latitudeCity": 33.3972, + "longitudeCity": 126.71288, + "nameCity": "Jeongseok", + "timezone": "Asia/Seoul" + }, + { + "GMT": "5.30", + "cityId": 3324, + "codeIataCity": "JDH", + "codeIso2Country": "IN", + "geonameId": 1268865, + "latitudeCity": 26.263948, + "longitudeCity": 73.05055, + "nameCity": "Jodhpur", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-7", + "cityId": 3325, + "codeIataCity": "JDN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 47.316666, + "longitudeCity": -106.88333, + "nameCity": "Jordan", + "timezone": "America/Denver" + }, + { + "GMT": "-3", + "cityId": 3326, + "codeIataCity": "JDO", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -7.2, + "longitudeCity": -39.316666, + "nameCity": "Juazeiro Do Norte", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-3", + "cityId": 3327, + "codeIataCity": "JDR", + "codeIso2Country": "BR", + "geonameId": 3446420, + "latitudeCity": -21.087957, + "longitudeCity": -44.2301, + "nameCity": "Sao Joao Del Rei", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "cityId": 3328, + "codeIataCity": "JDY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 33.933334, + "longitudeCity": -118.11667, + "nameCity": "Downey", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "cityId": 3329, + "codeIataCity": "JDZ", + "codeIso2Country": "CN", + "geonameId": 1805680, + "latitudeCity": 29.33549, + "longitudeCity": 117.17879, + "nameCity": "Jingdezhen", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "cityId": 3330, + "codeIataCity": "JED", + "codeIso2Country": "SA", + "geonameId": 105343, + "latitudeCity": 21.670233, + "longitudeCity": 39.150578, + "nameCity": "Jeddah", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-5", + "cityId": 3331, + "codeIataCity": "JEE", + "codeIso2Country": "HT", + "geonameId": 0, + "latitudeCity": 18.662222, + "longitudeCity": -74.16972, + "nameCity": "Jeremie", + "timezone": "America/Port-au-Prince" + }, + { + "GMT": "-6", + "cityId": 3332, + "codeIataCity": "JEF", + "codeIso2Country": "US", + "geonameId": 4392388, + "latitudeCity": 38.59222, + "longitudeCity": -92.15639, + "nameCity": "Jefferson City", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 3333, + "codeIataCity": "JEG", + "codeIso2Country": "GL", + "geonameId": 3424901, + "latitudeCity": 68.7, + "longitudeCity": -52.75, + "nameCity": "Aasiaat", + "timezone": "America/Godthab" + }, + { + "GMT": "12", + "cityId": 3334, + "codeIataCity": "JEJ", + "codeIso2Country": "MH", + "geonameId": 2080636, + "latitudeCity": 7.569916, + "longitudeCity": 168.96513, + "nameCity": "Jeh", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-8", + "cityId": 3335, + "codeIataCity": "JEM", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 37.833332, + "longitudeCity": -122.3, + "nameCity": "Emeryville", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "cityId": 3336, + "codeIataCity": "JEQ", + "codeIso2Country": "BR", + "geonameId": 3468945, + "latitudeCity": -13.85, + "longitudeCity": -40.083332, + "nameCity": "Jequie", + "timezone": "America/Bahia" + }, + { + "GMT": "0", + "cityId": 3337, + "codeIataCity": "JER", + "codeIso2Country": "JE", + "geonameId": 6950955, + "latitudeCity": 49.205296, + "longitudeCity": -2.194344, + "nameCity": "Jersey", + "timezone": "Europe/Jersey" + }, + { + "GMT": "8", + "cityId": 3338, + "codeIataCity": "JFM", + "codeIso2Country": "AU", + "geonameId": 2071223, + "latitudeCity": -32.05, + "longitudeCity": 115.75, + "nameCity": "Fremantle", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "cityId": 3339, + "codeIataCity": "JFN", + "codeIso2Country": "US", + "geonameId": 5150529, + "latitudeCity": 41.733334, + "longitudeCity": -80.76667, + "nameCity": "Jefferson", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 3340, + "codeIataCity": "JFR", + "codeIso2Country": "GL", + "geonameId": 3421193, + "latitudeCity": 62.00028, + "longitudeCity": -49.70028, + "nameCity": "Paamiut", + "timezone": "America/Godthab" + }, + { + "GMT": "5.30", + "cityId": 3341, + "codeIataCity": "JGA", + "codeIso2Country": "IN", + "geonameId": 1258847, + "latitudeCity": 22.463333, + "longitudeCity": 70.01195, + "nameCity": "Jamnagar", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.30", + "cityId": 3342, + "codeIataCity": "JGB", + "codeIso2Country": "IN", + "geonameId": 1269578, + "latitudeCity": 19.066668, + "longitudeCity": 82.03333, + "nameCity": "Jagdalpur", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "8", + "cityId": 3343, + "codeIataCity": "JGD", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 50.370556, + "longitudeCity": 124.11667, + "nameCity": "Jiagedaqi", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9", + "cityId": 3344, + "codeIataCity": "JGE", + "codeIso2Country": "KR", + "geonameId": 0, + "latitudeCity": 34.9, + "longitudeCity": 128.68333, + "nameCity": "Geoje", + "timezone": "Asia/Seoul" + }, + { + "GMT": "8", + "cityId": 3345, + "codeIataCity": "JGN", + "codeIso2Country": "CN", + "geonameId": 1280957, + "latitudeCity": 39.833332, + "longitudeCity": 98.416664, + "nameCity": "Jiayuguan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-3", + "cityId": 3346, + "codeIataCity": "JGO", + "codeIso2Country": "GL", + "geonameId": 3420635, + "latitudeCity": 69.25, + "longitudeCity": -53.566666, + "nameCity": "Qeqertarsuaq", + "timezone": "America/Godthab" + }, + { + "GMT": "-3", + "cityId": 3347, + "codeIataCity": "JGR", + "codeIso2Country": "GL", + "geonameId": 0, + "latitudeCity": 61.233334, + "longitudeCity": -48.1, + "nameCity": "Groennedal", + "timezone": "America/Godthab" + }, + { + "GMT": "8", + "cityId": 3348, + "codeIataCity": "JGS", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 26.899721, + "longitudeCity": 114.7375, + "nameCity": "Ji An", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-8", + "cityId": 3349, + "codeIataCity": "JGX", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 34.166668, + "longitudeCity": -118.28333, + "nameCity": "Glendale", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "cityId": 3350, + "codeIataCity": "JHB", + "codeIso2Country": "MY", + "geonameId": 1732752, + "latitudeCity": 1.638889, + "longitudeCity": 103.67083, + "nameCity": "Johor Bahru", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "-5", + "cityId": 3351, + "codeIataCity": "JHC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 40.783333, + "longitudeCity": -74.1, + "nameCity": "Garden City", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 3352, + "codeIataCity": "JHG", + "codeIso2Country": "CN", + "geonameId": 1785710, + "latitudeCity": 21.973421, + "longitudeCity": 100.76646, + "nameCity": "Jinghong", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-10", + "cityId": 3353, + "codeIataCity": "JHM", + "codeIso2Country": "US", + "geonameId": 5848365, + "latitudeCity": 20.962194, + "longitudeCity": -156.67569, + "nameCity": "Lahaina", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "-3", + "cityId": 3354, + "codeIataCity": "JHS", + "codeIso2Country": "GL", + "geonameId": 3419842, + "latitudeCity": 66.93694, + "longitudeCity": -53.704166, + "nameCity": "Sisimiut", + "timezone": "America/Godthab" + }, + { + "GMT": "-5", + "cityId": 3355, + "codeIataCity": "JHW", + "codeIso2Country": "US", + "geonameId": 5122534, + "latitudeCity": 42.150555, + "longitudeCity": -79.25806, + "nameCity": "Jamestown", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 3356, + "codeIataCity": "JHY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.36667, + "longitudeCity": -71.102776, + "nameCity": "Cambridge", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "cityId": 3357, + "codeIataCity": "JIA", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -11.5, + "longitudeCity": -58.88333, + "nameCity": "Juina", + "timezone": "America/Cuiaba" + }, + { + "GMT": "3", + "cityId": 3358, + "codeIataCity": "JIB", + "codeIso2Country": "DJ", + "geonameId": 223817, + "latitudeCity": 11.552361, + "longitudeCity": 43.149677, + "nameCity": "Djibouti", + "timezone": "Africa/Djibouti" + }, + { + "GMT": "8", + "cityId": 3359, + "codeIataCity": "JIC", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 38.541943, + "longitudeCity": 102.34861, + "nameCity": "Jinchang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "cityId": 3360, + "codeIataCity": "JIJ", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 9.366667, + "longitudeCity": 42.766666, + "nameCity": "Jijiga", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "2", + "cityId": 3361, + "codeIataCity": "JIK", + "codeIso2Country": "GR", + "geonameId": 262583, + "latitudeCity": 37.666668, + "longitudeCity": 26.333332, + "nameCity": "Ikaria Island", + "timezone": "Europe/Athens" + }, + { + "GMT": "8", + "cityId": 3362, + "codeIataCity": "JIL", + "codeIso2Country": "CN", + "geonameId": 2038180, + "latitudeCity": 43.86667, + "longitudeCity": 126.65, + "nameCity": "Jilin", + "timezone": "Asia/Harbin" + }, + { + "GMT": "3", + "cityId": 3363, + "codeIataCity": "JIM", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 7.654444, + "longitudeCity": 36.82111, + "nameCity": "Jimma", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "3", + "cityId": 3364, + "codeIataCity": "JIN", + "codeIso2Country": "UG", + "geonameId": 0, + "latitudeCity": 0.456389, + "longitudeCity": 33.192223, + "nameCity": "Jinja", + "timezone": "Africa/Kampala" + }, + { + "GMT": "-5", + "cityId": 3365, + "codeIataCity": "JIP", + "codeIso2Country": "EC", + "geonameId": 3654410, + "latitudeCity": -1.0, + "longitudeCity": -80.666664, + "nameCity": "Jipijapa", + "timezone": "America/Guayaquil" + }, + { + "GMT": "8", + "cityId": 3366, + "codeIataCity": "JIQ", + "codeIso2Country": "CN", + "geonameId": 1813481, + "latitudeCity": 29.517557, + "longitudeCity": 108.829185, + "nameCity": "Qianjiang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "5.45", + "cityId": 3367, + "codeIataCity": "JIR", + "codeIso2Country": "NP", + "geonameId": 1283240, + "latitudeCity": 27.633333, + "longitudeCity": 86.23333, + "nameCity": "Jiri", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "8", + "cityId": 3368, + "codeIataCity": "JIU", + "codeIso2Country": "CN", + "geonameId": 1805179, + "latitudeCity": 29.7, + "longitudeCity": 115.96667, + "nameCity": "Jiujiang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "5", + "cityId": 3369, + "codeIataCity": "JIW", + "codeIso2Country": "PK", + "geonameId": 1177446, + "latitudeCity": 25.083332, + "longitudeCity": 61.816666, + "nameCity": "Jiwani", + "timezone": "Asia/Karachi" + }, + { + "GMT": "11", + "cityId": 3370, + "codeIataCity": "JJA", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -8.21666, + "longitudeCity": 159.26666, + "nameCity": "Jajao", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-5", + "cityId": 3371, + "codeIataCity": "JJI", + "codeIso2Country": "PE", + "geonameId": 3691474, + "latitudeCity": -7.15, + "longitudeCity": -76.71667, + "nameCity": "Juanjui", + "timezone": "America/Lima" + }, + { + "GMT": "3", + "cityId": 3372, + "codeIataCity": "JJM", + "codeIso2Country": "KE", + "geonameId": 7667660, + "latitudeCity": 0.233194, + "longitudeCity": 38.183334, + "nameCity": "Meru-Kinna", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "8", + "cityId": 3373, + "codeIataCity": "JJN", + "codeIso2Country": "CN", + "geonameId": 1790645, + "latitudeCity": 24.802809, + "longitudeCity": 118.587296, + "nameCity": "Jinjiang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-3", + "cityId": 3374, + "codeIataCity": "JJU", + "codeIso2Country": "GL", + "geonameId": 3420846, + "latitudeCity": 60.716667, + "longitudeCity": -46.033333, + "nameCity": "Qaqortoq", + "timezone": "America/Godthab" + }, + { + "GMT": "1", + "cityId": 3375, + "codeIataCity": "JKG", + "codeIso2Country": "SE", + "geonameId": 2702979, + "latitudeCity": 57.7501, + "longitudeCity": 14.070497, + "nameCity": "Jonkoping", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "2", + "cityId": 3376, + "codeIataCity": "JKH", + "codeIso2Country": "GR", + "geonameId": 251606, + "latitudeCity": 38.345795, + "longitudeCity": 26.142336, + "nameCity": "Chios", + "timezone": "Europe/Athens" + }, + { + "GMT": "2", + "cityId": 3377, + "codeIataCity": "JKL", + "codeIso2Country": "GR", + "geonameId": 6951006, + "latitudeCity": 36.963333, + "longitudeCity": 26.940556, + "nameCity": "Kalymnos Island", + "timezone": "Europe/Athens" + }, + { + "GMT": "5.45", + "cityId": 3378, + "codeIataCity": "JKR", + "codeIso2Country": "NP", + "geonameId": 1283318, + "latitudeCity": 26.708332, + "longitudeCity": 85.92389, + "nameCity": "Janakpur", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "7", + "cityId": 3379, + "codeIataCity": "JKT", + "codeIso2Country": "ID", + "geonameId": 1642911, + "latitudeCity": -6.211544, + "longitudeCity": 106.845172, + "nameCity": "Jakarta", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-6", + "cityId": 3380, + "codeIataCity": "JKV", + "codeIso2Country": "US", + "geonameId": 4700550, + "latitudeCity": 31.966667, + "longitudeCity": -95.333336, + "nameCity": "Jacksonville", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 3381, + "codeIataCity": "JLA", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 60.483334, + "longitudeCity": -149.85, + "nameCity": "Cooper Lodge", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 3382, + "codeIataCity": "JLD", + "codeIso2Country": "SE", + "geonameId": 2697720, + "latitudeCity": 56.05, + "longitudeCity": 12.7, + "nameCity": "Landskrona", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-6", + "cityId": 3383, + "codeIataCity": "JLH", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.083332, + "longitudeCity": -87.98333, + "nameCity": "Arlington Heights", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 3384, + "codeIataCity": "JLN", + "codeIso2Country": "US", + "geonameId": 4392768, + "latitudeCity": 37.149723, + "longitudeCity": -94.49778, + "nameCity": "Joplin", + "timezone": "America/Chicago" + }, + { + "GMT": "5.30", + "cityId": 3385, + "codeIataCity": "JLR", + "codeIso2Country": "IN", + "geonameId": 1269633, + "latitudeCity": 22.666668, + "longitudeCity": 79.925, + "nameCity": "Jabalpur", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-3", + "cityId": 3386, + "codeIataCity": "JLS", + "codeIso2Country": "BR", + "geonameId": 3444864, + "latitudeCity": -20.166668, + "longitudeCity": -50.55, + "nameCity": "Jales", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "cityId": 3387, + "codeIataCity": "JMB", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -14.7, + "longitudeCity": 16.083332, + "nameCity": "Jamba", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-8", + "cityId": 3388, + "codeIataCity": "JMC", + "codeIso2Country": "US", + "geonameId": 5393611, + "latitudeCity": 37.878613, + "longitudeCity": -122.50972, + "nameCity": "Sausalito", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 3389, + "codeIataCity": "JMH", + "codeIso2Country": "US", + "geonameId": 4910713, + "latitudeCity": 42.033333, + "longitudeCity": -88.083336, + "nameCity": "Schaumburg", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 3390, + "codeIataCity": "JMK", + "codeIso2Country": "GR", + "geonameId": 257056, + "latitudeCity": 37.43611, + "longitudeCity": 25.344444, + "nameCity": "Mikonos", + "timezone": "Europe/Athens" + }, + { + "GMT": "5.45", + "cityId": 3391, + "codeIataCity": "JMO", + "codeIso2Country": "NP", + "geonameId": 7910491, + "latitudeCity": 28.783333, + "longitudeCity": 83.73333, + "nameCity": "Jomsom", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-6", + "cityId": 3392, + "codeIataCity": "JMS", + "codeIso2Country": "US", + "geonameId": 5059836, + "latitudeCity": 46.93, + "longitudeCity": -98.67833, + "nameCity": "Jamestown", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 3393, + "codeIataCity": "JMU", + "codeIso2Country": "CN", + "geonameId": 2036581, + "latitudeCity": 46.845394, + "longitudeCity": 130.45541, + "nameCity": "Jiamusi", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-3", + "cityId": 3394, + "codeIataCity": "JNA", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -15.474167, + "longitudeCity": -44.385834, + "nameCity": "Januaria", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "2", + "cityId": 3395, + "codeIataCity": "JNB", + "codeIso2Country": "ZA", + "geonameId": 993800, + "latitudeCity": -26.204103, + "longitudeCity": 28.047305, + "nameCity": "Johannesburg", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "8", + "cityId": 3396, + "codeIataCity": "JNG", + "codeIso2Country": "CN", + "geonameId": 1787031, + "latitudeCity": 35.416668, + "longitudeCity": 116.53333, + "nameCity": "Jining", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-3", + "cityId": 3397, + "codeIataCity": "JNI", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -34.583332, + "longitudeCity": -60.966667, + "nameCity": "Junin", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "4", + "cityId": 3398, + "codeIataCity": "JNJ", + "codeIso2Country": "OM", + "geonameId": 288471, + "latitudeCity": 19.49653, + "longitudeCity": 57.62861, + "nameCity": "Duqm", + "timezone": "Asia/Muscat" + }, + { + "GMT": "-3", + "cityId": 3399, + "codeIataCity": "JNN", + "codeIso2Country": "GL", + "geonameId": 3421765, + "latitudeCity": 60.134167, + "longitudeCity": -45.233612, + "nameCity": "Nanortalik", + "timezone": "America/Godthab" + }, + { + "GMT": "-8", + "cityId": 3400, + "codeIataCity": "JNP", + "codeIso2Country": "US", + "geonameId": 5376890, + "latitudeCity": 33.61667, + "longitudeCity": -117.933334, + "nameCity": "Newport Beach", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "cityId": 3401, + "codeIataCity": "JNS", + "codeIso2Country": "GL", + "geonameId": 3421719, + "latitudeCity": 60.916668, + "longitudeCity": -46.05, + "nameCity": "Narsaq", + "timezone": "America/Godthab" + }, + { + "GMT": "-9", + "cityId": 3402, + "codeIataCity": "JNU", + "codeIso2Country": "US", + "geonameId": 5554072, + "latitudeCity": 58.35932, + "longitudeCity": -134.58339, + "nameCity": "Juneau", + "timezone": "America/Juneau" + }, + { + "GMT": "2", + "cityId": 3403, + "codeIataCity": "JNX", + "codeIso2Country": "GR", + "geonameId": 256632, + "latitudeCity": 37.1, + "longitudeCity": 25.383333, + "nameCity": "Naxos", + "timezone": "Europe/Athens" + }, + { + "GMT": "8", + "cityId": 3404, + "codeIataCity": "JNZ", + "codeIso2Country": "CN", + "geonameId": 2036427, + "latitudeCity": 41.11667, + "longitudeCity": 121.01667, + "nameCity": "Jinzhou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "cityId": 3405, + "codeIataCity": "JOE", + "codeIso2Country": "FI", + "geonameId": 655808, + "latitudeCity": 62.656788, + "longitudeCity": 29.61354, + "nameCity": "Joensuu", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "7", + "cityId": 3406, + "codeIataCity": "JOG", + "codeIso2Country": "ID", + "geonameId": 1621177, + "latitudeCity": -7.785572, + "longitudeCity": 110.43706, + "nameCity": "Yogyakarta", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "2", + "cityId": 3407, + "codeIataCity": "JOH", + "codeIso2Country": "ZA", + "geonameId": 964409, + "latitudeCity": -31.616667, + "longitudeCity": 29.533333, + "nameCity": "Port Saint Johns", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-3", + "cityId": 3408, + "codeIataCity": "JOI", + "codeIso2Country": "BR", + "geonameId": 3459712, + "latitudeCity": -26.233334, + "longitudeCity": -48.783333, + "nameCity": "Joinville", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "3", + "cityId": 3409, + "codeIataCity": "JOK", + "codeIso2Country": "RU", + "geonameId": 466806, + "latitudeCity": 56.716667, + "longitudeCity": 47.9, + "nameCity": "Yoshkar-Ola", + "timezone": "Europe/Moscow" + }, + { + "GMT": "8", + "cityId": 3410, + "codeIataCity": "JOL", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 6.055278, + "longitudeCity": 121.00889, + "nameCity": "Jolo", + "timezone": "Asia/Manila" + }, + { + "GMT": "3", + "cityId": 3411, + "codeIataCity": "JOM", + "codeIso2Country": "TZ", + "geonameId": 151479, + "latitudeCity": -9.354444, + "longitudeCity": 34.77139, + "nameCity": "Njombe", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-10", + "cityId": 3412, + "codeIataCity": "JON", + "codeIso2Country": "UM", + "geonameId": 0, + "latitudeCity": 16.733334, + "longitudeCity": -169.53334, + "nameCity": "Johnston Island", + "timezone": "Pacific/Johnston" + }, + { + "GMT": "10", + "cityId": 3413, + "codeIataCity": "JOP", + "codeIso2Country": "PG", + "geonameId": 2095227, + "latitudeCity": -4.75, + "longitudeCity": 145.01666, + "nameCity": "Josephstaal", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "cityId": 3414, + "codeIataCity": "JOR", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 33.783333, + "longitudeCity": -117.85, + "nameCity": "Orange", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 3415, + "codeIataCity": "JOS", + "codeIso2Country": "NG", + "geonameId": 2335953, + "latitudeCity": 9.868056, + "longitudeCity": 8.893056, + "nameCity": "Jos", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-6", + "cityId": 3416, + "codeIataCity": "JOT", + "codeIso2Country": "US", + "geonameId": 4887398, + "latitudeCity": 41.533333, + "longitudeCity": -88.083336, + "nameCity": "Joliet", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 3417, + "codeIataCity": "JPA", + "codeIso2Country": "BR", + "geonameId": 3397277, + "latitudeCity": -7.145357, + "longitudeCity": -34.94816, + "nameCity": "Joao Pessoa", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-8", + "cityId": 3418, + "codeIataCity": "JPD", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 34.15, + "longitudeCity": -118.15, + "nameCity": "Pasadena", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "cityId": 3419, + "codeIataCity": "JPR", + "codeIso2Country": "BR", + "geonameId": 6319238, + "latitudeCity": -10.870556, + "longitudeCity": -61.84667, + "nameCity": "Ji-Parana", + "timezone": "America/Porto_Velho" + }, + { + "GMT": "-3", + "cityId": 3420, + "codeIataCity": "JQA", + "codeIso2Country": "GL", + "geonameId": 3420937, + "latitudeCity": 70.73194, + "longitudeCity": -52.702778, + "nameCity": "Qaarsut", + "timezone": "America/Godthab" + }, + { + "GMT": "-5", + "cityId": 3421, + "codeIataCity": "JQE", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 7.5, + "longitudeCity": -78.166664, + "nameCity": "Jaque", + "timezone": "America/Panama" + }, + { + "GMT": "-10", + "cityId": 3422, + "codeIataCity": "JRF", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Kapolei", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "5.30", + "cityId": 3423, + "codeIataCity": "JRH", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 26.734484, + "longitudeCity": 94.1849, + "nameCity": "Jorhat", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-3", + "cityId": 3424, + "codeIataCity": "JRK", + "codeIso2Country": "GL", + "geonameId": 3424452, + "latitudeCity": 61.166668, + "longitudeCity": -48.416668, + "nameCity": "Arsuk", + "timezone": "America/Godthab" + }, + { + "GMT": "-4", + "cityId": 3425, + "codeIataCity": "JRN", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -10.305556, + "longitudeCity": -58.488888, + "nameCity": "Juruena", + "timezone": "America/Cuiaba" + }, + { + "GMT": "3", + "cityId": 3426, + "codeIataCity": "JRO", + "codeIso2Country": "TZ", + "geonameId": 153209, + "latitudeCity": -3.424123, + "longitudeCity": 37.065342, + "nameCity": "Kilimanjaro", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "2", + "cityId": 3427, + "codeIataCity": "JRS", + "codeIso2Country": "IL", + "geonameId": 0, + "latitudeCity": 31.8675, + "longitudeCity": 35.214443, + "nameCity": "Jerusalem", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "5.30", + "cityId": 3428, + "codeIataCity": "JSA", + "codeIso2Country": "IN", + "geonameId": 1269507, + "latitudeCity": 26.916668, + "longitudeCity": 70.9, + "nameCity": "Jaisalmer", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "cityId": 3429, + "codeIataCity": "JSD", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.2, + "longitudeCity": -73.13333, + "nameCity": "Stratford", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 3430, + "codeIataCity": "JSH", + "codeIso2Country": "GR", + "geonameId": 253759, + "latitudeCity": 35.216667, + "longitudeCity": 26.116667, + "nameCity": "Sitia", + "timezone": "Europe/Athens" + }, + { + "GMT": "2", + "cityId": 3431, + "codeIataCity": "JSI", + "codeIso2Country": "GR", + "geonameId": 253643, + "latitudeCity": 39.180557, + "longitudeCity": 23.505556, + "nameCity": "Skiathos", + "timezone": "Europe/Athens" + }, + { + "GMT": "-3", + "cityId": 3432, + "codeIataCity": "JSM", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -44.066666, + "longitudeCity": -70.433334, + "nameCity": "Jose De San Martin", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "1", + "cityId": 3433, + "codeIataCity": "JSO", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 59.2, + "longitudeCity": 17.65, + "nameCity": "Sodertalje", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "6", + "cityId": 3434, + "codeIataCity": "JSR", + "codeIso2Country": "BD", + "geonameId": 1336140, + "latitudeCity": 23.17696, + "longitudeCity": 89.160645, + "nameCity": "Jessore", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "-5", + "cityId": 3435, + "codeIataCity": "JST", + "codeIso2Country": "US", + "geonameId": 5195561, + "latitudeCity": 40.316666, + "longitudeCity": -78.83444, + "nameCity": "Johnstown", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 3436, + "codeIataCity": "JSU", + "codeIso2Country": "GL", + "geonameId": 3421982, + "latitudeCity": 65.416664, + "longitudeCity": -52.9, + "nameCity": "Maniitsoq", + "timezone": "America/Godthab" + }, + { + "GMT": "2", + "cityId": 3437, + "codeIataCity": "JSY", + "codeIso2Country": "GR", + "geonameId": 262603, + "latitudeCity": 37.42361, + "longitudeCity": 24.95, + "nameCity": "Syros Island", + "timezone": "Europe/Athens" + }, + { + "GMT": "-3", + "cityId": 3438, + "codeIataCity": "JTC", + "codeIso2Country": "BR", + "geonameId": 3470279, + "latitudeCity": -22.165958, + "longitudeCity": -49.07229, + "nameCity": "Bauru", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-3", + "cityId": 3439, + "codeIataCity": "JTI", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -17.829445, + "longitudeCity": -51.774723, + "nameCity": "Jatai", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "cityId": 3440, + "codeIataCity": "JTO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 34.166668, + "longitudeCity": -118.833336, + "nameCity": "Thousand Oaks", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "cityId": 3441, + "codeIataCity": "JTR", + "codeIso2Country": "GR", + "geonameId": 261787, + "latitudeCity": 36.4, + "longitudeCity": 25.483334, + "nameCity": "Santorini (Thira)", + "timezone": "Europe/Athens" + }, + { + "GMT": "2", + "cityId": 3442, + "codeIataCity": "JTY", + "codeIso2Country": "GR", + "geonameId": 264408, + "latitudeCity": 36.566666, + "longitudeCity": 26.366667, + "nameCity": "Astypalaia Island", + "timezone": "Europe/Athens" + }, + { + "GMT": "-4", + "cityId": 3443, + "codeIataCity": "JUA", + "codeIso2Country": "BR", + "geonameId": 6317397, + "latitudeCity": -11.333333, + "longitudeCity": -57.466667, + "nameCity": "Juara", + "timezone": "America/Cuiaba" + }, + { + "GMT": "3", + "cityId": 3444, + "codeIataCity": "JUB", + "codeIso2Country": "SS", + "geonameId": 373303, + "latitudeCity": 4.866198, + "longitudeCity": 31.601692, + "nameCity": "Juba", + "timezone": "Africa/Juba" + }, + { + "GMT": "8", + "cityId": 3445, + "codeIataCity": "JUH", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 19.222221, + "longitudeCity": 72.84722, + "nameCity": "Chizhou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 3446, + "codeIataCity": "JUI", + "codeIso2Country": "DE", + "geonameId": 2894569, + "latitudeCity": 53.683334, + "longitudeCity": 7.066667, + "nameCity": "Juist", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-3", + "cityId": 3447, + "codeIataCity": "JUJ", + "codeIso2Country": "AR", + "geonameId": 3836564, + "latitudeCity": -24.4, + "longitudeCity": -65.083336, + "nameCity": "Jujuy", + "timezone": "America/Argentina/Jujuy" + }, + { + "GMT": "-5", + "cityId": 3448, + "codeIataCity": "JUL", + "codeIso2Country": "PE", + "geonameId": 3937513, + "latitudeCity": -15.464167, + "longitudeCity": -70.15444, + "nameCity": "Juliaca", + "timezone": "America/Lima" + }, + { + "GMT": "5.45", + "cityId": 3449, + "codeIataCity": "JUM", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 29.273611, + "longitudeCity": 82.19194, + "nameCity": "Jumla", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "10", + "cityId": 3450, + "codeIataCity": "JUN", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -24.833332, + "longitudeCity": 143.06667, + "nameCity": "Jundah", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 3451, + "codeIataCity": "JUO", + "codeIso2Country": "CO", + "geonameId": 3669718, + "latitudeCity": 7.116667, + "longitudeCity": -77.75, + "nameCity": "Jurado", + "timezone": "America/Bogota" + }, + { + "GMT": "8", + "cityId": 3452, + "codeIataCity": "JUR", + "codeIso2Country": "AU", + "geonameId": 2079020, + "latitudeCity": -30.266666, + "longitudeCity": 115.05, + "nameCity": "Jurien Bay", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "cityId": 3453, + "codeIataCity": "JUT", + "codeIso2Country": "HN", + "geonameId": 3608503, + "latitudeCity": 14.673333, + "longitudeCity": -86.29305, + "nameCity": "Juticalpa", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-3", + "cityId": 3454, + "codeIataCity": "JUV", + "codeIso2Country": "GL", + "geonameId": 3418910, + "latitudeCity": 72.78528, + "longitudeCity": -56.150833, + "nameCity": "Upernavik", + "timezone": "America/Godthab" + }, + { + "GMT": "8", + "cityId": 3455, + "codeIataCity": "JUZ", + "codeIso2Country": "CN", + "geonameId": 1805528, + "latitudeCity": 28.966667, + "longitudeCity": 118.833336, + "nameCity": "Juzhou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "cityId": 3456, + "codeIataCity": "JVA", + "codeIso2Country": "MG", + "geonameId": 1072915, + "latitudeCity": -18.8, + "longitudeCity": 45.283333, + "nameCity": "Ankavandra", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-5", + "cityId": 3457, + "codeIataCity": "JVI", + "codeIso2Country": "US", + "geonameId": 5104755, + "latitudeCity": 42.783333, + "longitudeCity": -104.61667, + "nameCity": "Manville", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 3458, + "codeIataCity": "JVL", + "codeIso2Country": "US", + "geonameId": 5257754, + "latitudeCity": 42.683334, + "longitudeCity": -89.01667, + "nameCity": "Janesville", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 3459, + "codeIataCity": "JWA", + "codeIso2Country": "BW", + "geonameId": 0, + "latitudeCity": -24.6, + "longitudeCity": 24.666668, + "nameCity": "Jwaneng", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "3.30", + "cityId": 3460, + "codeIataCity": "JWN", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 36.774418, + "longitudeCity": 48.369854, + "nameCity": "Zanjan", + "timezone": "Asia/Tehran" + }, + { + "GMT": "8", + "cityId": 3461, + "codeIataCity": "JXA", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 45.306084, + "longitudeCity": 130.99675, + "nameCity": "Jixi", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 3462, + "codeIataCity": "JXN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.25889, + "longitudeCity": -84.46139, + "nameCity": "Jackson", + "timezone": "America/Detroit" + }, + { + "GMT": "3.30", + "cityId": 3463, + "codeIataCity": "JYR", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 28.716667, + "longitudeCity": 57.666668, + "nameCity": "Jiroft", + "timezone": "Asia/Tehran" + }, + { + "GMT": "2", + "cityId": 3464, + "codeIataCity": "JYV", + "codeIso2Country": "FI", + "geonameId": 655194, + "latitudeCity": 62.40362, + "longitudeCity": 25.68143, + "nameCity": "Jyvaskyla", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "8", + "cityId": 3465, + "codeIataCity": "JZH", + "codeIso2Country": "CN", + "geonameId": 1799836, + "latitudeCity": 32.856667, + "longitudeCity": 103.68306, + "nameCity": "Song Pan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "cityId": 3466, + "codeIataCity": "KAA", + "codeIso2Country": "ZM", + "geonameId": 912764, + "latitudeCity": -10.215833, + "longitudeCity": 31.13, + "nameCity": "Kasama", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "2", + "cityId": 3467, + "codeIataCity": "KAB", + "codeIso2Country": "ZW", + "geonameId": 0, + "latitudeCity": -16.518333, + "longitudeCity": 28.885279, + "nameCity": "Kariba", + "timezone": "Africa/Harare" + }, + { + "GMT": "2", + "cityId": 3468, + "codeIataCity": "KAC", + "codeIso2Country": "SY", + "geonameId": 0, + "latitudeCity": 37.031025, + "longitudeCity": 41.20556, + "nameCity": "Kameshli", + "timezone": "Asia/Damascus" + }, + { + "GMT": "1", + "cityId": 3469, + "codeIataCity": "KAD", + "codeIso2Country": "NG", + "geonameId": 2335727, + "latitudeCity": 10.595833, + "longitudeCity": 7.440278, + "nameCity": "Kaduna", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-9", + "cityId": 3470, + "codeIataCity": "KAE", + "codeIso2Country": "US", + "geonameId": 5554194, + "latitudeCity": 56.966667, + "longitudeCity": -133.95, + "nameCity": "Kake", + "timezone": "America/Sitka" + }, + { + "GMT": "10", + "cityId": 3471, + "codeIataCity": "KAF", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.283333, + "longitudeCity": 155.35, + "nameCity": "Karato", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "cityId": 3472, + "codeIataCity": "KAG", + "codeIso2Country": "KR", + "geonameId": 1838469, + "latitudeCity": 37.75222, + "longitudeCity": 128.94972, + "nameCity": "Gangneung", + "timezone": "Asia/Seoul" + }, + { + "GMT": "-4", + "cityId": 3473, + "codeIataCity": "KAI", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 5.883333, + "longitudeCity": -60.619446, + "nameCity": "Kaieteur", + "timezone": "America/Guyana" + }, + { + "GMT": "2", + "cityId": 3474, + "codeIataCity": "KAJ", + "codeIso2Country": "FI", + "geonameId": 654899, + "latitudeCity": 64.27778, + "longitudeCity": 27.688889, + "nameCity": "Kajaani", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "10", + "cityId": 3475, + "codeIataCity": "KAK", + "codeIso2Country": "PG", + "geonameId": 2094643, + "latitudeCity": -4.666667, + "longitudeCity": 146.0, + "nameCity": "Kar", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 3476, + "codeIataCity": "KAL", + "codeIso2Country": "US", + "geonameId": 5865721, + "latitudeCity": 64.321945, + "longitudeCity": -158.73611, + "nameCity": "Kaltag", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "cityId": 3477, + "codeIataCity": "KAM", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 15.35, + "longitudeCity": 41.666668, + "nameCity": "Kamaran Island", + "timezone": "Asia/Aden" + }, + { + "GMT": "1", + "cityId": 3478, + "codeIataCity": "KAN", + "codeIso2Country": "NG", + "geonameId": 2335204, + "latitudeCity": 12.045549, + "longitudeCity": 8.522271, + "nameCity": "Kano", + "timezone": "Africa/Lagos" + }, + { + "GMT": "2", + "cityId": 3479, + "codeIataCity": "KAO", + "codeIso2Country": "FI", + "geonameId": 649924, + "latitudeCity": 65.99028, + "longitudeCity": 29.233889, + "nameCity": "Kuusamo", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "2", + "cityId": 3480, + "codeIataCity": "KAP", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -8.5, + "longitudeCity": 22.666668, + "nameCity": "Kapanga", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "10", + "cityId": 3481, + "codeIataCity": "KAQ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.133333, + "longitudeCity": 146.81667, + "nameCity": "Kamulai", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "cityId": 3482, + "codeIataCity": "KAR", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 5.883333, + "longitudeCity": -60.61667, + "nameCity": "Kamarang", + "timezone": "America/Guyana" + }, + { + "GMT": "2", + "cityId": 3483, + "codeIataCity": "KAS", + "codeIso2Country": "NA", + "geonameId": 3356343, + "latitudeCity": -28.0, + "longitudeCity": 18.733334, + "nameCity": "Karasburg", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "12", + "cityId": 3484, + "codeIataCity": "KAT", + "codeIso2Country": "NZ", + "geonameId": 6228827, + "latitudeCity": -35.066284, + "longitudeCity": 173.28542, + "nameCity": "Kaitaia", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "2", + "cityId": 3485, + "codeIataCity": "KAU", + "codeIso2Country": "FI", + "geonameId": 632978, + "latitudeCity": 63.1, + "longitudeCity": 23.083332, + "nameCity": "Kauhava", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-4", + "cityId": 3486, + "codeIataCity": "KAV", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 5.666667, + "longitudeCity": -61.766666, + "nameCity": "Kavanayen", + "timezone": "America/Caracas" + }, + { + "GMT": "6.30", + "cityId": 3487, + "codeIataCity": "KAW", + "codeIso2Country": "MM", + "geonameId": 1319573, + "latitudeCity": 10.05, + "longitudeCity": 98.51667, + "nameCity": "Kawthaung", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "8", + "cityId": 3488, + "codeIataCity": "KAX", + "codeIso2Country": "AU", + "geonameId": 2068835, + "latitudeCity": -27.866667, + "longitudeCity": 114.13333, + "nameCity": "Kalbarri", + "timezone": "Australia/Perth" + }, + { + "GMT": "12", + "cityId": 3489, + "codeIataCity": "KAY", + "codeIso2Country": "FJ", + "geonameId": 2198148, + "latitudeCity": -17.041111, + "longitudeCity": 178.56612, + "nameCity": "Wakaya Island", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "9", + "cityId": 3490, + "codeIataCity": "KAZ", + "codeIso2Country": "ID", + "geonameId": 1640933, + "latitudeCity": 1.166667, + "longitudeCity": 127.86667, + "nameCity": "Kau", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "0", + "cityId": 3491, + "codeIataCity": "KBA", + "codeIso2Country": "SL", + "geonameId": 0, + "latitudeCity": 9.333333, + "longitudeCity": -12.0, + "nameCity": "Kabala", + "timezone": "Africa/Freetown" + }, + { + "GMT": "9.30", + "cityId": 3492, + "codeIataCity": "KBB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.766666, + "longitudeCity": 129.21666, + "nameCity": "Kirkimbie", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-9", + "cityId": 3493, + "codeIataCity": "KBC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 66.26667, + "longitudeCity": -145.8, + "nameCity": "Birch Creek", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "cityId": 3494, + "codeIataCity": "KBD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.333332, + "longitudeCity": 124.35, + "nameCity": "Kimberley Downs", + "timezone": "Australia/Perth" + }, + { + "GMT": "-9", + "cityId": 3495, + "codeIataCity": "KBE", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 55.929443, + "longitudeCity": -131.57, + "nameCity": "Bell Island", + "timezone": "America/Sitka" + }, + { + "GMT": "9", + "cityId": 3496, + "codeIataCity": "KBF", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.716667, + "longitudeCity": 138.45, + "nameCity": "Karubaga", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "3", + "cityId": 3497, + "codeIataCity": "KBG", + "codeIso2Country": "UG", + "geonameId": 0, + "latitudeCity": 2.329444, + "longitudeCity": 31.49639, + "nameCity": "Kabalega Falls", + "timezone": "Africa/Kampala" + }, + { + "GMT": "5", + "cityId": 3498, + "codeIataCity": "KBH", + "codeIso2Country": "PK", + "geonameId": 1342927, + "latitudeCity": 29.133333, + "longitudeCity": 66.51667, + "nameCity": "Kalat", + "timezone": "Asia/Karachi" + }, + { + "GMT": "1", + "cityId": 3499, + "codeIataCity": "KBI", + "codeIso2Country": "CM", + "geonameId": 0, + "latitudeCity": 2.95, + "longitudeCity": 9.916667, + "nameCity": "Kribi", + "timezone": "Africa/Douala" + }, + { + "GMT": "9.30", + "cityId": 3500, + "codeIataCity": "KBJ", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -24.25, + "longitudeCity": 131.49445, + "nameCity": "Kings Canyon", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-9", + "cityId": 3501, + "codeIataCity": "KBK", + "codeIso2Country": "US", + "geonameId": 5557293, + "latitudeCity": 57.666668, + "longitudeCity": -136.16667, + "nameCity": "Klag Bay", + "timezone": "America/Sitka" + }, + { + "GMT": "4.30", + "cityId": 3502, + "codeIataCity": "KBL", + "codeIso2Country": "AF", + "geonameId": 1138958, + "latitudeCity": 34.56069, + "longitudeCity": 69.21152, + "nameCity": "Kabul", + "timezone": "Asia/Kabul" + }, + { + "GMT": "10", + "cityId": 3503, + "codeIataCity": "KBM", + "codeIso2Country": "PG", + "geonameId": 2095130, + "latitudeCity": -6.166667, + "longitudeCity": 147.16667, + "nameCity": "Kabwum", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "cityId": 3504, + "codeIataCity": "KBN", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -6.116667, + "longitudeCity": 24.533333, + "nameCity": "Kabinda", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "2", + "cityId": 3505, + "codeIataCity": "KBO", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -6.088056, + "longitudeCity": 26.916668, + "nameCity": "Kabalo", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "2", + "cityId": 3506, + "codeIataCity": "KBQ", + "codeIso2Country": "MW", + "geonameId": 0, + "latitudeCity": -33.466667, + "longitudeCity": 13.016667, + "nameCity": "Kasungu", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "8", + "cityId": 3507, + "codeIataCity": "KBR", + "codeIso2Country": "MY", + "geonameId": 1736376, + "latitudeCity": 6.17057, + "longitudeCity": 102.29092, + "nameCity": "Kota Bharu", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "0", + "cityId": 3508, + "codeIataCity": "KBS", + "codeIso2Country": "SL", + "geonameId": 0, + "latitudeCity": 7.943889, + "longitudeCity": -11.761944, + "nameCity": "Bo", + "timezone": "Africa/Freetown" + }, + { + "GMT": "12", + "cityId": 3509, + "codeIataCity": "KBT", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 9.166667, + "longitudeCity": 170.91667, + "nameCity": "Kaben", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "8", + "cityId": 3510, + "codeIataCity": "KBU", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.333333, + "longitudeCity": 116.333336, + "nameCity": "Kotabaru", + "timezone": "Asia/Makassar" + }, + { + "GMT": "7", + "cityId": 3511, + "codeIataCity": "KBV", + "codeIso2Country": "TH", + "geonameId": 1152633, + "latitudeCity": 8.097281, + "longitudeCity": 98.98062, + "nameCity": "Krabi", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "9", + "cityId": 3512, + "codeIataCity": "KBX", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -1.0, + "longitudeCity": 132.25, + "nameCity": "Kambuaya", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "9.30", + "cityId": 3513, + "codeIataCity": "KBY", + "codeIso2Country": "AU", + "geonameId": 2060937, + "latitudeCity": -33.0, + "longitudeCity": 134.0, + "nameCity": "Streaky Bay", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "12", + "cityId": 3514, + "codeIataCity": "KBZ", + "codeIso2Country": "NZ", + "geonameId": 2189272, + "latitudeCity": -42.416668, + "longitudeCity": 173.68333, + "nameCity": "Kaikoura", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "8", + "cityId": 3515, + "codeIataCity": "KCA", + "codeIso2Country": "CN", + "geonameId": 1529363, + "latitudeCity": 41.166668, + "longitudeCity": 83.7, + "nameCity": "Kuqa", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-3", + "cityId": 3516, + "codeIataCity": "KCB", + "codeIso2Country": "SR", + "geonameId": 0, + "latitudeCity": 3.15, + "longitudeCity": -55.716667, + "nameCity": "Kasikasima", + "timezone": "America/Paramaribo" + }, + { + "GMT": "-9", + "cityId": 3517, + "codeIataCity": "KCC", + "codeIso2Country": "US", + "geonameId": 5845435, + "latitudeCity": 55.983334, + "longitudeCity": -132.83333, + "nameCity": "Coffman Cove", + "timezone": "America/Sitka" + }, + { + "GMT": "9", + "cityId": 3518, + "codeIataCity": "KCD", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -6.2, + "longitudeCity": 138.71666, + "nameCity": "Kamur", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "10", + "cityId": 3519, + "codeIataCity": "KCE", + "codeIso2Country": "AU", + "geonameId": 6354936, + "latitudeCity": -20.55, + "longitudeCity": 147.86667, + "nameCity": "Collinsville", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5", + "cityId": 3520, + "codeIataCity": "KCF", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 27.2, + "longitudeCity": 69.15, + "nameCity": "Kadanwari", + "timezone": "Asia/Karachi" + }, + { + "GMT": "8", + "cityId": 3521, + "codeIataCity": "KCH", + "codeIso2Country": "MY", + "geonameId": 1735634, + "latitudeCity": 1.484167, + "longitudeCity": 110.340836, + "nameCity": "Kuching", + "timezone": "Asia/Kuching" + }, + { + "GMT": "9", + "cityId": 3522, + "codeIataCity": "KCI", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -8.35, + "longitudeCity": 127.05, + "nameCity": "Kon", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "10", + "cityId": 3523, + "codeIataCity": "KCJ", + "codeIso2Country": "PG", + "geonameId": 2093635, + "latitudeCity": -7.266667, + "longitudeCity": 143.6, + "nameCity": "Komaio", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 3524, + "codeIataCity": "KCK", + "codeIso2Country": "RU", + "geonameId": 2022083, + "latitudeCity": 39.158333, + "longitudeCity": -94.65, + "nameCity": "Kirensk", + "timezone": "Asia/Irkutsk" + }, + { + "GMT": "-9", + "cityId": 3525, + "codeIataCity": "KCL", + "codeIso2Country": "US", + "geonameId": 5859193, + "latitudeCity": 56.308334, + "longitudeCity": -158.53194, + "nameCity": "Chignik", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "cityId": 3526, + "codeIataCity": "KCM", + "codeIso2Country": "TR", + "geonameId": 310859, + "latitudeCity": 37.534443, + "longitudeCity": 36.950558, + "nameCity": "Kahramanmaras", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-10", + "cityId": 3527, + "codeIataCity": "KCN", + "codeIso2Country": "US", + "geonameId": 5859091, + "latitudeCity": 53.4, + "longitudeCity": -167.55, + "nameCity": "Chernofski", + "timezone": "America/Adak" + }, + { + "GMT": "3", + "cityId": 3528, + "codeIataCity": "KCO", + "codeIso2Country": "TR", + "geonameId": 745028, + "latitudeCity": 40.75, + "longitudeCity": 29.833332, + "nameCity": "Kocaeli", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "2", + "cityId": 3529, + "codeIataCity": "KCP", + "codeIso2Country": "UA", + "geonameId": 706950, + "latitudeCity": 48.683334, + "longitudeCity": 26.616667, + "nameCity": "Kamenets-podolskiy", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-9", + "cityId": 3530, + "codeIataCity": "KCR", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 63.57, + "longitudeCity": -155.99, + "nameCity": "Colorado Creek", + "timezone": "America/Anchorage" + }, + { + "GMT": "9.30", + "cityId": 3531, + "codeIataCity": "KCS", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -24.383333, + "longitudeCity": 131.68333, + "nameCity": "Kings Creek Station", + "timezone": "Australia/Darwin" + }, + { + "GMT": "5.30", + "cityId": 3532, + "codeIataCity": "KCT", + "codeIso2Country": "LK", + "geonameId": 1239829, + "latitudeCity": 5.983056, + "longitudeCity": 80.33305, + "nameCity": "Koggala", + "timezone": "Asia/Colombo" + }, + { + "GMT": "3", + "cityId": 3533, + "codeIataCity": "KCU", + "codeIso2Country": "UG", + "geonameId": 0, + "latitudeCity": 1.683333, + "longitudeCity": 31.716667, + "nameCity": "Masindi", + "timezone": "Africa/Kampala" + }, + { + "GMT": "9", + "cityId": 3534, + "codeIataCity": "KCZ", + "codeIso2Country": "JP", + "geonameId": 1926099, + "latitudeCity": 33.547688, + "longitudeCity": 133.67485, + "nameCity": "Kochi", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "0", + "cityId": 3535, + "codeIataCity": "KDA", + "codeIso2Country": "SN", + "geonameId": 0, + "latitudeCity": 12.883333, + "longitudeCity": -14.966667, + "nameCity": "Kolda", + "timezone": "Africa/Dakar" + }, + { + "GMT": "8", + "cityId": 3536, + "codeIataCity": "KDB", + "codeIso2Country": "AU", + "geonameId": 2068792, + "latitudeCity": -30.0, + "longitudeCity": 120.0, + "nameCity": "Kambalda", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "cityId": 3537, + "codeIataCity": "KDC", + "codeIso2Country": "BJ", + "geonameId": 0, + "latitudeCity": 11.116667, + "longitudeCity": 2.916667, + "nameCity": "Kandi", + "timezone": "Africa/Porto-Novo" + }, + { + "GMT": "5", + "cityId": 3538, + "codeIataCity": "KDD", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 27.780556, + "longitudeCity": 66.630554, + "nameCity": "Khuzdar", + "timezone": "Asia/Karachi" + }, + { + "GMT": "10", + "cityId": 3539, + "codeIataCity": "KDE", + "codeIso2Country": "PG", + "geonameId": 2093404, + "latitudeCity": -5.683333, + "longitudeCity": 142.73334, + "nameCity": "Koroba", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "4.30", + "cityId": 3540, + "codeIataCity": "KDH", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 31.506945, + "longitudeCity": 65.8475, + "nameCity": "Kandahar", + "timezone": "Asia/Kabul" + }, + { + "GMT": "8", + "cityId": 3541, + "codeIataCity": "KDI", + "codeIso2Country": "ID", + "geonameId": 1640344, + "latitudeCity": -4.085501, + "longitudeCity": 122.409546, + "nameCity": "Kendari", + "timezone": "Asia/Makassar" + }, + { + "GMT": "1", + "cityId": 3542, + "codeIataCity": "KDJ", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -0.15, + "longitudeCity": 10.766667, + "nameCity": "Ndjole", + "timezone": "Africa/Libreville" + }, + { + "GMT": "2", + "cityId": 3543, + "codeIataCity": "KDL", + "codeIso2Country": "EE", + "geonameId": 592225, + "latitudeCity": 58.983334, + "longitudeCity": 22.8, + "nameCity": "Kardla", + "timezone": "Europe/Tallinn" + }, + { + "GMT": "5", + "cityId": 3544, + "codeIataCity": "KDM", + "codeIso2Country": "MV", + "geonameId": 8411013, + "latitudeCity": 0.491527, + "longitudeCity": 72.99593, + "nameCity": "Kaadedhdhoo", + "timezone": "Indian/Maldives" + }, + { + "GMT": "1", + "cityId": 3545, + "codeIataCity": "KDN", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -2.5, + "longitudeCity": 11.166667, + "nameCity": "Ndende", + "timezone": "Africa/Libreville" + }, + { + "GMT": "5", + "cityId": 3546, + "codeIataCity": "KDO", + "codeIso2Country": "MV", + "geonameId": 0, + "latitudeCity": 1.883333, + "longitudeCity": 73.51667, + "nameCity": "Kadhdhoo", + "timezone": "Indian/Maldives" + }, + { + "GMT": "10", + "cityId": 3547, + "codeIataCity": "KDP", + "codeIso2Country": "PG", + "geonameId": 2094756, + "latitudeCity": -5.866667, + "longitudeCity": 143.5, + "nameCity": "Kandep", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 3548, + "codeIataCity": "KDQ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -3.605556, + "longitudeCity": 141.05, + "nameCity": "Kamberatoro", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 3549, + "codeIataCity": "KDR", + "codeIso2Country": "PG", + "geonameId": 2093967, + "latitudeCity": 41.61667, + "longitudeCity": 25.333332, + "nameCity": "Kandrian", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 3550, + "codeIataCity": "KDS", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -24.333332, + "longitudeCity": 139.16667, + "nameCity": "Kamaran Downs", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "7", + "cityId": 3551, + "codeIataCity": "KDT", + "codeIso2Country": "TH", + "geonameId": 0, + "latitudeCity": 14.1, + "longitudeCity": 99.916664, + "nameCity": "Kamphangsaen", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "5", + "cityId": 3552, + "codeIataCity": "KDU", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 35.3, + "longitudeCity": 75.73333, + "nameCity": "Skardu", + "timezone": "Asia/Karachi" + }, + { + "GMT": "12", + "cityId": 3553, + "codeIataCity": "KDV", + "codeIso2Country": "FJ", + "geonameId": 8555973, + "latitudeCity": -19.053968, + "longitudeCity": 178.15607, + "nameCity": "Kandavu", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "5.30", + "cityId": 3554, + "codeIataCity": "KDW", + "codeIso2Country": "LK", + "geonameId": 1241622, + "latitudeCity": 7.3, + "longitudeCity": 80.63333, + "nameCity": "Kandy", + "timezone": "Asia/Colombo" + }, + { + "GMT": "3", + "cityId": 3555, + "codeIataCity": "KDX", + "codeIso2Country": "SD", + "geonameId": 373141, + "latitudeCity": 11.01667, + "longitudeCity": 29.71667, + "nameCity": "Kadugli", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "5.30", + "cityId": 3556, + "codeIataCity": "KDY", + "codeIso2Country": "LK", + "geonameId": 0, + "latitudeCity": 7.466667, + "longitudeCity": 80.51667, + "nameCity": "Mahaweli", + "timezone": "Asia/Colombo" + }, + { + "GMT": "5.30", + "cityId": 3557, + "codeIataCity": "KDZ", + "codeIso2Country": "LK", + "geonameId": 1240994, + "latitudeCity": 7.330555, + "longitudeCity": 80.64167, + "nameCity": "Katugastota", + "timezone": "Asia/Colombo" + }, + { + "GMT": "9", + "cityId": 3558, + "codeIataCity": "KEA", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -7.033333, + "longitudeCity": 140.03334, + "nameCity": "Keisah", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-9", + "cityId": 3559, + "codeIataCity": "KEB", + "codeIso2Country": "US", + "geonameId": 5861692, + "latitudeCity": 59.35278, + "longitudeCity": -151.92223, + "nameCity": "Nanwalek", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "cityId": 3560, + "codeIataCity": "KEC", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -10.333333, + "longitudeCity": 28.75, + "nameCity": "Kasenga", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "0", + "cityId": 3561, + "codeIataCity": "KED", + "codeIso2Country": "MR", + "geonameId": 0, + "latitudeCity": 16.161388, + "longitudeCity": -13.507778, + "nameCity": "Kaedi", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "1", + "cityId": 3562, + "codeIataCity": "KEE", + "codeIso2Country": "CG", + "geonameId": 0, + "latitudeCity": -0.083333, + "longitudeCity": 14.533333, + "nameCity": "Kelle", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "10", + "cityId": 3563, + "codeIataCity": "KEG", + "codeIso2Country": "PG", + "geonameId": 2094273, + "latitudeCity": -5.8, + "longitudeCity": 145.08333, + "nameCity": "Keglsugl", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "cityId": 3564, + "codeIataCity": "KEH", + "codeIso2Country": "US", + "geonameId": 5809844, + "latitudeCity": 47.755, + "longitudeCity": -122.25806, + "nameCity": "Kenmore Air Harbor", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9", + "cityId": 3565, + "codeIataCity": "KEI", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -6.566667, + "longitudeCity": 139.33333, + "nameCity": "Kepi", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "7", + "cityId": 3566, + "codeIataCity": "KEJ", + "codeIso2Country": "RU", + "geonameId": 1503901, + "latitudeCity": 55.280567, + "longitudeCity": 86.11623, + "nameCity": "Kemerovo", + "timezone": "Asia/Novokuznetsk" + }, + { + "GMT": "-9", + "cityId": 3567, + "codeIataCity": "KEK", + "codeIso2Country": "US", + "geonameId": 5861512, + "latitudeCity": 59.355278, + "longitudeCity": -157.4775, + "nameCity": "Ekwok", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 3568, + "codeIataCity": "KEL", + "codeIso2Country": "DE", + "geonameId": 2891122, + "latitudeCity": 54.380833, + "longitudeCity": 10.143333, + "nameCity": "Kiel", + "timezone": "Europe/Berlin" + }, + { + "GMT": "2", + "cityId": 3569, + "codeIataCity": "KEM", + "codeIso2Country": "FI", + "geonameId": 653281, + "latitudeCity": 65.78006, + "longitudeCity": 24.57677, + "nameCity": "Kemi", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "0", + "cityId": 3570, + "codeIataCity": "KEN", + "codeIso2Country": "SL", + "geonameId": 0, + "latitudeCity": 7.883333, + "longitudeCity": -11.183333, + "nameCity": "Kenema", + "timezone": "Africa/Freetown" + }, + { + "GMT": "0", + "cityId": 3571, + "codeIataCity": "KEO", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 9.49, + "longitudeCity": -7.570833, + "nameCity": "Odienne", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "5.45", + "cityId": 3572, + "codeIataCity": "KEP", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 28.1325, + "longitudeCity": 81.576385, + "nameCity": "Nepalganj", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "9", + "cityId": 3573, + "codeIataCity": "KEQ", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -5.833333, + "longitudeCity": 134.83333, + "nameCity": "Kebar", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "3.30", + "cityId": 3574, + "codeIataCity": "KER", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 30.258778, + "longitudeCity": 56.96192, + "nameCity": "Kerman", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-6", + "cityId": 3575, + "codeIataCity": "KES", + "codeIso2Country": "CA", + "geonameId": 6165406, + "latitudeCity": 56.016666, + "longitudeCity": -96.5, + "nameCity": "Kelsey", + "timezone": "America/Winnipeg" + }, + { + "GMT": "6.30", + "cityId": 3576, + "codeIataCity": "KET", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 21.3, + "longitudeCity": 99.61667, + "nameCity": "Keng Tung", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-9", + "cityId": 3577, + "codeIataCity": "KEU", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 67.916664, + "longitudeCity": -162.28334, + "nameCity": "Kelly Bar", + "timezone": "America/Nome" + }, + { + "GMT": "2", + "cityId": 3578, + "codeIataCity": "KEV", + "codeIso2Country": "FI", + "geonameId": 634963, + "latitudeCity": 61.583332, + "longitudeCity": 24.75, + "nameCity": "Kuorevesi", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-6", + "cityId": 3579, + "codeIataCity": "KEW", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.99222, + "longitudeCity": -92.83889, + "nameCity": "Keewaywin", + "timezone": "America/Winnipeg" + }, + { + "GMT": "10", + "cityId": 3580, + "codeIataCity": "KEX", + "codeIso2Country": "PG", + "geonameId": 2094786, + "latitudeCity": -7.483333, + "longitudeCity": 145.91667, + "nameCity": "Kanabea", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 3581, + "codeIataCity": "KEY", + "codeIso2Country": "KE", + "geonameId": 0, + "latitudeCity": -0.366667, + "longitudeCity": 35.283333, + "nameCity": "Kericho", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "5.30", + "cityId": 3582, + "codeIataCity": "KEZ", + "codeIso2Country": "LK", + "geonameId": 1240622, + "latitudeCity": 6.983333, + "longitudeCity": 79.916664, + "nameCity": "Kelaniya", + "timezone": "Asia/Colombo" + }, + { + "GMT": "0", + "cityId": 3583, + "codeIataCity": "KFA", + "codeIso2Country": "MR", + "geonameId": 0, + "latitudeCity": 16.588888, + "longitudeCity": -11.405278, + "nameCity": "Kiffa", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "8", + "cityId": 3584, + "codeIataCity": "KFE", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -22.2833, + "longitudeCity": 119.433, + "nameCity": "Cloudbreak", + "timezone": "Australia/Perth" + }, + { + "GMT": "9.30", + "cityId": 3585, + "codeIataCity": "KFG", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.433332, + "longitudeCity": 130.81667, + "nameCity": "Kalkurung", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-9", + "cityId": 3586, + "codeIataCity": "KFP", + "codeIso2Country": "US", + "geonameId": 5861959, + "latitudeCity": 54.849167, + "longitudeCity": -163.40916, + "nameCity": "False Pass", + "timezone": "America/Nome" + }, + { + "GMT": "2", + "cityId": 3587, + "codeIataCity": "KGA", + "codeIso2Country": "CD", + "geonameId": 214481, + "latitudeCity": -5.9, + "longitudeCity": 22.416668, + "nameCity": "Kananga", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "10", + "cityId": 3588, + "codeIataCity": "KGB", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.133333, + "longitudeCity": 147.65, + "nameCity": "Konge", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9.30", + "cityId": 3589, + "codeIataCity": "KGC", + "codeIso2Country": "AU", + "geonameId": 2068429, + "latitudeCity": -35.709305, + "longitudeCity": 137.52332, + "nameCity": "Kingscote", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "2", + "cityId": 3590, + "codeIataCity": "KGD", + "codeIso2Country": "RU", + "geonameId": 554234, + "latitudeCity": 54.882656, + "longitudeCity": 20.586645, + "nameCity": "Kaliningrad", + "timezone": "Europe/Kaliningrad" + }, + { + "GMT": "11", + "cityId": 3591, + "codeIataCity": "KGE", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -8.165, + "longitudeCity": 157.5861, + "nameCity": "Kagau", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "6", + "cityId": 3592, + "codeIataCity": "KGF", + "codeIso2Country": "KZ", + "geonameId": 609655, + "latitudeCity": 49.67526, + "longitudeCity": 73.32836, + "nameCity": "Karaganda", + "timezone": "Asia/Almaty" + }, + { + "GMT": "0", + "cityId": 3593, + "codeIataCity": "KGG", + "codeIso2Country": "SN", + "geonameId": 0, + "latitudeCity": 12.570833, + "longitudeCity": -12.217222, + "nameCity": "Kedougou", + "timezone": "Africa/Dakar" + }, + { + "GMT": "10", + "cityId": 3594, + "codeIataCity": "KGH", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -4.833333, + "longitudeCity": 142.66667, + "nameCity": "Yongai", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 3595, + "codeIataCity": "KGI", + "codeIso2Country": "AU", + "geonameId": 2068823, + "latitudeCity": -30.785246, + "longitudeCity": 121.45792, + "nameCity": "Kalgoorlie", + "timezone": "Australia/Perth" + }, + { + "GMT": "2", + "cityId": 3596, + "codeIataCity": "KGJ", + "codeIso2Country": "MW", + "geonameId": 235715, + "latitudeCity": -9.957778, + "longitudeCity": 33.892223, + "nameCity": "Karonga", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "-9", + "cityId": 3597, + "codeIataCity": "KGK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 59.8, + "longitudeCity": -157.23334, + "nameCity": "New Koliganek", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "cityId": 3598, + "codeIataCity": "KGL", + "codeIso2Country": "RW", + "geonameId": 202061, + "latitudeCity": -1.963042, + "longitudeCity": 30.135014, + "nameCity": "Kigali", + "timezone": "Africa/Kigali" + }, + { + "GMT": "10", + "cityId": 3599, + "codeIataCity": "KGM", + "codeIso2Country": "PG", + "geonameId": 2088122, + "latitudeCity": -5.18, + "longitudeCity": 39.78, + "nameCity": "Kungum", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 3600, + "codeIataCity": "KGN", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -6.583333, + "longitudeCity": 16.816668, + "nameCity": "Kasongo Lunda", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "2", + "cityId": 3601, + "codeIataCity": "KGO", + "codeIso2Country": "UA", + "geonameId": 705812, + "latitudeCity": 48.55, + "longitudeCity": 32.3, + "nameCity": "Kirovograd", + "timezone": "Europe/Kiev" + }, + { + "GMT": "5", + "cityId": 3602, + "codeIataCity": "KGP", + "codeIso2Country": "RU", + "geonameId": 6695754, + "latitudeCity": 62.19583, + "longitudeCity": 74.53361, + "nameCity": "Kogalym", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "9.30", + "cityId": 3603, + "codeIataCity": "KGR", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -25.833332, + "longitudeCity": 133.03334, + "nameCity": "Kulgera", + "timezone": "Australia/Darwin" + }, + { + "GMT": "2", + "cityId": 3604, + "codeIataCity": "KGS", + "codeIso2Country": "GR", + "geonameId": 259245, + "latitudeCity": 36.793056, + "longitudeCity": 27.095278, + "nameCity": "Kos", + "timezone": "Europe/Athens" + }, + { + "GMT": "8", + "cityId": 3605, + "codeIataCity": "KGT", + "codeIso2Country": "CN", + "geonameId": 1802171, + "latitudeCity": 30.1575, + "longitudeCity": 101.73472, + "nameCity": "Kangding", + "timezone": "Asia/Chongqing" + }, + { + "GMT": "8", + "cityId": 3606, + "codeIataCity": "KGU", + "codeIso2Country": "MY", + "geonameId": 1733432, + "latitudeCity": 5.356667, + "longitudeCity": 116.16194, + "nameCity": "Keningau", + "timezone": "Asia/Kuching" + }, + { + "GMT": "10", + "cityId": 3607, + "codeIataCity": "KGW", + "codeIso2Country": "PG", + "geonameId": 2095099, + "latitudeCity": -9.05, + "longitudeCity": 146.83333, + "nameCity": "Kagi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 3608, + "codeIataCity": "KGX", + "codeIso2Country": "US", + "geonameId": 5863328, + "latitudeCity": 62.89528, + "longitudeCity": -160.0625, + "nameCity": "Grayling", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 3609, + "codeIataCity": "KGY", + "codeIso2Country": "AU", + "geonameId": 2161376, + "latitudeCity": -26.55, + "longitudeCity": 151.83333, + "nameCity": "Kingaroy", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "cityId": 3610, + "codeIataCity": "KGZ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 61.45, + "longitudeCity": -142.38333, + "nameCity": "Glacier Creek", + "timezone": "America/Anchorage" + }, + { + "GMT": "3.30", + "cityId": 3611, + "codeIataCity": "KHA", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 36.733334, + "longitudeCity": 45.15, + "nameCity": "Khaneh", + "timezone": "Asia/Tehran" + }, + { + "GMT": "3", + "cityId": 3612, + "codeIataCity": "KHC", + "codeIso2Country": "UA", + "geonameId": 706524, + "latitudeCity": 45.36667, + "longitudeCity": 36.45, + "nameCity": "Kerch", + "timezone": "Europe/Simferopol" + }, + { + "GMT": "3.30", + "cityId": 3613, + "codeIataCity": "KHD", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 33.43861, + "longitudeCity": 48.280834, + "nameCity": "Khorramabad", + "timezone": "Asia/Tehran" + }, + { + "GMT": "2", + "cityId": 3614, + "codeIataCity": "KHE", + "codeIso2Country": "UA", + "geonameId": 706448, + "latitudeCity": 46.675278, + "longitudeCity": 32.627777, + "nameCity": "Kherson", + "timezone": "Europe/Kiev" + }, + { + "GMT": "8", + "cityId": 3615, + "codeIataCity": "KHG", + "codeIso2Country": "CN", + "geonameId": 1280849, + "latitudeCity": 39.534973, + "longitudeCity": 76.01107, + "nameCity": "Kashi", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 3616, + "codeIataCity": "KHH", + "codeIso2Country": "TW", + "geonameId": 1673820, + "latitudeCity": 22.5725, + "longitudeCity": 120.345276, + "nameCity": "Kaohsiung", + "timezone": "Asia/Taipei" + }, + { + "GMT": "5", + "cityId": 3617, + "codeIataCity": "KHI", + "codeIso2Country": "PK", + "geonameId": 1174872, + "latitudeCity": 24.899986, + "longitudeCity": 67.16828, + "nameCity": "Karachi", + "timezone": "Asia/Karachi" + }, + { + "GMT": "2", + "cityId": 3618, + "codeIataCity": "KHJ", + "codeIso2Country": "FI", + "geonameId": 632978, + "latitudeCity": 62.463055, + "longitudeCity": 22.394722, + "nameCity": "Kauhajoki", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "3.30", + "cityId": 3619, + "codeIataCity": "KHK", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 29.261667, + "longitudeCity": 50.323612, + "nameCity": "Khark Island", + "timezone": "Asia/Tehran" + }, + { + "GMT": "6.30", + "cityId": 3620, + "codeIataCity": "KHM", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 25.993513, + "longitudeCity": 95.67965, + "nameCity": "Khamti", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "8", + "cityId": 3621, + "codeIataCity": "KHN", + "codeIso2Country": "CN", + "geonameId": 1800163, + "latitudeCity": 28.859901, + "longitudeCity": 115.907845, + "nameCity": "Nanchang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "cityId": 3622, + "codeIataCity": "KHO", + "codeIso2Country": "ZA", + "geonameId": 979232, + "latitudeCity": -24.583332, + "longitudeCity": 31.416668, + "nameCity": "Khoka Moya", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "8", + "cityId": 3623, + "codeIataCity": "KHR", + "codeIso2Country": "MN", + "geonameId": 7648891, + "latitudeCity": 46.783333, + "longitudeCity": 102.85, + "nameCity": "Kharkhorin", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "4", + "cityId": 3624, + "codeIataCity": "KHS", + "codeIso2Country": "OM", + "geonameId": 287614, + "latitudeCity": 26.163939, + "longitudeCity": 56.23506, + "nameCity": "Khasab", + "timezone": "Asia/Muscat" + }, + { + "GMT": "4.30", + "cityId": 3625, + "codeIataCity": "KHT", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 35.0, + "longitudeCity": 72.0, + "nameCity": "Khost", + "timezone": "Asia/Kabul" + }, + { + "GMT": "2", + "cityId": 3626, + "codeIataCity": "KHU", + "codeIso2Country": "UA", + "geonameId": 0, + "latitudeCity": 49.1, + "longitudeCity": 33.45, + "nameCity": "Kremenchug", + "timezone": "Europe/Kiev" + }, + { + "GMT": "10", + "cityId": 3627, + "codeIataCity": "KHV", + "codeIso2Country": "RU", + "geonameId": 2022890, + "latitudeCity": 48.524563, + "longitudeCity": 135.16861, + "nameCity": "Khabarovsk", + "timezone": "Asia/Vladivostok" + }, + { + "GMT": "2", + "cityId": 3628, + "codeIataCity": "KHW", + "codeIso2Country": "BW", + "geonameId": 0, + "latitudeCity": -19.0, + "longitudeCity": 23.5, + "nameCity": "Khwai River Lodge", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "3.30", + "cityId": 3629, + "codeIataCity": "KHY", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 38.42917, + "longitudeCity": 44.97139, + "nameCity": "Khoy", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-10", + "cityId": 3630, + "codeIataCity": "KHZ", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -15.766667, + "longitudeCity": -145.11667, + "nameCity": "Kauehi", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "10", + "cityId": 3631, + "codeIataCity": "KIA", + "codeIso2Country": "PG", + "geonameId": 2095076, + "latitudeCity": -6.266667, + "longitudeCity": 146.25, + "nameCity": "Kaiapit", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 3632, + "codeIataCity": "KIB", + "codeIso2Country": "US", + "geonameId": 5865015, + "latitudeCity": 55.893612, + "longitudeCity": -159.5675, + "nameCity": "Ivanof Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "cityId": 3633, + "codeIataCity": "KIC", + "codeIso2Country": "US", + "geonameId": 5363208, + "latitudeCity": 36.216667, + "longitudeCity": -121.13333, + "nameCity": "King City", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 3634, + "codeIataCity": "KID", + "codeIso2Country": "SE", + "geonameId": 2699310, + "latitudeCity": 55.919445, + "longitudeCity": 14.088889, + "nameCity": "Kristianstad", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "10", + "cityId": 3635, + "codeIataCity": "KIE", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.316667, + "longitudeCity": 155.71666, + "nameCity": "Kieta", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 3636, + "codeIataCity": "KIF", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 53.01389, + "longitudeCity": -89.85, + "nameCity": "Kingfisher Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "2", + "cityId": 3637, + "codeIataCity": "KIG", + "codeIso2Country": "ZA", + "geonameId": 0, + "latitudeCity": -30.2, + "longitudeCity": 17.266666, + "nameCity": "Koinghaas", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "3.30", + "cityId": 3638, + "codeIataCity": "KIH", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 26.532276, + "longitudeCity": 53.972084, + "nameCity": "Kish Island", + "timezone": "Asia/Tehran" + }, + { + "GMT": "10", + "cityId": 3639, + "codeIataCity": "KII", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -9.016389, + "longitudeCity": 142.69528, + "nameCity": "Kibuli", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "cityId": 3640, + "codeIataCity": "KIJ", + "codeIso2Country": "JP", + "geonameId": 1855431, + "latitudeCity": 37.951992, + "longitudeCity": 139.11325, + "nameCity": "Niigata", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "3", + "cityId": 3641, + "codeIataCity": "KIK", + "codeIso2Country": "IQ", + "geonameId": 94787, + "latitudeCity": 35.516666, + "longitudeCity": 44.283333, + "nameCity": "Kirkuk", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "2", + "cityId": 3642, + "codeIataCity": "KIL", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -8.4, + "longitudeCity": 28.05, + "nameCity": "Kilwa", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "2", + "cityId": 3643, + "codeIataCity": "KIM", + "codeIso2Country": "ZA", + "geonameId": 990930, + "latitudeCity": -28.805834, + "longitudeCity": 24.76639, + "nameCity": "Kimberley", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-5", + "cityId": 3644, + "codeIataCity": "KIN", + "codeIso2Country": "JM", + "geonameId": 3489854, + "latitudeCity": 17.992731, + "longitudeCity": -76.792009, + "nameCity": "Kingston", + "timezone": "America/Jamaica" + }, + { + "GMT": "12", + "cityId": 3645, + "codeIataCity": "KIO", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 5.65, + "longitudeCity": 169.2, + "nameCity": "Kili Island", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "10", + "cityId": 3646, + "codeIataCity": "KIQ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.116667, + "longitudeCity": 147.35, + "nameCity": "Kira", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "cityId": 3647, + "codeIataCity": "KIR", + "codeIso2Country": "IE", + "geonameId": 2963370, + "latitudeCity": 52.181477, + "longitudeCity": -9.535666, + "nameCity": "Farranfore", + "timezone": "Europe/Dublin" + }, + { + "GMT": "3", + "cityId": 3648, + "codeIataCity": "KIS", + "codeIso2Country": "KE", + "geonameId": 191245, + "latitudeCity": -0.084946, + "longitudeCity": 34.7375, + "nameCity": "Kisumu", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "2", + "cityId": 3649, + "codeIataCity": "KIT", + "codeIso2Country": "GR", + "geonameId": 264166, + "latitudeCity": 36.291668, + "longitudeCity": 23.025, + "nameCity": "Kithira", + "timezone": "Europe/Athens" + }, + { + "GMT": "3", + "cityId": 3650, + "codeIataCity": "KIU", + "codeIso2Country": "KE", + "geonameId": 190954, + "latitudeCity": -1.733333, + "longitudeCity": 41.516666, + "nameCity": "Kiunga", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "2", + "cityId": 3651, + "codeIataCity": "KIV", + "codeIso2Country": "MD", + "geonameId": 618426, + "latitudeCity": 46.935444, + "longitudeCity": 28.934967, + "nameCity": "Chisinau", + "timezone": "Europe/Chisinau" + }, + { + "GMT": "2", + "cityId": 3652, + "codeIataCity": "KIW", + "codeIso2Country": "ZM", + "geonameId": 0, + "latitudeCity": -12.839444, + "longitudeCity": 28.230556, + "nameCity": "Kitwe", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "3", + "cityId": 3653, + "codeIataCity": "KIY", + "codeIso2Country": "TZ", + "geonameId": 0, + "latitudeCity": -8.911944, + "longitudeCity": 39.511665, + "nameCity": "Kilwa", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "10", + "cityId": 3654, + "codeIataCity": "KIZ", + "codeIso2Country": "PG", + "geonameId": 2094010, + "latitudeCity": -8.65, + "longitudeCity": 147.91667, + "nameCity": "Kikinonda", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "7", + "cityId": 3655, + "codeIataCity": "KJA", + "codeIso2Country": "RU", + "geonameId": 1502026, + "latitudeCity": 56.18113, + "longitudeCity": 92.48286, + "nameCity": "Krasnojarsk", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "8", + "cityId": 3656, + "codeIataCity": "KJI", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 48.22167, + "longitudeCity": 86.99611, + "nameCity": "Burqin", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 3657, + "codeIataCity": "KJK", + "codeIso2Country": "BE", + "geonameId": 2800866, + "latitudeCity": 50.817223, + "longitudeCity": 3.201667, + "nameCity": "Kortrijk", + "timezone": "Europe/Brussels" + }, + { + "GMT": "9", + "cityId": 3658, + "codeIataCity": "KJP", + "codeIso2Country": "JP", + "geonameId": 1856035, + "latitudeCity": 26.083332, + "longitudeCity": 127.333336, + "nameCity": "Kerama", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "10", + "cityId": 3659, + "codeIataCity": "KJU", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -2.883333, + "longitudeCity": 151.25, + "nameCity": "Kamiraba", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 3660, + "codeIataCity": "KKA", + "codeIso2Country": "US", + "geonameId": 5866748, + "latitudeCity": 64.939445, + "longitudeCity": -161.15, + "nameCity": "Koyuk", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 3661, + "codeIataCity": "KKB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 58.183334, + "longitudeCity": -152.35, + "nameCity": "Kitoi Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "cityId": 3662, + "codeIataCity": "KKC", + "codeIso2Country": "TH", + "geonameId": 1609776, + "latitudeCity": 16.46467, + "longitudeCity": 102.78749, + "nameCity": "Khon Kaen", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "10", + "cityId": 3663, + "codeIataCity": "KKD", + "codeIso2Country": "PG", + "geonameId": 2088122, + "latitudeCity": -8.886153, + "longitudeCity": 147.73122, + "nameCity": "Kokoda", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "12", + "cityId": 3664, + "codeIataCity": "KKE", + "codeIso2Country": "NZ", + "geonameId": 2188874, + "latitudeCity": -35.263283, + "longitudeCity": 173.91237, + "nameCity": "Kerikeri", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-9", + "cityId": 3665, + "codeIataCity": "KKF", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 67.6, + "longitudeCity": -163.5, + "nameCity": "Kagvik Creek", + "timezone": "America/Nome" + }, + { + "GMT": "-4", + "cityId": 3666, + "codeIataCity": "KKG", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 5.266667, + "longitudeCity": -59.816666, + "nameCity": "Konawaruk", + "timezone": "America/Guyana" + }, + { + "GMT": "-9", + "cityId": 3667, + "codeIataCity": "KKH", + "codeIso2Country": "US", + "geonameId": 5866670, + "latitudeCity": 59.966667, + "longitudeCity": -162.75, + "nameCity": "Kongiganak", + "timezone": "America/Nome" + }, + { + "GMT": "-9", + "cityId": 3668, + "codeIataCity": "KKI", + "codeIso2Country": "US", + "geonameId": 5878990, + "latitudeCity": 60.906944, + "longitudeCity": -161.42223, + "nameCity": "Akiachak", + "timezone": "America/Anchorage" + }, + { + "GMT": "9", + "cityId": 3669, + "codeIataCity": "KKJ", + "codeIso2Country": "JP", + "geonameId": 1863967, + "latitudeCity": 33.834373, + "longitudeCity": 130.9435, + "nameCity": "Kita Kyushu", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-9", + "cityId": 3670, + "codeIataCity": "KKK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 64.425, + "longitudeCity": -156.84111, + "nameCity": "Kalakaket", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 3671, + "codeIataCity": "KKL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.55, + "longitudeCity": -154.53334, + "nameCity": "Karluk Lake", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "cityId": 3672, + "codeIataCity": "KKM", + "codeIso2Country": "TH", + "geonameId": 1607532, + "latitudeCity": 14.8, + "longitudeCity": 100.61667, + "nameCity": "Lop Buri", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "1", + "cityId": 3673, + "codeIataCity": "KKN", + "codeIso2Country": "NO", + "geonameId": 779303, + "latitudeCity": 69.7235, + "longitudeCity": 29.891184, + "nameCity": "Kirkenes", + "timezone": "Europe/Oslo" + }, + { + "GMT": "12", + "cityId": 3674, + "codeIataCity": "KKO", + "codeIso2Country": "NZ", + "geonameId": 2185081, + "latitudeCity": -35.452778, + "longitudeCity": 173.81667, + "nameCity": "Kaikohe", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "10", + "cityId": 3675, + "codeIataCity": "KKP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -15.583333, + "longitudeCity": 143.95, + "nameCity": "Koolburra", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5", + "cityId": 3676, + "codeIataCity": "KKQ", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 65.70796, + "longitudeCity": 82.456055, + "nameCity": "Krasnoselkup", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-10", + "cityId": 3677, + "codeIataCity": "KKR", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -15.783333, + "longitudeCity": -146.66667, + "nameCity": "Kaukura Atoll", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-6", + "cityId": 3678, + "codeIataCity": "KKT", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 40.766666, + "longitudeCity": -87.45, + "nameCity": "Kentland", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 3679, + "codeIataCity": "KKU", + "codeIso2Country": "US", + "geonameId": 5861507, + "latitudeCity": 58.8125, + "longitudeCity": -158.56056, + "nameCity": "Ekuk", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 3680, + "codeIataCity": "KKW", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -5.036111, + "longitudeCity": 18.780277, + "nameCity": "Kikwit", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "9", + "cityId": 3681, + "codeIataCity": "KKX", + "codeIso2Country": "JP", + "geonameId": 0, + "latitudeCity": 28.321388, + "longitudeCity": 129.92805, + "nameCity": "Kikaiga Shima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "0", + "cityId": 3682, + "codeIataCity": "KKY", + "codeIso2Country": "IE", + "geonameId": 2963398, + "latitudeCity": 52.65, + "longitudeCity": -7.25, + "nameCity": "Kilkenny", + "timezone": "Europe/Dublin" + }, + { + "GMT": "7", + "cityId": 3683, + "codeIataCity": "KKZ", + "codeIso2Country": "KH", + "geonameId": 1830468, + "latitudeCity": 11.633333, + "longitudeCity": 102.96667, + "nameCity": "Koh Kong", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "2", + "cityId": 3684, + "codeIataCity": "KLB", + "codeIso2Country": "ZM", + "geonameId": 0, + "latitudeCity": -14.975833, + "longitudeCity": 22.644444, + "nameCity": "Kalabo", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "0", + "cityId": 3685, + "codeIataCity": "KLC", + "codeIso2Country": "SN", + "geonameId": 2247183, + "latitudeCity": 14.083333, + "longitudeCity": -16.5, + "nameCity": "Kaolack", + "timezone": "Africa/Dakar" + }, + { + "GMT": "3", + "cityId": 3686, + "codeIataCity": "KLD", + "codeIso2Country": "RU", + "geonameId": 480060, + "latitudeCity": 56.916668, + "longitudeCity": 35.916668, + "nameCity": "Tver", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "cityId": 3687, + "codeIataCity": "KLE", + "codeIso2Country": "CM", + "geonameId": 0, + "latitudeCity": 10.116667, + "longitudeCity": 14.45, + "nameCity": "Kaele", + "timezone": "Africa/Douala" + }, + { + "GMT": "3", + "cityId": 3688, + "codeIataCity": "KLF", + "codeIso2Country": "RU", + "geonameId": 553915, + "latitudeCity": 54.5, + "longitudeCity": 36.266666, + "nameCity": "Kaluga", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-9", + "cityId": 3689, + "codeIataCity": "KLG", + "codeIso2Country": "US", + "geonameId": 5865719, + "latitudeCity": 61.53258, + "longitudeCity": -160.3465, + "nameCity": "Kalskag", + "timezone": "America/Anchorage" + }, + { + "GMT": "5.30", + "cityId": 3690, + "codeIataCity": "KLH", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 16.666668, + "longitudeCity": 74.333336, + "nameCity": "Kolhapur", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "cityId": 3691, + "codeIataCity": "KLI", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -4.166667, + "longitudeCity": 21.75, + "nameCity": "Kota Koli", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "3", + "cityId": 3692, + "codeIataCity": "KLK", + "codeIso2Country": "KE", + "geonameId": 0, + "latitudeCity": -6.783333, + "longitudeCity": 25.783333, + "nameCity": "Kalokol", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-9", + "cityId": 3693, + "codeIataCity": "KLL", + "codeIso2Country": "US", + "geonameId": 5867311, + "latitudeCity": 59.11861, + "longitudeCity": -156.86333, + "nameCity": "Levelock", + "timezone": "America/Anchorage" + }, + { + "GMT": "3.30", + "cityId": 3694, + "codeIataCity": "KLM", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 37.36667, + "longitudeCity": 55.45, + "nameCity": "Kalaleh", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-9", + "cityId": 3695, + "codeIataCity": "KLN", + "codeIso2Country": "US", + "geonameId": 5878746, + "latitudeCity": 57.533333, + "longitudeCity": -154.0, + "nameCity": "Larsen Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "cityId": 3696, + "codeIataCity": "KLO", + "codeIso2Country": "PH", + "geonameId": 1709633, + "latitudeCity": 11.687152, + "longitudeCity": 122.38183, + "nameCity": "Kalibo", + "timezone": "Asia/Manila" + }, + { + "GMT": "-9", + "cityId": 3697, + "codeIataCity": "KLP", + "codeIso2Country": "US", + "geonameId": 5554072, + "latitudeCity": 57.55, + "longitudeCity": -134.86667, + "nameCity": "Kelp Bay", + "timezone": "America/Juneau" + }, + { + "GMT": "7", + "cityId": 3698, + "codeIataCity": "KLQ", + "codeIso2Country": "ID", + "geonameId": 1899772, + "latitudeCity": -2.683333, + "longitudeCity": 103.9, + "nameCity": "Keluang", + "timezone": "Asia/Pontianak" + }, + { + "GMT": "1", + "cityId": 3699, + "codeIataCity": "KLR", + "codeIso2Country": "SE", + "geonameId": 2702261, + "latitudeCity": 56.685, + "longitudeCity": 16.287222, + "nameCity": "Kalmar", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-8", + "cityId": 3700, + "codeIataCity": "KLS", + "codeIso2Country": "US", + "geonameId": 5746545, + "latitudeCity": 46.15, + "longitudeCity": -122.9, + "nameCity": "Kelso", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 3701, + "codeIataCity": "KLT", + "codeIso2Country": "DE", + "geonameId": 2894003, + "latitudeCity": 49.433334, + "longitudeCity": 7.75, + "nameCity": "Kaiserslautern", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 3702, + "codeIataCity": "KLU", + "codeIso2Country": "AT", + "geonameId": 2774326, + "latitudeCity": 46.650124, + "longitudeCity": 14.324192, + "nameCity": "Klagenfurt", + "timezone": "Europe/Vienna" + }, + { + "GMT": "1", + "cityId": 3703, + "codeIataCity": "KLV", + "codeIso2Country": "CZ", + "geonameId": 3073803, + "latitudeCity": 50.232205, + "longitudeCity": 12.871277, + "nameCity": "Karlovy Vary", + "timezone": "Europe/Prague" + }, + { + "GMT": "-9", + "cityId": 3704, + "codeIataCity": "KLW", + "codeIso2Country": "US", + "geonameId": 5554566, + "latitudeCity": 55.555, + "longitudeCity": -133.1, + "nameCity": "Klawock", + "timezone": "America/Sitka" + }, + { + "GMT": "2", + "cityId": 3705, + "codeIataCity": "KLX", + "codeIso2Country": "GR", + "geonameId": 261604, + "latitudeCity": 37.069443, + "longitudeCity": 22.027779, + "nameCity": "Kalamata", + "timezone": "Europe/Athens" + }, + { + "GMT": "2", + "cityId": 3706, + "codeIataCity": "KLY", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -2.55, + "longitudeCity": 26.533333, + "nameCity": "Kalima", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "2", + "cityId": 3707, + "codeIataCity": "KLZ", + "codeIso2Country": "ZA", + "geonameId": 0, + "latitudeCity": -29.683332, + "longitudeCity": 17.066668, + "nameCity": "Kleinzee", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "10", + "cityId": 3708, + "codeIataCity": "KMA", + "codeIso2Country": "PG", + "geonameId": 2094144, + "latitudeCity": -7.961702, + "longitudeCity": 145.77155, + "nameCity": "Kerema", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 3709, + "codeIataCity": "KMB", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.5, + "longitudeCity": 144.63333, + "nameCity": "Koinambe", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 3710, + "codeIataCity": "KMC", + "codeIso2Country": "SA", + "geonameId": 0, + "latitudeCity": 27.911282, + "longitudeCity": 45.523495, + "nameCity": "King Khalid Mil. City", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "2", + "cityId": 3711, + "codeIataCity": "KME", + "codeIso2Country": "RW", + "geonameId": 202137, + "latitudeCity": -2.466667, + "longitudeCity": 28.916668, + "nameCity": "Kamembe", + "timezone": "Africa/Kigali" + }, + { + "GMT": "10", + "cityId": 3712, + "codeIataCity": "KMF", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.616667, + "longitudeCity": 145.99583, + "nameCity": "Kamina", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 3713, + "codeIataCity": "KMG", + "codeIso2Country": "CN", + "geonameId": 1804651, + "latitudeCity": 25.101944, + "longitudeCity": 102.92917, + "nameCity": "Kunming", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "cityId": 3714, + "codeIataCity": "KMH", + "codeIso2Country": "ZA", + "geonameId": 0, + "latitudeCity": -27.466667, + "longitudeCity": 23.466667, + "nameCity": "Kuruman", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "9", + "cityId": 3715, + "codeIataCity": "KMI", + "codeIso2Country": "JP", + "geonameId": 1856717, + "latitudeCity": 31.872498, + "longitudeCity": 131.44147, + "nameCity": "Miyazaki", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "9", + "cityId": 3716, + "codeIataCity": "KMJ", + "codeIso2Country": "JP", + "geonameId": 7303141, + "latitudeCity": 32.834133, + "longitudeCity": 130.85799, + "nameCity": "Kumamoto", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "cityId": 3717, + "codeIataCity": "KMK", + "codeIso2Country": "CG", + "geonameId": 0, + "latitudeCity": -3.483333, + "longitudeCity": 12.616667, + "nameCity": "Makabana", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "10", + "cityId": 3718, + "codeIataCity": "KML", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -19.366667, + "longitudeCity": 140.05, + "nameCity": "Kamileroi", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "9", + "cityId": 3719, + "codeIataCity": "KMM", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.666667, + "longitudeCity": 136.16667, + "nameCity": "Kimam", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "2", + "cityId": 3720, + "codeIataCity": "KMN", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -8.641111, + "longitudeCity": 25.25, + "nameCity": "Kamina", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-9", + "cityId": 3721, + "codeIataCity": "KMO", + "codeIso2Country": "US", + "geonameId": 5868247, + "latitudeCity": 58.984444, + "longitudeCity": -159.03583, + "nameCity": "Manokotak", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "cityId": 3722, + "codeIataCity": "KMP", + "codeIso2Country": "NA", + "geonameId": 3353104, + "latitudeCity": -26.533611, + "longitudeCity": 18.1, + "nameCity": "Keetmanshoop", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "9", + "cityId": 3723, + "codeIataCity": "KMQ", + "codeIso2Country": "JP", + "geonameId": 1860243, + "latitudeCity": 36.40237, + "longitudeCity": 136.41342, + "nameCity": "Komatsu", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "10", + "cityId": 3724, + "codeIataCity": "KMR", + "codeIso2Country": "PG", + "geonameId": 2094556, + "latitudeCity": -6.5, + "longitudeCity": 144.86667, + "nameCity": "Karimui", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "cityId": 3725, + "codeIataCity": "KMS", + "codeIso2Country": "GH", + "geonameId": 2298890, + "latitudeCity": 6.7125, + "longitudeCity": -1.591111, + "nameCity": "Kumasi", + "timezone": "Africa/Accra" + }, + { + "GMT": "7", + "cityId": 3726, + "codeIataCity": "KMT", + "codeIso2Country": "KH", + "geonameId": 1831112, + "latitudeCity": 10.6, + "longitudeCity": 104.166664, + "nameCity": "Kampot", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "3", + "cityId": 3727, + "codeIataCity": "KMU", + "codeIso2Country": "SO", + "geonameId": 0, + "latitudeCity": -0.416667, + "longitudeCity": 42.841667, + "nameCity": "Kismayu", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "6.30", + "cityId": 3728, + "codeIataCity": "KMV", + "codeIso2Country": "MM", + "geonameId": 1321218, + "latitudeCity": 23.183332, + "longitudeCity": 94.05, + "nameCity": "Kalaymyo", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "3", + "cityId": 3729, + "codeIataCity": "KMW", + "codeIso2Country": "RU", + "geonameId": 543878, + "latitudeCity": 57.75, + "longitudeCity": 40.933334, + "nameCity": "Kostroma", + "timezone": "Europe/Moscow" + }, + { + "GMT": "3", + "cityId": 3730, + "codeIataCity": "KMX", + "codeIso2Country": "SA", + "geonameId": 110690, + "latitudeCity": 18.3, + "longitudeCity": 42.716667, + "nameCity": "Khamis Mushait", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-9", + "cityId": 3731, + "codeIataCity": "KMY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.533333, + "longitudeCity": -154.15, + "nameCity": "Moser Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "cityId": 3732, + "codeIataCity": "KMZ", + "codeIso2Country": "ZM", + "geonameId": 0, + "latitudeCity": -14.798889, + "longitudeCity": 24.803333, + "nameCity": "Kaoma", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-4", + "cityId": 3733, + "codeIataCity": "KNA", + "codeIso2Country": "CL", + "geonameId": 3871336, + "latitudeCity": -33.033333, + "longitudeCity": -71.566666, + "nameCity": "Vina del Mar", + "timezone": "America/Santiago" + }, + { + "GMT": "-7", + "cityId": 3734, + "codeIataCity": "KNB", + "codeIso2Country": "US", + "geonameId": 5541458, + "latitudeCity": 37.05, + "longitudeCity": -112.53333, + "nameCity": "Kanab", + "timezone": "America/Denver" + }, + { + "GMT": "2", + "cityId": 3735, + "codeIataCity": "KND", + "codeIso2Country": "CD", + "geonameId": 212902, + "latitudeCity": -2.9225, + "longitudeCity": 25.913889, + "nameCity": "Kindu", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "10", + "cityId": 3736, + "codeIataCity": "KNE", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.283333, + "longitudeCity": 144.7, + "nameCity": "Kanainj", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "cityId": 3737, + "codeIataCity": "KNF", + "codeIso2Country": "GB", + "geonameId": 2636464, + "latitudeCity": 52.75, + "longitudeCity": 0.4, + "nameCity": "Kings Lynn", + "timezone": "Europe/London" + }, + { + "GMT": "9", + "cityId": 3738, + "codeIataCity": "KNG", + "codeIso2Country": "ID", + "geonameId": 1642133, + "latitudeCity": -3.65, + "longitudeCity": 133.75, + "nameCity": "Kaimana", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "cityId": 3739, + "codeIataCity": "KNH", + "codeIso2Country": "TW", + "geonameId": 0, + "latitudeCity": 24.420555, + "longitudeCity": 118.344444, + "nameCity": "Kinmen", + "timezone": "Asia/Taipei" + }, + { + "GMT": "8", + "cityId": 3740, + "codeIataCity": "KNI", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -33.7, + "longitudeCity": 117.55, + "nameCity": "Katanning", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "cityId": 3741, + "codeIataCity": "KNJ", + "codeIso2Country": "CG", + "geonameId": 0, + "latitudeCity": -3.95, + "longitudeCity": 14.516667, + "nameCity": "Kindamba", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-9", + "cityId": 3742, + "codeIataCity": "KNK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 59.433334, + "longitudeCity": -154.85, + "nameCity": "Kakhonak", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 3743, + "codeIataCity": "KNL", + "codeIso2Country": "PG", + "geonameId": 2094248, + "latitudeCity": -6.0, + "longitudeCity": 147.5, + "nameCity": "Kelanoa", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "cityId": 3744, + "codeIataCity": "KNM", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -7.516667, + "longitudeCity": 24.183332, + "nameCity": "Kaniama", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "0", + "cityId": 3745, + "codeIataCity": "KNN", + "codeIso2Country": "GN", + "geonameId": 0, + "latitudeCity": 10.3975, + "longitudeCity": -9.305556, + "nameCity": "Kankan", + "timezone": "Africa/Conakry" + }, + { + "GMT": "1", + "cityId": 3746, + "codeIataCity": "KNP", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -9.766944, + "longitudeCity": 15.450278, + "nameCity": "Capanda", + "timezone": "Africa/Luanda" + }, + { + "GMT": "11", + "cityId": 3747, + "codeIataCity": "KNQ", + "codeIso2Country": "NC", + "geonameId": 0, + "latitudeCity": -21.053333, + "longitudeCity": 164.83778, + "nameCity": "Kone", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "3.30", + "cityId": 3748, + "codeIataCity": "KNR", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 27.818056, + "longitudeCity": 52.350834, + "nameCity": "Kangan", + "timezone": "Asia/Tehran" + }, + { + "GMT": "10", + "cityId": 3749, + "codeIataCity": "KNS", + "codeIso2Country": "AU", + "geonameId": 2155797, + "latitudeCity": -39.879776, + "longitudeCity": 143.88168, + "nameCity": "King Island", + "timezone": "Australia/Currie" + }, + { + "GMT": "-6", + "cityId": 3750, + "codeIataCity": "KNT", + "codeIso2Country": "US", + "geonameId": 4619800, + "latitudeCity": 36.230556, + "longitudeCity": -90.03472, + "nameCity": "Kennett", + "timezone": "America/Chicago" + }, + { + "GMT": "5.30", + "cityId": 3751, + "codeIataCity": "KNU", + "codeIso2Country": "IN", + "geonameId": 1267995, + "latitudeCity": 26.402779, + "longitudeCity": 80.4125, + "nameCity": "Kanpur", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-8", + "cityId": 3752, + "codeIataCity": "KNV", + "codeIso2Country": "CA", + "geonameId": 5914132, + "latitudeCity": 50.683334, + "longitudeCity": -125.833336, + "nameCity": "Knights Inlet", + "timezone": "America/Vancouver" + }, + { + "GMT": "-9", + "cityId": 3753, + "codeIataCity": "KNW", + "codeIso2Country": "US", + "geonameId": 5869874, + "latitudeCity": 59.45222, + "longitudeCity": -157.32973, + "nameCity": "New Stuyahok", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "cityId": 3754, + "codeIataCity": "KNX", + "codeIso2Country": "AU", + "geonameId": 2068110, + "latitudeCity": -15.784031, + "longitudeCity": 128.71268, + "nameCity": "Kununurra", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "cityId": 3755, + "codeIataCity": "KNY", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 57.066666, + "longitudeCity": -102.03333, + "nameCity": "Kinoosao", + "timezone": "America/Regina" + }, + { + "GMT": "0", + "cityId": 3756, + "codeIataCity": "KNZ", + "codeIso2Country": "ML", + "geonameId": 0, + "latitudeCity": 12.843333, + "longitudeCity": -11.2525, + "nameCity": "Kenieba", + "timezone": "Africa/Bamako" + }, + { + "GMT": "-10", + "cityId": 3757, + "codeIataCity": "KOA", + "codeIso2Country": "US", + "geonameId": 5847504, + "latitudeCity": 19.736174, + "longitudeCity": -156.04108, + "nameCity": "Kona", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "11", + "cityId": 3758, + "codeIataCity": "KOC", + "codeIso2Country": "NC", + "geonameId": 2140558, + "latitudeCity": -20.5, + "longitudeCity": 164.41667, + "nameCity": "Koumac", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "8", + "cityId": 3759, + "codeIataCity": "KOD", + "codeIso2Country": "ID", + "geonameId": 1629001, + "latitudeCity": -0.266667, + "longitudeCity": 116.583336, + "nameCity": "Kotabangun", + "timezone": "Asia/Makassar" + }, + { + "GMT": "9", + "cityId": 3760, + "codeIataCity": "KOE", + "codeIso2Country": "TL", + "geonameId": 2057087, + "latitudeCity": -10.168536, + "longitudeCity": 123.66725, + "nameCity": "Kupang", + "timezone": "Asia/Dili" + }, + { + "GMT": "2", + "cityId": 3761, + "codeIataCity": "KOF", + "codeIso2Country": "ZA", + "geonameId": 988290, + "latitudeCity": -25.433332, + "longitudeCity": 31.933332, + "nameCity": "Komatipoort", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "7", + "cityId": 3762, + "codeIataCity": "KOG", + "codeIso2Country": "LA", + "geonameId": 1657819, + "latitudeCity": 15.566667, + "longitudeCity": 105.816666, + "nameCity": "Khong", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "10", + "cityId": 3763, + "codeIataCity": "KOH", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -15.966667, + "longitudeCity": 142.41667, + "nameCity": "Koolatah", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "0", + "cityId": 3764, + "codeIataCity": "KOI", + "codeIso2Country": "GB", + "geonameId": 2645198, + "latitudeCity": 58.958057, + "longitudeCity": -2.900556, + "nameCity": "Orkney Island", + "timezone": "Europe/London" + }, + { + "GMT": "9", + "cityId": 3765, + "codeIataCity": "KOJ", + "codeIso2Country": "JP", + "geonameId": 7303136, + "latitudeCity": 31.801224, + "longitudeCity": 130.71562, + "nameCity": "Kagoshima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "2", + "cityId": 3766, + "codeIataCity": "KOK", + "codeIso2Country": "FI", + "geonameId": 651943, + "latitudeCity": 63.718838, + "longitudeCity": 23.133068, + "nameCity": "Kokkola", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "1", + "cityId": 3767, + "codeIataCity": "KOL", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 8.5, + "longitudeCity": 21.25, + "nameCity": "Koumala", + "timezone": "Africa/Bangui" + }, + { + "GMT": "10", + "cityId": 3768, + "codeIataCity": "KOM", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.133333, + "longitudeCity": 143.63333, + "nameCity": "Komo-Manda", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "7", + "cityId": 3769, + "codeIataCity": "KON", + "codeIso2Country": "VN", + "geonameId": 1569684, + "latitudeCity": 14.354167, + "longitudeCity": 108.021385, + "nameCity": "Kontum", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "2", + "cityId": 3770, + "codeIataCity": "KOO", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -5.383333, + "longitudeCity": 27.0, + "nameCity": "Kongolo", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "7", + "cityId": 3771, + "codeIataCity": "KOP", + "codeIso2Country": "TH", + "geonameId": 1608531, + "latitudeCity": 17.4, + "longitudeCity": 104.75, + "nameCity": "Nakhon Phanom", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "1", + "cityId": 3772, + "codeIataCity": "KOQ", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 51.716667, + "longitudeCity": 11.95, + "nameCity": "Koethen", + "timezone": "Europe/Berlin" + }, + { + "GMT": "10", + "cityId": 3773, + "codeIataCity": "KOR", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.808333, + "longitudeCity": 146.55, + "nameCity": "Kokoro", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "7", + "cityId": 3774, + "codeIataCity": "KOS", + "codeIso2Country": "KH", + "geonameId": 1831142, + "latitudeCity": 10.633333, + "longitudeCity": 103.5, + "nameCity": "Sihanoukville", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "-9", + "cityId": 3775, + "codeIataCity": "KOT", + "codeIso2Country": "US", + "geonameId": 5866719, + "latitudeCity": 63.02972, + "longitudeCity": -163.56027, + "nameCity": "Kotlik", + "timezone": "America/Nome" + }, + { + "GMT": "1", + "cityId": 3776, + "codeIataCity": "KOU", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -1.116667, + "longitudeCity": 12.508333, + "nameCity": "Koulamoutou", + "timezone": "Africa/Libreville" + }, + { + "GMT": "6", + "cityId": 3777, + "codeIataCity": "KOV", + "codeIso2Country": "KZ", + "geonameId": 1522203, + "latitudeCity": 53.316666, + "longitudeCity": 69.4, + "nameCity": "Kokshetau", + "timezone": "Asia/Almaty" + }, + { + "GMT": "8", + "cityId": 3778, + "codeIataCity": "KOW", + "codeIso2Country": "CN", + "geonameId": 1810638, + "latitudeCity": 25.851667, + "longitudeCity": 114.776665, + "nameCity": "Ganzhou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9", + "cityId": 3779, + "codeIataCity": "KOX", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -4.716667, + "longitudeCity": 136.41667, + "nameCity": "Kokonao", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-9", + "cityId": 3780, + "codeIataCity": "KOY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.162224, + "longitudeCity": -154.2275, + "nameCity": "Olga Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 3781, + "codeIataCity": "KOZ", + "codeIso2Country": "US", + "geonameId": 5871052, + "latitudeCity": 57.916668, + "longitudeCity": -152.5, + "nameCity": "Ouzinkie", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 3782, + "codeIataCity": "KPA", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.383333, + "longitudeCity": 142.55, + "nameCity": "Kopiago", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 3783, + "codeIataCity": "KPB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 56.333332, + "longitudeCity": -133.58333, + "nameCity": "Point Baker", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 3784, + "codeIataCity": "KPC", + "codeIso2Country": "US", + "geonameId": 5871912, + "latitudeCity": 65.25444, + "longitudeCity": -166.85583, + "nameCity": "Port Clarence", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 3785, + "codeIataCity": "KPD", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 40.083332, + "longitudeCity": -75.4, + "nameCity": "King Of Prussia", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 3786, + "codeIataCity": "KPE", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -4.05, + "longitudeCity": 141.16667, + "nameCity": "Yapsiei", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 3787, + "codeIataCity": "KPF", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.533056, + "longitudeCity": 142.51195, + "nameCity": "Kondubol", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "cityId": 3788, + "codeIataCity": "KPG", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 6.466667, + "longitudeCity": -59.166668, + "nameCity": "Kurupung", + "timezone": "America/Guyana" + }, + { + "GMT": "-9", + "cityId": 3789, + "codeIataCity": "KPH", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 54.45, + "longitudeCity": -162.68333, + "nameCity": "Pauloff Harbor", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "cityId": 3790, + "codeIataCity": "KPI", + "codeIso2Country": "MY", + "geonameId": 0, + "latitudeCity": 2.010556, + "longitudeCity": 112.92944, + "nameCity": "Kapit", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-9", + "cityId": 3791, + "codeIataCity": "KPK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.433613, + "longitudeCity": -153.9, + "nameCity": "Parks", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 3792, + "codeIataCity": "KPL", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.633056, + "longitudeCity": 142.82445, + "nameCity": "Kapal", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 3793, + "codeIataCity": "KPM", + "codeIso2Country": "PG", + "geonameId": 2093565, + "latitudeCity": -5.383333, + "longitudeCity": 143.93333, + "nameCity": "Kompiam", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 3794, + "codeIataCity": "KPN", + "codeIso2Country": "US", + "geonameId": 5866390, + "latitudeCity": 59.933334, + "longitudeCity": -164.05, + "nameCity": "Kipnuk", + "timezone": "America/Nome" + }, + { + "GMT": "9", + "cityId": 3795, + "codeIataCity": "KPO", + "codeIso2Country": "KR", + "geonameId": 1895252, + "latitudeCity": 35.98371, + "longitudeCity": 129.43375, + "nameCity": "Pohang", + "timezone": "Asia/Seoul" + }, + { + "GMT": "10", + "cityId": 3796, + "codeIataCity": "KPP", + "codeIso2Country": "AU", + "geonameId": 2161974, + "latitudeCity": -19.966667, + "longitudeCity": 143.93333, + "nameCity": "Kalpowar", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "cityId": 3797, + "codeIataCity": "KPR", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 58.433334, + "longitudeCity": -152.58333, + "nameCity": "Port Williams", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 3798, + "codeIataCity": "KPS", + "codeIso2Country": "AU", + "geonameId": 2161658, + "latitudeCity": -31.083332, + "longitudeCity": 152.76666, + "nameCity": "Kempsey", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-8", + "cityId": 3799, + "codeIataCity": "KPT", + "codeIso2Country": "US", + "geonameId": 5705218, + "latitudeCity": 41.983334, + "longitudeCity": -114.666664, + "nameCity": "Jackpot", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-9", + "cityId": 3800, + "codeIataCity": "KPV", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 55.906666, + "longitudeCity": -159.145, + "nameCity": "Perryville", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 3801, + "codeIataCity": "KPY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.933334, + "longitudeCity": -153.03334, + "nameCity": "Port Bailey", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 3802, + "codeIataCity": "KQA", + "codeIso2Country": "US", + "geonameId": 5879048, + "latitudeCity": 54.13333, + "longitudeCity": -165.78334, + "nameCity": "Akutan", + "timezone": "America/Nome" + }, + { + "GMT": "10", + "cityId": 3803, + "codeIataCity": "KQL", + "codeIso2Country": "PG", + "geonameId": 2093674, + "latitudeCity": -5.65, + "longitudeCity": 144.86667, + "nameCity": "Kol", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5", + "cityId": 3804, + "codeIataCity": "KQT", + "codeIso2Country": "TJ", + "geonameId": 0, + "latitudeCity": 37.85961, + "longitudeCity": 68.86117, + "nameCity": "Qurghonteppa", + "timezone": "Asia/Dushanbe" + }, + { + "GMT": "10", + "cityId": 3805, + "codeIataCity": "KRA", + "codeIso2Country": "AU", + "geonameId": 2157355, + "latitudeCity": -35.666668, + "longitudeCity": 143.91667, + "nameCity": "Kerang", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "cityId": 3806, + "codeIataCity": "KRB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.456667, + "longitudeCity": 140.83194, + "nameCity": "Karumba", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "7", + "cityId": 3807, + "codeIataCity": "KRC", + "codeIso2Country": "ID", + "geonameId": 6722833, + "latitudeCity": -1.716667, + "longitudeCity": 101.25, + "nameCity": "Kerinci", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "9.30", + "cityId": 3808, + "codeIataCity": "KRD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -20.516666, + "longitudeCity": 134.66667, + "nameCity": "Kurundi", + "timezone": "Australia/Darwin" + }, + { + "GMT": "2", + "cityId": 3809, + "codeIataCity": "KRE", + "codeIso2Country": "BI", + "geonameId": 0, + "latitudeCity": -3.333333, + "longitudeCity": 29.0, + "nameCity": "Kirundo", + "timezone": "Africa/Bujumbura" + }, + { + "GMT": "1", + "cityId": 3810, + "codeIataCity": "KRF", + "codeIso2Country": "SE", + "geonameId": 2707684, + "latitudeCity": 63.049442, + "longitudeCity": 17.772778, + "nameCity": "Kramfors", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-4", + "cityId": 3811, + "codeIataCity": "KRG", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 4.016667, + "longitudeCity": -59.516666, + "nameCity": "Karasabai", + "timezone": "America/Guyana" + }, + { + "GMT": "10", + "cityId": 3812, + "codeIataCity": "KRI", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.483333, + "longitudeCity": 144.26666, + "nameCity": "Kikori", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 3813, + "codeIataCity": "KRJ", + "codeIso2Country": "PG", + "geonameId": 2088122, + "latitudeCity": -4.616667, + "longitudeCity": 143.51666, + "nameCity": "Karawari", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 3814, + "codeIataCity": "KRK", + "codeIso2Country": "PL", + "geonameId": 3094802, + "latitudeCity": 50.075493, + "longitudeCity": 19.793743, + "nameCity": "Krakow", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "8", + "cityId": 3815, + "codeIataCity": "KRL", + "codeIso2Country": "CN", + "geonameId": 1529376, + "latitudeCity": 41.689896, + "longitudeCity": 86.12434, + "nameCity": "Korla", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-4", + "cityId": 3816, + "codeIataCity": "KRM", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 3.75, + "longitudeCity": -59.316666, + "nameCity": "Karanambo", + "timezone": "America/Guyana" + }, + { + "GMT": "1", + "cityId": 3817, + "codeIataCity": "KRN", + "codeIso2Country": "SE", + "geonameId": 605155, + "latitudeCity": 67.82222, + "longitudeCity": 20.345833, + "nameCity": "Kiruna", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "5", + "cityId": 3818, + "codeIataCity": "KRO", + "codeIso2Country": "RU", + "geonameId": 1501321, + "latitudeCity": 55.433334, + "longitudeCity": 65.3, + "nameCity": "Kurgan", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "1", + "cityId": 3819, + "codeIataCity": "KRP", + "codeIso2Country": "DK", + "geonameId": 2619068, + "latitudeCity": 56.3, + "longitudeCity": 9.116667, + "nameCity": "Karup", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "2", + "cityId": 3820, + "codeIataCity": "KRQ", + "codeIso2Country": "UA", + "geonameId": 709717, + "latitudeCity": 48.716667, + "longitudeCity": 37.61667, + "nameCity": "Kramatorsk", + "timezone": "Europe/Kiev" + }, + { + "GMT": "3", + "cityId": 3821, + "codeIataCity": "KRR", + "codeIso2Country": "RU", + "geonameId": 542420, + "latitudeCity": 45.034138, + "longitudeCity": 39.139004, + "nameCity": "Krasnodar", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "cityId": 3822, + "codeIataCity": "KRS", + "codeIso2Country": "NO", + "geonameId": 6942467, + "latitudeCity": 58.150937, + "longitudeCity": 7.996193, + "nameCity": "Kristiansand", + "timezone": "Europe/Oslo" + }, + { + "GMT": "3", + "cityId": 3823, + "codeIataCity": "KRT", + "codeIso2Country": "SD", + "geonameId": 379252, + "latitudeCity": 15.592217, + "longitudeCity": 32.549698, + "nameCity": "Khartoum", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "10", + "cityId": 3824, + "codeIataCity": "KRU", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.3, + "longitudeCity": 147.08333, + "nameCity": "Kerau", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 3825, + "codeIataCity": "KRV", + "codeIso2Country": "KE", + "geonameId": 0, + "latitudeCity": 2.983333, + "longitudeCity": 36.11667, + "nameCity": "Kerio Valley", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "5", + "cityId": 3826, + "codeIataCity": "KRW", + "codeIso2Country": "TM", + "geonameId": 0, + "latitudeCity": 40.083332, + "longitudeCity": 53.083332, + "nameCity": "Turkmenbashi", + "timezone": "Asia/Ashgabat" + }, + { + "GMT": "10", + "cityId": 3827, + "codeIataCity": "KRX", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -4.5, + "longitudeCity": 145.96666, + "nameCity": "Kar Kar", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 3828, + "codeIataCity": "KRY", + "codeIso2Country": "CN", + "geonameId": 1529401, + "latitudeCity": 45.579889, + "longitudeCity": 84.889207, + "nameCity": "Karamay", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 3829, + "codeIataCity": "KRZ", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -1.483333, + "longitudeCity": 19.0, + "nameCity": "Kiri", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "11", + "cityId": 3830, + "codeIataCity": "KSA", + "codeIso2Country": "FM", + "geonameId": 0, + "latitudeCity": 5.352478, + "longitudeCity": 162.9566, + "nameCity": "Kosrae", + "timezone": "Pacific/Kosrae" + }, + { + "GMT": "10", + "cityId": 3831, + "codeIataCity": "KSB", + "codeIso2Country": "PG", + "geonameId": 2094510, + "latitudeCity": -6.383333, + "longitudeCity": 147.01666, + "nameCity": "Kasanombe", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 3832, + "codeIataCity": "KSC", + "codeIso2Country": "SK", + "geonameId": 724443, + "latitudeCity": 48.666668, + "longitudeCity": 21.25, + "nameCity": "Kosice", + "timezone": "Europe/Bratislava" + }, + { + "GMT": "1", + "cityId": 3833, + "codeIataCity": "KSD", + "codeIso2Country": "SE", + "geonameId": 2701680, + "latitudeCity": 59.360283, + "longitudeCity": 13.472059, + "nameCity": "Karlstad", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "3", + "cityId": 3834, + "codeIataCity": "KSE", + "codeIso2Country": "UG", + "geonameId": 0, + "latitudeCity": 0.185556, + "longitudeCity": 30.100834, + "nameCity": "Kasese", + "timezone": "Africa/Kampala" + }, + { + "GMT": "1", + "cityId": 3835, + "codeIataCity": "KSF", + "codeIso2Country": "DE", + "geonameId": 2892518, + "latitudeCity": 51.415855, + "longitudeCity": 9.380858, + "nameCity": "Kassel", + "timezone": "Europe/Berlin" + }, + { + "GMT": "10", + "cityId": 3836, + "codeIataCity": "KSG", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.35, + "longitudeCity": 146.71666, + "nameCity": "Kisengan", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3.30", + "cityId": 3837, + "codeIataCity": "KSH", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 34.355915, + "longitudeCity": 47.145126, + "nameCity": "Kermanshah", + "timezone": "Asia/Tehran" + }, + { + "GMT": "0", + "cityId": 3838, + "codeIataCity": "KSI", + "codeIso2Country": "GN", + "geonameId": 0, + "latitudeCity": 9.183333, + "longitudeCity": -10.1, + "nameCity": "Kissidougou", + "timezone": "Africa/Conakry" + }, + { + "GMT": "2", + "cityId": 3839, + "codeIataCity": "KSJ", + "codeIso2Country": "GR", + "geonameId": 260895, + "latitudeCity": 35.42139, + "longitudeCity": 26.916668, + "nameCity": "Kasos Island", + "timezone": "Europe/Athens" + }, + { + "GMT": "1", + "cityId": 3840, + "codeIataCity": "KSK", + "codeIso2Country": "SE", + "geonameId": 2701715, + "latitudeCity": 59.316666, + "longitudeCity": 14.55, + "nameCity": "Karlskoga", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "3", + "cityId": 3841, + "codeIataCity": "KSL", + "codeIso2Country": "SD", + "geonameId": 372753, + "latitudeCity": 15.390278, + "longitudeCity": 36.34222, + "nameCity": "Kassala", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "-9", + "cityId": 3842, + "codeIataCity": "KSM", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 62.058666, + "longitudeCity": -163.29489, + "nameCity": "Saint Marys", + "timezone": "America/Anchorage" + }, + { + "GMT": "6", + "cityId": 3843, + "codeIataCity": "KSN", + "codeIso2Country": "KZ", + "geonameId": 0, + "latitudeCity": 53.2, + "longitudeCity": 63.55, + "nameCity": "Kostanay", + "timezone": "Asia/Almaty" + }, + { + "GMT": "2", + "cityId": 3844, + "codeIataCity": "KSO", + "codeIso2Country": "GR", + "geonameId": 735927, + "latitudeCity": 40.450832, + "longitudeCity": 21.273333, + "nameCity": "Kastoria", + "timezone": "Europe/Athens" + }, + { + "GMT": "10", + "cityId": 3845, + "codeIataCity": "KSP", + "codeIso2Country": "PG", + "geonameId": 2093339, + "latitudeCity": -8.55, + "longitudeCity": 147.46666, + "nameCity": "Kosipe", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5", + "cityId": 3846, + "codeIataCity": "KSQ", + "codeIso2Country": "UZ", + "geonameId": 0, + "latitudeCity": 38.80981, + "longitudeCity": 65.77531, + "nameCity": "Karshi", + "timezone": "Asia/Samarkand" + }, + { + "GMT": "-9", + "cityId": 3847, + "codeIataCity": "KSR", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 56.233334, + "longitudeCity": -160.23306, + "nameCity": "Sandy River", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "cityId": 3848, + "codeIataCity": "KSS", + "codeIso2Country": "ML", + "geonameId": 0, + "latitudeCity": 11.3, + "longitudeCity": -5.583333, + "nameCity": "Sikasso", + "timezone": "Africa/Bamako" + }, + { + "GMT": "3", + "cityId": 3849, + "codeIataCity": "KST", + "codeIso2Country": "SD", + "geonameId": 0, + "latitudeCity": 13.133333, + "longitudeCity": 32.716667, + "nameCity": "Kosti", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "10", + "cityId": 3850, + "codeIataCity": "KSV", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -23.55, + "longitudeCity": 140.68333, + "nameCity": "Springvale", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "cityId": 3851, + "codeIataCity": "KSW", + "codeIso2Country": "IL", + "geonameId": 293100, + "latitudeCity": 33.216667, + "longitudeCity": 35.566666, + "nameCity": "Kiryat Shmona", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "10", + "cityId": 3852, + "codeIataCity": "KSX", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.6, + "longitudeCity": 146.18333, + "nameCity": "Yasuru", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 3853, + "codeIataCity": "KSY", + "codeIso2Country": "TR", + "geonameId": 743952, + "latitudeCity": 40.551666, + "longitudeCity": 43.085835, + "nameCity": "Kars", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3", + "cityId": 3854, + "codeIataCity": "KSZ", + "codeIso2Country": "RU", + "geonameId": 476062, + "latitudeCity": 61.233334, + "longitudeCity": 46.7, + "nameCity": "Kotlas", + "timezone": "Europe/Moscow" + }, + { + "GMT": "8", + "cityId": 3855, + "codeIataCity": "KTA", + "codeIso2Country": "AU", + "geonameId": 6620339, + "latitudeCity": -20.70826, + "longitudeCity": 116.77006, + "nameCity": "Karratha", + "timezone": "Australia/Perth" + }, + { + "GMT": "-9", + "cityId": 3856, + "codeIataCity": "KTB", + "codeIso2Country": "US", + "geonameId": 5557944, + "latitudeCity": 55.68833, + "longitudeCity": -132.535, + "nameCity": "Thorne Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "cityId": 3857, + "codeIataCity": "KTC", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 8.166667, + "longitudeCity": -5.166667, + "nameCity": "Katiola", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "9", + "cityId": 3858, + "codeIataCity": "KTD", + "codeIso2Country": "JP", + "geonameId": 0, + "latitudeCity": 25.95, + "longitudeCity": 131.3, + "nameCity": "Kitadaito", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "8", + "cityId": 3859, + "codeIataCity": "KTE", + "codeIso2Country": "MY", + "geonameId": 1735227, + "latitudeCity": 4.538333, + "longitudeCity": 103.42833, + "nameCity": "Kerteh", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "12", + "cityId": 3860, + "codeIataCity": "KTF", + "codeIso2Country": "NZ", + "geonameId": 2186280, + "latitudeCity": -40.85, + "longitudeCity": 172.8, + "nameCity": "Takaka", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "7", + "cityId": 3861, + "codeIataCity": "KTG", + "codeIso2Country": "ID", + "geonameId": 1640135, + "latitudeCity": -1.833333, + "longitudeCity": 109.98333, + "nameCity": "Ketapang", + "timezone": "Asia/Pontianak" + }, + { + "GMT": "-9", + "cityId": 3862, + "codeIataCity": "KTH", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 59.966667, + "longitudeCity": -158.33333, + "nameCity": "Tikchik", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "cityId": 3863, + "codeIataCity": "KTI", + "codeIso2Country": "KH", + "geonameId": 1830564, + "latitudeCity": 12.5, + "longitudeCity": 106.05, + "nameCity": "Kratie", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "10", + "cityId": 3864, + "codeIataCity": "KTK", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.338889, + "longitudeCity": 154.75, + "nameCity": "Kanua", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 3865, + "codeIataCity": "KTL", + "codeIso2Country": "KE", + "geonameId": 191220, + "latitudeCity": 0.974111, + "longitudeCity": 34.959248, + "nameCity": "Kitale", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "5.45", + "cityId": 3866, + "codeIataCity": "KTM", + "codeIso2Country": "NP", + "geonameId": 1283240, + "latitudeCity": 27.699905, + "longitudeCity": 85.35657, + "nameCity": "Kathmandu", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-9", + "cityId": 3867, + "codeIataCity": "KTN", + "codeIso2Country": "US", + "geonameId": 5554428, + "latitudeCity": 55.342222, + "longitudeCity": -131.646111, + "nameCity": "Ketchikan", + "timezone": "America/Sitka" + }, + { + "GMT": "-4", + "cityId": 3868, + "codeIataCity": "KTO", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 4.65, + "longitudeCity": -59.816666, + "nameCity": "Kato", + "timezone": "America/Guyana" + }, + { + "GMT": "2", + "cityId": 3869, + "codeIataCity": "KTQ", + "codeIso2Country": "FI", + "geonameId": 652615, + "latitudeCity": 62.165833, + "longitudeCity": 30.076668, + "nameCity": "Kitee", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "9.30", + "cityId": 3870, + "codeIataCity": "KTR", + "codeIso2Country": "AU", + "geonameId": 2068655, + "latitudeCity": -14.4575, + "longitudeCity": 132.2714, + "nameCity": "Katherine", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-9", + "cityId": 3871, + "codeIataCity": "KTS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 65.329445, + "longitudeCity": -166.47166, + "nameCity": "Teller Mission", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "cityId": 3872, + "codeIataCity": "KTT", + "codeIso2Country": "FI", + "geonameId": 7117281, + "latitudeCity": 67.695946, + "longitudeCity": 24.859028, + "nameCity": "Kittila", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "5.30", + "cityId": 3873, + "codeIataCity": "KTU", + "codeIso2Country": "IN", + "geonameId": 1260243, + "latitudeCity": 25.0, + "longitudeCity": 76.5, + "nameCity": "Kota", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-4", + "cityId": 3874, + "codeIataCity": "KTV", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 5.75, + "longitudeCity": -62.416668, + "nameCity": "Kamarata", + "timezone": "America/Caracas" + }, + { + "GMT": "1", + "cityId": 3875, + "codeIataCity": "KTW", + "codeIso2Country": "PL", + "geonameId": 3096472, + "latitudeCity": 50.264892, + "longitudeCity": 19.023781, + "nameCity": "Katowice", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "0", + "cityId": 3876, + "codeIataCity": "KTX", + "codeIso2Country": "ML", + "geonameId": 0, + "latitudeCity": 12.416667, + "longitudeCity": -5.383333, + "nameCity": "Koutiala", + "timezone": "Africa/Bamako" + }, + { + "GMT": "5.30", + "cityId": 3877, + "codeIataCity": "KTY", + "codeIso2Country": "LK", + "geonameId": 1241964, + "latitudeCity": 6.0, + "longitudeCity": 80.3, + "nameCity": "Katukurunda", + "timezone": "Asia/Colombo" + }, + { + "GMT": "8", + "cityId": 3878, + "codeIataCity": "KUA", + "codeIso2Country": "MY", + "geonameId": 1735227, + "latitudeCity": 3.780765, + "longitudeCity": 103.21518, + "nameCity": "Kuantan", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "12", + "cityId": 3879, + "codeIataCity": "KUC", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": 0.233333, + "longitudeCity": 173.38333, + "nameCity": "Kuria", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "8", + "cityId": 3880, + "codeIataCity": "KUD", + "codeIso2Country": "MY", + "geonameId": 1736458, + "latitudeCity": 6.925, + "longitudeCity": 116.83417, + "nameCity": "Kudat", + "timezone": "Asia/Kuching" + }, + { + "GMT": "11", + "cityId": 3881, + "codeIataCity": "KUE", + "codeIso2Country": "SB", + "geonameId": 2107198, + "latitudeCity": -8.016667, + "longitudeCity": 156.0, + "nameCity": "Kukundu", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "4", + "cityId": 3882, + "codeIataCity": "KUF", + "codeIso2Country": "RU", + "geonameId": 499099, + "latitudeCity": 53.50782, + "longitudeCity": 50.14742, + "nameCity": "Samara", + "timezone": "Europe/Samara" + }, + { + "GMT": "10", + "cityId": 3883, + "codeIataCity": "KUG", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -10.233333, + "longitudeCity": 142.3, + "nameCity": "Kubin Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "9", + "cityId": 3884, + "codeIataCity": "KUH", + "codeIso2Country": "JP", + "geonameId": 2129376, + "latitudeCity": 43.04565, + "longitudeCity": 144.19682, + "nameCity": "Kushiro", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "12", + "cityId": 3885, + "codeIataCity": "KUI", + "codeIso2Country": "NZ", + "geonameId": 2188952, + "latitudeCity": -36.416668, + "longitudeCity": 174.83333, + "nameCity": "Kawau Island", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "9", + "cityId": 3886, + "codeIataCity": "KUJ", + "codeIso2Country": "JP", + "geonameId": 1858033, + "latitudeCity": 33.433334, + "longitudeCity": 135.78334, + "nameCity": "Kushimoto", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-9", + "cityId": 3887, + "codeIataCity": "KUK", + "codeIso2Country": "US", + "geonameId": 5865891, + "latitudeCity": 60.876087, + "longitudeCity": -162.52124, + "nameCity": "Kasigluk", + "timezone": "America/Nome" + }, + { + "GMT": "8", + "cityId": 3888, + "codeIataCity": "KUL", + "codeIso2Country": "MY", + "geonameId": 1735161, + "latitudeCity": 3.139003, + "longitudeCity": 101.686855, + "nameCity": "Kuala Lumpur", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "9", + "cityId": 3889, + "codeIataCity": "KUM", + "codeIso2Country": "JP", + "geonameId": 7384012, + "latitudeCity": 30.385555, + "longitudeCity": 130.65916, + "nameCity": "Yakushima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "2", + "cityId": 3890, + "codeIataCity": "KUN", + "codeIso2Country": "LT", + "geonameId": 598316, + "latitudeCity": 54.9, + "longitudeCity": 23.916668, + "nameCity": "Kaunas", + "timezone": "Europe/Vilnius" + }, + { + "GMT": "2", + "cityId": 3891, + "codeIataCity": "KUO", + "codeIso2Country": "FI", + "geonameId": 650224, + "latitudeCity": 63.008907, + "longitudeCity": 27.788696, + "nameCity": "Kuopio", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "10", + "cityId": 3892, + "codeIataCity": "KUP", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -10.091667, + "longitudeCity": 148.16667, + "nameCity": "Kupiano", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 3893, + "codeIataCity": "KUQ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.133333, + "longitudeCity": 143.26666, + "nameCity": "Kuri", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "4.30", + "cityId": 3894, + "codeIataCity": "KUR", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 38.4, + "longitudeCity": 71.11667, + "nameCity": "Kuran-O-Munjan", + "timezone": "Asia/Kabul" + }, + { + "GMT": "-3", + "cityId": 3895, + "codeIataCity": "KUS", + "codeIso2Country": "GL", + "geonameId": 3422225, + "latitudeCity": 65.566666, + "longitudeCity": -37.11667, + "nameCity": "Kulusuk", + "timezone": "America/Godthab" + }, + { + "GMT": "4", + "cityId": 3896, + "codeIataCity": "KUT", + "codeIso2Country": "GE", + "geonameId": 615532, + "latitudeCity": 42.25, + "longitudeCity": 42.7, + "nameCity": "Kutaisi", + "timezone": "Asia/Tbilisi" + }, + { + "GMT": "5.30", + "cityId": 3897, + "codeIataCity": "KUU", + "codeIso2Country": "IN", + "geonameId": 1265709, + "latitudeCity": 31.983334, + "longitudeCity": 77.1, + "nameCity": "Bhuntar Kullu", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "9", + "cityId": 3898, + "codeIataCity": "KUV", + "codeIso2Country": "KR", + "geonameId": 1841811, + "latitudeCity": 35.983334, + "longitudeCity": 126.75, + "nameCity": "Gunsan", + "timezone": "Asia/Seoul" + }, + { + "GMT": "-9", + "cityId": 3899, + "codeIataCity": "KUW", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 67.96667, + "longitudeCity": -161.98334, + "nameCity": "Kugururok River", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 3900, + "codeIataCity": "KUX", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.378333, + "longitudeCity": 141.63055, + "nameCity": "Kuyol", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 3901, + "codeIataCity": "KUY", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.4275, + "longitudeCity": 143.12389, + "nameCity": "Kamusi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "cityId": 3902, + "codeIataCity": "KUZ", + "codeIso2Country": "KR", + "geonameId": 0, + "latitudeCity": 37.716667, + "longitudeCity": 128.81667, + "nameCity": "Gunsan AB", + "timezone": "Asia/Seoul" + }, + { + "GMT": "2", + "cityId": 3903, + "codeIataCity": "KVA", + "codeIso2Country": "GR", + "geonameId": 735861, + "latitudeCity": 40.912994, + "longitudeCity": 24.619675, + "nameCity": "Kavala", + "timezone": "Europe/Athens" + }, + { + "GMT": "1", + "cityId": 3904, + "codeIataCity": "KVB", + "codeIso2Country": "SE", + "geonameId": 2677234, + "latitudeCity": 58.45, + "longitudeCity": 13.966667, + "nameCity": "Skovde", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-9", + "cityId": 3905, + "codeIataCity": "KVC", + "codeIso2Country": "US", + "geonameId": 5866308, + "latitudeCity": 55.055, + "longitudeCity": -162.31334, + "nameCity": "King Cove", + "timezone": "America/Nome" + }, + { + "GMT": "4", + "cityId": 3906, + "codeIataCity": "KVD", + "codeIso2Country": "AZ", + "geonameId": 586523, + "latitudeCity": 40.733334, + "longitudeCity": 46.316666, + "nameCity": "Gyandzha", + "timezone": "Asia/Baku" + }, + { + "GMT": "10", + "cityId": 3907, + "codeIataCity": "KVE", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.666667, + "longitudeCity": 151.33333, + "nameCity": "Kitava", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 3908, + "codeIataCity": "KVG", + "codeIso2Country": "PG", + "geonameId": 2094342, + "latitudeCity": -2.58075, + "longitudeCity": 150.80653, + "nameCity": "Kavieng", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 3909, + "codeIataCity": "KVK", + "codeIso2Country": "RU", + "geonameId": 548391, + "latitudeCity": 67.583336, + "longitudeCity": 33.583332, + "nameCity": "Kirovsk", + "timezone": "Europe/Volgograd" + }, + { + "GMT": "-9", + "cityId": 3910, + "codeIataCity": "KVL", + "codeIso2Country": "US", + "geonameId": 5866441, + "latitudeCity": 67.73167, + "longitudeCity": -164.54723, + "nameCity": "Kivalina", + "timezone": "America/Nome" + }, + { + "GMT": "10", + "cityId": 3911, + "codeIataCity": "KVR", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 44.266865, + "longitudeCity": 135.0357, + "nameCity": "Kavalerovo", + "timezone": "Asia/Vladivostok" + }, + { + "GMT": "12", + "cityId": 3912, + "codeIataCity": "KVU", + "codeIso2Country": "FJ", + "geonameId": 2196554, + "latitudeCity": -17.766666, + "longitudeCity": 178.0, + "nameCity": "Korolevu", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "3", + "cityId": 3913, + "codeIataCity": "KVX", + "codeIso2Country": "RU", + "geonameId": 548408, + "latitudeCity": 58.5, + "longitudeCity": 49.35, + "nameCity": "Kirov", + "timezone": "Europe/Volgograd" + }, + { + "GMT": "12", + "cityId": 3914, + "codeIataCity": "KWA", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 8.720843, + "longitudeCity": 167.72195, + "nameCity": "Kwajalein", + "timezone": "Pacific/Kwajalein" + }, + { + "GMT": "7", + "cityId": 3915, + "codeIataCity": "KWB", + "codeIso2Country": "ID", + "geonameId": 1642548, + "latitudeCity": -5.833333, + "longitudeCity": 110.5, + "nameCity": "Karimunjawa", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "1", + "cityId": 3916, + "codeIataCity": "KWD", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": -1.95, + "longitudeCity": 124.97, + "nameCity": "Kawadjia", + "timezone": "Africa/Bangui" + }, + { + "GMT": "8", + "cityId": 3917, + "codeIataCity": "KWE", + "codeIso2Country": "CN", + "geonameId": 1809461, + "latitudeCity": 26.544216, + "longitudeCity": 106.79598, + "nameCity": "Guiyang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-9", + "cityId": 3918, + "codeIataCity": "KWF", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 55.297222, + "longitudeCity": -133.24167, + "nameCity": "Waterfall", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "cityId": 3919, + "codeIataCity": "KWG", + "codeIso2Country": "UA", + "geonameId": 703845, + "latitudeCity": 48.05, + "longitudeCity": 33.216667, + "nameCity": "Krivoy Rog", + "timezone": "Europe/Kiev" + }, + { + "GMT": "4.30", + "cityId": 3920, + "codeIataCity": "KWH", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 33.916668, + "longitudeCity": 66.333336, + "nameCity": "Khwahan", + "timezone": "Asia/Kabul" + }, + { + "GMT": "3", + "cityId": 3921, + "codeIataCity": "KWI", + "codeIso2Country": "KW", + "geonameId": 285787, + "latitudeCity": 29.240116, + "longitudeCity": 47.971252, + "nameCity": "Kuwait City", + "timezone": "Asia/Kuwait" + }, + { + "GMT": "9", + "cityId": 3922, + "codeIataCity": "KWJ", + "codeIso2Country": "KR", + "geonameId": 1841811, + "latitudeCity": 35.140175, + "longitudeCity": 126.81021, + "nameCity": "Gwangju", + "timezone": "Asia/Seoul" + }, + { + "GMT": "-9", + "cityId": 3923, + "codeIataCity": "KWK", + "codeIso2Country": "US", + "geonameId": 5866990, + "latitudeCity": 59.833332, + "longitudeCity": -163.13333, + "nameCity": "Kwigillingok", + "timezone": "America/Nome" + }, + { + "GMT": "8", + "cityId": 3924, + "codeIataCity": "KWL", + "codeIso2Country": "CN", + "geonameId": 1809498, + "latitudeCity": 25.133333, + "longitudeCity": 110.316666, + "nameCity": "Guilin", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "cityId": 3925, + "codeIataCity": "KWM", + "codeIso2Country": "AU", + "geonameId": 2161022, + "latitudeCity": -15.4875, + "longitudeCity": 141.74834, + "nameCity": "Kowanyama", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "cityId": 3926, + "codeIataCity": "KWN", + "codeIso2Country": "US", + "geonameId": 5872343, + "latitudeCity": 59.761112, + "longitudeCity": -161.83333, + "nameCity": "Quinhagak", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 3927, + "codeIataCity": "KWO", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.983333, + "longitudeCity": 142.81667, + "nameCity": "Kawito", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 3928, + "codeIataCity": "KWP", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.766945, + "longitudeCity": -153.55, + "nameCity": "West Point", + "timezone": "America/Anchorage" + }, + { + "GMT": "11", + "cityId": 3929, + "codeIataCity": "KWR", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -8.566667, + "longitudeCity": 160.73334, + "nameCity": "Kwai Harbour", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "11", + "cityId": 3930, + "codeIataCity": "KWS", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": 41.350193, + "longitudeCity": -71.8069, + "nameCity": "Kwailabesi", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-9", + "cityId": 3931, + "codeIataCity": "KWT", + "codeIso2Country": "US", + "geonameId": 5866985, + "latitudeCity": 60.808887, + "longitudeCity": -161.4375, + "nameCity": "Kwethluk", + "timezone": "America/Anchorage" + }, + { + "GMT": "12", + "cityId": 3932, + "codeIataCity": "KWU", + "codeIso2Country": "NZ", + "geonameId": 2190324, + "latitudeCity": 22.316668, + "longitudeCity": 114.21667, + "nameCity": "Mansion House", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "10", + "cityId": 3933, + "codeIataCity": "KWV", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.183333, + "longitudeCity": 155.33333, + "nameCity": "Kurwina", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 3934, + "codeIataCity": "KWX", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.583333, + "longitudeCity": 143.41667, + "nameCity": "Kiwai Island", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 3935, + "codeIataCity": "KWY", + "codeIso2Country": "KE", + "geonameId": 8199179, + "latitudeCity": -2.016667, + "longitudeCity": 41.266666, + "nameCity": "Kiwayu", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "2", + "cityId": 3936, + "codeIataCity": "KWZ", + "codeIso2Country": "CD", + "geonameId": 922773, + "latitudeCity": -10.766667, + "longitudeCity": 25.506945, + "nameCity": "Kolwezi", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-9", + "cityId": 3937, + "codeIataCity": "KXA", + "codeIso2Country": "US", + "geonameId": 5554288, + "latitudeCity": 55.537777, + "longitudeCity": -132.39583, + "nameCity": "Kasaan", + "timezone": "America/Sitka" + }, + { + "GMT": "2", + "cityId": 3938, + "codeIataCity": "KXE", + "codeIso2Country": "ZA", + "geonameId": 989921, + "latitudeCity": -26.866667, + "longitudeCity": 26.716667, + "nameCity": "Klerksdorp", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "12", + "cityId": 3939, + "codeIataCity": "KXF", + "codeIso2Country": "FJ", + "geonameId": 2198520, + "latitudeCity": -17.333332, + "longitudeCity": 179.83333, + "nameCity": "Koro Island", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "10", + "cityId": 3940, + "codeIataCity": "KXK", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 50.4, + "longitudeCity": 136.95, + "nameCity": "Komsomolsk Na Amure", + "timezone": "Asia/Vladivostok" + }, + { + "GMT": "10", + "cityId": 3941, + "codeIataCity": "KXR", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.15, + "longitudeCity": 154.58333, + "nameCity": "Karoola", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-10", + "cityId": 3942, + "codeIataCity": "KXU", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -16.339443, + "longitudeCity": -144.40306, + "nameCity": "Katiu", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "3", + "cityId": 3943, + "codeIataCity": "KYA", + "codeIso2Country": "TR", + "geonameId": 306571, + "latitudeCity": 37.979168, + "longitudeCity": 32.56222, + "nameCity": "Konya", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "8", + "cityId": 3944, + "codeIataCity": "KYD", + "codeIso2Country": "TW", + "geonameId": 1676242, + "latitudeCity": 22.083332, + "longitudeCity": 121.5, + "nameCity": "Orchid Island", + "timezone": "Asia/Taipei" + }, + { + "GMT": "2", + "cityId": 3945, + "codeIataCity": "KYE", + "codeIso2Country": "LB", + "geonameId": 276781, + "latitudeCity": 34.58611, + "longitudeCity": 36.002777, + "nameCity": "Tripoli", + "timezone": "Asia/Beirut" + }, + { + "GMT": "8", + "cityId": 3946, + "codeIataCity": "KYF", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -27.277779, + "longitudeCity": 120.075, + "nameCity": "Yeelirrie", + "timezone": "Australia/Perth" + }, + { + "GMT": "9.30", + "cityId": 3947, + "codeIataCity": "KYI", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -31.483334, + "longitudeCity": 131.86667, + "nameCity": "Yalata Mission", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-9", + "cityId": 3948, + "codeIataCity": "KYK", + "codeIso2Country": "US", + "geonameId": 5865850, + "latitudeCity": 57.566113, + "longitudeCity": -154.45, + "nameCity": "Karluk", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 3949, + "codeIataCity": "KYL", + "codeIso2Country": "US", + "geonameId": 4160795, + "latitudeCity": 25.066668, + "longitudeCity": -80.46667, + "nameCity": "Key Largo", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 3950, + "codeIataCity": "KYN", + "codeIso2Country": "GB", + "geonameId": 2642465, + "latitudeCity": 52.03428, + "longitudeCity": -0.774107, + "nameCity": "Milton Keynes", + "timezone": "Europe/London" + }, + { + "GMT": "6.30", + "cityId": 3951, + "codeIataCity": "KYP", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 19.433332, + "longitudeCity": 93.53333, + "nameCity": "Kyaukpyu", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "0", + "cityId": 3952, + "codeIataCity": "KYS", + "codeIso2Country": "ML", + "geonameId": 2455518, + "latitudeCity": 14.431944, + "longitudeCity": -11.439444, + "nameCity": "Kayes", + "timezone": "Africa/Bamako" + }, + { + "GMT": "6.30", + "cityId": 3953, + "codeIataCity": "KYT", + "codeIso2Country": "MM", + "geonameId": 1302638, + "latitudeCity": 21.4, + "longitudeCity": 94.13333, + "nameCity": "Kyauktaw", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-9", + "cityId": 3954, + "codeIataCity": "KYU", + "codeIso2Country": "US", + "geonameId": 5866753, + "latitudeCity": 64.87806, + "longitudeCity": -157.71306, + "nameCity": "Koyukuk", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 3955, + "codeIataCity": "KYX", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.183333, + "longitudeCity": 147.01666, + "nameCity": "Yalumet", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "7", + "cityId": 3956, + "codeIataCity": "KYZ", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 51.7, + "longitudeCity": 94.46667, + "nameCity": "Kyzyl", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "-9", + "cityId": 3957, + "codeIataCity": "KZB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.55, + "longitudeCity": -153.75, + "nameCity": "Zachar Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "cityId": 3958, + "codeIataCity": "KZC", + "codeIso2Country": "KH", + "geonameId": 1821306, + "latitudeCity": 12.333333, + "longitudeCity": 104.583336, + "nameCity": "Kompong-Chhna", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "7", + "cityId": 3959, + "codeIataCity": "KZD", + "codeIso2Country": "KH", + "geonameId": 1822214, + "latitudeCity": 12.533333, + "longitudeCity": 104.2, + "nameCity": "Krakor", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "10", + "cityId": 3960, + "codeIataCity": "KZF", + "codeIso2Country": "PG", + "geonameId": 2095029, + "latitudeCity": -7.466667, + "longitudeCity": 146.0, + "nameCity": "Kaintiba", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 3961, + "codeIataCity": "KZG", + "codeIso2Country": "DE", + "geonameId": 2805615, + "latitudeCity": 49.733334, + "longitudeCity": 10.15, + "nameCity": "Kitzingen", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-9", + "cityId": 3962, + "codeIataCity": "KZH", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.583332, + "longitudeCity": -153.15, + "nameCity": "Kizhuyak", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "cityId": 3963, + "codeIataCity": "KZI", + "codeIso2Country": "GR", + "geonameId": 735563, + "latitudeCity": 40.288612, + "longitudeCity": 21.841944, + "nameCity": "Kozani", + "timezone": "Europe/Athens" + }, + { + "GMT": "3", + "cityId": 3964, + "codeIataCity": "KZN", + "codeIso2Country": "RU", + "geonameId": 551487, + "latitudeCity": 55.60844, + "longitudeCity": 49.29824, + "nameCity": "Kazan", + "timezone": "Europe/Moscow" + }, + { + "GMT": "6", + "cityId": 3965, + "codeIataCity": "KZO", + "codeIso2Country": "KZ", + "geonameId": 0, + "latitudeCity": 44.712223, + "longitudeCity": 65.59288, + "nameCity": "Kzyl-Orda", + "timezone": "Asia/Qyzylorda" + }, + { + "GMT": "3", + "cityId": 3966, + "codeIataCity": "KZR", + "codeIso2Country": "TR", + "geonameId": 0, + "latitudeCity": 39.120277, + "longitudeCity": 30.116945, + "nameCity": "Kutahya", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "2", + "cityId": 3967, + "codeIataCity": "KZS", + "codeIso2Country": "GR", + "geonameId": 257080, + "latitudeCity": 36.083332, + "longitudeCity": 29.333332, + "nameCity": "Kastelorizo", + "timezone": "Europe/Athens" + }, + { + "GMT": "-7", + "cityId": 3968, + "codeIataCity": "LAA", + "codeIso2Country": "US", + "geonameId": 5427705, + "latitudeCity": 38.06861, + "longitudeCity": -102.69028, + "nameCity": "Lamar", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "cityId": 3969, + "codeIataCity": "LAB", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.633333, + "longitudeCity": 148.06667, + "nameCity": "Lablab", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 3970, + "codeIataCity": "LAC", + "codeIso2Country": "MY", + "geonameId": 0, + "latitudeCity": 7.4, + "longitudeCity": 113.85, + "nameCity": "Pulau Layang-Layang Island", + "timezone": "Asia/Kuching" + }, + { + "GMT": "1", + "cityId": 3971, + "codeIataCity": "LAD", + "codeIso2Country": "AO", + "geonameId": 2240449, + "latitudeCity": -8.847951, + "longitudeCity": 13.234862, + "nameCity": "Luanda", + "timezone": "Africa/Luanda" + }, + { + "GMT": "10", + "cityId": 3972, + "codeIataCity": "LAE", + "codeIso2Country": "PG", + "geonameId": 2092740, + "latitudeCity": -6.562694, + "longitudeCity": 146.72757, + "nameCity": "Lae", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 3973, + "codeIataCity": "LAF", + "codeIso2Country": "US", + "geonameId": 4922462, + "latitudeCity": 40.411945, + "longitudeCity": -86.93361, + "nameCity": "Lafayette", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-4", + "cityId": 3974, + "codeIataCity": "LAG", + "codeIso2Country": "VE", + "geonameId": 3646738, + "latitudeCity": 10.6, + "longitudeCity": -66.933334, + "nameCity": "La Guaira", + "timezone": "America/Caracas" + }, + { + "GMT": "9", + "cityId": 3975, + "codeIataCity": "LAH", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -0.616667, + "longitudeCity": 127.48333, + "nameCity": "Labuha", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "cityId": 3976, + "codeIataCity": "LAI", + "codeIso2Country": "FR", + "geonameId": 3007609, + "latitudeCity": 48.754166, + "longitudeCity": -3.481944, + "nameCity": "Lannion", + "timezone": "Europe/Paris" + }, + { + "GMT": "-3", + "cityId": 3977, + "codeIataCity": "LAJ", + "codeIso2Country": "BR", + "geonameId": 3469447, + "latitudeCity": -27.8, + "longitudeCity": -50.316666, + "nameCity": "Lages", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-7", + "cityId": 3978, + "codeIataCity": "LAK", + "codeIso2Country": "CA", + "geonameId": 5882953, + "latitudeCity": 68.22222, + "longitudeCity": -134.98584, + "nameCity": "Aklavik", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-5", + "cityId": 3979, + "codeIataCity": "LAL", + "codeIso2Country": "US", + "geonameId": 4161438, + "latitudeCity": 27.98889, + "longitudeCity": -82.014725, + "nameCity": "Lakeland", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 3980, + "codeIataCity": "LAM", + "codeIso2Country": "US", + "geonameId": 5490263, + "latitudeCity": 35.88333, + "longitudeCity": -106.316666, + "nameCity": "Los Alamos", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "cityId": 3981, + "codeIataCity": "LAN", + "codeIso2Country": "US", + "geonameId": 4998830, + "latitudeCity": 42.774185, + "longitudeCity": -84.58958, + "nameCity": "Lansing", + "timezone": "America/Detroit" + }, + { + "GMT": "8", + "cityId": 3982, + "codeIataCity": "LAO", + "codeIso2Country": "PH", + "geonameId": 1707404, + "latitudeCity": 18.182407, + "longitudeCity": 120.53413, + "nameCity": "Laoag", + "timezone": "Asia/Manila" + }, + { + "GMT": "-7", + "cityId": 3983, + "codeIataCity": "LAP", + "codeIso2Country": "MX", + "geonameId": 4000900, + "latitudeCity": 24.076088, + "longitudeCity": -110.367836, + "nameCity": "La Paz", + "timezone": "America/Mazatlan" + }, + { + "GMT": "2", + "cityId": 3984, + "codeIataCity": "LAQ", + "codeIso2Country": "LY", + "geonameId": 0, + "latitudeCity": 32.788612, + "longitudeCity": 21.964167, + "nameCity": "Beida", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "-7", + "cityId": 3985, + "codeIataCity": "LAR", + "codeIso2Country": "US", + "geonameId": 5830062, + "latitudeCity": 41.31361, + "longitudeCity": -105.67306, + "nameCity": "Laramie", + "timezone": "America/Denver" + }, + { + "GMT": "-8", + "cityId": 3986, + "codeIataCity": "LAS", + "codeIso2Country": "US", + "geonameId": 5506956, + "latitudeCity": 36.114646, + "longitudeCity": -115.172816, + "nameCity": "Las Vegas", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 3987, + "codeIataCity": "LAT", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 4.75, + "longitudeCity": -74.05, + "nameCity": "La Uribe", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "cityId": 3988, + "codeIataCity": "LAU", + "codeIso2Country": "KE", + "geonameId": 189741, + "latitudeCity": -2.25, + "longitudeCity": 40.911667, + "nameCity": "Lamu", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "13", + "cityId": 3989, + "codeIataCity": "LAV", + "codeIso2Country": "WS", + "geonameId": 4035301, + "latitudeCity": -14.016667, + "longitudeCity": -171.73334, + "nameCity": "Lalomalava", + "timezone": "Pacific/Apia" + }, + { + "GMT": "-6", + "cityId": 3990, + "codeIataCity": "LAW", + "codeIso2Country": "US", + "geonameId": 4540737, + "latitudeCity": 34.56972, + "longitudeCity": -98.416115, + "nameCity": "Lawton", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 3991, + "codeIataCity": "LAX", + "codeIso2Country": "US", + "geonameId": 5368361, + "latitudeCity": 34.052234, + "longitudeCity": -118.243685, + "nameCity": "Los Angeles", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "cityId": 3992, + "codeIataCity": "LAY", + "codeIso2Country": "ZA", + "geonameId": 984998, + "latitudeCity": -28.566668, + "longitudeCity": 29.75, + "nameCity": "Ladysmith", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-3", + "cityId": 3993, + "codeIataCity": "LAZ", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -13.256944, + "longitudeCity": -43.4125, + "nameCity": "Bom Jesus Da Lapa", + "timezone": "America/Bahia" + }, + { + "GMT": "0", + "cityId": 3994, + "codeIataCity": "LBA", + "codeIso2Country": "GB", + "geonameId": 2633352, + "latitudeCity": 53.837126, + "longitudeCity": -1.472229, + "nameCity": "Leeds", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "cityId": 3995, + "codeIataCity": "LBB", + "codeIso2Country": "US", + "geonameId": 5525577, + "latitudeCity": 33.577863, + "longitudeCity": -101.855166, + "nameCity": "Lubbock", + "timezone": "America/Chicago" + }, + { + "GMT": "5", + "cityId": 3996, + "codeIataCity": "LBD", + "codeIso2Country": "TJ", + "geonameId": 0, + "latitudeCity": 40.219887, + "longitudeCity": 69.6965, + "nameCity": "Khudzhand", + "timezone": "Asia/Dushanbe" + }, + { + "GMT": "-5", + "cityId": 3997, + "codeIataCity": "LBE", + "codeIso2Country": "US", + "geonameId": 5197227, + "latitudeCity": 40.27639, + "longitudeCity": -79.40278, + "nameCity": "Latrobe", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 3998, + "codeIataCity": "LBF", + "codeIso2Country": "US", + "geonameId": 5697939, + "latitudeCity": 41.128334, + "longitudeCity": -100.69667, + "nameCity": "North Platte", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 3999, + "codeIataCity": "LBI", + "codeIso2Country": "FR", + "geonameId": 3038261, + "latitudeCity": 43.933334, + "longitudeCity": 2.15, + "nameCity": "Albi", + "timezone": "Europe/Paris" + }, + { + "GMT": "8", + "cityId": 4000, + "codeIataCity": "LBJ", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -8.516667, + "longitudeCity": 119.88333, + "nameCity": "Labuan Bajo", + "timezone": "Asia/Makassar" + }, + { + "GMT": "3", + "cityId": 4001, + "codeIataCity": "LBK", + "codeIso2Country": "KE", + "geonameId": 0, + "latitudeCity": 0.383333, + "longitudeCity": 40.966667, + "nameCity": "Liboi", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-6", + "cityId": 4002, + "codeIataCity": "LBL", + "codeIso2Country": "US", + "geonameId": 5445820, + "latitudeCity": 37.044445, + "longitudeCity": -100.960556, + "nameCity": "Liberal", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 4003, + "codeIataCity": "LBM", + "codeIso2Country": "MZ", + "geonameId": 1043458, + "latitudeCity": -18.5, + "longitudeCity": 36.166668, + "nameCity": "Luabo", + "timezone": "Africa/Maputo" + }, + { + "GMT": "3", + "cityId": 4004, + "codeIataCity": "LBN", + "codeIso2Country": "KE", + "geonameId": 0, + "latitudeCity": 0.666667, + "longitudeCity": 36.083332, + "nameCity": "Lake Baringo", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "2", + "cityId": 4005, + "codeIataCity": "LBO", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -4.966667, + "longitudeCity": 23.45, + "nameCity": "Lusambo", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "8", + "cityId": 4006, + "codeIataCity": "LBP", + "codeIso2Country": "MY", + "geonameId": 1737559, + "latitudeCity": 3.2, + "longitudeCity": 115.4, + "nameCity": "Long Banga", + "timezone": "Asia/Kuching" + }, + { + "GMT": "1", + "cityId": 4007, + "codeIataCity": "LBQ", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -0.714722, + "longitudeCity": 10.239444, + "nameCity": "Lambarene", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-4", + "cityId": 4008, + "codeIataCity": "LBR", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -7.25, + "longitudeCity": -64.85, + "nameCity": "Labrea", + "timezone": "America/Manaus" + }, + { + "GMT": "12", + "cityId": 4009, + "codeIataCity": "LBS", + "codeIso2Country": "FJ", + "geonameId": 2204582, + "latitudeCity": -16.466215, + "longitudeCity": 179.33766, + "nameCity": "Labasa", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-5", + "cityId": 4010, + "codeIataCity": "LBT", + "codeIso2Country": "US", + "geonameId": 4477525, + "latitudeCity": 34.61404, + "longitudeCity": -79.06011, + "nameCity": "Lumberton", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 4011, + "codeIataCity": "LBU", + "codeIso2Country": "MY", + "geonameId": 1733782, + "latitudeCity": 5.294355, + "longitudeCity": 115.24916, + "nameCity": "Labuan", + "timezone": "Asia/Kuching" + }, + { + "GMT": "1", + "cityId": 4012, + "codeIataCity": "LBV", + "codeIso2Country": "GA", + "geonameId": 2399697, + "latitudeCity": 0.456963, + "longitudeCity": 9.409852, + "nameCity": "Libreville", + "timezone": "Africa/Libreville" + }, + { + "GMT": "8", + "cityId": 4013, + "codeIataCity": "LBW", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 0.583333, + "longitudeCity": 115.166664, + "nameCity": "Long Bawan", + "timezone": "Asia/Makassar" + }, + { + "GMT": "8", + "cityId": 4014, + "codeIataCity": "LBX", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 13.865556, + "longitudeCity": 120.105, + "nameCity": "Lubang", + "timezone": "Asia/Manila" + }, + { + "GMT": "1", + "cityId": 4015, + "codeIataCity": "LBY", + "codeIso2Country": "FR", + "geonameId": 3019766, + "latitudeCity": 47.28889, + "longitudeCity": -2.345833, + "nameCity": "La Baule-Escoublac", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "cityId": 4016, + "codeIataCity": "LBZ", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -8.383333, + "longitudeCity": 20.666668, + "nameCity": "Lukapa", + "timezone": "Africa/Luanda" + }, + { + "GMT": "2", + "cityId": 4017, + "codeIataCity": "LCA", + "codeIso2Country": "CY", + "geonameId": 146400, + "latitudeCity": 34.880867, + "longitudeCity": 33.62599, + "nameCity": "Larnaca", + "timezone": "Asia/Nicosia" + }, + { + "GMT": "-4", + "cityId": 4018, + "codeIataCity": "LCB", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -13.013333, + "longitudeCity": -59.99861, + "nameCity": "Pontes e Lacerda", + "timezone": "America/Cuiaba" + }, + { + "GMT": "1", + "cityId": 4019, + "codeIataCity": "LCC", + "codeIso2Country": "IT", + "geonameId": 3174953, + "latitudeCity": 40.353291, + "longitudeCity": 18.174015, + "nameCity": "Lecce", + "timezone": "Europe/Rome" + }, + { + "GMT": "2", + "cityId": 4020, + "codeIataCity": "LCD", + "codeIso2Country": "ZA", + "geonameId": 981827, + "latitudeCity": -23.016666, + "longitudeCity": 29.716667, + "nameCity": "Louis Trichardt", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-6", + "cityId": 4021, + "codeIataCity": "LCE", + "codeIso2Country": "HN", + "geonameId": 3608248, + "latitudeCity": 15.740556, + "longitudeCity": -86.85722, + "nameCity": "La Ceiba", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-6", + "cityId": 4022, + "codeIataCity": "LCF", + "codeIso2Country": "GT", + "geonameId": 3593376, + "latitudeCity": 15.667778, + "longitudeCity": -88.94778, + "nameCity": "Rio Dulce", + "timezone": "America/Guatemala" + }, + { + "GMT": "1", + "cityId": 4023, + "codeIataCity": "LCG", + "codeIso2Country": "ES", + "geonameId": 3119841, + "latitudeCity": 43.370873, + "longitudeCity": -8.395835, + "nameCity": "La Coruna", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-6", + "cityId": 4024, + "codeIataCity": "LCH", + "codeIso2Country": "US", + "geonameId": 4330236, + "latitudeCity": 30.226595, + "longitudeCity": -93.217376, + "nameCity": "Lake Charles", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 4025, + "codeIataCity": "LCI", + "codeIso2Country": "US", + "geonameId": 5088438, + "latitudeCity": 43.57139, + "longitudeCity": -71.42111, + "nameCity": "Laconia", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 4026, + "codeIataCity": "LCJ", + "codeIso2Country": "PL", + "geonameId": 3093133, + "latitudeCity": 51.721943, + "longitudeCity": 19.398333, + "nameCity": "Lodz", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "-5", + "cityId": 4027, + "codeIataCity": "LCL", + "codeIso2Country": "CU", + "geonameId": 0, + "latitudeCity": 22.283333, + "longitudeCity": -83.61667, + "nameCity": "La Coloma", + "timezone": "America/Havana" + }, + { + "GMT": "-3", + "cityId": 4028, + "codeIataCity": "LCM", + "codeIso2Country": "AR", + "geonameId": 3860259, + "latitudeCity": -30.966667, + "longitudeCity": -64.5, + "nameCity": "La Cumbre", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "9.30", + "cityId": 4029, + "codeIataCity": "LCN", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -30.516666, + "longitudeCity": 139.35, + "nameCity": "Balcanoona", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "1", + "cityId": 4030, + "codeIataCity": "LCO", + "codeIso2Country": "CG", + "geonameId": 0, + "latitudeCity": -2.45, + "longitudeCity": 14.533333, + "nameCity": "Lague", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-3", + "cityId": 4031, + "codeIataCity": "LCP", + "codeIso2Country": "AR", + "geonameId": 8556186, + "latitudeCity": -38.083332, + "longitudeCity": -70.666664, + "nameCity": "Loncopue", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-5", + "cityId": 4032, + "codeIataCity": "LCQ", + "codeIso2Country": "US", + "geonameId": 4161187, + "latitudeCity": 30.320557, + "longitudeCity": -82.66861, + "nameCity": "Lake City", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 4033, + "codeIataCity": "LCR", + "codeIso2Country": "CO", + "geonameId": 3679512, + "latitudeCity": -0.733333, + "longitudeCity": -73.01667, + "nameCity": "La Chorrera", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 4034, + "codeIataCity": "LCS", + "codeIso2Country": "CR", + "geonameId": 0, + "latitudeCity": 10.418889, + "longitudeCity": -85.104164, + "nameCity": "Las Canas", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "1", + "cityId": 4035, + "codeIataCity": "LCV", + "codeIso2Country": "IT", + "geonameId": 3174530, + "latitudeCity": 43.833332, + "longitudeCity": 10.583333, + "nameCity": "Lucca", + "timezone": "Europe/Rome" + }, + { + "GMT": "8", + "cityId": 4036, + "codeIataCity": "LCX", + "codeIso2Country": "CN", + "geonameId": 1786401, + "latitudeCity": 25.675556, + "longitudeCity": 116.74556, + "nameCity": "Longyan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "5.30", + "cityId": 4037, + "codeIataCity": "LDA", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 25.033333, + "longitudeCity": 88.15, + "nameCity": "Malda", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-3", + "cityId": 4038, + "codeIataCity": "LDB", + "codeIso2Country": "BR", + "geonameId": 3458449, + "latitudeCity": -23.328457, + "longitudeCity": -51.137714, + "nameCity": "Londrina", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "cityId": 4039, + "codeIataCity": "LDC", + "codeIso2Country": "AU", + "geonameId": 6354936, + "latitudeCity": -21.0, + "longitudeCity": 149.0, + "nameCity": "Lindeman Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 4040, + "codeIataCity": "LDE", + "codeIso2Country": "FR", + "geonameId": 2997395, + "latitudeCity": 43.18651, + "longitudeCity": 0.003368, + "nameCity": "Lourdes", + "timezone": "Europe/Paris" + }, + { + "GMT": "3", + "cityId": 4041, + "codeIataCity": "LDG", + "codeIso2Country": "RU", + "geonameId": 535839, + "latitudeCity": 64.9, + "longitudeCity": 45.75, + "nameCity": "Leshukonskoye", + "timezone": "Europe/Moscow" + }, + { + "GMT": "10.30", + "cityId": 4042, + "codeIataCity": "LDH", + "codeIso2Country": "AU", + "geonameId": 6930427, + "latitudeCity": -31.540808, + "longitudeCity": 159.07816, + "nameCity": "Lord Howe Island", + "timezone": "Australia/Lord_Howe" + }, + { + "GMT": "3", + "cityId": 4043, + "codeIataCity": "LDI", + "codeIso2Country": "TZ", + "geonameId": 878281, + "latitudeCity": -9.845833, + "longitudeCity": 39.759445, + "nameCity": "Lindi", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-5", + "cityId": 4044, + "codeIataCity": "LDJ", + "codeIso2Country": "US", + "geonameId": 5128581, + "latitudeCity": 40.61667, + "longitudeCity": -74.25, + "nameCity": "Linden", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 4045, + "codeIataCity": "LDK", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 58.5, + "longitudeCity": 13.166667, + "nameCity": "Lidkoping", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "cityId": 4046, + "codeIataCity": "LDM", + "codeIso2Country": "US", + "geonameId": 4985887, + "latitudeCity": 44.075333, + "longitudeCity": -86.479164, + "nameCity": "Ludington", + "timezone": "America/Detroit" + }, + { + "GMT": "5.45", + "cityId": 4047, + "codeIataCity": "LDN", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 27.25, + "longitudeCity": 86.71667, + "nameCity": "Lamidanda", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-3", + "cityId": 4048, + "codeIataCity": "LDO", + "codeIso2Country": "SR", + "geonameId": 0, + "latitudeCity": 4.216667, + "longitudeCity": -55.233334, + "nameCity": "Ladouanie", + "timezone": "America/Paramaribo" + }, + { + "GMT": "3", + "cityId": 4049, + "codeIataCity": "LDR", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 13.9, + "longitudeCity": 45.86667, + "nameCity": "Lodar", + "timezone": "Asia/Aden" + }, + { + "GMT": "8", + "cityId": 4050, + "codeIataCity": "LDS", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 47.751827, + "longitudeCity": 129.01799, + "nameCity": "Yichun", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 4051, + "codeIataCity": "LDU", + "codeIso2Country": "MY", + "geonameId": 1733953, + "latitudeCity": 5.035278, + "longitudeCity": 118.32611, + "nameCity": "Lahad Datu", + "timezone": "Asia/Kuching" + }, + { + "GMT": "1", + "cityId": 4052, + "codeIataCity": "LDV", + "codeIso2Country": "FR", + "geonameId": 3007842, + "latitudeCity": 48.5, + "longitudeCity": -4.1, + "nameCity": "Landivisiau", + "timezone": "Europe/Paris" + }, + { + "GMT": "8", + "cityId": 4053, + "codeIataCity": "LDW", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.883333, + "longitudeCity": 126.65, + "nameCity": "Lansdowne", + "timezone": "Australia/Perth" + }, + { + "GMT": "-3", + "cityId": 4054, + "codeIataCity": "LDX", + "codeIso2Country": "GF", + "geonameId": 0, + "latitudeCity": 5.483333, + "longitudeCity": -54.05, + "nameCity": "St Laurent du Maroni", + "timezone": "America/Cayenne" + }, + { + "GMT": "0", + "cityId": 4055, + "codeIataCity": "LDY", + "codeIso2Country": "GB", + "geonameId": 2643736, + "latitudeCity": 55.039566, + "longitudeCity": -7.155835, + "nameCity": "Derry", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "cityId": 4056, + "codeIataCity": "LDZ", + "codeIso2Country": "ZA", + "geonameId": 954955, + "latitudeCity": -24.8, + "longitudeCity": 31.5, + "nameCity": "Londolozi", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "8", + "cityId": 4057, + "codeIataCity": "LEA", + "codeIso2Country": "AU", + "geonameId": 2079404, + "latitudeCity": -22.239883, + "longitudeCity": 114.09427, + "nameCity": "Learmonth", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "cityId": 4058, + "codeIataCity": "LEB", + "codeIso2Country": "US", + "geonameId": 5088597, + "latitudeCity": 43.62936, + "longitudeCity": -72.310005, + "nameCity": "White River", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 4059, + "codeIataCity": "LEC", + "codeIso2Country": "BR", + "geonameId": 3458651, + "latitudeCity": -12.48, + "longitudeCity": -41.281113, + "nameCity": "Lencois", + "timezone": "America/Bahia" + }, + { + "GMT": "3", + "cityId": 4060, + "codeIataCity": "LED", + "codeIso2Country": "RU", + "geonameId": 498817, + "latitudeCity": 59.939039, + "longitudeCity": 30.315785, + "nameCity": "Saint Petersburg", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-5", + "cityId": 4061, + "codeIataCity": "LEE", + "codeIso2Country": "US", + "geonameId": 4167147, + "latitudeCity": 28.833332, + "longitudeCity": -81.816666, + "nameCity": "Leesburg", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 4062, + "codeIataCity": "LEF", + "codeIso2Country": "LS", + "geonameId": 0, + "latitudeCity": -29.783333, + "longitudeCity": 28.583332, + "nameCity": "Lebakeng", + "timezone": "Africa/Maseru" + }, + { + "GMT": "0", + "cityId": 4063, + "codeIataCity": "LEG", + "codeIso2Country": "MR", + "geonameId": 2381659, + "latitudeCity": 17.166668, + "longitudeCity": -13.95, + "nameCity": "Aleg", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "1", + "cityId": 4064, + "codeIataCity": "LEH", + "codeIso2Country": "FR", + "geonameId": 3013173, + "latitudeCity": 49.53889, + "longitudeCity": 0.088611, + "nameCity": "Le Havre", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "cityId": 4065, + "codeIataCity": "LEI", + "codeIso2Country": "ES", + "geonameId": 2521886, + "latitudeCity": 36.847984, + "longitudeCity": -2.371873, + "nameCity": "Almeria", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "cityId": 4066, + "codeIataCity": "LEJ", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 51.43, + "longitudeCity": 12.24, + "nameCity": "Leipzig-Halle", + "timezone": "Europe/Berlin" + }, + { + "GMT": "0", + "cityId": 4067, + "codeIataCity": "LEK", + "codeIso2Country": "GN", + "geonameId": 0, + "latitudeCity": 11.333333, + "longitudeCity": -12.297222, + "nameCity": "Labe", + "timezone": "Africa/Conakry" + }, + { + "GMT": "9.30", + "cityId": 4068, + "codeIataCity": "LEL", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -12.508333, + "longitudeCity": 135.8, + "nameCity": "Lake Evella", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-7", + "cityId": 4069, + "codeIataCity": "LEM", + "codeIso2Country": "US", + "geonameId": 5766453, + "latitudeCity": 45.940834, + "longitudeCity": -102.15889, + "nameCity": "Lemmon", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 4070, + "codeIataCity": "LEN", + "codeIso2Country": "ES", + "geonameId": 3118532, + "latitudeCity": 42.599876, + "longitudeCity": -5.571752, + "nameCity": "Leon", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "cityId": 4071, + "codeIataCity": "LEO", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -1.566667, + "longitudeCity": 14.216667, + "nameCity": "Leconi", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-3", + "cityId": 4072, + "codeIataCity": "LEP", + "codeIso2Country": "BR", + "geonameId": 3459505, + "latitudeCity": -21.466667, + "longitudeCity": -42.666668, + "nameCity": "Leopoldina", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "0", + "cityId": 4073, + "codeIataCity": "LEQ", + "codeIso2Country": "GB", + "geonameId": 2640377, + "latitudeCity": 50.05, + "longitudeCity": -5.733333, + "nameCity": "Lands End", + "timezone": "Europe/London" + }, + { + "GMT": "8", + "cityId": 4074, + "codeIataCity": "LER", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -27.833332, + "longitudeCity": 120.61667, + "nameCity": "Leinster", + "timezone": "Australia/Perth" + }, + { + "GMT": "2", + "cityId": 4075, + "codeIataCity": "LES", + "codeIso2Country": "LS", + "geonameId": 0, + "latitudeCity": -29.666668, + "longitudeCity": 27.666668, + "nameCity": "Lesobeng", + "timezone": "Africa/Maseru" + }, + { + "GMT": "-5", + "cityId": 4076, + "codeIataCity": "LET", + "codeIso2Country": "CO", + "geonameId": 3676623, + "latitudeCity": -4.196389, + "longitudeCity": -69.939445, + "nameCity": "Leticia", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 4077, + "codeIataCity": "LEU", + "codeIso2Country": "ES", + "geonameId": 3109143, + "latitudeCity": 42.416668, + "longitudeCity": 1.466667, + "nameCity": "Seo de Urgel", + "timezone": "Europe/Madrid" + }, + { + "GMT": "12", + "cityId": 4078, + "codeIataCity": "LEV", + "codeIso2Country": "FJ", + "geonameId": 2198148, + "latitudeCity": -17.683332, + "longitudeCity": 178.83333, + "nameCity": "Bureta", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-5", + "cityId": 4079, + "codeIataCity": "LEW", + "codeIso2Country": "US", + "geonameId": 4956976, + "latitudeCity": 44.1, + "longitudeCity": -70.23333, + "nameCity": "Lewiston", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 4080, + "codeIataCity": "LEX", + "codeIso2Country": "US", + "geonameId": 4297983, + "latitudeCity": 38.031714, + "longitudeCity": -84.495136, + "nameCity": "Lexington", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 4081, + "codeIataCity": "LEY", + "codeIso2Country": "NL", + "geonameId": 2759794, + "latitudeCity": 52.466667, + "longitudeCity": 5.533333, + "nameCity": "Lelystad", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "-6", + "cityId": 4082, + "codeIataCity": "LEZ", + "codeIso2Country": "HN", + "geonameId": 3613321, + "latitudeCity": 14.25, + "longitudeCity": -88.166664, + "nameCity": "La Esperanza", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "2", + "cityId": 4083, + "codeIataCity": "LFB", + "codeIso2Country": "MZ", + "geonameId": 1043244, + "latitudeCity": -15.033333, + "longitudeCity": 40.666668, + "nameCity": "Lumbo", + "timezone": "Africa/Maputo" + }, + { + "GMT": "3.30", + "cityId": 4084, + "codeIataCity": "LFM", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 27.37412, + "longitudeCity": 53.190926, + "nameCity": "Lamerd", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-5", + "cityId": 4085, + "codeIataCity": "LFN", + "codeIso2Country": "US", + "geonameId": 4487042, + "latitudeCity": 36.1, + "longitudeCity": -78.3, + "nameCity": "Louisburg", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 4086, + "codeIataCity": "LFO", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 5.666667, + "longitudeCity": 44.333332, + "nameCity": "Kelafo", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "10", + "cityId": 4087, + "codeIataCity": "LFP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -15.05, + "longitudeCity": 144.00555, + "nameCity": "Lakefield", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-4", + "cityId": 4088, + "codeIataCity": "LFR", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 8.240556, + "longitudeCity": -72.272224, + "nameCity": "La Fria", + "timezone": "America/Caracas" + }, + { + "GMT": "-6", + "cityId": 4089, + "codeIataCity": "LFT", + "codeIso2Country": "US", + "geonameId": 4330145, + "latitudeCity": 30.20851, + "longitudeCity": -91.99327, + "nameCity": "Lafayette", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 4090, + "codeIataCity": "LFW", + "codeIso2Country": "TG", + "geonameId": 0, + "latitudeCity": 6.167103, + "longitudeCity": 1.250347, + "nameCity": "Lome", + "timezone": "Africa/Lome" + }, + { + "GMT": "-8", + "cityId": 4091, + "codeIataCity": "LGB", + "codeIso2Country": "US", + "geonameId": 5367929, + "latitudeCity": 33.79, + "longitudeCity": -118.16, + "nameCity": "Long Beach", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 4092, + "codeIataCity": "LGC", + "codeIso2Country": "US", + "geonameId": 4204230, + "latitudeCity": 33.0075, + "longitudeCity": -85.07083, + "nameCity": "La Grange", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "cityId": 4093, + "codeIataCity": "LGD", + "codeIso2Country": "US", + "geonameId": 5745380, + "latitudeCity": 45.289722, + "longitudeCity": -118.005, + "nameCity": "La Grande", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "cityId": 4094, + "codeIataCity": "LGE", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -20.133333, + "longitudeCity": 127.566666, + "nameCity": "Lake Gregory", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "cityId": 4095, + "codeIataCity": "LGG", + "codeIso2Country": "BE", + "geonameId": 2800866, + "latitudeCity": 50.63333, + "longitudeCity": 5.56666, + "nameCity": "Liege", + "timezone": "Europe/Brussels" + }, + { + "GMT": "9.30", + "cityId": 4096, + "codeIataCity": "LGH", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -30.466667, + "longitudeCity": 138.41667, + "nameCity": "Leigh Creek", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-5", + "cityId": 4097, + "codeIataCity": "LGI", + "codeIso2Country": "BS", + "geonameId": 3572523, + "latitudeCity": 23.179443, + "longitudeCity": -75.09055, + "nameCity": "Long Island", + "timezone": "America/Nassau" + }, + { + "GMT": "2", + "cityId": 4098, + "codeIataCity": "LGJ", + "codeIso2Country": "RO", + "geonameId": 674531, + "latitudeCity": 45.68861, + "longitudeCity": 21.90306, + "nameCity": "Lugoj", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "8", + "cityId": 4099, + "codeIataCity": "LGK", + "codeIso2Country": "MY", + "geonameId": 1222387, + "latitudeCity": 6.342174, + "longitudeCity": 99.7314, + "nameCity": "Langkawi", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "8", + "cityId": 4100, + "codeIataCity": "LGL", + "codeIso2Country": "MY", + "geonameId": 1737558, + "latitudeCity": 4.183333, + "longitudeCity": 114.25, + "nameCity": "Long Lellang", + "timezone": "Asia/Kuching" + }, + { + "GMT": "10", + "cityId": 4101, + "codeIataCity": "LGM", + "codeIso2Country": "PG", + "geonameId": 2092705, + "latitudeCity": -4.333333, + "longitudeCity": 145.41667, + "nameCity": "Laiagam", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 4102, + "codeIataCity": "LGN", + "codeIso2Country": "PG", + "geonameId": 2093967, + "latitudeCity": -5.683333, + "longitudeCity": 149.41667, + "nameCity": "Linga Linga", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 4103, + "codeIataCity": "LGO", + "codeIso2Country": "DE", + "geonameId": 2880861, + "latitudeCity": 53.766666, + "longitudeCity": 7.533333, + "nameCity": "Langeoog", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "cityId": 4104, + "codeIataCity": "LGP", + "codeIso2Country": "PH", + "geonameId": 1706889, + "latitudeCity": 13.15213, + "longitudeCity": 123.7302, + "nameCity": "Legazpi", + "timezone": "Asia/Manila" + }, + { + "GMT": "-5", + "cityId": 4105, + "codeIataCity": "LGQ", + "codeIso2Country": "EC", + "geonameId": 3763453, + "latitudeCity": 0.1, + "longitudeCity": -76.88333, + "nameCity": "Lago Agrio", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-4", + "cityId": 4106, + "codeIataCity": "LGR", + "codeIso2Country": "CL", + "geonameId": 3874966, + "latitudeCity": -47.166668, + "longitudeCity": -72.0, + "nameCity": "Cochrane", + "timezone": "America/Santiago" + }, + { + "GMT": "-3", + "cityId": 4107, + "codeIataCity": "LGS", + "codeIso2Country": "AR", + "geonameId": 3845181, + "latitudeCity": -35.5, + "longitudeCity": -69.583336, + "nameCity": "Malargue", + "timezone": "America/Argentina/Mendoza" + }, + { + "GMT": "-5", + "cityId": 4108, + "codeIataCity": "LGT", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 9.166667, + "longitudeCity": -74.5, + "nameCity": "Las Gaviotas", + "timezone": "America/Bogota" + }, + { + "GMT": "-7", + "cityId": 4109, + "codeIataCity": "LGU", + "codeIso2Country": "US", + "geonameId": 5777544, + "latitudeCity": 41.7875, + "longitudeCity": -111.855, + "nameCity": "Logan", + "timezone": "America/Denver" + }, + { + "GMT": "3", + "cityId": 4110, + "codeIataCity": "LGX", + "codeIso2Country": "SO", + "geonameId": 0, + "latitudeCity": 3.8, + "longitudeCity": 42.05, + "nameCity": "Lugh Ganane", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-4", + "cityId": 4111, + "codeIataCity": "LGY", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 8.516667, + "longitudeCity": -71.4, + "nameCity": "Lagunillas", + "timezone": "America/Caracas" + }, + { + "GMT": "-5", + "cityId": 4112, + "codeIataCity": "LGZ", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 37.755833, + "longitudeCity": 20.888332, + "nameCity": "Leguizamo", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 4113, + "codeIataCity": "LHA", + "codeIso2Country": "DE", + "geonameId": 2881885, + "latitudeCity": 48.333332, + "longitudeCity": 7.883333, + "nameCity": "Lahr", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "cityId": 4114, + "codeIataCity": "LHB", + "codeIso2Country": "US", + "geonameId": 4676206, + "latitudeCity": 54.233334, + "longitudeCity": -165.6, + "nameCity": "Lost Harbor", + "timezone": "America/Chicago" + }, + { + "GMT": "5", + "cityId": 4115, + "codeIataCity": "LHE", + "codeIso2Country": "PK", + "geonameId": 1172451, + "latitudeCity": 31.520832, + "longitudeCity": 74.40278, + "nameCity": "Lahore", + "timezone": "Asia/Karachi" + }, + { + "GMT": "10", + "cityId": 4116, + "codeIataCity": "LHG", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -29.458332, + "longitudeCity": 147.98334, + "nameCity": "Lightning Ridge", + "timezone": "Australia/Sydney" + }, + { + "GMT": "9", + "cityId": 4117, + "codeIataCity": "LHI", + "codeIso2Country": "ID", + "geonameId": 2082460, + "latitudeCity": -3.133333, + "longitudeCity": 139.9, + "nameCity": "Lereh", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "cityId": 4118, + "codeIataCity": "LHK", + "codeIso2Country": "CN", + "geonameId": 1908442, + "latitudeCity": 32.266666, + "longitudeCity": 111.63333, + "nameCity": "Guanghua", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 4119, + "codeIataCity": "LHN", + "codeIso2Country": "TW", + "geonameId": 1672799, + "latitudeCity": 23.433332, + "longitudeCity": 121.3, + "nameCity": "Lishan", + "timezone": "Asia/Taipei" + }, + { + "GMT": "10", + "cityId": 4120, + "codeIataCity": "LHP", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.5, + "longitudeCity": 155.7, + "nameCity": "Lehu", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "cityId": 4121, + "codeIataCity": "LHS", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -32.85, + "longitudeCity": -68.816666, + "nameCity": "Las Heras", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "2", + "cityId": 4122, + "codeIataCity": "LHU", + "codeIso2Country": "NA", + "geonameId": 0, + "latitudeCity": -18.116388, + "longitudeCity": 23.391666, + "nameCity": "Caprivi", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-5", + "cityId": 4123, + "codeIataCity": "LHV", + "codeIso2Country": "US", + "geonameId": 5198635, + "latitudeCity": 41.13333, + "longitudeCity": -77.45, + "nameCity": "Lock Haven", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 4124, + "codeIataCity": "LHW", + "codeIso2Country": "CN", + "geonameId": 1804430, + "latitudeCity": 36.033333, + "longitudeCity": 103.86667, + "nameCity": "Lanzhou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 4125, + "codeIataCity": "LIA", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 30.816668, + "longitudeCity": 107.7, + "nameCity": "Liangping", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9.30", + "cityId": 4126, + "codeIataCity": "LIB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.2, + "longitudeCity": 129.8, + "nameCity": "Limbunya", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-7", + "cityId": 4127, + "codeIataCity": "LIC", + "codeIso2Country": "US", + "geonameId": 5428504, + "latitudeCity": 39.266666, + "longitudeCity": -103.683334, + "nameCity": "Limon", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 4128, + "codeIataCity": "LIE", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": 3.623611, + "longitudeCity": 18.63889, + "nameCity": "Libenge", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "11", + "cityId": 4129, + "codeIataCity": "LIF", + "codeIso2Country": "NC", + "geonameId": 0, + "latitudeCity": -20.766666, + "longitudeCity": 167.25, + "nameCity": "Lifou", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "1", + "cityId": 4130, + "codeIataCity": "LIG", + "codeIso2Country": "FR", + "geonameId": 2998286, + "latitudeCity": 45.86218, + "longitudeCity": 1.176245, + "nameCity": "Limoges", + "timezone": "Europe/Paris" + }, + { + "GMT": "-10", + "cityId": 4131, + "codeIataCity": "LIH", + "codeIso2Country": "US", + "geonameId": 5849616, + "latitudeCity": 21.981111, + "longitudeCity": -159.371111, + "nameCity": "Lihue", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "9", + "cityId": 4132, + "codeIataCity": "LII", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.733333, + "longitudeCity": 137.96666, + "nameCity": "Mulia", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-9", + "cityId": 4133, + "codeIataCity": "LIJ", + "codeIso2Country": "US", + "geonameId": 5554428, + "latitudeCity": 54.92917, + "longitudeCity": -132.80833, + "nameCity": "Long Island", + "timezone": "America/Sitka" + }, + { + "GMT": "12", + "cityId": 4134, + "codeIataCity": "LIK", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 9.816667, + "longitudeCity": 169.31667, + "nameCity": "Likiep Island", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "1", + "cityId": 4135, + "codeIataCity": "LIL", + "codeIso2Country": "FR", + "geonameId": 2998324, + "latitudeCity": 50.62925, + "longitudeCity": 3.057256, + "nameCity": "Lille", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 4136, + "codeIataCity": "LIM", + "codeIso2Country": "PE", + "geonameId": 3936456, + "latitudeCity": -12.019421, + "longitudeCity": -77.107666, + "nameCity": "Lima", + "timezone": "America/Lima" + }, + { + "GMT": "-6", + "cityId": 4137, + "codeIataCity": "LIO", + "codeIso2Country": "CR", + "geonameId": 3622247, + "latitudeCity": 9.955833, + "longitudeCity": -83.02111, + "nameCity": "Limon", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-3", + "cityId": 4138, + "codeIataCity": "LIP", + "codeIso2Country": "BR", + "geonameId": 3471859, + "latitudeCity": -21.666668, + "longitudeCity": -49.75, + "nameCity": "Lins", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "cityId": 4139, + "codeIataCity": "LIQ", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": 2.172222, + "longitudeCity": 21.495832, + "nameCity": "Lisala", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "-6", + "cityId": 4140, + "codeIataCity": "LIR", + "codeIso2Country": "CR", + "geonameId": 3623076, + "latitudeCity": 10.600005, + "longitudeCity": -85.53839, + "nameCity": "Liberia", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "0", + "cityId": 4141, + "codeIataCity": "LIS", + "codeIso2Country": "PT", + "geonameId": 2267057, + "latitudeCity": 38.706932, + "longitudeCity": -9.135632, + "nameCity": "Lisbon", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "-6", + "cityId": 4142, + "codeIataCity": "LIT", + "codeIso2Country": "US", + "geonameId": 4119403, + "latitudeCity": 34.727432, + "longitudeCity": -92.221375, + "nameCity": "Little Rock", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 4143, + "codeIataCity": "LIV", + "codeIso2Country": "US", + "geonameId": 5867695, + "latitudeCity": 65.51667, + "longitudeCity": -148.66667, + "nameCity": "Livengood", + "timezone": "America/Anchorage" + }, + { + "GMT": "6.30", + "cityId": 4144, + "codeIataCity": "LIW", + "codeIso2Country": "MM", + "geonameId": 1313479, + "latitudeCity": 19.68861, + "longitudeCity": 97.21694, + "nameCity": "Loikaw", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "2", + "cityId": 4145, + "codeIataCity": "LIX", + "codeIso2Country": "MW", + "geonameId": 0, + "latitudeCity": -12.083333, + "longitudeCity": 34.733334, + "nameCity": "Likoma Island", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "-5", + "cityId": 4146, + "codeIataCity": "LIY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 31.85, + "longitudeCity": -81.6, + "nameCity": "Hinesville", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 4147, + "codeIataCity": "LIZ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.033333, + "longitudeCity": -78.63333, + "nameCity": "Limestone", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 4148, + "codeIataCity": "LJA", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -3.397222, + "longitudeCity": 23.444445, + "nameCity": "Lodja", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "8", + "cityId": 4149, + "codeIataCity": "LJG", + "codeIso2Country": "CN", + "geonameId": 1813253, + "latitudeCity": 26.683332, + "longitudeCity": 100.25, + "nameCity": "Lijiang City", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "cityId": 4150, + "codeIataCity": "LJN", + "codeIso2Country": "US", + "geonameId": 4699066, + "latitudeCity": 29.038334, + "longitudeCity": -95.45695, + "nameCity": "Lake Jackson", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 4151, + "codeIataCity": "LJU", + "codeIso2Country": "SI", + "geonameId": 3196359, + "latitudeCity": 46.23102, + "longitudeCity": 14.454972, + "nameCity": "Ljubljana", + "timezone": "Europe/Ljubljana" + }, + { + "GMT": "8", + "cityId": 4152, + "codeIataCity": "LKA", + "codeIso2Country": "ID", + "geonameId": 1638385, + "latitudeCity": -8.35, + "longitudeCity": 122.98333, + "nameCity": "Larantuka", + "timezone": "Asia/Makassar" + }, + { + "GMT": "12", + "cityId": 4153, + "codeIataCity": "LKB", + "codeIso2Country": "FJ", + "geonameId": 0, + "latitudeCity": -18.2, + "longitudeCity": 179.2, + "nameCity": "Lakeba", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "1", + "cityId": 4154, + "codeIataCity": "LKC", + "codeIso2Country": "CG", + "geonameId": 2568803, + "latitudeCity": -2.316667, + "longitudeCity": 14.6, + "nameCity": "Lekana", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "10", + "cityId": 4155, + "codeIataCity": "LKD", + "codeIso2Country": "AU", + "geonameId": 2152681, + "latitudeCity": -15.816667, + "longitudeCity": 144.95, + "nameCity": "Lakeland Downs", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "cityId": 4156, + "codeIataCity": "LKG", + "codeIso2Country": "KE", + "geonameId": 0, + "latitudeCity": 4.233333, + "longitudeCity": 34.35, + "nameCity": "Lokichoggio", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "8", + "cityId": 4157, + "codeIataCity": "LKH", + "codeIso2Country": "MY", + "geonameId": 1738147, + "latitudeCity": 3.312934, + "longitudeCity": 114.78566, + "nameCity": "Long Akah", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-9", + "cityId": 4158, + "codeIataCity": "LKK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 59.816666, + "longitudeCity": -158.83333, + "nameCity": "Kulik Lake", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 4159, + "codeIataCity": "LKL", + "codeIso2Country": "NO", + "geonameId": 779082, + "latitudeCity": 70.06778, + "longitudeCity": 24.973612, + "nameCity": "Lakselv", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 4160, + "codeIataCity": "LKN", + "codeIso2Country": "NO", + "geonameId": 7626400, + "latitudeCity": 68.15421, + "longitudeCity": 13.614864, + "nameCity": "Leknes", + "timezone": "Europe/Oslo" + }, + { + "GMT": "5.30", + "cityId": 4161, + "codeIataCity": "LKO", + "codeIso2Country": "IN", + "geonameId": 1264733, + "latitudeCity": 26.764257, + "longitudeCity": 80.884186, + "nameCity": "Lucknow", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "cityId": 4162, + "codeIataCity": "LKP", + "codeIso2Country": "US", + "geonameId": 5123831, + "latitudeCity": 44.283333, + "longitudeCity": -73.98333, + "nameCity": "Lake Placid", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 4163, + "codeIataCity": "LKR", + "codeIso2Country": "SO", + "geonameId": 0, + "latitudeCity": 11.15, + "longitudeCity": 48.2, + "nameCity": "Las Khoreh", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-6", + "cityId": 4164, + "codeIataCity": "LKS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 30.500834, + "longitudeCity": -98.14694, + "nameCity": "Lakeside", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 4165, + "codeIataCity": "LKU", + "codeIso2Country": "KE", + "geonameId": 0, + "latitudeCity": 3.416667, + "longitudeCity": 35.88333, + "nameCity": "Lake Rudolf", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-8", + "cityId": 4166, + "codeIataCity": "LKV", + "codeIso2Country": "US", + "geonameId": 5735792, + "latitudeCity": 42.166668, + "longitudeCity": -120.4, + "nameCity": "Lakeview", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "4", + "cityId": 4167, + "codeIataCity": "LKW", + "codeIso2Country": "OM", + "geonameId": 0, + "latitudeCity": 22.8047, + "longitudeCity": 55.3658, + "nameCity": "Lekhwair", + "timezone": "Asia/Muscat" + }, + { + "GMT": "3", + "cityId": 4168, + "codeIataCity": "LKY", + "codeIso2Country": "TZ", + "geonameId": 158324, + "latitudeCity": -3.5, + "longitudeCity": 36.416668, + "nameCity": "Lake Manyara", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "0", + "cityId": 4169, + "codeIataCity": "LKZ", + "codeIso2Country": "GB", + "geonameId": 0, + "latitudeCity": 52.49167, + "longitudeCity": 0.67609, + "nameCity": "Brandon", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 4170, + "codeIataCity": "LLA", + "codeIso2Country": "SE", + "geonameId": 604490, + "latitudeCity": 65.54939, + "longitudeCity": 22.123587, + "nameCity": "Lulea", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "8", + "cityId": 4171, + "codeIataCity": "LLB", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 25.452477, + "longitudeCity": 107.961914, + "nameCity": "Libo", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "cityId": 4172, + "codeIataCity": "LLE", + "codeIso2Country": "ZA", + "geonameId": 979837, + "latitudeCity": -25.466667, + "longitudeCity": 31.566668, + "nameCity": "Malelane", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "8", + "cityId": 4173, + "codeIataCity": "LLF", + "codeIso2Country": "CN", + "geonameId": 1817446, + "latitudeCity": 26.345556, + "longitudeCity": 111.61222, + "nameCity": "Lingling", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "cityId": 4174, + "codeIataCity": "LLG", + "codeIso2Country": "AU", + "geonameId": 2171623, + "latitudeCity": -17.133333, + "longitudeCity": 144.53334, + "nameCity": "Chillagoe", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "cityId": 4175, + "codeIataCity": "LLH", + "codeIso2Country": "HN", + "geonameId": 0, + "latitudeCity": 15.443056, + "longitudeCity": -87.89889, + "nameCity": "Las Limas", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "3", + "cityId": 4176, + "codeIataCity": "LLI", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 12.016667, + "longitudeCity": 39.066666, + "nameCity": "Lalibela", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "4", + "cityId": 4177, + "codeIataCity": "LLK", + "codeIso2Country": "AZ", + "geonameId": 147622, + "latitudeCity": 38.74203, + "longitudeCity": 48.824093, + "nameCity": "Lankaran", + "timezone": "Asia/Baku" + }, + { + "GMT": "8", + "cityId": 4178, + "codeIataCity": "LLL", + "codeIso2Country": "AU", + "geonameId": 2068110, + "latitudeCity": -16.566668, + "longitudeCity": 128.63333, + "nameCity": "Lissadell", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "cityId": 4179, + "codeIataCity": "LLM", + "codeIso2Country": "MY", + "geonameId": 1737957, + "latitudeCity": 3.766667, + "longitudeCity": 114.46667, + "nameCity": "Long Lama", + "timezone": "Asia/Kuching" + }, + { + "GMT": "9", + "cityId": 4180, + "codeIataCity": "LLN", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.75, + "longitudeCity": 138.66667, + "nameCity": "Kelila", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "10", + "cityId": 4181, + "codeIataCity": "LLP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -23.166668, + "longitudeCity": 138.7, + "nameCity": "Linda Downs", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "cityId": 4182, + "codeIataCity": "LLS", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -24.716667, + "longitudeCity": -60.583332, + "nameCity": "Las Lomitas", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "1", + "cityId": 4183, + "codeIataCity": "LLT", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -12.3711, + "longitudeCity": 13.5367, + "nameCity": "Lobito", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-3", + "cityId": 4184, + "codeIataCity": "LLU", + "codeIso2Country": "GL", + "geonameId": 3424682, + "latitudeCity": 60.46417, + "longitudeCity": -45.56889, + "nameCity": "Alluitsup Paa", + "timezone": "America/Godthab" + }, + { + "GMT": "2", + "cityId": 4185, + "codeIataCity": "LLW", + "codeIso2Country": "MW", + "geonameId": 927967, + "latitudeCity": -13.780039, + "longitudeCity": 33.780197, + "nameCity": "Lilongwe", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "-5", + "cityId": 4186, + "codeIataCity": "LLX", + "codeIso2Country": "US", + "geonameId": 5238203, + "latitudeCity": 44.5, + "longitudeCity": -72.01667, + "nameCity": "Lyndonville", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 4187, + "codeIataCity": "LLY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.916668, + "longitudeCity": -74.75, + "nameCity": "Mount Holly", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 4188, + "codeIataCity": "LMA", + "codeIso2Country": "US", + "geonameId": 5867107, + "latitudeCity": 63.88333, + "longitudeCity": -152.31667, + "nameCity": "Lake Minchumina", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "cityId": 4189, + "codeIataCity": "LMB", + "codeIso2Country": "MW", + "geonameId": 924055, + "latitudeCity": -13.75, + "longitudeCity": 34.583332, + "nameCity": "Salima", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "-5", + "cityId": 4190, + "codeIataCity": "LMC", + "codeIso2Country": "CO", + "geonameId": 3665900, + "latitudeCity": 3.316667, + "longitudeCity": -73.9, + "nameCity": "Lamacarena", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "cityId": 4191, + "codeIataCity": "LMD", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -40.833332, + "longitudeCity": -68.13333, + "nameCity": "Los Menucos", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "1", + "cityId": 4192, + "codeIataCity": "LME", + "codeIso2Country": "FR", + "geonameId": 3003603, + "latitudeCity": 48.00611, + "longitudeCity": 0.199556, + "nameCity": "Le Mans", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "cityId": 4193, + "codeIataCity": "LMG", + "codeIso2Country": "PG", + "geonameId": 2092633, + "latitudeCity": -4.7, + "longitudeCity": 152.75, + "nameCity": "Lamassa", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 4194, + "codeIataCity": "LMH", + "codeIso2Country": "HN", + "geonameId": 0, + "latitudeCity": 15.866667, + "longitudeCity": -85.55, + "nameCity": "Limon", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "10", + "cityId": 4195, + "codeIataCity": "LMI", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -3.483333, + "longitudeCity": 142.03334, + "nameCity": "Lumi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "12", + "cityId": 4196, + "codeIataCity": "LML", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 8.916667, + "longitudeCity": 166.25, + "nameCity": "Lae Island", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-7", + "cityId": 4197, + "codeIataCity": "LMM", + "codeIso2Country": "MX", + "geonameId": 3997479, + "latitudeCity": 25.816668, + "longitudeCity": -108.98333, + "nameCity": "Los Mochis", + "timezone": "America/Mazatlan" + }, + { + "GMT": "8", + "cityId": 4198, + "codeIataCity": "LMN", + "codeIso2Country": "MY", + "geonameId": 1737714, + "latitudeCity": 4.666667, + "longitudeCity": 115.0, + "nameCity": "Limbang", + "timezone": "Asia/Kuching" + }, + { + "GMT": "0", + "cityId": 4199, + "codeIataCity": "LMO", + "codeIso2Country": "GB", + "geonameId": 2650122, + "latitudeCity": 57.716667, + "longitudeCity": -3.333333, + "nameCity": "Lossiemouth", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 4200, + "codeIataCity": "LMP", + "codeIso2Country": "IT", + "geonameId": 2524459, + "latitudeCity": 35.5, + "longitudeCity": 12.616667, + "nameCity": "Lampedusa", + "timezone": "Europe/Rome" + }, + { + "GMT": "2", + "cityId": 4201, + "codeIataCity": "LMQ", + "codeIso2Country": "LY", + "geonameId": 0, + "latitudeCity": 30.379444, + "longitudeCity": 19.579445, + "nameCity": "Marsa Brega", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "2", + "cityId": 4202, + "codeIataCity": "LMR", + "codeIso2Country": "ZA", + "geonameId": 0, + "latitudeCity": -28.366667, + "longitudeCity": 23.45, + "nameCity": "Lime Acres", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-6", + "cityId": 4203, + "codeIataCity": "LMS", + "codeIso2Country": "US", + "geonameId": 4422442, + "latitudeCity": 33.11667, + "longitudeCity": -89.05, + "nameCity": "Louisville", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 4204, + "codeIataCity": "LMT", + "codeIso2Country": "US", + "geonameId": 5735238, + "latitudeCity": 42.163055, + "longitudeCity": -121.73583, + "nameCity": "Klamath Falls", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 4205, + "codeIataCity": "LMX", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 3.05, + "longitudeCity": -77.55, + "nameCity": "Lopez De Micay", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "cityId": 4206, + "codeIataCity": "LMY", + "codeIso2Country": "PG", + "geonameId": 2092682, + "latitudeCity": -6.833333, + "longitudeCity": 141.36667, + "nameCity": "Lake Murray", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "cityId": 4207, + "codeIataCity": "LMZ", + "codeIso2Country": "MZ", + "geonameId": 1029248, + "latitudeCity": -10.766667, + "longitudeCity": 40.483334, + "nameCity": "Palma", + "timezone": "Africa/Maputo" + }, + { + "GMT": "11", + "cityId": 4208, + "codeIataCity": "LNB", + "codeIso2Country": "VU", + "geonameId": 0, + "latitudeCity": -16.583332, + "longitudeCity": 168.18333, + "nameCity": "Lamen Bay", + "timezone": "Pacific/Efate" + }, + { + "GMT": "10", + "cityId": 4209, + "codeIataCity": "LNC", + "codeIso2Country": "PG", + "geonameId": 2092408, + "latitudeCity": -6.366667, + "longitudeCity": 147.36667, + "nameCity": "Lengbati", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "cityId": 4210, + "codeIataCity": "LND", + "codeIso2Country": "US", + "geonameId": 5830007, + "latitudeCity": 42.833332, + "longitudeCity": -108.73333, + "nameCity": "Lander", + "timezone": "America/Denver" + }, + { + "GMT": "11", + "cityId": 4211, + "codeIataCity": "LNE", + "codeIso2Country": "VU", + "geonameId": 2136279, + "latitudeCity": -15.860106, + "longitudeCity": 168.17007, + "nameCity": "Lonorore", + "timezone": "Pacific/Efate" + }, + { + "GMT": "10", + "cityId": 4212, + "codeIataCity": "LNF", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -4.866667, + "longitudeCity": 141.21666, + "nameCity": "Munbil", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 4213, + "codeIataCity": "LNG", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.166667, + "longitudeCity": 146.11667, + "nameCity": "Lese", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9.30", + "cityId": 4214, + "codeIataCity": "LNH", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -20.95, + "longitudeCity": 138.0, + "nameCity": "Lake Nash", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-9", + "cityId": 4215, + "codeIataCity": "LNI", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 70.916664, + "longitudeCity": -153.25, + "nameCity": "Lonely", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "cityId": 4216, + "codeIataCity": "LNJ", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 23.744106, + "longitudeCity": 100.026245, + "nameCity": "Lincang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "cityId": 4217, + "codeIataCity": "LNK", + "codeIso2Country": "US", + "geonameId": 5072006, + "latitudeCity": 40.846176, + "longitudeCity": -96.75471, + "nameCity": "Lincoln", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 4218, + "codeIataCity": "LNM", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.216667, + "longitudeCity": 146.21666, + "nameCity": "Langimar", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 4219, + "codeIataCity": "LNN", + "codeIso2Country": "US", + "geonameId": 5162645, + "latitudeCity": 41.63333, + "longitudeCity": -81.416664, + "nameCity": "Willoughby", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 4220, + "codeIataCity": "LNO", + "codeIso2Country": "AU", + "geonameId": 2067792, + "latitudeCity": -28.879345, + "longitudeCity": 121.316925, + "nameCity": "Leonora", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "cityId": 4221, + "codeIataCity": "LNP", + "codeIso2Country": "US", + "geonameId": 4829341, + "latitudeCity": 36.983334, + "longitudeCity": -82.566666, + "nameCity": "Wise", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 4222, + "codeIataCity": "LNQ", + "codeIso2Country": "PG", + "geonameId": 2133007, + "latitudeCity": -10.433333, + "longitudeCity": 150.15, + "nameCity": "Loani", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 4223, + "codeIataCity": "LNR", + "codeIso2Country": "US", + "geonameId": 5261457, + "latitudeCity": 43.183334, + "longitudeCity": -90.2, + "nameCity": "Lone Rock", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 4224, + "codeIataCity": "LNS", + "codeIso2Country": "US", + "geonameId": 5197079, + "latitudeCity": 40.037875, + "longitudeCity": -76.305514, + "nameCity": "Lancaster", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 4225, + "codeIataCity": "LNV", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -3.043223, + "longitudeCity": 152.6272, + "nameCity": "Lihir Island", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 4226, + "codeIataCity": "LNX", + "codeIso2Country": "RU", + "geonameId": 491687, + "latitudeCity": 54.8, + "longitudeCity": 32.05, + "nameCity": "Smolensk", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-10", + "cityId": 4227, + "codeIataCity": "LNY", + "codeIso2Country": "US", + "geonameId": 5849996, + "latitudeCity": 20.790085, + "longitudeCity": -156.95049, + "nameCity": "Lanai City", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "1", + "cityId": 4228, + "codeIataCity": "LNZ", + "codeIso2Country": "AT", + "geonameId": 2772400, + "latitudeCity": 48.23987, + "longitudeCity": 14.193345, + "nameCity": "Linz", + "timezone": "Europe/Vienna" + }, + { + "GMT": "10", + "cityId": 4229, + "codeIataCity": "LOA", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -19.0, + "longitudeCity": 139.9, + "nameCity": "Lorraine", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-4", + "cityId": 4230, + "codeIataCity": "LOB", + "codeIso2Country": "CL", + "geonameId": 3871336, + "latitudeCity": -29.966667, + "longitudeCity": -71.53333, + "nameCity": "Los Andes", + "timezone": "America/Santiago" + }, + { + "GMT": "9.30", + "cityId": 4231, + "codeIataCity": "LOC", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -33.55, + "longitudeCity": 135.75, + "nameCity": "Lock", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "11", + "cityId": 4232, + "codeIataCity": "LOD", + "codeIso2Country": "VU", + "geonameId": 2136150, + "latitudeCity": -15.316667, + "longitudeCity": 167.96666, + "nameCity": "Longana", + "timezone": "Pacific/Efate" + }, + { + "GMT": "7", + "cityId": 4233, + "codeIataCity": "LOE", + "codeIso2Country": "TH", + "geonameId": 1609071, + "latitudeCity": 17.45, + "longitudeCity": 101.73333, + "nameCity": "Loei", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "12", + "cityId": 4234, + "codeIataCity": "LOF", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 7.916667, + "longitudeCity": 169.91667, + "nameCity": "Loen", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-8", + "cityId": 4235, + "codeIataCity": "LOG", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 46.11667, + "longitudeCity": -122.88333, + "nameCity": "Longview", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 4236, + "codeIataCity": "LOH", + "codeIso2Country": "EC", + "geonameId": 3654667, + "latitudeCity": -3.993611, + "longitudeCity": -79.37361, + "nameCity": "Catamayo", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-3", + "cityId": 4237, + "codeIataCity": "LOI", + "codeIso2Country": "BR", + "geonameId": 3471039, + "latitudeCity": -27.159721, + "longitudeCity": -49.542778, + "nameCity": "Lontras", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "3", + "cityId": 4238, + "codeIataCity": "LOK", + "codeIso2Country": "KE", + "geonameId": 189280, + "latitudeCity": 3.15, + "longitudeCity": 35.6, + "nameCity": "Lodwar", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-8", + "cityId": 4239, + "codeIataCity": "LOL", + "codeIso2Country": "US", + "geonameId": 5705957, + "latitudeCity": 40.058334, + "longitudeCity": -118.566666, + "nameCity": "Lovelock", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 4240, + "codeIataCity": "LOM", + "codeIso2Country": "MX", + "geonameId": 4002224, + "latitudeCity": 21.266666, + "longitudeCity": -101.933334, + "nameCity": "Lagos De Moreno", + "timezone": "America/Mexico_City" + }, + { + "GMT": "0", + "cityId": 4241, + "codeIataCity": "LON", + "codeIso2Country": "GB", + "geonameId": 2643743, + "latitudeCity": 51.51, + "longitudeCity": 0.06, + "nameCity": "London", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 4242, + "codeIataCity": "LOO", + "codeIso2Country": "DZ", + "geonameId": 2491191, + "latitudeCity": 33.833332, + "longitudeCity": 2.983333, + "nameCity": "Laghouat", + "timezone": "Africa/Algiers" + }, + { + "GMT": "8", + "cityId": 4243, + "codeIataCity": "LOP", + "codeIso2Country": "ID", + "geonameId": 1635882, + "latitudeCity": -8.757322, + "longitudeCity": 116.27667, + "nameCity": "Praya", + "timezone": "Asia/Makassar" + }, + { + "GMT": "2", + "cityId": 4244, + "codeIataCity": "LOQ", + "codeIso2Country": "BW", + "geonameId": 933521, + "latitudeCity": -25.190277, + "longitudeCity": 25.681944, + "nameCity": "Lobatse", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "1", + "cityId": 4245, + "codeIataCity": "LOS", + "codeIso2Country": "NG", + "geonameId": 2332459, + "latitudeCity": 6.577871, + "longitudeCity": 3.321178, + "nameCity": "Lagos", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-6", + "cityId": 4246, + "codeIataCity": "LOT", + "codeIso2Country": "US", + "geonameId": 4887398, + "latitudeCity": 41.583332, + "longitudeCity": -88.05, + "nameCity": "Lockport", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 4247, + "codeIataCity": "LOV", + "codeIso2Country": "MX", + "geonameId": 3995523, + "latitudeCity": 26.9, + "longitudeCity": -101.416664, + "nameCity": "Monclova", + "timezone": "America/Monterrey" + }, + { + "GMT": "-5", + "cityId": 4248, + "codeIataCity": "LOW", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.0, + "longitudeCity": -77.96667, + "nameCity": "Louisa", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 4249, + "codeIataCity": "LOX", + "codeIso2Country": "GT", + "geonameId": 0, + "latitudeCity": 14.97, + "longitudeCity": -90.17, + "nameCity": "Los Tablones", + "timezone": "America/Guatemala" + }, + { + "GMT": "3", + "cityId": 4250, + "codeIataCity": "LOY", + "codeIso2Country": "KE", + "geonameId": 0, + "latitudeCity": 2.75, + "longitudeCity": 36.716667, + "nameCity": "Loyangalani", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-5", + "cityId": 4251, + "codeIataCity": "LOZ", + "codeIso2Country": "US", + "geonameId": 4298960, + "latitudeCity": 37.087223, + "longitudeCity": -84.07694, + "nameCity": "London", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 4252, + "codeIataCity": "LPA", + "codeIso2Country": "ES", + "geonameId": 2515270, + "latitudeCity": 27.938944, + "longitudeCity": -15.389351, + "nameCity": "Las Palmas", + "timezone": "Atlantic/Canary" + }, + { + "GMT": "-4", + "cityId": 4253, + "codeIataCity": "LPB", + "codeIso2Country": "BO", + "geonameId": 3910539, + "latitudeCity": -16.50889, + "longitudeCity": -68.1769, + "nameCity": "La Paz", + "timezone": "America/La_Paz" + }, + { + "GMT": "-8", + "cityId": 4254, + "codeIataCity": "LPC", + "codeIso2Country": "US", + "geonameId": 5367788, + "latitudeCity": 34.63915, + "longitudeCity": -120.457941, + "nameCity": "Lompoc", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 4255, + "codeIataCity": "LPD", + "codeIso2Country": "CO", + "geonameId": 3678176, + "latitudeCity": -1.3, + "longitudeCity": -69.71667, + "nameCity": "La Pedrera", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 4256, + "codeIataCity": "LPE", + "codeIso2Country": "CO", + "geonameId": 3687925, + "latitudeCity": 3.733333, + "longitudeCity": -76.21667, + "nameCity": "La Primavera", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "cityId": 4257, + "codeIataCity": "LPG", + "codeIso2Country": "AR", + "geonameId": 3435910, + "latitudeCity": -34.916668, + "longitudeCity": -57.95, + "nameCity": "La Plata", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "1", + "cityId": 4258, + "codeIataCity": "LPI", + "codeIso2Country": "SE", + "geonameId": 2694762, + "latitudeCity": 58.406944, + "longitudeCity": 15.656944, + "nameCity": "Linkoping", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-4", + "cityId": 4259, + "codeIataCity": "LPJ", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 7.0, + "longitudeCity": -67.666664, + "nameCity": "Pijiguaos", + "timezone": "America/Caracas" + }, + { + "GMT": "3", + "cityId": 4260, + "codeIataCity": "LPK", + "codeIso2Country": "RU", + "geonameId": 535121, + "latitudeCity": 52.61667, + "longitudeCity": 39.6, + "nameCity": "Lipetsk", + "timezone": "Europe/Moscow" + }, + { + "GMT": "0", + "cityId": 4261, + "codeIataCity": "LPL", + "codeIso2Country": "GB", + "geonameId": 2644210, + "latitudeCity": 53.337616, + "longitudeCity": -2.854905, + "nameCity": "Liverpool", + "timezone": "Europe/London" + }, + { + "GMT": "11", + "cityId": 4262, + "codeIataCity": "LPM", + "codeIso2Country": "VU", + "geonameId": 2136652, + "latitudeCity": -16.466667, + "longitudeCity": 167.81667, + "nameCity": "Lamap", + "timezone": "Pacific/Efate" + }, + { + "GMT": "10", + "cityId": 4263, + "codeIataCity": "LPN", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.58, + "longitudeCity": 146.45, + "nameCity": "Leron Plains", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 4264, + "codeIataCity": "LPO", + "codeIso2Country": "US", + "geonameId": 4887398, + "latitudeCity": 41.6, + "longitudeCity": -86.71667, + "nameCity": "Laporte", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 4265, + "codeIataCity": "LPP", + "codeIso2Country": "FI", + "geonameId": 648900, + "latitudeCity": 61.046112, + "longitudeCity": 28.156668, + "nameCity": "Lappeenranta", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "7", + "cityId": 4266, + "codeIataCity": "LPQ", + "codeIso2Country": "LA", + "geonameId": 1655559, + "latitudeCity": 19.897055, + "longitudeCity": 102.16371, + "nameCity": "Luang Prabang", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-8", + "cityId": 4267, + "codeIataCity": "LPS", + "codeIso2Country": "US", + "geonameId": 5795104, + "latitudeCity": 48.482777, + "longitudeCity": -122.935555, + "nameCity": "Lopez Island", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "7", + "cityId": 4268, + "codeIataCity": "LPT", + "codeIso2Country": "TH", + "geonameId": 1152473, + "latitudeCity": 18.274166, + "longitudeCity": 99.507225, + "nameCity": "Lampang", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "8", + "cityId": 4269, + "codeIataCity": "LPU", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 1.707091, + "longitudeCity": 114.969986, + "nameCity": "Long Apung", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-9", + "cityId": 4270, + "codeIataCity": "LPW", + "codeIso2Country": "US", + "geonameId": 5557293, + "latitudeCity": 56.38333, + "longitudeCity": -134.83333, + "nameCity": "Little Port Walter", + "timezone": "America/Sitka" + }, + { + "GMT": "2", + "cityId": 4271, + "codeIataCity": "LPX", + "codeIso2Country": "LV", + "geonameId": 457954, + "latitudeCity": 56.516666, + "longitudeCity": 21.1, + "nameCity": "Liepaja", + "timezone": "Europe/Riga" + }, + { + "GMT": "1", + "cityId": 4272, + "codeIataCity": "LPY", + "codeIso2Country": "FR", + "geonameId": 3002465, + "latitudeCity": 45.083332, + "longitudeCity": 3.766667, + "nameCity": "Le Puy", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 4273, + "codeIataCity": "LQK", + "codeIso2Country": "US", + "geonameId": 4580543, + "latitudeCity": 34.88333, + "longitudeCity": -82.7, + "nameCity": "Pickens", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 4274, + "codeIataCity": "LQM", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": -0.3, + "longitudeCity": -74.583336, + "nameCity": "Puerto Leguizamo", + "timezone": "America/Bogota" + }, + { + "GMT": "4.30", + "cityId": 4275, + "codeIataCity": "LQN", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 34.95, + "longitudeCity": 63.666668, + "nameCity": "Qala Nau", + "timezone": "Asia/Kabul" + }, + { + "GMT": "8", + "cityId": 4276, + "codeIataCity": "LQS", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 43.826687, + "longitudeCity": 18.336065, + "nameCity": "Lingshui", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "cityId": 4277, + "codeIataCity": "LRA", + "codeIso2Country": "GR", + "geonameId": 258576, + "latitudeCity": 39.65111, + "longitudeCity": 22.463888, + "nameCity": "Larisa", + "timezone": "Europe/Athens" + }, + { + "GMT": "2", + "cityId": 4278, + "codeIataCity": "LRB", + "codeIso2Country": "LS", + "geonameId": 0, + "latitudeCity": -28.966667, + "longitudeCity": 28.0, + "nameCity": "Leribe", + "timezone": "Africa/Maseru" + }, + { + "GMT": "-6", + "cityId": 4279, + "codeIataCity": "LRD", + "codeIso2Country": "US", + "geonameId": 4705349, + "latitudeCity": 27.543667, + "longitudeCity": -99.455124, + "nameCity": "Laredo", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 4280, + "codeIataCity": "LRE", + "codeIso2Country": "AU", + "geonameId": 2159630, + "latitudeCity": -23.439474, + "longitudeCity": 144.27147, + "nameCity": "Longreach", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "cityId": 4281, + "codeIataCity": "LRF", + "codeIso2Country": "US", + "geonameId": 4119403, + "latitudeCity": 34.916668, + "longitudeCity": -92.15, + "nameCity": "Jacksonville", + "timezone": "America/Chicago" + }, + { + "GMT": "5", + "cityId": 4282, + "codeIataCity": "LRG", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 27.85, + "longitudeCity": 65.083336, + "nameCity": "Lora Lai", + "timezone": "Asia/Karachi" + }, + { + "GMT": "1", + "cityId": 4283, + "codeIataCity": "LRH", + "codeIso2Country": "FR", + "geonameId": 3006787, + "latitudeCity": 46.180557, + "longitudeCity": -1.185833, + "nameCity": "La Rochelle", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 4284, + "codeIataCity": "LRI", + "codeIso2Country": "CO", + "geonameId": 3684011, + "latitudeCity": 9.033333, + "longitudeCity": -75.7, + "nameCity": "Lorica", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 4285, + "codeIataCity": "LRJ", + "codeIso2Country": "US", + "geonameId": 4876523, + "latitudeCity": 42.8, + "longitudeCity": -96.166664, + "nameCity": "Lemars", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 4286, + "codeIataCity": "LRK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": -16.12, + "longitudeCity": -68.32, + "nameCity": "Lincoln Rock", + "timezone": "America/Sitka" + }, + { + "GMT": "0", + "cityId": 4287, + "codeIataCity": "LRL", + "codeIso2Country": "TG", + "geonameId": 0, + "latitudeCity": 9.833333, + "longitudeCity": 1.133333, + "nameCity": "Niamtougou", + "timezone": "Africa/Lome" + }, + { + "GMT": "-4", + "cityId": 4288, + "codeIataCity": "LRM", + "codeIso2Country": "DO", + "geonameId": 3500957, + "latitudeCity": 18.416668, + "longitudeCity": -68.9, + "nameCity": "La Romana", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "-8", + "cityId": 4289, + "codeIataCity": "LRO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.55, + "longitudeCity": -94.333336, + "nameCity": "Lathrop", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 4290, + "codeIataCity": "LRQ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 56.216667, + "longitudeCity": -101.0, + "nameCity": "Laurie River", + "timezone": "America/Winnipeg" + }, + { + "GMT": "3.30", + "cityId": 4291, + "codeIataCity": "LRR", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 27.66969, + "longitudeCity": 54.38276, + "nameCity": "Lar", + "timezone": "Asia/Tehran" + }, + { + "GMT": "2", + "cityId": 4292, + "codeIataCity": "LRS", + "codeIso2Country": "GR", + "geonameId": 265316, + "latitudeCity": 37.516666, + "longitudeCity": 26.783333, + "nameCity": "Leros", + "timezone": "Europe/Athens" + }, + { + "GMT": "1", + "cityId": 4293, + "codeIataCity": "LRT", + "codeIso2Country": "FR", + "geonameId": 2997577, + "latitudeCity": 47.75374, + "longitudeCity": -3.436394, + "nameCity": "Lorient", + "timezone": "Europe/Paris" + }, + { + "GMT": "-7", + "cityId": 4294, + "codeIataCity": "LRU", + "codeIso2Country": "US", + "geonameId": 5475352, + "latitudeCity": 32.290833, + "longitudeCity": -106.92167, + "nameCity": "Las Cruces", + "timezone": "America/Denver" + }, + { + "GMT": "-4", + "cityId": 4295, + "codeIataCity": "LRV", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 11.833333, + "longitudeCity": -66.75, + "nameCity": "Los Roques", + "timezone": "America/Caracas" + }, + { + "GMT": "10", + "cityId": 4296, + "codeIataCity": "LSA", + "codeIso2Country": "PG", + "geonameId": 2092150, + "latitudeCity": -8.363889, + "longitudeCity": 151.025, + "nameCity": "Losuia", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "cityId": 4297, + "codeIataCity": "LSB", + "codeIso2Country": "US", + "geonameId": 5476799, + "latitudeCity": 32.416668, + "longitudeCity": -108.666664, + "nameCity": "Lordsburg", + "timezone": "America/Denver" + }, + { + "GMT": "-4", + "cityId": 4298, + "codeIataCity": "LSC", + "codeIso2Country": "CL", + "geonameId": 3884373, + "latitudeCity": -29.917297, + "longitudeCity": -71.20369, + "nameCity": "La Serena", + "timezone": "America/Santiago" + }, + { + "GMT": "-6", + "cityId": 4299, + "codeIataCity": "LSE", + "codeIso2Country": "US", + "geonameId": 5265702, + "latitudeCity": 43.875244, + "longitudeCity": -91.264336, + "nameCity": "La Crosse", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 4300, + "codeIataCity": "LSF", + "codeIso2Country": "US", + "geonameId": 4195789, + "latitudeCity": 32.3405, + "longitudeCity": -84.986046, + "nameCity": "Fort Benning", + "timezone": "America/New_York" + }, + { + "GMT": "6.30", + "cityId": 4301, + "codeIataCity": "LSH", + "codeIso2Country": "MM", + "geonameId": 1314759, + "latitudeCity": 22.966667, + "longitudeCity": 97.75, + "nameCity": "Lashio", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "10", + "cityId": 4302, + "codeIataCity": "LSJ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.333333, + "longitudeCity": 147.08333, + "nameCity": "Long Island", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "cityId": 4303, + "codeIataCity": "LSK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.788082, + "longitudeCity": -104.445526, + "nameCity": "Lusk", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 4304, + "codeIataCity": "LSL", + "codeIso2Country": "CR", + "geonameId": 3621598, + "latitudeCity": 11.033333, + "longitudeCity": -84.7, + "nameCity": "Los Chiles", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "8", + "cityId": 4305, + "codeIataCity": "LSM", + "codeIso2Country": "MY", + "geonameId": 1737714, + "latitudeCity": 4.002778, + "longitudeCity": 118.00833, + "nameCity": "Long Semado", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-8", + "cityId": 4306, + "codeIataCity": "LSN", + "codeIso2Country": "US", + "geonameId": 5368453, + "latitudeCity": 37.066666, + "longitudeCity": -120.85, + "nameCity": "Los Banos", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 4307, + "codeIataCity": "LSO", + "codeIso2Country": "FR", + "geonameId": 2999683, + "latitudeCity": 46.5, + "longitudeCity": -1.783333, + "nameCity": "Les Sables", + "timezone": "Europe/Paris" + }, + { + "GMT": "-4", + "cityId": 4308, + "codeIataCity": "LSP", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 11.777155, + "longitudeCity": -70.14961, + "nameCity": "Las Piedras", + "timezone": "America/Caracas" + }, + { + "GMT": "-4", + "cityId": 4309, + "codeIataCity": "LSQ", + "codeIso2Country": "CL", + "geonameId": 3882428, + "latitudeCity": -37.3975, + "longitudeCity": -72.422775, + "nameCity": "Los Angeles", + "timezone": "America/Santiago" + }, + { + "GMT": "-9", + "cityId": 4310, + "codeIataCity": "LSR", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 59.55, + "longitudeCity": -139.73334, + "nameCity": "Lost River", + "timezone": "America/Nome" + }, + { + "GMT": "-4", + "cityId": 4311, + "codeIataCity": "LSS", + "codeIso2Country": "GP", + "geonameId": 3578347, + "latitudeCity": 15.866944, + "longitudeCity": -61.576668, + "nameCity": "Terre-de-Haut", + "timezone": "America/Guadeloupe" + }, + { + "GMT": "10", + "cityId": 4312, + "codeIataCity": "LST", + "codeIso2Country": "AU", + "geonameId": 2160517, + "latitudeCity": -41.54351, + "longitudeCity": 147.20532, + "nameCity": "Launceston", + "timezone": "Australia/Hobart" + }, + { + "GMT": "8", + "cityId": 4313, + "codeIataCity": "LSU", + "codeIso2Country": "MY", + "geonameId": 1733782, + "latitudeCity": 4.55, + "longitudeCity": 115.5, + "nameCity": "Long Sukang", + "timezone": "Asia/Kuching" + }, + { + "GMT": "7", + "cityId": 4314, + "codeIataCity": "LSW", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 5.166667, + "longitudeCity": 97.166664, + "nameCity": "Lhoksumawe", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "7", + "cityId": 4315, + "codeIataCity": "LSX", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 5.066667, + "longitudeCity": 97.316666, + "nameCity": "Lhok Sukon", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "10", + "cityId": 4316, + "codeIataCity": "LSY", + "codeIso2Country": "AU", + "geonameId": 2160063, + "latitudeCity": -28.836653, + "longitudeCity": 153.26337, + "nameCity": "Lismore", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "cityId": 4317, + "codeIataCity": "LSZ", + "codeIso2Country": "HR", + "geonameId": 3195674, + "latitudeCity": 44.566944, + "longitudeCity": 14.385833, + "nameCity": "Mali Losinj", + "timezone": "Europe/Zagreb" + }, + { + "GMT": "2", + "cityId": 4318, + "codeIataCity": "LTA", + "codeIso2Country": "ZA", + "geonameId": 946973, + "latitudeCity": -23.833332, + "longitudeCity": 30.15, + "nameCity": "Tzaneen", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "10", + "cityId": 4319, + "codeIataCity": "LTB", + "codeIso2Country": "AU", + "geonameId": 2146108, + "latitudeCity": -41.233334, + "longitudeCity": 146.4, + "nameCity": "Latrobe", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "1", + "cityId": 4320, + "codeIataCity": "LTC", + "codeIso2Country": "TD", + "geonameId": 0, + "latitudeCity": 9.416667, + "longitudeCity": 16.3, + "nameCity": "Lai", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "2", + "cityId": 4321, + "codeIataCity": "LTD", + "codeIso2Country": "LY", + "geonameId": 0, + "latitudeCity": 30.129168, + "longitudeCity": 9.509722, + "nameCity": "Ghadames", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "10", + "cityId": 4322, + "codeIataCity": "LTF", + "codeIso2Country": "PG", + "geonameId": 2092443, + "latitudeCity": -2.833333, + "longitudeCity": 141.61667, + "nameCity": "Leitre", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5.45", + "cityId": 4323, + "codeIataCity": "LTG", + "codeIso2Country": "NP", + "geonameId": 1283240, + "latitudeCity": 28.233334, + "longitudeCity": 85.6, + "nameCity": "Langtang", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-8", + "cityId": 4324, + "codeIataCity": "LTH", + "codeIso2Country": "US", + "geonameId": 5509851, + "latitudeCity": 36.63333, + "longitudeCity": -116.38333, + "nameCity": "Lathrop Wells", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "7", + "cityId": 4325, + "codeIataCity": "LTI", + "codeIso2Country": "MN", + "geonameId": 1516393, + "latitudeCity": 46.65, + "longitudeCity": 96.416664, + "nameCity": "Altai", + "timezone": "Asia/Hovd" + }, + { + "GMT": "2", + "cityId": 4326, + "codeIataCity": "LTK", + "codeIso2Country": "SY", + "geonameId": 173576, + "latitudeCity": 35.407352, + "longitudeCity": 35.943993, + "nameCity": "Latakia", + "timezone": "Asia/Damascus" + }, + { + "GMT": "1", + "cityId": 4327, + "codeIataCity": "LTL", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -0.833333, + "longitudeCity": 12.716667, + "nameCity": "Lastourville", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-4", + "cityId": 4328, + "codeIataCity": "LTM", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 3.371667, + "longitudeCity": -59.79, + "nameCity": "Lethem", + "timezone": "America/Guyana" + }, + { + "GMT": "-7", + "cityId": 4329, + "codeIataCity": "LTO", + "codeIso2Country": "MX", + "geonameId": 3998287, + "latitudeCity": 25.983334, + "longitudeCity": -111.35, + "nameCity": "Loreto", + "timezone": "America/Mazatlan" + }, + { + "GMT": "10", + "cityId": 4330, + "codeIataCity": "LTP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -30.283333, + "longitudeCity": 138.35, + "nameCity": "Lyndhurst", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 4331, + "codeIataCity": "LTQ", + "codeIso2Country": "FR", + "geonameId": 2999139, + "latitudeCity": 50.515, + "longitudeCity": 1.628056, + "nameCity": "Le Touquet", + "timezone": "Europe/Paris" + }, + { + "GMT": "0", + "cityId": 4332, + "codeIataCity": "LTR", + "codeIso2Country": "IE", + "geonameId": 2962961, + "latitudeCity": 54.95, + "longitudeCity": -7.733333, + "nameCity": "Letterkenny", + "timezone": "Europe/Dublin" + }, + { + "GMT": "-6", + "cityId": 4333, + "codeIataCity": "LTS", + "codeIso2Country": "US", + "geonameId": 4529292, + "latitudeCity": 34.696667, + "longitudeCity": -99.33806, + "nameCity": "Altus", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 4334, + "codeIataCity": "LTT", + "codeIso2Country": "FR", + "geonameId": 2990440, + "latitudeCity": 43.283333, + "longitudeCity": 6.633333, + "nameCity": "Saint Tropez", + "timezone": "Europe/Paris" + }, + { + "GMT": "5.30", + "cityId": 4335, + "codeIataCity": "LTU", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 18.409552, + "longitudeCity": 76.46629, + "nameCity": "Latur", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "cityId": 4336, + "codeIataCity": "LTV", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.05, + "longitudeCity": 141.38333, + "nameCity": "Lotusvale", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 4337, + "codeIataCity": "LTW", + "codeIso2Country": "US", + "geonameId": 4140963, + "latitudeCity": 38.25, + "longitudeCity": -76.666664, + "nameCity": "Leonardtown", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 4338, + "codeIataCity": "LTX", + "codeIso2Country": "EC", + "geonameId": 3654870, + "latitudeCity": -0.901111, + "longitudeCity": -78.6025, + "nameCity": "Latacunga", + "timezone": "America/Guayaquil" + }, + { + "GMT": "5.45", + "cityId": 4339, + "codeIataCity": "LUA", + "codeIso2Country": "NP", + "geonameId": 1283113, + "latitudeCity": 27.683332, + "longitudeCity": 86.73333, + "nameCity": "Lukla", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-4", + "cityId": 4340, + "codeIataCity": "LUB", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 2.4, + "longitudeCity": -59.433334, + "nameCity": "Lumid Pau", + "timezone": "America/Guyana" + }, + { + "GMT": "12", + "cityId": 4341, + "codeIataCity": "LUC", + "codeIso2Country": "FJ", + "geonameId": 8555975, + "latitudeCity": -16.75, + "longitudeCity": 179.41667, + "nameCity": "Laucala Island", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "2", + "cityId": 4342, + "codeIataCity": "LUD", + "codeIso2Country": "NA", + "geonameId": 3355672, + "latitudeCity": -26.68639, + "longitudeCity": 15.243889, + "nameCity": "Luderitz", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "1", + "cityId": 4343, + "codeIataCity": "LUE", + "codeIso2Country": "SK", + "geonameId": 0, + "latitudeCity": 48.333332, + "longitudeCity": 19.666668, + "nameCity": "Lucenec", + "timezone": "Europe/Bratislava" + }, + { + "GMT": "1", + "cityId": 4344, + "codeIataCity": "LUG", + "codeIso2Country": "CH", + "geonameId": 2659836, + "latitudeCity": 46.016666, + "longitudeCity": 8.966667, + "nameCity": "Lugano", + "timezone": "Europe/Zurich" + }, + { + "GMT": "5.30", + "cityId": 4345, + "codeIataCity": "LUH", + "codeIso2Country": "IN", + "geonameId": 1274746, + "latitudeCity": 30.9, + "longitudeCity": 75.85, + "nameCity": "Ludhiana", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-6", + "cityId": 4346, + "codeIataCity": "LUI", + "codeIso2Country": "HN", + "geonameId": 3608248, + "latitudeCity": 13.333333, + "longitudeCity": -87.85, + "nameCity": "La Union", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-6", + "cityId": 4347, + "codeIataCity": "LUL", + "codeIso2Country": "US", + "geonameId": 4433039, + "latitudeCity": 31.694051, + "longitudeCity": -89.130612, + "nameCity": "Laurel", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 4348, + "codeIataCity": "LUM", + "codeIso2Country": "CN", + "geonameId": 1280570, + "latitudeCity": 24.40528, + "longitudeCity": 98.5319, + "nameCity": "Mangshi", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "cityId": 4349, + "codeIataCity": "LUN", + "codeIso2Country": "ZM", + "geonameId": 909137, + "latitudeCity": -15.325017, + "longitudeCity": 28.445747, + "nameCity": "Lusaka", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "1", + "cityId": 4350, + "codeIataCity": "LUO", + "codeIso2Country": "AO", + "geonameId": 3347719, + "latitudeCity": -11.5, + "longitudeCity": 20.166668, + "nameCity": "Luena", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-10", + "cityId": 4351, + "codeIataCity": "LUP", + "codeIso2Country": "US", + "geonameId": 5847785, + "latitudeCity": 21.211111, + "longitudeCity": -156.97444, + "nameCity": "Kalaupapa", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "-3", + "cityId": 4352, + "codeIataCity": "LUQ", + "codeIso2Country": "AR", + "geonameId": 3837056, + "latitudeCity": -33.274445, + "longitudeCity": -66.35861, + "nameCity": "San Luis", + "timezone": "America/Argentina/San_Luis" + }, + { + "GMT": "-9", + "cityId": 4353, + "codeIataCity": "LUR", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 68.87583, + "longitudeCity": -166.10695, + "nameCity": "Cape Lisburne", + "timezone": "America/Nome" + }, + { + "GMT": "1", + "cityId": 4354, + "codeIataCity": "LUS", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -4.804654, + "longitudeCity": 18.718885, + "nameCity": "Lusanga", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "10", + "cityId": 4355, + "codeIataCity": "LUT", + "codeIso2Country": "AU", + "geonameId": 2170658, + "latitudeCity": -15.433333, + "longitudeCity": 144.81667, + "nameCity": "Laura Station", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 4356, + "codeIataCity": "LUU", + "codeIso2Country": "AU", + "geonameId": 2163635, + "latitudeCity": -15.666667, + "longitudeCity": 144.16667, + "nameCity": "Laura", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "9", + "cityId": 4357, + "codeIataCity": "LUV", + "codeIso2Country": "ID", + "geonameId": 1638479, + "latitudeCity": -5.666667, + "longitudeCity": 132.71666, + "nameCity": "Langgur", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "cityId": 4358, + "codeIataCity": "LUW", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -0.933333, + "longitudeCity": 122.78333, + "nameCity": "Luwuk", + "timezone": "Asia/Makassar" + }, + { + "GMT": "1", + "cityId": 4359, + "codeIataCity": "LUX", + "codeIso2Country": "LU", + "geonameId": 2960316, + "latitudeCity": 49.63111, + "longitudeCity": 6.209539, + "nameCity": "Luxembourg", + "timezone": "Europe/Luxembourg" + }, + { + "GMT": "1", + "cityId": 4360, + "codeIataCity": "LUZ", + "codeIso2Country": "PL", + "geonameId": 765876, + "latitudeCity": 51.231945, + "longitudeCity": 22.690277, + "nameCity": "Lushan", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "1", + "cityId": 4361, + "codeIataCity": "LVA", + "codeIso2Country": "FR", + "geonameId": 3005866, + "latitudeCity": 48.066666, + "longitudeCity": -0.766667, + "nameCity": "Laval", + "timezone": "Europe/Paris" + }, + { + "GMT": "-3", + "cityId": 4362, + "codeIataCity": "LVB", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -30.833332, + "longitudeCity": -55.61667, + "nameCity": "Livramento", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-9", + "cityId": 4363, + "codeIataCity": "LVD", + "codeIso2Country": "US", + "geonameId": 5867390, + "latitudeCity": 61.35, + "longitudeCity": -155.46666, + "nameCity": "Lime Village", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "cityId": 4364, + "codeIataCity": "LVI", + "codeIso2Country": "ZM", + "geonameId": 910111, + "latitudeCity": -17.820557, + "longitudeCity": 25.822222, + "nameCity": "Livingstone", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-8", + "cityId": 4365, + "codeIataCity": "LVK", + "codeIso2Country": "US", + "geonameId": 5367440, + "latitudeCity": 37.69389, + "longitudeCity": -121.81722, + "nameCity": "Livermore", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 4366, + "codeIataCity": "LVL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 36.75, + "longitudeCity": -77.833336, + "nameCity": "Lawrenceville", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 4367, + "codeIataCity": "LVM", + "codeIso2Country": "US", + "geonameId": 5663049, + "latitudeCity": 45.666668, + "longitudeCity": -110.566666, + "nameCity": "Livingston", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "cityId": 4368, + "codeIataCity": "LVO", + "codeIso2Country": "AU", + "geonameId": 2067890, + "latitudeCity": -28.633333, + "longitudeCity": 122.36667, + "nameCity": "Laverton", + "timezone": "Australia/Perth" + }, + { + "GMT": "3.30", + "cityId": 4369, + "codeIataCity": "LVP", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 26.810278, + "longitudeCity": 53.35611, + "nameCity": "Lavan", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-4", + "cityId": 4370, + "codeIataCity": "LVR", + "codeIso2Country": "BR", + "geonameId": 6317492, + "latitudeCity": -13.03684, + "longitudeCity": -55.94835, + "nameCity": "Lucas Do Rio Verde", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-7", + "cityId": 4371, + "codeIataCity": "LVS", + "codeIso2Country": "US", + "geonameId": 5490263, + "latitudeCity": 35.6, + "longitudeCity": -105.21667, + "nameCity": "Las Vegas", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "cityId": 4372, + "codeIataCity": "LWA", + "codeIso2Country": "PH", + "geonameId": 1717512, + "latitudeCity": 17.35, + "longitudeCity": 121.183334, + "nameCity": "Lwbak", + "timezone": "Asia/Manila" + }, + { + "GMT": "-5", + "cityId": 4373, + "codeIataCity": "LWB", + "codeIso2Country": "US", + "geonameId": 4812015, + "latitudeCity": 37.859722, + "longitudeCity": -80.39861, + "nameCity": "Lewisburg", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 4374, + "codeIataCity": "LWC", + "codeIso2Country": "US", + "geonameId": 4274277, + "latitudeCity": 39.009167, + "longitudeCity": -95.2175, + "nameCity": "Lawrence", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 4375, + "codeIataCity": "LWE", + "codeIso2Country": "ID", + "geonameId": 1637833, + "latitudeCity": -8.5, + "longitudeCity": 123.36667, + "nameCity": "Lewoleba", + "timezone": "Asia/Makassar" + }, + { + "GMT": "10", + "cityId": 4376, + "codeIataCity": "LWH", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.583332, + "longitudeCity": 138.58333, + "nameCity": "Lawn Hill", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 4377, + "codeIataCity": "LWI", + "codeIso2Country": "PG", + "geonameId": 2092132, + "latitudeCity": -6.316667, + "longitudeCity": 146.58333, + "nameCity": "Lowai", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "cityId": 4378, + "codeIataCity": "LWL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.11667, + "longitudeCity": -114.96667, + "nameCity": "Wells", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 4379, + "codeIataCity": "LWM", + "codeIso2Country": "US", + "geonameId": 4929055, + "latitudeCity": 42.7175, + "longitudeCity": -71.1225, + "nameCity": "Lawrence", + "timezone": "America/New_York" + }, + { + "GMT": "4", + "cityId": 4380, + "codeIataCity": "LWN", + "codeIso2Country": "AM", + "geonameId": 616635, + "latitudeCity": 40.716667, + "longitudeCity": 43.833332, + "nameCity": "Gyoumri", + "timezone": "Asia/Yerevan" + }, + { + "GMT": "2", + "cityId": 4381, + "codeIataCity": "LWO", + "codeIso2Country": "UA", + "geonameId": 702550, + "latitudeCity": 49.816418, + "longitudeCity": 23.955318, + "nameCity": "Lviv", + "timezone": "Europe/Kiev" + }, + { + "GMT": "1", + "cityId": 4382, + "codeIataCity": "LWR", + "codeIso2Country": "NL", + "geonameId": 2751792, + "latitudeCity": 53.25, + "longitudeCity": 5.8, + "nameCity": "Leeuwarden", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "-8", + "cityId": 4383, + "codeIataCity": "LWS", + "codeIso2Country": "US", + "geonameId": 5598538, + "latitudeCity": 46.37472, + "longitudeCity": -117.01444, + "nameCity": "Lewiston", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-7", + "cityId": 4384, + "codeIataCity": "LWT", + "codeIso2Country": "US", + "geonameId": 5662162, + "latitudeCity": 47.05111, + "longitudeCity": -109.47111, + "nameCity": "Lewistown", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 4385, + "codeIataCity": "LWV", + "codeIso2Country": "US", + "geonameId": 4237727, + "latitudeCity": 38.733334, + "longitudeCity": -87.683334, + "nameCity": "Lawrenceville", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 4386, + "codeIataCity": "LWY", + "codeIso2Country": "MY", + "geonameId": 1737589, + "latitudeCity": 4.916667, + "longitudeCity": 115.416664, + "nameCity": "Lawas", + "timezone": "Asia/Kuching" + }, + { + "GMT": "8", + "cityId": 4387, + "codeIataCity": "LXA", + "codeIso2Country": "CN", + "geonameId": 1280737, + "latitudeCity": 29.29305, + "longitudeCity": 90.90051, + "nameCity": "Gonggar", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "7", + "cityId": 4388, + "codeIataCity": "LXG", + "codeIso2Country": "LA", + "geonameId": 0, + "latitudeCity": 21.05, + "longitudeCity": 101.46667, + "nameCity": "Luang Namtha", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-6", + "cityId": 4389, + "codeIataCity": "LXN", + "codeIso2Country": "US", + "geonameId": 5071934, + "latitudeCity": 40.783333, + "longitudeCity": -99.75, + "nameCity": "Lexington", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 4390, + "codeIataCity": "LXR", + "codeIso2Country": "EG", + "geonameId": 360502, + "latitudeCity": 25.67492, + "longitudeCity": 32.699684, + "nameCity": "Luxor", + "timezone": "Africa/Cairo" + }, + { + "GMT": "2", + "cityId": 4391, + "codeIataCity": "LXS", + "codeIso2Country": "GR", + "geonameId": 252243, + "latitudeCity": 39.923904, + "longitudeCity": 25.233446, + "nameCity": "Limnos", + "timezone": "Europe/Athens" + }, + { + "GMT": "2", + "cityId": 4392, + "codeIataCity": "LXU", + "codeIso2Country": "ZM", + "geonameId": 909488, + "latitudeCity": -14.416667, + "longitudeCity": 23.2, + "nameCity": "Lukulu", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-7", + "cityId": 4393, + "codeIataCity": "LXV", + "codeIso2Country": "US", + "geonameId": 5428184, + "latitudeCity": 39.22028, + "longitudeCity": -106.31611, + "nameCity": "Leadville", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "cityId": 4394, + "codeIataCity": "LYA", + "codeIso2Country": "CN", + "geonameId": 1801792, + "latitudeCity": 34.736362, + "longitudeCity": 112.38541, + "nameCity": "Luoyang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 4395, + "codeIataCity": "LYB", + "codeIso2Country": "KY", + "geonameId": 3580475, + "latitudeCity": 19.6592, + "longitudeCity": -80.08472, + "nameCity": "Little Cayman", + "timezone": "America/Cayman" + }, + { + "GMT": "1", + "cityId": 4396, + "codeIataCity": "LYC", + "codeIso2Country": "SE", + "geonameId": 2693347, + "latitudeCity": 64.55071, + "longitudeCity": 18.70967, + "nameCity": "Lycksele", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "0", + "cityId": 4397, + "codeIataCity": "LYE", + "codeIso2Country": "GB", + "geonameId": 2636389, + "latitudeCity": 51.516666, + "longitudeCity": -1.966667, + "nameCity": "Lyneham", + "timezone": "Europe/London" + }, + { + "GMT": "8", + "cityId": 4398, + "codeIataCity": "LYG", + "codeIso2Country": "CN", + "geonameId": 1807405, + "latitudeCity": 34.565937, + "longitudeCity": 118.87698, + "nameCity": "Lianyungang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 4399, + "codeIataCity": "LYH", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 37.326942, + "longitudeCity": -79.20111, + "nameCity": "Lynchburg", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 4400, + "codeIataCity": "LYI", + "codeIso2Country": "CN", + "geonameId": 1803318, + "latitudeCity": 35.047478, + "longitudeCity": 118.40707, + "nameCity": "Linyi", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 4401, + "codeIataCity": "LYK", + "codeIso2Country": "ID", + "geonameId": 1637038, + "latitudeCity": -9.0, + "longitudeCity": 117.26667, + "nameCity": "Lunyuk", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-6", + "cityId": 4402, + "codeIataCity": "LYO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.35, + "longitudeCity": -98.2, + "nameCity": "Lyons", + "timezone": "America/Chicago" + }, + { + "GMT": "5", + "cityId": 4403, + "codeIataCity": "LYP", + "codeIso2Country": "PK", + "geonameId": 1179400, + "latitudeCity": 31.363043, + "longitudeCity": 72.98757, + "nameCity": "Faisalabad", + "timezone": "Asia/Karachi" + }, + { + "GMT": "1", + "cityId": 4404, + "codeIataCity": "LYR", + "codeIso2Country": "SJ", + "geonameId": 2729907, + "latitudeCity": 78.208885, + "longitudeCity": 15.8, + "nameCity": "Longyearbyen", + "timezone": "Arctic/Longyearbyen" + }, + { + "GMT": "1", + "cityId": 4405, + "codeIataCity": "LYS", + "codeIso2Country": "FR", + "geonameId": 2996944, + "latitudeCity": 45.764043, + "longitudeCity": 4.835659, + "nameCity": "Lyon", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "cityId": 4406, + "codeIataCity": "LYT", + "codeIso2Country": "AU", + "geonameId": 2173323, + "latitudeCity": -24.116667, + "longitudeCity": 152.7, + "nameCity": "Lady Elliot Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "cityId": 4407, + "codeIataCity": "LYU", + "codeIso2Country": "US", + "geonameId": 5050817, + "latitudeCity": 47.82389, + "longitudeCity": -91.82917, + "nameCity": "Ely", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 4408, + "codeIataCity": "LYX", + "codeIso2Country": "GB", + "geonameId": 2643327, + "latitudeCity": 50.95, + "longitudeCity": 0.933333, + "nameCity": "Lydd", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "cityId": 4409, + "codeIataCity": "LZA", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -7.666667, + "longitudeCity": 22.5, + "nameCity": "Luiza", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-6", + "cityId": 4410, + "codeIataCity": "LZC", + "codeIso2Country": "MX", + "geonameId": 4026082, + "latitudeCity": 18.0, + "longitudeCity": -102.21667, + "nameCity": "Lazaro Cardenas", + "timezone": "America/Mexico_City" + }, + { + "GMT": "8", + "cityId": 4411, + "codeIataCity": "LZH", + "codeIso2Country": "CN", + "geonameId": 1803300, + "latitudeCity": 24.206156, + "longitudeCity": 109.39843, + "nameCity": "Liuzhou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 4412, + "codeIataCity": "LZI", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -4.9, + "longitudeCity": 14.0, + "nameCity": "Luozi", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "1", + "cityId": 4413, + "codeIataCity": "LZM", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -9.05, + "longitudeCity": 18.083332, + "nameCity": "Luzamba", + "timezone": "Africa/Luanda" + }, + { + "GMT": "8", + "cityId": 4414, + "codeIataCity": "LZN", + "codeIso2Country": "TW", + "geonameId": 7552914, + "latitudeCity": 26.159445, + "longitudeCity": 119.958336, + "nameCity": "Nangan", + "timezone": "Asia/Taipei" + }, + { + "GMT": "8", + "cityId": 4415, + "codeIataCity": "LZO", + "codeIso2Country": "CN", + "geonameId": 1801640, + "latitudeCity": 28.844757, + "longitudeCity": 105.37902, + "nameCity": "Luzhou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "cityId": 4416, + "codeIataCity": "LZR", + "codeIso2Country": "AU", + "geonameId": 2170658, + "latitudeCity": -14.666667, + "longitudeCity": 145.46666, + "nameCity": "Lizard Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 4417, + "codeIataCity": "LZU", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 34.08075, + "longitudeCity": -84.07378, + "nameCity": "Lawrenceville", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 4418, + "codeIataCity": "LZY", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 29.309076, + "longitudeCity": 94.335884, + "nameCity": "Lin Zhi", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "5.30", + "cityId": 4419, + "codeIataCity": "MAA", + "codeIso2Country": "IN", + "geonameId": 1264527, + "latitudeCity": 12.982267, + "longitudeCity": 80.16378, + "nameCity": "Chennai", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-3", + "cityId": 4420, + "codeIataCity": "MAB", + "codeIso2Country": "BR", + "geonameId": 3395503, + "latitudeCity": -5.366667, + "longitudeCity": -49.166668, + "nameCity": "Maraba", + "timezone": "America/Belem" + }, + { + "GMT": "1", + "cityId": 4421, + "codeIataCity": "MAD", + "codeIso2Country": "ES", + "geonameId": 3117735, + "latitudeCity": 40.416691, + "longitudeCity": -3.700345, + "nameCity": "Madrid", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-8", + "cityId": 4422, + "codeIataCity": "MAE", + "codeIso2Country": "US", + "geonameId": 5369568, + "latitudeCity": 36.95, + "longitudeCity": -120.066666, + "nameCity": "Madera", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 4423, + "codeIataCity": "MAF", + "codeIso2Country": "US", + "geonameId": 5526337, + "latitudeCity": 31.997346, + "longitudeCity": -102.077915, + "nameCity": "Midland", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 4424, + "codeIataCity": "MAG", + "codeIso2Country": "PG", + "geonameId": 2091996, + "latitudeCity": -5.210852, + "longitudeCity": 145.78784, + "nameCity": "Madang", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 4425, + "codeIataCity": "MAH", + "codeIso2Country": "ES", + "geonameId": 2511302, + "latitudeCity": 39.864746, + "longitudeCity": 4.226256, + "nameCity": "Menorca", + "timezone": "Europe/Madrid" + }, + { + "GMT": "2", + "cityId": 4426, + "codeIataCity": "MAI", + "codeIso2Country": "MW", + "geonameId": 927246, + "latitudeCity": -14.5, + "longitudeCity": 35.25, + "nameCity": "Mangochi", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "12", + "cityId": 4427, + "codeIataCity": "MAJ", + "codeIso2Country": "MH", + "geonameId": 2113779, + "latitudeCity": 7.068717, + "longitudeCity": 171.2825, + "nameCity": "Majuro", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "3", + "cityId": 4428, + "codeIataCity": "MAK", + "codeIso2Country": "SS", + "geonameId": 370737, + "latitudeCity": 9.555556, + "longitudeCity": 31.644444, + "nameCity": "Malakal", + "timezone": "Africa/Juba" + }, + { + "GMT": "9", + "cityId": 4429, + "codeIataCity": "MAL", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -1.833333, + "longitudeCity": 125.916664, + "nameCity": "Mangole", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-6", + "cityId": 4430, + "codeIataCity": "MAM", + "codeIso2Country": "MX", + "geonameId": 3523466, + "latitudeCity": 25.770279, + "longitudeCity": -97.52361, + "nameCity": "Matamoros", + "timezone": "America/Matamoros" + }, + { + "GMT": "0", + "cityId": 4431, + "codeIataCity": "MAN", + "codeIso2Country": "GB", + "geonameId": 2643123, + "latitudeCity": 53.480713, + "longitudeCity": -2.234377, + "nameCity": "Manchester", + "timezone": "Europe/London" + }, + { + "GMT": "-4", + "cityId": 4432, + "codeIataCity": "MAO", + "codeIso2Country": "BR", + "geonameId": 3663517, + "latitudeCity": -3.031327, + "longitudeCity": -60.046093, + "nameCity": "Manaus", + "timezone": "America/Manaus" + }, + { + "GMT": "10", + "cityId": 4433, + "codeIataCity": "MAP", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -10.333333, + "longitudeCity": 149.5, + "nameCity": "Mamai", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "7", + "cityId": 4434, + "codeIataCity": "MAQ", + "codeIso2Country": "TH", + "geonameId": 1152188, + "latitudeCity": 16.666668, + "longitudeCity": 98.583336, + "nameCity": "Mae Sot", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-4", + "cityId": 4435, + "codeIataCity": "MAR", + "codeIso2Country": "VE", + "geonameId": 3633009, + "latitudeCity": 10.555564, + "longitudeCity": -71.72351, + "nameCity": "Maracaibo", + "timezone": "America/Caracas" + }, + { + "GMT": "10", + "cityId": 4436, + "codeIataCity": "MAS", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -2.056667, + "longitudeCity": 147.42444, + "nameCity": "Manus Island", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 4437, + "codeIataCity": "MAT", + "codeIso2Country": "CD", + "geonameId": 2313002, + "latitudeCity": -5.798333, + "longitudeCity": 13.441667, + "nameCity": "Matadi", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "-10", + "cityId": 4438, + "codeIataCity": "MAU", + "codeIso2Country": "PF", + "geonameId": 4033077, + "latitudeCity": -16.427385, + "longitudeCity": -152.24236, + "nameCity": "Maupiti", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "12", + "cityId": 4439, + "codeIataCity": "MAV", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 8.75, + "longitudeCity": 171.1, + "nameCity": "Maloelap Island", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-6", + "cityId": 4440, + "codeIataCity": "MAW", + "codeIso2Country": "US", + "geonameId": 4619800, + "latitudeCity": 36.605556, + "longitudeCity": -89.98889, + "nameCity": "Malden", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 4441, + "codeIataCity": "MAX", + "codeIso2Country": "SN", + "geonameId": 0, + "latitudeCity": 15.593056, + "longitudeCity": -13.323611, + "nameCity": "Matam", + "timezone": "Africa/Dakar" + }, + { + "GMT": "-5", + "cityId": 4442, + "codeIataCity": "MAY", + "codeIso2Country": "BS", + "geonameId": 3571944, + "latitudeCity": 24.289722, + "longitudeCity": -77.680275, + "nameCity": "Mangrove Cay", + "timezone": "America/Nassau" + }, + { + "GMT": "-4", + "cityId": 4443, + "codeIataCity": "MAZ", + "codeIso2Country": "PR", + "geonameId": 4565825, + "latitudeCity": 18.257778, + "longitudeCity": -67.14889, + "nameCity": "Mayaguez", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "3", + "cityId": 4444, + "codeIataCity": "MBA", + "codeIso2Country": "KE", + "geonameId": 186301, + "latitudeCity": -4.0327, + "longitudeCity": 39.60325, + "nameCity": "Mombasa", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "8", + "cityId": 4445, + "codeIataCity": "MBB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -21.25, + "longitudeCity": 119.583336, + "nameCity": "Marble Bar", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "cityId": 4446, + "codeIataCity": "MBC", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -2.0, + "longitudeCity": 12.0, + "nameCity": "Mbigou", + "timezone": "Africa/Libreville" + }, + { + "GMT": "2", + "cityId": 4447, + "codeIataCity": "MBD", + "codeIso2Country": "ZA", + "geonameId": 975436, + "latitudeCity": -25.816668, + "longitudeCity": 25.5, + "nameCity": "Mmabatho", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "9", + "cityId": 4448, + "codeIataCity": "MBE", + "codeIso2Country": "JP", + "geonameId": 2129163, + "latitudeCity": 44.266666, + "longitudeCity": 143.38333, + "nameCity": "Monbetsu", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "10", + "cityId": 4449, + "codeIataCity": "MBF", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -36.75, + "longitudeCity": 146.75, + "nameCity": "Mount Buffalo", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-6", + "cityId": 4450, + "codeIataCity": "MBG", + "codeIso2Country": "US", + "geonameId": 5767189, + "latitudeCity": 45.533333, + "longitudeCity": -100.433334, + "nameCity": "Mobridge", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 4451, + "codeIataCity": "MBH", + "codeIso2Country": "AU", + "geonameId": 2158562, + "latitudeCity": -25.516666, + "longitudeCity": 152.71333, + "nameCity": "Maryborough", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "cityId": 4452, + "codeIataCity": "MBI", + "codeIso2Country": "TZ", + "geonameId": 154380, + "latitudeCity": -8.914722, + "longitudeCity": 33.461945, + "nameCity": "Mbeya", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-5", + "cityId": 4453, + "codeIataCity": "MBJ", + "codeIso2Country": "JM", + "geonameId": 3489460, + "latitudeCity": 18.498465, + "longitudeCity": -77.91663, + "nameCity": "Montego Bay", + "timezone": "America/Jamaica" + }, + { + "GMT": "-4", + "cityId": 4454, + "codeIataCity": "MBK", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -10.0575, + "longitudeCity": -54.932777, + "nameCity": "Matupa", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-5", + "cityId": 4455, + "codeIataCity": "MBL", + "codeIso2Country": "US", + "geonameId": 5000611, + "latitudeCity": 44.273888, + "longitudeCity": -86.253334, + "nameCity": "Manistee", + "timezone": "America/Detroit" + }, + { + "GMT": "2", + "cityId": 4456, + "codeIataCity": "MBM", + "codeIso2Country": "ZA", + "geonameId": 964406, + "latitudeCity": -31.283333, + "longitudeCity": 29.966667, + "nameCity": "Mkambati", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "8", + "cityId": 4457, + "codeIataCity": "MBN", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -15.0, + "longitudeCity": 125.0, + "nameCity": "Mount Barnett", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "cityId": 4458, + "codeIataCity": "MBO", + "codeIso2Country": "PH", + "geonameId": 1702263, + "latitudeCity": 13.211389, + "longitudeCity": 120.60333, + "nameCity": "Mamburao", + "timezone": "Asia/Manila" + }, + { + "GMT": "-5", + "cityId": 4459, + "codeIataCity": "MBP", + "codeIso2Country": "PE", + "geonameId": 3691474, + "latitudeCity": -6.2, + "longitudeCity": -77.166664, + "nameCity": "Moyobamba", + "timezone": "America/Lima" + }, + { + "GMT": "3", + "cityId": 4460, + "codeIataCity": "MBQ", + "codeIso2Country": "UG", + "geonameId": 0, + "latitudeCity": -0.616667, + "longitudeCity": 30.65, + "nameCity": "Mbarara", + "timezone": "Africa/Kampala" + }, + { + "GMT": "0", + "cityId": 4461, + "codeIataCity": "MBR", + "codeIso2Country": "MR", + "geonameId": 0, + "latitudeCity": 16.033333, + "longitudeCity": -12.583333, + "nameCity": "Mbout", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "-5", + "cityId": 4462, + "codeIataCity": "MBS", + "codeIso2Country": "US", + "geonameId": 4985180, + "latitudeCity": 43.53339, + "longitudeCity": -84.090744, + "nameCity": "Saginaw", + "timezone": "America/Detroit" + }, + { + "GMT": "8", + "cityId": 4463, + "codeIataCity": "MBT", + "codeIso2Country": "PH", + "geonameId": 1700712, + "latitudeCity": 12.366667, + "longitudeCity": 123.066666, + "nameCity": "Masbate", + "timezone": "Asia/Manila" + }, + { + "GMT": "11", + "cityId": 4464, + "codeIataCity": "MBU", + "codeIso2Country": "SB", + "geonameId": 2106111, + "latitudeCity": -9.733333, + "longitudeCity": 160.75, + "nameCity": "Mbambanakira", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "10", + "cityId": 4465, + "codeIataCity": "MBV", + "codeIso2Country": "PG", + "geonameId": 2091289, + "latitudeCity": -6.35, + "longitudeCity": 147.63333, + "nameCity": "Masa", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 4466, + "codeIataCity": "MBX", + "codeIso2Country": "SI", + "geonameId": 3195506, + "latitudeCity": 46.55, + "longitudeCity": 15.65, + "nameCity": "Maribor", + "timezone": "Europe/Ljubljana" + }, + { + "GMT": "-6", + "cityId": 4467, + "codeIataCity": "MBY", + "codeIso2Country": "US", + "geonameId": 4381982, + "latitudeCity": 39.46389, + "longitudeCity": -92.42667, + "nameCity": "Moberly", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 4468, + "codeIataCity": "MBZ", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -3.4, + "longitudeCity": -57.7, + "nameCity": "Maues", + "timezone": "America/Manaus" + }, + { + "GMT": "0", + "cityId": 4469, + "codeIataCity": "MCA", + "codeIso2Country": "GN", + "geonameId": 0, + "latitudeCity": 8.55, + "longitudeCity": -9.466667, + "nameCity": "Macenta", + "timezone": "Africa/Conakry" + }, + { + "GMT": "-6", + "cityId": 4470, + "codeIataCity": "MCB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 31.175556, + "longitudeCity": -90.469444, + "nameCity": "Mccomb", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 4471, + "codeIataCity": "MCD", + "codeIso2Country": "US", + "geonameId": 5008224, + "latitudeCity": 45.86667, + "longitudeCity": -84.63333, + "nameCity": "Mackinac Island", + "timezone": "America/Detroit" + }, + { + "GMT": "-8", + "cityId": 4472, + "codeIataCity": "MCE", + "codeIso2Country": "US", + "geonameId": 5372253, + "latitudeCity": 37.302163, + "longitudeCity": -120.482968, + "nameCity": "Merced", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-9", + "cityId": 4473, + "codeIataCity": "MCG", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 62.97875, + "longitudeCity": -155.65764, + "nameCity": "Mcgrath", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 4474, + "codeIataCity": "MCH", + "codeIso2Country": "EC", + "geonameId": 3654533, + "latitudeCity": -3.266667, + "longitudeCity": -79.98333, + "nameCity": "Machala", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-5", + "cityId": 4475, + "codeIataCity": "MCJ", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 11.391667, + "longitudeCity": -72.24167, + "nameCity": "Maicao", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 4476, + "codeIataCity": "MCK", + "codeIso2Country": "US", + "geonameId": 5445194, + "latitudeCity": 40.26389, + "longitudeCity": -100.66805, + "nameCity": "Mccook", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 4477, + "codeIataCity": "MCL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 63.875973, + "longitudeCity": -149.0064, + "nameCity": "Mount Mckinley", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 4478, + "codeIataCity": "MCM", + "codeIso2Country": "MC", + "geonameId": 2993458, + "latitudeCity": 43.733334, + "longitudeCity": 7.416667, + "nameCity": "Monte Carlo", + "timezone": "Europe/Monaco" + }, + { + "GMT": "-5", + "cityId": 4479, + "codeIataCity": "MCN", + "codeIso2Country": "US", + "geonameId": 4207400, + "latitudeCity": 32.840695, + "longitudeCity": -83.632402, + "nameCity": "Macon", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 4480, + "codeIataCity": "MCP", + "codeIso2Country": "BR", + "geonameId": 3396016, + "latitudeCity": 0.049895, + "longitudeCity": -51.068382, + "nameCity": "Macapa", + "timezone": "America/Belem" + }, + { + "GMT": "1", + "cityId": 4481, + "codeIataCity": "MCQ", + "codeIso2Country": "HU", + "geonameId": 717582, + "latitudeCity": 48.11667, + "longitudeCity": 20.833332, + "nameCity": "Miskolc", + "timezone": "Europe/Budapest" + }, + { + "GMT": "-6", + "cityId": 4482, + "codeIataCity": "MCR", + "codeIso2Country": "GT", + "geonameId": 3595725, + "latitudeCity": 17.0, + "longitudeCity": -92.00833, + "nameCity": "Melchor De Menco", + "timezone": "America/Guatemala" + }, + { + "GMT": "-3", + "cityId": 4483, + "codeIataCity": "MCS", + "codeIso2Country": "AR", + "geonameId": 3430598, + "latitudeCity": -30.270832, + "longitudeCity": -57.64111, + "nameCity": "Monte Caseros", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "4", + "cityId": 4484, + "codeIataCity": "MCT", + "codeIso2Country": "OM", + "geonameId": 287286, + "latitudeCity": 23.588078, + "longitudeCity": 58.29022, + "nameCity": "Muscat", + "timezone": "Asia/Muscat" + }, + { + "GMT": "1", + "cityId": 4485, + "codeIataCity": "MCU", + "codeIso2Country": "FR", + "geonameId": 3027367, + "latitudeCity": 46.35, + "longitudeCity": 2.6, + "nameCity": "Montlucon", + "timezone": "Europe/Paris" + }, + { + "GMT": "9.30", + "cityId": 4486, + "codeIataCity": "MCV", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -16.466667, + "longitudeCity": 136.095, + "nameCity": "Mcarthur River", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-6", + "cityId": 4487, + "codeIataCity": "MCW", + "codeIso2Country": "US", + "geonameId": 4866445, + "latitudeCity": 43.156944, + "longitudeCity": -93.329445, + "nameCity": "Mason City", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 4488, + "codeIataCity": "MCX", + "codeIso2Country": "RU", + "geonameId": 532096, + "latitudeCity": 42.82095, + "longitudeCity": 47.65611, + "nameCity": "Makhachkala", + "timezone": "Europe/Moscow" + }, + { + "GMT": "10", + "cityId": 4489, + "codeIataCity": "MCY", + "codeIso2Country": "AU", + "geonameId": 2157109, + "latitudeCity": -26.60538, + "longitudeCity": 153.08821, + "nameCity": "Sunshine Coast", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "cityId": 4490, + "codeIataCity": "MCZ", + "codeIso2Country": "BR", + "geonameId": 3395981, + "latitudeCity": -9.512521, + "longitudeCity": -35.800446, + "nameCity": "Maceio", + "timezone": "America/Maceio" + }, + { + "GMT": "-6", + "cityId": 4491, + "codeIataCity": "MDB", + "codeIso2Country": "BZ", + "geonameId": 0, + "latitudeCity": 16.998611, + "longitudeCity": -88.32056, + "nameCity": "Melinda", + "timezone": "America/Belize" + }, + { + "GMT": "8", + "cityId": 4492, + "codeIataCity": "MDC", + "codeIso2Country": "ID", + "geonameId": 1636544, + "latitudeCity": 1.543533, + "longitudeCity": 124.92203, + "nameCity": "Manado", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-5", + "cityId": 4493, + "codeIataCity": "MDE", + "codeIso2Country": "CO", + "geonameId": 3674962, + "latitudeCity": 6.235925, + "longitudeCity": -75.575137, + "nameCity": "Medellin", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 4494, + "codeIataCity": "MDF", + "codeIso2Country": "US", + "geonameId": 5251436, + "latitudeCity": 45.15, + "longitudeCity": -90.333336, + "nameCity": "Medford", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 4495, + "codeIataCity": "MDG", + "codeIso2Country": "CN", + "geonameId": 2035715, + "latitudeCity": 44.534943, + "longitudeCity": 129.58385, + "nameCity": "Mudanjiang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "cityId": 4496, + "codeIataCity": "MDH", + "codeIso2Country": "US", + "geonameId": 4235193, + "latitudeCity": 37.781387, + "longitudeCity": -89.24694, + "nameCity": "Carbondale", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 4497, + "codeIataCity": "MDI", + "codeIso2Country": "NG", + "geonameId": 2331140, + "latitudeCity": 7.75, + "longitudeCity": 8.533333, + "nameCity": "Makurdi", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-8", + "cityId": 4498, + "codeIataCity": "MDJ", + "codeIso2Country": "US", + "geonameId": 5738690, + "latitudeCity": 44.812305, + "longitudeCity": -121.281, + "nameCity": "Madras", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 4499, + "codeIataCity": "MDK", + "codeIso2Country": "CD", + "geonameId": 2312895, + "latitudeCity": 0.023333, + "longitudeCity": 18.292221, + "nameCity": "Mbandaka", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "6.30", + "cityId": 4500, + "codeIataCity": "MDL", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 21.940052, + "longitudeCity": 96.0875, + "nameCity": "Mandalay", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "10", + "cityId": 4501, + "codeIataCity": "MDM", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -4.633333, + "longitudeCity": 143.45, + "nameCity": "Munduku", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 4502, + "codeIataCity": "MDN", + "codeIso2Country": "US", + "geonameId": 4264555, + "latitudeCity": 38.733334, + "longitudeCity": -85.38333, + "nameCity": "Madison", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-9", + "cityId": 4503, + "codeIataCity": "MDO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 59.453056, + "longitudeCity": -146.3, + "nameCity": "Middleton Island", + "timezone": "America/Anchorage" + }, + { + "GMT": "9", + "cityId": 4504, + "codeIataCity": "MDP", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -5.833333, + "longitudeCity": 140.83333, + "nameCity": "Mindiptana", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-3", + "cityId": 4505, + "codeIataCity": "MDQ", + "codeIso2Country": "AR", + "geonameId": 3430863, + "latitudeCity": -37.934723, + "longitudeCity": -57.572224, + "nameCity": "Mar Del Plata", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "-9", + "cityId": 4506, + "codeIataCity": "MDR", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 63.106945, + "longitudeCity": -154.71666, + "nameCity": "Medfra", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "cityId": 4507, + "codeIataCity": "MDS", + "codeIso2Country": "TC", + "geonameId": 8131575, + "latitudeCity": 21.783333, + "longitudeCity": -71.71667, + "nameCity": "Middle Caicos", + "timezone": "America/Grand_Turk" + }, + { + "GMT": "10", + "cityId": 4508, + "codeIataCity": "MDU", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.158611, + "longitudeCity": 143.65, + "nameCity": "Mendi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 4509, + "codeIataCity": "MDV", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": 0.95, + "longitudeCity": 10.783333, + "nameCity": "Medouneu", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-3", + "cityId": 4510, + "codeIataCity": "MDX", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -29.167221, + "longitudeCity": -58.075558, + "nameCity": "Mercedes", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-11", + "cityId": 4511, + "codeIataCity": "MDY", + "codeIso2Country": "UM", + "geonameId": 0, + "latitudeCity": 28.2, + "longitudeCity": -177.38333, + "nameCity": "Midway Island", + "timezone": "Pacific/Midway" + }, + { + "GMT": "-3", + "cityId": 4512, + "codeIataCity": "MDZ", + "codeIso2Country": "AR", + "geonameId": 3844421, + "latitudeCity": -32.82789, + "longitudeCity": -68.79891, + "nameCity": "Mendoza", + "timezone": "America/Argentina/Mendoza" + }, + { + "GMT": "-3", + "cityId": 4513, + "codeIataCity": "MEA", + "codeIso2Country": "BR", + "geonameId": 3458266, + "latitudeCity": -22.35, + "longitudeCity": -41.8, + "nameCity": "Macae", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "cityId": 4514, + "codeIataCity": "MEC", + "codeIso2Country": "EC", + "geonameId": 3654410, + "latitudeCity": -0.953035, + "longitudeCity": -80.684, + "nameCity": "Manta", + "timezone": "America/Guayaquil" + }, + { + "GMT": "3", + "cityId": 4515, + "codeIataCity": "MED", + "codeIso2Country": "SA", + "geonameId": 109223, + "latitudeCity": 24.544369, + "longitudeCity": 39.698967, + "nameCity": "Madinah", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "11", + "cityId": 4516, + "codeIataCity": "MEE", + "codeIso2Country": "NC", + "geonameId": 0, + "latitudeCity": -21.482311, + "longitudeCity": 168.03609, + "nameCity": "Mare", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "1", + "cityId": 4517, + "codeIataCity": "MEF", + "codeIso2Country": "TD", + "geonameId": 2427949, + "latitudeCity": 11.05, + "longitudeCity": 17.95, + "nameCity": "Melfi", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "1", + "cityId": 4518, + "codeIataCity": "MEG", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -9.533333, + "longitudeCity": 16.333332, + "nameCity": "Melanje", + "timezone": "Africa/Luanda" + }, + { + "GMT": "1", + "cityId": 4519, + "codeIataCity": "MEH", + "codeIso2Country": "NO", + "geonameId": 778707, + "latitudeCity": 71.03333, + "longitudeCity": 27.833332, + "nameCity": "Mehamn", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "cityId": 4520, + "codeIataCity": "MEI", + "codeIso2Country": "US", + "geonameId": 4435764, + "latitudeCity": 32.337223, + "longitudeCity": -88.74917, + "nameCity": "Meridian", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 4521, + "codeIataCity": "MEJ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.63333, + "longitudeCity": -80.166664, + "nameCity": "Meadville", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 4522, + "codeIataCity": "MEK", + "codeIso2Country": "MA", + "geonameId": 2542715, + "latitudeCity": 33.88333, + "longitudeCity": -5.533333, + "nameCity": "Meknes", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "10", + "cityId": 4523, + "codeIataCity": "MEL", + "codeIso2Country": "AU", + "geonameId": 2158177, + "latitudeCity": -37.813187, + "longitudeCity": 144.96298, + "nameCity": "Melbourne", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-6", + "cityId": 4524, + "codeIataCity": "MEM", + "codeIso2Country": "US", + "geonameId": 4641239, + "latitudeCity": 35.149534, + "longitudeCity": -90.04898, + "nameCity": "Memphis", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 4525, + "codeIataCity": "MEN", + "codeIso2Country": "FR", + "geonameId": 2990363, + "latitudeCity": 44.5, + "longitudeCity": 3.533333, + "nameCity": "Mende", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 4526, + "codeIataCity": "MEO", + "codeIso2Country": "US", + "geonameId": 4481427, + "latitudeCity": 35.919167, + "longitudeCity": -75.695274, + "nameCity": "Manteo", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 4527, + "codeIataCity": "MEP", + "codeIso2Country": "MY", + "geonameId": 1732826, + "latitudeCity": 2.416667, + "longitudeCity": 103.833336, + "nameCity": "Mersing", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "7", + "cityId": 4528, + "codeIataCity": "MEQ", + "codeIso2Country": "ID", + "geonameId": 1214488, + "latitudeCity": 4.15, + "longitudeCity": 96.11667, + "nameCity": "Meulaboh", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "7", + "cityId": 4529, + "codeIataCity": "MES", + "codeIso2Country": "ID", + "geonameId": 1214520, + "latitudeCity": 3.561111, + "longitudeCity": 98.672775, + "nameCity": "Medan", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "10", + "cityId": 4530, + "codeIataCity": "MET", + "codeIso2Country": "AU", + "geonameId": 2144209, + "latitudeCity": -12.75, + "longitudeCity": 142.76666, + "nameCity": "Moreton", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "cityId": 4531, + "codeIataCity": "MEU", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -0.883333, + "longitudeCity": -52.583332, + "nameCity": "Monte Dourado", + "timezone": "America/Santarem" + }, + { + "GMT": "-8", + "cityId": 4532, + "codeIataCity": "MEV", + "codeIso2Country": "US", + "geonameId": 5397664, + "latitudeCity": 39.0, + "longitudeCity": -119.75, + "nameCity": "Minden", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "cityId": 4533, + "codeIataCity": "MEW", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -4.85, + "longitudeCity": 21.566668, + "nameCity": "Mweka", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-6", + "cityId": 4534, + "codeIataCity": "MEX", + "codeIso2Country": "MX", + "geonameId": 3530597, + "latitudeCity": 19.42705, + "longitudeCity": -99.127571, + "nameCity": "Mexico City", + "timezone": "America/Mexico_City" + }, + { + "GMT": "5.45", + "cityId": 4535, + "codeIataCity": "MEY", + "codeIso2Country": "NP", + "geonameId": 1283046, + "latitudeCity": 27.57639, + "longitudeCity": 84.23139, + "nameCity": "Meghauli", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "2", + "cityId": 4536, + "codeIataCity": "MEZ", + "codeIso2Country": "ZA", + "geonameId": 980557, + "latitudeCity": -22.366667, + "longitudeCity": 29.833332, + "nameCity": "Messina", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "3", + "cityId": 4537, + "codeIataCity": "MFA", + "codeIso2Country": "TZ", + "geonameId": 0, + "latitudeCity": -7.913889, + "longitudeCity": 39.665, + "nameCity": "Mafia", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-5", + "cityId": 4538, + "codeIataCity": "MFB", + "codeIso2Country": "CO", + "geonameId": 3674584, + "latitudeCity": 0.616667, + "longitudeCity": -69.75, + "nameCity": "Monfort", + "timezone": "America/Bogota" + }, + { + "GMT": "2", + "cityId": 4539, + "codeIataCity": "MFC", + "codeIso2Country": "LS", + "geonameId": 0, + "latitudeCity": -29.75, + "longitudeCity": 27.3, + "nameCity": "Mafeteng", + "timezone": "Africa/Maseru" + }, + { + "GMT": "-5", + "cityId": 4540, + "codeIataCity": "MFD", + "codeIso2Country": "US", + "geonameId": 5161723, + "latitudeCity": 40.82, + "longitudeCity": -82.51278, + "nameCity": "Mansfield", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 4541, + "codeIataCity": "MFE", + "codeIso2Country": "US", + "geonameId": 4709796, + "latitudeCity": 26.181295, + "longitudeCity": -98.23978, + "nameCity": "Mc Allen", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 4542, + "codeIataCity": "MFF", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -1.536944, + "longitudeCity": 13.270833, + "nameCity": "Moanda", + "timezone": "Africa/Libreville" + }, + { + "GMT": "5", + "cityId": 4543, + "codeIataCity": "MFG", + "codeIso2Country": "PK", + "geonameId": 1169607, + "latitudeCity": 34.36667, + "longitudeCity": 73.46667, + "nameCity": "Muzaffarabad", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-8", + "cityId": 4544, + "codeIataCity": "MFH", + "codeIso2Country": "US", + "geonameId": 5508180, + "latitudeCity": 36.83611, + "longitudeCity": -114.05861, + "nameCity": "Mesquite", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 4545, + "codeIataCity": "MFI", + "codeIso2Country": "US", + "geonameId": 5261969, + "latitudeCity": 44.63389, + "longitudeCity": -90.18667, + "nameCity": "Marshfield", + "timezone": "America/Chicago" + }, + { + "GMT": "12", + "cityId": 4546, + "codeIataCity": "MFJ", + "codeIso2Country": "FJ", + "geonameId": 0, + "latitudeCity": -18.566668, + "longitudeCity": 179.93333, + "nameCity": "Moala", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "8", + "cityId": 4547, + "codeIataCity": "MFK", + "codeIso2Country": "TW", + "geonameId": 1672082, + "latitudeCity": 26.166668, + "longitudeCity": 119.916664, + "nameCity": "Matsu", + "timezone": "Asia/Taipei" + }, + { + "GMT": "10", + "cityId": 4548, + "codeIataCity": "MFL", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -19.666668, + "longitudeCity": 144.9, + "nameCity": "Mount Full Stop", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "cityId": 4549, + "codeIataCity": "MFM", + "codeIso2Country": "MO", + "geonameId": 1821274, + "latitudeCity": 22.163845, + "longitudeCity": 113.554994, + "nameCity": "Macau", + "timezone": "Asia/Macau" + }, + { + "GMT": "12", + "cityId": 4550, + "codeIataCity": "MFN", + "codeIso2Country": "NZ", + "geonameId": 2184707, + "latitudeCity": -44.669445, + "longitudeCity": 167.91112, + "nameCity": "Milford Sound", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "10", + "cityId": 4551, + "codeIataCity": "MFO", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.566667, + "longitudeCity": 151.78334, + "nameCity": "Manguna", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9.30", + "cityId": 4552, + "codeIataCity": "MFP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -22.1, + "longitudeCity": 137.98334, + "nameCity": "Manners Creek", + "timezone": "Australia/Darwin" + }, + { + "GMT": "1", + "cityId": 4553, + "codeIataCity": "MFQ", + "codeIso2Country": "NE", + "geonameId": 0, + "latitudeCity": 13.5025, + "longitudeCity": 7.125278, + "nameCity": "Maradi", + "timezone": "Africa/Niamey" + }, + { + "GMT": "-8", + "cityId": 4554, + "codeIataCity": "MFR", + "codeIso2Country": "US", + "geonameId": 5740099, + "latitudeCity": 42.369026, + "longitudeCity": -122.87312, + "nameCity": "Medford", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 4555, + "codeIataCity": "MFS", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 5.166667, + "longitudeCity": -73.25, + "nameCity": "Miraflores", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 4556, + "codeIataCity": "MFT", + "codeIso2Country": "PE", + "geonameId": 3935636, + "latitudeCity": -13.116667, + "longitudeCity": -72.566666, + "nameCity": "Machu Picchu", + "timezone": "America/Lima" + }, + { + "GMT": "2", + "cityId": 4557, + "codeIataCity": "MFU", + "codeIso2Country": "ZM", + "geonameId": 6355146, + "latitudeCity": -13.266667, + "longitudeCity": 31.933332, + "nameCity": "Mfuwe", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-5", + "cityId": 4558, + "codeIataCity": "MFV", + "codeIso2Country": "US", + "geonameId": 4772630, + "latitudeCity": 37.63333, + "longitudeCity": -75.78333, + "nameCity": "Melfa", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 4559, + "codeIataCity": "MFW", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": -21.972221, + "longitudeCity": 35.591667, + "nameCity": "Magaruque", + "timezone": "Africa/Maputo" + }, + { + "GMT": "1", + "cityId": 4560, + "codeIataCity": "MFX", + "codeIso2Country": "FR", + "geonameId": 0, + "latitudeCity": 45.416668, + "longitudeCity": 6.566667, + "nameCity": "Meribel", + "timezone": "Europe/Paris" + }, + { + "GMT": "3", + "cityId": 4561, + "codeIataCity": "MFY", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 13.666667, + "longitudeCity": 46.00833, + "nameCity": "Mayfa'ah", + "timezone": "Asia/Aden" + }, + { + "GMT": "10", + "cityId": 4562, + "codeIataCity": "MFZ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.133333, + "longitudeCity": 149.11667, + "nameCity": "Mesalia", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 4563, + "codeIataCity": "MGA", + "codeIso2Country": "NI", + "geonameId": 3617763, + "latitudeCity": 12.144838, + "longitudeCity": -86.171265, + "nameCity": "Managua", + "timezone": "America/Managua" + }, + { + "GMT": "9.30", + "cityId": 4564, + "codeIataCity": "MGB", + "codeIso2Country": "AU", + "geonameId": 2156643, + "latitudeCity": -37.744072, + "longitudeCity": 140.78271, + "nameCity": "Mount Gambier", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-6", + "cityId": 4565, + "codeIataCity": "MGC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.7, + "longitudeCity": -86.816666, + "nameCity": "Michigan City", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 4566, + "codeIataCity": "MGD", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -13.325278, + "longitudeCity": -64.124725, + "nameCity": "Magdalena", + "timezone": "America/La_Paz" + }, + { + "GMT": "-5", + "cityId": 4567, + "codeIataCity": "MGE", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 33.916668, + "longitudeCity": -84.51667, + "nameCity": "Marietta", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 4568, + "codeIataCity": "MGF", + "codeIso2Country": "BR", + "geonameId": 3457671, + "latitudeCity": -23.383612, + "longitudeCity": -51.933334, + "nameCity": "Maringa", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "cityId": 4569, + "codeIataCity": "MGG", + "codeIso2Country": "PG", + "geonameId": 2091376, + "latitudeCity": -6.033333, + "longitudeCity": 143.36667, + "nameCity": "Margarima", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "cityId": 4570, + "codeIataCity": "MGH", + "codeIso2Country": "ZA", + "geonameId": 978895, + "latitudeCity": -30.916668, + "longitudeCity": 30.25, + "nameCity": "Margate", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-6", + "cityId": 4571, + "codeIataCity": "MGI", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 28.25, + "longitudeCity": -96.5, + "nameCity": "Matagorda Island", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 4572, + "codeIataCity": "MGJ", + "codeIso2Country": "US", + "geonameId": 5128581, + "latitudeCity": 41.516666, + "longitudeCity": -74.26667, + "nameCity": "Montgomery", + "timezone": "America/New_York" + }, + { + "GMT": "6.30", + "cityId": 4573, + "codeIataCity": "MGK", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 20.283333, + "longitudeCity": 98.9, + "nameCity": "Mong Ton", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-6", + "cityId": 4574, + "codeIataCity": "MGM", + "codeIso2Country": "US", + "geonameId": 4076784, + "latitudeCity": 51.07, + "longitudeCity": -1.17, + "nameCity": "Montgomery", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 4575, + "codeIataCity": "MGN", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 9.288056, + "longitudeCity": -74.845, + "nameCity": "Magangue", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 4576, + "codeIataCity": "MGO", + "codeIso2Country": "GA", + "geonameId": 2399211, + "latitudeCity": -1.733333, + "longitudeCity": 10.216667, + "nameCity": "Manega", + "timezone": "Africa/Libreville" + }, + { + "GMT": "10", + "cityId": 4577, + "codeIataCity": "MGP", + "codeIso2Country": "PG", + "geonameId": 2093685, + "latitudeCity": -4.033333, + "longitudeCity": 152.96666, + "nameCity": "Manga", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 4578, + "codeIataCity": "MGQ", + "codeIso2Country": "SO", + "geonameId": 53654, + "latitudeCity": 2.013333, + "longitudeCity": 45.31333, + "nameCity": "Mogadishu", + "timezone": "Africa/Mogadishu" + }, + { + "GMT": "-5", + "cityId": 4579, + "codeIataCity": "MGR", + "codeIso2Country": "US", + "geonameId": 4210397, + "latitudeCity": 31.179908, + "longitudeCity": -83.789063, + "nameCity": "Moultrie", + "timezone": "America/New_York" + }, + { + "GMT": "-10", + "cityId": 4580, + "codeIataCity": "MGS", + "codeIso2Country": "CK", + "geonameId": 0, + "latitudeCity": -21.933332, + "longitudeCity": -157.93333, + "nameCity": "Mangaia Island", + "timezone": "Pacific/Rarotonga" + }, + { + "GMT": "9.30", + "cityId": 4581, + "codeIataCity": "MGT", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -12.093703, + "longitudeCity": 134.89352, + "nameCity": "Milingimbi", + "timezone": "Australia/Darwin" + }, + { + "GMT": "6.30", + "cityId": 4582, + "codeIataCity": "MGU", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 18.958332, + "longitudeCity": 93.73889, + "nameCity": "Manaung", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "8", + "cityId": 4583, + "codeIataCity": "MGV", + "codeIso2Country": "AU", + "geonameId": 2070176, + "latitudeCity": -18.616667, + "longitudeCity": 126.86667, + "nameCity": "Margaret River Station", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "cityId": 4584, + "codeIataCity": "MGW", + "codeIso2Country": "US", + "geonameId": 4815352, + "latitudeCity": 39.642776, + "longitudeCity": -79.91583, + "nameCity": "Morgantown", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 4585, + "codeIataCity": "MGX", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -2.25, + "longitudeCity": 11.0, + "nameCity": "Moabi", + "timezone": "Africa/Libreville" + }, + { + "GMT": "6.30", + "cityId": 4586, + "codeIataCity": "MGZ", + "codeIso2Country": "MM", + "geonameId": 1309611, + "latitudeCity": 12.45, + "longitudeCity": 98.61667, + "nameCity": "Myeik", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-4", + "cityId": 4587, + "codeIataCity": "MHA", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 5.25, + "longitudeCity": -59.15, + "nameCity": "Mahdia", + "timezone": "America/Guyana" + }, + { + "GMT": "3.30", + "cityId": 4588, + "codeIataCity": "MHD", + "codeIso2Country": "IR", + "geonameId": 124665, + "latitudeCity": 36.227173, + "longitudeCity": 59.64165, + "nameCity": "Mashad", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-6", + "cityId": 4589, + "codeIataCity": "MHE", + "codeIso2Country": "US", + "geonameId": 5229794, + "latitudeCity": 43.775276, + "longitudeCity": -98.038055, + "nameCity": "Mitchell", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 4590, + "codeIataCity": "MHF", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 2.15, + "longitudeCity": -70.583336, + "nameCity": "Morichal", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 4591, + "codeIataCity": "MHG", + "codeIso2Country": "DE", + "geonameId": 2873891, + "latitudeCity": 49.476578, + "longitudeCity": 8.521081, + "nameCity": "Mannheim", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "cityId": 4592, + "codeIataCity": "MHH", + "codeIso2Country": "BS", + "geonameId": 3571913, + "latitudeCity": 26.513428, + "longitudeCity": -77.07712, + "nameCity": "Marsh Harbour", + "timezone": "America/Nassau" + }, + { + "GMT": "3", + "cityId": 4593, + "codeIataCity": "MHI", + "codeIso2Country": "DJ", + "geonameId": 0, + "latitudeCity": 11.0, + "longitudeCity": 43.0, + "nameCity": "Musha", + "timezone": "Africa/Djibouti" + }, + { + "GMT": "-6", + "cityId": 4594, + "codeIataCity": "MHK", + "codeIso2Country": "US", + "geonameId": 4274994, + "latitudeCity": 39.142223, + "longitudeCity": -96.66889, + "nameCity": "Manhattan", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 4595, + "codeIataCity": "MHL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.11667, + "longitudeCity": -93.2, + "nameCity": "Marshall", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 4596, + "codeIataCity": "MHM", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 63.869167, + "longitudeCity": -152.28583, + "nameCity": "Minchumina", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "cityId": 4597, + "codeIataCity": "MHN", + "codeIso2Country": "US", + "geonameId": 5697774, + "latitudeCity": 42.05, + "longitudeCity": -101.01667, + "nameCity": "Mullen", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "cityId": 4598, + "codeIataCity": "MHO", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.133333, + "longitudeCity": 125.76667, + "nameCity": "Mount House", + "timezone": "Australia/Perth" + }, + { + "GMT": "2", + "cityId": 4599, + "codeIataCity": "MHQ", + "codeIso2Country": "AX", + "geonameId": 3041732, + "latitudeCity": 60.123333, + "longitudeCity": 19.896667, + "nameCity": "Mariehamn", + "timezone": "Europe/Mariehamn" + }, + { + "GMT": "-8", + "cityId": 4600, + "codeIataCity": "MHS", + "codeIso2Country": "US", + "geonameId": 5568295, + "latitudeCity": 41.316666, + "longitudeCity": -122.316666, + "nameCity": "Mount Shasta", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 4601, + "codeIataCity": "MHT", + "codeIso2Country": "US", + "geonameId": 5089178, + "latitudeCity": 42.92786, + "longitudeCity": -71.43844, + "nameCity": "Manchester", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 4602, + "codeIataCity": "MHU", + "codeIso2Country": "AU", + "geonameId": 2156722, + "latitudeCity": -36.966667, + "longitudeCity": 147.18333, + "nameCity": "Mount Hotham", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-8", + "cityId": 4603, + "codeIataCity": "MHV", + "codeIso2Country": "US", + "geonameId": 5325738, + "latitudeCity": 35.066666, + "longitudeCity": -118.15, + "nameCity": "Mojave", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "cityId": 4604, + "codeIataCity": "MHW", + "codeIso2Country": "BO", + "geonameId": 3922414, + "latitudeCity": -19.8325, + "longitudeCity": -63.966667, + "nameCity": "Monteagudo", + "timezone": "America/La_Paz" + }, + { + "GMT": "-10", + "cityId": 4605, + "codeIataCity": "MHX", + "codeIso2Country": "CK", + "geonameId": 0, + "latitudeCity": -10.366667, + "longitudeCity": -161.0, + "nameCity": "Manihiki Island", + "timezone": "Pacific/Rarotonga" + }, + { + "GMT": "10", + "cityId": 4606, + "codeIataCity": "MHY", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.7, + "longitudeCity": 141.63333, + "nameCity": "Morehead", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "cityId": 4607, + "codeIataCity": "MHZ", + "codeIso2Country": "GB", + "geonameId": 2642543, + "latitudeCity": 52.36667, + "longitudeCity": 0.483333, + "nameCity": "Mildenhall", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "cityId": 4608, + "codeIataCity": "MIA", + "codeIso2Country": "US", + "geonameId": 4164138, + "latitudeCity": 25.788969, + "longitudeCity": -80.226439, + "nameCity": "Miami", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 4609, + "codeIataCity": "MID", + "codeIso2Country": "MX", + "geonameId": 3523349, + "latitudeCity": 20.933823, + "longitudeCity": -89.66375, + "nameCity": "Merida", + "timezone": "America/Merida" + }, + { + "GMT": "-5", + "cityId": 4610, + "codeIataCity": "MIE", + "codeIso2Country": "US", + "geonameId": 4924006, + "latitudeCity": 40.239723, + "longitudeCity": -85.39445, + "nameCity": "Muncie", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-6", + "cityId": 4611, + "codeIataCity": "MIF", + "codeIso2Country": "US", + "geonameId": 5526514, + "latitudeCity": 31.6, + "longitudeCity": -102.9, + "nameCity": "Monahans", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 4612, + "codeIataCity": "MIG", + "codeIso2Country": "CN", + "geonameId": 1800627, + "latitudeCity": 31.43111, + "longitudeCity": 104.73805, + "nameCity": "Mian Yang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 4613, + "codeIataCity": "MIH", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -26.483334, + "longitudeCity": 147.96666, + "nameCity": "Mitchell Plateau", + "timezone": "Australia/Perth" + }, + { + "GMT": "-3", + "cityId": 4614, + "codeIataCity": "MII", + "codeIso2Country": "BR", + "geonameId": 3457692, + "latitudeCity": -22.2, + "longitudeCity": -49.933334, + "nameCity": "Marilia", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "12", + "cityId": 4615, + "codeIataCity": "MIJ", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 6.083333, + "longitudeCity": 171.75, + "nameCity": "Mili Island", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "2", + "cityId": 4616, + "codeIataCity": "MIK", + "codeIso2Country": "FI", + "geonameId": 646005, + "latitudeCity": 61.683887, + "longitudeCity": 27.213057, + "nameCity": "Mikkeli", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "1", + "cityId": 4617, + "codeIataCity": "MIL", + "codeIso2Country": "IT", + "geonameId": 3173435, + "latitudeCity": 45.463681, + "longitudeCity": 9.188171, + "nameCity": "Milan", + "timezone": "Europe/Rome" + }, + { + "GMT": "10", + "cityId": 4618, + "codeIataCity": "MIM", + "codeIso2Country": "AU", + "geonameId": 2158020, + "latitudeCity": -36.910046, + "longitudeCity": 149.90202, + "nameCity": "Merimbula", + "timezone": "Australia/Sydney" + }, + { + "GMT": "9.30", + "cityId": 4619, + "codeIataCity": "MIN", + "codeIso2Country": "AU", + "geonameId": 2060937, + "latitudeCity": -32.833332, + "longitudeCity": 134.83333, + "nameCity": "Minnipa", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-6", + "cityId": 4620, + "codeIataCity": "MIO", + "codeIso2Country": "US", + "geonameId": 4101260, + "latitudeCity": 36.88333, + "longitudeCity": -94.9, + "nameCity": "Miami", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 4621, + "codeIataCity": "MIP", + "codeIso2Country": "IL", + "geonameId": 294041, + "latitudeCity": 30.6, + "longitudeCity": 34.8, + "nameCity": "Mitspeh Ramon", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "1", + "cityId": 4622, + "codeIataCity": "MIR", + "codeIso2Country": "TN", + "geonameId": 2473493, + "latitudeCity": 35.76108, + "longitudeCity": 10.753155, + "nameCity": "Monastir", + "timezone": "Africa/Tunis" + }, + { + "GMT": "10", + "cityId": 4623, + "codeIataCity": "MIS", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -10.5, + "longitudeCity": 152.84166, + "nameCity": "Misima Island", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "cityId": 4624, + "codeIataCity": "MIT", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 35.5, + "longitudeCity": -119.26667, + "nameCity": "Shafter", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 4625, + "codeIataCity": "MIU", + "codeIso2Country": "NG", + "geonameId": 2331447, + "latitudeCity": 11.844167, + "longitudeCity": 13.068056, + "nameCity": "Maiduguri", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-5", + "cityId": 4626, + "codeIataCity": "MIV", + "codeIso2Country": "US", + "geonameId": 4560349, + "latitudeCity": 39.4, + "longitudeCity": -75.03333, + "nameCity": "Millville", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 4627, + "codeIataCity": "MIW", + "codeIso2Country": "US", + "geonameId": 4866371, + "latitudeCity": 42.166668, + "longitudeCity": -92.916664, + "nameCity": "Marshalltown", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 4628, + "codeIataCity": "MIX", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": -6.25, + "longitudeCity": -59.0, + "nameCity": "Miriti", + "timezone": "America/Bogota" + }, + { + "GMT": "9.30", + "cityId": 4629, + "codeIataCity": "MIY", + "codeIso2Country": "AU", + "geonameId": 2077895, + "latitudeCity": -18.81, + "longitudeCity": 137.08, + "nameCity": "Mittiebah", + "timezone": "Australia/Darwin" + }, + { + "GMT": "9.30", + "cityId": 4630, + "codeIataCity": "MIZ", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -14.0, + "longitudeCity": 134.1, + "nameCity": "Mainoru", + "timezone": "Australia/Darwin" + }, + { + "GMT": "3", + "cityId": 4631, + "codeIataCity": "MJA", + "codeIso2Country": "MG", + "geonameId": 1060682, + "latitudeCity": -21.416668, + "longitudeCity": 44.316666, + "nameCity": "Manja", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "12", + "cityId": 4632, + "codeIataCity": "MJB", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 10.283333, + "longitudeCity": 170.88333, + "nameCity": "Mejit Island", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "0", + "cityId": 4633, + "codeIataCity": "MJC", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 7.381667, + "longitudeCity": -7.528333, + "nameCity": "Man", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "5", + "cityId": 4634, + "codeIataCity": "MJD", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 27.33639, + "longitudeCity": 68.14167, + "nameCity": "Mohenjodaro", + "timezone": "Asia/Karachi" + }, + { + "GMT": "12", + "cityId": 4635, + "codeIataCity": "MJE", + "codeIso2Country": "MH", + "geonameId": 7303978, + "latitudeCity": 9.0, + "longitudeCity": 170.0, + "nameCity": "Majkin", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "1", + "cityId": 4636, + "codeIataCity": "MJF", + "codeIso2Country": "NO", + "geonameId": 3145386, + "latitudeCity": 65.78439, + "longitudeCity": 13.218328, + "nameCity": "Mosjoen", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "cityId": 4637, + "codeIataCity": "MJG", + "codeIso2Country": "CU", + "geonameId": 3547324, + "latitudeCity": 21.758333, + "longitudeCity": -79.0, + "nameCity": "Mayajigua", + "timezone": "America/Havana" + }, + { + "GMT": "10", + "cityId": 4638, + "codeIataCity": "MJJ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.7, + "longitudeCity": 145.25, + "nameCity": "Moki", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 4639, + "codeIataCity": "MJK", + "codeIso2Country": "AU", + "geonameId": 2065971, + "latitudeCity": -25.888159, + "longitudeCity": 113.57695, + "nameCity": "Monkey Mia", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "cityId": 4640, + "codeIataCity": "MJL", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -1.817778, + "longitudeCity": 10.924167, + "nameCity": "Mouila", + "timezone": "Africa/Libreville" + }, + { + "GMT": "2", + "cityId": 4641, + "codeIataCity": "MJM", + "codeIso2Country": "CD", + "geonameId": 209228, + "latitudeCity": -6.15, + "longitudeCity": 23.633333, + "nameCity": "Mbuji-Mayi", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "3", + "cityId": 4642, + "codeIataCity": "MJN", + "codeIso2Country": "MG", + "geonameId": 1062663, + "latitudeCity": -15.665833, + "longitudeCity": 46.353058, + "nameCity": "Majunga", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "2", + "cityId": 4643, + "codeIataCity": "MJO", + "codeIso2Country": "NA", + "geonameId": 3353811, + "latitudeCity": -21.018333, + "longitudeCity": 16.469168, + "nameCity": "Mount Etjo Lodge", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "8", + "cityId": 4644, + "codeIataCity": "MJP", + "codeIso2Country": "AU", + "geonameId": 2067086, + "latitudeCity": -34.233334, + "longitudeCity": 116.1, + "nameCity": "Manjimup", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "cityId": 4645, + "codeIataCity": "MJQ", + "codeIso2Country": "US", + "geonameId": 5031678, + "latitudeCity": 43.61667, + "longitudeCity": -95.01667, + "nameCity": "Jackson", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 4646, + "codeIataCity": "MJR", + "codeIso2Country": "AR", + "geonameId": 3430668, + "latitudeCity": -38.25, + "longitudeCity": -57.833332, + "nameCity": "Miramar", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "2", + "cityId": 4647, + "codeIataCity": "MJS", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": -25.35, + "longitudeCity": 32.22, + "nameCity": "Maganja Da Costa", + "timezone": "Africa/Maputo" + }, + { + "GMT": "2", + "cityId": 4648, + "codeIataCity": "MJT", + "codeIso2Country": "GR", + "geonameId": 256866, + "latitudeCity": 39.05611, + "longitudeCity": 26.599443, + "nameCity": "Mytilene", + "timezone": "Europe/Athens" + }, + { + "GMT": "8", + "cityId": 4649, + "codeIataCity": "MJU", + "codeIso2Country": "ID", + "geonameId": 1636556, + "latitudeCity": -2.5, + "longitudeCity": 118.833336, + "nameCity": "Mamuju", + "timezone": "Asia/Makassar" + }, + { + "GMT": "1", + "cityId": 4650, + "codeIataCity": "MJV", + "codeIso2Country": "ES", + "geonameId": 2514868, + "latitudeCity": 37.983445, + "longitudeCity": -1.12989, + "nameCity": "Murcia", + "timezone": "Europe/Madrid" + }, + { + "GMT": "2", + "cityId": 4651, + "codeIataCity": "MJW", + "codeIso2Country": "ZW", + "geonameId": 0, + "latitudeCity": -21.233334, + "longitudeCity": 32.333332, + "nameCity": "Mahenye", + "timezone": "Africa/Harare" + }, + { + "GMT": "-5", + "cityId": 4652, + "codeIataCity": "MJX", + "codeIso2Country": "US", + "geonameId": 4504476, + "latitudeCity": 39.966667, + "longitudeCity": -74.2, + "nameCity": "Toms River", + "timezone": "America/New_York" + }, + { + "GMT": "7", + "cityId": 4653, + "codeIataCity": "MJY", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -2.733333, + "longitudeCity": 103.566666, + "nameCity": "Mangunjaya", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "9", + "cityId": 4654, + "codeIataCity": "MJZ", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 62.533333, + "longitudeCity": 114.03333, + "nameCity": "Mirnyj", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "1", + "cityId": 4655, + "codeIataCity": "MKA", + "codeIso2Country": "CZ", + "geonameId": 3071024, + "latitudeCity": 49.983334, + "longitudeCity": 12.716667, + "nameCity": "Marianske Lazne", + "timezone": "Europe/Prague" + }, + { + "GMT": "1", + "cityId": 4656, + "codeIataCity": "MKB", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": 1.05, + "longitudeCity": 13.833333, + "nameCity": "Mekambo", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-6", + "cityId": 4657, + "codeIataCity": "MKC", + "codeIso2Country": "US", + "geonameId": 4393217, + "latitudeCity": 39.05, + "longitudeCity": -94.583333, + "nameCity": "Kansas City", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 4658, + "codeIataCity": "MKE", + "codeIso2Country": "US", + "geonameId": 5263045, + "latitudeCity": 43.038902, + "longitudeCity": -87.906474, + "nameCity": "Milwaukee", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 4659, + "codeIataCity": "MKG", + "codeIso2Country": "US", + "geonameId": 5003132, + "latitudeCity": 43.170555, + "longitudeCity": -86.2375, + "nameCity": "Muskegon", + "timezone": "America/Detroit" + }, + { + "GMT": "2", + "cityId": 4660, + "codeIataCity": "MKH", + "codeIso2Country": "LS", + "geonameId": 0, + "latitudeCity": -29.166668, + "longitudeCity": 29.166668, + "nameCity": "Mokhotlong", + "timezone": "Africa/Maseru" + }, + { + "GMT": "1", + "cityId": 4661, + "codeIataCity": "MKI", + "codeIso2Country": "CF", + "geonameId": 236950, + "latitudeCity": 5.316667, + "longitudeCity": 25.95, + "nameCity": "Obo", + "timezone": "Africa/Bangui" + }, + { + "GMT": "1", + "cityId": 4662, + "codeIataCity": "MKJ", + "codeIso2Country": "CG", + "geonameId": 0, + "latitudeCity": -0.020278, + "longitudeCity": 15.576667, + "nameCity": "Makoua", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-10", + "cityId": 4663, + "codeIataCity": "MKK", + "codeIso2Country": "US", + "geonameId": 5856195, + "latitudeCity": 21.152779, + "longitudeCity": -157.1, + "nameCity": "Hoolehua", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "-6", + "cityId": 4664, + "codeIataCity": "MKL", + "codeIso2Country": "US", + "geonameId": 4632595, + "latitudeCity": 35.60139, + "longitudeCity": -88.915276, + "nameCity": "Jackson", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 4665, + "codeIataCity": "MKM", + "codeIso2Country": "MY", + "geonameId": 1735339, + "latitudeCity": 2.906944, + "longitudeCity": 112.07972, + "nameCity": "Mukah", + "timezone": "Asia/Kuching" + }, + { + "GMT": "10", + "cityId": 4666, + "codeIataCity": "MKN", + "codeIso2Country": "PG", + "geonameId": 2091715, + "latitudeCity": -4.016667, + "longitudeCity": 153.675, + "nameCity": "Malekolon", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 4667, + "codeIataCity": "MKO", + "codeIso2Country": "US", + "geonameId": 4543338, + "latitudeCity": 35.660557, + "longitudeCity": -95.36667, + "nameCity": "Muskogee", + "timezone": "America/Chicago" + }, + { + "GMT": "-10", + "cityId": 4668, + "codeIataCity": "MKP", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -16.587921, + "longitudeCity": -143.65436, + "nameCity": "Makemo", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "9", + "cityId": 4669, + "codeIataCity": "MKQ", + "codeIso2Country": "ID", + "geonameId": 2082539, + "latitudeCity": -8.516667, + "longitudeCity": 140.5, + "nameCity": "Merauke", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "cityId": 4670, + "codeIataCity": "MKR", + "codeIso2Country": "AU", + "geonameId": 2066591, + "latitudeCity": -26.61113, + "longitudeCity": 118.54596, + "nameCity": "Meekatharra", + "timezone": "Australia/Perth" + }, + { + "GMT": "3", + "cityId": 4671, + "codeIataCity": "MKS", + "codeIso2Country": "ET", + "geonameId": 331195, + "latitudeCity": 11.683333, + "longitudeCity": 38.15, + "nameCity": "Mekane Selam", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-6", + "cityId": 4672, + "codeIataCity": "MKT", + "codeIso2Country": "US", + "geonameId": 5036420, + "latitudeCity": 44.163578, + "longitudeCity": -93.9994, + "nameCity": "Mankato", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 4673, + "codeIataCity": "MKU", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": 0.559167, + "longitudeCity": 12.861111, + "nameCity": "Makokou", + "timezone": "Africa/Libreville" + }, + { + "GMT": "9.30", + "cityId": 4674, + "codeIataCity": "MKV", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -25.966667, + "longitudeCity": 133.25, + "nameCity": "Mount Cavenagh", + "timezone": "Australia/Darwin" + }, + { + "GMT": "9", + "cityId": 4675, + "codeIataCity": "MKW", + "codeIso2Country": "ID", + "geonameId": 1636308, + "latitudeCity": -0.893056, + "longitudeCity": 134.05278, + "nameCity": "Manokwari", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "10", + "cityId": 4676, + "codeIataCity": "MKY", + "codeIso2Country": "AU", + "geonameId": 2159220, + "latitudeCity": -21.176285, + "longitudeCity": 149.1818, + "nameCity": "Mackay", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "cityId": 4677, + "codeIataCity": "MKZ", + "codeIso2Country": "MY", + "geonameId": 1734759, + "latitudeCity": 2.264167, + "longitudeCity": 102.253334, + "nameCity": "Malacca", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "1", + "cityId": 4678, + "codeIataCity": "MLA", + "codeIso2Country": "MT", + "geonameId": 2562501, + "latitudeCity": 35.849777, + "longitudeCity": 14.495401, + "nameCity": "Gudja", + "timezone": "Europe/Malta" + }, + { + "GMT": "-5", + "cityId": 4679, + "codeIataCity": "MLB", + "codeIso2Country": "US", + "geonameId": 4163971, + "latitudeCity": 28.1025, + "longitudeCity": -80.63028, + "nameCity": "Melbourne", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 4680, + "codeIataCity": "MLC", + "codeIso2Country": "US", + "geonameId": 4542367, + "latitudeCity": 34.88028, + "longitudeCity": -95.785, + "nameCity": "Mc Alester", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 4681, + "codeIataCity": "MLD", + "codeIso2Country": "US", + "geonameId": 5600035, + "latitudeCity": 42.2, + "longitudeCity": -112.45, + "nameCity": "Malad City", + "timezone": "America/Boise" + }, + { + "GMT": "5", + "cityId": 4682, + "codeIataCity": "MLE", + "codeIso2Country": "MV", + "geonameId": 1282027, + "latitudeCity": 4.201389, + "longitudeCity": 73.524445, + "nameCity": "Male", + "timezone": "Indian/Maldives" + }, + { + "GMT": "-7", + "cityId": 4683, + "codeIataCity": "MLF", + "codeIso2Country": "US", + "geonameId": 5544525, + "latitudeCity": 38.433334, + "longitudeCity": -113.01667, + "nameCity": "Milford", + "timezone": "America/Denver" + }, + { + "GMT": "7", + "cityId": 4684, + "codeIataCity": "MLG", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -7.930615, + "longitudeCity": 112.71099, + "nameCity": "Malang", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-6", + "cityId": 4685, + "codeIataCity": "MLI", + "codeIso2Country": "US", + "geonameId": 4902476, + "latitudeCity": 41.453896, + "longitudeCity": -90.50611, + "nameCity": "Moline", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 4686, + "codeIataCity": "MLJ", + "codeIso2Country": "US", + "geonameId": 4209448, + "latitudeCity": 33.083332, + "longitudeCity": -83.23333, + "nameCity": "Milledgeville", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 4687, + "codeIataCity": "MLK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 48.494415, + "longitudeCity": -107.9095, + "nameCity": "Malta", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "cityId": 4688, + "codeIataCity": "MLL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 61.865833, + "longitudeCity": -162.0689, + "nameCity": "Marshall", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 4689, + "codeIataCity": "MLM", + "codeIso2Country": "MX", + "geonameId": 3995402, + "latitudeCity": 19.84351, + "longitudeCity": -101.02693, + "nameCity": "Morelia", + "timezone": "America/Mexico_City" + }, + { + "GMT": "1", + "cityId": 4690, + "codeIataCity": "MLN", + "codeIso2Country": "ES", + "geonameId": 2513947, + "latitudeCity": 35.277077, + "longitudeCity": -2.957473, + "nameCity": "Melilla", + "timezone": "Africa/Ceuta" + }, + { + "GMT": "2", + "cityId": 4691, + "codeIataCity": "MLO", + "codeIso2Country": "GR", + "geonameId": 256344, + "latitudeCity": 36.69611, + "longitudeCity": 24.475, + "nameCity": "Milos", + "timezone": "Europe/Athens" + }, + { + "GMT": "8", + "cityId": 4692, + "codeIataCity": "MLP", + "codeIso2Country": "PH", + "geonameId": 1703352, + "latitudeCity": 7.618333, + "longitudeCity": 124.0575, + "nameCity": "Malabang", + "timezone": "Asia/Manila" + }, + { + "GMT": "10", + "cityId": 4693, + "codeIataCity": "MLQ", + "codeIso2Country": "PG", + "geonameId": 2091756, + "latitudeCity": -7.991667, + "longitudeCity": 146.085, + "nameCity": "Malalaua", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9.30", + "cityId": 4694, + "codeIataCity": "MLR", + "codeIso2Country": "AU", + "geonameId": 2062381, + "latitudeCity": -37.483334, + "longitudeCity": 140.01666, + "nameCity": "Millicent", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-7", + "cityId": 4695, + "codeIataCity": "MLS", + "codeIso2Country": "US", + "geonameId": 5666176, + "latitudeCity": 46.430557, + "longitudeCity": -105.880554, + "nameCity": "Miles City", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "cityId": 4696, + "codeIataCity": "MLT", + "codeIso2Country": "US", + "geonameId": 4972220, + "latitudeCity": 45.65, + "longitudeCity": -68.71667, + "nameCity": "Millinocket", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 4697, + "codeIataCity": "MLU", + "codeIso2Country": "US", + "geonameId": 4333669, + "latitudeCity": 32.51184, + "longitudeCity": -92.043655, + "nameCity": "Monroe", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 4698, + "codeIataCity": "MLV", + "codeIso2Country": "AU", + "geonameId": 2144209, + "latitudeCity": -13.016667, + "longitudeCity": 142.98334, + "nameCity": "Merluna", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "0", + "cityId": 4699, + "codeIataCity": "MLW", + "codeIso2Country": "LR", + "geonameId": 2274895, + "latitudeCity": 6.289444, + "longitudeCity": -10.758333, + "nameCity": "Monrovia", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "3", + "cityId": 4700, + "codeIataCity": "MLX", + "codeIso2Country": "TR", + "geonameId": 304922, + "latitudeCity": 38.354443, + "longitudeCity": 38.253613, + "nameCity": "Malatya", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-9", + "cityId": 4701, + "codeIataCity": "MLY", + "codeIso2Country": "US", + "geonameId": 5868235, + "latitudeCity": 64.996666, + "longitudeCity": -150.64305, + "nameCity": "Manley Hot Springs", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "cityId": 4702, + "codeIataCity": "MLZ", + "codeIso2Country": "UY", + "geonameId": 3441702, + "latitudeCity": -32.333332, + "longitudeCity": -54.2, + "nameCity": "Melo", + "timezone": "America/Montevideo" + }, + { + "GMT": "1", + "cityId": 4703, + "codeIataCity": "MMA", + "codeIso2Country": "SE", + "geonameId": 2692969, + "latitudeCity": 55.61, + "longitudeCity": 13.004, + "nameCity": "Malmo", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "9", + "cityId": 4704, + "codeIataCity": "MMB", + "codeIso2Country": "JP", + "geonameId": 2129537, + "latitudeCity": 43.9, + "longitudeCity": 144.16722, + "nameCity": "Memanbetsu", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-6", + "cityId": 4705, + "codeIataCity": "MMC", + "codeIso2Country": "MX", + "geonameId": 3530582, + "latitudeCity": 22.833332, + "longitudeCity": -99.0, + "nameCity": "Mante", + "timezone": "America/Mexico_City" + }, + { + "GMT": "9", + "cityId": 4706, + "codeIataCity": "MMD", + "codeIso2Country": "JP", + "geonameId": 0, + "latitudeCity": 25.841389, + "longitudeCity": 131.24722, + "nameCity": "Minami Daito", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "0", + "cityId": 4707, + "codeIataCity": "MME", + "codeIso2Country": "GB", + "geonameId": 2650628, + "latitudeCity": 54.51, + "longitudeCity": -1.43, + "nameCity": "Teesside", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 4708, + "codeIataCity": "MMF", + "codeIso2Country": "CM", + "geonameId": 0, + "latitudeCity": 5.716667, + "longitudeCity": 9.3, + "nameCity": "Mamfe", + "timezone": "Africa/Douala" + }, + { + "GMT": "8", + "cityId": 4709, + "codeIataCity": "MMG", + "codeIso2Country": "AU", + "geonameId": 2065578, + "latitudeCity": -28.083332, + "longitudeCity": 117.85, + "nameCity": "Mount Magnet", + "timezone": "Australia/Perth" + }, + { + "GMT": "-8", + "cityId": 4710, + "codeIataCity": "MMH", + "codeIso2Country": "US", + "geonameId": 5370006, + "latitudeCity": 37.63111, + "longitudeCity": -118.85139, + "nameCity": "Mammoth Lakes", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 4711, + "codeIataCity": "MMI", + "codeIso2Country": "US", + "geonameId": 4603284, + "latitudeCity": 35.52303, + "longitudeCity": -84.6757, + "nameCity": "Athens", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "cityId": 4712, + "codeIataCity": "MMJ", + "codeIso2Country": "JP", + "geonameId": 1857519, + "latitudeCity": 36.233334, + "longitudeCity": 137.96666, + "nameCity": "Matsumoto", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "3", + "cityId": 4713, + "codeIataCity": "MMK", + "codeIso2Country": "RU", + "geonameId": 524305, + "latitudeCity": 68.785095, + "longitudeCity": 32.759155, + "nameCity": "Murmansk", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "cityId": 4714, + "codeIataCity": "MML", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 44.447224, + "longitudeCity": -95.8175, + "nameCity": "Marshall", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 4715, + "codeIataCity": "MMM", + "codeIso2Country": "AU", + "geonameId": 6696812, + "latitudeCity": -22.8025, + "longitudeCity": 148.70473, + "nameCity": "Middlemount", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 4716, + "codeIataCity": "MMN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.433334, + "longitudeCity": -71.5, + "nameCity": "Stow", + "timezone": "America/New_York" + }, + { + "GMT": "-1", + "cityId": 4717, + "codeIataCity": "MMO", + "codeIso2Country": "CV", + "geonameId": 3374221, + "latitudeCity": 15.25, + "longitudeCity": -23.166668, + "nameCity": "Maio", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "-5", + "cityId": 4718, + "codeIataCity": "MMP", + "codeIso2Country": "CO", + "geonameId": 3680402, + "latitudeCity": 9.261667, + "longitudeCity": -74.43611, + "nameCity": "Mompos", + "timezone": "America/Bogota" + }, + { + "GMT": "2", + "cityId": 4719, + "codeIataCity": "MMQ", + "codeIso2Country": "ZM", + "geonameId": 0, + "latitudeCity": -8.857222, + "longitudeCity": 31.336111, + "nameCity": "Mbala", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-6", + "cityId": 4720, + "codeIataCity": "MMS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 34.266666, + "longitudeCity": -90.26667, + "nameCity": "Marks", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 4721, + "codeIataCity": "MMU", + "codeIso2Country": "US", + "geonameId": 5101427, + "latitudeCity": 40.799168, + "longitudeCity": -74.41583, + "nameCity": "Morristown", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "cityId": 4722, + "codeIataCity": "MMV", + "codeIso2Country": "PG", + "geonameId": 5750162, + "latitudeCity": 45.19, + "longitudeCity": -123.14, + "nameCity": "Mal", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "cityId": 4723, + "codeIataCity": "MMW", + "codeIso2Country": "MZ", + "geonameId": 1037225, + "latitudeCity": -16.783333, + "longitudeCity": 39.066666, + "nameCity": "Moma", + "timezone": "Africa/Maputo" + }, + { + "GMT": "9", + "cityId": 4724, + "codeIataCity": "MMY", + "codeIso2Country": "JP", + "geonameId": 0, + "latitudeCity": 24.779198, + "longitudeCity": 125.29778, + "nameCity": "Miyako Jima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "4.30", + "cityId": 4725, + "codeIataCity": "MMZ", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 35.916668, + "longitudeCity": 64.73333, + "nameCity": "Maimana", + "timezone": "Asia/Kabul" + }, + { + "GMT": "8", + "cityId": 4726, + "codeIataCity": "MNA", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 4.05, + "longitudeCity": 126.7, + "nameCity": "Melangguane", + "timezone": "Asia/Makassar" + }, + { + "GMT": "1", + "cityId": 4727, + "codeIataCity": "MNB", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -5.926944, + "longitudeCity": 12.352778, + "nameCity": "Moanda", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "2", + "cityId": 4728, + "codeIataCity": "MNC", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": -14.48, + "longitudeCity": 40.70861, + "nameCity": "Nacala", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-5", + "cityId": 4729, + "codeIataCity": "MND", + "codeIso2Country": "CO", + "geonameId": 3674931, + "latitudeCity": 4.516667, + "longitudeCity": -73.28333, + "nameCity": "Medina", + "timezone": "America/Bogota" + }, + { + "GMT": "9.30", + "cityId": 4730, + "codeIataCity": "MNE", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -28.0, + "longitudeCity": 138.6, + "nameCity": "Mungeranie", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "12", + "cityId": 4731, + "codeIataCity": "MNF", + "codeIso2Country": "FJ", + "geonameId": 2202064, + "latitudeCity": -17.633333, + "longitudeCity": 177.11667, + "nameCity": "Mana Island", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "9.30", + "cityId": 4732, + "codeIataCity": "MNG", + "codeIso2Country": "AU", + "geonameId": 2067089, + "latitudeCity": -12.05492, + "longitudeCity": 134.23227, + "nameCity": "Maningrida", + "timezone": "Australia/Darwin" + }, + { + "GMT": "5.30", + "cityId": 4733, + "codeIataCity": "MNH", + "codeIso2Country": "LK", + "geonameId": 1241622, + "latitudeCity": 7.75, + "longitudeCity": 83.0, + "nameCity": "Minneriya", + "timezone": "Asia/Colombo" + }, + { + "GMT": "-4", + "cityId": 4734, + "codeIataCity": "MNI", + "codeIso2Country": "MS", + "geonameId": 0, + "latitudeCity": 16.75, + "longitudeCity": -62.233334, + "nameCity": "Gerald's Park", + "timezone": "America/Montserrat" + }, + { + "GMT": "3", + "cityId": 4735, + "codeIataCity": "MNJ", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -21.2, + "longitudeCity": 48.36667, + "nameCity": "Mananjary", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "12", + "cityId": 4736, + "codeIataCity": "MNK", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": 1.0, + "longitudeCity": 173.0, + "nameCity": "Maiana", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "8", + "cityId": 4737, + "codeIataCity": "MNL", + "codeIso2Country": "PH", + "geonameId": 1701668, + "latitudeCity": 14.599512, + "longitudeCity": 120.984219, + "nameCity": "Manila", + "timezone": "Asia/Manila" + }, + { + "GMT": "-6", + "cityId": 4738, + "codeIataCity": "MNM", + "codeIso2Country": "US", + "geonameId": 5001669, + "latitudeCity": 45.121666, + "longitudeCity": -87.63611, + "nameCity": "Menominee", + "timezone": "America/Menominee" + }, + { + "GMT": "-5", + "cityId": 4739, + "codeIataCity": "MNN", + "codeIso2Country": "US", + "geonameId": 4509177, + "latitudeCity": 40.583332, + "longitudeCity": -83.13333, + "nameCity": "Marion", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 4740, + "codeIataCity": "MNO", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -7.288056, + "longitudeCity": 27.393888, + "nameCity": "Manono", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "10", + "cityId": 4741, + "codeIataCity": "MNP", + "codeIso2Country": "PG", + "geonameId": 2088122, + "latitudeCity": 14.045278, + "longitudeCity": -83.38361, + "nameCity": "Maron", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 4742, + "codeIataCity": "MNQ", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -24.883333, + "longitudeCity": 151.1, + "nameCity": "Monto", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "cityId": 4743, + "codeIataCity": "MNR", + "codeIso2Country": "ZM", + "geonameId": 0, + "latitudeCity": -15.225556, + "longitudeCity": 23.157778, + "nameCity": "Mongu", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "2", + "cityId": 4744, + "codeIataCity": "MNS", + "codeIso2Country": "ZM", + "geonameId": 907770, + "latitudeCity": -11.125, + "longitudeCity": 28.866667, + "nameCity": "Mansa", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-9", + "cityId": 4745, + "codeIataCity": "MNT", + "codeIso2Country": "US", + "geonameId": 5869009, + "latitudeCity": 64.895, + "longitudeCity": -149.17084, + "nameCity": "Minto", + "timezone": "America/Anchorage" + }, + { + "GMT": "6.30", + "cityId": 4746, + "codeIataCity": "MNU", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 16.441668, + "longitudeCity": 97.66944, + "nameCity": "Maulmyine", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "9.30", + "cityId": 4747, + "codeIataCity": "MNV", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -14.116667, + "longitudeCity": 133.83333, + "nameCity": "Mountain Valley", + "timezone": "Australia/Darwin" + }, + { + "GMT": "9.30", + "cityId": 4748, + "codeIataCity": "MNW", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -22.45, + "longitudeCity": 135.21666, + "nameCity": "Macdonald Downs", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-4", + "cityId": 4749, + "codeIataCity": "MNX", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -5.816667, + "longitudeCity": -61.283333, + "nameCity": "Manicore", + "timezone": "America/Manaus" + }, + { + "GMT": "11", + "cityId": 4750, + "codeIataCity": "MNY", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -7.35, + "longitudeCity": 155.56667, + "nameCity": "Mono", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-5", + "cityId": 4751, + "codeIataCity": "MNZ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.721943, + "longitudeCity": -77.51806, + "nameCity": "Manassas", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 4752, + "codeIataCity": "MOA", + "codeIso2Country": "CU", + "geonameId": 3546791, + "latitudeCity": 20.5, + "longitudeCity": -74.88333, + "nameCity": "Moa", + "timezone": "America/Havana" + }, + { + "GMT": "-6", + "cityId": 4753, + "codeIataCity": "MOB", + "codeIso2Country": "US", + "geonameId": 4076598, + "latitudeCity": 30.694357, + "longitudeCity": -88.043054, + "nameCity": "Mobile", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 4754, + "codeIataCity": "MOC", + "codeIso2Country": "BR", + "geonameId": 3456814, + "latitudeCity": -16.707779, + "longitudeCity": -43.817223, + "nameCity": "Montes Claros", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "cityId": 4755, + "codeIataCity": "MOD", + "codeIso2Country": "US", + "geonameId": 5373900, + "latitudeCity": 37.626945, + "longitudeCity": -120.95528, + "nameCity": "Modesto", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "6.30", + "cityId": 4756, + "codeIataCity": "MOE", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 23.1, + "longitudeCity": 96.65, + "nameCity": "Momeik", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "8", + "cityId": 4757, + "codeIataCity": "MOF", + "codeIso2Country": "ID", + "geonameId": 1635815, + "latitudeCity": -8.633333, + "longitudeCity": 122.25, + "nameCity": "Maumere", + "timezone": "Asia/Makassar" + }, + { + "GMT": "6.30", + "cityId": 4758, + "codeIataCity": "MOG", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 20.533333, + "longitudeCity": 99.26667, + "nameCity": "Mong Hsat", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-10", + "cityId": 4759, + "codeIataCity": "MOI", + "codeIso2Country": "CK", + "geonameId": 0, + "latitudeCity": -19.84166, + "longitudeCity": -157.71121, + "nameCity": "Mitiaro Island", + "timezone": "Pacific/Rarotonga" + }, + { + "GMT": "-3", + "cityId": 4760, + "codeIataCity": "MOJ", + "codeIso2Country": "SR", + "geonameId": 3383494, + "latitudeCity": 5.75, + "longitudeCity": -54.333332, + "nameCity": "Moengo", + "timezone": "America/Paramaribo" + }, + { + "GMT": "1", + "cityId": 4761, + "codeIataCity": "MOL", + "codeIso2Country": "NO", + "geonameId": 3145580, + "latitudeCity": 62.747303, + "longitudeCity": 7.262118, + "nameCity": "Molde", + "timezone": "Europe/Oslo" + }, + { + "GMT": "0", + "cityId": 4762, + "codeIataCity": "MOM", + "codeIso2Country": "MR", + "geonameId": 0, + "latitudeCity": 17.75, + "longitudeCity": -12.5, + "nameCity": "Moudjeria", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "12", + "cityId": 4763, + "codeIataCity": "MON", + "codeIso2Country": "NZ", + "geonameId": 2185646, + "latitudeCity": -41.301439, + "longitudeCity": 174.773934, + "nameCity": "Mount Cook", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "9.30", + "cityId": 4764, + "codeIataCity": "MOO", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -27.5, + "longitudeCity": 149.83333, + "nameCity": "Moomba", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-5", + "cityId": 4765, + "codeIataCity": "MOP", + "codeIso2Country": "US", + "geonameId": 5002714, + "latitudeCity": 43.61667, + "longitudeCity": -84.73333, + "nameCity": "Mount Pleasant", + "timezone": "America/Detroit" + }, + { + "GMT": "3", + "cityId": 4766, + "codeIataCity": "MOQ", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -20.283611, + "longitudeCity": 44.318333, + "nameCity": "Morondava", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-5", + "cityId": 4767, + "codeIataCity": "MOR", + "codeIso2Country": "US", + "geonameId": 4642938, + "latitudeCity": 36.216667, + "longitudeCity": -83.3, + "nameCity": "Morristown", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 4768, + "codeIataCity": "MOS", + "codeIso2Country": "US", + "geonameId": 5869322, + "latitudeCity": 64.69556, + "longitudeCity": -162.04333, + "nameCity": "Moses Point", + "timezone": "America/Nome" + }, + { + "GMT": "-6", + "cityId": 4769, + "codeIataCity": "MOT", + "codeIso2Country": "US", + "geonameId": 5690532, + "latitudeCity": 48.232509, + "longitudeCity": -101.296273, + "nameCity": "Minot", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 4770, + "codeIataCity": "MOU", + "codeIso2Country": "US", + "geonameId": 5869366, + "latitudeCity": 62.089443, + "longitudeCity": -163.71666, + "nameCity": "Mountain Village", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 4771, + "codeIataCity": "MOV", + "codeIso2Country": "AU", + "geonameId": 6533368, + "latitudeCity": -22.06057, + "longitudeCity": 148.07442, + "nameCity": "Moranbah", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "cityId": 4772, + "codeIataCity": "MOW", + "codeIso2Country": "RU", + "geonameId": 524901, + "latitudeCity": 55.755786, + "longitudeCity": 37.617633, + "nameCity": "Moscow", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "cityId": 4773, + "codeIataCity": "MOX", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 45.583332, + "longitudeCity": -95.916664, + "nameCity": "Morris", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 4774, + "codeIataCity": "MOY", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 4.884167, + "longitudeCity": -72.89528, + "nameCity": "Monterrey", + "timezone": "America/Bogota" + }, + { + "GMT": "-10", + "cityId": 4775, + "codeIataCity": "MOZ", + "codeIso2Country": "PF", + "geonameId": 6690181, + "latitudeCity": -17.490433, + "longitudeCity": -149.76414, + "nameCity": "Moorea", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "2", + "cityId": 4776, + "codeIataCity": "MPA", + "codeIso2Country": "NA", + "geonameId": 0, + "latitudeCity": -17.5, + "longitudeCity": 24.266666, + "nameCity": "Mpacha", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "7", + "cityId": 4777, + "codeIataCity": "MPC", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -2.55, + "longitudeCity": 101.1, + "nameCity": "Muko-Muko", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "5", + "cityId": 4778, + "codeIataCity": "MPD", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 25.65, + "longitudeCity": 69.03333, + "nameCity": "Mirpur Khas", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-5", + "cityId": 4779, + "codeIataCity": "MPE", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.283333, + "longitudeCity": -72.6, + "nameCity": "Madison", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 4780, + "codeIataCity": "MPF", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.966667, + "longitudeCity": 143.16667, + "nameCity": "Mapoda", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 4781, + "codeIataCity": "MPG", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.533333, + "longitudeCity": 147.71666, + "nameCity": "Makini", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 4782, + "codeIataCity": "MPH", + "codeIso2Country": "PH", + "geonameId": 1717886, + "latitudeCity": 11.925263, + "longitudeCity": 121.9521, + "nameCity": "Caticlan", + "timezone": "Asia/Manila" + }, + { + "GMT": "-5", + "cityId": 4783, + "codeIataCity": "MPI", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 9.578333, + "longitudeCity": -79.843056, + "nameCity": "Mamitupo", + "timezone": "America/Panama" + }, + { + "GMT": "-6", + "cityId": 4784, + "codeIataCity": "MPJ", + "codeIso2Country": "US", + "geonameId": 4119403, + "latitudeCity": 35.15, + "longitudeCity": -92.73333, + "nameCity": "Morrilton", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "cityId": 4785, + "codeIataCity": "MPK", + "codeIso2Country": "KR", + "geonameId": 0, + "latitudeCity": 34.756668, + "longitudeCity": 126.385, + "nameCity": "Mokpo", + "timezone": "Asia/Seoul" + }, + { + "GMT": "1", + "cityId": 4786, + "codeIataCity": "MPL", + "codeIso2Country": "FR", + "geonameId": 2992166, + "latitudeCity": 43.610769, + "longitudeCity": 3.876716, + "nameCity": "Montpellier", + "timezone": "Europe/Paris" + }, + { + "GMT": "2", + "cityId": 4787, + "codeIataCity": "MPM", + "codeIso2Country": "MZ", + "geonameId": 1040652, + "latitudeCity": -25.924389, + "longitudeCity": 32.57429, + "nameCity": "Maputo", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-3", + "cityId": 4788, + "codeIataCity": "MPN", + "codeIso2Country": "FK", + "geonameId": 0, + "latitudeCity": -51.816666, + "longitudeCity": -58.45, + "nameCity": "Mount Pleasant", + "timezone": "Atlantic/Stanley" + }, + { + "GMT": "-5", + "cityId": 4789, + "codeIataCity": "MPO", + "codeIso2Country": "US", + "geonameId": 5202340, + "latitudeCity": 41.13333, + "longitudeCity": -75.36667, + "nameCity": "Mount Pocono", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 4790, + "codeIataCity": "MPP", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 9.0, + "longitudeCity": -77.86667, + "nameCity": "Mulatupo", + "timezone": "America/Panama" + }, + { + "GMT": "2", + "cityId": 4791, + "codeIataCity": "MPQ", + "codeIso2Country": "JO", + "geonameId": 248382, + "latitudeCity": 30.166668, + "longitudeCity": 35.766666, + "nameCity": "Maan", + "timezone": "Asia/Amman" + }, + { + "GMT": "-6", + "cityId": 4792, + "codeIataCity": "MPR", + "codeIso2Country": "US", + "geonameId": 4275261, + "latitudeCity": 38.37436, + "longitudeCity": -97.763306, + "nameCity": "Mcpherson", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 4793, + "codeIataCity": "MPS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 33.166668, + "longitudeCity": -94.98333, + "nameCity": "Mount Pleasant", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "cityId": 4794, + "codeIataCity": "MPT", + "codeIso2Country": "TL", + "geonameId": 1636670, + "latitudeCity": -8.066667, + "longitudeCity": 125.25, + "nameCity": "Maliana", + "timezone": "Asia/Dili" + }, + { + "GMT": "10", + "cityId": 4795, + "codeIataCity": "MPU", + "codeIso2Country": "PG", + "geonameId": 2091468, + "latitudeCity": -2.9, + "longitudeCity": 151.4, + "nameCity": "Mapua", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 4796, + "codeIataCity": "MPV", + "codeIso2Country": "US", + "geonameId": 5233500, + "latitudeCity": 44.203335, + "longitudeCity": -72.566666, + "nameCity": "Montpelier", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 4797, + "codeIataCity": "MPW", + "codeIso2Country": "UA", + "geonameId": 701822, + "latitudeCity": 47.1, + "longitudeCity": 37.55, + "nameCity": "Mariupol", + "timezone": "Europe/Kiev" + }, + { + "GMT": "10", + "cityId": 4798, + "codeIataCity": "MPX", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -4.9, + "longitudeCity": 141.61667, + "nameCity": "Miyanmin", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "cityId": 4799, + "codeIataCity": "MPY", + "codeIso2Country": "GF", + "geonameId": 3380994, + "latitudeCity": 3.666667, + "longitudeCity": -54.033333, + "nameCity": "Maripasoula", + "timezone": "America/Cayenne" + }, + { + "GMT": "-6", + "cityId": 4800, + "codeIataCity": "MPZ", + "codeIso2Country": "US", + "geonameId": 4868205, + "latitudeCity": 40.966667, + "longitudeCity": -91.55, + "nameCity": "Mount Pleasant", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 4801, + "codeIataCity": "MQA", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -19.75, + "longitudeCity": 120.833336, + "nameCity": "Mandora", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "cityId": 4802, + "codeIataCity": "MQB", + "codeIso2Country": "US", + "geonameId": 4900817, + "latitudeCity": 40.4525, + "longitudeCity": -90.62139, + "nameCity": "Macomb", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 4803, + "codeIataCity": "MQC", + "codeIso2Country": "PM", + "geonameId": 3424934, + "latitudeCity": 47.05, + "longitudeCity": -56.333332, + "nameCity": "Miquelon", + "timezone": "America/Miquelon" + }, + { + "GMT": "-3", + "cityId": 4804, + "codeIataCity": "MQD", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -41.25, + "longitudeCity": -68.73333, + "nameCity": "Maquinchao", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "9.30", + "cityId": 4805, + "codeIataCity": "MQE", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -22.816668, + "longitudeCity": 137.35, + "nameCity": "Marqua", + "timezone": "Australia/Darwin" + }, + { + "GMT": "5", + "cityId": 4806, + "codeIataCity": "MQF", + "codeIso2Country": "RU", + "geonameId": 532288, + "latitudeCity": 53.45, + "longitudeCity": 59.066666, + "nameCity": "Magnitogorsk", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "2", + "cityId": 4807, + "codeIataCity": "MQG", + "codeIso2Country": "NA", + "geonameId": 0, + "latitudeCity": -22.083332, + "longitudeCity": 17.366667, + "nameCity": "Midgard", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-3", + "cityId": 4808, + "codeIataCity": "MQH", + "codeIso2Country": "BR", + "geonameId": 3472441, + "latitudeCity": -13.533333, + "longitudeCity": -48.233334, + "nameCity": "Minacu", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "cityId": 4809, + "codeIataCity": "MQI", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.25, + "longitudeCity": -71.0, + "nameCity": "Quincy", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "cityId": 4810, + "codeIataCity": "MQK", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -16.334444, + "longitudeCity": -58.385555, + "nameCity": "San Matias", + "timezone": "America/La_Paz" + }, + { + "GMT": "10", + "cityId": 4811, + "codeIataCity": "MQL", + "codeIso2Country": "AU", + "geonameId": 2157698, + "latitudeCity": -34.230835, + "longitudeCity": 142.08455, + "nameCity": "Mildura", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "3", + "cityId": 4812, + "codeIataCity": "MQM", + "codeIso2Country": "TR", + "geonameId": 304797, + "latitudeCity": 37.2233, + "longitudeCity": 40.6317, + "nameCity": "Mardin", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "1", + "cityId": 4813, + "codeIataCity": "MQN", + "codeIso2Country": "NO", + "geonameId": 3145614, + "latitudeCity": 66.36465, + "longitudeCity": 14.302748, + "nameCity": "Mo I Rana", + "timezone": "Europe/Oslo" + }, + { + "GMT": "10", + "cityId": 4814, + "codeIataCity": "MQO", + "codeIso2Country": "PG", + "geonameId": 2091753, + "latitudeCity": -8.703889, + "longitudeCity": 142.65111, + "nameCity": "Malam", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 4815, + "codeIataCity": "MQQ", + "codeIso2Country": "TD", + "geonameId": 0, + "latitudeCity": 8.625, + "longitudeCity": 16.073334, + "nameCity": "Moundou", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "-5", + "cityId": 4816, + "codeIataCity": "MQR", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 2.5, + "longitudeCity": -78.416664, + "nameCity": "Mosquera", + "timezone": "America/Bogota" + }, + { + "GMT": "-4", + "cityId": 4817, + "codeIataCity": "MQS", + "codeIso2Country": "VC", + "geonameId": 3577903, + "latitudeCity": 12.888333, + "longitudeCity": -61.181946, + "nameCity": "Mustique Island", + "timezone": "America/St_Vincent" + }, + { + "GMT": "-5", + "cityId": 4818, + "codeIataCity": "MQT", + "codeIso2Country": "US", + "geonameId": 5000947, + "latitudeCity": 46.35361, + "longitudeCity": -87.39528, + "nameCity": "Marquette", + "timezone": "America/Detroit" + }, + { + "GMT": "-5", + "cityId": 4819, + "codeIataCity": "MQU", + "codeIso2Country": "CO", + "geonameId": 3680656, + "latitudeCity": 5.216667, + "longitudeCity": -74.88333, + "nameCity": "Mariquita", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 4820, + "codeIataCity": "MQV", + "codeIso2Country": "DZ", + "geonameId": 2487134, + "latitudeCity": 35.9, + "longitudeCity": 0.083333, + "nameCity": "Mostaganem", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-5", + "cityId": 4821, + "codeIataCity": "MQW", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 32.20778, + "longitudeCity": -83.000275, + "nameCity": "Mc Rae", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 4822, + "codeIataCity": "MQX", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 13.468333, + "longitudeCity": 39.52639, + "nameCity": "Makale", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-6", + "cityId": 4823, + "codeIataCity": "MQY", + "codeIso2Country": "US", + "geonameId": 4644585, + "latitudeCity": 35.983334, + "longitudeCity": -86.5, + "nameCity": "Smyrna", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 4824, + "codeIataCity": "MQZ", + "codeIso2Country": "AU", + "geonameId": 2066981, + "latitudeCity": -33.933334, + "longitudeCity": 115.1, + "nameCity": "Margaret River", + "timezone": "Australia/Perth" + }, + { + "GMT": "2", + "cityId": 4825, + "codeIataCity": "MRA", + "codeIso2Country": "LY", + "geonameId": 0, + "latitudeCity": 32.4, + "longitudeCity": 15.066667, + "nameCity": "Misurata", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "-5", + "cityId": 4826, + "codeIataCity": "MRB", + "codeIso2Country": "US", + "geonameId": 4140963, + "latitudeCity": 39.40167, + "longitudeCity": -77.985, + "nameCity": "Martinsburg", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 4827, + "codeIataCity": "MRC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 35.61667, + "longitudeCity": -87.03333, + "nameCity": "Columbia", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 4828, + "codeIataCity": "MRD", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 8.583333, + "longitudeCity": -71.157776, + "nameCity": "Merida", + "timezone": "America/Caracas" + }, + { + "GMT": "3", + "cityId": 4829, + "codeIataCity": "MRE", + "codeIso2Country": "KE", + "geonameId": 0, + "latitudeCity": -1.300368, + "longitudeCity": 35.05885, + "nameCity": "Mara Lodges", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-6", + "cityId": 4830, + "codeIataCity": "MRF", + "codeIso2Country": "US", + "geonameId": 5516203, + "latitudeCity": 30.3, + "longitudeCity": -104.01667, + "nameCity": "Marfa", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 4831, + "codeIataCity": "MRG", + "codeIso2Country": "AU", + "geonameId": 2142206, + "latitudeCity": -17.0, + "longitudeCity": 145.46666, + "nameCity": "Mareeba", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 4832, + "codeIataCity": "MRH", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.466667, + "longitudeCity": 145.33333, + "nameCity": "May River", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 4833, + "codeIataCity": "MRJ", + "codeIso2Country": "HN", + "geonameId": 3605005, + "latitudeCity": 14.163611, + "longitudeCity": -88.03333, + "nameCity": "Marcala", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-5", + "cityId": 4834, + "codeIataCity": "MRK", + "codeIso2Country": "US", + "geonameId": 4165565, + "latitudeCity": 25.944445, + "longitudeCity": -81.72389, + "nameCity": "Marco Island", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 4835, + "codeIataCity": "MRL", + "codeIso2Country": "AU", + "geonameId": 2171722, + "latitudeCity": -20.066668, + "longitudeCity": 145.58333, + "nameCity": "Miners Lake", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 4836, + "codeIataCity": "MRM", + "codeIso2Country": "PG", + "geonameId": 2088122, + "latitudeCity": -9.166667, + "longitudeCity": 147.6, + "nameCity": "Manare", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 4837, + "codeIataCity": "MRN", + "codeIso2Country": "US", + "geonameId": 4453066, + "latitudeCity": 35.75, + "longitudeCity": -81.683334, + "nameCity": "Morganton", + "timezone": "America/New_York" + }, + { + "GMT": "12", + "cityId": 4838, + "codeIataCity": "MRO", + "codeIso2Country": "NZ", + "geonameId": 2206890, + "latitudeCity": -40.975, + "longitudeCity": 175.63333, + "nameCity": "Masterton", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "9.30", + "cityId": 4839, + "codeIataCity": "MRP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -27.0, + "longitudeCity": 135.0, + "nameCity": "Marla", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "8", + "cityId": 4840, + "codeIataCity": "MRQ", + "codeIso2Country": "PH", + "geonameId": 1692688, + "latitudeCity": 13.363056, + "longitudeCity": 121.82361, + "nameCity": "Marinduque", + "timezone": "Asia/Manila" + }, + { + "GMT": "-5", + "cityId": 4841, + "codeIataCity": "MRR", + "codeIso2Country": "EC", + "geonameId": 3654667, + "latitudeCity": -4.383333, + "longitudeCity": -79.933334, + "nameCity": "Macara", + "timezone": "America/Guayaquil" + }, + { + "GMT": "1", + "cityId": 4842, + "codeIataCity": "MRS", + "codeIso2Country": "FR", + "geonameId": 2995469, + "latitudeCity": 43.296482, + "longitudeCity": 5.36978, + "nameCity": "Marseille", + "timezone": "Europe/Paris" + }, + { + "GMT": "9.30", + "cityId": 4843, + "codeIataCity": "MRT", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -14.483333, + "longitudeCity": 133.41667, + "nameCity": "Moroak", + "timezone": "Australia/Darwin" + }, + { + "GMT": "4", + "cityId": 4844, + "codeIataCity": "MRU", + "codeIso2Country": "MU", + "geonameId": 8394334, + "latitudeCity": -20.431997, + "longitudeCity": 57.67663, + "nameCity": "Plaisance", + "timezone": "Indian/Mauritius" + }, + { + "GMT": "3", + "cityId": 4845, + "codeIataCity": "MRV", + "codeIso2Country": "RU", + "geonameId": 466990, + "latitudeCity": 44.218105, + "longitudeCity": 43.085815, + "nameCity": "Mineralnye Vody", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "cityId": 4846, + "codeIataCity": "MRW", + "codeIso2Country": "DK", + "geonameId": 2617072, + "latitudeCity": 54.685833, + "longitudeCity": 11.435, + "nameCity": "Maribo", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "3.30", + "cityId": 4847, + "codeIataCity": "MRX", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 30.535557, + "longitudeCity": 49.16722, + "nameCity": "Bandar Mahshahr", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-8", + "cityId": 4848, + "codeIataCity": "MRY", + "codeIso2Country": "US", + "geonameId": 5374361, + "latitudeCity": 36.600238, + "longitudeCity": -121.894676, + "nameCity": "Monterey", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 4849, + "codeIataCity": "MRZ", + "codeIso2Country": "AU", + "geonameId": 2156927, + "latitudeCity": -29.496346, + "longitudeCity": 149.85019, + "nameCity": "Moree", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "cityId": 4850, + "codeIataCity": "MSA", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 53.816666, + "longitudeCity": -91.98333, + "nameCity": "Muskrat Dam", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-7", + "cityId": 4851, + "codeIataCity": "MSC", + "codeIso2Country": "US", + "geonameId": 5304391, + "latitudeCity": 33.422269, + "longitudeCity": -111.82264, + "nameCity": "Mesa", + "timezone": "America/Phoenix" + }, + { + "GMT": "-7", + "cityId": 4852, + "codeIataCity": "MSD", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.524723, + "longitudeCity": -111.47444, + "nameCity": "Mount Pleasant", + "timezone": "America/Denver" + }, + { + "GMT": "0", + "cityId": 4853, + "codeIataCity": "MSE", + "codeIso2Country": "GB", + "geonameId": 2643094, + "latitudeCity": 51.35, + "longitudeCity": 1.35, + "nameCity": "Manston", + "timezone": "Europe/London" + }, + { + "GMT": "9.30", + "cityId": 4854, + "codeIataCity": "MSF", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -22.516666, + "longitudeCity": 135.0, + "nameCity": "Mount Swan", + "timezone": "Australia/Darwin" + }, + { + "GMT": "2", + "cityId": 4855, + "codeIataCity": "MSG", + "codeIso2Country": "LS", + "geonameId": 932472, + "latitudeCity": -29.733334, + "longitudeCity": 28.75, + "nameCity": "Matsaile", + "timezone": "Africa/Maseru" + }, + { + "GMT": "4", + "cityId": 4856, + "codeIataCity": "MSH", + "codeIso2Country": "OM", + "geonameId": 0, + "latitudeCity": 20.680555, + "longitudeCity": 58.891666, + "nameCity": "Masirah", + "timezone": "Asia/Muscat" + }, + { + "GMT": "7", + "cityId": 4857, + "codeIataCity": "MSI", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -5.583333, + "longitudeCity": 114.433334, + "nameCity": "Masalembo", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "9", + "cityId": 4858, + "codeIataCity": "MSJ", + "codeIso2Country": "JP", + "geonameId": 2129211, + "latitudeCity": 40.696316, + "longitudeCity": 141.3869, + "nameCity": "Misawa", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "cityId": 4859, + "codeIataCity": "MSK", + "codeIso2Country": "BS", + "geonameId": 3571904, + "latitudeCity": 25.033333, + "longitudeCity": -78.0, + "nameCity": "Mastic Point", + "timezone": "America/Nassau" + }, + { + "GMT": "-6", + "cityId": 4860, + "codeIataCity": "MSL", + "codeIso2Country": "US", + "geonameId": 4078964, + "latitudeCity": 34.74861, + "longitudeCity": -87.61611, + "nameCity": "Sheffield", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 4861, + "codeIataCity": "MSM", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -4.766667, + "longitudeCity": 17.916668, + "nameCity": "Masi Manimba", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "-6", + "cityId": 4862, + "codeIataCity": "MSN", + "codeIso2Country": "US", + "geonameId": 5261457, + "latitudeCity": 43.136375, + "longitudeCity": -89.3465, + "nameCity": "Madison", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 4863, + "codeIataCity": "MSO", + "codeIso2Country": "US", + "geonameId": 5666639, + "latitudeCity": 46.918964, + "longitudeCity": -114.08321, + "nameCity": "Missoula", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 4864, + "codeIataCity": "MSP", + "codeIso2Country": "US", + "geonameId": 5037649, + "latitudeCity": 44.979965, + "longitudeCity": -93.263836, + "nameCity": "Minneapolis", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 4865, + "codeIataCity": "MSQ", + "codeIso2Country": "BY", + "geonameId": 625144, + "latitudeCity": 53.9, + "longitudeCity": 27.566667, + "nameCity": "Minsk", + "timezone": "Europe/Minsk" + }, + { + "GMT": "3", + "cityId": 4866, + "codeIataCity": "MSR", + "codeIso2Country": "TR", + "geonameId": 299582, + "latitudeCity": 38.725, + "longitudeCity": 41.625, + "nameCity": "Mus", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-5", + "cityId": 4867, + "codeIataCity": "MSS", + "codeIso2Country": "US", + "geonameId": 5126194, + "latitudeCity": 44.93778, + "longitudeCity": -74.846664, + "nameCity": "Massena", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 4868, + "codeIataCity": "MST", + "codeIso2Country": "NL", + "geonameId": 2751283, + "latitudeCity": 50.851368, + "longitudeCity": 5.690972, + "nameCity": "Maastricht", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "2", + "cityId": 4869, + "codeIataCity": "MSU", + "codeIso2Country": "LS", + "geonameId": 932505, + "latitudeCity": -29.30139, + "longitudeCity": 27.505556, + "nameCity": "Maseru", + "timezone": "Africa/Maseru" + }, + { + "GMT": "-5", + "cityId": 4870, + "codeIataCity": "MSV", + "codeIso2Country": "US", + "geonameId": 5123477, + "latitudeCity": 41.70139, + "longitudeCity": -74.795, + "nameCity": "Monticello", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 4871, + "codeIataCity": "MSW", + "codeIso2Country": "ER", + "geonameId": 330546, + "latitudeCity": 15.603333, + "longitudeCity": 39.441113, + "nameCity": "Massawa", + "timezone": "Africa/Asmara" + }, + { + "GMT": "1", + "cityId": 4872, + "codeIataCity": "MSX", + "codeIso2Country": "CG", + "geonameId": 2256895, + "latitudeCity": -2.95, + "longitudeCity": 12.733333, + "nameCity": "Mossendjo", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-6", + "cityId": 4873, + "codeIataCity": "MSY", + "codeIso2Country": "US", + "geonameId": 4335045, + "latitudeCity": 29.964722, + "longitudeCity": -90.070556, + "nameCity": "New Orleans", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 4874, + "codeIataCity": "MSZ", + "codeIso2Country": "AO", + "geonameId": 3347019, + "latitudeCity": -15.208611, + "longitudeCity": 12.160833, + "nameCity": "Namibe", + "timezone": "Africa/Luanda" + }, + { + "GMT": "12", + "cityId": 4875, + "codeIataCity": "MTA", + "codeIso2Country": "NZ", + "geonameId": 6235764, + "latitudeCity": -37.816666, + "longitudeCity": 175.76666, + "nameCity": "Matamata", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-5", + "cityId": 4876, + "codeIataCity": "MTB", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 8.066667, + "longitudeCity": -75.46667, + "nameCity": "Monte Libano", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 4877, + "codeIataCity": "MTC", + "codeIso2Country": "US", + "geonameId": 5000500, + "latitudeCity": 42.583332, + "longitudeCity": -82.88333, + "nameCity": "Mt Clemens", + "timezone": "America/Detroit" + }, + { + "GMT": "9.30", + "cityId": 4878, + "codeIataCity": "MTD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.0, + "longitudeCity": 130.56667, + "nameCity": "Mount Sandford", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-3", + "cityId": 4879, + "codeIataCity": "MTE", + "codeIso2Country": "BR", + "geonameId": 3389353, + "latitudeCity": -1.983333, + "longitudeCity": -54.066666, + "nameCity": "Monte Alegre", + "timezone": "America/Santarem" + }, + { + "GMT": "3", + "cityId": 4880, + "codeIataCity": "MTF", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 6.966667, + "longitudeCity": 35.533333, + "nameCity": "Mizan Teferi", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-4", + "cityId": 4881, + "codeIataCity": "MTG", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -14.0, + "longitudeCity": -55.0, + "nameCity": "Mato Grosso", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-5", + "cityId": 4882, + "codeIataCity": "MTH", + "codeIso2Country": "US", + "geonameId": 4163379, + "latitudeCity": 24.719444, + "longitudeCity": -81.05139, + "nameCity": "Marathon", + "timezone": "America/New_York" + }, + { + "GMT": "-1", + "cityId": 4883, + "codeIataCity": "MTI", + "codeIso2Country": "CV", + "geonameId": 3374221, + "latitudeCity": 15.0, + "longitudeCity": -24.433332, + "nameCity": "Mosteiros", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "-7", + "cityId": 4884, + "codeIataCity": "MTJ", + "codeIso2Country": "US", + "geonameId": 5431710, + "latitudeCity": 38.51029, + "longitudeCity": -107.89696, + "nameCity": "Montrose", + "timezone": "America/Denver" + }, + { + "GMT": "12", + "cityId": 4885, + "codeIataCity": "MTK", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": 3.0, + "longitudeCity": 174.0, + "nameCity": "Makin Island", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "10", + "cityId": 4886, + "codeIataCity": "MTL", + "codeIso2Country": "AU", + "geonameId": 2152799, + "latitudeCity": -32.733334, + "longitudeCity": 151.55, + "nameCity": "Maitland", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-9", + "cityId": 4887, + "codeIataCity": "MTM", + "codeIso2Country": "US", + "geonameId": 5555695, + "latitudeCity": 55.13333, + "longitudeCity": -131.58333, + "nameCity": "Metlakatla", + "timezone": "America/Metlakatla" + }, + { + "GMT": "-6", + "cityId": 4888, + "codeIataCity": "MTO", + "codeIso2Country": "US", + "geonameId": 4244099, + "latitudeCity": 39.47861, + "longitudeCity": -88.278336, + "nameCity": "Mattoon", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 4889, + "codeIataCity": "MTP", + "codeIso2Country": "US", + "geonameId": 5127321, + "latitudeCity": 41.074444, + "longitudeCity": -71.923615, + "nameCity": "Montauk", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 4890, + "codeIataCity": "MTQ", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -26.583332, + "longitudeCity": 147.96666, + "nameCity": "Mitchell", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 4891, + "codeIataCity": "MTR", + "codeIso2Country": "CO", + "geonameId": 3685712, + "latitudeCity": 8.825035, + "longitudeCity": -75.82392, + "nameCity": "Monteria", + "timezone": "America/Bogota" + }, + { + "GMT": "2", + "cityId": 4892, + "codeIataCity": "MTS", + "codeIso2Country": "SZ", + "geonameId": 934995, + "latitudeCity": -26.52033, + "longitudeCity": 31.314133, + "nameCity": "Manzini", + "timezone": "Africa/Mbabane" + }, + { + "GMT": "-6", + "cityId": 4893, + "codeIataCity": "MTT", + "codeIso2Country": "MX", + "geonameId": 3523183, + "latitudeCity": 17.983334, + "longitudeCity": -94.51667, + "nameCity": "Minatitlan", + "timezone": "America/Mexico_City" + }, + { + "GMT": "2", + "cityId": 4894, + "codeIataCity": "MTU", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": -13.133333, + "longitudeCity": 38.983334, + "nameCity": "Montepuez", + "timezone": "Africa/Maputo" + }, + { + "GMT": "11", + "cityId": 4895, + "codeIataCity": "MTV", + "codeIso2Country": "VU", + "geonameId": 0, + "latitudeCity": -13.666667, + "longitudeCity": 167.66667, + "nameCity": "Mota Lava", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-6", + "cityId": 4896, + "codeIataCity": "MTW", + "codeIso2Country": "US", + "geonameId": 5276609, + "latitudeCity": 44.129723, + "longitudeCity": -87.68222, + "nameCity": "Manitowoc", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 4897, + "codeIataCity": "MTY", + "codeIso2Country": "MX", + "geonameId": 3995465, + "latitudeCity": 25.673211, + "longitudeCity": -100.309201, + "nameCity": "Monterrey", + "timezone": "America/Monterrey" + }, + { + "GMT": "2", + "cityId": 4898, + "codeIataCity": "MTZ", + "codeIso2Country": "IL", + "geonameId": 294041, + "latitudeCity": 33.233334, + "longitudeCity": 35.75, + "nameCity": "Masada", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "11", + "cityId": 4899, + "codeIataCity": "MUA", + "codeIso2Country": "SB", + "geonameId": 2105575, + "latitudeCity": -8.32794, + "longitudeCity": 157.26971, + "nameCity": "Munda", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "2", + "cityId": 4900, + "codeIataCity": "MUB", + "codeIso2Country": "BW", + "geonameId": 933366, + "latitudeCity": -19.970833, + "longitudeCity": 23.430555, + "nameCity": "Maun", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "1", + "cityId": 4901, + "codeIataCity": "MUC", + "codeIso2Country": "DE", + "geonameId": 2867714, + "latitudeCity": 48.139127, + "longitudeCity": 11.580186, + "nameCity": "Munich", + "timezone": "Europe/Berlin" + }, + { + "GMT": "2", + "cityId": 4902, + "codeIataCity": "MUD", + "codeIso2Country": "MZ", + "geonameId": 1036263, + "latitudeCity": -11.666667, + "longitudeCity": 39.516666, + "nameCity": "Mueda", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-10", + "cityId": 4903, + "codeIataCity": "MUE", + "codeIso2Country": "US", + "geonameId": 5847504, + "latitudeCity": 20.0125, + "longitudeCity": -155.67334, + "nameCity": "Kamuela", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "9", + "cityId": 4904, + "codeIataCity": "MUF", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -7.5, + "longitudeCity": 140.33333, + "nameCity": "Muting", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-7", + "cityId": 4905, + "codeIataCity": "MUG", + "codeIso2Country": "MX", + "geonameId": 4021889, + "latitudeCity": 26.916668, + "longitudeCity": -111.98333, + "nameCity": "Mulege", + "timezone": "America/Hermosillo" + }, + { + "GMT": "2", + "cityId": 4906, + "codeIataCity": "MUH", + "codeIso2Country": "EG", + "geonameId": 352733, + "latitudeCity": 31.35, + "longitudeCity": 27.25, + "nameCity": "Mersa Matruh", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-5", + "cityId": 4907, + "codeIataCity": "MUI", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 40.447582, + "longitudeCity": -76.59661, + "nameCity": "Fort Indiantown", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 4908, + "codeIataCity": "MUJ", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 6.333333, + "longitudeCity": 35.0, + "nameCity": "Mui", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-10", + "cityId": 4909, + "codeIataCity": "MUK", + "codeIso2Country": "CK", + "geonameId": 0, + "latitudeCity": -19.333332, + "longitudeCity": -158.5, + "nameCity": "Mauke Island", + "timezone": "Pacific/Rarotonga" + }, + { + "GMT": "-4", + "cityId": 4910, + "codeIataCity": "MUN", + "codeIso2Country": "VE", + "geonameId": 3789620, + "latitudeCity": 9.749384, + "longitudeCity": -63.156933, + "nameCity": "Maturin", + "timezone": "America/Caracas" + }, + { + "GMT": "-7", + "cityId": 4911, + "codeIataCity": "MUO", + "codeIso2Country": "US", + "geonameId": 5586437, + "latitudeCity": 43.13333, + "longitudeCity": -115.683334, + "nameCity": "Mountain Home", + "timezone": "America/Boise" + }, + { + "GMT": "9.30", + "cityId": 4912, + "codeIataCity": "MUP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -31.133333, + "longitudeCity": 141.05, + "nameCity": "Mulga Park", + "timezone": "Australia/Darwin" + }, + { + "GMT": "8", + "cityId": 4913, + "codeIataCity": "MUQ", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -20.666668, + "longitudeCity": 120.0, + "nameCity": "Muccan", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "cityId": 4914, + "codeIataCity": "MUR", + "codeIso2Country": "MY", + "geonameId": 1737919, + "latitudeCity": 4.183333, + "longitudeCity": 114.316666, + "nameCity": "Marudi", + "timezone": "Asia/Kuching" + }, + { + "GMT": "9", + "cityId": 4915, + "codeIataCity": "MUS", + "codeIso2Country": "JP", + "geonameId": 0, + "latitudeCity": 24.29, + "longitudeCity": 153.98, + "nameCity": "Marcus Island", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-6", + "cityId": 4916, + "codeIataCity": "MUT", + "codeIso2Country": "US", + "geonameId": 4850751, + "latitudeCity": 41.36667, + "longitudeCity": -91.145, + "nameCity": "Muscatine", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 4917, + "codeIataCity": "MUU", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 40.38333, + "longitudeCity": -77.88333, + "nameCity": "Mount Union", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 4918, + "codeIataCity": "MUW", + "codeIso2Country": "DZ", + "geonameId": 0, + "latitudeCity": 35.333332, + "longitudeCity": 0.15, + "nameCity": "Mascara-Ghriss", + "timezone": "Africa/Algiers" + }, + { + "GMT": "5", + "cityId": 4919, + "codeIataCity": "MUX", + "codeIso2Country": "PK", + "geonameId": 1169825, + "latitudeCity": 30.199507, + "longitudeCity": 71.41498, + "nameCity": "Multan", + "timezone": "Asia/Karachi" + }, + { + "GMT": "1", + "cityId": 4920, + "codeIataCity": "MUY", + "codeIso2Country": "CG", + "geonameId": 0, + "latitudeCity": -3.983333, + "longitudeCity": 13.919444, + "nameCity": "Mouyondzi", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "3", + "cityId": 4921, + "codeIataCity": "MUZ", + "codeIso2Country": "TZ", + "geonameId": 152451, + "latitudeCity": -1.497222, + "longitudeCity": 33.8, + "nameCity": "Musoma", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "0", + "cityId": 4922, + "codeIataCity": "MVA", + "codeIso2Country": "IS", + "geonameId": 2627574, + "latitudeCity": 65.61667, + "longitudeCity": -16.966667, + "nameCity": "Myvatn", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "1", + "cityId": 4923, + "codeIataCity": "MVB", + "codeIso2Country": "GA", + "geonameId": 2400555, + "latitudeCity": -1.65, + "longitudeCity": 13.433333, + "nameCity": "Franceville", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-6", + "cityId": 4924, + "codeIataCity": "MVC", + "codeIso2Country": "US", + "geonameId": 4076725, + "latitudeCity": 31.516666, + "longitudeCity": -87.333336, + "nameCity": "Monroeville", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 4925, + "codeIataCity": "MVD", + "codeIso2Country": "UY", + "geonameId": 3441575, + "latitudeCity": -34.883611, + "longitudeCity": -56.181944, + "nameCity": "Montevideo", + "timezone": "America/Montevideo" + }, + { + "GMT": "-6", + "cityId": 4926, + "codeIataCity": "MVE", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 44.95, + "longitudeCity": -95.71667, + "nameCity": "Montevideo", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 4927, + "codeIataCity": "MVF", + "codeIso2Country": "BR", + "geonameId": 3387814, + "latitudeCity": -5.166667, + "longitudeCity": -37.25, + "nameCity": "Mossoro", + "timezone": "America/Fortaleza" + }, + { + "GMT": "1", + "cityId": 4928, + "codeIataCity": "MVG", + "codeIso2Country": "GA", + "geonameId": 2398621, + "latitudeCity": 0.116667, + "longitudeCity": 11.083333, + "nameCity": "Mevang", + "timezone": "Africa/Libreville" + }, + { + "GMT": "10", + "cityId": 4929, + "codeIataCity": "MVH", + "codeIso2Country": "AU", + "geonameId": 2159194, + "latitudeCity": -30.75, + "longitudeCity": 152.9, + "nameCity": "Macksville", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "cityId": 4930, + "codeIataCity": "MVI", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.0, + "longitudeCity": 155.33333, + "nameCity": "Manetai", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 4931, + "codeIataCity": "MVJ", + "codeIso2Country": "JM", + "geonameId": 3489577, + "latitudeCity": 18.021667, + "longitudeCity": -77.49528, + "nameCity": "Mandeville", + "timezone": "America/Jamaica" + }, + { + "GMT": "9.30", + "cityId": 4932, + "codeIataCity": "MVK", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -27.25, + "longitudeCity": 138.0, + "nameCity": "Mulka", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-5", + "cityId": 4933, + "codeIataCity": "MVL", + "codeIso2Country": "US", + "geonameId": 5241611, + "latitudeCity": 44.566666, + "longitudeCity": -72.6, + "nameCity": "Stowe", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 4934, + "codeIataCity": "MVM", + "codeIso2Country": "US", + "geonameId": 5300830, + "latitudeCity": 36.702778, + "longitudeCity": -110.23333, + "nameCity": "Kayenta", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 4935, + "codeIataCity": "MVN", + "codeIso2Country": "US", + "geonameId": 4245152, + "latitudeCity": 38.323055, + "longitudeCity": -88.85861, + "nameCity": "Mount Vernon", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 4936, + "codeIataCity": "MVO", + "codeIso2Country": "TD", + "geonameId": 2427637, + "latitudeCity": 12.2, + "longitudeCity": 18.783333, + "nameCity": "Mongo", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "-5", + "cityId": 4937, + "codeIataCity": "MVP", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 1.133333, + "longitudeCity": -70.05, + "nameCity": "Mitu", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "cityId": 4938, + "codeIataCity": "MVQ", + "codeIso2Country": "BY", + "geonameId": 625665, + "latitudeCity": 53.95, + "longitudeCity": 30.133333, + "nameCity": "Mogilev", + "timezone": "Europe/Minsk" + }, + { + "GMT": "1", + "cityId": 4939, + "codeIataCity": "MVR", + "codeIso2Country": "CM", + "geonameId": 0, + "latitudeCity": 10.452222, + "longitudeCity": 14.256389, + "nameCity": "Maroua", + "timezone": "Africa/Douala" + }, + { + "GMT": "-3", + "cityId": 4940, + "codeIataCity": "MVS", + "codeIso2Country": "BR", + "geonameId": 3472728, + "latitudeCity": -18.083332, + "longitudeCity": -39.566666, + "nameCity": "Mucuri", + "timezone": "America/Bahia" + }, + { + "GMT": "-10", + "cityId": 4941, + "codeIataCity": "MVT", + "codeIso2Country": "PF", + "geonameId": 4034237, + "latitudeCity": -14.833333, + "longitudeCity": -148.41667, + "nameCity": "Mataiva", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "10", + "cityId": 4942, + "codeIataCity": "MVU", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -14.166667, + "longitudeCity": 143.68333, + "nameCity": "Musgrave", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 4943, + "codeIataCity": "MVV", + "codeIso2Country": "FR", + "geonameId": 0, + "latitudeCity": 45.816666, + "longitudeCity": 6.65, + "nameCity": "Megeve", + "timezone": "Europe/Paris" + }, + { + "GMT": "-8", + "cityId": 4944, + "codeIataCity": "MVW", + "codeIso2Country": "US", + "geonameId": 5788539, + "latitudeCity": 48.416668, + "longitudeCity": -122.333336, + "nameCity": "Mount Vernon", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 4945, + "codeIataCity": "MVX", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": 2.15, + "longitudeCity": 12.133333, + "nameCity": "Minvoul", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-5", + "cityId": 4946, + "codeIataCity": "MVY", + "codeIso2Country": "US", + "geonameId": 4935645, + "latitudeCity": 41.389336, + "longitudeCity": -70.61182, + "nameCity": "Vineyard Haven", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 4947, + "codeIataCity": "MVZ", + "codeIso2Country": "ZW", + "geonameId": 0, + "latitudeCity": -20.054167, + "longitudeCity": 30.860556, + "nameCity": "Masvingo", + "timezone": "Africa/Harare" + }, + { + "GMT": "-6", + "cityId": 4948, + "codeIataCity": "MWA", + "codeIso2Country": "US", + "geonameId": 4243899, + "latitudeCity": 37.751945, + "longitudeCity": -89.01639, + "nameCity": "Marion", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 4949, + "codeIataCity": "MWB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -29.204166, + "longitudeCity": 116.0225, + "nameCity": "Morawa", + "timezone": "Australia/Perth" + }, + { + "GMT": "5", + "cityId": 4950, + "codeIataCity": "MWD", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 32.55, + "longitudeCity": 71.55, + "nameCity": "Mianwali", + "timezone": "Asia/Karachi" + }, + { + "GMT": "3", + "cityId": 4951, + "codeIataCity": "MWE", + "codeIso2Country": "SD", + "geonameId": 0, + "latitudeCity": 18.45, + "longitudeCity": 31.833332, + "nameCity": "Merowe", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "11", + "cityId": 4952, + "codeIataCity": "MWF", + "codeIso2Country": "VU", + "geonameId": 0, + "latitudeCity": -15.166667, + "longitudeCity": 168.16667, + "nameCity": "Maewo", + "timezone": "Pacific/Efate" + }, + { + "GMT": "10", + "cityId": 4953, + "codeIataCity": "MWG", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.133333, + "longitudeCity": 146.13333, + "nameCity": "Marawaka", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "cityId": 4954, + "codeIataCity": "MWH", + "codeIso2Country": "US", + "geonameId": 5803990, + "latitudeCity": 47.205, + "longitudeCity": -119.31556, + "nameCity": "Moses Lake", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 4955, + "codeIataCity": "MWI", + "codeIso2Country": "PG", + "geonameId": 2088122, + "latitudeCity": -5.15, + "longitudeCity": 143.48334, + "nameCity": "Maramuni", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "cityId": 4956, + "codeIataCity": "MWJ", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 6.55, + "longitudeCity": -59.9, + "nameCity": "Matthews Ridge", + "timezone": "America/Guyana" + }, + { + "GMT": "7", + "cityId": 4957, + "codeIataCity": "MWK", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 3.3, + "longitudeCity": 106.26667, + "nameCity": "Matak", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-6", + "cityId": 4958, + "codeIataCity": "MWL", + "codeIso2Country": "US", + "geonameId": 4691930, + "latitudeCity": -5.13, + "longitudeCity": 137.53, + "nameCity": "Mineral Wells", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 4959, + "codeIataCity": "MWM", + "codeIso2Country": "US", + "geonameId": 5036420, + "latitudeCity": 43.916668, + "longitudeCity": -95.1, + "nameCity": "Windom", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 4960, + "codeIataCity": "MWN", + "codeIso2Country": "TZ", + "geonameId": 0, + "latitudeCity": -3.55, + "longitudeCity": 33.6, + "nameCity": "Mwadui", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-5", + "cityId": 4961, + "codeIataCity": "MWO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.516666, + "longitudeCity": -84.4, + "nameCity": "Middletown", + "timezone": "America/New_York" + }, + { + "GMT": "5.45", + "cityId": 4962, + "codeIataCity": "MWP", + "codeIso2Country": "NP", + "geonameId": 1283240, + "latitudeCity": 28.0, + "longitudeCity": 85.333336, + "nameCity": "Mountain", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "6.30", + "cityId": 4963, + "codeIataCity": "MWQ", + "codeIso2Country": "MM", + "geonameId": 1312610, + "latitudeCity": 20.166668, + "longitudeCity": 94.94111, + "nameCity": "Magwe", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "2", + "cityId": 4964, + "codeIataCity": "MWR", + "codeIso2Country": "ZA", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Motswari", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-8", + "cityId": 4965, + "codeIataCity": "MWS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 34.216667, + "longitudeCity": -118.066666, + "nameCity": "Mount Wilson", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "cityId": 4966, + "codeIataCity": "MWT", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -28.5, + "longitudeCity": 138.0, + "nameCity": "Moolawatana", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "10", + "cityId": 4967, + "codeIataCity": "MWU", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -1.5, + "longitudeCity": 149.66667, + "nameCity": "Mussau", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "7", + "cityId": 4968, + "codeIataCity": "MWV", + "codeIso2Country": "KH", + "geonameId": 0, + "latitudeCity": 12.460556, + "longitudeCity": 107.190834, + "nameCity": "Mundulkiri", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "9", + "cityId": 4969, + "codeIataCity": "MWX", + "codeIso2Country": "KR", + "geonameId": 1841811, + "latitudeCity": 34.991405, + "longitudeCity": 126.38281, + "nameCity": "Muan", + "timezone": "Asia/Seoul" + }, + { + "GMT": "10", + "cityId": 4970, + "codeIataCity": "MWY", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -25.783333, + "longitudeCity": 141.51666, + "nameCity": "Miranda Downs", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "cityId": 4971, + "codeIataCity": "MWZ", + "codeIso2Country": "TZ", + "geonameId": 152224, + "latitudeCity": -2.441221, + "longitudeCity": 32.923225, + "nameCity": "Mwanza", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-6", + "cityId": 4972, + "codeIataCity": "MXA", + "codeIso2Country": "US", + "geonameId": 4641239, + "latitudeCity": 35.88333, + "longitudeCity": -90.183334, + "nameCity": "Manila", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 4973, + "codeIataCity": "MXB", + "codeIso2Country": "ID", + "geonameId": 1629974, + "latitudeCity": -2.333333, + "longitudeCity": 120.333336, + "nameCity": "Masamba", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-7", + "cityId": 4974, + "codeIataCity": "MXC", + "codeIso2Country": "US", + "geonameId": 5543307, + "latitudeCity": 37.88333, + "longitudeCity": -109.36667, + "nameCity": "Monticello", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "cityId": 4975, + "codeIataCity": "MXD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -23.333332, + "longitudeCity": 139.6, + "nameCity": "Marion Downs", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 4976, + "codeIataCity": "MXE", + "codeIso2Country": "US", + "geonameId": 4478372, + "latitudeCity": 34.716667, + "longitudeCity": -79.333336, + "nameCity": "Maxton", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 4977, + "codeIataCity": "MXG", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.333332, + "longitudeCity": -71.55, + "nameCity": "Marlborough", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 4978, + "codeIataCity": "MXH", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.3525, + "longitudeCity": 143.25055, + "nameCity": "Moro", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 4979, + "codeIataCity": "MXI", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 6.916667, + "longitudeCity": 126.25, + "nameCity": "Mati", + "timezone": "Asia/Manila" + }, + { + "GMT": "1", + "cityId": 4980, + "codeIataCity": "MXJ", + "codeIso2Country": "NG", + "geonameId": 0, + "latitudeCity": 9.616667, + "longitudeCity": 6.533333, + "nameCity": "Minna", + "timezone": "Africa/Lagos" + }, + { + "GMT": "10", + "cityId": 4981, + "codeIataCity": "MXK", + "codeIso2Country": "PG", + "geonameId": 2090785, + "latitudeCity": -6.383333, + "longitudeCity": 147.61667, + "nameCity": "Mindik", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "cityId": 4982, + "codeIataCity": "MXL", + "codeIso2Country": "MX", + "geonameId": 3996069, + "latitudeCity": 32.6282, + "longitudeCity": -115.248215, + "nameCity": "Mexicali", + "timezone": "America/Tijuana" + }, + { + "GMT": "3", + "cityId": 4983, + "codeIataCity": "MXM", + "codeIso2Country": "MG", + "geonameId": 1058390, + "latitudeCity": -21.75, + "longitudeCity": 43.36667, + "nameCity": "Morombe", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "1", + "cityId": 4984, + "codeIataCity": "MXN", + "codeIso2Country": "FR", + "geonameId": 2991772, + "latitudeCity": 48.6, + "longitudeCity": -3.816667, + "nameCity": "Morlaix", + "timezone": "Europe/Paris" + }, + { + "GMT": "-6", + "cityId": 4985, + "codeIataCity": "MXO", + "codeIso2Country": "US", + "geonameId": 4846880, + "latitudeCity": 42.25, + "longitudeCity": -91.2, + "nameCity": "Monticello", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 4986, + "codeIataCity": "MXR", + "codeIso2Country": "UA", + "geonameId": 696643, + "latitudeCity": 49.966667, + "longitudeCity": 33.6, + "nameCity": "Mirgorod", + "timezone": "Europe/Kiev" + }, + { + "GMT": "13", + "cityId": 4987, + "codeIataCity": "MXS", + "codeIso2Country": "WS", + "geonameId": 4035092, + "latitudeCity": -13.716667, + "longitudeCity": -172.23334, + "nameCity": "Maota Savaii Island", + "timezone": "Pacific/Apia" + }, + { + "GMT": "3", + "cityId": 4988, + "codeIataCity": "MXT", + "codeIso2Country": "MG", + "geonameId": 1061912, + "latitudeCity": -18.047777, + "longitudeCity": 44.03278, + "nameCity": "Maintirano", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "8", + "cityId": 4989, + "codeIataCity": "MXU", + "codeIso2Country": "AU", + "geonameId": 2070998, + "latitudeCity": -28.55, + "longitudeCity": 115.51667, + "nameCity": "Mullewa", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "cityId": 4990, + "codeIataCity": "MXV", + "codeIso2Country": "MN", + "geonameId": 0, + "latitudeCity": 49.63333, + "longitudeCity": 100.166664, + "nameCity": "Moron", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "8", + "cityId": 4991, + "codeIataCity": "MXW", + "codeIso2Country": "MN", + "geonameId": 0, + "latitudeCity": 45.766666, + "longitudeCity": 106.28333, + "nameCity": "Mandalgobi", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "1", + "cityId": 4992, + "codeIataCity": "MXX", + "codeIso2Country": "SE", + "geonameId": 2691400, + "latitudeCity": 60.95812, + "longitudeCity": 14.504529, + "nameCity": "Mora", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-9", + "cityId": 4993, + "codeIataCity": "MXY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 61.47061, + "longitudeCity": -142.93736, + "nameCity": "Mccarthy", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "cityId": 4994, + "codeIataCity": "MXZ", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 24.266811, + "longitudeCity": 116.10449, + "nameCity": "Meixian", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "cityId": 4995, + "codeIataCity": "MYA", + "codeIso2Country": "AU", + "geonameId": 2156834, + "latitudeCity": -35.90251, + "longitudeCity": 150.14717, + "nameCity": "Moruya", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "cityId": 4996, + "codeIataCity": "MYB", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -3.45, + "longitudeCity": 10.683333, + "nameCity": "Mayoumba", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-4", + "cityId": 4997, + "codeIataCity": "MYC", + "codeIso2Country": "VE", + "geonameId": 3632998, + "latitudeCity": 10.5, + "longitudeCity": -68.166664, + "nameCity": "Maracay", + "timezone": "America/Caracas" + }, + { + "GMT": "3", + "cityId": 4998, + "codeIataCity": "MYD", + "codeIso2Country": "KE", + "geonameId": 187968, + "latitudeCity": -3.230755, + "longitudeCity": 40.10048, + "nameCity": "Malindi", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "9", + "cityId": 4999, + "codeIataCity": "MYE", + "codeIso2Country": "JP", + "geonameId": 1852357, + "latitudeCity": 34.069443, + "longitudeCity": 139.5625, + "nameCity": "Miyake Jima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "cityId": 5000, + "codeIataCity": "MYG", + "codeIso2Country": "BS", + "geonameId": 0, + "latitudeCity": 22.376667, + "longitudeCity": -73.01833, + "nameCity": "Mayaguana", + "timezone": "America/Nassau" + }, + { + "GMT": "-7", + "cityId": 5001, + "codeIataCity": "MYH", + "codeIso2Country": "US", + "geonameId": 5303720, + "latitudeCity": 36.8125, + "longitudeCity": -111.645836, + "nameCity": "Marble Canyon", + "timezone": "America/Phoenix" + }, + { + "GMT": "10", + "cityId": 5002, + "codeIataCity": "MYI", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -9.920066, + "longitudeCity": 144.06497, + "nameCity": "Murray Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "9", + "cityId": 5003, + "codeIataCity": "MYJ", + "codeIso2Country": "JP", + "geonameId": 1926099, + "latitudeCity": 33.822224, + "longitudeCity": 132.70416, + "nameCity": "Matsuyama", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-9", + "cityId": 5004, + "codeIataCity": "MYK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 61.416668, + "longitudeCity": -142.91667, + "nameCity": "May Creek", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "cityId": 5005, + "codeIataCity": "MYL", + "codeIso2Country": "US", + "geonameId": 5600363, + "latitudeCity": 44.916668, + "longitudeCity": -116.1, + "nameCity": "Mccall", + "timezone": "America/Boise" + }, + { + "GMT": "-4", + "cityId": 5006, + "codeIataCity": "MYM", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 4.6, + "longitudeCity": -59.63333, + "nameCity": "Monkey Mountain", + "timezone": "America/Guyana" + }, + { + "GMT": "3", + "cityId": 5007, + "codeIataCity": "MYN", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 15.483333, + "longitudeCity": 45.333332, + "nameCity": "Mareb", + "timezone": "Asia/Aden" + }, + { + "GMT": "8", + "cityId": 5008, + "codeIataCity": "MYO", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.116667, + "longitudeCity": 124.26667, + "nameCity": "Myroodah", + "timezone": "Australia/Perth" + }, + { + "GMT": "5", + "cityId": 5009, + "codeIataCity": "MYP", + "codeIso2Country": "TM", + "geonameId": 0, + "latitudeCity": 37.666668, + "longitudeCity": 61.833332, + "nameCity": "Mary", + "timezone": "Asia/Ashgabat" + }, + { + "GMT": "5.30", + "cityId": 5010, + "codeIataCity": "MYQ", + "codeIso2Country": "IN", + "geonameId": 1262321, + "latitudeCity": 12.3, + "longitudeCity": 76.65, + "nameCity": "Mysore", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "cityId": 5011, + "codeIataCity": "MYR", + "codeIso2Country": "US", + "geonameId": 4588718, + "latitudeCity": 33.68906, + "longitudeCity": -78.886694, + "nameCity": "Myrtle Beach", + "timezone": "America/New_York" + }, + { + "GMT": "6.30", + "cityId": 5012, + "codeIataCity": "MYT", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 25.354168, + "longitudeCity": 97.29889, + "nameCity": "Myitkyina", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-9", + "cityId": 5013, + "codeIataCity": "MYU", + "codeIso2Country": "US", + "geonameId": 5868684, + "latitudeCity": 60.37278, + "longitudeCity": -166.26805, + "nameCity": "Mekoryuk", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "cityId": 5014, + "codeIataCity": "MYV", + "codeIso2Country": "US", + "geonameId": 5370984, + "latitudeCity": 39.145725, + "longitudeCity": -121.591355, + "nameCity": "Marysville", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "cityId": 5015, + "codeIataCity": "MYW", + "codeIso2Country": "TZ", + "geonameId": 877747, + "latitudeCity": -10.338889, + "longitudeCity": 40.19361, + "nameCity": "Mtwara", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "10", + "cityId": 5016, + "codeIataCity": "MYX", + "codeIso2Country": "PG", + "geonameId": 2090951, + "latitudeCity": -7.2, + "longitudeCity": 146.01666, + "nameCity": "Menyamya", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 5017, + "codeIataCity": "MYY", + "codeIso2Country": "MY", + "geonameId": 1738050, + "latitudeCity": 4.325261, + "longitudeCity": 113.983116, + "nameCity": "Miri", + "timezone": "Asia/Kuching" + }, + { + "GMT": "2", + "cityId": 5018, + "codeIataCity": "MYZ", + "codeIso2Country": "MW", + "geonameId": 0, + "latitudeCity": -14.1, + "longitudeCity": 34.533333, + "nameCity": "Monkey Bay", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "2", + "cityId": 5019, + "codeIataCity": "MZB", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": -11.356111, + "longitudeCity": 40.354168, + "nameCity": "Mocimboa Praia", + "timezone": "Africa/Maputo" + }, + { + "GMT": "1", + "cityId": 5020, + "codeIataCity": "MZC", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": 0.783333, + "longitudeCity": 11.566667, + "nameCity": "Mitzic", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-5", + "cityId": 5021, + "codeIataCity": "MZD", + "codeIso2Country": "EC", + "geonameId": 3658666, + "latitudeCity": -2.733333, + "longitudeCity": -78.316666, + "nameCity": "Mendez", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-6", + "cityId": 5022, + "codeIataCity": "MZE", + "codeIso2Country": "BZ", + "geonameId": 0, + "latitudeCity": 17.083332, + "longitudeCity": -89.6, + "nameCity": "Manatee", + "timezone": "America/Belize" + }, + { + "GMT": "2", + "cityId": 5023, + "codeIataCity": "MZF", + "codeIso2Country": "ZA", + "geonameId": 964424, + "latitudeCity": -32.75, + "longitudeCity": 28.5, + "nameCity": "Mzamba(Wild Coast Sun)", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "8", + "cityId": 5024, + "codeIataCity": "MZG", + "codeIso2Country": "TW", + "geonameId": 1668355, + "latitudeCity": 23.569166, + "longitudeCity": 119.618614, + "nameCity": "Makung", + "timezone": "Asia/Taipei" + }, + { + "GMT": "3", + "cityId": 5025, + "codeIataCity": "MZH", + "codeIso2Country": "TR", + "geonameId": 740264, + "latitudeCity": 40.88333, + "longitudeCity": 35.533333, + "nameCity": "Merzifon", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "0", + "cityId": 5026, + "codeIataCity": "MZI", + "codeIso2Country": "ML", + "geonameId": 2453348, + "latitudeCity": 14.508333, + "longitudeCity": -4.085, + "nameCity": "Mopti", + "timezone": "Africa/Bamako" + }, + { + "GMT": "-7", + "cityId": 5027, + "codeIataCity": "MZJ", + "codeIso2Country": "US", + "geonameId": 5318313, + "latitudeCity": 32.516666, + "longitudeCity": -111.333336, + "nameCity": "Marana", + "timezone": "America/Phoenix" + }, + { + "GMT": "12", + "cityId": 5028, + "codeIataCity": "MZK", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": 1.983333, + "longitudeCity": 173.66667, + "nameCity": "Marakei", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "-5", + "cityId": 5029, + "codeIataCity": "MZL", + "codeIso2Country": "CO", + "geonameId": 3675443, + "latitudeCity": 5.029005, + "longitudeCity": -75.46878, + "nameCity": "Manizales", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "cityId": 5030, + "codeIataCity": "MZN", + "codeIso2Country": "PG", + "geonameId": 2090763, + "latitudeCity": -5.905556, + "longitudeCity": 144.67667, + "nameCity": "Minj", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 5031, + "codeIataCity": "MZO", + "codeIso2Country": "CU", + "geonameId": 3547867, + "latitudeCity": 20.325, + "longitudeCity": -77.12889, + "nameCity": "Manzanillo", + "timezone": "America/Havana" + }, + { + "GMT": "12", + "cityId": 5032, + "codeIataCity": "MZP", + "codeIso2Country": "NZ", + "geonameId": 2184361, + "latitudeCity": -41.11667, + "longitudeCity": 173.0, + "nameCity": "Motueka", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "2", + "cityId": 5033, + "codeIataCity": "MZQ", + "codeIso2Country": "ZA", + "geonameId": 975511, + "latitudeCity": -27.633333, + "longitudeCity": 32.05, + "nameCity": "Mkuze", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "4.30", + "cityId": 5034, + "codeIataCity": "MZR", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 36.70919, + "longitudeCity": 67.20849, + "nameCity": "Mazar-i-sharif", + "timezone": "Asia/Kabul" + }, + { + "GMT": "8", + "cityId": 5035, + "codeIataCity": "MZS", + "codeIso2Country": "MY", + "geonameId": 0, + "latitudeCity": 4.616667, + "longitudeCity": 118.15, + "nameCity": "Mostyn", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-7", + "cityId": 5036, + "codeIataCity": "MZT", + "codeIso2Country": "MX", + "geonameId": 3996322, + "latitudeCity": 23.167315, + "longitudeCity": -106.27015, + "nameCity": "Mazatlan", + "timezone": "America/Mazatlan" + }, + { + "GMT": "5.30", + "cityId": 5037, + "codeIataCity": "MZU", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 26.116667, + "longitudeCity": 85.38333, + "nameCity": "Muzaffarpur", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "8", + "cityId": 5038, + "codeIataCity": "MZV", + "codeIso2Country": "MY", + "geonameId": 1738050, + "latitudeCity": 4.033333, + "longitudeCity": 114.8, + "nameCity": "Mulu", + "timezone": "Asia/Kuching" + }, + { + "GMT": "1", + "cityId": 5039, + "codeIataCity": "MZW", + "codeIso2Country": "DZ", + "geonameId": 2489865, + "latitudeCity": 33.521942, + "longitudeCity": -0.283056, + "nameCity": "Mechria", + "timezone": "Africa/Algiers" + }, + { + "GMT": "3", + "cityId": 5040, + "codeIataCity": "MZX", + "codeIso2Country": "ET", + "geonameId": 331064, + "latitudeCity": 6.35, + "longitudeCity": 39.716667, + "nameCity": "Mena", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "2", + "cityId": 5041, + "codeIataCity": "MZY", + "codeIso2Country": "ZA", + "geonameId": 973709, + "latitudeCity": -34.183334, + "longitudeCity": 22.083332, + "nameCity": "Mossel Bay", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-5", + "cityId": 5042, + "codeIataCity": "MZZ", + "codeIso2Country": "US", + "geonameId": 4920637, + "latitudeCity": 40.490833, + "longitudeCity": -85.67944, + "nameCity": "Marion", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "10", + "cityId": 5043, + "codeIataCity": "NAA", + "codeIso2Country": "AU", + "geonameId": 2155742, + "latitudeCity": -30.31829, + "longitudeCity": 149.82912, + "nameCity": "Narrabri", + "timezone": "Australia/Sydney" + }, + { + "GMT": "9.30", + "cityId": 5044, + "codeIataCity": "NAC", + "codeIso2Country": "AU", + "geonameId": 2062381, + "latitudeCity": -36.95, + "longitudeCity": 140.83333, + "nameCity": "Naracoorte", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-5", + "cityId": 5045, + "codeIataCity": "NAD", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 2.566667, + "longitudeCity": -67.583336, + "nameCity": "Macanal", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 5046, + "codeIataCity": "NAE", + "codeIso2Country": "BJ", + "geonameId": 2392601, + "latitudeCity": 10.383333, + "longitudeCity": 1.366667, + "nameCity": "Natitingou", + "timezone": "Africa/Porto-Novo" + }, + { + "GMT": "8", + "cityId": 5047, + "codeIataCity": "NAF", + "codeIso2Country": "ID", + "geonameId": 1624725, + "latitudeCity": 2.75, + "longitudeCity": 117.05, + "nameCity": "Banaina", + "timezone": "Asia/Makassar" + }, + { + "GMT": "5.30", + "cityId": 5048, + "codeIataCity": "NAG", + "codeIso2Country": "IN", + "geonameId": 1262180, + "latitudeCity": 21.090036, + "longitudeCity": 79.05636, + "nameCity": "Nagpur", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "8", + "cityId": 5049, + "codeIataCity": "NAH", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 3.716667, + "longitudeCity": 125.36667, + "nameCity": "Naha", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-4", + "cityId": 5050, + "codeIataCity": "NAI", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 3.75, + "longitudeCity": -59.0, + "nameCity": "Annai", + "timezone": "America/Guyana" + }, + { + "GMT": "4", + "cityId": 5051, + "codeIataCity": "NAJ", + "codeIso2Country": "AZ", + "geonameId": 0, + "latitudeCity": 39.190277, + "longitudeCity": 45.45889, + "nameCity": "Nakhichevan", + "timezone": "Asia/Baku" + }, + { + "GMT": "7", + "cityId": 5052, + "codeIataCity": "NAK", + "codeIso2Country": "TH", + "geonameId": 1608529, + "latitudeCity": 14.933333, + "longitudeCity": 102.083336, + "nameCity": "Nakhon Ratchasima", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "3", + "cityId": 5053, + "codeIataCity": "NAL", + "codeIso2Country": "RU", + "geonameId": 523523, + "latitudeCity": 43.533333, + "longitudeCity": 43.7, + "nameCity": "Nalchik", + "timezone": "Europe/Moscow" + }, + { + "GMT": "9", + "cityId": 5054, + "codeIataCity": "NAM", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.3, + "longitudeCity": 127.1, + "nameCity": "Namlea", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "12", + "cityId": 5055, + "codeIataCity": "NAN", + "codeIso2Country": "FJ", + "geonameId": 2202064, + "latitudeCity": -17.75327, + "longitudeCity": 177.45161, + "nameCity": "Nadi", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "8", + "cityId": 5056, + "codeIataCity": "NAO", + "codeIso2Country": "CN", + "geonameId": 1800146, + "latitudeCity": 30.8, + "longitudeCity": 106.066666, + "nameCity": "Nanchong", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 5057, + "codeIataCity": "NAP", + "codeIso2Country": "IT", + "geonameId": 3172394, + "latitudeCity": 40.840097, + "longitudeCity": 14.251636, + "nameCity": "Napoli", + "timezone": "Europe/Rome" + }, + { + "GMT": "-3", + "cityId": 5058, + "codeIataCity": "NAQ", + "codeIso2Country": "GL", + "geonameId": 3831208, + "latitudeCity": 77.48564, + "longitudeCity": -69.37486, + "nameCity": "Qaanaaq", + "timezone": "America/Godthab" + }, + { + "GMT": "-5", + "cityId": 5059, + "codeIataCity": "NAR", + "codeIso2Country": "CO", + "geonameId": 3670730, + "latitudeCity": 6.2, + "longitudeCity": -74.583336, + "nameCity": "Nare", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 5060, + "codeIataCity": "NAS", + "codeIso2Country": "BS", + "geonameId": 3571824, + "latitudeCity": 25.06, + "longitudeCity": -77.345, + "nameCity": "Nassau", + "timezone": "America/Nassau" + }, + { + "GMT": "-3", + "cityId": 5061, + "codeIataCity": "NAT", + "codeIso2Country": "BR", + "geonameId": 3394023, + "latitudeCity": -5.916787, + "longitudeCity": -35.250244, + "nameCity": "Natal", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-10", + "cityId": 5062, + "codeIataCity": "NAU", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -14.166667, + "longitudeCity": -141.58333, + "nameCity": "Napuka Island", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "3", + "cityId": 5063, + "codeIataCity": "NAV", + "codeIso2Country": "TR", + "geonameId": 303831, + "latitudeCity": 38.63333, + "longitudeCity": 34.716667, + "nameCity": "Nevsehir", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "7", + "cityId": 5064, + "codeIataCity": "NAW", + "codeIso2Country": "TH", + "geonameId": 1608409, + "latitudeCity": 6.516667, + "longitudeCity": 101.75, + "nameCity": "Narathiwat", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-10", + "cityId": 5065, + "codeIataCity": "NAX", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 21.3, + "longitudeCity": -158.11667, + "nameCity": "Kapolei", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "11", + "cityId": 5066, + "codeIataCity": "NAZ", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -14.866667, + "longitudeCity": -74.95, + "nameCity": "Star Habour", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "10", + "cityId": 5067, + "codeIataCity": "NBA", + "codeIso2Country": "PG", + "geonameId": 2090012, + "latitudeCity": -6.25, + "longitudeCity": 145.23334, + "nameCity": "Nambaiyufa", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 5068, + "codeIataCity": "NBB", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 3.333333, + "longitudeCity": -70.333336, + "nameCity": "Barrancominas", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "cityId": 5069, + "codeIataCity": "NBC", + "codeIso2Country": "RU", + "geonameId": 521118, + "latitudeCity": 55.564125, + "longitudeCity": 52.10341, + "nameCity": "Naberevnye Chelny", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "cityId": 5070, + "codeIataCity": "NBE", + "codeIso2Country": "TN", + "geonameId": 6941792, + "latitudeCity": 36.075832, + "longitudeCity": 10.438611, + "nameCity": "Enfidha", + "timezone": "Africa/Tunis" + }, + { + "GMT": "10", + "cityId": 5071, + "codeIataCity": "NBH", + "codeIso2Country": "AU", + "geonameId": 2155858, + "latitudeCity": -30.633333, + "longitudeCity": 152.98334, + "nameCity": "Nambucca Heads", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-5", + "cityId": 5072, + "codeIataCity": "NBL", + "codeIso2Country": "PA", + "geonameId": 3703443, + "latitudeCity": 9.3, + "longitudeCity": -79.0, + "nameCity": "San Blas", + "timezone": "America/Panama" + }, + { + "GMT": "3", + "cityId": 5073, + "codeIataCity": "NBO", + "codeIso2Country": "KE", + "geonameId": 184745, + "latitudeCity": -1.283333, + "longitudeCity": 36.816667, + "nameCity": "Nairobi", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "8", + "cityId": 5074, + "codeIataCity": "NBS", + "codeIso2Country": "CN", + "geonameId": 2046577, + "latitudeCity": 42.083332, + "longitudeCity": 127.6, + "nameCity": "Baishan", + "timezone": "Asia/Harbin" + }, + { + "GMT": "-6", + "cityId": 5075, + "codeIataCity": "NBU", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.55, + "longitudeCity": -107.316666, + "nameCity": "Glenview", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 5076, + "codeIataCity": "NBV", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -17.383333, + "longitudeCity": -45.86667, + "nameCity": "Cana Brava", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "9", + "cityId": 5077, + "codeIataCity": "NBX", + "codeIso2Country": "ID", + "geonameId": 1634614, + "latitudeCity": -3.366667, + "longitudeCity": 135.43333, + "nameCity": "Nabire", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-4", + "cityId": 5078, + "codeIataCity": "NCA", + "codeIso2Country": "TC", + "geonameId": 8131575, + "latitudeCity": 21.933332, + "longitudeCity": -71.98333, + "nameCity": "North Caicos", + "timezone": "America/Grand_Turk" + }, + { + "GMT": "1", + "cityId": 5079, + "codeIataCity": "NCE", + "codeIso2Country": "FR", + "geonameId": 2990440, + "latitudeCity": 43.66049, + "longitudeCity": 7.205232, + "nameCity": "Nice", + "timezone": "Europe/Paris" + }, + { + "GMT": "-7", + "cityId": 5080, + "codeIataCity": "NCG", + "codeIso2Country": "MX", + "geonameId": 0, + "latitudeCity": 30.416668, + "longitudeCity": -107.916664, + "nameCity": "Paloma Grande", + "timezone": "America/Chihuahua" + }, + { + "GMT": "3", + "cityId": 5081, + "codeIataCity": "NCH", + "codeIso2Country": "TZ", + "geonameId": 0, + "latitudeCity": -10.363889, + "longitudeCity": 38.775, + "nameCity": "Nachingwea", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-5", + "cityId": 5082, + "codeIataCity": "NCI", + "codeIso2Country": "CO", + "geonameId": 3665580, + "latitudeCity": 8.483333, + "longitudeCity": -76.75, + "nameCity": "Necocli", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "cityId": 5083, + "codeIataCity": "NCJ", + "codeIso2Country": "AR", + "geonameId": 3834971, + "latitudeCity": -30.94404, + "longitudeCity": -61.56148, + "nameCity": "Sunchales", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "0", + "cityId": 5084, + "codeIataCity": "NCL", + "codeIso2Country": "GB", + "geonameId": 2641673, + "latitudeCity": 55.037064, + "longitudeCity": -1.710629, + "nameCity": "Newcastle", + "timezone": "Europe/London" + }, + { + "GMT": "-9", + "cityId": 5085, + "codeIataCity": "NCN", + "codeIso2Country": "US", + "geonameId": 5873776, + "latitudeCity": 60.07831, + "longitudeCity": -147.99773, + "nameCity": "New Chenega", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 5086, + "codeIataCity": "NCO", + "codeIso2Country": "US", + "geonameId": 5223593, + "latitudeCity": 41.0, + "longitudeCity": -71.0, + "nameCity": "Quonset Point", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 5087, + "codeIataCity": "NCP", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 16.0, + "longitudeCity": 121.0, + "nameCity": "Luzon Island", + "timezone": "Asia/Manila" + }, + { + "GMT": "-6", + "cityId": 5088, + "codeIataCity": "NCR", + "codeIso2Country": "NI", + "geonameId": 3619954, + "latitudeCity": 11.25, + "longitudeCity": -84.833336, + "nameCity": "San Carlos", + "timezone": "America/Managua" + }, + { + "GMT": "2", + "cityId": 5089, + "codeIataCity": "NCS", + "codeIso2Country": "ZA", + "geonameId": 984998, + "latitudeCity": -27.774166, + "longitudeCity": 29.99, + "nameCity": "Newcastle", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-6", + "cityId": 5090, + "codeIataCity": "NCT", + "codeIso2Country": "CR", + "geonameId": 3622716, + "latitudeCity": 10.138889, + "longitudeCity": -85.445, + "nameCity": "Nicoya", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "5", + "cityId": 5091, + "codeIataCity": "NCU", + "codeIso2Country": "UZ", + "geonameId": 601294, + "latitudeCity": 42.483334, + "longitudeCity": 59.63333, + "nameCity": "Nukus", + "timezone": "Asia/Samarkand" + }, + { + "GMT": "1", + "cityId": 5092, + "codeIataCity": "NCY", + "codeIso2Country": "FR", + "geonameId": 3037543, + "latitudeCity": 45.930557, + "longitudeCity": 6.100833, + "nameCity": "Annecy", + "timezone": "Europe/Paris" + }, + { + "GMT": "9", + "cityId": 5093, + "codeIataCity": "NDA", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -4.533333, + "longitudeCity": 129.9, + "nameCity": "Bandanaira", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "0", + "cityId": 5094, + "codeIataCity": "NDB", + "codeIso2Country": "MR", + "geonameId": 0, + "latitudeCity": 20.934168, + "longitudeCity": -17.028334, + "nameCity": "Nouadhibou", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "5.30", + "cityId": 5095, + "codeIataCity": "NDC", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 19.183332, + "longitudeCity": 77.316666, + "nameCity": "Nanded", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "cityId": 5096, + "codeIataCity": "NDD", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -11.166667, + "longitudeCity": 13.866667, + "nameCity": "Sumbe", + "timezone": "Africa/Luanda" + }, + { + "GMT": "3", + "cityId": 5097, + "codeIataCity": "NDE", + "codeIso2Country": "KE", + "geonameId": 0, + "latitudeCity": 3.933333, + "longitudeCity": 41.86667, + "nameCity": "Mandera", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "1", + "cityId": 5098, + "codeIataCity": "NDF", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -9.333333, + "longitudeCity": 14.833333, + "nameCity": "Ndalatandos", + "timezone": "Africa/Luanda" + }, + { + "GMT": "8", + "cityId": 5099, + "codeIataCity": "NDG", + "codeIso2Country": "CN", + "geonameId": 2035265, + "latitudeCity": 47.316666, + "longitudeCity": 123.916664, + "nameCity": "Qiqihar", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "cityId": 5100, + "codeIataCity": "NDI", + "codeIso2Country": "PG", + "geonameId": 2089966, + "latitudeCity": -9.433333, + "longitudeCity": 148.26666, + "nameCity": "Namudi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 5101, + "codeIataCity": "NDJ", + "codeIso2Country": "TD", + "geonameId": 2427123, + "latitudeCity": 12.129056, + "longitudeCity": 15.034215, + "nameCity": "N'Djamena", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "12", + "cityId": 5102, + "codeIataCity": "NDK", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 5.633333, + "longitudeCity": 168.11667, + "nameCity": "Namdrik Island", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "1", + "cityId": 5103, + "codeIataCity": "NDL", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 8.416667, + "longitudeCity": 20.6, + "nameCity": "Ndele", + "timezone": "Africa/Bangui" + }, + { + "GMT": "3", + "cityId": 5104, + "codeIataCity": "NDM", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 9.816667, + "longitudeCity": 35.083332, + "nameCity": "Mendi", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "10", + "cityId": 5105, + "codeIataCity": "NDN", + "codeIso2Country": "PG", + "geonameId": 2088122, + "latitudeCity": -9.133333, + "longitudeCity": 147.68333, + "nameCity": "Nadunumu", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 5106, + "codeIataCity": "NDO", + "codeIso2Country": "ES", + "geonameId": 2515679, + "latitudeCity": 37.38333, + "longitudeCity": -6.583333, + "nameCity": "La Palma Del Condado", + "timezone": "Europe/Madrid" + }, + { + "GMT": "0", + "cityId": 5107, + "codeIataCity": "NDR", + "codeIso2Country": "MA", + "geonameId": 0, + "latitudeCity": 34.988888, + "longitudeCity": -3.028333, + "nameCity": "Nador", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "8", + "cityId": 5108, + "codeIataCity": "NDS", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -27.983334, + "longitudeCity": 119.3, + "nameCity": "Sandstone", + "timezone": "Australia/Perth" + }, + { + "GMT": "2", + "cityId": 5109, + "codeIataCity": "NDU", + "codeIso2Country": "NA", + "geonameId": 0, + "latitudeCity": -17.95, + "longitudeCity": 19.716667, + "nameCity": "Rundu", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-5", + "cityId": 5110, + "codeIataCity": "NDV", + "codeIso2Country": "US", + "geonameId": 4137523, + "latitudeCity": 38.86667, + "longitudeCity": -77.0, + "nameCity": "Anacostia", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 5111, + "codeIataCity": "NDY", + "codeIso2Country": "GB", + "geonameId": 2633982, + "latitudeCity": 59.25, + "longitudeCity": -2.583333, + "nameCity": "Sanday", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "cityId": 5112, + "codeIataCity": "NEA", + "codeIso2Country": "US", + "geonameId": 4197377, + "latitudeCity": 31.25, + "longitudeCity": -81.46667, + "nameCity": "Glynco", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 5113, + "codeIataCity": "NEC", + "codeIso2Country": "AR", + "geonameId": 3430443, + "latitudeCity": -38.566666, + "longitudeCity": -58.75, + "nameCity": "Necochea", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "5", + "cityId": 5114, + "codeIataCity": "NEF", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 56.1, + "longitudeCity": 54.35, + "nameCity": "Neftekamsk", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-5", + "cityId": 5115, + "codeIataCity": "NEG", + "codeIso2Country": "JM", + "geonameId": 3489331, + "latitudeCity": 18.308332, + "longitudeCity": -78.333336, + "nameCity": "Negril", + "timezone": "America/Jamaica" + }, + { + "GMT": "3", + "cityId": 5116, + "codeIataCity": "NEJ", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 9.5, + "longitudeCity": 35.466667, + "nameCity": "Nejjo", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "3", + "cityId": 5117, + "codeIataCity": "NEK", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 9.066667, + "longitudeCity": 36.5, + "nameCity": "Nekemt", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-5", + "cityId": 5118, + "codeIataCity": "NEL", + "codeIso2Country": "US", + "geonameId": 5100269, + "latitudeCity": 40.016666, + "longitudeCity": -74.316666, + "nameCity": "Lakehurst", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 5119, + "codeIataCity": "NEN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 30.316668, + "longitudeCity": -81.85, + "nameCity": "Whitehouse", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "cityId": 5120, + "codeIataCity": "NER", + "codeIso2Country": "RU", + "geonameId": 2019309, + "latitudeCity": 56.65, + "longitudeCity": 124.6, + "nameCity": "Neryungri", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "-5", + "cityId": 5121, + "codeIataCity": "NET", + "codeIso2Country": "BS", + "geonameId": 0, + "latitudeCity": 24.32, + "longitudeCity": -75.45, + "nameCity": "New Bight", + "timezone": "America/Nassau" + }, + { + "GMT": "7", + "cityId": 5122, + "codeIataCity": "NEU", + "codeIso2Country": "LA", + "geonameId": 0, + "latitudeCity": 20.416668, + "longitudeCity": 104.066666, + "nameCity": "Sam Neua", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-4", + "cityId": 5123, + "codeIataCity": "NEV", + "codeIso2Country": "KN", + "geonameId": 3575479, + "latitudeCity": 17.205, + "longitudeCity": -62.5925, + "nameCity": "Nevis", + "timezone": "America/St_Kitts" + }, + { + "GMT": "5", + "cityId": 5124, + "codeIataCity": "NFG", + "codeIso2Country": "RU", + "geonameId": 1490624, + "latitudeCity": 61.13333, + "longitudeCity": 73.05, + "nameCity": "Nefteyugansk", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-8", + "cityId": 5125, + "codeIataCity": "NFL", + "codeIso2Country": "US", + "geonameId": 5503914, + "latitudeCity": 39.466667, + "longitudeCity": -118.78333, + "nameCity": "Fallon", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "13", + "cityId": 5126, + "codeIataCity": "NFO", + "codeIso2Country": "TO", + "geonameId": 0, + "latitudeCity": -15.6, + "longitudeCity": -175.65, + "nameCity": "Niuafo'ou", + "timezone": "Pacific/Tongatapu" + }, + { + "GMT": "2", + "cityId": 5127, + "codeIataCity": "NFR", + "codeIso2Country": "LY", + "geonameId": 0, + "latitudeCity": 29.216667, + "longitudeCity": 21.583332, + "nameCity": "Nafoora", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "10", + "cityId": 5128, + "codeIataCity": "NGA", + "codeIso2Country": "AU", + "geonameId": 2142245, + "latitudeCity": -34.25, + "longitudeCity": 148.25, + "nameCity": "Young", + "timezone": "Australia/Sydney" + }, + { + "GMT": "8", + "cityId": 5129, + "codeIataCity": "NGB", + "codeIso2Country": "CN", + "geonameId": 1799397, + "latitudeCity": 29.820415, + "longitudeCity": 121.462395, + "nameCity": "Ningbo", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-4", + "cityId": 5130, + "codeIataCity": "NGD", + "codeIso2Country": "VG", + "geonameId": 0, + "latitudeCity": 18.716667, + "longitudeCity": -64.3, + "nameCity": "Anegada", + "timezone": "America/Tortola" + }, + { + "GMT": "1", + "cityId": 5131, + "codeIataCity": "NGE", + "codeIso2Country": "CM", + "geonameId": 0, + "latitudeCity": 7.356389, + "longitudeCity": 13.561389, + "nameCity": "Ngaound?r", + "timezone": "Africa/Douala" + }, + { + "GMT": "12", + "cityId": 5132, + "codeIataCity": "NGI", + "codeIso2Country": "FJ", + "geonameId": 2198148, + "latitudeCity": -18.0, + "longitudeCity": 179.33333, + "nameCity": "Ngau Island", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "11", + "cityId": 5133, + "codeIataCity": "NGK", + "codeIso2Country": "RU", + "geonameId": 2122783, + "latitudeCity": 51.8, + "longitudeCity": 143.16667, + "nameCity": "Nogliki", + "timezone": "Asia/Sakhalin" + }, + { + "GMT": "2", + "cityId": 5134, + "codeIataCity": "NGL", + "codeIso2Country": "ZA", + "geonameId": 954955, + "latitudeCity": 2.45, + "longitudeCity": 21.55, + "nameCity": "Ngala", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-5", + "cityId": 5135, + "codeIataCity": "NGN", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 9.568611, + "longitudeCity": -79.25, + "nameCity": "Nargana", + "timezone": "America/Panama" + }, + { + "GMT": "9", + "cityId": 5136, + "codeIataCity": "NGO", + "codeIso2Country": "JP", + "geonameId": 1856057, + "latitudeCity": 34.8867, + "longitudeCity": 136.832397, + "nameCity": "Nagoya", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "8", + "cityId": 5137, + "codeIataCity": "NGQ", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 32.103817, + "longitudeCity": 80.054276, + "nameCity": "Shiquanhe", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "cityId": 5138, + "codeIataCity": "NGR", + "codeIso2Country": "PG", + "geonameId": 2089599, + "latitudeCity": -6.5, + "longitudeCity": 141.0, + "nameCity": "Ningerum", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "cityId": 5139, + "codeIataCity": "NGS", + "codeIso2Country": "JP", + "geonameId": 1856177, + "latitudeCity": 32.9144, + "longitudeCity": 129.92258, + "nameCity": "Nagasaki", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "5.45", + "cityId": 5140, + "codeIataCity": "NGX", + "codeIso2Country": "NP", + "geonameId": 1282898, + "latitudeCity": 27.700556, + "longitudeCity": 85.36305, + "nameCity": "Manang", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-8", + "cityId": 5141, + "codeIataCity": "NGZ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 37.766666, + "longitudeCity": -122.25, + "nameCity": "Alameda", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "7", + "cityId": 5142, + "codeIataCity": "NHA", + "codeIso2Country": "VN", + "geonameId": 1572151, + "latitudeCity": 12.238791, + "longitudeCity": 109.196749, + "nameCity": "Nha Trang", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "3", + "cityId": 5143, + "codeIataCity": "NHF", + "codeIso2Country": "SD", + "geonameId": 374272, + "latitudeCity": 15.35, + "longitudeCity": 35.733334, + "nameCity": "New Halfa", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "-5", + "cityId": 5144, + "codeIataCity": "NHK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.3, + "longitudeCity": -76.433334, + "nameCity": "Patuxent River", + "timezone": "America/New_York" + }, + { + "GMT": "5", + "cityId": 5145, + "codeIataCity": "NHS", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 29.583332, + "longitudeCity": 66.0, + "nameCity": "Nushki", + "timezone": "Asia/Karachi" + }, + { + "GMT": "0", + "cityId": 5146, + "codeIataCity": "NHT", + "codeIso2Country": "GB", + "geonameId": 2643743, + "latitudeCity": 51.533333, + "longitudeCity": -0.366667, + "nameCity": "Northolt", + "timezone": "Europe/London" + }, + { + "GMT": "-9:30", + "cityId": 5147, + "codeIataCity": "NHV", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -8.795214, + "longitudeCity": -140.22223, + "nameCity": "Nuku Hiva", + "timezone": "Pacific/Marquesas" + }, + { + "GMT": "-6", + "cityId": 5148, + "codeIataCity": "NHX", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 30.4, + "longitudeCity": -87.683334, + "nameCity": "Foley", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 5149, + "codeIataCity": "NHZ", + "codeIso2Country": "US", + "geonameId": 4959473, + "latitudeCity": 43.916668, + "longitudeCity": -69.96667, + "nameCity": "Brunswick", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 5150, + "codeIataCity": "NIA", + "codeIso2Country": "LR", + "geonameId": 0, + "latitudeCity": 7.491111, + "longitudeCity": -8.591667, + "nameCity": "Nimba", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-9", + "cityId": 5151, + "codeIataCity": "NIB", + "codeIso2Country": "US", + "geonameId": 5869969, + "latitudeCity": 63.016666, + "longitudeCity": -154.38333, + "nameCity": "Nikolai", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "cityId": 5152, + "codeIataCity": "NIC", + "codeIso2Country": "CY", + "geonameId": 146268, + "latitudeCity": 35.15111, + "longitudeCity": 33.27222, + "nameCity": "Nicosia", + "timezone": "Asia/Nicosia" + }, + { + "GMT": "-9", + "cityId": 5153, + "codeIataCity": "NIE", + "codeIso2Country": "US", + "geonameId": 5554428, + "latitudeCity": 55.066666, + "longitudeCity": -132.15, + "nameCity": "Niblack", + "timezone": "America/Sitka" + }, + { + "GMT": "8", + "cityId": 5154, + "codeIataCity": "NIF", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -21.675, + "longitudeCity": 121.58611, + "nameCity": "Nifty", + "timezone": "Australia/Perth" + }, + { + "GMT": "12", + "cityId": 5155, + "codeIataCity": "NIG", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": -1.333333, + "longitudeCity": 176.41667, + "nameCity": "Nikunau", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "0", + "cityId": 5156, + "codeIataCity": "NIK", + "codeIso2Country": "SN", + "geonameId": 0, + "latitudeCity": 13.066667, + "longitudeCity": -12.716667, + "nameCity": "Niokolo Koba", + "timezone": "Africa/Dakar" + }, + { + "GMT": "1", + "cityId": 5157, + "codeIataCity": "NIM", + "codeIso2Country": "NE", + "geonameId": 2440485, + "latitudeCity": 13.476534, + "longitudeCity": 2.177158, + "nameCity": "Niamey", + "timezone": "Africa/Niamey" + }, + { + "GMT": "-9", + "cityId": 5158, + "codeIataCity": "NIN", + "codeIso2Country": "US", + "geonameId": 5870043, + "latitudeCity": 60.066666, + "longitudeCity": -151.73334, + "nameCity": "Ninilchik", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 5159, + "codeIataCity": "NIO", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -2.75, + "longitudeCity": 17.7, + "nameCity": "Nioki", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "-6", + "cityId": 5160, + "codeIataCity": "NIR", + "codeIso2Country": "US", + "geonameId": 4673258, + "latitudeCity": 28.4, + "longitudeCity": -97.75, + "nameCity": "Beeville", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 5161, + "codeIataCity": "NIS", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -2.666667, + "longitudeCity": 152.0, + "nameCity": "Simberi Island", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 5162, + "codeIataCity": "NIT", + "codeIso2Country": "FR", + "geonameId": 2990355, + "latitudeCity": 46.316666, + "longitudeCity": -0.45, + "nameCity": "Niort", + "timezone": "Europe/Paris" + }, + { + "GMT": "-10", + "cityId": 5163, + "codeIataCity": "NIU", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -16.121988, + "longitudeCity": -146.37325, + "nameCity": "Niau", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "0", + "cityId": 5164, + "codeIataCity": "NIX", + "codeIso2Country": "ML", + "geonameId": 0, + "latitudeCity": 15.239167, + "longitudeCity": -9.577222, + "nameCity": "Nioro", + "timezone": "Africa/Bamako" + }, + { + "GMT": "9", + "cityId": 5165, + "codeIataCity": "NJA", + "codeIso2Country": "JP", + "geonameId": 1850147, + "latitudeCity": 35.416668, + "longitudeCity": 139.35, + "nameCity": "Atsugi", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "5", + "cityId": 5166, + "codeIataCity": "NJC", + "codeIso2Country": "RU", + "geonameId": 1497543, + "latitudeCity": 60.9476, + "longitudeCity": 76.49145, + "nameCity": "Nizhnevartovsk", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "3", + "cityId": 5167, + "codeIataCity": "NJF", + "codeIso2Country": "IQ", + "geonameId": 0, + "latitudeCity": 31.993563, + "longitudeCity": 44.389187, + "nameCity": "Al Najaf", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "1", + "cityId": 5168, + "codeIataCity": "NKA", + "codeIso2Country": "GA", + "geonameId": 2397354, + "latitudeCity": 0.7, + "longitudeCity": 9.983333, + "nameCity": "Nkan", + "timezone": "Africa/Libreville" + }, + { + "GMT": "8", + "cityId": 5169, + "codeIataCity": "NKB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.55, + "longitudeCity": 124.85, + "nameCity": "Noonkanbah", + "timezone": "Australia/Perth" + }, + { + "GMT": "0", + "cityId": 5170, + "codeIataCity": "NKC", + "codeIso2Country": "MR", + "geonameId": 2377450, + "latitudeCity": 18.098148, + "longitudeCity": -15.952041, + "nameCity": "Nouakchott", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "9", + "cityId": 5171, + "codeIataCity": "NKD", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -5.85, + "longitudeCity": 110.46667, + "nameCity": "Sinak", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "cityId": 5172, + "codeIataCity": "NKG", + "codeIso2Country": "CN", + "geonameId": 1799962, + "latitudeCity": 31.735737, + "longitudeCity": 118.86652, + "nameCity": "Nanjing", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-9", + "cityId": 5173, + "codeIataCity": "NKI", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 55.36667, + "longitudeCity": -133.21666, + "nameCity": "Naukiti", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 5174, + "codeIataCity": "NKL", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -1.983333, + "longitudeCity": 16.466667, + "nameCity": "Nkolo", + "timezone": "Africa/Kinshasa" + }, + { + "GMT": "10", + "cityId": 5175, + "codeIataCity": "NKN", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.833333, + "longitudeCity": 143.45, + "nameCity": "Nankina", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 5176, + "codeIataCity": "NKO", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -16.583332, + "longitudeCity": -44.45, + "nameCity": "Ankokoambo", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "1", + "cityId": 5177, + "codeIataCity": "NKS", + "codeIso2Country": "CM", + "geonameId": 2223763, + "latitudeCity": 4.95, + "longitudeCity": 9.933333, + "nameCity": "Nkongsamba", + "timezone": "Africa/Douala" + }, + { + "GMT": "2", + "cityId": 5178, + "codeIataCity": "NKU", + "codeIso2Country": "LS", + "geonameId": 0, + "latitudeCity": -29.5, + "longitudeCity": 28.0, + "nameCity": "Nkaus", + "timezone": "Africa/Maseru" + }, + { + "GMT": "-9", + "cityId": 5179, + "codeIataCity": "NKV", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 55.85, + "longitudeCity": -133.21666, + "nameCity": "Nichen Cove", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 5180, + "codeIataCity": "NKY", + "codeIso2Country": "CG", + "geonameId": 0, + "latitudeCity": -4.216667, + "longitudeCity": 13.3, + "nameCity": "Nkayi", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "2", + "cityId": 5181, + "codeIataCity": "NLA", + "codeIso2Country": "ZM", + "geonameId": 901344, + "latitudeCity": -12.993449, + "longitudeCity": 28.665024, + "nameCity": "Ndola", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-8", + "cityId": 5182, + "codeIataCity": "NLC", + "codeIso2Country": "US", + "geonameId": 5350937, + "latitudeCity": 36.3, + "longitudeCity": -119.76667, + "nameCity": "Lemoore", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 5183, + "codeIataCity": "NLD", + "codeIso2Country": "MX", + "geonameId": 3522551, + "latitudeCity": 27.434723, + "longitudeCity": -99.566666, + "nameCity": "Nuevo Laredo", + "timezone": "America/Matamoros" + }, + { + "GMT": "-5", + "cityId": 5184, + "codeIataCity": "NLE", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.841667, + "longitudeCity": -86.225, + "nameCity": "Niles", + "timezone": "America/Detroit" + }, + { + "GMT": "10", + "cityId": 5185, + "codeIataCity": "NLF", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -9.584515, + "longitudeCity": 143.7869, + "nameCity": "Darnley Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "cityId": 5186, + "codeIataCity": "NLG", + "codeIso2Country": "US", + "geonameId": 5869805, + "latitudeCity": 56.00139, + "longitudeCity": -161.1525, + "nameCity": "Nelson Lagoon", + "timezone": "America/Anchorage" + }, + { + "GMT": "11", + "cityId": 5187, + "codeIataCity": "NLK", + "codeIso2Country": "NF", + "geonameId": 2161314, + "latitudeCity": -29.0425, + "longitudeCity": 167.93944, + "nameCity": "Norfolk Island", + "timezone": "Pacific/Norfolk" + }, + { + "GMT": "8", + "cityId": 5188, + "codeIataCity": "NLL", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -21.75, + "longitudeCity": 120.2, + "nameCity": "Nullagine", + "timezone": "Australia/Perth" + }, + { + "GMT": "-8", + "cityId": 5189, + "codeIataCity": "NLN", + "codeIso2Country": "US", + "geonameId": 5563397, + "latitudeCity": 40.7193, + "longitudeCity": -123.9282, + "nameCity": "Kneeland", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "cityId": 5190, + "codeIataCity": "NLP", + "codeIso2Country": "ZA", + "geonameId": 971534, + "latitudeCity": -25.465833, + "longitudeCity": 30.985278, + "nameCity": "Nelspruit", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "8", + "cityId": 5191, + "codeIataCity": "NLS", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.050833, + "longitudeCity": 128.89583, + "nameCity": "Nicholson", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "cityId": 5192, + "codeIataCity": "NLT", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 43.43222, + "longitudeCity": 83.382225, + "nameCity": "Xinyuan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "cityId": 5193, + "codeIataCity": "NLV", + "codeIso2Country": "UA", + "geonameId": 700569, + "latitudeCity": 47.05, + "longitudeCity": 31.916668, + "nameCity": "Nikolaev", + "timezone": "Europe/Kiev" + }, + { + "GMT": "5", + "cityId": 5194, + "codeIataCity": "NMA", + "codeIso2Country": "UZ", + "geonameId": 1513157, + "latitudeCity": 40.983334, + "longitudeCity": 71.6, + "nameCity": "Namangan", + "timezone": "Asia/Tashkent" + }, + { + "GMT": "5.30", + "cityId": 5195, + "codeIataCity": "NMB", + "codeIso2Country": "IN", + "geonameId": 7279741, + "latitudeCity": 20.416668, + "longitudeCity": 72.95, + "nameCity": "Daman", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "cityId": 5196, + "codeIataCity": "NMC", + "codeIso2Country": "BS", + "geonameId": 3571824, + "latitudeCity": 24.59361, + "longitudeCity": -76.82, + "nameCity": "Norman's Cay", + "timezone": "America/Nassau" + }, + { + "GMT": "-9", + "cityId": 5197, + "codeIataCity": "NME", + "codeIso2Country": "US", + "geonameId": 5869937, + "latitudeCity": 60.471046, + "longitudeCity": -164.70084, + "nameCity": "Nightmute", + "timezone": "America/Nome" + }, + { + "GMT": "-5", + "cityId": 5198, + "codeIataCity": "NMG", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 8.366667, + "longitudeCity": -78.28333, + "nameCity": "San Miguel", + "timezone": "America/Panama" + }, + { + "GMT": "-7", + "cityId": 5199, + "codeIataCity": "NML", + "codeIso2Country": "CA", + "geonameId": 6073569, + "latitudeCity": 57.03353, + "longitudeCity": -111.60191, + "nameCity": "Mildred Lake", + "timezone": "America/Edmonton" + }, + { + "GMT": "10", + "cityId": 5200, + "codeIataCity": "NMN", + "codeIso2Country": "PG", + "geonameId": 2089539, + "latitudeCity": -16.316668, + "longitudeCity": 145.06667, + "nameCity": "Nomane", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 5201, + "codeIataCity": "NMP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -20.166668, + "longitudeCity": 143.96666, + "nameCity": "New Moon", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 5202, + "codeIataCity": "NMR", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -27.6, + "longitudeCity": 141.11667, + "nameCity": "Nappa Merry", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "6.30", + "cityId": 5203, + "codeIataCity": "NMS", + "codeIso2Country": "MM", + "geonameId": 1284566, + "latitudeCity": 20.883333, + "longitudeCity": 97.75, + "nameCity": "Namsang", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "6.30", + "cityId": 5204, + "codeIataCity": "NMT", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 23.083332, + "longitudeCity": 97.4, + "nameCity": "Namtu", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "12", + "cityId": 5205, + "codeIataCity": "NMU", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 8.0, + "longitudeCity": 168.13333, + "nameCity": "Namu", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "0", + "cityId": 5206, + "codeIataCity": "NNA", + "codeIso2Country": "MA", + "geonameId": 2538475, + "latitudeCity": 34.266666, + "longitudeCity": -6.666667, + "nameCity": "Kenitra", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "11", + "cityId": 5207, + "codeIataCity": "NNB", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -10.833333, + "longitudeCity": 162.5, + "nameCity": "Santa Ana", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "2", + "cityId": 5208, + "codeIataCity": "NND", + "codeIso2Country": "MZ", + "geonameId": 1033128, + "latitudeCity": -11.083333, + "longitudeCity": 39.1, + "nameCity": "Nangade", + "timezone": "Africa/Maputo" + }, + { + "GMT": "8", + "cityId": 5209, + "codeIataCity": "NNG", + "codeIso2Country": "CN", + "geonameId": 1799869, + "latitudeCity": 22.61321, + "longitudeCity": 108.1675, + "nameCity": "Nanning", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "cityId": 5210, + "codeIataCity": "NNI", + "codeIso2Country": "NA", + "geonameId": 0, + "latitudeCity": -18.816668, + "longitudeCity": 16.916668, + "nameCity": "Namutoni", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-9", + "cityId": 5211, + "codeIataCity": "NNK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 58.733334, + "longitudeCity": -157.01694, + "nameCity": "Naknek", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 5212, + "codeIataCity": "NNL", + "codeIso2Country": "US", + "geonameId": 5870146, + "latitudeCity": 59.978527, + "longitudeCity": -154.83777, + "nameCity": "Nondalton", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "cityId": 5213, + "codeIataCity": "NNM", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 67.61667, + "longitudeCity": 53.15, + "nameCity": "Naryan-Mar", + "timezone": "Europe/Moscow" + }, + { + "GMT": "0", + "cityId": 5214, + "codeIataCity": "NNR", + "codeIso2Country": "IE", + "geonameId": 2964180, + "latitudeCity": 53.216667, + "longitudeCity": -9.466667, + "nameCity": "Spiddal", + "timezone": "Europe/Dublin" + }, + { + "GMT": "7", + "cityId": 5215, + "codeIataCity": "NNT", + "codeIso2Country": "TH", + "geonameId": 1608452, + "latitudeCity": 18.8, + "longitudeCity": 100.78333, + "nameCity": "Nan", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-3", + "cityId": 5216, + "codeIataCity": "NNU", + "codeIso2Country": "BR", + "geonameId": 6318755, + "latitudeCity": -17.816668, + "longitudeCity": -40.333332, + "nameCity": "Nanuque", + "timezone": "America/Bahia" + }, + { + "GMT": "8", + "cityId": 5217, + "codeIataCity": "NNX", + "codeIso2Country": "ID", + "geonameId": 1624725, + "latitudeCity": 4.15, + "longitudeCity": 117.65, + "nameCity": "Nunukan", + "timezone": "Asia/Makassar" + }, + { + "GMT": "8", + "cityId": 5218, + "codeIataCity": "NNY", + "codeIso2Country": "CN", + "geonameId": 1799629, + "latitudeCity": 32.9837, + "longitudeCity": 112.61305, + "nameCity": "Nanyang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "cityId": 5219, + "codeIataCity": "NOA", + "codeIso2Country": "AU", + "geonameId": 2154787, + "latitudeCity": -34.950558, + "longitudeCity": 150.5375, + "nameCity": "Nowra", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "cityId": 5220, + "codeIataCity": "NOB", + "codeIso2Country": "CR", + "geonameId": 3621565, + "latitudeCity": 9.976398, + "longitudeCity": -85.65305, + "nameCity": "Nosara Beach", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "0", + "cityId": 5221, + "codeIataCity": "NOC", + "codeIso2Country": "IE", + "geonameId": 2961299, + "latitudeCity": 53.914, + "longitudeCity": -8.810468, + "nameCity": "Knock", + "timezone": "Europe/Dublin" + }, + { + "GMT": "1", + "cityId": 5222, + "codeIataCity": "NOD", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 53.583332, + "longitudeCity": 7.2, + "nameCity": "Norden", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-7", + "cityId": 5223, + "codeIataCity": "NOG", + "codeIso2Country": "MX", + "geonameId": 0, + "latitudeCity": 31.333332, + "longitudeCity": -110.933334, + "nameCity": "Nogales", + "timezone": "America/Hermosillo" + }, + { + "GMT": "3", + "cityId": 5224, + "codeIataCity": "NOI", + "codeIso2Country": "RU", + "geonameId": 582182, + "latitudeCity": 44.716667, + "longitudeCity": 37.766666, + "nameCity": "Novorossijsk", + "timezone": "Europe/Moscow" + }, + { + "GMT": "5", + "cityId": 5225, + "codeIataCity": "NOJ", + "codeIso2Country": "RU", + "geonameId": 1496503, + "latitudeCity": 63.17673, + "longitudeCity": 75.29459, + "nameCity": "Nojabrxsk", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-4", + "cityId": 5226, + "codeIataCity": "NOK", + "codeIso2Country": "BR", + "geonameId": 6317775, + "latitudeCity": -14.690278, + "longitudeCity": -52.34861, + "nameCity": "Nova Xavantina", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-9", + "cityId": 5227, + "codeIataCity": "NOL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 67.9, + "longitudeCity": -160.71666, + "nameCity": "Nakolik River", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 5228, + "codeIataCity": "NOM", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.3, + "longitudeCity": 142.21666, + "nameCity": "Nomad River", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "12", + "cityId": 5229, + "codeIataCity": "NON", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": -0.680556, + "longitudeCity": 174.35, + "nameCity": "Rotima", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "10", + "cityId": 5230, + "codeIataCity": "NOO", + "codeIso2Country": "PG", + "geonameId": 2089920, + "latitudeCity": -9.2, + "longitudeCity": 147.53334, + "nameCity": "Naoro", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 5231, + "codeIataCity": "NOP", + "codeIso2Country": "TR", + "geonameId": 739600, + "latitudeCity": 42.0175, + "longitudeCity": 35.06889, + "nameCity": "Sinop", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "0", + "cityId": 5232, + "codeIataCity": "NOR", + "codeIso2Country": "IS", + "geonameId": 2632428, + "latitudeCity": 65.166664, + "longitudeCity": -22.0, + "nameCity": "Nordfjordur", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "3", + "cityId": 5233, + "codeIataCity": "NOS", + "codeIso2Country": "MG", + "geonameId": 1058089, + "latitudeCity": -13.311111, + "longitudeCity": 48.31389, + "nameCity": "Nossi-Be", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-8", + "cityId": 5234, + "codeIataCity": "NOT", + "codeIso2Country": "US", + "geonameId": 5378044, + "latitudeCity": 38.143333, + "longitudeCity": -122.55583, + "nameCity": "Novato", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "11", + "cityId": 5235, + "codeIataCity": "NOU", + "codeIso2Country": "NC", + "geonameId": 2139521, + "latitudeCity": -22.2758, + "longitudeCity": 166.458, + "nameCity": "Noumea", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "1", + "cityId": 5236, + "codeIataCity": "NOV", + "codeIso2Country": "AO", + "geonameId": 3348313, + "latitudeCity": -12.805556, + "longitudeCity": 15.757222, + "nameCity": "Huambo", + "timezone": "Africa/Luanda" + }, + { + "GMT": "7", + "cityId": 5237, + "codeIataCity": "NOZ", + "codeIso2Country": "RU", + "geonameId": 1496990, + "latitudeCity": 53.75, + "longitudeCity": 87.166664, + "nameCity": "Novokuznetsk", + "timezone": "Asia/Novokuznetsk" + }, + { + "GMT": "12", + "cityId": 5238, + "codeIataCity": "NPE", + "codeIso2Country": "NZ", + "geonameId": 2186313, + "latitudeCity": -39.46667, + "longitudeCity": 176.87225, + "nameCity": "Napier", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "10", + "cityId": 5239, + "codeIataCity": "NPG", + "codeIso2Country": "PG", + "geonameId": 2089578, + "latitudeCity": -6.133333, + "longitudeCity": 143.36667, + "nameCity": "Nipa", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "cityId": 5240, + "codeIataCity": "NPH", + "codeIso2Country": "US", + "geonameId": 5543853, + "latitudeCity": 39.738888, + "longitudeCity": -111.870834, + "nameCity": "Nephi", + "timezone": "America/Denver" + }, + { + "GMT": "12", + "cityId": 5241, + "codeIataCity": "NPL", + "codeIso2Country": "NZ", + "geonameId": 2186239, + "latitudeCity": -39.01013, + "longitudeCity": 174.17932, + "nameCity": "New Plymouth", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "8", + "cityId": 5242, + "codeIataCity": "NPO", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -0.333333, + "longitudeCity": 111.73333, + "nameCity": "Nangapinoh", + "timezone": "Asia/Makassar" + }, + { + "GMT": "9.30", + "cityId": 5243, + "codeIataCity": "NPP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -22.5, + "longitudeCity": 132.68333, + "nameCity": "Napperby", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-3", + "cityId": 5244, + "codeIataCity": "NPR", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -7.126, + "longitudeCity": -55.4, + "nameCity": "Novo Progresso", + "timezone": "America/Santarem" + }, + { + "GMT": "-5", + "cityId": 5245, + "codeIataCity": "NPT", + "codeIso2Country": "US", + "geonameId": 5223358, + "latitudeCity": 41.530834, + "longitudeCity": -71.2825, + "nameCity": "Newport", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 5246, + "codeIataCity": "NPU", + "codeIso2Country": "CO", + "geonameId": 3675443, + "latitudeCity": 4.95, + "longitudeCity": -71.916664, + "nameCity": "San Pedro Uraba", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 5247, + "codeIataCity": "NQI", + "codeIso2Country": "US", + "geonameId": 4703384, + "latitudeCity": 27.516666, + "longitudeCity": -97.86667, + "nameCity": "Kingsville", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 5248, + "codeIataCity": "NQL", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -14.0, + "longitudeCity": -48.983334, + "nameCity": "Niquelandia", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-3", + "cityId": 5249, + "codeIataCity": "NQN", + "codeIso2Country": "AR", + "geonameId": 3843123, + "latitudeCity": -38.95, + "longitudeCity": -68.15222, + "nameCity": "Neuquen", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "0", + "cityId": 5250, + "codeIataCity": "NQT", + "codeIso2Country": "GB", + "geonameId": 2641170, + "latitudeCity": 52.955115, + "longitudeCity": -1.149172, + "nameCity": "Nottingham", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "cityId": 5251, + "codeIataCity": "NQU", + "codeIso2Country": "CO", + "geonameId": 3673690, + "latitudeCity": 5.7, + "longitudeCity": -77.28333, + "nameCity": "Nuqui", + "timezone": "America/Bogota" + }, + { + "GMT": "0", + "cityId": 5252, + "codeIataCity": "NQY", + "codeIso2Country": "GB", + "geonameId": 2641589, + "latitudeCity": 50.43745, + "longitudeCity": -4.997922, + "nameCity": "Newquay", + "timezone": "Europe/London" + }, + { + "GMT": "10", + "cityId": 5253, + "codeIataCity": "NRA", + "codeIso2Country": "AU", + "geonameId": 2155731, + "latitudeCity": -34.705643, + "longitudeCity": 146.5117, + "nameCity": "Narrandera", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "cityId": 5254, + "codeIataCity": "NRB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 30.333332, + "longitudeCity": -81.65, + "nameCity": "Mayport", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 5255, + "codeIataCity": "NRC", + "codeIso2Country": "US", + "geonameId": 5340911, + "latitudeCity": 37.38333, + "longitudeCity": -121.1, + "nameCity": "Crows Landing", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 5256, + "codeIataCity": "NRD", + "codeIso2Country": "DE", + "geonameId": 2862041, + "latitudeCity": 53.833332, + "longitudeCity": 7.166667, + "nameCity": "Norderney", + "timezone": "Europe/Berlin" + }, + { + "GMT": "9", + "cityId": 5257, + "codeIataCity": "NRE", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.816667, + "longitudeCity": 126.71667, + "nameCity": "Namrole", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "cityId": 5258, + "codeIataCity": "NRG", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -32.933334, + "longitudeCity": 117.166664, + "nameCity": "Narrogin", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "cityId": 5259, + "codeIataCity": "NRI", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 35.166668, + "longitudeCity": -99.833336, + "nameCity": "Shangri-la", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 5260, + "codeIataCity": "NRK", + "codeIso2Country": "SE", + "geonameId": 2688368, + "latitudeCity": 58.594702, + "longitudeCity": 16.183607, + "nameCity": "Norrkoping", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "0", + "cityId": 5261, + "codeIataCity": "NRL", + "codeIso2Country": "GB", + "geonameId": 8299623, + "latitudeCity": 59.370277, + "longitudeCity": -2.433333, + "nameCity": "North Ronaldsay", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 5262, + "codeIataCity": "NRM", + "codeIso2Country": "ML", + "geonameId": 0, + "latitudeCity": 15.25, + "longitudeCity": -7.283333, + "nameCity": "Nara", + "timezone": "Africa/Bamako" + }, + { + "GMT": "-4", + "cityId": 5263, + "codeIataCity": "NRR", + "codeIso2Country": "PR", + "geonameId": 4568127, + "latitudeCity": 18.25, + "longitudeCity": -65.638885, + "nameCity": "Roosevelt Roads", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "-8", + "cityId": 5264, + "codeIataCity": "NRS", + "codeIso2Country": "US", + "geonameId": 5391811, + "latitudeCity": 32.837223, + "longitudeCity": -115.57472, + "nameCity": "Imperial Beach", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "cityId": 5265, + "codeIataCity": "NRY", + "codeIso2Country": "AU", + "geonameId": 2068110, + "latitudeCity": -16.016666, + "longitudeCity": 129.23334, + "nameCity": "Newry", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "cityId": 5266, + "codeIataCity": "NSE", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 30.633333, + "longitudeCity": -87.05, + "nameCity": "Milton", + "timezone": "America/Chicago" + }, + { + "GMT": "3.30", + "cityId": 5267, + "codeIataCity": "NSH", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 36.666668, + "longitudeCity": 51.5, + "nameCity": "Now Shahr", + "timezone": "Asia/Tehran" + }, + { + "GMT": "7", + "cityId": 5268, + "codeIataCity": "NSK", + "codeIso2Country": "RU", + "geonameId": 1497337, + "latitudeCity": 69.32312, + "longitudeCity": 87.339806, + "nameCity": "Norilsk", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "-6", + "cityId": 5269, + "codeIataCity": "NSL", + "codeIso2Country": "US", + "geonameId": 5047587, + "latitudeCity": 43.98774, + "longitudeCity": -95.75585, + "nameCity": "Slayton", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 5270, + "codeIataCity": "NSM", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -32.2, + "longitudeCity": 121.75, + "nameCity": "Norseman", + "timezone": "Australia/Perth" + }, + { + "GMT": "12", + "cityId": 5271, + "codeIataCity": "NSN", + "codeIso2Country": "NZ", + "geonameId": 2186280, + "latitudeCity": -41.299976, + "longitudeCity": 173.22498, + "nameCity": "Nelson", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "10", + "cityId": 5272, + "codeIataCity": "NSO", + "codeIso2Country": "AU", + "geonameId": 2150096, + "latitudeCity": -32.03611, + "longitudeCity": 150.8325, + "nameCity": "Scone", + "timezone": "Australia/Sydney" + }, + { + "GMT": "8", + "cityId": 5273, + "codeIataCity": "NSP", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 14.5, + "longitudeCity": 120.9, + "nameCity": "Sangley Point", + "timezone": "Asia/Manila" + }, + { + "GMT": "7", + "cityId": 5274, + "codeIataCity": "NST", + "codeIso2Country": "TH", + "geonameId": 1151933, + "latitudeCity": 8.466667, + "longitudeCity": 99.95, + "nameCity": "Nakhon Si Thammarat", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "10", + "cityId": 5275, + "codeIataCity": "NSV", + "codeIso2Country": "AU", + "geonameId": 2155132, + "latitudeCity": -26.416668, + "longitudeCity": 153.03334, + "nameCity": "Noosaville", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-4", + "cityId": 5276, + "codeIataCity": "NSX", + "codeIso2Country": "VG", + "geonameId": 0, + "latitudeCity": 18.5, + "longitudeCity": -64.36667, + "nameCity": "Nord Sound", + "timezone": "America/Tortola" + }, + { + "GMT": "1", + "cityId": 5277, + "codeIataCity": "NSY", + "codeIso2Country": "IT", + "geonameId": 2525068, + "latitudeCity": 37.4, + "longitudeCity": 14.933333, + "nameCity": "Sigonella", + "timezone": "Europe/Rome" + }, + { + "GMT": "8", + "cityId": 5278, + "codeIataCity": "NSZ", + "codeIso2Country": "CN", + "geonameId": 1913164, + "latitudeCity": 22.75027, + "longitudeCity": 113.57085, + "nameCity": "Nansha", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "12", + "cityId": 5279, + "codeIataCity": "NTA", + "codeIso2Country": "FJ", + "geonameId": 2198734, + "latitudeCity": -18.083332, + "longitudeCity": 177.31667, + "nameCity": "Natadola", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "1", + "cityId": 5280, + "codeIataCity": "NTB", + "codeIso2Country": "NO", + "geonameId": 3143244, + "latitudeCity": 59.583332, + "longitudeCity": 9.283333, + "nameCity": "Notodden", + "timezone": "Europe/Oslo" + }, + { + "GMT": "2", + "cityId": 5281, + "codeIataCity": "NTC", + "codeIso2Country": "MZ", + "geonameId": 1103934, + "latitudeCity": -13.366667, + "longitudeCity": 33.85, + "nameCity": "Santa Carolina", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-8", + "cityId": 5282, + "codeIataCity": "NTD", + "codeIso2Country": "US", + "geonameId": 5384339, + "latitudeCity": 34.15, + "longitudeCity": -119.2, + "nameCity": "Port Hueneme", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 5283, + "codeIataCity": "NTE", + "codeIso2Country": "FR", + "geonameId": 2990969, + "latitudeCity": 47.218371, + "longitudeCity": -1.553621, + "nameCity": "Nantes", + "timezone": "Europe/Paris" + }, + { + "GMT": "8", + "cityId": 5284, + "codeIataCity": "NTG", + "codeIso2Country": "CN", + "geonameId": 1799722, + "latitudeCity": 32.07292, + "longitudeCity": 120.9756, + "nameCity": "Nantong", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9", + "cityId": 5285, + "codeIataCity": "NTI", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -2.333333, + "longitudeCity": 133.25, + "nameCity": "Bintuni", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-7", + "cityId": 5286, + "codeIataCity": "NTJ", + "codeIso2Country": "US", + "geonameId": 5542758, + "latitudeCity": 39.266666, + "longitudeCity": -111.63333, + "nameCity": "Manti", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "cityId": 5287, + "codeIataCity": "NTL", + "codeIso2Country": "AU", + "geonameId": 2155472, + "latitudeCity": -32.916667, + "longitudeCity": 151.75, + "nameCity": "Newcastle", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-3", + "cityId": 5288, + "codeIataCity": "NTM", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -9.183333, + "longitudeCity": -48.5, + "nameCity": "Miracema Do Norte", + "timezone": "America/Araguaina" + }, + { + "GMT": "10", + "cityId": 5289, + "codeIataCity": "NTN", + "codeIso2Country": "AU", + "geonameId": 2155085, + "latitudeCity": -17.685398, + "longitudeCity": 141.07307, + "nameCity": "Normanton", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-1", + "cityId": 5290, + "codeIataCity": "NTO", + "codeIso2Country": "CV", + "geonameId": 3374462, + "latitudeCity": 17.066668, + "longitudeCity": -25.083332, + "nameCity": "Santo Antao", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "9", + "cityId": 5291, + "codeIataCity": "NTQ", + "codeIso2Country": "JP", + "geonameId": 1848976, + "latitudeCity": 37.294678, + "longitudeCity": 136.9568, + "nameCity": "Wajima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "13", + "cityId": 5292, + "codeIataCity": "NTT", + "codeIso2Country": "TO", + "geonameId": 0, + "latitudeCity": -15.5, + "longitudeCity": -174.0, + "nameCity": "Niuatoputapu", + "timezone": "Pacific/Tongatapu" + }, + { + "GMT": "-5", + "cityId": 5293, + "codeIataCity": "NTU", + "codeIso2Country": "US", + "geonameId": 4791259, + "latitudeCity": 36.816666, + "longitudeCity": -76.03333, + "nameCity": "Oceana", + "timezone": "America/New_York" + }, + { + "GMT": "7", + "cityId": 5294, + "codeIataCity": "NTX", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 3.95, + "longitudeCity": 108.38333, + "nameCity": "Natuna Ranai", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "2", + "cityId": 5295, + "codeIataCity": "NTY", + "codeIso2Country": "ZA", + "geonameId": 965192, + "latitudeCity": -26.033333, + "longitudeCity": 27.916668, + "nameCity": "Sun City", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "5.30", + "cityId": 5296, + "codeIataCity": "NUA", + "codeIso2Country": "LK", + "geonameId": 1232783, + "latitudeCity": 6.966667, + "longitudeCity": 80.76667, + "nameCity": "Nuwara Eliya", + "timezone": "Asia/Colombo" + }, + { + "GMT": "9.30", + "cityId": 5297, + "codeIataCity": "NUB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -14.271667, + "longitudeCity": 135.71638, + "nameCity": "Numbulwar", + "timezone": "Australia/Darwin" + }, + { + "GMT": "3", + "cityId": 5298, + "codeIataCity": "NUD", + "codeIso2Country": "SD", + "geonameId": 0, + "latitudeCity": 12.75, + "longitudeCity": 28.416668, + "nameCity": "En Nahud", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "1", + "cityId": 5299, + "codeIataCity": "NUE", + "codeIso2Country": "DE", + "geonameId": 2861650, + "latitudeCity": 49.45052, + "longitudeCity": 11.08048, + "nameCity": "N?rnberg", + "timezone": "Europe/Berlin" + }, + { + "GMT": "5.30", + "cityId": 5300, + "codeIataCity": "NUF", + "codeIso2Country": "LK", + "geonameId": 1244596, + "latitudeCity": 6.8916, + "longitudeCity": 80.5955, + "nameCity": "Hatton", + "timezone": "Asia/Colombo" + }, + { + "GMT": "10", + "cityId": 5301, + "codeIataCity": "NUG", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -3.466667, + "longitudeCity": 150.81667, + "nameCity": "Nuguria", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 5302, + "codeIataCity": "NUH", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 5.616667, + "longitudeCity": -72.21667, + "nameCity": "Nunchia", + "timezone": "America/Bogota" + }, + { + "GMT": "-9", + "cityId": 5303, + "codeIataCity": "NUI", + "codeIso2Country": "US", + "geonameId": 5870441, + "latitudeCity": 70.209724, + "longitudeCity": -151.00555, + "nameCity": "Nuiqsut", + "timezone": "America/Anchorage" + }, + { + "GMT": "3.30", + "cityId": 5304, + "codeIataCity": "NUJ", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 35.2, + "longitudeCity": 48.666668, + "nameCity": "Nojeh", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-10", + "cityId": 5305, + "codeIataCity": "NUK", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -19.183332, + "longitudeCity": -138.7, + "nameCity": "Nukutavake", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-9", + "cityId": 5306, + "codeIataCity": "NUL", + "codeIso2Country": "US", + "geonameId": 5870463, + "latitudeCity": 64.727776, + "longitudeCity": -158.07666, + "nameCity": "Nulato", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 5307, + "codeIataCity": "NUP", + "codeIso2Country": "US", + "geonameId": 5870502, + "latitudeCity": 60.894444, + "longitudeCity": -162.46666, + "nameCity": "Nunapitchuk", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "cityId": 5308, + "codeIataCity": "NUQ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 37.38333, + "longitudeCity": -122.083336, + "nameCity": "Mountain View", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "cityId": 5309, + "codeIataCity": "NUR", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -31.433332, + "longitudeCity": 130.91667, + "nameCity": "Nullarbor", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "11", + "cityId": 5310, + "codeIataCity": "NUS", + "codeIso2Country": "VU", + "geonameId": 2135517, + "latitudeCity": -16.058332, + "longitudeCity": 167.4, + "nameCity": "Norsup", + "timezone": "Pacific/Efate" + }, + { + "GMT": "10", + "cityId": 5311, + "codeIataCity": "NUT", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.633333, + "longitudeCity": 151.38333, + "nameCity": "Nutuve", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 5312, + "codeIataCity": "NUU", + "codeIso2Country": "KE", + "geonameId": 184707, + "latitudeCity": -0.3, + "longitudeCity": 36.15, + "nameCity": "Nakuru", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-8", + "cityId": 5313, + "codeIataCity": "NUW", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 48.351944, + "longitudeCity": -122.65583, + "nameCity": "Whidbey Island", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "5", + "cityId": 5314, + "codeIataCity": "NUX", + "codeIso2Country": "RU", + "geonameId": 1496511, + "latitudeCity": 66.07335, + "longitudeCity": 76.522835, + "nameCity": "Novy Urengoy", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-5", + "cityId": 5315, + "codeIataCity": "NVA", + "codeIso2Country": "CO", + "geonameId": 3673899, + "latitudeCity": 2.946824, + "longitudeCity": -75.295525, + "nameCity": "Neiva", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 5316, + "codeIataCity": "NVD", + "codeIso2Country": "US", + "geonameId": 4392768, + "latitudeCity": 37.85139, + "longitudeCity": -94.30389, + "nameCity": "Nevada", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 5317, + "codeIataCity": "NVG", + "codeIso2Country": "NI", + "geonameId": 3619954, + "latitudeCity": 11.666667, + "longitudeCity": -84.45, + "nameCity": "Nueva Guinea", + "timezone": "America/Managua" + }, + { + "GMT": "5", + "cityId": 5318, + "codeIataCity": "NVI", + "codeIso2Country": "UZ", + "geonameId": 1537002, + "latitudeCity": 40.115, + "longitudeCity": 65.159164, + "nameCity": "Navoi", + "timezone": "Asia/Samarkand" + }, + { + "GMT": "1", + "cityId": 5319, + "codeIataCity": "NVK", + "codeIso2Country": "NO", + "geonameId": 3144987, + "latitudeCity": 68.425, + "longitudeCity": 17.425, + "nameCity": "Narvik", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-8", + "cityId": 5320, + "codeIataCity": "NVN", + "codeIso2Country": "US", + "geonameId": 5327158, + "latitudeCity": 39.82018, + "longitudeCity": -120.37882, + "nameCity": "Beckwourth", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "cityId": 5321, + "codeIataCity": "NVP", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -5.133333, + "longitudeCity": -60.36667, + "nameCity": "Novo Aripuana", + "timezone": "America/Manaus" + }, + { + "GMT": "3", + "cityId": 5322, + "codeIataCity": "NVR", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 58.516666, + "longitudeCity": 31.3, + "nameCity": "Novgorod", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "cityId": 5323, + "codeIataCity": "NVS", + "codeIso2Country": "FR", + "geonameId": 2990474, + "latitudeCity": 47.0, + "longitudeCity": 3.15, + "nameCity": "Nevers", + "timezone": "Europe/Paris" + }, + { + "GMT": "-3", + "cityId": 5324, + "codeIataCity": "NVT", + "codeIso2Country": "BR", + "geonameId": 3456370, + "latitudeCity": -26.866667, + "longitudeCity": -48.63333, + "nameCity": "Navegantes", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "5.30", + "cityId": 5325, + "codeIataCity": "NVY", + "codeIso2Country": "IN", + "geonameId": 1259425, + "latitudeCity": 11.6, + "longitudeCity": 79.433334, + "nameCity": "Neyveli", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "3", + "cityId": 5326, + "codeIataCity": "NWA", + "codeIso2Country": "KM", + "geonameId": 0, + "latitudeCity": -12.283333, + "longitudeCity": 43.766666, + "nameCity": "Moheli", + "timezone": "Indian/Comoro" + }, + { + "GMT": "-5", + "cityId": 5327, + "codeIataCity": "NWH", + "codeIso2Country": "US", + "geonameId": 5084868, + "latitudeCity": 43.36667, + "longitudeCity": -72.166664, + "nameCity": "Newport", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 5328, + "codeIataCity": "NWI", + "codeIso2Country": "GB", + "geonameId": 2641181, + "latitudeCity": 52.669533, + "longitudeCity": 1.276782, + "nameCity": "Norwich", + "timezone": "Europe/London" + }, + { + "GMT": "-2:30", + "cityId": 5329, + "codeIataCity": "NWP", + "codeIso2Country": "CA", + "geonameId": 7732472, + "latitudeCity": 47.3, + "longitudeCity": -53.966667, + "nameCity": "Argentia", + "timezone": "America/St_Johns" + }, + { + "GMT": "10", + "cityId": 5330, + "codeIataCity": "NWT", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -9.983333, + "longitudeCity": 149.73334, + "nameCity": "Nowata", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 5331, + "codeIataCity": "NXX", + "codeIso2Country": "US", + "geonameId": 4560349, + "latitudeCity": 40.2, + "longitudeCity": -75.13333, + "nameCity": "Willow Grove", + "timezone": "America/New_York" + }, + { + "GMT": "5", + "cityId": 5332, + "codeIataCity": "NYA", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 62.101074, + "longitudeCity": 65.60563, + "nameCity": "Nyagan", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-5", + "cityId": 5333, + "codeIataCity": "NYC", + "codeIso2Country": "US", + "geonameId": 5128581, + "latitudeCity": 40.714353, + "longitudeCity": -74.005973, + "nameCity": "New York", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 5334, + "codeIataCity": "NYE", + "codeIso2Country": "KE", + "geonameId": 184433, + "latitudeCity": -0.416667, + "longitudeCity": 36.95, + "nameCity": "Nyeri", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-5", + "cityId": 5335, + "codeIataCity": "NYG", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.516666, + "longitudeCity": -77.28333, + "nameCity": "Quantico", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 5336, + "codeIataCity": "NYI", + "codeIso2Country": "GH", + "geonameId": 2295021, + "latitudeCity": 7.333333, + "longitudeCity": -2.333333, + "nameCity": "Sunyani", + "timezone": "Africa/Accra" + }, + { + "GMT": "3", + "cityId": 5337, + "codeIataCity": "NYK", + "codeIso2Country": "KE", + "geonameId": 184433, + "latitudeCity": 0.016667, + "longitudeCity": 37.066666, + "nameCity": "Nanyuki", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "5", + "cityId": 5338, + "codeIataCity": "NYM", + "codeIso2Country": "RU", + "geonameId": 1498087, + "latitudeCity": 65.48333, + "longitudeCity": 72.71667, + "nameCity": "Nadym", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "10", + "cityId": 5339, + "codeIataCity": "NYN", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -31.566668, + "longitudeCity": 147.18333, + "nameCity": "Nyngan", + "timezone": "Australia/Sydney" + }, + { + "GMT": "6.30", + "cityId": 5340, + "codeIataCity": "NYT", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 19.6225, + "longitudeCity": 96.201385, + "nameCity": "Nay Pyi Taw", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "6.30", + "cityId": 5341, + "codeIataCity": "NYU", + "codeIso2Country": "MM", + "geonameId": 1303350, + "latitudeCity": 21.175343, + "longitudeCity": 94.92832, + "nameCity": "Nyaung-u", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "1", + "cityId": 5342, + "codeIataCity": "NZA", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -8.383333, + "longitudeCity": -21.433332, + "nameCity": "Nzagi", + "timezone": "Africa/Luanda" + }, + { + "GMT": "0", + "cityId": 5343, + "codeIataCity": "NZE", + "codeIso2Country": "GN", + "geonameId": 0, + "latitudeCity": 7.808333, + "longitudeCity": -8.702778, + "nameCity": "Nzerekore", + "timezone": "Africa/Conakry" + }, + { + "GMT": "8", + "cityId": 5344, + "codeIataCity": "NZH", + "codeIso2Country": "CN", + "geonameId": 2035836, + "latitudeCity": 49.57059, + "longitudeCity": 117.33163, + "nameCity": "Manzhouli", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 5345, + "codeIataCity": "NZW", + "codeIso2Country": "US", + "geonameId": 4951568, + "latitudeCity": 42.166668, + "longitudeCity": -70.933334, + "nameCity": "South Weymouth", + "timezone": "America/New_York" + }, + { + "GMT": "4.30", + "cityId": 5346, + "codeIataCity": "OAA", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Shank", + "timezone": "Asia/Kabul" + }, + { + "GMT": "10", + "cityId": 5347, + "codeIataCity": "OAG", + "codeIso2Country": "AU", + "geonameId": 2154219, + "latitudeCity": -33.3816, + "longitudeCity": 149.12447, + "nameCity": "Orange", + "timezone": "Australia/Sydney" + }, + { + "GMT": "4.30", + "cityId": 5348, + "codeIataCity": "OAH", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Shindand", + "timezone": "Asia/Kabul" + }, + { + "GMT": "4.30", + "cityId": 5349, + "codeIataCity": "OAI", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 34.959614, + "longitudeCity": 69.27051, + "nameCity": "Bagram", + "timezone": "Asia/Kabul" + }, + { + "GMT": "-5", + "cityId": 5350, + "codeIataCity": "OAJ", + "codeIso2Country": "US", + "geonameId": 4473083, + "latitudeCity": 34.83044, + "longitudeCity": -77.605835, + "nameCity": "Jacksonville", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "cityId": 5351, + "codeIataCity": "OAK", + "codeIso2Country": "US", + "geonameId": 5378538, + "latitudeCity": 37.804364, + "longitudeCity": -122.271114, + "nameCity": "Oakland", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "cityId": 5352, + "codeIataCity": "OAL", + "codeIso2Country": "BR", + "geonameId": 3925212, + "latitudeCity": -11.433889, + "longitudeCity": -61.4825, + "nameCity": "Cacoal", + "timezone": "America/Porto_Velho" + }, + { + "GMT": "12", + "cityId": 5353, + "codeIataCity": "OAM", + "codeIso2Country": "NZ", + "geonameId": 6215045, + "latitudeCity": -44.97028, + "longitudeCity": 171.0819, + "nameCity": "Oamaru", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-6", + "cityId": 5354, + "codeIataCity": "OAN", + "codeIso2Country": "HN", + "geonameId": 3609696, + "latitudeCity": 15.504444, + "longitudeCity": -86.57472, + "nameCity": "Olanchito", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "4.30", + "cityId": 5355, + "codeIataCity": "OAS", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 33.1258, + "longitudeCity": 68.8386, + "nameCity": "Sharana", + "timezone": "Asia/Kabul" + }, + { + "GMT": "-6", + "cityId": 5356, + "codeIataCity": "OAX", + "codeIso2Country": "MX", + "geonameId": 3979509, + "latitudeCity": 17.000883, + "longitudeCity": -96.721634, + "nameCity": "Oaxaca", + "timezone": "America/Mexico_City" + }, + { + "GMT": "4.30", + "cityId": 5357, + "codeIataCity": "OAZ", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 31.1, + "longitudeCity": 61.983334, + "nameCity": "Camp Bastion", + "timezone": "Asia/Kabul" + }, + { + "GMT": "10", + "cityId": 5358, + "codeIataCity": "OBA", + "codeIso2Country": "AU", + "geonameId": 2154542, + "latitudeCity": -21.0, + "longitudeCity": 139.0, + "nameCity": "Oban", + "timezone": "Australia/Sydney" + }, + { + "GMT": "3", + "cityId": 5359, + "codeIataCity": "OBC", + "codeIso2Country": "DJ", + "geonameId": 0, + "latitudeCity": 11.983333, + "longitudeCity": 43.266666, + "nameCity": "Obock", + "timezone": "Africa/Djibouti" + }, + { + "GMT": "9", + "cityId": 5360, + "codeIataCity": "OBD", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.9, + "longitudeCity": 136.2, + "nameCity": "Obano", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-5", + "cityId": 5361, + "codeIataCity": "OBE", + "codeIso2Country": "US", + "geonameId": 4156018, + "latitudeCity": 27.25, + "longitudeCity": -80.833336, + "nameCity": "Okeechobee", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 5362, + "codeIataCity": "OBF", + "codeIso2Country": "DE", + "geonameId": 2867714, + "latitudeCity": 48.083332, + "longitudeCity": 11.283333, + "nameCity": "Oberpfaffenhofen", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-3", + "cityId": 5363, + "codeIataCity": "OBI", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -1.916667, + "longitudeCity": -55.516666, + "nameCity": "Obidos", + "timezone": "America/Santarem" + }, + { + "GMT": "-6", + "cityId": 5364, + "codeIataCity": "OBK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.11667, + "longitudeCity": -87.816666, + "nameCity": "Northbrook", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 5365, + "codeIataCity": "OBL", + "codeIso2Country": "BE", + "geonameId": 2800866, + "latitudeCity": 51.266666, + "longitudeCity": 4.75, + "nameCity": "Zoersel", + "timezone": "Europe/Brussels" + }, + { + "GMT": "10", + "cityId": 5366, + "codeIataCity": "OBM", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.75, + "longitudeCity": 147.6, + "nameCity": "Morobe", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "cityId": 5367, + "codeIataCity": "OBN", + "codeIso2Country": "GB", + "geonameId": 2641108, + "latitudeCity": 56.465275, + "longitudeCity": -5.396494, + "nameCity": "Oban", + "timezone": "Europe/London" + }, + { + "GMT": "9", + "cityId": 5368, + "codeIataCity": "OBO", + "codeIso2Country": "JP", + "geonameId": 2128815, + "latitudeCity": 42.732002, + "longitudeCity": 143.21243, + "nameCity": "Obihiro", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "cityId": 5369, + "codeIataCity": "OBS", + "codeIso2Country": "FR", + "geonameId": 2990363, + "latitudeCity": 44.666668, + "longitudeCity": 4.7, + "nameCity": "Aubenas", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 5370, + "codeIataCity": "OBT", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.4, + "longitudeCity": -79.416664, + "nameCity": "Oakland", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 5371, + "codeIataCity": "OBU", + "codeIso2Country": "US", + "geonameId": 5866556, + "latitudeCity": 66.91055, + "longitudeCity": -156.88333, + "nameCity": "Kobuk", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 5372, + "codeIataCity": "OBX", + "codeIso2Country": "PG", + "geonameId": 2089292, + "latitudeCity": -7.583333, + "longitudeCity": 141.31667, + "nameCity": "Obo", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-1", + "cityId": 5373, + "codeIataCity": "OBY", + "codeIso2Country": "GL", + "geonameId": 0, + "latitudeCity": 70.583336, + "longitudeCity": -21.666668, + "nameCity": "Ittoqqortoormiit", + "timezone": "America/Scoresbysund" + }, + { + "GMT": "-5", + "cityId": 5374, + "codeIataCity": "OCA", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 25.325277, + "longitudeCity": -80.27472, + "nameCity": "Ocean Reef", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 5375, + "codeIataCity": "OCC", + "codeIso2Country": "EC", + "geonameId": 3658999, + "latitudeCity": -0.462171, + "longitudeCity": -76.98596, + "nameCity": "Coca", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-5", + "cityId": 5376, + "codeIataCity": "OCE", + "codeIso2Country": "US", + "geonameId": 4364312, + "latitudeCity": 38.316666, + "longitudeCity": -75.11667, + "nameCity": "Ocean City", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 5377, + "codeIataCity": "OCF", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 29.175556, + "longitudeCity": -82.226944, + "nameCity": "Ocala", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 5378, + "codeIataCity": "OCH", + "codeIso2Country": "US", + "geonameId": 4713735, + "latitudeCity": 31.603513, + "longitudeCity": -94.655487, + "nameCity": "Nacogdoches", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 5379, + "codeIataCity": "OCI", + "codeIso2Country": "US", + "geonameId": 5873776, + "latitudeCity": 60.25, + "longitudeCity": -147.86667, + "nameCity": "Oceanic", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 5380, + "codeIataCity": "OCJ", + "codeIso2Country": "JM", + "geonameId": 3489239, + "latitudeCity": 18.400557, + "longitudeCity": -76.96972, + "nameCity": "Ocho Rios", + "timezone": "America/Jamaica" + }, + { + "GMT": "-8", + "cityId": 5381, + "codeIataCity": "OCN", + "codeIso2Country": "US", + "geonameId": 5391811, + "latitudeCity": 33.218613, + "longitudeCity": -117.35333, + "nameCity": "Oceanside", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 5382, + "codeIataCity": "OCV", + "codeIso2Country": "CO", + "geonameId": 3690465, + "latitudeCity": 8.25, + "longitudeCity": -73.333336, + "nameCity": "Ocana", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 5383, + "codeIataCity": "OCW", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 35.55, + "longitudeCity": -77.05, + "nameCity": "Washington", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 5384, + "codeIataCity": "ODA", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 8.003889, + "longitudeCity": 22.401667, + "nameCity": "Ouadda", + "timezone": "Africa/Bangui" + }, + { + "GMT": "1", + "cityId": 5385, + "codeIataCity": "ODB", + "codeIso2Country": "ES", + "geonameId": 2519240, + "latitudeCity": 37.884727, + "longitudeCity": -4.779152, + "nameCity": "Cordoba", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-8", + "cityId": 5386, + "codeIataCity": "ODC", + "codeIso2Country": "US", + "geonameId": 5373900, + "latitudeCity": 37.75691, + "longitudeCity": -120.79951, + "nameCity": "Oakdale", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "cityId": 5387, + "codeIataCity": "ODD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -27.550278, + "longitudeCity": 135.45, + "nameCity": "Oodnadatta", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "1", + "cityId": 5388, + "codeIataCity": "ODE", + "codeIso2Country": "DK", + "geonameId": 2615876, + "latitudeCity": 55.403756, + "longitudeCity": 10.40237, + "nameCity": "Odense", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "0", + "cityId": 5389, + "codeIataCity": "ODH", + "codeIso2Country": "GB", + "geonameId": 2643743, + "latitudeCity": 51.25, + "longitudeCity": -0.95, + "nameCity": "Odiham", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 5390, + "codeIataCity": "ODJ", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 8.916667, + "longitudeCity": 22.883333, + "nameCity": "Ouanda Djalle", + "timezone": "Africa/Bangui" + }, + { + "GMT": "9.30", + "cityId": 5391, + "codeIataCity": "ODL", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -26.716667, + "longitudeCity": 140.63333, + "nameCity": "Cordillo Downs", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "8", + "cityId": 5392, + "codeIataCity": "ODN", + "codeIso2Country": "MY", + "geonameId": 1737826, + "latitudeCity": 4.033333, + "longitudeCity": 115.066666, + "nameCity": "Long Seridan", + "timezone": "Asia/Kuching" + }, + { + "GMT": "8", + "cityId": 5393, + "codeIataCity": "ODO", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 57.86639, + "longitudeCity": 114.2425, + "nameCity": "Bodaybo", + "timezone": "Asia/Irkutsk" + }, + { + "GMT": "8", + "cityId": 5394, + "codeIataCity": "ODR", + "codeIso2Country": "AU", + "geonameId": 2059811, + "latitudeCity": -17.5, + "longitudeCity": 128.8, + "nameCity": "Ord River", + "timezone": "Australia/Perth" + }, + { + "GMT": "2", + "cityId": 5395, + "codeIataCity": "ODS", + "codeIso2Country": "UA", + "geonameId": 698740, + "latitudeCity": 46.44101, + "longitudeCity": 30.676718, + "nameCity": "Odessa", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-8", + "cityId": 5396, + "codeIataCity": "ODW", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 48.25139, + "longitudeCity": -122.68611, + "nameCity": "Oak Harbor", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "7", + "cityId": 5397, + "codeIataCity": "ODY", + "codeIso2Country": "LA", + "geonameId": 1655559, + "latitudeCity": 20.583332, + "longitudeCity": 104.166664, + "nameCity": "Oudomxay", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-5", + "cityId": 5398, + "codeIataCity": "OEA", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.683334, + "longitudeCity": -87.53333, + "nameCity": "Vincennes", + "timezone": "America/Indiana/Vincennes" + }, + { + "GMT": "9", + "cityId": 5399, + "codeIataCity": "OEC", + "codeIso2Country": "TL", + "geonameId": 0, + "latitudeCity": -9.205, + "longitudeCity": 124.34167, + "nameCity": "Ocussi", + "timezone": "Asia/Dili" + }, + { + "GMT": "3", + "cityId": 5400, + "codeIataCity": "OEL", + "codeIso2Country": "RU", + "geonameId": 515012, + "latitudeCity": 52.983334, + "longitudeCity": 36.1, + "nameCity": "Orel", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-3", + "cityId": 5401, + "codeIataCity": "OEM", + "codeIso2Country": "SR", + "geonameId": 0, + "latitudeCity": 3.35, + "longitudeCity": -55.45, + "nameCity": "Paloemeu", + "timezone": "America/Paramaribo" + }, + { + "GMT": "-6", + "cityId": 5402, + "codeIataCity": "OEO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 45.3, + "longitudeCity": -92.7, + "nameCity": "Osceola", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 5403, + "codeIataCity": "OER", + "codeIso2Country": "SE", + "geonameId": 602150, + "latitudeCity": 63.412582, + "longitudeCity": 18.992073, + "nameCity": "Ornskoldsvik", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-3", + "cityId": 5404, + "codeIataCity": "OES", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -40.733334, + "longitudeCity": -64.95, + "nameCity": "San Antonio Oeste", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "0", + "cityId": 5405, + "codeIataCity": "OFI", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 9.6, + "longitudeCity": -4.033333, + "nameCity": "Ouango Fitini", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "0", + "cityId": 5406, + "codeIataCity": "OFJ", + "codeIso2Country": "IS", + "geonameId": 2633274, + "latitudeCity": 65.583336, + "longitudeCity": -19.833332, + "nameCity": "Olafsfjordur", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-6", + "cityId": 5407, + "codeIataCity": "OFK", + "codeIso2Country": "US", + "geonameId": 5073965, + "latitudeCity": 41.984165, + "longitudeCity": -97.434166, + "nameCity": "Norfolk", + "timezone": "America/Chicago" + }, + { + "GMT": "-11", + "cityId": 5408, + "codeIataCity": "OFU", + "codeIso2Country": "AS", + "geonameId": 0, + "latitudeCity": -14.166667, + "longitudeCity": -169.7, + "nameCity": "Vaoto", + "timezone": "Pacific/Pago_Pago" + }, + { + "GMT": "-6", + "cityId": 5409, + "codeIataCity": "OGA", + "codeIso2Country": "US", + "geonameId": 5697939, + "latitudeCity": 41.13333, + "longitudeCity": -101.71667, + "nameCity": "Ogallala", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 5410, + "codeIataCity": "OGB", + "codeIso2Country": "US", + "geonameId": 4590184, + "latitudeCity": 33.5, + "longitudeCity": -80.86667, + "nameCity": "Orangeburg", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 5411, + "codeIataCity": "OGD", + "codeIso2Country": "US", + "geonameId": 5779206, + "latitudeCity": 41.223, + "longitudeCity": -111.97383, + "nameCity": "Ogden", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "cityId": 5412, + "codeIataCity": "OGE", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.466667, + "longitudeCity": 147.46666, + "nameCity": "Ogeranang", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-10", + "cityId": 5413, + "codeIataCity": "OGG", + "codeIso2Country": "US", + "geonameId": 5847411, + "latitudeCity": 20.892883, + "longitudeCity": -156.43863, + "nameCity": "Maui", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "-4", + "cityId": 5414, + "codeIataCity": "OGL", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 6.8, + "longitudeCity": -58.105556, + "nameCity": "Ogle", + "timezone": "America/Guyana" + }, + { + "GMT": "-5", + "cityId": 5415, + "codeIataCity": "OGM", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 83.382225, + "longitudeCity": -77.933266, + "nameCity": "Ustupu Island", + "timezone": "America/Panama" + }, + { + "GMT": "9", + "cityId": 5416, + "codeIataCity": "OGN", + "codeIso2Country": "JP", + "geonameId": 0, + "latitudeCity": 24.461111, + "longitudeCity": 122.97639, + "nameCity": "Yonaguni Jima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "0", + "cityId": 5417, + "codeIataCity": "OGO", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 6.7, + "longitudeCity": -3.45, + "nameCity": "Abengourou", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "1", + "cityId": 5418, + "codeIataCity": "OGR", + "codeIso2Country": "TD", + "geonameId": 2434910, + "latitudeCity": 10.289444, + "longitudeCity": 15.383333, + "nameCity": "Bongor", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "-5", + "cityId": 5419, + "codeIataCity": "OGS", + "codeIso2Country": "US", + "geonameId": 5129626, + "latitudeCity": 44.681667, + "longitudeCity": -75.465836, + "nameCity": "Ogdensburg", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 5420, + "codeIataCity": "OGV", + "codeIso2Country": "NA", + "geonameId": 3354716, + "latitudeCity": -22.18, + "longitudeCity": 18.53, + "nameCity": "Ongava Game Reserve", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "1", + "cityId": 5421, + "codeIataCity": "OGX", + "codeIso2Country": "DZ", + "geonameId": 2485801, + "latitudeCity": 31.916668, + "longitudeCity": 5.4, + "nameCity": "Ouargla", + "timezone": "Africa/Algiers" + }, + { + "GMT": "3", + "cityId": 5422, + "codeIataCity": "OGZ", + "codeIso2Country": "RU", + "geonameId": 473249, + "latitudeCity": 43.2, + "longitudeCity": 44.6, + "nameCity": "Vladikavkaz", + "timezone": "Europe/Moscow" + }, + { + "GMT": "12", + "cityId": 5423, + "codeIataCity": "OHA", + "codeIso2Country": "NZ", + "geonameId": 2185018, + "latitudeCity": -40.208332, + "longitudeCity": 175.38667, + "nameCity": "Ohakea", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "3", + "cityId": 5424, + "codeIataCity": "OHB", + "codeIso2Country": "MG", + "geonameId": 1058532, + "latitudeCity": -18.94948, + "longitudeCity": 48.23007, + "nameCity": "Moramanga", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-9", + "cityId": 5425, + "codeIataCity": "OHC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 63.32639, + "longitudeCity": -168.96889, + "nameCity": "Northeast Cape", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 5426, + "codeIataCity": "OHD", + "codeIso2Country": "MK", + "geonameId": 787487, + "latitudeCity": 41.185, + "longitudeCity": 20.743055, + "nameCity": "Ohrid", + "timezone": "Europe/Skopje" + }, + { + "GMT": "8", + "cityId": 5427, + "codeIataCity": "OHE", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 52.92113, + "longitudeCity": 122.42059, + "nameCity": "Mohe", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "11", + "cityId": 5428, + "codeIataCity": "OHH", + "codeIso2Country": "RU", + "geonameId": 2122614, + "latitudeCity": 53.516666, + "longitudeCity": 142.88333, + "nameCity": "Okha", + "timezone": "Asia/Sakhalin" + }, + { + "GMT": "2", + "cityId": 5429, + "codeIataCity": "OHI", + "codeIso2Country": "NA", + "geonameId": 3354247, + "latitudeCity": -17.783333, + "longitudeCity": 15.8, + "nameCity": "Oshakati", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "10", + "cityId": 5430, + "codeIataCity": "OHO", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 59.416668, + "longitudeCity": 143.05, + "nameCity": "Okhotsk", + "timezone": "Asia/Vladivostok" + }, + { + "GMT": "1", + "cityId": 5431, + "codeIataCity": "OHR", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 54.685833, + "longitudeCity": 8.529167, + "nameCity": "Wyk Auf Foehr", + "timezone": "Europe/Berlin" + }, + { + "GMT": "5", + "cityId": 5432, + "codeIataCity": "OHT", + "codeIso2Country": "PK", + "geonameId": 1168197, + "latitudeCity": 33.583332, + "longitudeCity": 71.433334, + "nameCity": "Kohat", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-3", + "cityId": 5433, + "codeIataCity": "OIA", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -6.761303, + "longitudeCity": -51.049, + "nameCity": "Ourilandia", + "timezone": "America/Belem" + }, + { + "GMT": "-5", + "cityId": 5434, + "codeIataCity": "OIC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.533333, + "longitudeCity": -75.53333, + "nameCity": "Norwich", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 5435, + "codeIataCity": "OIL", + "codeIso2Country": "US", + "geonameId": 5128723, + "latitudeCity": 41.433334, + "longitudeCity": -79.7, + "nameCity": "Oil City", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "cityId": 5436, + "codeIataCity": "OIM", + "codeIso2Country": "JP", + "geonameId": 1848354, + "latitudeCity": 34.779167, + "longitudeCity": 139.365, + "nameCity": "Oshima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "9", + "cityId": 5437, + "codeIataCity": "OIR", + "codeIso2Country": "JP", + "geonameId": 2129142, + "latitudeCity": 42.166668, + "longitudeCity": 139.51666, + "nameCity": "Okushiri", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "9", + "cityId": 5438, + "codeIataCity": "OIT", + "codeIso2Country": "JP", + "geonameId": 1854487, + "latitudeCity": 33.477238, + "longitudeCity": 131.73236, + "nameCity": "Oita", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "9", + "cityId": 5439, + "codeIataCity": "OKA", + "codeIso2Country": "JP", + "geonameId": 1894616, + "latitudeCity": 26.22853, + "longitudeCity": 127.68911, + "nameCity": "Okinawa", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "10", + "cityId": 5440, + "codeIataCity": "OKB", + "codeIso2Country": "AU", + "geonameId": 6354957, + "latitudeCity": -25.25, + "longitudeCity": 153.16667, + "nameCity": "Orchid Beach", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "cityId": 5441, + "codeIataCity": "OKC", + "codeIso2Country": "US", + "geonameId": 4544349, + "latitudeCity": 35.46756, + "longitudeCity": -97.516428, + "nameCity": "Oklahoma City", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "cityId": 5442, + "codeIataCity": "OKE", + "codeIso2Country": "JP", + "geonameId": 6822151, + "latitudeCity": 27.431667, + "longitudeCity": 128.70555, + "nameCity": "Okino Erabu", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "2", + "cityId": 5443, + "codeIataCity": "OKF", + "codeIso2Country": "NA", + "geonameId": 3354716, + "latitudeCity": -19.166668, + "longitudeCity": 16.0, + "nameCity": "Okaukuejo", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "1", + "cityId": 5444, + "codeIataCity": "OKG", + "codeIso2Country": "CG", + "geonameId": 0, + "latitudeCity": -1.466667, + "longitudeCity": 15.0, + "nameCity": "Okoyo", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "0", + "cityId": 5445, + "codeIataCity": "OKH", + "codeIso2Country": "GB", + "geonameId": 2641128, + "latitudeCity": 52.666668, + "longitudeCity": -0.716667, + "nameCity": "Oakham", + "timezone": "Europe/London" + }, + { + "GMT": "9", + "cityId": 5446, + "codeIataCity": "OKI", + "codeIso2Country": "JP", + "geonameId": 1857550, + "latitudeCity": 36.166668, + "longitudeCity": 133.31667, + "nameCity": "Oki Island", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "9", + "cityId": 5447, + "codeIataCity": "OKJ", + "codeIso2Country": "JP", + "geonameId": 1854383, + "latitudeCity": 34.76022, + "longitudeCity": 133.85277, + "nameCity": "Okayama", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "cityId": 5448, + "codeIataCity": "OKK", + "codeIso2Country": "US", + "geonameId": 4922388, + "latitudeCity": 40.52972, + "longitudeCity": -86.05806, + "nameCity": "Kokomo", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "9", + "cityId": 5449, + "codeIataCity": "OKL", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -5.1, + "longitudeCity": 140.66667, + "nameCity": "Oksibil", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-6", + "cityId": 5450, + "codeIataCity": "OKM", + "codeIso2Country": "US", + "geonameId": 4553433, + "latitudeCity": 35.61667, + "longitudeCity": -95.96667, + "nameCity": "Okmulgee", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 5451, + "codeIataCity": "OKN", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -1.0, + "longitudeCity": 14.008333, + "nameCity": "Okondja", + "timezone": "Africa/Libreville" + }, + { + "GMT": "10", + "cityId": 5452, + "codeIataCity": "OKP", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.25, + "longitudeCity": 142.08333, + "nameCity": "Oksapmin", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "cityId": 5453, + "codeIataCity": "OKQ", + "codeIso2Country": "ID", + "geonameId": 2082539, + "latitudeCity": -8.1, + "longitudeCity": 139.7, + "nameCity": "Okaba", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "10", + "cityId": 5454, + "codeIataCity": "OKR", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -9.751593, + "longitudeCity": 143.40556, + "nameCity": "Yorke Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-6", + "cityId": 5455, + "codeIataCity": "OKS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.4, + "longitudeCity": -102.35, + "nameCity": "Oshkosh", + "timezone": "America/Chicago" + }, + { + "GMT": "5", + "cityId": 5456, + "codeIataCity": "OKT", + "codeIso2Country": "RU", + "geonameId": 538001, + "latitudeCity": 54.433334, + "longitudeCity": 53.38333, + "nameCity": "Oktiabrskij", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "2", + "cityId": 5457, + "codeIataCity": "OKU", + "codeIso2Country": "NA", + "geonameId": 0, + "latitudeCity": -18.808332, + "longitudeCity": 17.05, + "nameCity": "Mokuti Lodge", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "10", + "cityId": 5458, + "codeIataCity": "OKV", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.561111, + "longitudeCity": 141.03667, + "nameCity": "Okao", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 5459, + "codeIataCity": "OKY", + "codeIso2Country": "AU", + "geonameId": 2146268, + "latitudeCity": -27.406668, + "longitudeCity": 151.735, + "nameCity": "Oakey", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 5460, + "codeIataCity": "OLA", + "codeIso2Country": "NO", + "geonameId": 3133880, + "latitudeCity": 63.7, + "longitudeCity": 9.616667, + "nameCity": "Orland", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 5461, + "codeIataCity": "OLB", + "codeIso2Country": "IT", + "geonameId": 3172087, + "latitudeCity": 40.903145, + "longitudeCity": 9.514823, + "nameCity": "Olbia", + "timezone": "Europe/Rome" + }, + { + "GMT": "-4", + "cityId": 5462, + "codeIataCity": "OLC", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -3.470869, + "longitudeCity": -68.95853, + "nameCity": "Sao Paulo de Olivenca", + "timezone": "America/Manaus" + }, + { + "GMT": "-5", + "cityId": 5463, + "codeIataCity": "OLD", + "codeIso2Country": "US", + "geonameId": 4957280, + "latitudeCity": 44.933334, + "longitudeCity": -68.65, + "nameCity": "Old Town", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 5464, + "codeIataCity": "OLE", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.240833, + "longitudeCity": -78.37666, + "nameCity": "Olean", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 5465, + "codeIataCity": "OLF", + "codeIso2Country": "US", + "geonameId": 5687028, + "latitudeCity": 48.094723, + "longitudeCity": -105.56639, + "nameCity": "Wolf Point", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "cityId": 5466, + "codeIataCity": "OLH", + "codeIso2Country": "US", + "geonameId": 5870746, + "latitudeCity": 57.204166, + "longitudeCity": -153.3, + "nameCity": "Old Harbor", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "cityId": 5467, + "codeIataCity": "OLI", + "codeIso2Country": "IS", + "geonameId": 3414079, + "latitudeCity": 65.0, + "longitudeCity": -23.983334, + "nameCity": "Olafsvik", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "11", + "cityId": 5468, + "codeIataCity": "OLJ", + "codeIso2Country": "VU", + "geonameId": 2136150, + "latitudeCity": -14.884605, + "longitudeCity": 166.56003, + "nameCity": "Olpoi", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-4", + "cityId": 5469, + "codeIataCity": "OLK", + "codeIso2Country": "PY", + "geonameId": 0, + "latitudeCity": -21.996944, + "longitudeCity": -57.883057, + "nameCity": "Fuerte Olimpo", + "timezone": "America/Asuncion" + }, + { + "GMT": "1", + "cityId": 5470, + "codeIataCity": "OLL", + "codeIso2Country": "CG", + "geonameId": 0, + "latitudeCity": 32.004417, + "longitudeCity": -92.229164, + "nameCity": "Oyo", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-8", + "cityId": 5471, + "codeIataCity": "OLM", + "codeIso2Country": "US", + "geonameId": 5805687, + "latitudeCity": 46.97361, + "longitudeCity": -122.903336, + "nameCity": "Olympia", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "cityId": 5472, + "codeIataCity": "OLN", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -45.57, + "longitudeCity": -69.0, + "nameCity": "Colonia Sarmiento", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "1", + "cityId": 5473, + "codeIataCity": "OLO", + "codeIso2Country": "CZ", + "geonameId": 3069011, + "latitudeCity": 49.595388, + "longitudeCity": 17.251872, + "nameCity": "Olomouc", + "timezone": "Europe/Prague" + }, + { + "GMT": "9.30", + "cityId": 5474, + "codeIataCity": "OLP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -30.483898, + "longitudeCity": 136.88411, + "nameCity": "Olympic Dam", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "10", + "cityId": 5475, + "codeIataCity": "OLQ", + "codeIso2Country": "PG", + "geonameId": 2089137, + "latitudeCity": -5.466667, + "longitudeCity": 141.5, + "nameCity": "Olsobip", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "4.30", + "cityId": 5476, + "codeIataCity": "OLR", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 34.023167, + "longitudeCity": 36.130333, + "nameCity": "Salerno", + "timezone": "Asia/Kabul" + }, + { + "GMT": "-7", + "cityId": 5477, + "codeIataCity": "OLS", + "codeIso2Country": "US", + "geonameId": 5306611, + "latitudeCity": 31.416668, + "longitudeCity": -110.85, + "nameCity": "Nogales", + "timezone": "America/Phoenix" + }, + { + "GMT": "-6", + "cityId": 5478, + "codeIataCity": "OLU", + "codeIso2Country": "US", + "geonameId": 5066001, + "latitudeCity": 41.447224, + "longitudeCity": -97.34167, + "nameCity": "Columbus", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 5479, + "codeIataCity": "OLV", + "codeIso2Country": "US", + "geonameId": 4439869, + "latitudeCity": 34.966667, + "longitudeCity": -89.833336, + "nameCity": "Olive Branch", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 5480, + "codeIataCity": "OLY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.716667, + "longitudeCity": -88.083336, + "nameCity": "Olney", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 5481, + "codeIataCity": "OMA", + "codeIso2Country": "US", + "geonameId": 5074472, + "latitudeCity": 41.252363, + "longitudeCity": -95.997988, + "nameCity": "Omaha", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 5482, + "codeIataCity": "OMB", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -1.6, + "longitudeCity": 9.266667, + "nameCity": "Omboue", + "timezone": "Africa/Libreville" + }, + { + "GMT": "8", + "cityId": 5483, + "codeIataCity": "OMC", + "codeIso2Country": "PH", + "geonameId": 1697018, + "latitudeCity": 11.05, + "longitudeCity": 124.566666, + "nameCity": "Ormoc", + "timezone": "Asia/Manila" + }, + { + "GMT": "2", + "cityId": 5484, + "codeIataCity": "OMD", + "codeIso2Country": "NA", + "geonameId": 3354071, + "latitudeCity": -28.583332, + "longitudeCity": 16.45, + "nameCity": "Oranjemund", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-9", + "cityId": 5485, + "codeIataCity": "OME", + "codeIso2Country": "US", + "geonameId": 5870133, + "latitudeCity": 64.51139, + "longitudeCity": -165.44167, + "nameCity": "Nome", + "timezone": "America/Nome" + }, + { + "GMT": "2", + "cityId": 5486, + "codeIataCity": "OMF", + "codeIso2Country": "JO", + "geonameId": 250441, + "latitudeCity": 32.35, + "longitudeCity": 36.25, + "nameCity": "Mafraq", + "timezone": "Asia/Amman" + }, + { + "GMT": "2", + "cityId": 5487, + "codeIataCity": "OMG", + "codeIso2Country": "NA", + "geonameId": 0, + "latitudeCity": -18.0, + "longitudeCity": 22.066668, + "nameCity": "Omega", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "3.30", + "cityId": 5488, + "codeIataCity": "OMH", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 37.662525, + "longitudeCity": 45.05877, + "nameCity": "Urmieh", + "timezone": "Asia/Tehran" + }, + { + "GMT": "3.30", + "cityId": 5489, + "codeIataCity": "OMI", + "codeIso2Country": "IR", + "geonameId": 385041, + "latitudeCity": 30.833332, + "longitudeCity": 49.533333, + "nameCity": "Omidieh", + "timezone": "Asia/Tehran" + }, + { + "GMT": "9", + "cityId": 5490, + "codeIataCity": "OMJ", + "codeIso2Country": "JP", + "geonameId": 0, + "latitudeCity": 32.924442, + "longitudeCity": 129.93611, + "nameCity": "Omura", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-8", + "cityId": 5491, + "codeIataCity": "OMK", + "codeIso2Country": "US", + "geonameId": 5805734, + "latitudeCity": 48.416668, + "longitudeCity": -119.51667, + "nameCity": "Omak", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 5492, + "codeIataCity": "OML", + "codeIso2Country": "PG", + "geonameId": 2089100, + "latitudeCity": -6.185556, + "longitudeCity": 144.95833, + "nameCity": "Omkalai", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "4", + "cityId": 5493, + "codeIataCity": "OMM", + "codeIso2Country": "OM", + "geonameId": 0, + "latitudeCity": 18.133333, + "longitudeCity": 55.266666, + "nameCity": "Marmul", + "timezone": "Asia/Muscat" + }, + { + "GMT": "1", + "cityId": 5494, + "codeIataCity": "OMO", + "codeIso2Country": "BA", + "geonameId": 3194828, + "latitudeCity": 43.285557, + "longitudeCity": 17.846666, + "nameCity": "Mostar", + "timezone": "Europe/Sarajevo" + }, + { + "GMT": "2", + "cityId": 5495, + "codeIataCity": "OMR", + "codeIso2Country": "RO", + "geonameId": 671768, + "latitudeCity": 47.0275, + "longitudeCity": 21.903055, + "nameCity": "Oradea", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "6", + "cityId": 5496, + "codeIataCity": "OMS", + "codeIso2Country": "RU", + "geonameId": 1496153, + "latitudeCity": 54.957455, + "longitudeCity": 73.3167, + "nameCity": "Omsk", + "timezone": "Asia/Omsk" + }, + { + "GMT": "7", + "cityId": 5497, + "codeIataCity": "OMY", + "codeIso2Country": "KH", + "geonameId": 8403987, + "latitudeCity": 13.816667, + "longitudeCity": 104.96667, + "nameCity": "Oddor Meanche", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "-6", + "cityId": 5498, + "codeIataCity": "ONA", + "codeIso2Country": "US", + "geonameId": 5043473, + "latitudeCity": 44.076668, + "longitudeCity": -91.70611, + "nameCity": "Winona", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 5499, + "codeIataCity": "ONB", + "codeIso2Country": "PG", + "geonameId": 2089029, + "latitudeCity": -8.583333, + "longitudeCity": 147.2, + "nameCity": "Ononge", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "cityId": 5500, + "codeIataCity": "OND", + "codeIso2Country": "NA", + "geonameId": 3354247, + "latitudeCity": -17.885496, + "longitudeCity": 15.942233, + "nameCity": "Ondangwa", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "11", + "cityId": 5501, + "codeIataCity": "ONE", + "codeIso2Country": "SB", + "geonameId": 2104665, + "latitudeCity": -9.166667, + "longitudeCity": 161.06667, + "nameCity": "Onepusu", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "10", + "cityId": 5502, + "codeIataCity": "ONG", + "codeIso2Country": "AU", + "geonameId": 2156878, + "latitudeCity": -16.662558, + "longitudeCity": 139.17004, + "nameCity": "Mornington", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 5503, + "codeIataCity": "ONH", + "codeIso2Country": "US", + "geonameId": 5124079, + "latitudeCity": 42.482777, + "longitudeCity": -75.00056, + "nameCity": "Oneonta", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "cityId": 5504, + "codeIataCity": "ONI", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.333333, + "longitudeCity": 135.5, + "nameCity": "Moanamani", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "9", + "cityId": 5505, + "codeIataCity": "ONJ", + "codeIso2Country": "JP", + "geonameId": 2128787, + "latitudeCity": 40.196415, + "longitudeCity": 140.37383, + "nameCity": "Odate Noshiro", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-6", + "cityId": 5506, + "codeIataCity": "ONL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.45, + "longitudeCity": -98.65, + "nameCity": "Oneill", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 5507, + "codeIataCity": "ONM", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 34.066666, + "longitudeCity": -106.9, + "nameCity": "Socorro", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "cityId": 5508, + "codeIataCity": "ONN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 58.233334, + "longitudeCity": -152.83333, + "nameCity": "Onion Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "cityId": 5509, + "codeIataCity": "ONO", + "codeIso2Country": "US", + "geonameId": 5586437, + "latitudeCity": 44.022778, + "longitudeCity": -117.013885, + "nameCity": "Ontario", + "timezone": "America/Boise" + }, + { + "GMT": "-8", + "cityId": 5510, + "codeIataCity": "ONP", + "codeIso2Country": "US", + "geonameId": 5742750, + "latitudeCity": 44.63333, + "longitudeCity": -124.05, + "nameCity": "Newport", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "cityId": 5511, + "codeIataCity": "ONQ", + "codeIso2Country": "TR", + "geonameId": 749508, + "latitudeCity": 41.516666, + "longitudeCity": 32.1, + "nameCity": "Zonguldak", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "10", + "cityId": 5512, + "codeIataCity": "ONR", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -24.816668, + "longitudeCity": 140.56667, + "nameCity": "Monkira", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "cityId": 5513, + "codeIataCity": "ONS", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -21.666668, + "longitudeCity": 115.1, + "nameCity": "Onslow", + "timezone": "Australia/Perth" + }, + { + "GMT": "-8", + "cityId": 5514, + "codeIataCity": "ONT", + "codeIso2Country": "US", + "geonameId": 5379439, + "latitudeCity": 34.05, + "longitudeCity": -117.64, + "nameCity": "Ontario", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "12", + "cityId": 5515, + "codeIataCity": "ONU", + "codeIso2Country": "FJ", + "geonameId": 0, + "latitudeCity": -16.333332, + "longitudeCity": 179.0, + "nameCity": "Ono I Lau", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-5", + "cityId": 5516, + "codeIataCity": "ONX", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 9.35, + "longitudeCity": -79.9, + "nameCity": "Colon", + "timezone": "America/Panama" + }, + { + "GMT": "-6", + "cityId": 5517, + "codeIataCity": "ONY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 33.36667, + "longitudeCity": -98.75, + "nameCity": "Olney", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 5518, + "codeIataCity": "OOA", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.3, + "longitudeCity": -92.65, + "nameCity": "Oskaloosa", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 5519, + "codeIataCity": "OOK", + "codeIso2Country": "US", + "geonameId": 5876385, + "latitudeCity": 60.531944, + "longitudeCity": -165.10834, + "nameCity": "Toksook Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 5520, + "codeIataCity": "OOL", + "codeIso2Country": "AU", + "geonameId": 2165087, + "latitudeCity": -28.166164, + "longitudeCity": 153.51314, + "nameCity": "Gold Coast", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 5521, + "codeIataCity": "OOM", + "codeIso2Country": "AU", + "geonameId": 2170577, + "latitudeCity": -36.308334, + "longitudeCity": 148.97333, + "nameCity": "Cooma", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "cityId": 5522, + "codeIataCity": "OOR", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -25.05, + "longitudeCity": 141.23334, + "nameCity": "Mooraberree", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "12", + "cityId": 5523, + "codeIataCity": "OOT", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": -1.916667, + "longitudeCity": 175.56667, + "nameCity": "Onotoa", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "0", + "cityId": 5524, + "codeIataCity": "OPA", + "codeIso2Country": "IS", + "geonameId": 2626009, + "latitudeCity": 66.416664, + "longitudeCity": -16.483334, + "nameCity": "Kopasker", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "10", + "cityId": 5525, + "codeIataCity": "OPB", + "codeIso2Country": "PG", + "geonameId": 2093685, + "latitudeCity": -4.933333, + "longitudeCity": 151.66667, + "nameCity": "Open Bay", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9.30", + "cityId": 5526, + "codeIataCity": "OPI", + "codeIso2Country": "AU", + "geonameId": 2078934, + "latitudeCity": -12.333333, + "longitudeCity": 133.06667, + "nameCity": "Oenpelli", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-6", + "cityId": 5527, + "codeIataCity": "OPL", + "codeIso2Country": "US", + "geonameId": 4336153, + "latitudeCity": 30.533333, + "longitudeCity": -92.083336, + "nameCity": "Opelousas", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 5528, + "codeIataCity": "OPO", + "codeIso2Country": "PT", + "geonameId": 2735943, + "latitudeCity": 41.149968, + "longitudeCity": -8.610243, + "nameCity": "Porto", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "-4", + "cityId": 5529, + "codeIataCity": "OPS", + "codeIso2Country": "BR", + "geonameId": 6318696, + "latitudeCity": -11.878573, + "longitudeCity": -55.58156, + "nameCity": "Sinop", + "timezone": "America/Cuiaba" + }, + { + "GMT": "10", + "cityId": 5530, + "codeIataCity": "OPU", + "codeIso2Country": "PG", + "geonameId": 2099987, + "latitudeCity": -8.033333, + "longitudeCity": 142.93333, + "nameCity": "Balimo", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "cityId": 5531, + "codeIataCity": "OPW", + "codeIso2Country": "NA", + "geonameId": 0, + "latitudeCity": -18.066668, + "longitudeCity": 13.833333, + "nameCity": "Opuwa", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-3", + "cityId": 5532, + "codeIataCity": "ORA", + "codeIso2Country": "AR", + "geonameId": 3846915, + "latitudeCity": -23.333332, + "longitudeCity": -64.166664, + "nameCity": "Oran", + "timezone": "America/Argentina/Jujuy" + }, + { + "GMT": "1", + "cityId": 5533, + "codeIataCity": "ORB", + "codeIso2Country": "SE", + "geonameId": 2686657, + "latitudeCity": 59.273755, + "longitudeCity": 15.207539, + "nameCity": "Orebro", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "cityId": 5534, + "codeIataCity": "ORC", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 4.9, + "longitudeCity": -71.333336, + "nameCity": "Orocue", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 5535, + "codeIataCity": "ORE", + "codeIso2Country": "FR", + "geonameId": 0, + "latitudeCity": 47.916668, + "longitudeCity": 1.9, + "nameCity": "Orleans", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 5536, + "codeIataCity": "ORF", + "codeIso2Country": "US", + "geonameId": 4776222, + "latitudeCity": 36.850769, + "longitudeCity": -76.285873, + "nameCity": "Norfolk", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 5537, + "codeIataCity": "ORH", + "codeIso2Country": "US", + "geonameId": 4956184, + "latitudeCity": 42.26917, + "longitudeCity": -71.87444, + "nameCity": "Worcester", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 5538, + "codeIataCity": "ORI", + "codeIso2Country": "US", + "geonameId": 5871925, + "latitudeCity": 57.886112, + "longitudeCity": -152.84389, + "nameCity": "Port Lions", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "cityId": 5539, + "codeIataCity": "ORJ", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 4.716667, + "longitudeCity": -60.033333, + "nameCity": "Orinduik", + "timezone": "America/Guyana" + }, + { + "GMT": "0", + "cityId": 5540, + "codeIataCity": "ORK", + "codeIso2Country": "IE", + "geonameId": 2965140, + "latitudeCity": 51.846645, + "longitudeCity": -8.48914, + "nameCity": "Cork", + "timezone": "Europe/Dublin" + }, + { + "GMT": "-5", + "cityId": 5541, + "codeIataCity": "ORL", + "codeIso2Country": "US", + "geonameId": 4167147, + "latitudeCity": 28.533611, + "longitudeCity": -81.386667, + "nameCity": "Orlando", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 5542, + "codeIataCity": "ORM", + "codeIso2Country": "GB", + "geonameId": 2643743, + "latitudeCity": 52.233334, + "longitudeCity": -0.9, + "nameCity": "Northampton", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 5543, + "codeIataCity": "ORN", + "codeIso2Country": "DZ", + "geonameId": 2485926, + "latitudeCity": 35.696944, + "longitudeCity": -0.633056, + "nameCity": "Oran", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-6", + "cityId": 5544, + "codeIataCity": "ORO", + "codeIso2Country": "HN", + "geonameId": 3608248, + "latitudeCity": 15.125278, + "longitudeCity": -87.13389, + "nameCity": "Yoro", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "2", + "cityId": 5545, + "codeIataCity": "ORP", + "codeIso2Country": "BW", + "geonameId": 0, + "latitudeCity": -21.0, + "longitudeCity": 24.5, + "nameCity": "Orapa", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "-5", + "cityId": 5546, + "codeIataCity": "ORQ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.11667, + "longitudeCity": -73.36667, + "nameCity": "Norwalk", + "timezone": "America/New_York" + }, + { + "GMT": "9.30", + "cityId": 5547, + "codeIataCity": "ORR", + "codeIso2Country": "AU", + "geonameId": 2078025, + "latitudeCity": -35.033333, + "longitudeCity": 137.58333, + "nameCity": "Yorketown", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "10", + "cityId": 5548, + "codeIataCity": "ORS", + "codeIso2Country": "AU", + "geonameId": 2146142, + "latitudeCity": -18.633333, + "longitudeCity": 146.48334, + "nameCity": "Orpheus Island Resort", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "cityId": 5549, + "codeIataCity": "ORT", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 62.961945, + "longitudeCity": -141.92389, + "nameCity": "Northway", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "cityId": 5550, + "codeIataCity": "ORU", + "codeIso2Country": "BO", + "geonameId": 3909234, + "latitudeCity": -17.964167, + "longitudeCity": -67.08083, + "nameCity": "Oruro", + "timezone": "America/La_Paz" + }, + { + "GMT": "-9", + "cityId": 5551, + "codeIataCity": "ORV", + "codeIso2Country": "US", + "geonameId": 5870154, + "latitudeCity": 66.82917, + "longitudeCity": -161.0236, + "nameCity": "Noorvik", + "timezone": "America/Anchorage" + }, + { + "GMT": "5", + "cityId": 5552, + "codeIataCity": "ORW", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 25.3, + "longitudeCity": 64.583336, + "nameCity": "Ormara", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-3", + "cityId": 5553, + "codeIataCity": "ORX", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -1.75, + "longitudeCity": -55.86667, + "nameCity": "Oriximina", + "timezone": "America/Santarem" + }, + { + "GMT": "-6", + "cityId": 5554, + "codeIataCity": "ORZ", + "codeIso2Country": "BZ", + "geonameId": 0, + "latitudeCity": 17.166668, + "longitudeCity": -88.75, + "nameCity": "Orange Walk", + "timezone": "America/Belize" + }, + { + "GMT": "9", + "cityId": 5555, + "codeIataCity": "OSA", + "codeIso2Country": "JP", + "geonameId": 1853909, + "latitudeCity": 34.693738, + "longitudeCity": 135.502165, + "nameCity": "Osaka", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-6", + "cityId": 5556, + "codeIataCity": "OSB", + "codeIso2Country": "US", + "geonameId": 4402040, + "latitudeCity": 38.11437, + "longitudeCity": -92.68217, + "nameCity": "Osage Beach", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 5557, + "codeIataCity": "OSC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 44.433334, + "longitudeCity": -83.333336, + "nameCity": "Oscoda", + "timezone": "America/Detroit" + }, + { + "GMT": "1", + "cityId": 5558, + "codeIataCity": "OSD", + "codeIso2Country": "SE", + "geonameId": 2685750, + "latitudeCity": 63.198612, + "longitudeCity": 14.494444, + "nameCity": "Ostersund", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "10", + "cityId": 5559, + "codeIataCity": "OSE", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.833333, + "longitudeCity": 147.08333, + "nameCity": "Omora", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 5560, + "codeIataCity": "OSG", + "codeIso2Country": "PG", + "geonameId": 2088906, + "latitudeCity": -2.966667, + "longitudeCity": 141.33333, + "nameCity": "Ossima", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 5561, + "codeIataCity": "OSH", + "codeIso2Country": "US", + "geonameId": 5265838, + "latitudeCity": 43.98389, + "longitudeCity": -88.556946, + "nameCity": "Oshkosh", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 5562, + "codeIataCity": "OSI", + "codeIso2Country": "HR", + "geonameId": 3193935, + "latitudeCity": 45.55, + "longitudeCity": 18.683332, + "nameCity": "Osijek", + "timezone": "Europe/Zagreb" + }, + { + "GMT": "1", + "cityId": 5563, + "codeIataCity": "OSK", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 57.266666, + "longitudeCity": 16.433332, + "nameCity": "Oskarshamn", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 5564, + "codeIataCity": "OSL", + "codeIso2Country": "NO", + "geonameId": 3143244, + "latitudeCity": 59.913869, + "longitudeCity": 10.752245, + "nameCity": "Oslo", + "timezone": "Europe/Oslo" + }, + { + "GMT": "3", + "cityId": 5565, + "codeIataCity": "OSM", + "codeIso2Country": "IQ", + "geonameId": 99072, + "latitudeCity": 36.3075, + "longitudeCity": 43.149445, + "nameCity": "Mosul", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "9", + "cityId": 5566, + "codeIataCity": "OSN", + "codeIso2Country": "KR", + "geonameId": 1835848, + "latitudeCity": 37.083332, + "longitudeCity": 127.03333, + "nameCity": "Osan", + "timezone": "Asia/Seoul" + }, + { + "GMT": "10", + "cityId": 5567, + "codeIataCity": "OSO", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -22.08254, + "longitudeCity": 140.55779, + "nameCity": "Osborne Mine", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 5568, + "codeIataCity": "OSR", + "codeIso2Country": "CZ", + "geonameId": 3068799, + "latitudeCity": 49.841271, + "longitudeCity": 18.290248, + "nameCity": "Ostrava", + "timezone": "Europe/Prague" + }, + { + "GMT": "6", + "cityId": 5569, + "codeIataCity": "OSS", + "codeIso2Country": "KG", + "geonameId": 1527534, + "latitudeCity": 40.60769, + "longitudeCity": 72.78648, + "nameCity": "Osh", + "timezone": "Asia/Bishkek" + }, + { + "GMT": "1", + "cityId": 5570, + "codeIataCity": "OST", + "codeIso2Country": "BE", + "geonameId": 2800931, + "latitudeCity": 51.216667, + "longitudeCity": 2.9, + "nameCity": "Ostend", + "timezone": "Europe/Brussels" + }, + { + "GMT": "5", + "cityId": 5571, + "codeIataCity": "OSW", + "codeIso2Country": "RU", + "geonameId": 514734, + "latitudeCity": 51.2, + "longitudeCity": 58.566666, + "nameCity": "Orsk", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-6", + "cityId": 5572, + "codeIataCity": "OSX", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 33.066666, + "longitudeCity": -89.583336, + "nameCity": "Kosciusko", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 5573, + "codeIataCity": "OSY", + "codeIso2Country": "NO", + "geonameId": 3145023, + "latitudeCity": 64.47273, + "longitudeCity": 11.570002, + "nameCity": "Namsos", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 5574, + "codeIataCity": "OSZ", + "codeIso2Country": "PL", + "geonameId": 3095049, + "latitudeCity": 54.042778, + "longitudeCity": 16.264444, + "nameCity": "Koszalin", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "3", + "cityId": 5575, + "codeIataCity": "OTA", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 11.066667, + "longitudeCity": 37.88333, + "nameCity": "Mota", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "1", + "cityId": 5576, + "codeIataCity": "OTC", + "codeIso2Country": "TD", + "geonameId": 0, + "latitudeCity": 13.433333, + "longitudeCity": 14.733333, + "nameCity": "Bol", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "-5", + "cityId": 5577, + "codeIataCity": "OTD", + "codeIso2Country": "PA", + "geonameId": 3703443, + "latitudeCity": 8.666667, + "longitudeCity": -79.566666, + "nameCity": "Contadora", + "timezone": "America/Panama" + }, + { + "GMT": "-6", + "cityId": 5578, + "codeIataCity": "OTG", + "codeIso2Country": "US", + "geonameId": 5231851, + "latitudeCity": 43.65222, + "longitudeCity": -95.58361, + "nameCity": "Worthington", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 5579, + "codeIataCity": "OTH", + "codeIso2Country": "US", + "geonameId": 5742974, + "latitudeCity": 43.418888, + "longitudeCity": -124.24, + "nameCity": "North Bend", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9", + "cityId": 5580, + "codeIataCity": "OTI", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 2.833333, + "longitudeCity": 128.5, + "nameCity": "Pitu", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "2", + "cityId": 5581, + "codeIataCity": "OTJ", + "codeIso2Country": "NA", + "geonameId": 3353811, + "latitudeCity": -20.430555, + "longitudeCity": 16.6625, + "nameCity": "Otjiwarongo", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-8", + "cityId": 5582, + "codeIataCity": "OTK", + "codeIso2Country": "US", + "geonameId": 5756777, + "latitudeCity": 45.45622, + "longitudeCity": -123.84401, + "nameCity": "Tillamook", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "0", + "cityId": 5583, + "codeIataCity": "OTL", + "codeIso2Country": "MR", + "geonameId": 0, + "latitudeCity": 17.75, + "longitudeCity": -14.666667, + "nameCity": "Boutilimit", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "-6", + "cityId": 5584, + "codeIataCity": "OTM", + "codeIso2Country": "US", + "geonameId": 4862034, + "latitudeCity": 41.106388, + "longitudeCity": -92.449165, + "nameCity": "Ottumwa", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 5585, + "codeIataCity": "OTN", + "codeIso2Country": "US", + "geonameId": 4262433, + "latitudeCity": 38.86667, + "longitudeCity": -87.45, + "nameCity": "Oaktown", + "timezone": "America/Indiana/Vincennes" + }, + { + "GMT": "-7", + "cityId": 5586, + "codeIataCity": "OTO", + "codeIso2Country": "US", + "geonameId": 5490263, + "latitudeCity": 35.066666, + "longitudeCity": -105.933334, + "nameCity": "Otto", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 5587, + "codeIataCity": "OTR", + "codeIso2Country": "CR", + "geonameId": 3622674, + "latitudeCity": 8.566667, + "longitudeCity": -82.933334, + "nameCity": "Coto 47", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-8", + "cityId": 5588, + "codeIataCity": "OTS", + "codeIso2Country": "US", + "geonameId": 5785657, + "latitudeCity": 48.49917, + "longitudeCity": -122.66111, + "nameCity": "Anacortes", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "cityId": 5589, + "codeIataCity": "OTT", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -9.902215, + "longitudeCity": -58.581287, + "nameCity": "Cotriguacu", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-5", + "cityId": 5590, + "codeIataCity": "OTU", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 7.0, + "longitudeCity": -74.71667, + "nameCity": "Otu", + "timezone": "America/Bogota" + }, + { + "GMT": "11", + "cityId": 5591, + "codeIataCity": "OTV", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -5.513889, + "longitudeCity": 159.52278, + "nameCity": "Ontong Java", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "10", + "cityId": 5592, + "codeIataCity": "OTY", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.6, + "longitudeCity": 155.76666, + "nameCity": "Oria", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 5593, + "codeIataCity": "OTZ", + "codeIso2Country": "US", + "geonameId": 5866726, + "latitudeCity": 66.888054, + "longitudeCity": -162.60583, + "nameCity": "Kotzebue", + "timezone": "America/Nome" + }, + { + "GMT": "0", + "cityId": 5594, + "codeIataCity": "OUA", + "codeIso2Country": "BF", + "geonameId": 2357048, + "latitudeCity": 12.355019, + "longitudeCity": -1.514283, + "nameCity": "Ouagadougou", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "0", + "cityId": 5595, + "codeIataCity": "OUD", + "codeIso2Country": "MA", + "geonameId": 2540483, + "latitudeCity": 34.783333, + "longitudeCity": -1.933333, + "nameCity": "Oujda", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "1", + "cityId": 5596, + "codeIataCity": "OUE", + "codeIso2Country": "CG", + "geonameId": 0, + "latitudeCity": 1.616667, + "longitudeCity": 16.04861, + "nameCity": "Ouesso", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "0", + "cityId": 5597, + "codeIataCity": "OUG", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 13.516667, + "longitudeCity": -2.333333, + "nameCity": "Ouahigouya", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "2", + "cityId": 5598, + "codeIataCity": "OUH", + "codeIso2Country": "ZA", + "geonameId": 967106, + "latitudeCity": -33.603333, + "longitudeCity": 22.188334, + "nameCity": "Oudtshoorn", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "7", + "cityId": 5599, + "codeIataCity": "OUI", + "codeIso2Country": "LA", + "geonameId": 1655143, + "latitudeCity": 18.936111, + "longitudeCity": 102.67083, + "nameCity": "Ban Houei", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "0", + "cityId": 5600, + "codeIataCity": "OUK", + "codeIso2Country": "GB", + "geonameId": 2644605, + "latitudeCity": 60.416668, + "longitudeCity": -0.75, + "nameCity": "Outer Skerries", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "cityId": 5601, + "codeIataCity": "OUL", + "codeIso2Country": "FI", + "geonameId": 643492, + "latitudeCity": 64.93012, + "longitudeCity": 25.375425, + "nameCity": "Oulu", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "1", + "cityId": 5602, + "codeIataCity": "OUM", + "codeIso2Country": "TD", + "geonameId": 2426370, + "latitudeCity": 13.216667, + "longitudeCity": 19.616667, + "nameCity": "Oum Hadjer", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "-6", + "cityId": 5603, + "codeIataCity": "OUN", + "codeIso2Country": "US", + "geonameId": 4543762, + "latitudeCity": 35.216667, + "longitudeCity": -97.433334, + "nameCity": "Norman", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 5604, + "codeIataCity": "OUR", + "codeIso2Country": "CM", + "geonameId": 0, + "latitudeCity": 4.473056, + "longitudeCity": 14.363611, + "nameCity": "Batouri", + "timezone": "Africa/Douala" + }, + { + "GMT": "-3", + "cityId": 5605, + "codeIataCity": "OUS", + "codeIso2Country": "BR", + "geonameId": 3455729, + "latitudeCity": -22.966667, + "longitudeCity": -49.916668, + "nameCity": "Ourinhos", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "cityId": 5606, + "codeIataCity": "OUT", + "codeIso2Country": "TD", + "geonameId": 2434584, + "latitudeCity": 10.483333, + "longitudeCity": 16.716667, + "nameCity": "Bousso", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "1", + "cityId": 5607, + "codeIataCity": "OUU", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -2.983333, + "longitudeCity": 10.3, + "nameCity": "Ouanga", + "timezone": "Africa/Libreville" + }, + { + "GMT": "0", + "cityId": 5608, + "codeIataCity": "OUZ", + "codeIso2Country": "MR", + "geonameId": 0, + "latitudeCity": 22.733334, + "longitudeCity": -12.35, + "nameCity": "Zouerate", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "3", + "cityId": 5609, + "codeIataCity": "OVA", + "codeIso2Country": "MG", + "geonameId": 1067982, + "latitudeCity": -24.2325, + "longitudeCity": 45.305, + "nameCity": "Bekily", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "7", + "cityId": 5610, + "codeIataCity": "OVB", + "codeIso2Country": "RU", + "geonameId": 1496747, + "latitudeCity": 55.00901, + "longitudeCity": 82.667, + "nameCity": "Novosibirsk", + "timezone": "Asia/Novosibirsk" + }, + { + "GMT": "1", + "cityId": 5611, + "codeIataCity": "OVD", + "codeIso2Country": "ES", + "geonameId": 3114711, + "latitudeCity": 43.55891, + "longitudeCity": -6.032094, + "nameCity": "Oviedo", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-8", + "cityId": 5612, + "codeIataCity": "OVE", + "codeIso2Country": "US", + "geonameId": 5379759, + "latitudeCity": 39.5, + "longitudeCity": -121.61667, + "nameCity": "Oroville", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "cityId": 5613, + "codeIataCity": "OVG", + "codeIso2Country": "ZA", + "geonameId": 3366880, + "latitudeCity": -34.551666, + "longitudeCity": 20.235832, + "nameCity": "Overberg", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-4", + "cityId": 5614, + "codeIataCity": "OVL", + "codeIso2Country": "CL", + "geonameId": 3877918, + "latitudeCity": -30.566668, + "longitudeCity": -71.0, + "nameCity": "Ovalle", + "timezone": "America/Santiago" + }, + { + "GMT": "-3", + "cityId": 5615, + "codeIataCity": "OVR", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -36.88889, + "longitudeCity": -60.22778, + "nameCity": "Olavarria", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "5", + "cityId": 5616, + "codeIataCity": "OVS", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 61.33209, + "longitudeCity": 63.601887, + "nameCity": "Sovetsky", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-6", + "cityId": 5617, + "codeIataCity": "OWA", + "codeIso2Country": "US", + "geonameId": 5040647, + "latitudeCity": 44.1, + "longitudeCity": -93.166664, + "nameCity": "Owatonna", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 5618, + "codeIataCity": "OWB", + "codeIso2Country": "US", + "geonameId": 4303436, + "latitudeCity": 37.740833, + "longitudeCity": -87.16583, + "nameCity": "Owensboro", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 5619, + "codeIataCity": "OWD", + "codeIso2Country": "US", + "geonameId": 4945952, + "latitudeCity": 42.0, + "longitudeCity": -71.0, + "nameCity": "Norwood", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 5620, + "codeIataCity": "OWE", + "codeIso2Country": "GA", + "geonameId": 2396657, + "latitudeCity": 0.35, + "longitudeCity": 9.483333, + "nameCity": "Owendo", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-5", + "cityId": 5621, + "codeIataCity": "OWK", + "codeIso2Country": "US", + "geonameId": 4973430, + "latitudeCity": 44.716667, + "longitudeCity": -69.8, + "nameCity": "Norridgewock", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 5622, + "codeIataCity": "OXB", + "codeIso2Country": "GW", + "geonameId": 2374775, + "latitudeCity": 11.888889, + "longitudeCity": -15.657222, + "nameCity": "Bissau", + "timezone": "Africa/Bissau" + }, + { + "GMT": "-5", + "cityId": 5623, + "codeIataCity": "OXC", + "codeIso2Country": "US", + "geonameId": 4832353, + "latitudeCity": 41.479168, + "longitudeCity": -73.13639, + "nameCity": "Oxford", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 5624, + "codeIataCity": "OXD", + "codeIso2Country": "US", + "geonameId": 4520760, + "latitudeCity": 39.86028, + "longitudeCity": -84.76111, + "nameCity": "Oxford", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 5625, + "codeIataCity": "OXF", + "codeIso2Country": "GB", + "geonameId": 2643743, + "latitudeCity": 51.766666, + "longitudeCity": -1.25, + "nameCity": "Oxford", + "timezone": "Europe/London" + }, + { + "GMT": "10", + "cityId": 5626, + "codeIataCity": "OXO", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -27.666668, + "longitudeCity": 141.33333, + "nameCity": "Orientos", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-8", + "cityId": 5627, + "codeIataCity": "OXR", + "codeIso2Country": "US", + "geonameId": 5380184, + "latitudeCity": 34.20111, + "longitudeCity": -119.20639, + "nameCity": "Ventura", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 5628, + "codeIataCity": "OXY", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -25.35, + "longitudeCity": 141.36667, + "nameCity": "Morney", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-3", + "cityId": 5629, + "codeIataCity": "OYA", + "codeIso2Country": "AR", + "geonameId": 3433715, + "latitudeCity": -29.103333, + "longitudeCity": -59.216667, + "nameCity": "Goya", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "1", + "cityId": 5630, + "codeIataCity": "OYE", + "codeIso2Country": "GA", + "geonameId": 2396646, + "latitudeCity": 1.566667, + "longitudeCity": 11.583333, + "nameCity": "Oyem", + "timezone": "Africa/Libreville" + }, + { + "GMT": "3", + "cityId": 5631, + "codeIataCity": "OYG", + "codeIso2Country": "UG", + "geonameId": 229059, + "latitudeCity": 3.65, + "longitudeCity": 31.716667, + "nameCity": "Moyo", + "timezone": "Africa/Kampala" + }, + { + "GMT": "-3", + "cityId": 5632, + "codeIataCity": "OYK", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": 3.883333, + "longitudeCity": -51.783333, + "nameCity": "Oiapoque", + "timezone": "America/Belem" + }, + { + "GMT": "3", + "cityId": 5633, + "codeIataCity": "OYL", + "codeIso2Country": "KE", + "geonameId": 0, + "latitudeCity": 3.533333, + "longitudeCity": 39.05, + "nameCity": "Moyale", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "9.30", + "cityId": 5634, + "codeIataCity": "OYN", + "codeIso2Country": "AU", + "geonameId": 2173911, + "latitudeCity": -35.066666, + "longitudeCity": 142.33333, + "nameCity": "Ouyen", + "timezone": "Australia/Broken_Hill" + }, + { + "GMT": "-3", + "cityId": 5635, + "codeIataCity": "OYO", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -38.36667, + "longitudeCity": -60.25, + "nameCity": "Tres Arroyos", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "-3", + "cityId": 5636, + "codeIataCity": "OYP", + "codeIso2Country": "GF", + "geonameId": 0, + "latitudeCity": 3.9, + "longitudeCity": -51.8, + "nameCity": "St Georges de lOyapock", + "timezone": "America/Cayenne" + }, + { + "GMT": "-8", + "cityId": 5637, + "codeIataCity": "OYS", + "codeIso2Country": "US", + "geonameId": 5370006, + "latitudeCity": 37.85, + "longitudeCity": -119.55, + "nameCity": "Yosemite", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 5638, + "codeIataCity": "OZA", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 30.716667, + "longitudeCity": -101.21667, + "nameCity": "Ozona", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 5639, + "codeIataCity": "OZC", + "codeIso2Country": "PH", + "geonameId": 1721080, + "latitudeCity": 8.181967, + "longitudeCity": 123.84541, + "nameCity": "Ozamis City", + "timezone": "Asia/Manila" + }, + { + "GMT": "0", + "cityId": 5640, + "codeIataCity": "OZG", + "codeIso2Country": "MA", + "geonameId": 2526452, + "latitudeCity": 30.267143, + "longitudeCity": -5.852456, + "nameCity": "Zagora", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "2", + "cityId": 5641, + "codeIataCity": "OZH", + "codeIso2Country": "UA", + "geonameId": 687700, + "latitudeCity": 47.8675, + "longitudeCity": 35.315834, + "nameCity": "Zaporozhye", + "timezone": "Europe/Zaporozhye" + }, + { + "GMT": "1", + "cityId": 5642, + "codeIataCity": "OZI", + "codeIso2Country": "ES", + "geonameId": 0, + "latitudeCity": 37.6625, + "longitudeCity": -24.9, + "nameCity": "Bobadilla", + "timezone": "Europe/Madrid" + }, + { + "GMT": "0", + "cityId": 5643, + "codeIataCity": "OZL", + "codeIso2Country": "ES", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Orzola", + "timezone": "Atlantic/Canary" + }, + { + "GMT": "1", + "cityId": 5644, + "codeIataCity": "OZP", + "codeIso2Country": "ES", + "geonameId": 2510911, + "latitudeCity": 37.24917, + "longitudeCity": -5.759444, + "nameCity": "Moron", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-6", + "cityId": 5645, + "codeIataCity": "OZR", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 31.45, + "longitudeCity": -85.666664, + "nameCity": "Ozark", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 5646, + "codeIataCity": "OZU", + "codeIso2Country": "ES", + "geonameId": 2513601, + "latitudeCity": 37.6, + "longitudeCity": -4.633333, + "nameCity": "Montilla", + "timezone": "Europe/Madrid" + }, + { + "GMT": "0", + "cityId": 5647, + "codeIataCity": "OZZ", + "codeIso2Country": "MA", + "geonameId": 6546557, + "latitudeCity": 30.916668, + "longitudeCity": -6.916667, + "nameCity": "Ouarzazate", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "6.30", + "cityId": 5648, + "codeIataCity": "PAA", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 16.892778, + "longitudeCity": 97.67833, + "nameCity": "Pa-an", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "5.30", + "cityId": 5649, + "codeIataCity": "PAB", + "codeIso2Country": "IN", + "geonameId": 1275637, + "latitudeCity": 31.316668, + "longitudeCity": 76.833336, + "nameCity": "Bilaspur", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "cityId": 5650, + "codeIataCity": "PAD", + "codeIso2Country": "DE", + "geonameId": 2959267, + "latitudeCity": 51.610332, + "longitudeCity": 8.619832, + "nameCity": "Paderborn", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-8", + "cityId": 5651, + "codeIataCity": "PAE", + "codeIso2Country": "US", + "geonameId": 5793933, + "latitudeCity": 47.90972, + "longitudeCity": -122.28445, + "nameCity": "Everett", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "cityId": 5652, + "codeIataCity": "PAF", + "codeIso2Country": "UG", + "geonameId": 226837, + "latitudeCity": 2.2, + "longitudeCity": 31.616667, + "nameCity": "Pakuba", + "timezone": "Africa/Kampala" + }, + { + "GMT": "8", + "cityId": 5653, + "codeIataCity": "PAG", + "codeIso2Country": "PH", + "geonameId": 1696710, + "latitudeCity": 7.826667, + "longitudeCity": 123.4575, + "nameCity": "Pagadian", + "timezone": "Asia/Manila" + }, + { + "GMT": "-6", + "cityId": 5654, + "codeIataCity": "PAH", + "codeIso2Country": "US", + "geonameId": 4048662, + "latitudeCity": 37.06111, + "longitudeCity": -88.7725, + "nameCity": "Paducah", + "timezone": "America/Chicago" + }, + { + "GMT": "5", + "cityId": 5655, + "codeIataCity": "PAJ", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 33.9, + "longitudeCity": 70.1, + "nameCity": "Para Chinar", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-10", + "cityId": 5656, + "codeIataCity": "PAK", + "codeIso2Country": "US", + "geonameId": 5849616, + "latitudeCity": 21.933332, + "longitudeCity": -159.61667, + "nameCity": "Hanapepe", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "-5", + "cityId": 5657, + "codeIataCity": "PAL", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 52.15, + "longitudeCity": -74.65, + "nameCity": "Palanquero", + "timezone": "America/Bogota" + }, + { + "GMT": "7", + "cityId": 5658, + "codeIataCity": "PAN", + "codeIso2Country": "TH", + "geonameId": 1607978, + "latitudeCity": 6.777222, + "longitudeCity": 101.15833, + "nameCity": "Pattani", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-8", + "cityId": 5659, + "codeIataCity": "PAO", + "codeIso2Country": "US", + "geonameId": 5391959, + "latitudeCity": 37.460835, + "longitudeCity": -122.11389, + "nameCity": "Palo Alto", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 5660, + "codeIataCity": "PAP", + "codeIso2Country": "HT", + "geonameId": 3719028, + "latitudeCity": 18.575394, + "longitudeCity": -72.29471, + "nameCity": "Port Au Prince", + "timezone": "America/Port-au-Prince" + }, + { + "GMT": "-9", + "cityId": 5661, + "codeIataCity": "PAQ", + "codeIso2Country": "US", + "geonameId": 5879400, + "latitudeCity": 61.6, + "longitudeCity": -149.11667, + "nameCity": "Palmer", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 5662, + "codeIataCity": "PAR", + "codeIso2Country": "FR", + "geonameId": 2988507, + "latitudeCity": 48.856614, + "longitudeCity": 2.352222, + "nameCity": "Paris", + "timezone": "Europe/Paris" + }, + { + "GMT": "2", + "cityId": 5663, + "codeIataCity": "PAS", + "codeIso2Country": "GR", + "geonameId": 6692167, + "latitudeCity": 37.066666, + "longitudeCity": 25.1, + "nameCity": "Paros", + "timezone": "Europe/Athens" + }, + { + "GMT": "5.30", + "cityId": 5664, + "codeIataCity": "PAT", + "codeIso2Country": "IN", + "geonameId": 1260086, + "latitudeCity": 25.59489, + "longitudeCity": 85.09067, + "nameCity": "Patna", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "6.30", + "cityId": 5665, + "codeIataCity": "PAU", + "codeIso2Country": "MM", + "geonameId": 1302638, + "latitudeCity": 21.45, + "longitudeCity": 94.51667, + "nameCity": "Pauk", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-3", + "cityId": 5666, + "codeIataCity": "PAV", + "codeIso2Country": "BR", + "geonameId": 3403344, + "latitudeCity": -9.397778, + "longitudeCity": -38.22222, + "nameCity": "Paulo Afonso", + "timezone": "America/Maceio" + }, + { + "GMT": "10", + "cityId": 5667, + "codeIataCity": "PAW", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -11.416667, + "longitudeCity": 154.03334, + "nameCity": "Pambwa", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 5668, + "codeIataCity": "PAX", + "codeIso2Country": "HT", + "geonameId": 0, + "latitudeCity": 19.933332, + "longitudeCity": -72.84167, + "nameCity": "Port De Paix", + "timezone": "America/Port-au-Prince" + }, + { + "GMT": "8", + "cityId": 5669, + "codeIataCity": "PAY", + "codeIso2Country": "MY", + "geonameId": 1733502, + "latitudeCity": 5.993056, + "longitudeCity": 117.39445, + "nameCity": "Pamol", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-6", + "cityId": 5670, + "codeIataCity": "PAZ", + "codeIso2Country": "MX", + "geonameId": 3991983, + "latitudeCity": 20.516666, + "longitudeCity": -97.467224, + "nameCity": "Poza Rica", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-4", + "cityId": 5671, + "codeIataCity": "PBB", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -19.666668, + "longitudeCity": -51.183334, + "nameCity": "Paranaiba", + "timezone": "America/Campo_Grande" + }, + { + "GMT": "-6", + "cityId": 5672, + "codeIataCity": "PBC", + "codeIso2Country": "MX", + "geonameId": 3530597, + "latitudeCity": 19.135, + "longitudeCity": -98.3675, + "nameCity": "Puebla Atlixco", + "timezone": "America/Mexico_City" + }, + { + "GMT": "5.30", + "cityId": 5673, + "codeIataCity": "PBD", + "codeIso2Country": "IN", + "geonameId": 1259395, + "latitudeCity": 21.647223, + "longitudeCity": 69.656944, + "nameCity": "Porbandar", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "cityId": 5674, + "codeIataCity": "PBE", + "codeIso2Country": "CO", + "geonameId": 3671308, + "latitudeCity": 6.483333, + "longitudeCity": -74.48333, + "nameCity": "Puerto Berrio", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 5675, + "codeIataCity": "PBF", + "codeIso2Country": "US", + "geonameId": 4126226, + "latitudeCity": 34.175556, + "longitudeCity": -91.935555, + "nameCity": "Pine Bluff", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 5676, + "codeIataCity": "PBG", + "codeIso2Country": "US", + "geonameId": 5131692, + "latitudeCity": 44.7, + "longitudeCity": -73.48333, + "nameCity": "Plattsburgh", + "timezone": "America/New_York" + }, + { + "GMT": "6", + "cityId": 5677, + "codeIataCity": "PBH", + "codeIso2Country": "BT", + "geonameId": 1252490, + "latitudeCity": 27.433332, + "longitudeCity": 89.416664, + "nameCity": "Paro", + "timezone": "Asia/Thimphu" + }, + { + "GMT": "-5", + "cityId": 5678, + "codeIataCity": "PBI", + "codeIso2Country": "US", + "geonameId": 4177887, + "latitudeCity": 26.715342, + "longitudeCity": -80.053375, + "nameCity": "West Palm Beach", + "timezone": "America/New_York" + }, + { + "GMT": "11", + "cityId": 5679, + "codeIataCity": "PBJ", + "codeIso2Country": "VU", + "geonameId": 0, + "latitudeCity": -16.433332, + "longitudeCity": 168.21666, + "nameCity": "Paama", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-9", + "cityId": 5680, + "codeIataCity": "PBK", + "codeIso2Country": "US", + "geonameId": 5557293, + "latitudeCity": 57.8, + "longitudeCity": -134.7, + "nameCity": "Pack Creek", + "timezone": "America/Sitka" + }, + { + "GMT": "-4", + "cityId": 5681, + "codeIataCity": "PBL", + "codeIso2Country": "VE", + "geonameId": 3625549, + "latitudeCity": 10.479167, + "longitudeCity": -68.07361, + "nameCity": "Puerto Cabello", + "timezone": "America/Caracas" + }, + { + "GMT": "-3", + "cityId": 5682, + "codeIataCity": "PBM", + "codeIso2Country": "SR", + "geonameId": 3383330, + "latitudeCity": 5.823201, + "longitudeCity": -55.16788, + "nameCity": "Paramaribo", + "timezone": "America/Paramaribo" + }, + { + "GMT": "1", + "cityId": 5683, + "codeIataCity": "PBN", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -10.7, + "longitudeCity": 13.75, + "nameCity": "Porto Amboim", + "timezone": "Africa/Luanda" + }, + { + "GMT": "8", + "cityId": 5684, + "codeIataCity": "PBO", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -23.173908, + "longitudeCity": 117.748, + "nameCity": "Paraburdoo", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "cityId": 5685, + "codeIataCity": "PBP", + "codeIso2Country": "CR", + "geonameId": 3621990, + "latitudeCity": 10.416667, + "longitudeCity": -85.166664, + "nameCity": "Punta Islita", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-4", + "cityId": 5686, + "codeIataCity": "PBQ", + "codeIso2Country": "BR", + "geonameId": 3925212, + "latitudeCity": -11.7, + "longitudeCity": -61.2, + "nameCity": "Pimenta Bueno", + "timezone": "America/Porto_Velho" + }, + { + "GMT": "-6", + "cityId": 5687, + "codeIataCity": "PBR", + "codeIso2Country": "GT", + "geonameId": 3593376, + "latitudeCity": 15.723056, + "longitudeCity": -88.60611, + "nameCity": "Puerto Barrios", + "timezone": "America/Guatemala" + }, + { + "GMT": "7", + "cityId": 5688, + "codeIataCity": "PBS", + "codeIso2Country": "TH", + "geonameId": 6941772, + "latitudeCity": 7.895278, + "longitudeCity": 98.291664, + "nameCity": "Patong Beach", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-4", + "cityId": 5689, + "codeIataCity": "PBT", + "codeIso2Country": "PY", + "geonameId": 0, + "latitudeCity": -20.616667, + "longitudeCity": -58.026943, + "nameCity": "Puerto Leda", + "timezone": "America/Asuncion" + }, + { + "GMT": "6.30", + "cityId": 5690, + "codeIataCity": "PBU", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 27.333332, + "longitudeCity": 97.416664, + "nameCity": "Putao", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-4", + "cityId": 5691, + "codeIataCity": "PBV", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -11.516667, + "longitudeCity": -57.333332, + "nameCity": "Porto Dos Gauchos", + "timezone": "America/Cuiaba" + }, + { + "GMT": "8", + "cityId": 5692, + "codeIataCity": "PBW", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 9.53, + "longitudeCity": -0.22, + "nameCity": "Palibelo", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-4", + "cityId": 5693, + "codeIataCity": "PBX", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -10.860833, + "longitudeCity": -51.684444, + "nameCity": "Porto Alegre Do Norte", + "timezone": "America/Cuiaba" + }, + { + "GMT": "10", + "cityId": 5694, + "codeIataCity": "PBY", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -20.283333, + "longitudeCity": 148.83333, + "nameCity": "Peppers Palm Bay", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "cityId": 5695, + "codeIataCity": "PBZ", + "codeIso2Country": "ZA", + "geonameId": 964712, + "latitudeCity": -34.0875, + "longitudeCity": 23.329166, + "nameCity": "Plettenberg Bay", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-9", + "cityId": 5696, + "codeIataCity": "PCA", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 58.90139, + "longitudeCity": -157.70195, + "nameCity": "Portage Creek", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "cityId": 5697, + "codeIataCity": "PCB", + "codeIso2Country": "ID", + "geonameId": 6754874, + "latitudeCity": -6.35, + "longitudeCity": 106.76667, + "nameCity": "Pondok Cabe", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-5", + "cityId": 5698, + "codeIataCity": "PCC", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 1.9, + "longitudeCity": -75.15, + "nameCity": "Puerto Rico", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 5699, + "codeIataCity": "PCD", + "codeIso2Country": "US", + "geonameId": 4854529, + "latitudeCity": 43.016666, + "longitudeCity": -91.11667, + "nameCity": "Prairie Du Chien", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 5700, + "codeIataCity": "PCE", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.164165, + "longitudeCity": -157.43306, + "nameCity": "Painter Creek", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "cityId": 5701, + "codeIataCity": "PCF", + "codeIso2Country": "ZA", + "geonameId": 964349, + "latitudeCity": -26.71667, + "longitudeCity": 27.1, + "nameCity": "Potchefstroom", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-6", + "cityId": 5702, + "codeIataCity": "PCG", + "codeIso2Country": "GT", + "geonameId": 3595725, + "latitudeCity": 17.26, + "longitudeCity": -90.24722, + "nameCity": "Paso Caballos", + "timezone": "America/Guatemala" + }, + { + "GMT": "-6", + "cityId": 5703, + "codeIataCity": "PCH", + "codeIso2Country": "HN", + "geonameId": 3604104, + "latitudeCity": 15.0, + "longitudeCity": -89.0, + "nameCity": "Palacios", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-4", + "cityId": 5704, + "codeIataCity": "PCJ", + "codeIso2Country": "PY", + "geonameId": 0, + "latitudeCity": -22.268888, + "longitudeCity": -57.92861, + "nameCity": "Puerto La Victoria", + "timezone": "America/Asuncion" + }, + { + "GMT": "-9", + "cityId": 5705, + "codeIataCity": "PCK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 67.22889, + "longitudeCity": -150.28334, + "nameCity": "Porcupine Creek", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 5706, + "codeIataCity": "PCL", + "codeIso2Country": "PE", + "geonameId": 3693345, + "latitudeCity": -8.333333, + "longitudeCity": -74.63333, + "nameCity": "Pucallpa", + "timezone": "America/Lima" + }, + { + "GMT": "-5", + "cityId": 5707, + "codeIataCity": "PCM", + "codeIso2Country": "MX", + "geonameId": 3521342, + "latitudeCity": 20.6, + "longitudeCity": -87.1, + "nameCity": "Playa Del Carmen", + "timezone": "America/Cancun" + }, + { + "GMT": "12", + "cityId": 5708, + "codeIataCity": "PCN", + "codeIso2Country": "NZ", + "geonameId": 6243926, + "latitudeCity": -41.35, + "longitudeCity": 174.03334, + "nameCity": "Picton", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-7", + "cityId": 5709, + "codeIataCity": "PCO", + "codeIso2Country": "MX", + "geonameId": 3985710, + "latitudeCity": 23.583332, + "longitudeCity": -109.5, + "nameCity": "Punta Colorada", + "timezone": "America/Mazatlan" + }, + { + "GMT": "0", + "cityId": 5710, + "codeIataCity": "PCP", + "codeIso2Country": "ST", + "geonameId": 0, + "latitudeCity": 1.666667, + "longitudeCity": 7.416667, + "nameCity": "Principe", + "timezone": "Africa/Sao_Tome" + }, + { + "GMT": "7", + "cityId": 5711, + "codeIataCity": "PCQ", + "codeIso2Country": "LA", + "geonameId": 0, + "latitudeCity": 21.645832, + "longitudeCity": 101.90583, + "nameCity": "Phongsaly", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-5", + "cityId": 5712, + "codeIataCity": "PCR", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 6.183333, + "longitudeCity": -67.63333, + "nameCity": "Puerto Carreno", + "timezone": "America/Bogota" + }, + { + "GMT": "-3", + "cityId": 5713, + "codeIataCity": "PCS", + "codeIso2Country": "BR", + "geonameId": 3392167, + "latitudeCity": -7.083333, + "longitudeCity": -41.466667, + "nameCity": "Picos", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-5", + "cityId": 5714, + "codeIataCity": "PCT", + "codeIso2Country": "US", + "geonameId": 5102922, + "latitudeCity": 40.348718, + "longitudeCity": -74.659047, + "nameCity": "Princeton", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 5715, + "codeIataCity": "PCU", + "codeIso2Country": "US", + "geonameId": 4440975, + "latitudeCity": 30.433332, + "longitudeCity": -89.683334, + "nameCity": "Picayune", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 5716, + "codeIataCity": "PCV", + "codeIso2Country": "MX", + "geonameId": 4021889, + "latitudeCity": 27.083332, + "longitudeCity": -112.0, + "nameCity": "Punta Chivato", + "timezone": "America/Hermosillo" + }, + { + "GMT": "-5", + "cityId": 5717, + "codeIataCity": "PDA", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 3.883333, + "longitudeCity": -67.88333, + "nameCity": "Puerto Inirida", + "timezone": "America/Bogota" + }, + { + "GMT": "-9", + "cityId": 5718, + "codeIataCity": "PDB", + "codeIso2Country": "US", + "geonameId": 5871370, + "latitudeCity": 59.783333, + "longitudeCity": -154.11667, + "nameCity": "Pedro Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "11", + "cityId": 5719, + "codeIataCity": "PDC", + "codeIso2Country": "NC", + "geonameId": 0, + "latitudeCity": -21.316668, + "longitudeCity": 165.0, + "nameCity": "Mueo", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "2", + "cityId": 5720, + "codeIataCity": "PDD", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": -26.783056, + "longitudeCity": 32.880554, + "nameCity": "Ponta de Ouro", + "timezone": "Africa/Maputo" + }, + { + "GMT": "9.30", + "cityId": 5721, + "codeIataCity": "PDE", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -26.0, + "longitudeCity": 138.66667, + "nameCity": "Pandie Pandie", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-3", + "cityId": 5722, + "codeIataCity": "PDF", + "codeIso2Country": "BR", + "geonameId": 3452483, + "latitudeCity": -17.35, + "longitudeCity": -39.216667, + "nameCity": "Prado", + "timezone": "America/Bahia" + }, + { + "GMT": "7", + "cityId": 5723, + "codeIataCity": "PDG", + "codeIso2Country": "ID", + "geonameId": 1633419, + "latitudeCity": -0.786667, + "longitudeCity": 100.280556, + "nameCity": "Padang", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "10", + "cityId": 5724, + "codeIataCity": "PDI", + "codeIso2Country": "PG", + "geonameId": 2088350, + "latitudeCity": -6.5, + "longitudeCity": 147.58333, + "nameCity": "Pindiu", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-1", + "cityId": 5725, + "codeIataCity": "PDL", + "codeIso2Country": "PT", + "geonameId": 3372783, + "latitudeCity": 37.743847, + "longitudeCity": -25.696468, + "nameCity": "Ponta Delgada", + "timezone": "Atlantic/Azores" + }, + { + "GMT": "9.30", + "cityId": 5726, + "codeIataCity": "PDN", + "codeIso2Country": "AU", + "geonameId": 2068429, + "latitudeCity": -35.916668, + "longitudeCity": 138.08333, + "nameCity": "Parndana", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "7", + "cityId": 5727, + "codeIataCity": "PDO", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.283333, + "longitudeCity": 103.86667, + "nameCity": "Pendopo", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-3", + "cityId": 5728, + "codeIataCity": "PDP", + "codeIso2Country": "UY", + "geonameId": 3440939, + "latitudeCity": -34.9, + "longitudeCity": -54.95, + "nameCity": "Maldonado", + "timezone": "America/Montevideo" + }, + { + "GMT": "-3", + "cityId": 5729, + "codeIataCity": "PDR", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -5.311111, + "longitudeCity": -44.480278, + "nameCity": "Presidente Dutra", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-6", + "cityId": 5730, + "codeIataCity": "PDS", + "codeIso2Country": "MX", + "geonameId": 0, + "latitudeCity": 28.7, + "longitudeCity": -100.51667, + "nameCity": "Piedras Negras", + "timezone": "America/Matamoros" + }, + { + "GMT": "-8", + "cityId": 5731, + "codeIataCity": "PDT", + "codeIso2Country": "US", + "geonameId": 5745380, + "latitudeCity": 45.698334, + "longitudeCity": -118.83611, + "nameCity": "Pendleton", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "cityId": 5732, + "codeIataCity": "PDU", + "codeIso2Country": "UY", + "geonameId": 3441243, + "latitudeCity": -32.365833, + "longitudeCity": -58.064167, + "nameCity": "Paysandu", + "timezone": "America/Montevideo" + }, + { + "GMT": "2", + "cityId": 5733, + "codeIataCity": "PDV", + "codeIso2Country": "BG", + "geonameId": 728193, + "latitudeCity": 42.3, + "longitudeCity": 24.716667, + "nameCity": "Plovdiv", + "timezone": "Europe/Sofia" + }, + { + "GMT": "-8", + "cityId": 5734, + "codeIataCity": "PDX", + "codeIso2Country": "US", + "geonameId": 5746545, + "latitudeCity": 45.588997, + "longitudeCity": -122.5929, + "nameCity": "Portland", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "cityId": 5735, + "codeIataCity": "PDZ", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 9.966667, + "longitudeCity": -62.233334, + "nameCity": "Pedernales", + "timezone": "America/Caracas" + }, + { + "GMT": "9.30", + "cityId": 5736, + "codeIataCity": "PEA", + "codeIso2Country": "AU", + "geonameId": 2063591, + "latitudeCity": -35.733334, + "longitudeCity": 137.93333, + "nameCity": "Penneshaw", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "2", + "cityId": 5737, + "codeIataCity": "PEB", + "codeIso2Country": "MZ", + "geonameId": 1028970, + "latitudeCity": -17.166668, + "longitudeCity": 38.13333, + "nameCity": "Pebane", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-9", + "cityId": 5738, + "codeIataCity": "PEC", + "codeIso2Country": "US", + "geonameId": 5556304, + "latitudeCity": 57.95, + "longitudeCity": -136.23334, + "nameCity": "Pelican", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 5739, + "codeIataCity": "PED", + "codeIso2Country": "CZ", + "geonameId": 3068582, + "latitudeCity": 50.037828, + "longitudeCity": 15.780833, + "nameCity": "Pardubice", + "timezone": "Europe/Prague" + }, + { + "GMT": "5", + "cityId": 5740, + "codeIataCity": "PEE", + "codeIso2Country": "RU", + "geonameId": 511196, + "latitudeCity": 57.920025, + "longitudeCity": 56.01918, + "nameCity": "Perm", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "1", + "cityId": 5741, + "codeIataCity": "PEF", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 54.166668, + "longitudeCity": 13.766667, + "nameCity": "Peenemuende", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 5742, + "codeIataCity": "PEG", + "codeIso2Country": "IT", + "geonameId": 3171180, + "latitudeCity": 43.13333, + "longitudeCity": 12.366667, + "nameCity": "Perugia", + "timezone": "Europe/Rome" + }, + { + "GMT": "-3", + "cityId": 5743, + "codeIataCity": "PEH", + "codeIso2Country": "AR", + "geonameId": 3833875, + "latitudeCity": -35.85, + "longitudeCity": -61.86667, + "nameCity": "Pehuajo", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "-5", + "cityId": 5744, + "codeIataCity": "PEI", + "codeIso2Country": "CO", + "geonameId": 3672486, + "latitudeCity": 4.815945, + "longitudeCity": -75.736534, + "nameCity": "Pereira", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 5745, + "codeIataCity": "PEJ", + "codeIso2Country": "IT", + "geonameId": 0, + "latitudeCity": 41.701668, + "longitudeCity": 15.730556, + "nameCity": "Peschiei", + "timezone": "Europe/Rome" + }, + { + "GMT": "2", + "cityId": 5746, + "codeIataCity": "PEL", + "codeIso2Country": "LS", + "geonameId": 0, + "latitudeCity": -30.55, + "longitudeCity": 27.916668, + "nameCity": "Pelaneng", + "timezone": "Africa/Maseru" + }, + { + "GMT": "-5", + "cityId": 5747, + "codeIataCity": "PEM", + "codeIso2Country": "PE", + "geonameId": 3931470, + "latitudeCity": -12.583333, + "longitudeCity": -69.23333, + "nameCity": "Puerto Maldonado", + "timezone": "America/Lima" + }, + { + "GMT": "8", + "cityId": 5748, + "codeIataCity": "PEN", + "codeIso2Country": "MY", + "geonameId": 1735106, + "latitudeCity": 5.292961, + "longitudeCity": 100.265175, + "nameCity": "Penang", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "9.30", + "cityId": 5749, + "codeIataCity": "PEP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -14.15, + "longitudeCity": 130.1, + "nameCity": "Peppimenarti", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-6", + "cityId": 5750, + "codeIataCity": "PEQ", + "codeIso2Country": "US", + "geonameId": 5528182, + "latitudeCity": 31.433332, + "longitudeCity": -103.5, + "nameCity": "Pecos City", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 5751, + "codeIataCity": "PER", + "codeIso2Country": "AU", + "geonameId": 2063523, + "latitudeCity": -31.952222, + "longitudeCity": 115.858889, + "nameCity": "Perth", + "timezone": "Australia/Perth" + }, + { + "GMT": "3", + "cityId": 5752, + "codeIataCity": "PES", + "codeIso2Country": "RU", + "geonameId": 509820, + "latitudeCity": 61.683334, + "longitudeCity": 34.333332, + "nameCity": "Petrozavodsk", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-3", + "cityId": 5753, + "codeIataCity": "PET", + "codeIso2Country": "BR", + "geonameId": 3454244, + "latitudeCity": -31.718056, + "longitudeCity": -52.324444, + "nameCity": "Pelotas", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "cityId": 5754, + "codeIataCity": "PEU", + "codeIso2Country": "HN", + "geonameId": 3603157, + "latitudeCity": 15.216667, + "longitudeCity": -83.76667, + "nameCity": "Puerto Lempira", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "1", + "cityId": 5755, + "codeIataCity": "PEV", + "codeIso2Country": "HU", + "geonameId": 3046526, + "latitudeCity": 69.78333, + "longitudeCity": 170.6, + "nameCity": "Pecs", + "timezone": "Europe/Budapest" + }, + { + "GMT": "5", + "cityId": 5756, + "codeIataCity": "PEW", + "codeIso2Country": "PK", + "geonameId": 1168197, + "latitudeCity": 33.989082, + "longitudeCity": 71.51925, + "nameCity": "Peshawar", + "timezone": "Asia/Karachi" + }, + { + "GMT": "3", + "cityId": 5757, + "codeIataCity": "PEX", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 65.11667, + "longitudeCity": 57.13333, + "nameCity": "Pechora", + "timezone": "Europe/Moscow" + }, + { + "GMT": "9.30", + "cityId": 5758, + "codeIataCity": "PEY", + "codeIso2Country": "AU", + "geonameId": 2063588, + "latitudeCity": -31.916668, + "longitudeCity": 133.01666, + "nameCity": "Penong", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "3", + "cityId": 5759, + "codeIataCity": "PEZ", + "codeIso2Country": "RU", + "geonameId": 511565, + "latitudeCity": 53.11852, + "longitudeCity": 45.02305, + "nameCity": "Penza", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-9", + "cityId": 5760, + "codeIataCity": "PFA", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 58.666668, + "longitudeCity": -156.83333, + "nameCity": "Paf Warren", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "cityId": 5761, + "codeIataCity": "PFB", + "codeIso2Country": "BR", + "geonameId": 3454857, + "latitudeCity": -28.25, + "longitudeCity": -52.333332, + "nameCity": "Passo Fundo", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "cityId": 5762, + "codeIataCity": "PFC", + "codeIso2Country": "US", + "geonameId": 5736645, + "latitudeCity": 45.233334, + "longitudeCity": -123.95, + "nameCity": "Pacific City", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-9", + "cityId": 5763, + "codeIataCity": "PFD", + "codeIso2Country": "US", + "geonameId": 5554072, + "latitudeCity": 57.95, + "longitudeCity": -135.65, + "nameCity": "Port Frederick", + "timezone": "America/Juneau" + }, + { + "GMT": "0", + "cityId": 5764, + "codeIataCity": "PFJ", + "codeIso2Country": "IS", + "geonameId": 3412173, + "latitudeCity": 65.03333, + "longitudeCity": -19.008333, + "nameCity": "Patreksfjordur", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-6", + "cityId": 5765, + "codeIataCity": "PFN", + "codeIso2Country": "US", + "geonameId": 4167694, + "latitudeCity": 30.158813, + "longitudeCity": -85.660206, + "nameCity": "Panama City", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 5766, + "codeIataCity": "PFO", + "codeIso2Country": "CY", + "geonameId": 146214, + "latitudeCity": 34.71155, + "longitudeCity": 32.489105, + "nameCity": "Paphos", + "timezone": "Asia/Nicosia" + }, + { + "GMT": "3.30", + "cityId": 5767, + "codeIataCity": "PFQ", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 39.60689, + "longitudeCity": 47.87752, + "nameCity": "Parsabad", + "timezone": "Asia/Tehran" + }, + { + "GMT": "2", + "cityId": 5768, + "codeIataCity": "PFR", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -4.316667, + "longitudeCity": 20.583332, + "nameCity": "Ilebo", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-7", + "cityId": 5769, + "codeIataCity": "PGA", + "codeIso2Country": "US", + "geonameId": 5307778, + "latitudeCity": 36.926388, + "longitudeCity": -111.44722, + "nameCity": "Page", + "timezone": "America/Phoenix" + }, + { + "GMT": "10", + "cityId": 5770, + "codeIataCity": "PGB", + "codeIso2Country": "PG", + "geonameId": 2088662, + "latitudeCity": -7.016667, + "longitudeCity": 141.55, + "nameCity": "Pangoa", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 5771, + "codeIataCity": "PGC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.0, + "longitudeCity": -79.11667, + "nameCity": "Petersburg", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 5772, + "codeIataCity": "PGD", + "codeIso2Country": "US", + "geonameId": 4169452, + "latitudeCity": 26.919167, + "longitudeCity": -81.99139, + "nameCity": "Punta Gorda", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 5773, + "codeIataCity": "PGE", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.133333, + "longitudeCity": 146.15, + "nameCity": "Yegepa", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 5774, + "codeIataCity": "PGF", + "codeIso2Country": "FR", + "geonameId": 2987914, + "latitudeCity": 42.741016, + "longitudeCity": 2.868183, + "nameCity": "Perpignan", + "timezone": "Europe/Paris" + }, + { + "GMT": "-3", + "cityId": 5775, + "codeIataCity": "PGG", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -6.954167, + "longitudeCity": -55.46111, + "nameCity": "Progresso", + "timezone": "America/Santarem" + }, + { + "GMT": "5.30", + "cityId": 5776, + "codeIataCity": "PGH", + "codeIso2Country": "IN", + "geonameId": 1260440, + "latitudeCity": 29.031944, + "longitudeCity": 79.47361, + "nameCity": "Pantnagar", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "cityId": 5777, + "codeIataCity": "PGI", + "codeIso2Country": "AO", + "geonameId": 145778, + "latitudeCity": -7.333333, + "longitudeCity": 20.8, + "nameCity": "Chitato", + "timezone": "Africa/Luanda" + }, + { + "GMT": "7", + "cityId": 5778, + "codeIataCity": "PGK", + "codeIso2Country": "ID", + "geonameId": 1632654, + "latitudeCity": -2.164017, + "longitudeCity": 106.13707, + "nameCity": "Pangkalpinang", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-6", + "cityId": 5779, + "codeIataCity": "PGL", + "codeIso2Country": "US", + "geonameId": 4439506, + "latitudeCity": 30.383333, + "longitudeCity": -88.51667, + "nameCity": "Pascagoula", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 5780, + "codeIataCity": "PGM", + "codeIso2Country": "US", + "geonameId": 5871953, + "latitudeCity": 59.35, + "longitudeCity": -151.83333, + "nameCity": "Port Graham", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 5781, + "codeIataCity": "PGN", + "codeIso2Country": "PG", + "geonameId": 2088666, + "latitudeCity": -6.3, + "longitudeCity": 144.2, + "nameCity": "Pangia", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "cityId": 5782, + "codeIataCity": "PGO", + "codeIso2Country": "US", + "geonameId": 5433784, + "latitudeCity": 37.268612, + "longitudeCity": -107.050835, + "nameCity": "Pagosa Springs", + "timezone": "America/Denver" + }, + { + "GMT": "0", + "cityId": 5783, + "codeIataCity": "PGP", + "codeIso2Country": "ST", + "geonameId": 2410892, + "latitudeCity": 0.033333, + "longitudeCity": 6.533333, + "nameCity": "Porto Alegre", + "timezone": "Africa/Sao_Tome" + }, + { + "GMT": "-6", + "cityId": 5784, + "codeIataCity": "PGR", + "codeIso2Country": "US", + "geonameId": 4125388, + "latitudeCity": 36.033333, + "longitudeCity": -90.5, + "nameCity": "Paragould", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 5785, + "codeIataCity": "PGS", + "codeIso2Country": "US", + "geonameId": 5308335, + "latitudeCity": 35.533333, + "longitudeCity": -113.416664, + "nameCity": "Peach Springs", + "timezone": "America/Phoenix" + }, + { + "GMT": "3.30", + "cityId": 5786, + "codeIataCity": "PGU", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 27.383959, + "longitudeCity": 52.735516, + "nameCity": "Asaloyeh", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-5", + "cityId": 5787, + "codeIataCity": "PGV", + "codeIso2Country": "US", + "geonameId": 4469160, + "latitudeCity": 35.63333, + "longitudeCity": -77.38528, + "nameCity": "Greenville", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 5788, + "codeIataCity": "PGX", + "codeIso2Country": "FR", + "geonameId": 2987967, + "latitudeCity": 45.183334, + "longitudeCity": 0.716667, + "nameCity": "Perigueux", + "timezone": "Europe/Paris" + }, + { + "GMT": "-3", + "cityId": 5789, + "codeIataCity": "PGZ", + "codeIso2Country": "BR", + "geonameId": 3464975, + "latitudeCity": -25.083332, + "longitudeCity": -50.15, + "nameCity": "Ponta Grossa", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "7", + "cityId": 5790, + "codeIataCity": "PHA", + "codeIso2Country": "VN", + "geonameId": 0, + "latitudeCity": 11.633333, + "longitudeCity": 108.95, + "nameCity": "Phan Rang", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-3", + "cityId": 5791, + "codeIataCity": "PHB", + "codeIso2Country": "BR", + "geonameId": 3393001, + "latitudeCity": -2.891667, + "longitudeCity": -41.738335, + "nameCity": "Parnaiba", + "timezone": "America/Fortaleza" + }, + { + "GMT": "1", + "cityId": 5792, + "codeIataCity": "PHC", + "codeIso2Country": "NG", + "geonameId": 0, + "latitudeCity": 4.784821, + "longitudeCity": 7.005453, + "nameCity": "Port Harcourt", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-5", + "cityId": 5793, + "codeIataCity": "PHD", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 40.5, + "longitudeCity": -81.45, + "nameCity": "New Philadelphia", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 5794, + "codeIataCity": "PHE", + "codeIso2Country": "AU", + "geonameId": 2063042, + "latitudeCity": -20.377945, + "longitudeCity": 118.63164, + "nameCity": "Port Hedland", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "cityId": 5795, + "codeIataCity": "PHF", + "codeIso2Country": "US", + "geonameId": 4793846, + "latitudeCity": 36.978759, + "longitudeCity": -76.428003, + "nameCity": "Newport News", + "timezone": "America/New_York" + }, + { + "GMT": "7", + "cityId": 5796, + "codeIataCity": "PHH", + "codeIso2Country": "VN", + "geonameId": 0, + "latitudeCity": 10.9, + "longitudeCity": 108.066666, + "nameCity": "Phan Thiet", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-3", + "cityId": 5797, + "codeIataCity": "PHI", + "codeIso2Country": "BR", + "geonameId": 3388368, + "latitudeCity": -2.516667, + "longitudeCity": -45.083332, + "nameCity": "Pinheiro", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-5", + "cityId": 5798, + "codeIataCity": "PHK", + "codeIso2Country": "US", + "geonameId": 4155966, + "latitudeCity": 26.816668, + "longitudeCity": -80.666664, + "nameCity": "Pahokee", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 5799, + "codeIataCity": "PHL", + "codeIso2Country": "US", + "geonameId": 4560349, + "latitudeCity": 39.952335, + "longitudeCity": -75.163789, + "nameCity": "Philadelphia", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 5800, + "codeIataCity": "PHN", + "codeIso2Country": "US", + "geonameId": 5006233, + "latitudeCity": 42.913055, + "longitudeCity": -82.52611, + "nameCity": "Port Huron", + "timezone": "America/Detroit" + }, + { + "GMT": "-9", + "cityId": 5801, + "codeIataCity": "PHO", + "codeIso2Country": "US", + "geonameId": 5871791, + "latitudeCity": 68.35, + "longitudeCity": -166.8, + "nameCity": "Point Hope", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 5802, + "codeIataCity": "PHP", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 44.333332, + "longitudeCity": -101.666664, + "nameCity": "Philip", + "timezone": "America/Chicago" + }, + { + "GMT": "12", + "cityId": 5803, + "codeIataCity": "PHR", + "codeIso2Country": "FJ", + "geonameId": 8555973, + "latitudeCity": -18.2, + "longitudeCity": 178.05, + "nameCity": "Pacific Harbor", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "7", + "cityId": 5804, + "codeIataCity": "PHS", + "codeIso2Country": "TH", + "geonameId": 1607708, + "latitudeCity": 16.771307, + "longitudeCity": 100.2812, + "nameCity": "Phitsanulok", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-6", + "cityId": 5805, + "codeIataCity": "PHT", + "codeIso2Country": "US", + "geonameId": 4647963, + "latitudeCity": 36.33361, + "longitudeCity": -88.38333, + "nameCity": "Paris", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "cityId": 5806, + "codeIataCity": "PHU", + "codeIso2Country": "VN", + "geonameId": 1566083, + "latitudeCity": 9.95, + "longitudeCity": 106.333336, + "nameCity": "Phu Vinh", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "2", + "cityId": 5807, + "codeIataCity": "PHW", + "codeIso2Country": "ZA", + "geonameId": 965528, + "latitudeCity": -23.93361, + "longitudeCity": 31.15611, + "nameCity": "Phalaborwa", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-7", + "cityId": 5808, + "codeIataCity": "PHX", + "codeIso2Country": "US", + "geonameId": 5308655, + "latitudeCity": 33.448377, + "longitudeCity": -112.074037, + "nameCity": "Phoenix", + "timezone": "America/Phoenix" + }, + { + "GMT": "7", + "cityId": 5809, + "codeIataCity": "PHY", + "codeIso2Country": "TH", + "geonameId": 8567895, + "latitudeCity": 16.681944, + "longitudeCity": 101.19833, + "nameCity": "Phetchabun", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "7", + "cityId": 5810, + "codeIataCity": "PHZ", + "codeIso2Country": "TH", + "geonameId": 1119405, + "latitudeCity": 8.166667, + "longitudeCity": 98.28333, + "nameCity": "Phi Phi Island", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-6", + "cityId": 5811, + "codeIataCity": "PIA", + "codeIso2Country": "US", + "geonameId": 4905687, + "latitudeCity": 40.66643, + "longitudeCity": -89.69012, + "nameCity": "Peoria", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 5812, + "codeIataCity": "PIC", + "codeIso2Country": "TC", + "geonameId": 8131575, + "latitudeCity": 21.883333, + "longitudeCity": -72.1, + "nameCity": "Pine Cay", + "timezone": "America/Grand_Turk" + }, + { + "GMT": "8", + "cityId": 5813, + "codeIataCity": "PIF", + "codeIso2Country": "TW", + "geonameId": 1670481, + "latitudeCity": 22.705004, + "longitudeCity": 120.490234, + "nameCity": "Pingtung", + "timezone": "Asia/Taipei" + }, + { + "GMT": "-4", + "cityId": 5814, + "codeIataCity": "PIG", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -24.75, + "longitudeCity": -51.716667, + "nameCity": "Pitinga", + "timezone": "America/Boa_Vista" + }, + { + "GMT": "-7", + "cityId": 5815, + "codeIataCity": "PIH", + "codeIso2Country": "US", + "geonameId": 5604045, + "latitudeCity": 42.913334, + "longitudeCity": -112.594444, + "nameCity": "Pocatello", + "timezone": "America/Boise" + }, + { + "GMT": "-4", + "cityId": 5816, + "codeIataCity": "PIL", + "codeIso2Country": "PY", + "geonameId": 0, + "latitudeCity": -26.866667, + "longitudeCity": -58.333332, + "nameCity": "Pilar", + "timezone": "America/Asuncion" + }, + { + "GMT": "-5", + "cityId": 5817, + "codeIataCity": "PIM", + "codeIso2Country": "US", + "geonameId": 4188985, + "latitudeCity": 32.86667, + "longitudeCity": -84.833336, + "nameCity": "Pine Mountain", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "cityId": 5818, + "codeIataCity": "PIN", + "codeIso2Country": "BR", + "geonameId": 3393008, + "latitudeCity": -2.669208, + "longitudeCity": -56.770027, + "nameCity": "Parintins", + "timezone": "America/Manaus" + }, + { + "GMT": "-5", + "cityId": 5819, + "codeIataCity": "PIO", + "codeIso2Country": "PE", + "geonameId": 3932145, + "latitudeCity": -13.75, + "longitudeCity": -76.21667, + "nameCity": "Pisco", + "timezone": "America/Lima" + }, + { + "GMT": "-9", + "cityId": 5820, + "codeIataCity": "PIP", + "codeIso2Country": "US", + "geonameId": 5871598, + "latitudeCity": 57.564167, + "longitudeCity": -157.579167, + "nameCity": "Pilot Point", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "cityId": 5821, + "codeIataCity": "PIQ", + "codeIso2Country": "GY", + "geonameId": 3661070, + "latitudeCity": 5.5, + "longitudeCity": -59.0, + "nameCity": "Pipillipai", + "timezone": "America/Guyana" + }, + { + "GMT": "-6", + "cityId": 5822, + "codeIataCity": "PIR", + "codeIso2Country": "US", + "geonameId": 5767918, + "latitudeCity": 44.380363, + "longitudeCity": -100.29319, + "nameCity": "Pierre", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 5823, + "codeIataCity": "PIS", + "codeIso2Country": "FR", + "geonameId": 2986495, + "latitudeCity": 46.580224, + "longitudeCity": 0.340375, + "nameCity": "Poitiers", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 5824, + "codeIataCity": "PIT", + "codeIso2Country": "US", + "geonameId": 5206379, + "latitudeCity": 40.440625, + "longitudeCity": -79.995886, + "nameCity": "Pittsburgh", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 5825, + "codeIataCity": "PIU", + "codeIso2Country": "PE", + "geonameId": 3693528, + "latitudeCity": -5.201667, + "longitudeCity": -80.613335, + "nameCity": "Piura", + "timezone": "America/Lima" + }, + { + "GMT": "-3", + "cityId": 5826, + "codeIataCity": "PIV", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -17.338612, + "longitudeCity": -44.93222, + "nameCity": "Pirapora", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "cityId": 5827, + "codeIataCity": "PIW", + "codeIso2Country": "CA", + "geonameId": 6104661, + "latitudeCity": 55.7, + "longitudeCity": -97.333336, + "nameCity": "Pikwitonei", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-1", + "cityId": 5828, + "codeIataCity": "PIX", + "codeIso2Country": "PT", + "geonameId": 3372908, + "latitudeCity": 38.466667, + "longitudeCity": -28.3, + "nameCity": "Pico Island", + "timezone": "Atlantic/Azores" + }, + { + "GMT": "-9", + "cityId": 5829, + "codeIataCity": "PIZ", + "codeIso2Country": "US", + "geonameId": 5871778, + "latitudeCity": 69.75, + "longitudeCity": -163.16667, + "nameCity": "Point Lay", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 5830, + "codeIataCity": "PJA", + "codeIso2Country": "SE", + "geonameId": 603761, + "latitudeCity": 67.246666, + "longitudeCity": 23.075, + "nameCity": "Pajala", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-7", + "cityId": 5831, + "codeIataCity": "PJB", + "codeIso2Country": "US", + "geonameId": 5308305, + "latitudeCity": 34.261112, + "longitudeCity": -111.34167, + "nameCity": "Payson", + "timezone": "America/Phoenix" + }, + { + "GMT": "-4", + "cityId": 5832, + "codeIataCity": "PJC", + "codeIso2Country": "PY", + "geonameId": 0, + "latitudeCity": -22.5, + "longitudeCity": -55.666668, + "nameCity": "Pedro Juan Caballero", + "timezone": "America/Asuncion" + }, + { + "GMT": "5", + "cityId": 5833, + "codeIataCity": "PJG", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 26.966667, + "longitudeCity": 64.1, + "nameCity": "Panjgur", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-6", + "cityId": 5834, + "codeIataCity": "PJM", + "codeIso2Country": "CR", + "geonameId": 3622674, + "latitudeCity": 8.583333, + "longitudeCity": -83.333336, + "nameCity": "Puerto Jimenez", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-9", + "cityId": 5835, + "codeIataCity": "PJS", + "codeIso2Country": "US", + "geonameId": 5871935, + "latitudeCity": 60.04861, + "longitudeCity": -148.06389, + "nameCity": "Port San Juan", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 5836, + "codeIataCity": "PJZ", + "codeIso2Country": "MX", + "geonameId": 3531673, + "latitudeCity": 21.166668, + "longitudeCity": -86.833336, + "nameCity": "Puerto Juarez", + "timezone": "America/Cancun" + }, + { + "GMT": "-9", + "cityId": 5837, + "codeIataCity": "PKA", + "codeIso2Country": "US", + "geonameId": 5869649, + "latitudeCity": 60.710835, + "longitudeCity": -161.75806, + "nameCity": "Napaskiak", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 5838, + "codeIataCity": "PKB", + "codeIso2Country": "US", + "geonameId": 4817641, + "latitudeCity": 39.345554, + "longitudeCity": -81.43889, + "nameCity": "Parkersburg", + "timezone": "America/New_York" + }, + { + "GMT": "12", + "cityId": 5839, + "codeIataCity": "PKC", + "codeIso2Country": "RU", + "geonameId": 2122104, + "latitudeCity": 53.016666, + "longitudeCity": 158.65, + "nameCity": "Petropavlovsk-Kamchats", + "timezone": "Asia/Kamchatka" + }, + { + "GMT": "-6", + "cityId": 5840, + "codeIataCity": "PKD", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 46.898335, + "longitudeCity": -95.07167, + "nameCity": "Park Rapids", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 5841, + "codeIataCity": "PKE", + "codeIso2Country": "AU", + "geonameId": 2153778, + "latitudeCity": -33.138454, + "longitudeCity": 148.2329, + "nameCity": "Parkes", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "cityId": 5842, + "codeIataCity": "PKF", + "codeIso2Country": "US", + "geonameId": 5266230, + "latitudeCity": 45.933334, + "longitudeCity": -90.53333, + "nameCity": "Park Falls", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 5843, + "codeIataCity": "PKG", + "codeIso2Country": "MY", + "geonameId": 1735447, + "latitudeCity": 4.216667, + "longitudeCity": 100.7, + "nameCity": "Pangkor", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "2", + "cityId": 5844, + "codeIataCity": "PKH", + "codeIso2Country": "GR", + "geonameId": 264371, + "latitudeCity": 37.301388, + "longitudeCity": 23.147223, + "nameCity": "Porto Kheli", + "timezone": "Europe/Athens" + }, + { + "GMT": "-6", + "cityId": 5845, + "codeIataCity": "PKJ", + "codeIso2Country": "GT", + "geonameId": 0, + "latitudeCity": 15.6425, + "longitudeCity": -90.76195, + "nameCity": "Playa Grande", + "timezone": "America/Guatemala" + }, + { + "GMT": "6.30", + "cityId": 5846, + "codeIataCity": "PKK", + "codeIso2Country": "MM", + "geonameId": 1302439, + "latitudeCity": 21.343332, + "longitudeCity": 95.10639, + "nameCity": "Pakokku", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "12", + "cityId": 5847, + "codeIataCity": "PKL", + "codeIso2Country": "NZ", + "geonameId": 2193733, + "latitudeCity": -37.806946, + "longitudeCity": 174.85333, + "nameCity": "Pakatoa Island", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-4", + "cityId": 5848, + "codeIataCity": "PKM", + "codeIso2Country": "GY", + "geonameId": 3376398, + "latitudeCity": 7.733333, + "longitudeCity": -59.88333, + "nameCity": "Port Kaituma", + "timezone": "America/Guyana" + }, + { + "GMT": "7", + "cityId": 5849, + "codeIataCity": "PKN", + "codeIso2Country": "ID", + "geonameId": 1632694, + "latitudeCity": -2.7, + "longitudeCity": 111.666664, + "nameCity": "Pangkalanbuun", + "timezone": "Asia/Pontianak" + }, + { + "GMT": "1", + "cityId": 5850, + "codeIataCity": "PKO", + "codeIso2Country": "BJ", + "geonameId": 0, + "latitudeCity": 9.35, + "longitudeCity": 2.616667, + "nameCity": "Parakou", + "timezone": "Africa/Porto-Novo" + }, + { + "GMT": "-10", + "cityId": 5851, + "codeIataCity": "PKP", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -14.75, + "longitudeCity": -138.96666, + "nameCity": "Puka Puka", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "5.45", + "cityId": 5852, + "codeIataCity": "PKR", + "codeIso2Country": "NP", + "geonameId": 1282898, + "latitudeCity": 28.197222, + "longitudeCity": 83.986115, + "nameCity": "Pokhara", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "7", + "cityId": 5853, + "codeIataCity": "PKS", + "codeIso2Country": "LA", + "geonameId": 0, + "latitudeCity": 18.366667, + "longitudeCity": 103.683334, + "nameCity": "Paksane", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "9.30", + "cityId": 5854, + "codeIataCity": "PKT", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -14.25, + "longitudeCity": 129.53334, + "nameCity": "Port Keats", + "timezone": "Australia/Darwin" + }, + { + "GMT": "7", + "cityId": 5855, + "codeIataCity": "PKU", + "codeIso2Country": "ID", + "geonameId": 1631761, + "latitudeCity": 0.464563, + "longitudeCity": 101.446884, + "nameCity": "Pekanbaru", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "3", + "cityId": 5856, + "codeIataCity": "PKV", + "codeIso2Country": "RU", + "geonameId": 504341, + "latitudeCity": 57.816666, + "longitudeCity": 28.3, + "nameCity": "Pskov", + "timezone": "Europe/Moscow" + }, + { + "GMT": "2", + "cityId": 5857, + "codeIataCity": "PKW", + "codeIso2Country": "BW", + "geonameId": 0, + "latitudeCity": -22.05, + "longitudeCity": 27.816668, + "nameCity": "Selebi-Phikwe", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "7", + "cityId": 5858, + "codeIataCity": "PKY", + "codeIso2Country": "ID", + "geonameId": 1633118, + "latitudeCity": -2.223958, + "longitudeCity": 113.945786, + "nameCity": "Palangkaraya", + "timezone": "Asia/Pontianak" + }, + { + "GMT": "7", + "cityId": 5859, + "codeIataCity": "PKZ", + "codeIso2Country": "LA", + "geonameId": 1654379, + "latitudeCity": 15.136257, + "longitudeCity": 105.781296, + "nameCity": "Pakse", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-5", + "cityId": 5860, + "codeIataCity": "PLA", + "codeIso2Country": "CO", + "geonameId": 3687925, + "latitudeCity": 3.3, + "longitudeCity": -75.7, + "nameCity": "Planadas", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 5861, + "codeIataCity": "PLC", + "codeIso2Country": "CO", + "geonameId": 3672068, + "latitudeCity": 8.416667, + "longitudeCity": -75.6, + "nameCity": "Planeta Rica", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 5862, + "codeIataCity": "PLD", + "codeIso2Country": "CR", + "geonameId": 3621359, + "latitudeCity": 10.25, + "longitudeCity": -85.416664, + "nameCity": "Playa Samara", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "10", + "cityId": 5863, + "codeIataCity": "PLE", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.383333, + "longitudeCity": 142.98334, + "nameCity": "Paiela", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 5864, + "codeIataCity": "PLF", + "codeIso2Country": "TD", + "geonameId": 0, + "latitudeCity": 9.383333, + "longitudeCity": 14.933333, + "nameCity": "Pala", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "0", + "cityId": 5865, + "codeIataCity": "PLH", + "codeIso2Country": "GB", + "geonameId": 2640194, + "latitudeCity": 50.422337, + "longitudeCity": -4.110009, + "nameCity": "Plymouth", + "timezone": "Europe/London" + }, + { + "GMT": "-4", + "cityId": 5866, + "codeIataCity": "PLI", + "codeIso2Country": "VC", + "geonameId": 0, + "latitudeCity": 12.35, + "longitudeCity": -61.233334, + "nameCity": "Palm Island", + "timezone": "America/St_Vincent" + }, + { + "GMT": "-6", + "cityId": 5867, + "codeIataCity": "PLJ", + "codeIso2Country": "BZ", + "geonameId": 3581447, + "latitudeCity": 16.533333, + "longitudeCity": -88.352776, + "nameCity": "Placencia", + "timezone": "America/Belize" + }, + { + "GMT": "-6", + "cityId": 5868, + "codeIataCity": "PLK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 36.65, + "longitudeCity": -93.21667, + "nameCity": "Point Lookout", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 5869, + "codeIataCity": "PLL", + "codeIso2Country": "BR", + "geonameId": 3663517, + "latitudeCity": -3.145556, + "longitudeCity": -59.984444, + "nameCity": "Ponta Pelada", + "timezone": "America/Manaus" + }, + { + "GMT": "7", + "cityId": 5870, + "codeIataCity": "PLM", + "codeIso2Country": "ID", + "geonameId": 1633070, + "latitudeCity": -2.900146, + "longitudeCity": 104.69861, + "nameCity": "Palembang", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-5", + "cityId": 5871, + "codeIataCity": "PLN", + "codeIso2Country": "US", + "geonameId": 5005247, + "latitudeCity": 45.57083, + "longitudeCity": -84.79278, + "nameCity": "Pellston", + "timezone": "America/Detroit" + }, + { + "GMT": "9.30", + "cityId": 5872, + "codeIataCity": "PLO", + "codeIso2Country": "AU", + "geonameId": 2063036, + "latitudeCity": -34.603333, + "longitudeCity": 135.87454, + "nameCity": "Port Lincoln", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-5", + "cityId": 5873, + "codeIataCity": "PLP", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 8.333333, + "longitudeCity": -78.13333, + "nameCity": "La Palma", + "timezone": "America/Panama" + }, + { + "GMT": "2", + "cityId": 5874, + "codeIataCity": "PLQ", + "codeIso2Country": "LT", + "geonameId": 596238, + "latitudeCity": 55.710803, + "longitudeCity": 21.131806, + "nameCity": "Klaipeda", + "timezone": "Europe/Vilnius" + }, + { + "GMT": "-6", + "cityId": 5875, + "codeIataCity": "PLR", + "codeIso2Country": "US", + "geonameId": 4082589, + "latitudeCity": 33.583332, + "longitudeCity": -86.28333, + "nameCity": "Pell City", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 5876, + "codeIataCity": "PLS", + "codeIso2Country": "TC", + "geonameId": 8131575, + "latitudeCity": 21.769167, + "longitudeCity": -72.26833, + "nameCity": "Providenciales", + "timezone": "America/Grand_Turk" + }, + { + "GMT": "-5", + "cityId": 5877, + "codeIataCity": "PLT", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 9.783333, + "longitudeCity": -74.78333, + "nameCity": "Plato", + "timezone": "America/Bogota" + }, + { + "GMT": "2", + "cityId": 5878, + "codeIataCity": "PLV", + "codeIso2Country": "UA", + "geonameId": 696643, + "latitudeCity": 49.583332, + "longitudeCity": 34.533333, + "nameCity": "Poltava", + "timezone": "Europe/Kiev" + }, + { + "GMT": "8", + "cityId": 5879, + "codeIataCity": "PLW", + "codeIso2Country": "ID", + "geonameId": 1633034, + "latitudeCity": -0.917945, + "longitudeCity": 119.90671, + "nameCity": "Palu", + "timezone": "Asia/Makassar" + }, + { + "GMT": "6", + "cityId": 5880, + "codeIataCity": "PLX", + "codeIso2Country": "KZ", + "geonameId": 0, + "latitudeCity": 50.333332, + "longitudeCity": 80.25, + "nameCity": "Semipalatinsk", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-5", + "cityId": 5881, + "codeIataCity": "PLY", + "codeIso2Country": "US", + "geonameId": 4920808, + "latitudeCity": 41.365276, + "longitudeCity": -86.30167, + "nameCity": "Plymouth", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "2", + "cityId": 5882, + "codeIataCity": "PLZ", + "codeIso2Country": "ZA", + "geonameId": 964420, + "latitudeCity": -33.98371, + "longitudeCity": 25.611422, + "nameCity": "Port Elizabeth", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "3", + "cityId": 5883, + "codeIataCity": "PMA", + "codeIso2Country": "TZ", + "geonameId": 154605, + "latitudeCity": -5.242222, + "longitudeCity": 39.801945, + "nameCity": "Pemba", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-6", + "cityId": 5884, + "codeIataCity": "PMB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 49.0, + "longitudeCity": -98.083336, + "nameCity": "Pembina", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 5885, + "codeIataCity": "PMC", + "codeIso2Country": "CL", + "geonameId": 3874960, + "latitudeCity": -41.433727, + "longitudeCity": -73.09831, + "nameCity": "Puerto Montt", + "timezone": "America/Santiago" + }, + { + "GMT": "-8", + "cityId": 5886, + "codeIataCity": "PMD", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 34.6275, + "longitudeCity": -118.083336, + "nameCity": "Palmdale", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "0", + "cityId": 5887, + "codeIataCity": "PME", + "codeIso2Country": "GB", + "geonameId": 0, + "latitudeCity": 50.8, + "longitudeCity": -1.083333, + "nameCity": "Portsmouth", + "timezone": "Europe/London" + }, + { + "GMT": "-4", + "cityId": 5888, + "codeIataCity": "PMG", + "codeIso2Country": "BR", + "geonameId": 3464460, + "latitudeCity": -22.55, + "longitudeCity": -55.7, + "nameCity": "Ponta Pora", + "timezone": "America/Campo_Grande" + }, + { + "GMT": "-5", + "cityId": 5889, + "codeIataCity": "PMH", + "codeIso2Country": "US", + "geonameId": 4521816, + "latitudeCity": 38.75, + "longitudeCity": -82.98333, + "nameCity": "Portsmouth", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 5890, + "codeIataCity": "PMI", + "codeIso2Country": "ES", + "geonameId": 2512989, + "latitudeCity": 39.547653, + "longitudeCity": 2.730388, + "nameCity": "Palma Mallorca", + "timezone": "Europe/Madrid" + }, + { + "GMT": "10", + "cityId": 5891, + "codeIataCity": "PMK", + "codeIso2Country": "AU", + "geonameId": 2146142, + "latitudeCity": -18.333332, + "longitudeCity": 146.66667, + "nameCity": "Palm Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "cityId": 5892, + "codeIataCity": "PML", + "codeIso2Country": "US", + "geonameId": 5871929, + "latitudeCity": 56.005554, + "longitudeCity": -160.55833, + "nameCity": "Port Moller", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "cityId": 5893, + "codeIataCity": "PMM", + "codeIso2Country": "TH", + "geonameId": 1607801, + "latitudeCity": 13.75, + "longitudeCity": 101.35, + "nameCity": "Phanom Sarakham", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "10", + "cityId": 5894, + "codeIataCity": "PMN", + "codeIso2Country": "PG", + "geonameId": 2085070, + "latitudeCity": -9.716667, + "longitudeCity": 149.4, + "nameCity": "Pumani", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 5895, + "codeIataCity": "PMO", + "codeIso2Country": "IT", + "geonameId": 2523920, + "latitudeCity": 38.186523, + "longitudeCity": 13.104779, + "nameCity": "Palermo", + "timezone": "Europe/Rome" + }, + { + "GMT": "10", + "cityId": 5896, + "codeIataCity": "PMP", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.666667, + "longitudeCity": 143.41667, + "nameCity": "Pimaga", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "cityId": 5897, + "codeIataCity": "PMQ", + "codeIso2Country": "AR", + "geonameId": 3841475, + "latitudeCity": -46.53639, + "longitudeCity": -70.98361, + "nameCity": "Perito Moreno", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "12", + "cityId": 5898, + "codeIataCity": "PMR", + "codeIso2Country": "NZ", + "geonameId": 2185018, + "latitudeCity": -40.323532, + "longitudeCity": 175.62126, + "nameCity": "Palmerston North", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "2", + "cityId": 5899, + "codeIataCity": "PMS", + "codeIso2Country": "SY", + "geonameId": 0, + "latitudeCity": 34.6, + "longitudeCity": 38.25, + "nameCity": "Palmyra", + "timezone": "Asia/Damascus" + }, + { + "GMT": "-4", + "cityId": 5900, + "codeIataCity": "PMT", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 7.566667, + "longitudeCity": -57.183334, + "nameCity": "Paramakotoi", + "timezone": "America/Guyana" + }, + { + "GMT": "-9", + "cityId": 5901, + "codeIataCity": "PMU", + "codeIso2Country": "US", + "geonameId": 5871128, + "latitudeCity": 61.983334, + "longitudeCity": -160.33333, + "nameCity": "Paimiut", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "cityId": 5902, + "codeIataCity": "PMV", + "codeIso2Country": "VE", + "geonameId": 3629965, + "latitudeCity": 10.917189, + "longitudeCity": -63.96899, + "nameCity": "Porlamar", + "timezone": "America/Caracas" + }, + { + "GMT": "-3", + "cityId": 5903, + "codeIataCity": "PMW", + "codeIso2Country": "BR", + "geonameId": 3474574, + "latitudeCity": -10.241667, + "longitudeCity": -48.35278, + "nameCity": "Palmas", + "timezone": "America/Araguaina" + }, + { + "GMT": "-5", + "cityId": 5904, + "codeIataCity": "PMX", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.15, + "longitudeCity": -72.316666, + "nameCity": "Palmer", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 5905, + "codeIataCity": "PMY", + "codeIso2Country": "AR", + "geonameId": 3840092, + "latitudeCity": -42.733334, + "longitudeCity": -65.066666, + "nameCity": "Puerto Madryn", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "-6", + "cityId": 5906, + "codeIataCity": "PMZ", + "codeIso2Country": "CR", + "geonameId": 3622674, + "latitudeCity": 8.950836, + "longitudeCity": -83.46598, + "nameCity": "Palmar", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "1", + "cityId": 5907, + "codeIataCity": "PNA", + "codeIso2Country": "ES", + "geonameId": 3114472, + "latitudeCity": 42.817988, + "longitudeCity": -1.644184, + "nameCity": "Pamplona", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-3", + "cityId": 5908, + "codeIataCity": "PNB", + "codeIso2Country": "BR", + "geonameId": 3474574, + "latitudeCity": -10.7, + "longitudeCity": -48.416668, + "nameCity": "Porto Nacional", + "timezone": "America/Araguaina" + }, + { + "GMT": "-6", + "cityId": 5909, + "codeIataCity": "PNC", + "codeIso2Country": "US", + "geonameId": 4548267, + "latitudeCity": 36.728058, + "longitudeCity": -97.09944, + "nameCity": "Ponca City", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 5910, + "codeIataCity": "PND", + "codeIso2Country": "BZ", + "geonameId": 3581398, + "latitudeCity": 16.1, + "longitudeCity": -88.816666, + "nameCity": "Punta Gorda", + "timezone": "America/Belize" + }, + { + "GMT": "-9", + "cityId": 5911, + "codeIataCity": "PNF", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 58.683334, + "longitudeCity": -156.83333, + "nameCity": "Peterson's Point", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "cityId": 5912, + "codeIataCity": "PNG", + "codeIso2Country": "BR", + "geonameId": 3464975, + "latitudeCity": -25.516666, + "longitudeCity": -48.5, + "nameCity": "Paranagua", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "7", + "cityId": 5913, + "codeIataCity": "PNH", + "codeIso2Country": "KH", + "geonameId": 1821306, + "latitudeCity": 11.546111, + "longitudeCity": 104.84778, + "nameCity": "Phnom Penh", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "11", + "cityId": 5914, + "codeIataCity": "PNI", + "codeIso2Country": "FM", + "geonameId": 0, + "latitudeCity": 6.980947, + "longitudeCity": 158.20334, + "nameCity": "Pohnpei", + "timezone": "Pacific/Pohnpei" + }, + { + "GMT": "8", + "cityId": 5915, + "codeIataCity": "PNJ", + "codeIso2Country": "CN", + "geonameId": 1787093, + "latitudeCity": 37.808887, + "longitudeCity": 120.812775, + "nameCity": "Peng Lai", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "7", + "cityId": 5916, + "codeIataCity": "PNK", + "codeIso2Country": "ID", + "geonameId": 1630789, + "latitudeCity": -0.14735, + "longitudeCity": 109.40533, + "nameCity": "Pontianak", + "timezone": "Asia/Pontianak" + }, + { + "GMT": "1", + "cityId": 5917, + "codeIataCity": "PNL", + "codeIso2Country": "IT", + "geonameId": 2523890, + "latitudeCity": 36.81361, + "longitudeCity": 11.966111, + "nameCity": "Pantelleria", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "cityId": 5918, + "codeIataCity": "PNN", + "codeIso2Country": "US", + "geonameId": 4963692, + "latitudeCity": 45.233334, + "longitudeCity": -67.566666, + "nameCity": "Princeton", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 5919, + "codeIataCity": "PNO", + "codeIso2Country": "MX", + "geonameId": 0, + "latitudeCity": 16.3425, + "longitudeCity": -98.06944, + "nameCity": "Pinotepa Nacional", + "timezone": "America/Mexico_City" + }, + { + "GMT": "10", + "cityId": 5920, + "codeIataCity": "PNP", + "codeIso2Country": "PG", + "geonameId": 2088163, + "latitudeCity": -8.807474, + "longitudeCity": 148.30873, + "nameCity": "Popondetta", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5.30", + "cityId": 5921, + "codeIataCity": "PNQ", + "codeIso2Country": "IN", + "geonameId": 1259229, + "latitudeCity": 18.581388, + "longitudeCity": 73.920555, + "nameCity": "Pune", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "cityId": 5922, + "codeIataCity": "PNR", + "codeIso2Country": "CG", + "geonameId": 2255414, + "latitudeCity": -4.809799, + "longitudeCity": 11.882377, + "nameCity": "Pointe-Noire", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-6", + "cityId": 5923, + "codeIataCity": "PNS", + "codeIso2Country": "US", + "geonameId": 4168228, + "latitudeCity": 30.421309, + "longitudeCity": -87.216915, + "nameCity": "Pensacola", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 5924, + "codeIataCity": "PNT", + "codeIso2Country": "CL", + "geonameId": 3874958, + "latitudeCity": -51.683334, + "longitudeCity": -72.51667, + "nameCity": "Puerto Natales", + "timezone": "America/Santiago" + }, + { + "GMT": "-7", + "cityId": 5925, + "codeIataCity": "PNU", + "codeIso2Country": "US", + "geonameId": 5544525, + "latitudeCity": 37.833332, + "longitudeCity": -112.38333, + "nameCity": "Panguitch", + "timezone": "America/Denver" + }, + { + "GMT": "2", + "cityId": 5926, + "codeIataCity": "PNV", + "codeIso2Country": "LT", + "geonameId": 596128, + "latitudeCity": 55.733334, + "longitudeCity": 24.383333, + "nameCity": "Panevezys", + "timezone": "Europe/Vilnius" + }, + { + "GMT": "-6", + "cityId": 5927, + "codeIataCity": "PNX", + "codeIso2Country": "US", + "geonameId": 4728328, + "latitudeCity": 33.63889, + "longitudeCity": -96.611115, + "nameCity": "Sherman-Denison", + "timezone": "America/Chicago" + }, + { + "GMT": "5.30", + "cityId": 5928, + "codeIataCity": "PNY", + "codeIso2Country": "IN", + "geonameId": 1259425, + "latitudeCity": 12.016667, + "longitudeCity": 79.8, + "nameCity": "Pondicherry", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-3", + "cityId": 5929, + "codeIataCity": "PNZ", + "codeIso2Country": "BR", + "geonameId": 3392242, + "latitudeCity": -9.393333, + "longitudeCity": -40.490555, + "nameCity": "Petrolina", + "timezone": "America/Recife" + }, + { + "GMT": "-3", + "cityId": 5930, + "codeIataCity": "POA", + "codeIso2Country": "BR", + "geonameId": 3452925, + "latitudeCity": -29.98961, + "longitudeCity": -51.17709, + "nameCity": "Porto Alegre", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-8", + "cityId": 5931, + "codeIataCity": "POC", + "codeIso2Country": "US", + "geonameId": 5364134, + "latitudeCity": 34.033333, + "longitudeCity": -117.51667, + "nameCity": "La Verne", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "0", + "cityId": 5932, + "codeIataCity": "POD", + "codeIso2Country": "SN", + "geonameId": 6650652, + "latitudeCity": 16.666668, + "longitudeCity": -14.966667, + "nameCity": "Podor", + "timezone": "Africa/Dakar" + }, + { + "GMT": "-6", + "cityId": 5933, + "codeIataCity": "POE", + "codeIso2Country": "US", + "geonameId": 4325018, + "latitudeCity": 31.045834, + "longitudeCity": -93.19222, + "nameCity": "Fort Polk", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 5934, + "codeIataCity": "POF", + "codeIso2Country": "US", + "geonameId": 4404233, + "latitudeCity": 36.71111, + "longitudeCity": -90.31389, + "nameCity": "Poplar Bluff", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 5935, + "codeIataCity": "POG", + "codeIso2Country": "GA", + "geonameId": 2396518, + "latitudeCity": -0.719964, + "longitudeCity": 8.753584, + "nameCity": "Port Gentil", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-6", + "cityId": 5936, + "codeIataCity": "POH", + "codeIso2Country": "US", + "geonameId": 4877655, + "latitudeCity": 42.74222, + "longitudeCity": -94.644165, + "nameCity": "Pocahontas", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 5937, + "codeIataCity": "POI", + "codeIso2Country": "BO", + "geonameId": 3907584, + "latitudeCity": -19.543056, + "longitudeCity": -65.72361, + "nameCity": "Potosi", + "timezone": "America/La_Paz" + }, + { + "GMT": "2", + "cityId": 5938, + "codeIataCity": "POL", + "codeIso2Country": "MZ", + "geonameId": 1028918, + "latitudeCity": -12.988333, + "longitudeCity": 40.5225, + "nameCity": "Pemba", + "timezone": "Africa/Maputo" + }, + { + "GMT": "10", + "cityId": 5939, + "codeIataCity": "POM", + "codeIso2Country": "PG", + "geonameId": 2088122, + "latitudeCity": -9.444308, + "longitudeCity": 147.21446, + "nameCity": "Port Moresby", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 5940, + "codeIataCity": "PON", + "codeIso2Country": "GT", + "geonameId": 3595725, + "latitudeCity": 16.35, + "longitudeCity": -89.433334, + "nameCity": "Poptun", + "timezone": "America/Guatemala" + }, + { + "GMT": "-3", + "cityId": 5941, + "codeIataCity": "POO", + "codeIso2Country": "BR", + "geonameId": 3453303, + "latitudeCity": -21.841389, + "longitudeCity": -46.5675, + "nameCity": "Pocos De Caldas", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-4", + "cityId": 5942, + "codeIataCity": "POP", + "codeIso2Country": "DO", + "geonameId": 3493175, + "latitudeCity": 19.754942, + "longitudeCity": -70.56315, + "nameCity": "Puerto Plata", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "-9", + "cityId": 5943, + "codeIataCity": "POQ", + "codeIso2Country": "US", + "geonameId": 5556445, + "latitudeCity": 55.35, + "longitudeCity": -132.5, + "nameCity": "Polk Inlet", + "timezone": "America/Juneau" + }, + { + "GMT": "2", + "cityId": 5944, + "codeIataCity": "POR", + "codeIso2Country": "FI", + "geonameId": 640999, + "latitudeCity": 61.46866, + "longitudeCity": 21.791382, + "nameCity": "Pori", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-4", + "cityId": 5945, + "codeIataCity": "POS", + "codeIso2Country": "TT", + "geonameId": 3573638, + "latitudeCity": 10.602089, + "longitudeCity": -61.339413, + "nameCity": "Port Of Spain", + "timezone": "America/Port_of_Spain" + }, + { + "GMT": "-5", + "cityId": 5946, + "codeIataCity": "POT", + "codeIso2Country": "JM", + "geonameId": 3489005, + "latitudeCity": 18.198334, + "longitudeCity": -76.53555, + "nameCity": "Port Antonio", + "timezone": "America/Jamaica" + }, + { + "GMT": "-5", + "cityId": 5947, + "codeIataCity": "POU", + "codeIso2Country": "US", + "geonameId": 5132143, + "latitudeCity": 41.628056, + "longitudeCity": -73.882774, + "nameCity": "Poughkeepsie", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 5948, + "codeIataCity": "POV", + "codeIso2Country": "SK", + "geonameId": 723819, + "latitudeCity": 49.0, + "longitudeCity": 21.25, + "nameCity": "Presov", + "timezone": "Europe/Bratislava" + }, + { + "GMT": "1", + "cityId": 5949, + "codeIataCity": "POW", + "codeIso2Country": "SI", + "geonameId": 3192682, + "latitudeCity": 45.516666, + "longitudeCity": 13.583333, + "nameCity": "Portoroz", + "timezone": "Europe/Ljubljana" + }, + { + "GMT": "-7", + "cityId": 5950, + "codeIataCity": "POY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 44.75, + "longitudeCity": -108.76667, + "nameCity": "Powell", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 5951, + "codeIataCity": "POZ", + "codeIso2Country": "PL", + "geonameId": 3088171, + "latitudeCity": 52.414326, + "longitudeCity": 16.828844, + "nameCity": "Poznan", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "-6", + "cityId": 5952, + "codeIataCity": "PPA", + "codeIso2Country": "US", + "geonameId": 5527953, + "latitudeCity": 35.533333, + "longitudeCity": -100.96667, + "nameCity": "Pampa", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 5953, + "codeIataCity": "PPB", + "codeIso2Country": "BR", + "geonameId": 3452324, + "latitudeCity": -22.1, + "longitudeCity": -51.45, + "nameCity": "Presidente Prudente", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-9", + "cityId": 5954, + "codeIataCity": "PPC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 66.79667, + "longitudeCity": -150.7, + "nameCity": "Prospect Creek", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "cityId": 5955, + "codeIataCity": "PPE", + "codeIso2Country": "MX", + "geonameId": 0, + "latitudeCity": 31.383333, + "longitudeCity": -113.5, + "nameCity": "Puerto Penasco", + "timezone": "America/Hermosillo" + }, + { + "GMT": "-6", + "cityId": 5956, + "codeIataCity": "PPF", + "codeIso2Country": "US", + "geonameId": 4529987, + "latitudeCity": 37.332222, + "longitudeCity": -95.50861, + "nameCity": "Parsons", + "timezone": "America/Chicago" + }, + { + "GMT": "-11", + "cityId": 5957, + "codeIataCity": "PPG", + "codeIso2Country": "AS", + "geonameId": 5881576, + "latitudeCity": -14.326389, + "longitudeCity": -170.6964, + "nameCity": "Pago Pago", + "timezone": "Pacific/Pago_Pago" + }, + { + "GMT": "-4", + "cityId": 5958, + "codeIataCity": "PPH", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 4.583333, + "longitudeCity": -61.516666, + "nameCity": "Peraitepuy", + "timezone": "America/Caracas" + }, + { + "GMT": "9.30", + "cityId": 5959, + "codeIataCity": "PPI", + "codeIso2Country": "AU", + "geonameId": 2063030, + "latitudeCity": -33.233334, + "longitudeCity": 138.0, + "nameCity": "Port Pirie", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "7", + "cityId": 5960, + "codeIataCity": "PPJ", + "codeIso2Country": "ID", + "geonameId": 6754874, + "latitudeCity": -0.633333, + "longitudeCity": 103.3, + "nameCity": "Pulau Panjang", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "6", + "cityId": 5961, + "codeIataCity": "PPK", + "codeIso2Country": "KZ", + "geonameId": 1520172, + "latitudeCity": 54.783333, + "longitudeCity": 69.183334, + "nameCity": "Petropavlovsk", + "timezone": "Asia/Almaty" + }, + { + "GMT": "5.45", + "cityId": 5962, + "codeIataCity": "PPL", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 27.516666, + "longitudeCity": 86.6, + "nameCity": "Phaplu", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-5", + "cityId": 5963, + "codeIataCity": "PPM", + "codeIso2Country": "US", + "geonameId": 4169014, + "latitudeCity": 26.25, + "longitudeCity": -80.11667, + "nameCity": "Pompano Beach", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 5964, + "codeIataCity": "PPN", + "codeIso2Country": "CO", + "geonameId": 3671916, + "latitudeCity": 2.45, + "longitudeCity": -76.60889, + "nameCity": "Popayan", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 5965, + "codeIataCity": "PPO", + "codeIso2Country": "BS", + "geonameId": 3572462, + "latitudeCity": 24.9, + "longitudeCity": -76.35, + "nameCity": "Powell Point", + "timezone": "America/Nassau" + }, + { + "GMT": "10", + "cityId": 5966, + "codeIataCity": "PPP", + "codeIso2Country": "AU", + "geonameId": 2152490, + "latitudeCity": -20.488922, + "longitudeCity": 148.55194, + "nameCity": "Proserpine", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "12", + "cityId": 5967, + "codeIataCity": "PPQ", + "codeIso2Country": "NZ", + "geonameId": 2184903, + "latitudeCity": -40.9, + "longitudeCity": 174.98334, + "nameCity": "Paraparaumu", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "7", + "cityId": 5968, + "codeIataCity": "PPR", + "codeIso2Country": "ID", + "geonameId": 1639511, + "latitudeCity": 0.833333, + "longitudeCity": 100.36667, + "nameCity": "Pasir Pangarayan", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "8", + "cityId": 5969, + "codeIataCity": "PPS", + "codeIso2Country": "PH", + "geonameId": 1692685, + "latitudeCity": 9.740198, + "longitudeCity": 118.75674, + "nameCity": "Puerto Princesa", + "timezone": "Asia/Manila" + }, + { + "GMT": "-10", + "cityId": 5970, + "codeIataCity": "PPT", + "codeIso2Country": "PF", + "geonameId": 4033936, + "latitudeCity": -17.55963, + "longitudeCity": -149.60938, + "nameCity": "Papeete", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "6.30", + "cityId": 5971, + "codeIataCity": "PPU", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 18.066668, + "longitudeCity": 97.45, + "nameCity": "Papun", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-9", + "cityId": 5972, + "codeIataCity": "PPV", + "codeIso2Country": "US", + "geonameId": 5556491, + "latitudeCity": 56.333332, + "longitudeCity": -133.66667, + "nameCity": "Port Protection", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "cityId": 5973, + "codeIataCity": "PPW", + "codeIso2Country": "GB", + "geonameId": 0, + "latitudeCity": 59.351265, + "longitudeCity": -2.898974, + "nameCity": "Papa Westray", + "timezone": "Europe/London" + }, + { + "GMT": "10", + "cityId": 5974, + "codeIataCity": "PPX", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -9.995833, + "longitudeCity": 149.59166, + "nameCity": "Param", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "cityId": 5975, + "codeIataCity": "PPY", + "codeIso2Country": "BR", + "geonameId": 3452525, + "latitudeCity": -22.288334, + "longitudeCity": -45.918888, + "nameCity": "Pouso Alegre", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-4", + "cityId": 5976, + "codeIataCity": "PPZ", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 6.226111, + "longitudeCity": -67.446945, + "nameCity": "Puerto Paez", + "timezone": "America/Caracas" + }, + { + "GMT": "7", + "cityId": 5977, + "codeIataCity": "PQC", + "codeIso2Country": "VN", + "geonameId": 1569973, + "latitudeCity": 10.223722, + "longitudeCity": 103.96324, + "nameCity": "Phu Quoc", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-5", + "cityId": 5978, + "codeIataCity": "PQI", + "codeIso2Country": "US", + "geonameId": 4975966, + "latitudeCity": 46.685, + "longitudeCity": -68.0475, + "nameCity": "Presque Isle", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 5979, + "codeIataCity": "PQM", + "codeIso2Country": "MX", + "geonameId": 3522164, + "latitudeCity": 17.5, + "longitudeCity": -92.00833, + "nameCity": "Palenque", + "timezone": "America/Mexico_City" + }, + { + "GMT": "10", + "cityId": 5980, + "codeIataCity": "PQQ", + "codeIso2Country": "AU", + "geonameId": 2152659, + "latitudeCity": -31.431402, + "longitudeCity": 152.86723, + "nameCity": "Port Macquarie", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-9", + "cityId": 5981, + "codeIataCity": "PQS", + "codeIso2Country": "US", + "geonameId": 5871601, + "latitudeCity": 61.934723, + "longitudeCity": -162.89055, + "nameCity": "Pilot Station", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "cityId": 5982, + "codeIataCity": "PQT", + "codeIso2Country": "GL", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Qeqertaq", + "timezone": "America/Godthab" + }, + { + "GMT": "-3", + "cityId": 5983, + "codeIataCity": "PRA", + "codeIso2Country": "AR", + "geonameId": 3841956, + "latitudeCity": -31.795, + "longitudeCity": -60.48, + "nameCity": "Parana", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-8", + "cityId": 5984, + "codeIataCity": "PRB", + "codeIso2Country": "US", + "geonameId": 5381438, + "latitudeCity": 35.670555, + "longitudeCity": -120.62583, + "nameCity": "Paso Robles", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-7", + "cityId": 5985, + "codeIataCity": "PRC", + "codeIso2Country": "US", + "geonameId": 5309842, + "latitudeCity": 34.65, + "longitudeCity": -112.424164, + "nameCity": "Prescott", + "timezone": "America/Phoenix" + }, + { + "GMT": "8", + "cityId": 5986, + "codeIataCity": "PRD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -20.1, + "longitudeCity": 119.11667, + "nameCity": "Pardoo", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "cityId": 5987, + "codeIataCity": "PRE", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 5.7, + "longitudeCity": -71.98333, + "nameCity": "Pore", + "timezone": "America/Bogota" + }, + { + "GMT": "-9", + "cityId": 5988, + "codeIataCity": "PRF", + "codeIso2Country": "US", + "geonameId": 5554428, + "latitudeCity": 55.13333, + "longitudeCity": -132.0, + "nameCity": "Port Johnson", + "timezone": "America/Sitka" + }, + { + "GMT": "1", + "cityId": 5989, + "codeIataCity": "PRG", + "codeIso2Country": "CZ", + "geonameId": 3067696, + "latitudeCity": 50.087811, + "longitudeCity": 14.42046, + "nameCity": "Prague", + "timezone": "Europe/Prague" + }, + { + "GMT": "7", + "cityId": 5990, + "codeIataCity": "PRH", + "codeIso2Country": "TH", + "geonameId": 1607552, + "latitudeCity": 18.15, + "longitudeCity": 100.13333, + "nameCity": "Phrae", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "4", + "cityId": 5991, + "codeIataCity": "PRI", + "codeIso2Country": "SC", + "geonameId": 241274, + "latitudeCity": -4.323883, + "longitudeCity": 55.692314, + "nameCity": "Praslin Island", + "timezone": "Indian/Mahe" + }, + { + "GMT": "1", + "cityId": 5992, + "codeIataCity": "PRJ", + "codeIso2Country": "IT", + "geonameId": 3180630, + "latitudeCity": 40.55, + "longitudeCity": 14.233333, + "nameCity": "Capri", + "timezone": "Europe/Rome" + }, + { + "GMT": "2", + "cityId": 5993, + "codeIataCity": "PRK", + "codeIso2Country": "ZA", + "geonameId": 964090, + "latitudeCity": -29.666668, + "longitudeCity": 22.7, + "nameCity": "Prieska", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-9", + "cityId": 5994, + "codeIataCity": "PRL", + "codeIso2Country": "US", + "geonameId": 5873776, + "latitudeCity": 60.208332, + "longitudeCity": -147.81944, + "nameCity": "Port Oceanic", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "cityId": 5995, + "codeIataCity": "PRM", + "codeIso2Country": "PT", + "geonameId": 2264456, + "latitudeCity": 37.13333, + "longitudeCity": -8.533333, + "nameCity": "Portimao", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "1", + "cityId": 5996, + "codeIataCity": "PRN", + "codeIso2Country": "RS", + "geonameId": 786714, + "latitudeCity": 42.573612, + "longitudeCity": 21.035557, + "nameCity": "Pristina", + "timezone": "Europe/Belgrade" + }, + { + "GMT": "-6", + "cityId": 5997, + "codeIataCity": "PRO", + "codeIso2Country": "US", + "geonameId": 4853828, + "latitudeCity": 41.85, + "longitudeCity": -94.1, + "nameCity": "Perry", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 5998, + "codeIataCity": "PRP", + "codeIso2Country": "FR", + "geonameId": 2985266, + "latitudeCity": 41.666668, + "longitudeCity": 8.9, + "nameCity": "Propriano", + "timezone": "Europe/Paris" + }, + { + "GMT": "-3", + "cityId": 5999, + "codeIataCity": "PRQ", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -26.833332, + "longitudeCity": -60.666668, + "nameCity": "Pres. Roque Saenz Pena", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-4", + "cityId": 6000, + "codeIataCity": "PRR", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 5.8, + "longitudeCity": -61.05, + "nameCity": "Paruima", + "timezone": "America/Guyana" + }, + { + "GMT": "11", + "cityId": 6001, + "codeIataCity": "PRS", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -8.166667, + "longitudeCity": 158.0, + "nameCity": "Parasi", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-9", + "cityId": 6002, + "codeIataCity": "PRT", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 58.35, + "longitudeCity": -134.55, + "nameCity": "Point Retreat", + "timezone": "America/Anchorage" + }, + { + "GMT": "6.30", + "cityId": 6003, + "codeIataCity": "PRU", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 18.825, + "longitudeCity": 95.26861, + "nameCity": "Prome", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "1", + "cityId": 6004, + "codeIataCity": "PRV", + "codeIso2Country": "CZ", + "geonameId": 3069011, + "latitudeCity": 49.59028, + "longitudeCity": 17.208332, + "nameCity": "Prerov", + "timezone": "Europe/Prague" + }, + { + "GMT": "-6", + "cityId": 6005, + "codeIataCity": "PRW", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 45.55, + "longitudeCity": -90.28333, + "nameCity": "Prentice", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 6006, + "codeIataCity": "PRX", + "codeIso2Country": "US", + "geonameId": 4717560, + "latitudeCity": 33.636665, + "longitudeCity": -95.45028, + "nameCity": "Paris", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 6007, + "codeIataCity": "PRY", + "codeIso2Country": "ZA", + "geonameId": 964137, + "latitudeCity": -25.73134, + "longitudeCity": 28.21837, + "nameCity": "Pretoria", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-8", + "cityId": 6008, + "codeIataCity": "PRZ", + "codeIso2Country": "US", + "geonameId": 5747882, + "latitudeCity": 44.3, + "longitudeCity": -120.85, + "nameCity": "Prineville", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 6009, + "codeIataCity": "PSA", + "codeIso2Country": "IT", + "geonameId": 3170647, + "latitudeCity": 43.69871, + "longitudeCity": 10.399915, + "nameCity": "Pisa", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "cityId": 6010, + "codeIataCity": "PSB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 40.88333, + "longitudeCity": -78.08583, + "nameCity": "Bellefonte", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "cityId": 6011, + "codeIataCity": "PSC", + "codeIso2Country": "US", + "geonameId": 5806298, + "latitudeCity": 46.259094, + "longitudeCity": -119.1152, + "nameCity": "Pasco", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "cityId": 6012, + "codeIataCity": "PSD", + "codeIso2Country": "EG", + "geonameId": 358619, + "latitudeCity": 31.266666, + "longitudeCity": 32.3, + "nameCity": "Port Said", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-4", + "cityId": 6013, + "codeIataCity": "PSE", + "codeIso2Country": "PR", + "geonameId": 4566880, + "latitudeCity": 18.010702, + "longitudeCity": -66.563545, + "nameCity": "Ponce", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "-5", + "cityId": 6014, + "codeIataCity": "PSF", + "codeIso2Country": "US", + "geonameId": 4947459, + "latitudeCity": 42.426666, + "longitudeCity": -73.291664, + "nameCity": "Pittsfield", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 6015, + "codeIataCity": "PSG", + "codeIso2Country": "US", + "geonameId": 5556338, + "latitudeCity": 56.80417, + "longitudeCity": -132.9425, + "nameCity": "Petersburg", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 6016, + "codeIataCity": "PSH", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 54.5, + "longitudeCity": 8.116667, + "nameCity": "St Peter", + "timezone": "Europe/Berlin" + }, + { + "GMT": "5", + "cityId": 6017, + "codeIataCity": "PSI", + "codeIso2Country": "PK", + "geonameId": 1168312, + "latitudeCity": 25.3, + "longitudeCity": 63.36111, + "nameCity": "Pasni", + "timezone": "Asia/Karachi" + }, + { + "GMT": "8", + "cityId": 6018, + "codeIataCity": "PSJ", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -1.383333, + "longitudeCity": 120.73333, + "nameCity": "Poso", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-5", + "cityId": 6019, + "codeIataCity": "PSK", + "codeIso2Country": "US", + "geonameId": 4752665, + "latitudeCity": 37.137222, + "longitudeCity": -80.67861, + "nameCity": "Dublin", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 6020, + "codeIataCity": "PSL", + "codeIso2Country": "GB", + "geonameId": 2640358, + "latitudeCity": 56.409413, + "longitudeCity": -3.447528, + "nameCity": "Perth", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "cityId": 6021, + "codeIataCity": "PSN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 31.783333, + "longitudeCity": -95.71667, + "nameCity": "Palestine", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 6022, + "codeIataCity": "PSO", + "codeIso2Country": "CO", + "geonameId": 3672778, + "latitudeCity": 1.466667, + "longitudeCity": -77.25, + "nameCity": "Pasto", + "timezone": "America/Bogota" + }, + { + "GMT": "-8", + "cityId": 6023, + "codeIataCity": "PSP", + "codeIso2Country": "US", + "geonameId": 5380668, + "latitudeCity": 33.830296, + "longitudeCity": -116.545292, + "nameCity": "Palm Springs", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 6024, + "codeIataCity": "PSR", + "codeIso2Country": "IT", + "geonameId": 3171168, + "latitudeCity": 42.43722, + "longitudeCity": 14.187222, + "nameCity": "Pescara", + "timezone": "Europe/Rome" + }, + { + "GMT": "-3", + "cityId": 6025, + "codeIataCity": "PSS", + "codeIso2Country": "AR", + "geonameId": 3429886, + "latitudeCity": -27.383888, + "longitudeCity": -55.9675, + "nameCity": "Posadas", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-5", + "cityId": 6026, + "codeIataCity": "PST", + "codeIso2Country": "CU", + "geonameId": 0, + "latitudeCity": 20.75, + "longitudeCity": -75.666664, + "nameCity": "Preston", + "timezone": "America/Havana" + }, + { + "GMT": "8", + "cityId": 6027, + "codeIataCity": "PSU", + "codeIso2Country": "ID", + "geonameId": 1630281, + "latitudeCity": 0.833333, + "longitudeCity": 112.933334, + "nameCity": "Putussibau", + "timezone": "Asia/Makassar" + }, + { + "GMT": "0", + "cityId": 6028, + "codeIataCity": "PSV", + "codeIso2Country": "GB", + "geonameId": 2644605, + "latitudeCity": 60.316666, + "longitudeCity": -1.7, + "nameCity": "Papa Stour", + "timezone": "Europe/London" + }, + { + "GMT": "-3", + "cityId": 6029, + "codeIataCity": "PSW", + "codeIso2Country": "BR", + "geonameId": 3454847, + "latitudeCity": -20.716667, + "longitudeCity": -46.61667, + "nameCity": "Passos", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "cityId": 6030, + "codeIataCity": "PSX", + "codeIso2Country": "US", + "geonameId": 4739157, + "latitudeCity": 28.7, + "longitudeCity": -96.25, + "nameCity": "Palacios", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 6031, + "codeIataCity": "PSY", + "codeIso2Country": "FK", + "geonameId": 0, + "latitudeCity": -51.7, + "longitudeCity": -57.85, + "nameCity": "Port Stanley", + "timezone": "Atlantic/Stanley" + }, + { + "GMT": "-4", + "cityId": 6032, + "codeIataCity": "PSZ", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -18.966667, + "longitudeCity": -57.8, + "nameCity": "Puerto Suarez", + "timezone": "America/La_Paz" + }, + { + "GMT": "-9", + "cityId": 6033, + "codeIataCity": "PTA", + "codeIso2Country": "US", + "geonameId": 5871906, + "latitudeCity": 60.2, + "longitudeCity": -145.33333, + "nameCity": "Port Alsworth", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 6034, + "codeIataCity": "PTB", + "codeIso2Country": "US", + "geonameId": 4781708, + "latitudeCity": 37.216667, + "longitudeCity": -77.4, + "nameCity": "Petersburg", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 6035, + "codeIataCity": "PTC", + "codeIso2Country": "US", + "geonameId": 5556481, + "latitudeCity": 55.78361, + "longitudeCity": -133.585, + "nameCity": "Port Alice", + "timezone": "America/Juneau" + }, + { + "GMT": "-9", + "cityId": 6036, + "codeIataCity": "PTD", + "codeIso2Country": "US", + "geonameId": 5557293, + "latitudeCity": 56.25, + "longitudeCity": -134.65, + "nameCity": "Port Alexander", + "timezone": "America/Sitka" + }, + { + "GMT": "12", + "cityId": 6037, + "codeIataCity": "PTF", + "codeIso2Country": "FJ", + "geonameId": 2202064, + "latitudeCity": -17.783333, + "longitudeCity": 177.21666, + "nameCity": "Malololailai", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "2", + "cityId": 6038, + "codeIataCity": "PTG", + "codeIso2Country": "ZA", + "geonameId": 965289, + "latitudeCity": -23.916668, + "longitudeCity": 29.966667, + "nameCity": "Polokwane", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-9", + "cityId": 6039, + "codeIataCity": "PTH", + "codeIso2Country": "US", + "geonameId": 5871920, + "latitudeCity": 56.95667, + "longitudeCity": -158.6375, + "nameCity": "Port Heiden", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 6040, + "codeIataCity": "PTI", + "codeIso2Country": "AU", + "geonameId": 2152681, + "latitudeCity": -16.48611, + "longitudeCity": 145.46388, + "nameCity": "Port Douglas", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 6041, + "codeIataCity": "PTJ", + "codeIso2Country": "AU", + "geonameId": 2144528, + "latitudeCity": -38.384167, + "longitudeCity": 141.625, + "nameCity": "Portland", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-5", + "cityId": 6042, + "codeIataCity": "PTK", + "codeIso2Country": "US", + "geonameId": 5006166, + "latitudeCity": 42.664722, + "longitudeCity": -83.41139, + "nameCity": "Pontiac", + "timezone": "America/Detroit" + }, + { + "GMT": "-9", + "cityId": 6043, + "codeIataCity": "PTL", + "codeIso2Country": "US", + "geonameId": 5556484, + "latitudeCity": 56.297222, + "longitudeCity": -134.6625, + "nameCity": "Port Armstrong", + "timezone": "America/Sitka" + }, + { + "GMT": "-4", + "cityId": 6044, + "codeIataCity": "PTM", + "codeIso2Country": "VE", + "geonameId": 3805351, + "latitudeCity": 7.566667, + "longitudeCity": -70.183334, + "nameCity": "Palmarito", + "timezone": "America/Caracas" + }, + { + "GMT": "-6", + "cityId": 6045, + "codeIataCity": "PTN", + "codeIso2Country": "US", + "geonameId": 4336646, + "latitudeCity": 29.708332, + "longitudeCity": -91.3375, + "nameCity": "Patterson", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 6046, + "codeIataCity": "PTO", + "codeIso2Country": "BR", + "geonameId": 3454818, + "latitudeCity": -26.216667, + "longitudeCity": -52.666668, + "nameCity": "Pato Branco", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-4", + "cityId": 6047, + "codeIataCity": "PTP", + "codeIso2Country": "GP", + "geonameId": 3578978, + "latitudeCity": 16.2675, + "longitudeCity": -61.52639, + "nameCity": "Pointe-a-pitre", + "timezone": "America/Guadeloupe" + }, + { + "GMT": "-3", + "cityId": 6048, + "codeIataCity": "PTQ", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -1.738889, + "longitudeCity": -52.244446, + "nameCity": "Porto de Moz", + "timezone": "America/Belem" + }, + { + "GMT": "-9", + "cityId": 6049, + "codeIataCity": "PTR", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.75, + "longitudeCity": -152.83333, + "nameCity": "Pleasant Harbour", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 6050, + "codeIataCity": "PTS", + "codeIso2Country": "US", + "geonameId": 4277241, + "latitudeCity": 37.446667, + "longitudeCity": -94.73055, + "nameCity": "Pittsburg", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 6051, + "codeIataCity": "PTT", + "codeIso2Country": "US", + "geonameId": 4277752, + "latitudeCity": 37.716667, + "longitudeCity": -98.75, + "nameCity": "Pratt", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 6052, + "codeIataCity": "PTU", + "codeIso2Country": "US", + "geonameId": 5871730, + "latitudeCity": 59.01139, + "longitudeCity": -161.81694, + "nameCity": "Platinum", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "cityId": 6053, + "codeIataCity": "PTV", + "codeIso2Country": "US", + "geonameId": 5384471, + "latitudeCity": 36.066666, + "longitudeCity": -119.01667, + "nameCity": "Porterville", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 6054, + "codeIataCity": "PTW", + "codeIso2Country": "US", + "geonameId": 5207069, + "latitudeCity": 40.25, + "longitudeCity": -75.63333, + "nameCity": "Pottstown", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 6055, + "codeIataCity": "PTX", + "codeIso2Country": "CO", + "geonameId": 3670260, + "latitudeCity": 1.85, + "longitudeCity": -76.03333, + "nameCity": "Pitalito", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 6056, + "codeIataCity": "PTY", + "codeIso2Country": "PA", + "geonameId": 3703443, + "latitudeCity": 8.994269, + "longitudeCity": -79.518792, + "nameCity": "Panama City", + "timezone": "America/Panama" + }, + { + "GMT": "-5", + "cityId": 6057, + "codeIataCity": "PTZ", + "codeIso2Country": "EC", + "geonameId": 3652584, + "latitudeCity": -2.0, + "longitudeCity": -77.0, + "nameCity": "Pastaza", + "timezone": "America/Guayaquil" + }, + { + "GMT": "10", + "cityId": 6058, + "codeIataCity": "PUA", + "codeIso2Country": "PG", + "geonameId": 2088070, + "latitudeCity": -2.4, + "longitudeCity": 150.23334, + "nameCity": "Puas", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "cityId": 6059, + "codeIataCity": "PUB", + "codeIso2Country": "US", + "geonameId": 5435464, + "latitudeCity": 38.292778, + "longitudeCity": -104.49611, + "nameCity": "Pueblo", + "timezone": "America/Denver" + }, + { + "GMT": "-7", + "cityId": 6060, + "codeIataCity": "PUC", + "codeIso2Country": "US", + "geonameId": 5545269, + "latitudeCity": 39.609722, + "longitudeCity": -110.75278, + "nameCity": "Price", + "timezone": "America/Denver" + }, + { + "GMT": "-3", + "cityId": 6061, + "codeIataCity": "PUD", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -47.75, + "longitudeCity": -65.916664, + "nameCity": "Puerto Deseado", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "-5", + "cityId": 6062, + "codeIataCity": "PUE", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 8.66694, + "longitudeCity": -77.41694, + "nameCity": "Puerto Obaldia", + "timezone": "America/Panama" + }, + { + "GMT": "1", + "cityId": 6063, + "codeIataCity": "PUF", + "codeIso2Country": "FR", + "geonameId": 2988358, + "latitudeCity": 43.382347, + "longitudeCity": -0.413573, + "nameCity": "Pau", + "timezone": "Europe/Paris" + }, + { + "GMT": "9.30", + "cityId": 6064, + "codeIataCity": "PUG", + "codeIso2Country": "AU", + "geonameId": 2063056, + "latitudeCity": -32.5, + "longitudeCity": 137.76666, + "nameCity": "Port Augusta", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-6", + "cityId": 6065, + "codeIataCity": "PUH", + "codeIso2Country": "MX", + "geonameId": 3992259, + "latitudeCity": 15.733333, + "longitudeCity": -96.46667, + "nameCity": "Pochutla", + "timezone": "America/Mexico_City" + }, + { + "GMT": "10", + "cityId": 6066, + "codeIataCity": "PUI", + "codeIso2Country": "PG", + "geonameId": 2087962, + "latitudeCity": -5.833333, + "longitudeCity": 142.83333, + "nameCity": "Pureni", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "cityId": 6067, + "codeIataCity": "PUJ", + "codeIso2Country": "DO", + "geonameId": 3494242, + "latitudeCity": 18.562477, + "longitudeCity": -68.364, + "nameCity": "Higuey", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "-10", + "cityId": 6068, + "codeIataCity": "PUK", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -18.296125, + "longitudeCity": -137.01784, + "nameCity": "Pukarua", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-8", + "cityId": 6069, + "codeIataCity": "PUL", + "codeIso2Country": "US", + "geonameId": 5807337, + "latitudeCity": 47.733334, + "longitudeCity": -122.65, + "nameCity": "Poulsbo", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "cityId": 6070, + "codeIataCity": "PUM", + "codeIso2Country": "ID", + "geonameId": 1644964, + "latitudeCity": -4.183333, + "longitudeCity": 121.61667, + "nameCity": "Pomala", + "timezone": "Asia/Makassar" + }, + { + "GMT": "2", + "cityId": 6071, + "codeIataCity": "PUN", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -1.366667, + "longitudeCity": 26.333332, + "nameCity": "Punia", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "-9", + "cityId": 6072, + "codeIataCity": "PUO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 70.25139, + "longitudeCity": -148.33694, + "nameCity": "Prudhoe Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "cityId": 6073, + "codeIataCity": "PUP", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 11.183333, + "longitudeCity": -1.166667, + "nameCity": "Po", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-4", + "cityId": 6074, + "codeIataCity": "PUQ", + "codeIso2Country": "CL", + "geonameId": 3874787, + "latitudeCity": -53.005356, + "longitudeCity": -70.84307, + "nameCity": "Punta Arenas", + "timezone": "America/Santiago" + }, + { + "GMT": "-4", + "cityId": 6075, + "codeIataCity": "PUR", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -11.1125, + "longitudeCity": -67.52, + "nameCity": "Puerto Rico", + "timezone": "America/La_Paz" + }, + { + "GMT": "9", + "cityId": 6076, + "codeIataCity": "PUS", + "codeIso2Country": "KR", + "geonameId": 1838524, + "latitudeCity": 35.179317, + "longitudeCity": 128.94873, + "nameCity": "Busan", + "timezone": "Asia/Seoul" + }, + { + "GMT": "5.30", + "cityId": 6077, + "codeIataCity": "PUT", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 14.133333, + "longitudeCity": 77.78333, + "nameCity": "Puttaparthi", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "cityId": 6078, + "codeIataCity": "PUU", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 0.533333, + "longitudeCity": -76.53333, + "nameCity": "Puerto Asis", + "timezone": "America/Bogota" + }, + { + "GMT": "11", + "cityId": 6079, + "codeIataCity": "PUV", + "codeIso2Country": "NC", + "geonameId": 0, + "latitudeCity": -20.294443, + "longitudeCity": 164.1014, + "nameCity": "Poum", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "-8", + "cityId": 6080, + "codeIataCity": "PUW", + "codeIso2Country": "US", + "geonameId": 5807540, + "latitudeCity": 46.74472, + "longitudeCity": -117.105, + "nameCity": "Pullman", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "cityId": 6081, + "codeIataCity": "PUX", + "codeIso2Country": "CL", + "geonameId": 3874930, + "latitudeCity": -40.34028, + "longitudeCity": -72.94444, + "nameCity": "Puerto Varas", + "timezone": "America/Santiago" + }, + { + "GMT": "1", + "cityId": 6082, + "codeIataCity": "PUY", + "codeIso2Country": "HR", + "geonameId": 3192224, + "latitudeCity": 44.891666, + "longitudeCity": 13.923611, + "nameCity": "Pula", + "timezone": "Europe/Zagreb" + }, + { + "GMT": "-6", + "cityId": 6083, + "codeIataCity": "PUZ", + "codeIso2Country": "NI", + "geonameId": 0, + "latitudeCity": 14.045278, + "longitudeCity": -83.38361, + "nameCity": "Puerto Cabezas", + "timezone": "America/Managua" + }, + { + "GMT": "-5", + "cityId": 6084, + "codeIataCity": "PVA", + "codeIso2Country": "CO", + "geonameId": 3670218, + "latitudeCity": 13.35, + "longitudeCity": -81.35, + "nameCity": "Providencia", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 6085, + "codeIataCity": "PVC", + "codeIso2Country": "US", + "geonameId": 4948087, + "latitudeCity": 42.071945, + "longitudeCity": -70.221664, + "nameCity": "Provincetown", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 6086, + "codeIataCity": "PVD", + "codeIso2Country": "US", + "geonameId": 5224151, + "latitudeCity": 41.823989, + "longitudeCity": -71.412834, + "nameCity": "Providence", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 6087, + "codeIataCity": "PVE", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 9.0, + "longitudeCity": -81.0, + "nameCity": "El Porvenir", + "timezone": "America/Panama" + }, + { + "GMT": "-8", + "cityId": 6088, + "codeIataCity": "PVF", + "codeIso2Country": "US", + "geonameId": 5383559, + "latitudeCity": 38.716667, + "longitudeCity": -120.8, + "nameCity": "Placerville", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "cityId": 6089, + "codeIataCity": "PVH", + "codeIso2Country": "BR", + "geonameId": 3662762, + "latitudeCity": -8.714311, + "longitudeCity": -63.898308, + "nameCity": "Porto Velho", + "timezone": "America/Porto_Velho" + }, + { + "GMT": "-3", + "cityId": 6090, + "codeIataCity": "PVI", + "codeIso2Country": "BR", + "geonameId": 3457671, + "latitudeCity": -23.066668, + "longitudeCity": -52.466667, + "nameCity": "Paranavai", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "2", + "cityId": 6091, + "codeIataCity": "PVK", + "codeIso2Country": "GR", + "geonameId": 254698, + "latitudeCity": 38.926388, + "longitudeCity": 20.765833, + "nameCity": "Preveza", + "timezone": "Europe/Athens" + }, + { + "GMT": "-5", + "cityId": 6092, + "codeIataCity": "PVO", + "codeIso2Country": "EC", + "geonameId": 3654410, + "latitudeCity": -1.033333, + "longitudeCity": -80.46667, + "nameCity": "Portoviejo", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-6", + "cityId": 6093, + "codeIataCity": "PVR", + "codeIso2Country": "MX", + "geonameId": 3991328, + "latitudeCity": 20.678297, + "longitudeCity": -105.24898, + "nameCity": "Puerto Vallarta", + "timezone": "America/Mexico_City" + }, + { + "GMT": "12", + "cityId": 6094, + "codeIataCity": "PVS", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 64.38333, + "longitudeCity": -173.24333, + "nameCity": "Provideniya", + "timezone": "Asia/Anadyr" + }, + { + "GMT": "-7", + "cityId": 6095, + "codeIataCity": "PVU", + "codeIso2Country": "US", + "geonameId": 5780026, + "latitudeCity": 40.218056, + "longitudeCity": -111.72222, + "nameCity": "Provo", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 6096, + "codeIataCity": "PVW", + "codeIso2Country": "US", + "geonameId": 5528450, + "latitudeCity": 34.183334, + "longitudeCity": -101.71667, + "nameCity": "Plainview", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 6097, + "codeIataCity": "PVY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 59.316666, + "longitudeCity": -154.91667, + "nameCity": "Pope Vanoy", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 6098, + "codeIataCity": "PVZ", + "codeIso2Country": "US", + "geonameId": 5166009, + "latitudeCity": 41.716667, + "longitudeCity": -81.25, + "nameCity": "Painesville", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 6099, + "codeIataCity": "PWD", + "codeIso2Country": "US", + "geonameId": 5671807, + "latitudeCity": 48.783333, + "longitudeCity": -104.566666, + "nameCity": "Plentywood", + "timezone": "America/Denver" + }, + { + "GMT": "12", + "cityId": 6100, + "codeIataCity": "PWE", + "codeIso2Country": "RU", + "geonameId": 2122090, + "latitudeCity": 69.78333, + "longitudeCity": 170.6, + "nameCity": "Pevek", + "timezone": "Asia/Anadyr" + }, + { + "GMT": "3", + "cityId": 6101, + "codeIataCity": "PWI", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 11.333333, + "longitudeCity": 36.416668, + "nameCity": "Pawi", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "7", + "cityId": 6102, + "codeIataCity": "PWL", + "codeIso2Country": "ID", + "geonameId": 1630328, + "latitudeCity": -7.466667, + "longitudeCity": 109.15, + "nameCity": "Purwokerto", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-5", + "cityId": 6103, + "codeIataCity": "PWM", + "codeIso2Country": "US", + "geonameId": 4975802, + "latitudeCity": 43.64749, + "longitudeCity": -70.31031, + "nameCity": "Portland", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 6104, + "codeIataCity": "PWN", + "codeIso2Country": "BS", + "geonameId": 3571543, + "latitudeCity": 22.833332, + "longitudeCity": -74.35, + "nameCity": "Pitts Town", + "timezone": "America/Nassau" + }, + { + "GMT": "2", + "cityId": 6105, + "codeIataCity": "PWO", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -8.466667, + "longitudeCity": 28.9, + "nameCity": "Pweto", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "6", + "cityId": 6106, + "codeIataCity": "PWQ", + "codeIso2Country": "KZ", + "geonameId": 1520240, + "latitudeCity": 52.183334, + "longitudeCity": 77.066666, + "nameCity": "Pavlodar", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-9", + "cityId": 6107, + "codeIataCity": "PWR", + "codeIso2Country": "US", + "geonameId": 5557293, + "latitudeCity": 56.38333, + "longitudeCity": -134.65, + "nameCity": "Port Walter", + "timezone": "America/Sitka" + }, + { + "GMT": "-8", + "cityId": 6108, + "codeIataCity": "PWT", + "codeIso2Country": "US", + "geonameId": 5809844, + "latitudeCity": 47.485, + "longitudeCity": -122.763336, + "nameCity": "Bremerton", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "cityId": 6109, + "codeIataCity": "PXH", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -29.72108, + "longitudeCity": 135.52348, + "nameCity": "Prominent Hill", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-7", + "cityId": 6110, + "codeIataCity": "PXL", + "codeIso2Country": "US", + "geonameId": 5309471, + "latitudeCity": 35.8, + "longitudeCity": -110.333336, + "nameCity": "Polacca", + "timezone": "America/Phoenix" + }, + { + "GMT": "-6", + "cityId": 6111, + "codeIataCity": "PXM", + "codeIso2Country": "MX", + "geonameId": 3520994, + "latitudeCity": 15.85, + "longitudeCity": -97.083336, + "nameCity": "Puerto Escondido", + "timezone": "America/Mexico_City" + }, + { + "GMT": "0", + "cityId": 6112, + "codeIataCity": "PXO", + "codeIso2Country": "PT", + "geonameId": 2261651, + "latitudeCity": 33.070023, + "longitudeCity": -16.345015, + "nameCity": "Porto Santo", + "timezone": "Atlantic/Madeira" + }, + { + "GMT": "7", + "cityId": 6113, + "codeIataCity": "PXR", + "codeIso2Country": "TH", + "geonameId": 1606030, + "latitudeCity": 14.866667, + "longitudeCity": 103.5, + "nameCity": "Surin", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "1", + "cityId": 6114, + "codeIataCity": "PXS", + "codeIso2Country": "ES", + "geonameId": 0, + "latitudeCity": 36.6, + "longitudeCity": -6.216667, + "nameCity": "Puerto De Santa Maria", + "timezone": "Europe/Madrid" + }, + { + "GMT": "7", + "cityId": 6115, + "codeIataCity": "PXU", + "codeIso2Country": "VN", + "geonameId": 1569684, + "latitudeCity": 14.006346, + "longitudeCity": 108.00896, + "nameCity": "Pleiku", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-5", + "cityId": 6116, + "codeIataCity": "PYA", + "codeIso2Country": "CO", + "geonameId": 3671308, + "latitudeCity": 5.966667, + "longitudeCity": -74.6, + "nameCity": "Puerto Boyaca", + "timezone": "America/Bogota" + }, + { + "GMT": "5.30", + "cityId": 6117, + "codeIataCity": "PYB", + "codeIso2Country": "IN", + "geonameId": 1269578, + "latitudeCity": 18.833332, + "longitudeCity": 82.63333, + "nameCity": "Jeypore", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "cityId": 6118, + "codeIataCity": "PYC", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 9.574444, + "longitudeCity": -79.605835, + "nameCity": "Playon Chico", + "timezone": "America/Panama" + }, + { + "GMT": "-10", + "cityId": 6119, + "codeIataCity": "PYE", + "codeIso2Country": "CK", + "geonameId": 0, + "latitudeCity": -9.016667, + "longitudeCity": -158.03334, + "nameCity": "Penrhyn Island", + "timezone": "Pacific/Rarotonga" + }, + { + "GMT": "-4", + "cityId": 6120, + "codeIataCity": "PYH", + "codeIso2Country": "VE", + "geonameId": 3629710, + "latitudeCity": 5.6, + "longitudeCity": -67.5, + "nameCity": "Puerto Ayacucho", + "timezone": "America/Caracas" + }, + { + "GMT": "9", + "cityId": 6121, + "codeIataCity": "PYJ", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 66.416664, + "longitudeCity": 112.05, + "nameCity": "Polyarnyj", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "3.30", + "cityId": 6122, + "codeIataCity": "PYK", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Karaj", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-9", + "cityId": 6123, + "codeIataCity": "PYL", + "codeIso2Country": "US", + "geonameId": 5862837, + "latitudeCity": 35.033333, + "longitudeCity": -92.816666, + "nameCity": "Perry Island", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 6124, + "codeIataCity": "PYM", + "codeIso2Country": "US", + "geonameId": 4947597, + "latitudeCity": 41.966667, + "longitudeCity": -70.683334, + "nameCity": "Plymouth", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 6125, + "codeIataCity": "PYN", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 1.816667, + "longitudeCity": -78.13333, + "nameCity": "Payan", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 6126, + "codeIataCity": "PYO", + "codeIso2Country": "EC", + "geonameId": 0, + "latitudeCity": 0.083333, + "longitudeCity": -75.9, + "nameCity": "Putumayo", + "timezone": "America/Guayaquil" + }, + { + "GMT": "2", + "cityId": 6127, + "codeIataCity": "PYR", + "codeIso2Country": "GR", + "geonameId": 255683, + "latitudeCity": 37.683334, + "longitudeCity": 21.466667, + "nameCity": "Pyrgos", + "timezone": "Europe/Athens" + }, + { + "GMT": "-8", + "cityId": 6128, + "codeIataCity": "PYS", + "codeIso2Country": "US", + "geonameId": 5511077, + "latitudeCity": 39.7106, + "longitudeCity": -120.616, + "nameCity": "Paradise", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 6129, + "codeIataCity": "PYV", + "codeIso2Country": "PA", + "geonameId": 3699980, + "latitudeCity": 8.166667, + "longitudeCity": -77.833336, + "nameCity": "Yaviza", + "timezone": "America/Panama" + }, + { + "GMT": "7", + "cityId": 6130, + "codeIataCity": "PYX", + "codeIso2Country": "TH", + "geonameId": 0, + "latitudeCity": 12.95, + "longitudeCity": 100.88333, + "nameCity": "Pattaya", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "7", + "cityId": 6131, + "codeIataCity": "PYY", + "codeIso2Country": "TH", + "geonameId": 1151601, + "latitudeCity": 19.371666, + "longitudeCity": 98.43667, + "nameCity": "Pai", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-5", + "cityId": 6132, + "codeIataCity": "PZA", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 5.877778, + "longitudeCity": -71.885, + "nameCity": "Paz De Ariporo", + "timezone": "America/Bogota" + }, + { + "GMT": "2", + "cityId": 6133, + "codeIataCity": "PZB", + "codeIso2Country": "ZA", + "geonameId": 965301, + "latitudeCity": -29.643047, + "longitudeCity": 30.396738, + "nameCity": "Pietermaritzburg", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "0", + "cityId": 6134, + "codeIataCity": "PZE", + "codeIso2Country": "GB", + "geonameId": 2640377, + "latitudeCity": 50.111942, + "longitudeCity": -5.516111, + "nameCity": "Penzance", + "timezone": "Europe/London" + }, + { + "GMT": "5", + "cityId": 6135, + "codeIataCity": "PZH", + "codeIso2Country": "PK", + "geonameId": 1162105, + "latitudeCity": 31.333332, + "longitudeCity": 69.5, + "nameCity": "Zhob", + "timezone": "Asia/Karachi" + }, + { + "GMT": "8", + "cityId": 6136, + "codeIataCity": "PZI", + "codeIso2Country": "CN", + "geonameId": 1798998, + "latitudeCity": 26.538734, + "longitudeCity": 101.79386, + "nameCity": "Panzhihua", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-10", + "cityId": 6137, + "codeIataCity": "PZK", + "codeIso2Country": "CK", + "geonameId": 0, + "latitudeCity": -10.883333, + "longitudeCity": -165.81667, + "nameCity": "Puka Puka", + "timezone": "Pacific/Rarotonga" + }, + { + "GMT": "2", + "cityId": 6138, + "codeIataCity": "PZL", + "codeIso2Country": "ZA", + "geonameId": 996256, + "latitudeCity": -27.866667, + "longitudeCity": 32.3, + "nameCity": "Phinda", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-4", + "cityId": 6139, + "codeIataCity": "PZO", + "codeIso2Country": "VE", + "geonameId": 3629655, + "latitudeCity": 8.286533, + "longitudeCity": -62.759136, + "nameCity": "Puerto Ordaz", + "timezone": "America/Caracas" + }, + { + "GMT": "3", + "cityId": 6140, + "codeIataCity": "PZU", + "codeIso2Country": "SD", + "geonameId": 377039, + "latitudeCity": 19.577778, + "longitudeCity": 37.21389, + "nameCity": "Port Sudan", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "1", + "cityId": 6141, + "codeIataCity": "PZY", + "codeIso2Country": "SK", + "geonameId": 0, + "latitudeCity": 48.63333, + "longitudeCity": 17.833332, + "nameCity": "Piestany", + "timezone": "Europe/Bratislava" + }, + { + "GMT": "-8", + "cityId": 6142, + "codeIataCity": "QBC", + "codeIso2Country": "CA", + "geonameId": 8062543, + "latitudeCity": 52.333332, + "longitudeCity": -126.666664, + "nameCity": "Bella Coola", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "cityId": 6143, + "codeIataCity": "QBO", + "codeIso2Country": "DE", + "geonameId": 2947416, + "latitudeCity": 51.4833, + "longitudeCity": 7.21667, + "nameCity": "Bochum", + "timezone": "Europe/Berlin" + }, + { + "GMT": "3", + "cityId": 6144, + "codeIataCity": "QCA", + "codeIso2Country": "SA", + "geonameId": 0, + "latitudeCity": 21.4267, + "longitudeCity": 39.8261, + "nameCity": "Makkah", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-7", + "cityId": 6145, + "codeIataCity": "QCE", + "codeIso2Country": "US", + "geonameId": 5417975, + "latitudeCity": 51.2083, + "longitudeCity": -115.883, + "nameCity": "Copper Mountain", + "timezone": "America/Denver" + }, + { + "GMT": "-3", + "cityId": 6146, + "codeIataCity": "QCU", + "codeIso2Country": "GL", + "geonameId": 3424720, + "latitudeCity": 68.75, + "longitudeCity": -52.333332, + "nameCity": "Akunnaaq", + "timezone": "America/Godthab" + }, + { + "GMT": "0", + "cityId": 6147, + "codeIataCity": "QCY", + "codeIso2Country": "GB", + "geonameId": 2652461, + "latitudeCity": 53.10598, + "longitudeCity": -0.17595, + "nameCity": "Coningsby", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 6148, + "codeIataCity": "QDH", + "codeIso2Country": "GB", + "geonameId": 0, + "latitudeCity": 51.1333, + "longitudeCity": 0.883333, + "nameCity": "Ashford", + "timezone": "Europe/London" + }, + { + "GMT": "-3", + "cityId": 6149, + "codeIataCity": "QDL", + "codeIso2Country": "BR", + "geonameId": 3461888, + "latitudeCity": -20.65, + "longitudeCity": -40.49167, + "nameCity": "Guarapari", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "cityId": 6150, + "codeIataCity": "QEQ", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 69.25, + "longitudeCity": -53.566666, + "nameCity": "Embrach/Rorbas", + "timezone": "Europe/Zurich" + }, + { + "GMT": "0", + "cityId": 6151, + "codeIataCity": "QEW", + "codeIso2Country": "GB", + "geonameId": 2644668, + "latitudeCity": 52.6333, + "longitudeCity": -1.13333, + "nameCity": "Leicester", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 6152, + "codeIataCity": "QFB", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 47.9959, + "longitudeCity": 7.85222, + "nameCity": "Freiburg", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 6153, + "codeIataCity": "QFH", + "codeIso2Country": "DK", + "geonameId": 2621927, + "latitudeCity": 57.44073, + "longitudeCity": 10.53661, + "nameCity": "Frederikshavn", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-3", + "cityId": 6154, + "codeIataCity": "QFI", + "codeIso2Country": "GL", + "geonameId": 3423337, + "latitudeCity": 68.166664, + "longitudeCity": -53.25, + "nameCity": "Iginniarfik", + "timezone": "America/Godthab" + }, + { + "GMT": "1", + "cityId": 6155, + "codeIataCity": "QFK", + "codeIso2Country": "NO", + "geonameId": 3139914, + "latitudeCity": 62.05, + "longitudeCity": 5.366667, + "nameCity": "Selje", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 6156, + "codeIataCity": "QFQ", + "codeIso2Country": "NO", + "geonameId": 3146487, + "latitudeCity": 61.95, + "longitudeCity": 5.1, + "nameCity": "Maloy", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 6157, + "codeIataCity": "QGL", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 47.4297, + "longitudeCity": 9.37614, + "nameCity": "St Gallen", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 6158, + "codeIataCity": "QGN", + "codeIso2Country": "ES", + "geonameId": 3108288, + "latitudeCity": 41.1167, + "longitudeCity": 1.25, + "nameCity": "Tarragona", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-3", + "cityId": 6159, + "codeIataCity": "QGQ", + "codeIso2Country": "GL", + "geonameId": 3424408, + "latitudeCity": 67.94056, + "longitudeCity": -53.62278, + "nameCity": "Attu", + "timezone": "America/Godthab" + }, + { + "GMT": "1", + "cityId": 6160, + "codeIataCity": "QGY", + "codeIso2Country": "HU", + "geonameId": 3054643, + "latitudeCity": 47.6833, + "longitudeCity": 17.6351, + "nameCity": "Per", + "timezone": "Europe/Budapest" + }, + { + "GMT": "1", + "cityId": 6161, + "codeIataCity": "QHJ", + "codeIso2Country": "DK", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Hjorring", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "cityId": 6162, + "codeIataCity": "QHU", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 54.4858, + "longitudeCity": 9.05239, + "nameCity": "Husum", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "cityId": 6163, + "codeIataCity": "QHX", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Qionghai", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 6164, + "codeIataCity": "QII", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 47.55, + "longitudeCity": 9.68333, + "nameCity": "Lindau", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-3", + "cityId": 6165, + "codeIataCity": "QJE", + "codeIso2Country": "GL", + "geonameId": 0, + "latitudeCity": 68.833336, + "longitudeCity": -53.166668, + "nameCity": "Kitsissuarsuit", + "timezone": "America/Godthab" + }, + { + "GMT": "-3", + "cityId": 6166, + "codeIataCity": "QJI", + "codeIso2Country": "GL", + "geonameId": 3423313, + "latitudeCity": 68.833336, + "longitudeCity": -52.0, + "nameCity": "Ikamiut", + "timezone": "America/Godthab" + }, + { + "GMT": "1", + "cityId": 6167, + "codeIataCity": "QJV", + "codeIso2Country": "DK", + "geonameId": 2613939, + "latitudeCity": 57.7333, + "longitudeCity": 10.6, + "nameCity": "Skagen Z7", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "cityId": 6168, + "codeIataCity": "QJW", + "codeIso2Country": "DK", + "geonameId": 2618814, + "latitudeCity": 56.28581, + "longitudeCity": 9.43528, + "nameCity": "Kjellerup", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "cityId": 6169, + "codeIataCity": "QJY", + "codeIso2Country": "PL", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Kolobrzeg", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "-7", + "cityId": 6170, + "codeIataCity": "QKB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 32.7557, + "longitudeCity": -98.9023, + "nameCity": "Breckenridge", + "timezone": "America/Denver" + }, + { + "GMT": "-7", + "cityId": 6171, + "codeIataCity": "QKS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 28.1558, + "longitudeCity": -82.6212, + "nameCity": "Keystone", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "cityId": 6172, + "codeIataCity": "QLE", + "codeIso2Country": "AU", + "geonameId": 2160413, + "latitudeCity": -34.5667, + "longitudeCity": 146.4, + "nameCity": "Leeton", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "cityId": 6173, + "codeIataCity": "QLJ", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 47.0505, + "longitudeCity": 8.30635, + "nameCity": "Lucerne", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 6174, + "codeIataCity": "QLS", + "codeIso2Country": "CH", + "geonameId": 2659994, + "latitudeCity": 46.516, + "longitudeCity": 6.63282, + "nameCity": "Lausanne", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 6175, + "codeIataCity": "QLZ", + "codeIso2Country": "DK", + "geonameId": 2619426, + "latitudeCity": 56.13883, + "longitudeCity": 9.15768, + "nameCity": "Ikast", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-3", + "cityId": 6176, + "codeIataCity": "QMK", + "codeIso2Country": "GL", + "geonameId": 3421608, + "latitudeCity": 68.25, + "longitudeCity": -52.833332, + "nameCity": "Niaqornaarsuk", + "timezone": "America/Godthab" + }, + { + "GMT": "1", + "cityId": 6177, + "codeIataCity": "QMO", + "codeIso2Country": "BE", + "geonameId": 0, + "latitudeCity": 50.45, + "longitudeCity": 3.93333, + "nameCity": "Mons", + "timezone": "Europe/Brussels" + }, + { + "GMT": "-5", + "cityId": 6178, + "codeIataCity": "QMV", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.033333, + "longitudeCity": -74.01667, + "nameCity": "Montvale", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 6179, + "codeIataCity": "QMZ", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 50.0, + "longitudeCity": 8.27111, + "nameCity": "Mainz", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 6180, + "codeIataCity": "QNC", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Neuchatel", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 6181, + "codeIataCity": "QNM", + "codeIso2Country": "BE", + "geonameId": 2800866, + "latitudeCity": 50.488, + "longitudeCity": 4.76892, + "nameCity": "Namur", + "timezone": "Europe/Brussels" + }, + { + "GMT": "1", + "cityId": 6182, + "codeIataCity": "QOB", + "codeIso2Country": "DE", + "geonameId": 2955936, + "latitudeCity": 49.3, + "longitudeCity": 10.5833, + "nameCity": "Ansbach", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 6183, + "codeIataCity": "QOW", + "codeIso2Country": "NG", + "geonameId": 0, + "latitudeCity": 5.427866, + "longitudeCity": 7.201676, + "nameCity": "Owerri", + "timezone": "Africa/Lagos" + }, + { + "GMT": "1", + "cityId": 6184, + "codeIataCity": "QPA", + "codeIso2Country": "IT", + "geonameId": 3171728, + "latitudeCity": 45.4152, + "longitudeCity": 11.8818, + "nameCity": "Padova", + "timezone": "Europe/Rome" + }, + { + "GMT": "2", + "cityId": 6185, + "codeIataCity": "QPL", + "codeIso2Country": "RO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Ploiesti", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "-3", + "cityId": 6186, + "codeIataCity": "QPT", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -18.671667, + "longitudeCity": -46.490833, + "nameCity": "Patos De Minas", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "cityId": 6187, + "codeIataCity": "QPV", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Perisher Valley", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-3", + "cityId": 6188, + "codeIataCity": "QPW", + "codeIso2Country": "GL", + "geonameId": 3422683, + "latitudeCity": 68.25, + "longitudeCity": -53.5, + "nameCity": "Kangaatsiaq", + "timezone": "America/Godthab" + }, + { + "GMT": "0", + "cityId": 6189, + "codeIataCity": "QQD", + "codeIso2Country": "GB", + "geonameId": 2651048, + "latitudeCity": 51.1333, + "longitudeCity": 1.3, + "nameCity": "Dover", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 6190, + "codeIataCity": "QQH", + "codeIso2Country": "GB", + "geonameId": 2647383, + "latitudeCity": 51.94194, + "longitudeCity": 1.28437, + "nameCity": "Harwich", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 6191, + "codeIataCity": "QQR", + "codeIso2Country": "GB", + "geonameId": 2639660, + "latitudeCity": 51.33576, + "longitudeCity": 1.41552, + "nameCity": "Ramsgate", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 6192, + "codeIataCity": "QQX", + "codeIso2Country": "GB", + "geonameId": 2656173, + "latitudeCity": 51.3794, + "longitudeCity": -2.36556, + "nameCity": "Bath", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 6193, + "codeIataCity": "QQY", + "codeIso2Country": "GB", + "geonameId": 2633352, + "latitudeCity": 53.9667, + "longitudeCity": -1.08333, + "nameCity": "York", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "cityId": 6194, + "codeIataCity": "QRO", + "codeIso2Country": "MX", + "geonameId": 3991164, + "latitudeCity": 20.6, + "longitudeCity": -100.38333, + "nameCity": "Queretaro", + "timezone": "America/Mexico_City" + }, + { + "GMT": "2", + "cityId": 6195, + "codeIataCity": "QRS", + "codeIso2Country": "RO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Resita", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "1", + "cityId": 6196, + "codeIataCity": "QRW", + "codeIso2Country": "NG", + "geonameId": 2319133, + "latitudeCity": 5.594487, + "longitudeCity": 5.819282, + "nameCity": "Warri", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-3", + "cityId": 6197, + "codeIataCity": "QRY", + "codeIso2Country": "GL", + "geonameId": 0, + "latitudeCity": 68.15, + "longitudeCity": -53.45, + "nameCity": "Ikerasaarsuk", + "timezone": "America/Godthab" + }, + { + "GMT": "-3", + "cityId": 6198, + "codeIataCity": "QSC", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -22.0175, + "longitudeCity": -47.8908, + "nameCity": "Sao Carlos", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "cityId": 6199, + "codeIataCity": "QSF", + "codeIso2Country": "DZ", + "geonameId": 0, + "latitudeCity": 36.18139, + "longitudeCity": 5.331111, + "nameCity": "S?tif", + "timezone": "Africa/Algiers" + }, + { + "GMT": "1", + "cityId": 6200, + "codeIataCity": "QSR", + "codeIso2Country": "IT", + "geonameId": 3172394, + "latitudeCity": 40.620148, + "longitudeCity": 14.92084, + "nameCity": "Salerno", + "timezone": "Europe/Rome" + }, + { + "GMT": "10", + "cityId": 6201, + "codeIataCity": "QTH", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Thredbo", + "timezone": "Australia/Sydney" + }, + { + "GMT": "2", + "cityId": 6202, + "codeIataCity": "QUB", + "codeIso2Country": "LY", + "geonameId": 0, + "latitudeCity": 26.6, + "longitudeCity": 12.766667, + "nameCity": "Ubari", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "0", + "cityId": 6203, + "codeIataCity": "QUG", + "codeIso2Country": "GB", + "geonameId": 2643743, + "latitudeCity": 50.941666, + "longitudeCity": -0.842248, + "nameCity": "Chichester", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 6204, + "codeIataCity": "QUL", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 48.4, + "longitudeCity": 10.0, + "nameCity": "Ulm", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 6205, + "codeIataCity": "QUO", + "codeIso2Country": "NG", + "geonameId": 0, + "latitudeCity": 4.876463, + "longitudeCity": 8.085693, + "nameCity": "Uyo", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-3", + "cityId": 6206, + "codeIataCity": "QUP", + "codeIso2Country": "GL", + "geonameId": 3420097, + "latitudeCity": 70.05, + "longitudeCity": -52.0, + "nameCity": "Saqqaq", + "timezone": "America/Godthab" + }, + { + "GMT": "0", + "cityId": 6207, + "codeIataCity": "QUY", + "codeIso2Country": "GB", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Wyton", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "cityId": 6208, + "codeIataCity": "QVY", + "codeIso2Country": "FI", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Kouvola", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-5", + "cityId": 6209, + "codeIataCity": "QWA", + "codeIso2Country": "CA", + "geonameId": 6094578, + "latitudeCity": 43.916668, + "longitudeCity": -78.9, + "nameCity": "Oshawa", + "timezone": "America/Toronto" + }, + { + "GMT": "10", + "cityId": 6210, + "codeIataCity": "QWL", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Crackenback Village", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "cityId": 6211, + "codeIataCity": "QWO", + "codeIso2Country": "DK", + "geonameId": 2620046, + "latitudeCity": 56.36009, + "longitudeCity": 8.61607, + "nameCity": "Holstebro", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-7", + "cityId": 6212, + "codeIataCity": "QWP", + "codeIso2Country": "US", + "geonameId": 5444579, + "latitudeCity": 28.6, + "longitudeCity": -81.3392, + "nameCity": "Winter Park", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 6213, + "codeIataCity": "QWQ", + "codeIso2Country": "DK", + "geonameId": 2612204, + "latitudeCity": 56.4833, + "longitudeCity": 8.61667, + "nameCity": "Struer", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "cityId": 6214, + "codeIataCity": "QWU", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 49.7878, + "longitudeCity": 9.93611, + "nameCity": "Wuerzburg", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 6215, + "codeIataCity": "QWZ", + "codeIso2Country": "NL", + "geonameId": 2759040, + "latitudeCity": 51.5075, + "longitudeCity": 5.39028, + "nameCity": "Best", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "cityId": 6216, + "codeIataCity": "QXB", + "codeIso2Country": "FR", + "geonameId": 3038354, + "latitudeCity": 43.5283, + "longitudeCity": 5.44973, + "nameCity": "Aix-en-Provence", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "cityId": 6217, + "codeIataCity": "QXF", + "codeIso2Country": "DK", + "geonameId": 2610499, + "latitudeCity": 57.13166, + "longitudeCity": 9.95942, + "nameCity": "Vestbjerg", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "cityId": 6218, + "codeIataCity": "QXK", + "codeIso2Country": "FR", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "St-Genis", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "cityId": 6219, + "codeIataCity": "QXV", + "codeIso2Country": "DK", + "geonameId": 2612045, + "latitudeCity": 55.05982, + "longitudeCity": 10.60677, + "nameCity": "Svendborg", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "cityId": 6220, + "codeIataCity": "QXZ", + "codeIso2Country": "AT", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Woergl", + "timezone": "Europe/Vienna" + }, + { + "GMT": "1", + "cityId": 6221, + "codeIataCity": "QYC", + "codeIso2Country": "NL", + "geonameId": 2756644, + "latitudeCity": 53.1, + "longitudeCity": 6.1, + "nameCity": "Drachten", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "cityId": 6222, + "codeIataCity": "QYH", + "codeIso2Country": "NL", + "geonameId": 0, + "latitudeCity": 52.0508, + "longitudeCity": 6.30972, + "nameCity": "Hengelo", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "cityId": 6223, + "codeIataCity": "QYI", + "codeIso2Country": "NL", + "geonameId": 2754064, + "latitudeCity": 52.226334, + "longitudeCity": 5.181235, + "nameCity": "Hilversum", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "cityId": 6224, + "codeIataCity": "QYL", + "codeIso2Country": "NL", + "geonameId": 2759887, + "latitudeCity": 52.35667, + "longitudeCity": 6.6625, + "nameCity": "Almelo", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "cityId": 6225, + "codeIataCity": "QYM", + "codeIso2Country": "NL", + "geonameId": 2759821, + "latitudeCity": 52.155, + "longitudeCity": 5.3875, + "nameCity": "Amersfoort", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "cityId": 6226, + "codeIataCity": "QYP", + "codeIso2Country": "NL", + "geonameId": 2759706, + "latitudeCity": 52.21, + "longitudeCity": 5.96944, + "nameCity": "Apeldoorn", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "cityId": 6227, + "codeIataCity": "QYQ", + "codeIso2Country": "DK", + "geonameId": 2612130, + "latitudeCity": 57.16343, + "longitudeCity": 9.95667, + "nameCity": "Sulsted", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "cityId": 6228, + "codeIataCity": "QYT", + "codeIso2Country": "NL", + "geonameId": 2748702, + "latitudeCity": 53.145, + "longitudeCity": 6.56528, + "nameCity": "Paterswolde", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "cityId": 6229, + "codeIataCity": "QYV", + "codeIso2Country": "NL", + "geonameId": 2756987, + "latitudeCity": 52.255, + "longitudeCity": 6.16389, + "nameCity": "Deventer", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "cityId": 6230, + "codeIataCity": "QYX", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 59.85, + "longitudeCity": 17.6333, + "nameCity": "Uppsala", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 6231, + "codeIataCity": "QYZ", + "codeIso2Country": "NL", + "geonameId": 2754669, + "latitudeCity": 52.9593, + "longitudeCity": 5.91854, + "nameCity": "Heerenveen", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "cityId": 6232, + "codeIataCity": "QZB", + "codeIso2Country": "CH", + "geonameId": 2657928, + "latitudeCity": 46.0167, + "longitudeCity": 7.75, + "nameCity": "Zermatt", + "timezone": "Europe/Zurich" + }, + { + "GMT": "10", + "cityId": 6233, + "codeIataCity": "QZC", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Smiggin Holes", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "cityId": 6234, + "codeIataCity": "QZD", + "codeIso2Country": "HU", + "geonameId": 715429, + "latitudeCity": 46.2537, + "longitudeCity": 20.146029, + "nameCity": "Szeged", + "timezone": "Europe/Budapest" + }, + { + "GMT": "1", + "cityId": 6235, + "codeIataCity": "QZF", + "codeIso2Country": "FR", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Font-Romeu", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "cityId": 6236, + "codeIataCity": "QZM", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Bullocks Flat", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "cityId": 6237, + "codeIataCity": "RAA", + "codeIso2Country": "PG", + "geonameId": 2093685, + "latitudeCity": -4.5, + "longitudeCity": 152.16667, + "nameCity": "Rakanda", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 6238, + "codeIataCity": "RAB", + "codeIso2Country": "PG", + "geonameId": 2087894, + "latitudeCity": -4.333333, + "longitudeCity": 152.36667, + "nameCity": "Rabaul", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 6239, + "codeIataCity": "RAC", + "codeIso2Country": "US", + "geonameId": 5268249, + "latitudeCity": 42.683334, + "longitudeCity": -87.85, + "nameCity": "Racine", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 6240, + "codeIataCity": "RAE", + "codeIso2Country": "SA", + "geonameId": 108512, + "latitudeCity": 30.903028, + "longitudeCity": 41.137115, + "nameCity": "Arar", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-3", + "cityId": 6241, + "codeIataCity": "RAF", + "codeIso2Country": "AR", + "geonameId": 3839479, + "latitudeCity": 29.6, + "longitudeCity": 34.85, + "nameCity": "Rafaela", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "12", + "cityId": 6242, + "codeIataCity": "RAG", + "codeIso2Country": "NZ", + "geonameId": 2190324, + "latitudeCity": -37.833332, + "longitudeCity": 174.86667, + "nameCity": "Raglan", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "3", + "cityId": 6243, + "codeIataCity": "RAH", + "codeIso2Country": "SA", + "geonameId": 0, + "latitudeCity": 29.623463, + "longitudeCity": 43.488785, + "nameCity": "Rafha", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-1", + "cityId": 6244, + "codeIataCity": "RAI", + "codeIso2Country": "CV", + "geonameId": 3374333, + "latitudeCity": 14.945321, + "longitudeCity": -23.486567, + "nameCity": "Praia", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "5.30", + "cityId": 6245, + "codeIataCity": "RAJ", + "codeIso2Country": "IN", + "geonameId": 1258847, + "latitudeCity": 22.308674, + "longitudeCity": 70.78235, + "nameCity": "Rajkot", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "0", + "cityId": 6246, + "codeIataCity": "RAK", + "codeIso2Country": "MA", + "geonameId": 2542997, + "latitudeCity": 31.601875, + "longitudeCity": -8.026902, + "nameCity": "Marrakech", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "-8", + "cityId": 6247, + "codeIataCity": "RAL", + "codeIso2Country": "US", + "geonameId": 5368361, + "latitudeCity": 33.953349, + "longitudeCity": -117.396156, + "nameCity": "Riverside", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "cityId": 6248, + "codeIataCity": "RAM", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -12.0, + "longitudeCity": 134.81667, + "nameCity": "Ramingining", + "timezone": "Australia/Darwin" + }, + { + "GMT": "1", + "cityId": 6249, + "codeIataCity": "RAN", + "codeIso2Country": "IT", + "geonameId": 3169561, + "latitudeCity": 44.36667, + "longitudeCity": 12.223333, + "nameCity": "Ravenna", + "timezone": "Europe/Rome" + }, + { + "GMT": "-3", + "cityId": 6250, + "codeIataCity": "RAO", + "codeIso2Country": "BR", + "geonameId": 3451328, + "latitudeCity": -21.135834, + "longitudeCity": -47.773335, + "nameCity": "Ribeirao Preto", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-7", + "cityId": 6251, + "codeIataCity": "RAP", + "codeIso2Country": "US", + "geonameId": 5768233, + "latitudeCity": 44.080543, + "longitudeCity": -103.231015, + "nameCity": "Rapid City", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "cityId": 6252, + "codeIataCity": "RAQ", + "codeIso2Country": "ID", + "geonameId": 1644964, + "latitudeCity": -4.916667, + "longitudeCity": 122.583336, + "nameCity": "Raha", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-10", + "cityId": 6253, + "codeIataCity": "RAR", + "codeIso2Country": "CK", + "geonameId": 4035637, + "latitudeCity": -21.19992, + "longitudeCity": -159.79852, + "nameCity": "Rarotonga", + "timezone": "Pacific/Rarotonga" + }, + { + "GMT": "3.30", + "cityId": 6254, + "codeIataCity": "RAS", + "codeIso2Country": "IR", + "geonameId": 118743, + "latitudeCity": 37.321815, + "longitudeCity": 49.619587, + "nameCity": "Rasht", + "timezone": "Asia/Tehran" + }, + { + "GMT": "5", + "cityId": 6255, + "codeIataCity": "RAT", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 62.5, + "longitudeCity": 77.0, + "nameCity": "Raduzhnyi", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-5", + "cityId": 6256, + "codeIataCity": "RAV", + "codeIso2Country": "CO", + "geonameId": 3685702, + "latitudeCity": 6.316667, + "longitudeCity": -70.183334, + "nameCity": "Cravo Norte", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "cityId": 6257, + "codeIataCity": "RAW", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.25, + "longitudeCity": 155.58333, + "nameCity": "Arawa", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 6258, + "codeIataCity": "RAX", + "codeIso2Country": "PG", + "geonameId": 2088122, + "latitudeCity": -9.672222, + "longitudeCity": 148.03334, + "nameCity": "Oram", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5", + "cityId": 6259, + "codeIataCity": "RAZ", + "codeIso2Country": "PK", + "geonameId": 1176615, + "latitudeCity": 33.841667, + "longitudeCity": 73.833336, + "nameCity": "Rawala Kot", + "timezone": "Asia/Karachi" + }, + { + "GMT": "0", + "cityId": 6260, + "codeIataCity": "RBA", + "codeIso2Country": "MA", + "geonameId": 2538475, + "latitudeCity": 34.036137, + "longitudeCity": -6.748619, + "nameCity": "Rabat", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "-4", + "cityId": 6261, + "codeIataCity": "RBB", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -4.4, + "longitudeCity": -59.583332, + "nameCity": "Borba", + "timezone": "America/Manaus" + }, + { + "GMT": "10", + "cityId": 6262, + "codeIataCity": "RBC", + "codeIso2Country": "AU", + "geonameId": 2157698, + "latitudeCity": -34.666668, + "longitudeCity": 142.75, + "nameCity": "Robinvale", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "7", + "cityId": 6263, + "codeIataCity": "RBE", + "codeIso2Country": "KH", + "geonameId": 0, + "latitudeCity": 13.666667, + "longitudeCity": 106.98333, + "nameCity": "Ratanakiri", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "-8", + "cityId": 6264, + "codeIataCity": "RBF", + "codeIso2Country": "US", + "geonameId": 5328163, + "latitudeCity": 34.266666, + "longitudeCity": -116.85, + "nameCity": "Big Bear", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-8", + "cityId": 6265, + "codeIataCity": "RBG", + "codeIso2Country": "US", + "geonameId": 5749352, + "latitudeCity": 43.238888, + "longitudeCity": -123.35972, + "nameCity": "Roseburg", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-9", + "cityId": 6266, + "codeIataCity": "RBH", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 58.55, + "longitudeCity": -155.8, + "nameCity": "Brooks Lodge", + "timezone": "America/Anchorage" + }, + { + "GMT": "12", + "cityId": 6267, + "codeIataCity": "RBI", + "codeIso2Country": "FJ", + "geonameId": 2198520, + "latitudeCity": 15.0, + "longitudeCity": -179.0, + "nameCity": "Rabi", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "9", + "cityId": 6268, + "codeIataCity": "RBJ", + "codeIso2Country": "JP", + "geonameId": 2127515, + "latitudeCity": 45.38333, + "longitudeCity": 141.03334, + "nameCity": "Rebun", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-8", + "cityId": 6269, + "codeIataCity": "RBK", + "codeIso2Country": "US", + "geonameId": 5391811, + "latitudeCity": 33.566666, + "longitudeCity": -117.11667, + "nameCity": "Rancho", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-8", + "cityId": 6270, + "codeIataCity": "RBL", + "codeIso2Country": "US", + "geonameId": 5570160, + "latitudeCity": 40.156555, + "longitudeCity": -122.27292, + "nameCity": "Red Bluff", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 6271, + "codeIataCity": "RBM", + "codeIso2Country": "DE", + "geonameId": 2826099, + "latitudeCity": 48.901943, + "longitudeCity": 12.519722, + "nameCity": "Straubing", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "cityId": 6272, + "codeIataCity": "RBN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 24.616667, + "longitudeCity": -82.86667, + "nameCity": "Fort Jefferson", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "cityId": 6273, + "codeIataCity": "RBO", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -18.344444, + "longitudeCity": -59.75528, + "nameCity": "Robore", + "timezone": "America/La_Paz" + }, + { + "GMT": "10", + "cityId": 6274, + "codeIataCity": "RBP", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -9.998611, + "longitudeCity": 149.83333, + "nameCity": "Rabaraba", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "cityId": 6275, + "codeIataCity": "RBQ", + "codeIso2Country": "BO", + "geonameId": 3906209, + "latitudeCity": -14.45, + "longitudeCity": -67.55, + "nameCity": "Rurrenabaque", + "timezone": "America/La_Paz" + }, + { + "GMT": "-5", + "cityId": 6276, + "codeIataCity": "RBR", + "codeIso2Country": "BR", + "geonameId": 3662574, + "latitudeCity": -9.966667, + "longitudeCity": -67.8, + "nameCity": "Rio Branco", + "timezone": "America/Rio_Branco" + }, + { + "GMT": "10", + "cityId": 6277, + "codeIataCity": "RBS", + "codeIso2Country": "AU", + "geonameId": 2154208, + "latitudeCity": -37.7, + "longitudeCity": 148.5, + "nameCity": "Orbost", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "3", + "cityId": 6278, + "codeIataCity": "RBT", + "codeIso2Country": "KE", + "geonameId": 0, + "latitudeCity": 2.333333, + "longitudeCity": 37.983334, + "nameCity": "Marsabit", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "8", + "cityId": 6279, + "codeIataCity": "RBU", + "codeIso2Country": "AU", + "geonameId": 6620339, + "latitudeCity": -20.8, + "longitudeCity": 117.166664, + "nameCity": "Roebourne", + "timezone": "Australia/Perth" + }, + { + "GMT": "11", + "cityId": 6280, + "codeIataCity": "RBV", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -8.165556, + "longitudeCity": 157.63945, + "nameCity": "Ramata", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-5", + "cityId": 6281, + "codeIataCity": "RBW", + "codeIso2Country": "US", + "geonameId": 4600065, + "latitudeCity": 32.9, + "longitudeCity": -80.666664, + "nameCity": "Walterboro", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 6282, + "codeIataCity": "RBX", + "codeIso2Country": "SS", + "geonameId": 0, + "latitudeCity": 6.825243, + "longitudeCity": 29.66953, + "nameCity": "Rumbek", + "timezone": "Africa/Juba" + }, + { + "GMT": "-9", + "cityId": 6283, + "codeIataCity": "RBY", + "codeIso2Country": "US", + "geonameId": 5873030, + "latitudeCity": 64.73, + "longitudeCity": -155.46083, + "nameCity": "Ruby", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "cityId": 6284, + "codeIataCity": "RCB", + "codeIso2Country": "ZA", + "geonameId": 962367, + "latitudeCity": -28.740557, + "longitudeCity": 32.093056, + "nameCity": "Richards Bay", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-8", + "cityId": 6285, + "codeIataCity": "RCE", + "codeIso2Country": "US", + "geonameId": 5808519, + "latitudeCity": 48.583332, + "longitudeCity": -123.166664, + "nameCity": "Roche Harbor", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 6286, + "codeIataCity": "RCH", + "codeIso2Country": "CO", + "geonameId": 3688230, + "latitudeCity": 11.529167, + "longitudeCity": -72.924446, + "nameCity": "Riohacha", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 6287, + "codeIataCity": "RCK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 30.65, + "longitudeCity": -97.0, + "nameCity": "Rockdale", + "timezone": "America/Chicago" + }, + { + "GMT": "11", + "cityId": 6288, + "codeIataCity": "RCL", + "codeIso2Country": "VU", + "geonameId": 2136150, + "latitudeCity": -27.207035, + "longitudeCity": 153.07333, + "nameCity": "Redcliffe", + "timezone": "Pacific/Efate" + }, + { + "GMT": "10", + "cityId": 6289, + "codeIataCity": "RCM", + "codeIso2Country": "AU", + "geonameId": 2151651, + "latitudeCity": -20.70389, + "longitudeCity": 143.11667, + "nameCity": "Richmond", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "9.30", + "cityId": 6290, + "codeIataCity": "RCN", + "codeIso2Country": "AU", + "geonameId": 2077810, + "latitudeCity": -35.833332, + "longitudeCity": 138.0, + "nameCity": "American River", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "1", + "cityId": 6291, + "codeIataCity": "RCO", + "codeIso2Country": "FR", + "geonameId": 2983276, + "latitudeCity": 45.890556, + "longitudeCity": -0.980556, + "nameCity": "Rochefort", + "timezone": "Europe/Paris" + }, + { + "GMT": "-9", + "cityId": 6292, + "codeIataCity": "RCP", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.083057, + "longitudeCity": -157.80556, + "nameCity": "Cinder River", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "cityId": 6293, + "codeIataCity": "RCQ", + "codeIso2Country": "AR", + "geonameId": 3429594, + "latitudeCity": -29.183332, + "longitudeCity": -59.7, + "nameCity": "Reconquista", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-5", + "cityId": 6294, + "codeIataCity": "RCR", + "codeIso2Country": "US", + "geonameId": 4925519, + "latitudeCity": 41.066666, + "longitudeCity": -86.21667, + "nameCity": "Rochester", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "0", + "cityId": 6295, + "codeIataCity": "RCS", + "codeIso2Country": "GB", + "geonameId": 2643179, + "latitudeCity": 51.35, + "longitudeCity": 0.5, + "nameCity": "Rochester", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "cityId": 6296, + "codeIataCity": "RCT", + "codeIso2Country": "US", + "geonameId": 5006946, + "latitudeCity": 43.88333, + "longitudeCity": -85.51667, + "nameCity": "Reed City", + "timezone": "America/Detroit" + }, + { + "GMT": "-3", + "cityId": 6297, + "codeIataCity": "RCU", + "codeIso2Country": "AR", + "geonameId": 3838874, + "latitudeCity": -33.165558, + "longitudeCity": -64.331665, + "nameCity": "Rio Cuarto", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-5", + "cityId": 6298, + "codeIataCity": "RCY", + "codeIso2Country": "BS", + "geonameId": 3572349, + "latitudeCity": 23.666668, + "longitudeCity": -74.96667, + "nameCity": "Rum Cay", + "timezone": "America/Nassau" + }, + { + "GMT": "9.30", + "cityId": 6299, + "codeIataCity": "RDA", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.95, + "longitudeCity": 135.16667, + "nameCity": "Rockhampton Downs", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-9", + "cityId": 6300, + "codeIataCity": "RDB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 67.75, + "longitudeCity": -163.66667, + "nameCity": "Red Dog", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "cityId": 6301, + "codeIataCity": "RDC", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -8.030278, + "longitudeCity": -49.98, + "nameCity": "Redencao", + "timezone": "America/Belem" + }, + { + "GMT": "-8", + "cityId": 6302, + "codeIataCity": "RDD", + "codeIso2Country": "US", + "geonameId": 5570160, + "latitudeCity": 40.58654, + "longitudeCity": -122.391675, + "nameCity": "Redding", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9", + "cityId": 6303, + "codeIataCity": "RDE", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -1.583333, + "longitudeCity": 133.33333, + "nameCity": "Merdey", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-5", + "cityId": 6304, + "codeIataCity": "RDG", + "codeIso2Country": "US", + "geonameId": 5207728, + "latitudeCity": 40.378613, + "longitudeCity": -75.96389, + "nameCity": "Reading", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "cityId": 6305, + "codeIataCity": "RDM", + "codeIso2Country": "US", + "geonameId": 5747882, + "latitudeCity": 44.254272, + "longitudeCity": -121.162895, + "nameCity": "Redmond", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "cityId": 6306, + "codeIataCity": "RDN", + "codeIso2Country": "MY", + "geonameId": 6862548, + "latitudeCity": 5.765278, + "longitudeCity": 103.00694, + "nameCity": "Redang", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "-6", + "cityId": 6307, + "codeIataCity": "RDR", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 46.833332, + "longitudeCity": -96.75, + "nameCity": "Red River", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 6308, + "codeIataCity": "RDS", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -37.38333, + "longitudeCity": -68.9, + "nameCity": "Rincon de los Sauces", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "0", + "cityId": 6309, + "codeIataCity": "RDT", + "codeIso2Country": "SN", + "geonameId": 0, + "latitudeCity": 16.437222, + "longitudeCity": -15.657222, + "nameCity": "Richard Toll", + "timezone": "Africa/Dakar" + }, + { + "GMT": "-5", + "cityId": 6310, + "codeIataCity": "RDU", + "codeIso2Country": "US", + "geonameId": 4487042, + "latitudeCity": 35.873592, + "longitudeCity": -78.79086, + "nameCity": "Raleigh", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 6311, + "codeIataCity": "RDV", + "codeIso2Country": "US", + "geonameId": 5872531, + "latitudeCity": 61.787224, + "longitudeCity": -157.34694, + "nameCity": "Red Devil", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 6312, + "codeIataCity": "RDZ", + "codeIso2Country": "FR", + "geonameId": 2983154, + "latitudeCity": 44.410595, + "longitudeCity": 2.483866, + "nameCity": "Rodez", + "timezone": "Europe/Paris" + }, + { + "GMT": "-10", + "cityId": 6313, + "codeIataCity": "REA", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -18.5, + "longitudeCity": -136.4, + "nameCity": "Reao", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "1", + "cityId": 6314, + "codeIataCity": "REB", + "codeIso2Country": "DE", + "geonameId": 2849717, + "latitudeCity": 53.35, + "longitudeCity": 12.716667, + "nameCity": "Rechlin", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-3", + "cityId": 6315, + "codeIataCity": "REC", + "codeIso2Country": "BR", + "geonameId": 3390760, + "latitudeCity": -8.131507, + "longitudeCity": -34.91792, + "nameCity": "Recife", + "timezone": "America/Recife" + }, + { + "GMT": "-5", + "cityId": 6316, + "codeIataCity": "RED", + "codeIso2Country": "US", + "geonameId": 5192726, + "latitudeCity": 40.683334, + "longitudeCity": -77.61667, + "nameCity": "Reedsville", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 6317, + "codeIataCity": "REG", + "codeIso2Country": "IT", + "geonameId": 2523630, + "latitudeCity": 38.07, + "longitudeCity": 15.65, + "nameCity": "Reggio Calabria", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "cityId": 6318, + "codeIataCity": "REH", + "codeIso2Country": "US", + "geonameId": 4144284, + "latitudeCity": 38.7, + "longitudeCity": -75.1, + "nameCity": "Rehoboth Beach", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 6319, + "codeIataCity": "REI", + "codeIso2Country": "GF", + "geonameId": 0, + "latitudeCity": 4.316667, + "longitudeCity": -52.13333, + "nameCity": "Regina", + "timezone": "America/Cayenne" + }, + { + "GMT": "0", + "cityId": 6320, + "codeIataCity": "REK", + "codeIso2Country": "IS", + "geonameId": 3413829, + "latitudeCity": 64.135338, + "longitudeCity": -21.89521, + "nameCity": "Reykjavik", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-3", + "cityId": 6321, + "codeIataCity": "REL", + "codeIso2Country": "AR", + "geonameId": 3833883, + "latitudeCity": -43.233334, + "longitudeCity": -65.32333, + "nameCity": "Trelew", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "5", + "cityId": 6322, + "codeIataCity": "REN", + "codeIso2Country": "RU", + "geonameId": 515003, + "latitudeCity": 51.79105, + "longitudeCity": 55.4567, + "nameCity": "Orenburg", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-8", + "cityId": 6323, + "codeIataCity": "REO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.833332, + "longitudeCity": -117.61667, + "nameCity": "Rome", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "7", + "cityId": 6324, + "codeIataCity": "REP", + "codeIso2Country": "KH", + "geonameId": 1822214, + "latitudeCity": 13.408436, + "longitudeCity": 103.815926, + "nameCity": "Siem Reap", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "5", + "cityId": 6325, + "codeIataCity": "REQ", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": -5.064947, + "longitudeCity": -73.86667, + "nameCity": "Reko Diq", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-6", + "cityId": 6326, + "codeIataCity": "RER", + "codeIso2Country": "GT", + "geonameId": 3591750, + "latitudeCity": 14.520278, + "longitudeCity": -91.696945, + "nameCity": "Retalhuleu", + "timezone": "America/Guatemala" + }, + { + "GMT": "-3", + "cityId": 6327, + "codeIataCity": "RES", + "codeIso2Country": "AR", + "geonameId": 3429577, + "latitudeCity": -27.45139, + "longitudeCity": -59.050835, + "nameCity": "Resistencia", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "1", + "cityId": 6328, + "codeIataCity": "RET", + "codeIso2Country": "NO", + "geonameId": 3141214, + "latitudeCity": 67.48333, + "longitudeCity": 12.083333, + "nameCity": "Rost", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 6329, + "codeIataCity": "REU", + "codeIso2Country": "ES", + "geonameId": 3111933, + "latitudeCity": 41.154818, + "longitudeCity": 1.108676, + "nameCity": "Reus", + "timezone": "Europe/Madrid" + }, + { + "GMT": "5.30", + "cityId": 6330, + "codeIataCity": "REW", + "codeIso2Country": "IN", + "geonameId": 1255183, + "latitudeCity": 24.533333, + "longitudeCity": 81.3, + "nameCity": "Rewa", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-6", + "cityId": 6331, + "codeIataCity": "REX", + "codeIso2Country": "MX", + "geonameId": 3520339, + "latitudeCity": 26.0125, + "longitudeCity": -98.23, + "nameCity": "Reynosa", + "timezone": "America/Matamoros" + }, + { + "GMT": "-4", + "cityId": 6332, + "codeIataCity": "REY", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -14.316667, + "longitudeCity": -67.26667, + "nameCity": "Reyes", + "timezone": "America/La_Paz" + }, + { + "GMT": "-3", + "cityId": 6333, + "codeIataCity": "REZ", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -22.478056, + "longitudeCity": -44.48111, + "nameCity": "Resende", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "cityId": 6334, + "codeIataCity": "RFA", + "codeIso2Country": "CF", + "geonameId": 0, + "latitudeCity": 4.983333, + "longitudeCity": 23.966667, + "nameCity": "Rafai", + "timezone": "Africa/Bangui" + }, + { + "GMT": "-6", + "cityId": 6335, + "codeIataCity": "RFG", + "codeIso2Country": "US", + "geonameId": 4722145, + "latitudeCity": 28.305284, + "longitudeCity": -97.27527, + "nameCity": "Refugio", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 6336, + "codeIataCity": "RFK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 32.966667, + "longitudeCity": -90.816666, + "nameCity": "Anguilla", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 6337, + "codeIataCity": "RFN", + "codeIso2Country": "IS", + "geonameId": 2626009, + "latitudeCity": 66.416664, + "longitudeCity": -15.016667, + "nameCity": "Raufarhofn", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-10", + "cityId": 6338, + "codeIataCity": "RFP", + "codeIso2Country": "PF", + "geonameId": 4033205, + "latitudeCity": -16.725004, + "longitudeCity": -151.46666, + "nameCity": "Raiatea", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-6", + "cityId": 6339, + "codeIataCity": "RFR", + "codeIso2Country": "CR", + "geonameId": 3621849, + "latitudeCity": 10.333333, + "longitudeCity": -83.88333, + "nameCity": "Rio Frio", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-6", + "cityId": 6340, + "codeIataCity": "RFS", + "codeIso2Country": "NI", + "geonameId": 0, + "latitudeCity": 13.883333, + "longitudeCity": -84.4, + "nameCity": "Rosita", + "timezone": "America/Managua" + }, + { + "GMT": "-3", + "cityId": 6341, + "codeIataCity": "RGA", + "codeIso2Country": "AR", + "geonameId": 3838854, + "latitudeCity": -53.779167, + "longitudeCity": -67.75, + "nameCity": "Rio Grande", + "timezone": "America/Argentina/Ushuaia" + }, + { + "GMT": "10", + "cityId": 6342, + "codeIataCity": "RGE", + "codeIso2Country": "PG", + "geonameId": 2088143, + "latitudeCity": -5.416667, + "longitudeCity": 143.15, + "nameCity": "Porgera", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5.30", + "cityId": 6343, + "codeIataCity": "RGH", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 25.25, + "longitudeCity": 88.73333, + "nameCity": "Balurghat", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-10", + "cityId": 6344, + "codeIataCity": "RGI", + "codeIso2Country": "PF", + "geonameId": 4034590, + "latitudeCity": -14.956334, + "longitudeCity": -147.65915, + "nameCity": "Rangiroa", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "6", + "cityId": 6345, + "codeIataCity": "RGK", + "codeIso2Country": "RU", + "geonameId": 1506271, + "latitudeCity": 51.969166, + "longitudeCity": 85.83639, + "nameCity": "Gorno-Altaysk", + "timezone": "Asia/Omsk" + }, + { + "GMT": "-3", + "cityId": 6346, + "codeIataCity": "RGL", + "codeIso2Country": "AR", + "geonameId": 3838859, + "latitudeCity": -51.61667, + "longitudeCity": -69.28333, + "nameCity": "Rio Gallegos", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "6.30", + "cityId": 6347, + "codeIataCity": "RGN", + "codeIso2Country": "MM", + "geonameId": 8239357, + "latitudeCity": 16.900068, + "longitudeCity": 96.134155, + "nameCity": "Yangon", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "8.30", + "cityId": 6348, + "codeIataCity": "RGO", + "codeIso2Country": "KP", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Orang", + "timezone": "Asia/Pyongyang" + }, + { + "GMT": "-6", + "cityId": 6349, + "codeIataCity": "RGR", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 32.466667, + "longitudeCity": -98.683334, + "nameCity": "Ranger", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 6350, + "codeIataCity": "RGS", + "codeIso2Country": "ES", + "geonameId": 3127461, + "latitudeCity": 42.35494, + "longitudeCity": -3.62295, + "nameCity": "Burgos", + "timezone": "Europe/Madrid" + }, + { + "GMT": "7", + "cityId": 6351, + "codeIataCity": "RGT", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -0.4, + "longitudeCity": 102.55, + "nameCity": "Rengat", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "0", + "cityId": 6352, + "codeIataCity": "RHA", + "codeIso2Country": "IS", + "geonameId": 3415667, + "latitudeCity": 65.166664, + "longitudeCity": -21.416668, + "nameCity": "Reykholar", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-3", + "cityId": 6353, + "codeIataCity": "RHD", + "codeIso2Country": "AR", + "geonameId": 3834502, + "latitudeCity": -27.533333, + "longitudeCity": -64.95, + "nameCity": "Rio Hondo", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "1", + "cityId": 6354, + "codeIataCity": "RHE", + "codeIso2Country": "FR", + "geonameId": 2984114, + "latitudeCity": 49.258329, + "longitudeCity": 4.031696, + "nameCity": "Reims", + "timezone": "Europe/Paris" + }, + { + "GMT": "2", + "cityId": 6355, + "codeIataCity": "RHG", + "codeIso2Country": "RW", + "geonameId": 201521, + "latitudeCity": -1.5, + "longitudeCity": 29.6, + "nameCity": "Ruhengeri", + "timezone": "Africa/Kigali" + }, + { + "GMT": "-6", + "cityId": 6356, + "codeIataCity": "RHI", + "codeIso2Country": "US", + "geonameId": 5268720, + "latitudeCity": 45.625706, + "longitudeCity": -89.46253, + "nameCity": "Rhinelander", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 6357, + "codeIataCity": "RHL", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -22.75, + "longitudeCity": 120.0, + "nameCity": "Roy Hill", + "timezone": "Australia/Perth" + }, + { + "GMT": "2", + "cityId": 6358, + "codeIataCity": "RHN", + "codeIso2Country": "NA", + "geonameId": 0, + "latitudeCity": -27.966667, + "longitudeCity": 16.7, + "nameCity": "Rosh Pina", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "2", + "cityId": 6359, + "codeIataCity": "RHO", + "codeIso2Country": "GR", + "geonameId": 400666, + "latitudeCity": 36.401867, + "longitudeCity": 28.090677, + "nameCity": "Rhodes", + "timezone": "Europe/Athens" + }, + { + "GMT": "5.45", + "cityId": 6360, + "codeIataCity": "RHP", + "codeIso2Country": "NP", + "geonameId": 1283240, + "latitudeCity": 27.333332, + "longitudeCity": 86.083336, + "nameCity": "Ramechhap", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-3", + "cityId": 6361, + "codeIataCity": "RIA", + "codeIso2Country": "BR", + "geonameId": 3450083, + "latitudeCity": -29.710556, + "longitudeCity": -53.6875, + "nameCity": "Santa Maria", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-4", + "cityId": 6362, + "codeIataCity": "RIB", + "codeIso2Country": "BO", + "geonameId": 3906466, + "latitudeCity": -11.006944, + "longitudeCity": -66.093056, + "nameCity": "Riberalta", + "timezone": "America/La_Paz" + }, + { + "GMT": "-5", + "cityId": 6363, + "codeIataCity": "RIC", + "codeIso2Country": "US", + "geonameId": 4781708, + "latitudeCity": 37.542979, + "longitudeCity": -77.469092, + "nameCity": "Richmond", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 6364, + "codeIataCity": "RID", + "codeIso2Country": "US", + "geonameId": 4263681, + "latitudeCity": 39.833332, + "longitudeCity": -84.9, + "nameCity": "Richmond", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-6", + "cityId": 6365, + "codeIataCity": "RIE", + "codeIso2Country": "US", + "geonameId": 5048814, + "latitudeCity": 45.47861, + "longitudeCity": -91.72361, + "nameCity": "Rice Lake", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 6366, + "codeIataCity": "RIF", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.74111, + "longitudeCity": -112.094444, + "nameCity": "Richfield", + "timezone": "America/Denver" + }, + { + "GMT": "-3", + "cityId": 6367, + "codeIataCity": "RIG", + "codeIso2Country": "BR", + "geonameId": 3451138, + "latitudeCity": -32.083332, + "longitudeCity": -52.166668, + "nameCity": "Rio Grande", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "cityId": 6368, + "codeIataCity": "RIJ", + "codeIso2Country": "PE", + "geonameId": 3698540, + "latitudeCity": -6.05, + "longitudeCity": -77.15, + "nameCity": "Rioja", + "timezone": "America/Lima" + }, + { + "GMT": "-6", + "cityId": 6369, + "codeIataCity": "RIK", + "codeIso2Country": "CR", + "geonameId": 3621990, + "latitudeCity": 9.866667, + "longitudeCity": -85.48333, + "nameCity": "Carrillo", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-7", + "cityId": 6370, + "codeIataCity": "RIL", + "codeIso2Country": "US", + "geonameId": 5436363, + "latitudeCity": 39.533333, + "longitudeCity": -107.78333, + "nameCity": "Rifle", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "cityId": 6371, + "codeIataCity": "RIM", + "codeIso2Country": "PE", + "geonameId": 3698540, + "latitudeCity": -6.0, + "longitudeCity": -78.0, + "nameCity": "Rodriguez De Mendoza", + "timezone": "America/Lima" + }, + { + "GMT": "11", + "cityId": 6372, + "codeIataCity": "RIN", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -8.2, + "longitudeCity": 157.03334, + "nameCity": "Ringi Cove", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-3", + "cityId": 6373, + "codeIataCity": "RIO", + "codeIso2Country": "BR", + "geonameId": 3451190, + "latitudeCity": -22.81, + "longitudeCity": -43.24, + "nameCity": "Rio de Janeiro", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "9", + "cityId": 6374, + "codeIataCity": "RIS", + "codeIso2Country": "JP", + "geonameId": 7429568, + "latitudeCity": 45.183334, + "longitudeCity": 141.25, + "nameCity": "Rishiri", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "cityId": 6375, + "codeIataCity": "RIT", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 7.833333, + "longitudeCity": -80.8, + "nameCity": "Rio Tigre", + "timezone": "America/Panama" + }, + { + "GMT": "-7", + "cityId": 6376, + "codeIataCity": "RIW", + "codeIso2Country": "US", + "geonameId": 5836665, + "latitudeCity": 43.064445, + "longitudeCity": -108.45695, + "nameCity": "Riverton", + "timezone": "America/Denver" + }, + { + "GMT": "2", + "cityId": 6377, + "codeIataCity": "RIX", + "codeIso2Country": "LV", + "geonameId": 456172, + "latitudeCity": 56.92208, + "longitudeCity": 23.979807, + "nameCity": "Riga", + "timezone": "Europe/Riga" + }, + { + "GMT": "3", + "cityId": 6378, + "codeIataCity": "RIY", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 14.666999, + "longitudeCity": 49.373684, + "nameCity": "Riyan Mukalla", + "timezone": "Asia/Aden" + }, + { + "GMT": "-5", + "cityId": 6379, + "codeIataCity": "RIZ", + "codeIso2Country": "PA", + "geonameId": 3703443, + "latitudeCity": 8.25, + "longitudeCity": -80.833336, + "nameCity": "Rio Alzucar", + "timezone": "America/Panama" + }, + { + "GMT": "5.30", + "cityId": 6380, + "codeIataCity": "RJA", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 17.109638, + "longitudeCity": 81.82081, + "nameCity": "Rajahmundry", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "5.45", + "cityId": 6381, + "codeIataCity": "RJB", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 26.483334, + "longitudeCity": 86.833336, + "nameCity": "Rajbiraj", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "6", + "cityId": 6382, + "codeIataCity": "RJH", + "codeIso2Country": "BD", + "geonameId": 0, + "latitudeCity": 24.433332, + "longitudeCity": 88.61667, + "nameCity": "Rajshahi", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "5.30", + "cityId": 6383, + "codeIataCity": "RJI", + "codeIso2Country": "IN", + "geonameId": 1255634, + "latitudeCity": 33.36861, + "longitudeCity": 74.3025, + "nameCity": "Rajouri", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "cityId": 6384, + "codeIataCity": "RJK", + "codeIso2Country": "HR", + "geonameId": 3191648, + "latitudeCity": 45.21583, + "longitudeCity": 14.568333, + "nameCity": "Rijeka", + "timezone": "Europe/Zagreb" + }, + { + "GMT": "1", + "cityId": 6385, + "codeIataCity": "RJL", + "codeIso2Country": "ES", + "geonameId": 3118150, + "latitudeCity": 42.456944, + "longitudeCity": -2.323611, + "nameCity": "Logrono", + "timezone": "Europe/Madrid" + }, + { + "GMT": "3.30", + "cityId": 6386, + "codeIataCity": "RJN", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 30.296944, + "longitudeCity": 56.056667, + "nameCity": "Rafsanjan", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-10", + "cityId": 6387, + "codeIataCity": "RKA", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -15.485299, + "longitudeCity": -145.46887, + "nameCity": "Aratika", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-8", + "cityId": 6388, + "codeIataCity": "RKC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.733334, + "longitudeCity": -122.63333, + "nameCity": "Yreka", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 6389, + "codeIataCity": "RKD", + "codeIso2Country": "US", + "geonameId": 4832458, + "latitudeCity": 44.059166, + "longitudeCity": -69.09805, + "nameCity": "Rockland", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 6390, + "codeIataCity": "RKH", + "codeIso2Country": "US", + "geonameId": 4593142, + "latitudeCity": 34.916668, + "longitudeCity": -81.01667, + "nameCity": "Rock Hill", + "timezone": "America/New_York" + }, + { + "GMT": "7", + "cityId": 6391, + "codeIataCity": "RKI", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -0.95, + "longitudeCity": 100.75, + "nameCity": "Rokot", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "7", + "cityId": 6392, + "codeIataCity": "RKO", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -2.083333, + "longitudeCity": 116.0, + "nameCity": "Sipora", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-6", + "cityId": 6393, + "codeIataCity": "RKP", + "codeIso2Country": "US", + "geonameId": 4723422, + "latitudeCity": 28.033333, + "longitudeCity": -97.05, + "nameCity": "Rockport", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 6394, + "codeIataCity": "RKR", + "codeIso2Country": "US", + "geonameId": 4548363, + "latitudeCity": 35.05, + "longitudeCity": -94.61667, + "nameCity": "Poteau", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 6395, + "codeIataCity": "RKS", + "codeIso2Country": "US", + "geonameId": 5836898, + "latitudeCity": 41.59639, + "longitudeCity": -109.065834, + "nameCity": "Rock Springs", + "timezone": "America/Denver" + }, + { + "GMT": "4", + "cityId": 6396, + "codeIataCity": "RKT", + "codeIso2Country": "AE", + "geonameId": 292223, + "latitudeCity": 25.616198, + "longitudeCity": 55.943695, + "nameCity": "Ras Al Khaimah", + "timezone": "Asia/Dubai" + }, + { + "GMT": "10", + "cityId": 6397, + "codeIataCity": "RKU", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.816667, + "longitudeCity": 146.51666, + "nameCity": "Yule Island", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 6398, + "codeIataCity": "RKW", + "codeIso2Country": "US", + "geonameId": 4653999, + "latitudeCity": 35.86667, + "longitudeCity": -84.683334, + "nameCity": "Rockwood", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 6399, + "codeIataCity": "RKY", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -13.166667, + "longitudeCity": 143.43333, + "nameCity": "Rokeby", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "cityId": 6400, + "codeIataCity": "RKZ", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 29.351944, + "longitudeCity": 89.31, + "nameCity": "Xigaze/Rikaze", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "cityId": 6401, + "codeIataCity": "RLA", + "codeIso2Country": "US", + "geonameId": 4406282, + "latitudeCity": 38.127777, + "longitudeCity": -91.77805, + "nameCity": "Rolla", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 6402, + "codeIataCity": "RLD", + "codeIso2Country": "US", + "geonameId": 5808276, + "latitudeCity": 46.308334, + "longitudeCity": -119.30556, + "nameCity": "Richland", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 6403, + "codeIataCity": "RLG", + "codeIso2Country": "DE", + "geonameId": 2844588, + "latitudeCity": 53.92, + "longitudeCity": 12.266667, + "nameCity": "Rostock-laage", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "cityId": 6404, + "codeIataCity": "RLK", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 40.926388, + "longitudeCity": 107.73889, + "nameCity": "Bayannur", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-3", + "cityId": 6405, + "codeIataCity": "RLO", + "codeIso2Country": "AR", + "geonameId": 3844377, + "latitudeCity": -32.384445, + "longitudeCity": -65.5525, + "nameCity": "Merlo", + "timezone": "America/Argentina/San_Luis" + }, + { + "GMT": "10", + "cityId": 6406, + "codeIataCity": "RLP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.0, + "longitudeCity": 145.0, + "nameCity": "Rosella Plains", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "cityId": 6407, + "codeIataCity": "RLR", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -22.645277, + "longitudeCity": 45.323612, + "nameCity": "Isalo", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "1", + "cityId": 6408, + "codeIataCity": "RLT", + "codeIso2Country": "NE", + "geonameId": 2447513, + "latitudeCity": 18.783333, + "longitudeCity": 7.366667, + "nameCity": "Arlit", + "timezone": "Africa/Niamey" + }, + { + "GMT": "-9", + "cityId": 6409, + "codeIataCity": "RLU", + "codeIso2Country": "US", + "geonameId": 5857861, + "latitudeCity": 67.75, + "longitudeCity": -156.0, + "nameCity": "Bornite", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 6410, + "codeIataCity": "RMA", + "codeIso2Country": "AU", + "geonameId": 2151187, + "latitudeCity": -26.543552, + "longitudeCity": 148.77943, + "nameCity": "Roma", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "4", + "cityId": 6411, + "codeIataCity": "RMB", + "codeIso2Country": "OM", + "geonameId": 0, + "latitudeCity": 24.25, + "longitudeCity": 55.783333, + "nameCity": "Buraimi", + "timezone": "Asia/Muscat" + }, + { + "GMT": "-6", + "cityId": 6412, + "codeIataCity": "RMC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.266666, + "longitudeCity": -89.1, + "nameCity": "Rockford", + "timezone": "America/Chicago" + }, + { + "GMT": "5.30", + "cityId": 6413, + "codeIataCity": "RMD", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 18.766666, + "longitudeCity": 79.4, + "nameCity": "Ramagundam", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "cityId": 6414, + "codeIataCity": "RME", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 43.216667, + "longitudeCity": -75.45, + "nameCity": "Rome", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 6415, + "codeIataCity": "RMF", + "codeIso2Country": "EG", + "geonameId": 352736, + "latitudeCity": 25.555786, + "longitudeCity": 34.592777, + "nameCity": "Marsa Alam", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-5", + "cityId": 6416, + "codeIataCity": "RMG", + "codeIso2Country": "US", + "geonameId": 4219762, + "latitudeCity": 34.35139, + "longitudeCity": -85.15861, + "nameCity": "Rome", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 6417, + "codeIataCity": "RMI", + "codeIso2Country": "IT", + "geonameId": 3169361, + "latitudeCity": 44.022953, + "longitudeCity": 12.619594, + "nameCity": "Rimini", + "timezone": "Europe/Rome" + }, + { + "GMT": "9.30", + "cityId": 6418, + "codeIataCity": "RMK", + "codeIso2Country": "AU", + "geonameId": 2151737, + "latitudeCity": -34.2, + "longitudeCity": 140.68333, + "nameCity": "Renmark", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "10", + "cityId": 6419, + "codeIataCity": "RMN", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.166667, + "longitudeCity": 141.16667, + "nameCity": "Rumginae", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 6420, + "codeIataCity": "RMP", + "codeIso2Country": "US", + "geonameId": 5872441, + "latitudeCity": 65.50833, + "longitudeCity": -150.14027, + "nameCity": "Rampart", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "cityId": 6421, + "codeIataCity": "RMQ", + "codeIso2Country": "TW", + "geonameId": 1668399, + "latitudeCity": 24.249294, + "longitudeCity": 120.60131, + "nameCity": "Taichung", + "timezone": "Asia/Taipei" + }, + { + "GMT": "1", + "cityId": 6422, + "codeIataCity": "RMS", + "codeIso2Country": "DE", + "geonameId": 2850539, + "latitudeCity": 49.45, + "longitudeCity": 7.55, + "nameCity": "Ramstein", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-10", + "cityId": 6423, + "codeIataCity": "RMT", + "codeIso2Country": "PF", + "geonameId": 4034164, + "latitudeCity": -22.638783, + "longitudeCity": -152.80516, + "nameCity": "Rimatara", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "1", + "cityId": 6424, + "codeIataCity": "RMU", + "codeIso2Country": "ES", + "geonameId": 2513416, + "latitudeCity": 37.7933, + "longitudeCity": -1.14028, + "nameCity": "Corvera", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-8", + "cityId": 6425, + "codeIataCity": "RMY", + "codeIso2Country": "US", + "geonameId": 5370590, + "latitudeCity": 42.261806, + "longitudeCity": -85.004524, + "nameCity": "Mariposa", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "11", + "cityId": 6426, + "codeIataCity": "RNA", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -9.864444, + "longitudeCity": 161.98306, + "nameCity": "Arona", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "1", + "cityId": 6427, + "codeIataCity": "RNB", + "codeIso2Country": "SE", + "geonameId": 2701713, + "latitudeCity": 56.27, + "longitudeCity": 15.27, + "nameCity": "Ronneby", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-6", + "cityId": 6428, + "codeIataCity": "RNC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 35.837082, + "longitudeCity": -85.93816, + "nameCity": "Mcminnville", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 6429, + "codeIataCity": "RNE", + "codeIso2Country": "FR", + "geonameId": 2983362, + "latitudeCity": 46.053333, + "longitudeCity": 4.000833, + "nameCity": "Roanne", + "timezone": "Europe/Paris" + }, + { + "GMT": "-7", + "cityId": 6430, + "codeIataCity": "RNG", + "codeIso2Country": "US", + "geonameId": 5581213, + "latitudeCity": 40.094723, + "longitudeCity": -108.76056, + "nameCity": "Rangely", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 6431, + "codeIataCity": "RNH", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 45.13333, + "longitudeCity": -92.55, + "nameCity": "New Richmond", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 6432, + "codeIataCity": "RNI", + "codeIso2Country": "NI", + "geonameId": 0, + "latitudeCity": 12.15, + "longitudeCity": -83.066666, + "nameCity": "Corn Island", + "timezone": "America/Managua" + }, + { + "GMT": "9", + "cityId": 6433, + "codeIataCity": "RNJ", + "codeIso2Country": "JP", + "geonameId": 1854037, + "latitudeCity": 27.033333, + "longitudeCity": 128.43333, + "nameCity": "Yoronjima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "11", + "cityId": 6434, + "codeIataCity": "RNL", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -11.666667, + "longitudeCity": 160.3, + "nameCity": "Rennell", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "4", + "cityId": 6435, + "codeIataCity": "RNM", + "codeIso2Country": "OM", + "geonameId": 0, + "latitudeCity": 33.089054, + "longitudeCity": -117.03639, + "nameCity": "Qarn Alam", + "timezone": "Asia/Muscat" + }, + { + "GMT": "1", + "cityId": 6436, + "codeIataCity": "RNN", + "codeIso2Country": "DK", + "geonameId": 2614553, + "latitudeCity": 55.065556, + "longitudeCity": 14.757778, + "nameCity": "R?nne", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-8", + "cityId": 6437, + "codeIataCity": "RNO", + "codeIso2Country": "US", + "geonameId": 5511077, + "latitudeCity": 39.505783, + "longitudeCity": -119.775696, + "nameCity": "Reno", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "12", + "cityId": 6438, + "codeIataCity": "RNP", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 11.15, + "longitudeCity": 166.88333, + "nameCity": "Rongelap Island", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "10", + "cityId": 6439, + "codeIataCity": "RNR", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -10.133333, + "longitudeCity": 147.75, + "nameCity": "Robinson River", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 6440, + "codeIataCity": "RNS", + "codeIso2Country": "FR", + "geonameId": 2983990, + "latitudeCity": 48.113475, + "longitudeCity": -1.675708, + "nameCity": "Rennes", + "timezone": "Europe/Paris" + }, + { + "GMT": "-8", + "cityId": 6441, + "codeIataCity": "RNT", + "codeIso2Country": "US", + "geonameId": 5808189, + "latitudeCity": 47.5, + "longitudeCity": -122.21667, + "nameCity": "Renton", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "cityId": 6442, + "codeIataCity": "RNU", + "codeIso2Country": "MY", + "geonameId": 1733502, + "latitudeCity": 5.95, + "longitudeCity": 116.666664, + "nameCity": "Ranau", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-6", + "cityId": 6443, + "codeIataCity": "RNZ", + "codeIso2Country": "US", + "geonameId": 4925311, + "latitudeCity": 40.95, + "longitudeCity": -87.15, + "nameCity": "Rensselaer", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 6444, + "codeIataCity": "ROA", + "codeIso2Country": "US", + "geonameId": 4782167, + "latitudeCity": 37.32051, + "longitudeCity": -79.97038, + "nameCity": "Roanoke", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 6445, + "codeIataCity": "ROC", + "codeIso2Country": "US", + "geonameId": 5134086, + "latitudeCity": 43.161, + "longitudeCity": -77.611, + "nameCity": "Rochester", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 6446, + "codeIataCity": "ROD", + "codeIso2Country": "ZA", + "geonameId": 3362349, + "latitudeCity": -33.816666, + "longitudeCity": 19.9, + "nameCity": "Robertson", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-6", + "cityId": 6447, + "codeIataCity": "ROG", + "codeIso2Country": "US", + "geonameId": 4101260, + "latitudeCity": 36.372223, + "longitudeCity": -94.10667, + "nameCity": "Rogers", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 6448, + "codeIataCity": "ROH", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.25, + "longitudeCity": 144.0, + "nameCity": "Robinhood", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "7", + "cityId": 6449, + "codeIataCity": "ROI", + "codeIso2Country": "TH", + "geonameId": 1607001, + "latitudeCity": 16.115278, + "longitudeCity": 103.77695, + "nameCity": "Roi Et", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "10", + "cityId": 6450, + "codeIataCity": "ROK", + "codeIso2Country": "AU", + "geonameId": 2151437, + "latitudeCity": -23.377993, + "longitudeCity": 150.47841, + "nameCity": "Rockhampton", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-7", + "cityId": 6451, + "codeIataCity": "ROL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 40.3, + "longitudeCity": -109.98333, + "nameCity": "Roosevelt", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 6452, + "codeIataCity": "ROM", + "codeIso2Country": "IT", + "geonameId": 3169070, + "latitudeCity": 41.89052, + "longitudeCity": 12.494249, + "nameCity": "Rome", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "cityId": 6453, + "codeIataCity": "RON", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 6.3, + "longitudeCity": -71.083336, + "nameCity": "Rondon", + "timezone": "America/Bogota" + }, + { + "GMT": "-4", + "cityId": 6454, + "codeIataCity": "ROO", + "codeIso2Country": "BR", + "geonameId": 3450909, + "latitudeCity": -16.433332, + "longitudeCity": -54.716667, + "nameCity": "Rondonopolis", + "timezone": "America/Cuiaba" + }, + { + "GMT": "10", + "cityId": 6455, + "codeIataCity": "ROP", + "codeIso2Country": "MP", + "geonameId": 0, + "latitudeCity": 14.171568, + "longitudeCity": 145.24408, + "nameCity": "Rota", + "timezone": "Pacific/Saipan" + }, + { + "GMT": "9", + "cityId": 6456, + "codeIataCity": "ROR", + "codeIso2Country": "PW", + "geonameId": 0, + "latitudeCity": 7.364122, + "longitudeCity": 134.5329, + "nameCity": "Koror", + "timezone": "Pacific/Palau" + }, + { + "GMT": "-3", + "cityId": 6457, + "codeIataCity": "ROS", + "codeIso2Country": "AR", + "geonameId": 3838583, + "latitudeCity": -32.933334, + "longitudeCity": -60.783333, + "nameCity": "Rosario", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "12", + "cityId": 6458, + "codeIataCity": "ROT", + "codeIso2Country": "NZ", + "geonameId": 6241325, + "latitudeCity": -38.10982, + "longitudeCity": 176.31746, + "nameCity": "Rotorua", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "2", + "cityId": 6459, + "codeIataCity": "ROU", + "codeIso2Country": "BG", + "geonameId": 727523, + "latitudeCity": 43.683334, + "longitudeCity": 26.05, + "nameCity": "Rousse", + "timezone": "Europe/Sofia" + }, + { + "GMT": "3", + "cityId": 6460, + "codeIataCity": "ROV", + "codeIso2Country": "RU", + "geonameId": 501183, + "latitudeCity": 47.25, + "longitudeCity": 39.75, + "nameCity": "Rostov", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-7", + "cityId": 6461, + "codeIataCity": "ROW", + "codeIso2Country": "US", + "geonameId": 5488441, + "latitudeCity": 33.29972, + "longitudeCity": -104.53, + "nameCity": "Roswell", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 6462, + "codeIataCity": "ROX", + "codeIso2Country": "US", + "geonameId": 5043752, + "latitudeCity": 48.85, + "longitudeCity": -95.76667, + "nameCity": "Roseau", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 6463, + "codeIataCity": "ROY", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -45.666668, + "longitudeCity": -70.25, + "nameCity": "Rio Mayo", + "timezone": "America/Argentina/Catamarca" + }, + { + "GMT": "1", + "cityId": 6464, + "codeIataCity": "ROZ", + "codeIso2Country": "ES", + "geonameId": 2511700, + "latitudeCity": 43.119446, + "longitudeCity": -7.502778, + "nameCity": "Rota", + "timezone": "Europe/Madrid" + }, + { + "GMT": "5.45", + "cityId": 6465, + "codeIataCity": "RPA", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 26.983334, + "longitudeCity": 87.333336, + "nameCity": "Rolpa", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "9.30", + "cityId": 6466, + "codeIataCity": "RPB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -14.733333, + "longitudeCity": 134.73334, + "nameCity": "Roper Bar", + "timezone": "Australia/Darwin" + }, + { + "GMT": "9.30", + "cityId": 6467, + "codeIataCity": "RPM", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -14.933333, + "longitudeCity": 134.0, + "nameCity": "Ngukurr", + "timezone": "Australia/Darwin" + }, + { + "GMT": "2", + "cityId": 6468, + "codeIataCity": "RPN", + "codeIso2Country": "IL", + "geonameId": 293100, + "latitudeCity": 32.981667, + "longitudeCity": 35.57111, + "nameCity": "Rosh Pina", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "5.30", + "cityId": 6469, + "codeIataCity": "RPR", + "codeIso2Country": "IN", + "geonameId": 1258980, + "latitudeCity": 21.18456, + "longitudeCity": 81.73975, + "nameCity": "Raipur", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "9.30", + "cityId": 6470, + "codeIataCity": "RPV", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -14.966667, + "longitudeCity": 134.03334, + "nameCity": "Roper Valley", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-7", + "cityId": 6471, + "codeIataCity": "RPX", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 46.433334, + "longitudeCity": -108.53333, + "nameCity": "Roundup", + "timezone": "America/Denver" + }, + { + "GMT": "3", + "cityId": 6472, + "codeIataCity": "RQW", + "codeIso2Country": "IQ", + "geonameId": 95446, + "latitudeCity": 35.7669, + "longitudeCity": 43.125, + "nameCity": "Qayyarah", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "1", + "cityId": 6473, + "codeIataCity": "RRA", + "codeIso2Country": "ES", + "geonameId": 0, + "latitudeCity": 36.75, + "longitudeCity": -5.166667, + "nameCity": "Ronda", + "timezone": "Europe/Madrid" + }, + { + "GMT": "9.30", + "cityId": 6474, + "codeIataCity": "RRE", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -29.65, + "longitudeCity": 138.06667, + "nameCity": "Marree", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "4", + "cityId": 6475, + "codeIataCity": "RRG", + "codeIso2Country": "MU", + "geonameId": 0, + "latitudeCity": -19.75, + "longitudeCity": 63.35, + "nameCity": "Rodrigues Island", + "timezone": "Indian/Mauritius" + }, + { + "GMT": "11", + "cityId": 6476, + "codeIataCity": "RRI", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -7.5, + "longitudeCity": 158.26666, + "nameCity": "Barora", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "5.30", + "cityId": 6477, + "codeIataCity": "RRK", + "codeIso2Country": "IN", + "geonameId": 1277247, + "latitudeCity": 22.256666, + "longitudeCity": 84.81472, + "nameCity": "Rourkela", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-6", + "cityId": 6478, + "codeIataCity": "RRL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 45.183334, + "longitudeCity": -89.683334, + "nameCity": "Merrill", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 6479, + "codeIataCity": "RRM", + "codeIso2Country": "MZ", + "geonameId": 1040397, + "latitudeCity": -18.333332, + "longitudeCity": 35.933334, + "nameCity": "Marromeu", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-3", + "cityId": 6480, + "codeIataCity": "RRN", + "codeIso2Country": "BR", + "geonameId": 6317872, + "latitudeCity": -11.0, + "longitudeCity": -59.0, + "nameCity": "Serra Norte", + "timezone": "America/Belem" + }, + { + "GMT": "1", + "cityId": 6481, + "codeIataCity": "RRO", + "codeIso2Country": "IT", + "geonameId": 3166350, + "latitudeCity": 40.61667, + "longitudeCity": 14.366667, + "nameCity": "Naples", + "timezone": "Europe/Rome" + }, + { + "GMT": "-10", + "cityId": 6482, + "codeIataCity": "RRR", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -16.044859, + "longitudeCity": -142.47556, + "nameCity": "Raroia", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "1", + "cityId": 6483, + "codeIataCity": "RRS", + "codeIso2Country": "NO", + "geonameId": 3141332, + "latitudeCity": 62.579166, + "longitudeCity": 11.345556, + "nameCity": "Roros", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "cityId": 6484, + "codeIataCity": "RRT", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 48.9, + "longitudeCity": -95.3, + "nameCity": "Warroad", + "timezone": "America/Chicago" + }, + { + "GMT": "9.30", + "cityId": 6485, + "codeIataCity": "RRV", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -16.75, + "longitudeCity": 136.96666, + "nameCity": "Robinson River", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-3", + "cityId": 6486, + "codeIataCity": "RSA", + "codeIso2Country": "AR", + "geonameId": 3835994, + "latitudeCity": -36.566666, + "longitudeCity": -64.26667, + "nameCity": "Santa Rosa", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "10", + "cityId": 6487, + "codeIataCity": "RSB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -25.833332, + "longitudeCity": 139.63333, + "nameCity": "Roseberth", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 6488, + "codeIataCity": "RSD", + "codeIso2Country": "BS", + "geonameId": 3571592, + "latitudeCity": 24.891666, + "longitudeCity": -76.178055, + "nameCity": "Rock Sound", + "timezone": "America/Nassau" + }, + { + "GMT": "-3", + "cityId": 6489, + "codeIataCity": "RSG", + "codeIso2Country": "BR", + "geonameId": 3395503, + "latitudeCity": -5.95, + "longitudeCity": -49.65, + "nameCity": "Serra Pelada", + "timezone": "America/Belem" + }, + { + "GMT": "-9", + "cityId": 6490, + "codeIataCity": "RSH", + "codeIso2Country": "US", + "geonameId": 5873095, + "latitudeCity": 61.783054, + "longitudeCity": -161.31917, + "nameCity": "Russian Mission", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 6491, + "codeIataCity": "RSI", + "codeIso2Country": "PA", + "geonameId": 3703443, + "latitudeCity": 8.966667, + "longitudeCity": -80.333336, + "nameCity": "Rio Sidra", + "timezone": "America/Panama" + }, + { + "GMT": "-8", + "cityId": 6492, + "codeIataCity": "RSJ", + "codeIso2Country": "US", + "geonameId": 5808802, + "latitudeCity": 48.63333, + "longitudeCity": -122.85, + "nameCity": "Rosario", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9", + "cityId": 6493, + "codeIataCity": "RSK", + "codeIso2Country": "ID", + "geonameId": 1636308, + "latitudeCity": -1.5, + "longitudeCity": 134.18333, + "nameCity": "Ransiki", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-6", + "cityId": 6494, + "codeIataCity": "RSL", + "codeIso2Country": "US", + "geonameId": 4272782, + "latitudeCity": 38.88333, + "longitudeCity": -98.85, + "nameCity": "Russell", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 6495, + "codeIataCity": "RSN", + "codeIso2Country": "US", + "geonameId": 4339348, + "latitudeCity": 32.516666, + "longitudeCity": -92.63333, + "nameCity": "Ruston", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 6496, + "codeIataCity": "RSP", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 58.166668, + "longitudeCity": -154.83333, + "nameCity": "Raspberry Strait", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "cityId": 6497, + "codeIataCity": "RSS", + "codeIso2Country": "SD", + "geonameId": 0, + "latitudeCity": 11.783333, + "longitudeCity": 34.4, + "nameCity": "Roseires", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "-6", + "cityId": 6498, + "codeIataCity": "RST", + "codeIso2Country": "US", + "geonameId": 5043473, + "latitudeCity": 44.021631, + "longitudeCity": -92.469899, + "nameCity": "Rochester", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "cityId": 6499, + "codeIataCity": "RSU", + "codeIso2Country": "KR", + "geonameId": 6575528, + "latitudeCity": 34.8419, + "longitudeCity": 127.61267, + "nameCity": "Yeosu", + "timezone": "Asia/Seoul" + }, + { + "GMT": "-5", + "cityId": 6500, + "codeIataCity": "RSX", + "codeIso2Country": "US", + "geonameId": 5134565, + "latitudeCity": 44.984722, + "longitudeCity": -73.35222, + "nameCity": "Rouses Point", + "timezone": "America/New_York" + }, + { + "GMT": "12", + "cityId": 6501, + "codeIataCity": "RTA", + "codeIso2Country": "FJ", + "geonameId": 0, + "latitudeCity": -12.4825, + "longitudeCity": 177.0711, + "nameCity": "Rotuma Island", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-6", + "cityId": 6502, + "codeIataCity": "RTB", + "codeIso2Country": "HN", + "geonameId": 3609696, + "latitudeCity": 16.318209, + "longitudeCity": -86.52722, + "nameCity": "Roatan", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "5.30", + "cityId": 6503, + "codeIataCity": "RTC", + "codeIso2Country": "IN", + "geonameId": 1273512, + "latitudeCity": 17.0, + "longitudeCity": 73.316666, + "nameCity": "Ratnagiri", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "cityId": 6504, + "codeIataCity": "RTD", + "codeIso2Country": "US", + "geonameId": 4170559, + "latitudeCity": 26.866667, + "longitudeCity": -82.26667, + "nameCity": "Rotunda", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 6505, + "codeIataCity": "RTE", + "codeIso2Country": "US", + "geonameId": 5554428, + "latitudeCity": 55.7, + "longitudeCity": -131.63333, + "nameCity": "Marguerite Bay", + "timezone": "America/Sitka" + }, + { + "GMT": "8", + "cityId": 6506, + "codeIataCity": "RTG", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -8.6, + "longitudeCity": 120.45, + "nameCity": "Ruteng", + "timezone": "Asia/Makassar" + }, + { + "GMT": "8", + "cityId": 6507, + "codeIataCity": "RTI", + "codeIso2Country": "ID", + "geonameId": 2057087, + "latitudeCity": -10.883333, + "longitudeCity": 122.96667, + "nameCity": "Roti", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-6", + "cityId": 6508, + "codeIataCity": "RTL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 47.95, + "longitudeCity": -116.86667, + "nameCity": "Spirit Lake", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 6509, + "codeIataCity": "RTM", + "codeIso2Country": "NL", + "geonameId": 2747891, + "latitudeCity": 51.924216, + "longitudeCity": 4.481776, + "nameCity": "Rotterdam", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "-7", + "cityId": 6510, + "codeIataCity": "RTN", + "codeIso2Country": "US", + "geonameId": 5486795, + "latitudeCity": 36.74139, + "longitudeCity": -104.501114, + "nameCity": "Raton", + "timezone": "America/Denver" + }, + { + "GMT": "10", + "cityId": 6511, + "codeIataCity": "RTP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -15.6, + "longitudeCity": 141.83333, + "nameCity": "Rutland Plains", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "cityId": 6512, + "codeIataCity": "RTS", + "codeIso2Country": "AU", + "geonameId": 8310772, + "latitudeCity": -32.006943, + "longitudeCity": 115.53667, + "nameCity": "Rottnest Island", + "timezone": "Australia/Perth" + }, + { + "GMT": "3", + "cityId": 6513, + "codeIataCity": "RTW", + "codeIso2Country": "RU", + "geonameId": 498677, + "latitudeCity": 51.566666, + "longitudeCity": 46.066666, + "nameCity": "Saratov", + "timezone": "Europe/Volgograd" + }, + { + "GMT": "9.30", + "cityId": 6514, + "codeIataCity": "RTY", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -28.25, + "longitudeCity": 139.0, + "nameCity": "Merty", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "3", + "cityId": 6515, + "codeIataCity": "RUA", + "codeIso2Country": "UG", + "geonameId": 235039, + "latitudeCity": 3.033333, + "longitudeCity": 30.933332, + "nameCity": "Arua", + "timezone": "Africa/Kampala" + }, + { + "GMT": "3.30", + "cityId": 6516, + "codeIataCity": "RUD", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 36.426792, + "longitudeCity": 55.094624, + "nameCity": "Shahrud", + "timezone": "Asia/Tehran" + }, + { + "GMT": "2", + "cityId": 6517, + "codeIataCity": "RUE", + "codeIso2Country": "CD", + "geonameId": 217562, + "latitudeCity": 35.260094, + "longitudeCity": -93.0973, + "nameCity": "Butembo", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "9", + "cityId": 6518, + "codeIataCity": "RUF", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.633333, + "longitudeCity": 140.93333, + "nameCity": "Yuruf", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "cityId": 6519, + "codeIataCity": "RUG", + "codeIso2Country": "CN", + "geonameId": 1790923, + "latitudeCity": 32.388332, + "longitudeCity": 120.555275, + "nameCity": "Rugao", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "cityId": 6520, + "codeIataCity": "RUH", + "codeIso2Country": "SA", + "geonameId": 108410, + "latitudeCity": 24.95929, + "longitudeCity": 46.702877, + "nameCity": "Riyadh", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-7", + "cityId": 6521, + "codeIataCity": "RUI", + "codeIso2Country": "US", + "geonameId": 5488598, + "latitudeCity": 33.360832, + "longitudeCity": -105.6625, + "nameCity": "Ruidoso", + "timezone": "America/Denver" + }, + { + "GMT": "5.45", + "cityId": 6522, + "codeIataCity": "RUK", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 28.625, + "longitudeCity": 82.46667, + "nameCity": "Rukumkot", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "5.45", + "cityId": 6523, + "codeIataCity": "RUM", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 27.316668, + "longitudeCity": 86.53333, + "nameCity": "Rumjatar", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "4", + "cityId": 6524, + "codeIataCity": "RUN", + "codeIso2Country": "RE", + "geonameId": 935264, + "latitudeCity": -20.892, + "longitudeCity": 55.511875, + "nameCity": "St Denis de la Reunion", + "timezone": "Indian/Reunion" + }, + { + "GMT": "5.30", + "cityId": 6525, + "codeIataCity": "RUP", + "codeIso2Country": "IN", + "geonameId": 1271965, + "latitudeCity": 26.15, + "longitudeCity": 89.916664, + "nameCity": "Rupsi", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-10", + "cityId": 6526, + "codeIataCity": "RUR", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -22.433332, + "longitudeCity": -151.33333, + "nameCity": "Rurutu", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "11", + "cityId": 6527, + "codeIataCity": "RUS", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -8.5, + "longitudeCity": 161.25, + "nameCity": "Marau Sound", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-5", + "cityId": 6528, + "codeIataCity": "RUT", + "codeIso2Country": "US", + "geonameId": 5240509, + "latitudeCity": 43.529446, + "longitudeCity": -72.94833, + "nameCity": "Rutland", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 6529, + "codeIataCity": "RUU", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.183333, + "longitudeCity": 144.15, + "nameCity": "Ruti", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 6530, + "codeIataCity": "RUV", + "codeIso2Country": "GT", + "geonameId": 0, + "latitudeCity": 15.833333, + "longitudeCity": -90.333336, + "nameCity": "Rubelsanto", + "timezone": "America/Guatemala" + }, + { + "GMT": "-6", + "cityId": 6531, + "codeIataCity": "RUY", + "codeIso2Country": "HN", + "geonameId": 3609586, + "latitudeCity": 15.0, + "longitudeCity": -88.0, + "nameCity": "Copan", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "3", + "cityId": 6532, + "codeIataCity": "RVA", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -22.801945, + "longitudeCity": 47.819443, + "nameCity": "Farafangana", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "0", + "cityId": 6533, + "codeIataCity": "RVC", + "codeIso2Country": "LR", + "geonameId": 2274288, + "latitudeCity": 5.466667, + "longitudeCity": -9.583333, + "nameCity": "Rivercess", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-3", + "cityId": 6534, + "codeIataCity": "RVD", + "codeIso2Country": "BR", + "geonameId": 3451055, + "latitudeCity": -17.716667, + "longitudeCity": -50.933334, + "nameCity": "Rio Verde", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "cityId": 6535, + "codeIataCity": "RVE", + "codeIso2Country": "CO", + "geonameId": 3668257, + "latitudeCity": 6.916667, + "longitudeCity": -71.9, + "nameCity": "Saravena", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 6536, + "codeIataCity": "RVK", + "codeIso2Country": "NO", + "geonameId": 3136947, + "latitudeCity": 64.88333, + "longitudeCity": 11.233333, + "nameCity": "Roervik", + "timezone": "Europe/Oslo" + }, + { + "GMT": "2", + "cityId": 6537, + "codeIataCity": "RVN", + "codeIso2Country": "FI", + "geonameId": 638936, + "latitudeCity": 66.559044, + "longitudeCity": 25.829609, + "nameCity": "Rovaniemi", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "2", + "cityId": 6538, + "codeIataCity": "RVO", + "codeIso2Country": "ZA", + "geonameId": 962841, + "latitudeCity": -27.6, + "longitudeCity": 24.133333, + "nameCity": "Reivilo", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-7", + "cityId": 6539, + "codeIataCity": "RVR", + "codeIso2Country": "US", + "geonameId": 5543307, + "latitudeCity": 38.966667, + "longitudeCity": -110.25, + "nameCity": "Green River", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "cityId": 6540, + "codeIataCity": "RVT", + "codeIso2Country": "AU", + "geonameId": 2062660, + "latitudeCity": -33.785557, + "longitudeCity": 120.201385, + "nameCity": "Ravensthorpe", + "timezone": "Australia/Perth" + }, + { + "GMT": "-10", + "cityId": 6541, + "codeIataCity": "RVV", + "codeIso2Country": "PF", + "geonameId": 4033742, + "latitudeCity": -25.883333, + "longitudeCity": -147.65, + "nameCity": "Rairua", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-3", + "cityId": 6542, + "codeIataCity": "RVY", + "codeIso2Country": "UY", + "geonameId": 3441659, + "latitudeCity": -30.970833, + "longitudeCity": -55.479168, + "nameCity": "Rivera", + "timezone": "America/Montevideo" + }, + { + "GMT": "-9", + "cityId": 6543, + "codeIataCity": "RWB", + "codeIso2Country": "US", + "geonameId": 5556829, + "latitudeCity": 56.75, + "longitudeCity": -134.13333, + "nameCity": "Rowan Bay", + "timezone": "America/Sitka" + }, + { + "GMT": "-6", + "cityId": 6544, + "codeIataCity": "RWF", + "codeIso2Country": "US", + "geonameId": 5042832, + "latitudeCity": 44.5, + "longitudeCity": -95.1, + "nameCity": "Redwood Falls", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 6545, + "codeIataCity": "RWI", + "codeIso2Country": "US", + "geonameId": 4487042, + "latitudeCity": 35.854443, + "longitudeCity": -77.89056, + "nameCity": "Rocky Mount", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 6546, + "codeIataCity": "RWL", + "codeIso2Country": "US", + "geonameId": 5836068, + "latitudeCity": 41.804443, + "longitudeCity": -107.201385, + "nameCity": "Rawlins", + "timezone": "America/Denver" + }, + { + "GMT": "2", + "cityId": 6547, + "codeIataCity": "RWN", + "codeIso2Country": "UA", + "geonameId": 695594, + "latitudeCity": 50.6, + "longitudeCity": 26.15, + "nameCity": "Rovno", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-3", + "cityId": 6548, + "codeIataCity": "RWS", + "codeIso2Country": "BR", + "geonameId": 3467865, + "latitudeCity": -22.800556, + "longitudeCity": -47.192223, + "nameCity": "Sumare", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "3", + "cityId": 6549, + "codeIataCity": "RXA", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 15.433333, + "longitudeCity": 44.216667, + "nameCity": "Raudha", + "timezone": "Asia/Aden" + }, + { + "GMT": "-7", + "cityId": 6550, + "codeIataCity": "RXE", + "codeIso2Country": "US", + "geonameId": 5605242, + "latitudeCity": 43.83911, + "longitudeCity": -111.85106, + "nameCity": "Rexburg", + "timezone": "America/Boise" + }, + { + "GMT": "8", + "cityId": 6551, + "codeIataCity": "RXS", + "codeIso2Country": "PH", + "geonameId": 1691444, + "latitudeCity": 11.60066, + "longitudeCity": 122.74882, + "nameCity": "Roxas City", + "timezone": "Asia/Manila" + }, + { + "GMT": "3", + "cityId": 6552, + "codeIataCity": "RYB", + "codeIso2Country": "RU", + "geonameId": 500004, + "latitudeCity": 58.13333, + "longitudeCity": 38.86667, + "nameCity": "Rybinsk", + "timezone": "Europe/Moscow" + }, + { + "GMT": "5", + "cityId": 6553, + "codeIataCity": "RYK", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 28.39178, + "longitudeCity": 70.28662, + "nameCity": "Rahim Yar Khan", + "timezone": "Asia/Karachi" + }, + { + "GMT": "1", + "cityId": 6554, + "codeIataCity": "RYN", + "codeIso2Country": "FR", + "geonameId": 2970317, + "latitudeCity": 45.61667, + "longitudeCity": -1.016667, + "nameCity": "Royan", + "timezone": "Europe/Paris" + }, + { + "GMT": "-3", + "cityId": 6555, + "codeIataCity": "RYO", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -51.583332, + "longitudeCity": -72.21667, + "nameCity": "Rio Turbio", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "-3", + "cityId": 6556, + "codeIataCity": "RZA", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -50.0, + "longitudeCity": -68.53333, + "nameCity": "Santa Cruz", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "1", + "cityId": 6557, + "codeIataCity": "RZE", + "codeIso2Country": "PL", + "geonameId": 759734, + "latitudeCity": 50.11525, + "longitudeCity": 22.03133, + "nameCity": "Rzeszow", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "3", + "cityId": 6558, + "codeIataCity": "RZN", + "codeIso2Country": "RU", + "geonameId": 500096, + "latitudeCity": 54.63333, + "longitudeCity": 39.583332, + "nameCity": "Ryazan", + "timezone": "Europe/Moscow" + }, + { + "GMT": "8", + "cityId": 6559, + "codeIataCity": "RZP", + "codeIso2Country": "PH", + "geonameId": 1711005, + "latitudeCity": 10.7625, + "longitudeCity": 119.50667, + "nameCity": "Taytay Sandoval", + "timezone": "Asia/Manila" + }, + { + "GMT": "3.30", + "cityId": 6560, + "codeIataCity": "RZR", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 36.904625, + "longitudeCity": 50.68244, + "nameCity": "Ramsar", + "timezone": "Asia/Tehran" + }, + { + "GMT": "5", + "cityId": 6561, + "codeIataCity": "RZS", + "codeIso2Country": "PK", + "geonameId": 1413746, + "latitudeCity": 26.966667, + "longitudeCity": 68.86667, + "nameCity": "Sawan", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-5", + "cityId": 6562, + "codeIataCity": "RZZ", + "codeIso2Country": "US", + "geonameId": 4488232, + "latitudeCity": 36.466667, + "longitudeCity": -77.666664, + "nameCity": "Roanoke Rapids", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 6563, + "codeIataCity": "SAA", + "codeIso2Country": "US", + "geonameId": 5837593, + "latitudeCity": 41.445, + "longitudeCity": -106.81, + "nameCity": "Saratoga", + "timezone": "America/Denver" + }, + { + "GMT": "-4", + "cityId": 6564, + "codeIataCity": "SAB", + "codeIso2Country": "BQ", + "geonameId": 3513083, + "latitudeCity": 17.65, + "longitudeCity": -63.216667, + "nameCity": "Saba Island", + "timezone": "America/Kralendijk" + }, + { + "GMT": "-8", + "cityId": 6565, + "codeIataCity": "SAC", + "codeIso2Country": "US", + "geonameId": 5389489, + "latitudeCity": 38.575278, + "longitudeCity": -121.486111, + "nameCity": "Sacramento", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-7", + "cityId": 6566, + "codeIataCity": "SAD", + "codeIso2Country": "US", + "geonameId": 5317170, + "latitudeCity": 32.833332, + "longitudeCity": -109.71667, + "nameCity": "Safford", + "timezone": "America/Phoenix" + }, + { + "GMT": "8", + "cityId": 6567, + "codeIataCity": "SAE", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -8.366667, + "longitudeCity": 118.333336, + "nameCity": "Sangir", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-9", + "cityId": 6568, + "codeIataCity": "SAG", + "codeIso2Country": "US", + "geonameId": 5873167, + "latitudeCity": 69.36667, + "longitudeCity": -148.7, + "nameCity": "Sagwon", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "cityId": 6569, + "codeIataCity": "SAH", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 15.473598, + "longitudeCity": 44.22511, + "nameCity": "Sanaa", + "timezone": "Asia/Aden" + }, + { + "GMT": "0", + "cityId": 6570, + "codeIataCity": "SAK", + "codeIso2Country": "IS", + "geonameId": 2633274, + "latitudeCity": 65.75, + "longitudeCity": -19.65, + "nameCity": "Saudarkrokur", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-6", + "cityId": 6571, + "codeIataCity": "SAL", + "codeIso2Country": "SV", + "geonameId": 3583361, + "latitudeCity": 13.445126, + "longitudeCity": -89.05723, + "nameCity": "San Salvador", + "timezone": "America/El_Salvador" + }, + { + "GMT": "10", + "cityId": 6572, + "codeIataCity": "SAM", + "codeIso2Country": "PG", + "geonameId": 2087362, + "latitudeCity": -9.65, + "longitudeCity": 150.80833, + "nameCity": "Salamo", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "cityId": 6573, + "codeIataCity": "SAN", + "codeIso2Country": "US", + "geonameId": 5391811, + "latitudeCity": 32.715329, + "longitudeCity": -117.157255, + "nameCity": "San Diego", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "cityId": 6574, + "codeIataCity": "SAO", + "codeIso2Country": "BR", + "geonameId": 3448439, + "latitudeCity": -23.63, + "longitudeCity": -46.66, + "nameCity": "Sao Paulo", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-6", + "cityId": 6575, + "codeIataCity": "SAP", + "codeIso2Country": "HN", + "geonameId": 3601782, + "latitudeCity": 15.456245, + "longitudeCity": -87.927795, + "nameCity": "San Pedro Sula", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-5", + "cityId": 6576, + "codeIataCity": "SAQ", + "codeIso2Country": "BS", + "geonameId": 3571523, + "latitudeCity": 25.05, + "longitudeCity": -78.05, + "nameCity": "San Andros", + "timezone": "America/Nassau" + }, + { + "GMT": "-6", + "cityId": 6577, + "codeIataCity": "SAR", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.13333, + "longitudeCity": -89.7, + "nameCity": "Sparta", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 6578, + "codeIataCity": "SAS", + "codeIso2Country": "US", + "geonameId": 5380668, + "latitudeCity": 33.316666, + "longitudeCity": -115.98333, + "nameCity": "Salton City", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 6579, + "codeIataCity": "SAT", + "codeIso2Country": "US", + "geonameId": 4726206, + "latitudeCity": 29.424122, + "longitudeCity": -98.493628, + "nameCity": "San Antonio", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 6580, + "codeIataCity": "SAU", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -10.483333, + "longitudeCity": 121.9, + "nameCity": "Sawu", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-5", + "cityId": 6581, + "codeIataCity": "SAV", + "codeIso2Country": "US", + "geonameId": 4221552, + "latitudeCity": 32.083541, + "longitudeCity": -81.099834, + "nameCity": "Savannah", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 6582, + "codeIataCity": "SAX", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 8.033333, + "longitudeCity": -78.083336, + "nameCity": "Sambu", + "timezone": "America/Panama" + }, + { + "GMT": "1", + "cityId": 6583, + "codeIataCity": "SAY", + "codeIso2Country": "IT", + "geonameId": 3166548, + "latitudeCity": 43.25, + "longitudeCity": 11.25, + "nameCity": "Siena", + "timezone": "Europe/Rome" + }, + { + "GMT": "0", + "cityId": 6584, + "codeIataCity": "SAZ", + "codeIso2Country": "LR", + "geonameId": 0, + "latitudeCity": 4.666667, + "longitudeCity": -8.433333, + "nameCity": "Sasstown", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-8", + "cityId": 6585, + "codeIataCity": "SBA", + "codeIso2Country": "US", + "geonameId": 5392952, + "latitudeCity": 34.420831, + "longitudeCity": -119.69819, + "nameCity": "Santa Barbara", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "cityId": 6586, + "codeIataCity": "SBB", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 7.783333, + "longitudeCity": -71.166664, + "nameCity": "Santa Barbara de Barinas", + "timezone": "America/Caracas" + }, + { + "GMT": "10", + "cityId": 6587, + "codeIataCity": "SBC", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.316667, + "longitudeCity": 141.75, + "nameCity": "Selbang", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 6588, + "codeIataCity": "SBE", + "codeIso2Country": "PG", + "geonameId": 2086266, + "latitudeCity": -6.1, + "longitudeCity": 142.28334, + "nameCity": "Suabi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "4.30", + "cityId": 6589, + "codeIataCity": "SBF", + "codeIso2Country": "AF", + "geonameId": 1127289, + "latitudeCity": 33.61667, + "longitudeCity": 68.53333, + "nameCity": "Sardeh Band", + "timezone": "Asia/Kabul" + }, + { + "GMT": "7", + "cityId": 6590, + "codeIataCity": "SBG", + "codeIso2Country": "ID", + "geonameId": 1215502, + "latitudeCity": 5.55, + "longitudeCity": 95.333336, + "nameCity": "Sabang", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-4", + "cityId": 6591, + "codeIataCity": "SBH", + "codeIso2Country": "BL", + "geonameId": 0, + "latitudeCity": 17.9, + "longitudeCity": -62.85, + "nameCity": "Gustavia", + "timezone": "America/St_Barthelemy" + }, + { + "GMT": "0", + "cityId": 6592, + "codeIataCity": "SBI", + "codeIso2Country": "GN", + "geonameId": 0, + "latitudeCity": 12.483333, + "longitudeCity": -13.3, + "nameCity": "Koundara", + "timezone": "Africa/Conakry" + }, + { + "GMT": "-3", + "cityId": 6593, + "codeIataCity": "SBJ", + "codeIso2Country": "BR", + "geonameId": 3458498, + "latitudeCity": -18.583332, + "longitudeCity": -39.733334, + "nameCity": "Sao Mateus", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "cityId": 6594, + "codeIataCity": "SBK", + "codeIso2Country": "FR", + "geonameId": 2981280, + "latitudeCity": 48.513058, + "longitudeCity": -2.808889, + "nameCity": "Tremuson", + "timezone": "Europe/Paris" + }, + { + "GMT": "-4", + "cityId": 6595, + "codeIataCity": "SBL", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -13.716667, + "longitudeCity": -65.45, + "nameCity": "Santa Ana", + "timezone": "America/La_Paz" + }, + { + "GMT": "-6", + "cityId": 6596, + "codeIataCity": "SBM", + "codeIso2Country": "US", + "geonameId": 5263045, + "latitudeCity": 43.771667, + "longitudeCity": -87.85222, + "nameCity": "Sheboygan", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 6597, + "codeIataCity": "SBN", + "codeIso2Country": "US", + "geonameId": 4926563, + "latitudeCity": 41.700554, + "longitudeCity": -86.31335, + "nameCity": "South Bend", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-7", + "cityId": 6598, + "codeIataCity": "SBO", + "codeIso2Country": "US", + "geonameId": 5542323, + "latitudeCity": 39.029167, + "longitudeCity": -111.8375, + "nameCity": "Salina", + "timezone": "America/Denver" + }, + { + "GMT": "5", + "cityId": 6599, + "codeIataCity": "SBQ", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 29.55, + "longitudeCity": 67.88333, + "nameCity": "Sibi", + "timezone": "Asia/Karachi" + }, + { + "GMT": "10", + "cityId": 6600, + "codeIataCity": "SBR", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -9.383333, + "longitudeCity": 142.63333, + "nameCity": "Saibai Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-7", + "cityId": 6601, + "codeIataCity": "SBS", + "codeIso2Country": "US", + "geonameId": 5582371, + "latitudeCity": 40.516666, + "longitudeCity": -106.8625, + "nameCity": "Steamboat Springs", + "timezone": "America/Denver" + }, + { + "GMT": "-8", + "cityId": 6602, + "codeIataCity": "SBT", + "codeIso2Country": "US", + "geonameId": 5391710, + "latitudeCity": 34.108345, + "longitudeCity": -117.289765, + "nameCity": "San Bernardino", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "cityId": 6603, + "codeIataCity": "SBU", + "codeIso2Country": "ZA", + "geonameId": 0, + "latitudeCity": -29.68861, + "longitudeCity": 17.939444, + "nameCity": "Springbok", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "10", + "cityId": 6604, + "codeIataCity": "SBV", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.333333, + "longitudeCity": 155.01666, + "nameCity": "Sabah", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 6605, + "codeIataCity": "SBW", + "codeIso2Country": "MY", + "geonameId": 1735902, + "latitudeCity": 2.254997, + "longitudeCity": 111.98657, + "nameCity": "Sibu", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-7", + "cityId": 6606, + "codeIataCity": "SBX", + "codeIso2Country": "US", + "geonameId": 5642247, + "latitudeCity": 48.5, + "longitudeCity": -111.85, + "nameCity": "Shelby", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "cityId": 6607, + "codeIataCity": "SBY", + "codeIso2Country": "US", + "geonameId": 4368711, + "latitudeCity": 38.34312, + "longitudeCity": -75.517265, + "nameCity": "Salisbury-Ocean City", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 6608, + "codeIataCity": "SBZ", + "codeIso2Country": "RO", + "geonameId": 667268, + "latitudeCity": 45.789757, + "longitudeCity": 24.093529, + "nameCity": "Sibiu", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "-5", + "cityId": 6609, + "codeIataCity": "SCA", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 10.6, + "longitudeCity": -75.28333, + "nameCity": "Santa Catalina", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 6610, + "codeIataCity": "SCB", + "codeIso2Country": "US", + "geonameId": 5074472, + "latitudeCity": 41.65, + "longitudeCity": -96.666664, + "nameCity": "Scribner", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 6611, + "codeIataCity": "SCC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 70.203636, + "longitudeCity": -148.46011, + "nameCity": "Prudhoe Bay/Deadhorse", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 6612, + "codeIataCity": "SCD", + "codeIso2Country": "HN", + "geonameId": 3600949, + "latitudeCity": 14.916111, + "longitudeCity": -87.26667, + "nameCity": "Sulaco", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-5", + "cityId": 6613, + "codeIataCity": "SCE", + "codeIso2Country": "US", + "geonameId": 5213681, + "latitudeCity": 40.85372, + "longitudeCity": -77.84823, + "nameCity": "State College", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 6614, + "codeIataCity": "SCG", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -38.016666, + "longitudeCity": 142.41667, + "nameCity": "Spring Creek", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 6615, + "codeIataCity": "SCH", + "codeIso2Country": "US", + "geonameId": 5106834, + "latitudeCity": 42.814243, + "longitudeCity": -73.939569, + "nameCity": "Schenectady", + "timezone": "America/New_York" + }, + { + "GMT": "-4", + "cityId": 6616, + "codeIataCity": "SCI", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 7.766667, + "longitudeCity": -72.23333, + "nameCity": "San Cristobal", + "timezone": "America/Caracas" + }, + { + "GMT": "-9", + "cityId": 6617, + "codeIataCity": "SCJ", + "codeIso2Country": "US", + "geonameId": 5554428, + "latitudeCity": 55.416668, + "longitudeCity": -132.33333, + "nameCity": "Smith Cove", + "timezone": "America/Sitka" + }, + { + "GMT": "-4", + "cityId": 6618, + "codeIataCity": "SCL", + "codeIso2Country": "CL", + "geonameId": 3871336, + "latitudeCity": -33.416667, + "longitudeCity": -70.55, + "nameCity": "Santiago", + "timezone": "America/Santiago" + }, + { + "GMT": "-9", + "cityId": 6619, + "codeIataCity": "SCM", + "codeIso2Country": "US", + "geonameId": 5873474, + "latitudeCity": 61.84639, + "longitudeCity": -165.59389, + "nameCity": "Scammon Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 6620, + "codeIataCity": "SCN", + "codeIso2Country": "DE", + "geonameId": 2842647, + "latitudeCity": 49.234851, + "longitudeCity": 6.994402, + "nameCity": "Saarbruecken", + "timezone": "Europe/Berlin" + }, + { + "GMT": "5", + "cityId": 6621, + "codeIataCity": "SCO", + "codeIso2Country": "KZ", + "geonameId": 610612, + "latitudeCity": 43.86667, + "longitudeCity": 51.1, + "nameCity": "Aktau", + "timezone": "Asia/Aqtau" + }, + { + "GMT": "1", + "cityId": 6622, + "codeIataCity": "SCP", + "codeIso2Country": "FR", + "geonameId": 2992783, + "latitudeCity": 45.416668, + "longitudeCity": 0.616667, + "nameCity": "St Crepin", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "cityId": 6623, + "codeIataCity": "SCQ", + "codeIso2Country": "ES", + "geonameId": 3109642, + "latitudeCity": 42.897316, + "longitudeCity": -8.420327, + "nameCity": "Santiago De Compostela", + "timezone": "Europe/Madrid" + }, + { + "GMT": "3", + "cityId": 6624, + "codeIataCity": "SCT", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 12.627546, + "longitudeCity": 53.909245, + "nameCity": "Socotra", + "timezone": "Asia/Aden" + }, + { + "GMT": "-5", + "cityId": 6625, + "codeIataCity": "SCU", + "codeIso2Country": "CU", + "geonameId": 3564653, + "latitudeCity": 19.969168, + "longitudeCity": -75.83583, + "nameCity": "Santiago", + "timezone": "America/Havana" + }, + { + "GMT": "2", + "cityId": 6626, + "codeIataCity": "SCV", + "codeIso2Country": "RO", + "geonameId": 665850, + "latitudeCity": 47.689445, + "longitudeCity": 26.356112, + "nameCity": "Suceava", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "3", + "cityId": 6627, + "codeIataCity": "SCW", + "codeIso2Country": "RU", + "geonameId": 485239, + "latitudeCity": 61.666668, + "longitudeCity": 50.766666, + "nameCity": "Syktyvkar", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "cityId": 6628, + "codeIataCity": "SCX", + "codeIso2Country": "MX", + "geonameId": 3520064, + "latitudeCity": 16.166668, + "longitudeCity": -95.2, + "nameCity": "Salina Cruz", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-6", + "cityId": 6629, + "codeIataCity": "SCY", + "codeIso2Country": "EC", + "geonameId": 3652764, + "latitudeCity": -0.833333, + "longitudeCity": -89.433334, + "nameCity": "Puerto Baquerizo Moreno", + "timezone": "Pacific/Galapagos" + }, + { + "GMT": "11", + "cityId": 6630, + "codeIataCity": "SCZ", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -11.616667, + "longitudeCity": 166.85, + "nameCity": "Santa Cruz Island", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "2", + "cityId": 6631, + "codeIataCity": "SDB", + "codeIso2Country": "ZA", + "geonameId": 3361934, + "latitudeCity": -33.066666, + "longitudeCity": 18.0, + "nameCity": "Saldanha Bay", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-4", + "cityId": 6632, + "codeIataCity": "SDC", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 3.333333, + "longitudeCity": -58.166668, + "nameCity": "Sandcreek", + "timezone": "America/Guyana" + }, + { + "GMT": "1", + "cityId": 6633, + "codeIataCity": "SDD", + "codeIso2Country": "AO", + "geonameId": 3347762, + "latitudeCity": -14.924444, + "longitudeCity": 13.576667, + "nameCity": "Lubango", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-3", + "cityId": 6634, + "codeIataCity": "SDE", + "codeIso2Country": "AR", + "geonameId": 3834502, + "latitudeCity": -27.765278, + "longitudeCity": -64.32222, + "nameCity": "Santiago Del Estero", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-5", + "cityId": 6635, + "codeIataCity": "SDF", + "codeIso2Country": "US", + "geonameId": 4299276, + "latitudeCity": 38.252665, + "longitudeCity": -85.758456, + "nameCity": "Louisville", + "timezone": "America/Kentucky/Louisville" + }, + { + "GMT": "3.30", + "cityId": 6636, + "codeIataCity": "SDG", + "codeIso2Country": "IR", + "geonameId": 117574, + "latitudeCity": 35.251472, + "longitudeCity": 47.013767, + "nameCity": "Sanandaj", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-6", + "cityId": 6637, + "codeIataCity": "SDH", + "codeIso2Country": "HN", + "geonameId": 3609586, + "latitudeCity": 14.777222, + "longitudeCity": -88.77639, + "nameCity": "Santa Rosa Copan", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "10", + "cityId": 6638, + "codeIataCity": "SDI", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.55, + "longitudeCity": 146.5, + "nameCity": "Saidor", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "cityId": 6639, + "codeIataCity": "SDJ", + "codeIso2Country": "JP", + "geonameId": 1852736, + "latitudeCity": 38.135555, + "longitudeCity": 140.92389, + "nameCity": "Sendai", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "8", + "cityId": 6640, + "codeIataCity": "SDK", + "codeIso2Country": "MY", + "geonameId": 1734052, + "latitudeCity": 5.896877, + "longitudeCity": 118.06184, + "nameCity": "Sandakan", + "timezone": "Asia/Kuching" + }, + { + "GMT": "1", + "cityId": 6641, + "codeIataCity": "SDL", + "codeIso2Country": "SE", + "geonameId": 2707684, + "latitudeCity": 62.390836, + "longitudeCity": 17.306916, + "nameCity": "Sundsvall", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 6642, + "codeIataCity": "SDN", + "codeIso2Country": "NO", + "geonameId": 3140431, + "latitudeCity": 61.766666, + "longitudeCity": 6.216667, + "nameCity": "Sandane", + "timezone": "Europe/Oslo" + }, + { + "GMT": "9", + "cityId": 6643, + "codeIataCity": "SDO", + "codeIso2Country": "JP", + "geonameId": 0, + "latitudeCity": 38.13333, + "longitudeCity": 138.41667, + "nameCity": "Ryotsu Sado Island", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-9", + "cityId": 6644, + "codeIataCity": "SDP", + "codeIso2Country": "US", + "geonameId": 5873349, + "latitudeCity": 55.316666, + "longitudeCity": -160.51389, + "nameCity": "Sand Point", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "cityId": 6645, + "codeIataCity": "SDQ", + "codeIso2Country": "DO", + "geonameId": 3492908, + "latitudeCity": 18.5, + "longitudeCity": -69.983333, + "nameCity": "Santo Domingo", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "1", + "cityId": 6646, + "codeIataCity": "SDR", + "codeIso2Country": "ES", + "geonameId": 3109718, + "latitudeCity": 43.46096, + "longitudeCity": -3.807934, + "nameCity": "Santander", + "timezone": "Europe/Madrid" + }, + { + "GMT": "9", + "cityId": 6647, + "codeIataCity": "SDS", + "codeIso2Country": "JP", + "geonameId": 6825492, + "latitudeCity": 38.0, + "longitudeCity": 138.41667, + "nameCity": "Sado Shima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "5", + "cityId": 6648, + "codeIataCity": "SDT", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 34.75, + "longitudeCity": 72.35, + "nameCity": "Saidu Sharif", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-7", + "cityId": 6649, + "codeIataCity": "SDX", + "codeIso2Country": "US", + "geonameId": 5313667, + "latitudeCity": 34.86667, + "longitudeCity": -111.76667, + "nameCity": "Sedona", + "timezone": "America/Phoenix" + }, + { + "GMT": "-7", + "cityId": 6650, + "codeIataCity": "SDY", + "codeIso2Country": "US", + "geonameId": 5677735, + "latitudeCity": 47.706944, + "longitudeCity": -104.19194, + "nameCity": "Sidney", + "timezone": "America/Denver" + }, + { + "GMT": "0", + "cityId": 6651, + "codeIataCity": "SDZ", + "codeIso2Country": "GB", + "geonameId": 0, + "latitudeCity": 60.34416, + "longitudeCity": -1.256425, + "nameCity": "Shetland Islands", + "timezone": "Europe/London" + }, + { + "GMT": "-8", + "cityId": 6652, + "codeIataCity": "SEA", + "codeIso2Country": "US", + "geonameId": 5809844, + "latitudeCity": 47.606209, + "longitudeCity": -122.332071, + "nameCity": "Seattle", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "cityId": 6653, + "codeIataCity": "SEB", + "codeIso2Country": "LY", + "geonameId": 0, + "latitudeCity": 27.016666, + "longitudeCity": 14.4625, + "nameCity": "Sebha", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "2", + "cityId": 6654, + "codeIataCity": "SED", + "codeIso2Country": "IL", + "geonameId": 0, + "latitudeCity": 31.15, + "longitudeCity": 35.38333, + "nameCity": "Sedom", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "-5", + "cityId": 6655, + "codeIataCity": "SEF", + "codeIso2Country": "US", + "geonameId": 4160983, + "latitudeCity": 27.5, + "longitudeCity": -81.416664, + "nameCity": "Sebring", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 6656, + "codeIataCity": "SEG", + "codeIso2Country": "US", + "geonameId": 5211411, + "latitudeCity": 40.85, + "longitudeCity": -76.85, + "nameCity": "Selinsgrove", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "cityId": 6657, + "codeIataCity": "SEH", + "codeIso2Country": "ID", + "geonameId": 2082600, + "latitudeCity": -3.433333, + "longitudeCity": 140.81667, + "nameCity": "Senggeh", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-3", + "cityId": 6658, + "codeIataCity": "SEI", + "codeIso2Country": "BR", + "geonameId": 3460344, + "latitudeCity": -10.45, + "longitudeCity": -40.183334, + "nameCity": "Senhor Do Bonfim", + "timezone": "America/Bahia" + }, + { + "GMT": "9", + "cityId": 6659, + "codeIataCity": "SEL", + "codeIso2Country": "KR", + "geonameId": 1835848, + "latitudeCity": 37.566535, + "longitudeCity": 126.977969, + "nameCity": "Seoul", + "timezone": "Asia/Seoul" + }, + { + "GMT": "0", + "cityId": 6660, + "codeIataCity": "SEO", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 7.966667, + "longitudeCity": -6.666667, + "nameCity": "Seguela", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "-6", + "cityId": 6661, + "codeIataCity": "SEP", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 32.216667, + "longitudeCity": -98.2, + "nameCity": "Stephenville", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "cityId": 6662, + "codeIataCity": "SEQ", + "codeIso2Country": "ID", + "geonameId": 1645133, + "latitudeCity": -0.8, + "longitudeCity": 114.066666, + "nameCity": "Sungai Pakning", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-5", + "cityId": 6663, + "codeIataCity": "SER", + "codeIso2Country": "US", + "geonameId": 4264617, + "latitudeCity": 38.966667, + "longitudeCity": -85.88333, + "nameCity": "Seymour", + "timezone": "America/Indiana/Indianapolis" + }, + { + "GMT": "-6", + "cityId": 6664, + "codeIataCity": "SES", + "codeIso2Country": "US", + "geonameId": 4089114, + "latitudeCity": 32.407359, + "longitudeCity": -87.021101, + "nameCity": "Selma", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 6665, + "codeIataCity": "SET", + "codeIso2Country": "HN", + "geonameId": 3608503, + "latitudeCity": 15.316667, + "longitudeCity": -85.86667, + "nameCity": "San Esteban", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "3", + "cityId": 6666, + "codeIataCity": "SEU", + "codeIso2Country": "TZ", + "geonameId": 0, + "latitudeCity": -2.383333, + "longitudeCity": 34.816666, + "nameCity": "Seronera", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "2", + "cityId": 6667, + "codeIataCity": "SEV", + "codeIso2Country": "UA", + "geonameId": 702658, + "latitudeCity": 48.9, + "longitudeCity": 38.55, + "nameCity": "Severodoneck", + "timezone": "Europe/Zaporozhye" + }, + { + "GMT": "2", + "cityId": 6668, + "codeIataCity": "SEW", + "codeIso2Country": "EG", + "geonameId": 347863, + "latitudeCity": 29.183332, + "longitudeCity": 25.516666, + "nameCity": "Siwa", + "timezone": "Africa/Cairo" + }, + { + "GMT": "0", + "cityId": 6669, + "codeIataCity": "SEY", + "codeIso2Country": "MR", + "geonameId": 0, + "latitudeCity": 15.182222, + "longitudeCity": -12.206111, + "nameCity": "Selibaby", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "4", + "cityId": 6670, + "codeIataCity": "SEZ", + "codeIso2Country": "SC", + "geonameId": 241274, + "latitudeCity": -4.671275, + "longitudeCity": 55.51128, + "nameCity": "Mahe Island", + "timezone": "Indian/Mahe" + }, + { + "GMT": "1", + "cityId": 6671, + "codeIataCity": "SFA", + "codeIso2Country": "TN", + "geonameId": 2467454, + "latitudeCity": 34.716667, + "longitudeCity": 10.683333, + "nameCity": "Sfax", + "timezone": "Africa/Tunis" + }, + { + "GMT": "-4", + "cityId": 6672, + "codeIataCity": "SFC", + "codeIso2Country": "GP", + "geonameId": 0, + "latitudeCity": 16.25, + "longitudeCity": -61.283333, + "nameCity": "St Francois", + "timezone": "America/Guadeloupe" + }, + { + "GMT": "-4", + "cityId": 6673, + "codeIataCity": "SFD", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 7.885278, + "longitudeCity": -67.43916, + "nameCity": "San Fernando De Apure", + "timezone": "America/Caracas" + }, + { + "GMT": "8", + "cityId": 6674, + "codeIataCity": "SFE", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 16.6, + "longitudeCity": 120.3, + "nameCity": "San Fernando", + "timezone": "Asia/Manila" + }, + { + "GMT": "-4", + "cityId": 6675, + "codeIataCity": "SFG", + "codeIso2Country": "MF", + "geonameId": 0, + "latitudeCity": -26.234987, + "longitudeCity": 28.200738, + "nameCity": "St Martin", + "timezone": "America/Marigot" + }, + { + "GMT": "-8", + "cityId": 6676, + "codeIataCity": "SFH", + "codeIso2Country": "MX", + "geonameId": 3987224, + "latitudeCity": 31.0, + "longitudeCity": -114.86667, + "nameCity": "San Felipe", + "timezone": "America/Tijuana" + }, + { + "GMT": "-3", + "cityId": 6677, + "codeIataCity": "SFJ", + "codeIso2Country": "GL", + "geonameId": 3419714, + "latitudeCity": 67.01222, + "longitudeCity": -50.719723, + "nameCity": "Kangerlussuaq", + "timezone": "America/Godthab" + }, + { + "GMT": "-3", + "cityId": 6678, + "codeIataCity": "SFK", + "codeIso2Country": "BR", + "geonameId": 3387204, + "latitudeCity": -0.7, + "longitudeCity": -48.52222, + "nameCity": "Soure", + "timezone": "America/Belem" + }, + { + "GMT": "-1", + "cityId": 6679, + "codeIataCity": "SFL", + "codeIso2Country": "CV", + "geonameId": 0, + "latitudeCity": 14.9, + "longitudeCity": -24.516666, + "nameCity": "S?o Filipe", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "-5", + "cityId": 6680, + "codeIataCity": "SFM", + "codeIso2Country": "US", + "geonameId": 5085520, + "latitudeCity": 43.433334, + "longitudeCity": -70.76667, + "nameCity": "Sanford", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 6681, + "codeIataCity": "SFN", + "codeIso2Country": "AR", + "geonameId": 3841956, + "latitudeCity": -31.716667, + "longitudeCity": -60.816666, + "nameCity": "Santa Fe", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "-8", + "cityId": 6682, + "codeIataCity": "SFO", + "codeIso2Country": "US", + "geonameId": 5391959, + "latitudeCity": 37.774929, + "longitudeCity": -122.419415, + "nameCity": "San Francisco", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 6683, + "codeIataCity": "SFP", + "codeIso2Country": "AU", + "geonameId": 2147849, + "latitudeCity": -28.0, + "longitudeCity": 153.0, + "nameCity": "Surfers Paradise", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3", + "cityId": 6684, + "codeIataCity": "SFQ", + "codeIso2Country": "TR", + "geonameId": 298333, + "latitudeCity": 37.15, + "longitudeCity": 38.8, + "nameCity": "Sanliurfa", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-8", + "cityId": 6685, + "codeIataCity": "SFR", + "codeIso2Country": "US", + "geonameId": 5391945, + "latitudeCity": 34.266666, + "longitudeCity": -118.433334, + "nameCity": "San Fernando", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "cityId": 6686, + "codeIataCity": "SFS", + "codeIso2Country": "PH", + "geonameId": 1701668, + "latitudeCity": 14.785556, + "longitudeCity": 120.26722, + "nameCity": "Subic Bay", + "timezone": "Asia/Manila" + }, + { + "GMT": "1", + "cityId": 6687, + "codeIataCity": "SFT", + "codeIso2Country": "SE", + "geonameId": 602913, + "latitudeCity": 64.62251, + "longitudeCity": 21.068548, + "nameCity": "Skelleftea", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "10", + "cityId": 6688, + "codeIataCity": "SFU", + "codeIso2Country": "PG", + "geonameId": 2085070, + "latitudeCity": -9.666667, + "longitudeCity": 148.66667, + "nameCity": "Safia", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "cityId": 6689, + "codeIataCity": "SFV", + "codeIso2Country": "BR", + "geonameId": 3448865, + "latitudeCity": -19.833332, + "longitudeCity": -50.166668, + "nameCity": "Santa Fe Do Sul", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "cityId": 6690, + "codeIataCity": "SFW", + "codeIso2Country": "PA", + "geonameId": 3712384, + "latitudeCity": 8.833333, + "longitudeCity": -81.166664, + "nameCity": "Santa Fe", + "timezone": "America/Panama" + }, + { + "GMT": "-4", + "cityId": 6691, + "codeIataCity": "SFX", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 8.216667, + "longitudeCity": -62.38333, + "nameCity": "San Felix", + "timezone": "America/Caracas" + }, + { + "GMT": "-5", + "cityId": 6692, + "codeIataCity": "SFY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 25.93123, + "longitudeCity": 119.66923, + "nameCity": "Springfield", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 6693, + "codeIataCity": "SFZ", + "codeIso2Country": "US", + "geonameId": 4930956, + "latitudeCity": 41.916668, + "longitudeCity": -71.566666, + "nameCity": "Pawtucket", + "timezone": "America/New_York" + }, + { + "GMT": "4.30", + "cityId": 6694, + "codeIataCity": "SGA", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 38.033333, + "longitudeCity": 71.71667, + "nameCity": "Sheghnan", + "timezone": "Asia/Kabul" + }, + { + "GMT": "10", + "cityId": 6695, + "codeIataCity": "SGB", + "codeIso2Country": "PG", + "geonameId": 2086628, + "latitudeCity": -6.7, + "longitudeCity": 147.13333, + "nameCity": "Singaua", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5", + "cityId": 6696, + "codeIataCity": "SGC", + "codeIso2Country": "RU", + "geonameId": 1490624, + "latitudeCity": 61.339916, + "longitudeCity": 73.40953, + "nameCity": "Surgut", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "1", + "cityId": 6697, + "codeIataCity": "SGD", + "codeIso2Country": "DK", + "geonameId": 2613102, + "latitudeCity": 54.913811, + "longitudeCity": 9.792178, + "nameCity": "Sonderborg", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "cityId": 6698, + "codeIataCity": "SGE", + "codeIso2Country": "DE", + "geonameId": 2832495, + "latitudeCity": 50.85, + "longitudeCity": 8.0, + "nameCity": "Siegen", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "cityId": 6699, + "codeIataCity": "SGF", + "codeIso2Country": "US", + "geonameId": 4409896, + "latitudeCity": 37.24237, + "longitudeCity": -93.38226, + "nameCity": "Springfield", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 6700, + "codeIataCity": "SGG", + "codeIso2Country": "MY", + "geonameId": 1735799, + "latitudeCity": 1.222778, + "longitudeCity": 111.460556, + "nameCity": "Simanggang", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-5", + "cityId": 6701, + "codeIataCity": "SGH", + "codeIso2Country": "US", + "geonameId": 4525353, + "latitudeCity": 39.916668, + "longitudeCity": -83.8, + "nameCity": "Springfield", + "timezone": "America/New_York" + }, + { + "GMT": "5", + "cityId": 6702, + "codeIataCity": "SGI", + "codeIso2Country": "PK", + "geonameId": 1179400, + "latitudeCity": 32.166668, + "longitudeCity": 72.666664, + "nameCity": "Sargodha", + "timezone": "Asia/Karachi" + }, + { + "GMT": "10", + "cityId": 6703, + "codeIataCity": "SGJ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -10.466667, + "longitudeCity": 150.15, + "nameCity": "Sagarai", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 6704, + "codeIataCity": "SGK", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.083333, + "longitudeCity": 144.76666, + "nameCity": "Sangapi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "cityId": 6705, + "codeIataCity": "SGM", + "codeIso2Country": "MX", + "geonameId": 0, + "latitudeCity": 27.45, + "longitudeCity": -113.0, + "nameCity": "San Ignacio", + "timezone": "America/Mazatlan" + }, + { + "GMT": "7", + "cityId": 6706, + "codeIataCity": "SGN", + "codeIso2Country": "VN", + "geonameId": 1566083, + "latitudeCity": 10.813045, + "longitudeCity": 106.662476, + "nameCity": "Ho Chi Minh City", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "10", + "cityId": 6707, + "codeIataCity": "SGO", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -28.053333, + "longitudeCity": 148.59389, + "nameCity": "St George", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "cityId": 6708, + "codeIataCity": "SGP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -20.816668, + "longitudeCity": 120.23333, + "nameCity": "Shay Gap", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "cityId": 6709, + "codeIataCity": "SGQ", + "codeIso2Country": "ID", + "geonameId": 1648186, + "latitudeCity": 0.5, + "longitudeCity": 117.333336, + "nameCity": "Sanggata", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-6", + "cityId": 6710, + "codeIataCity": "SGR", + "codeIso2Country": "US", + "geonameId": 4734825, + "latitudeCity": 29.698889, + "longitudeCity": -95.407776, + "nameCity": "Sugar Land", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 6711, + "codeIataCity": "SGS", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 5.233333, + "longitudeCity": 121.15, + "nameCity": "Sanga Sanga", + "timezone": "Asia/Manila" + }, + { + "GMT": "-6", + "cityId": 6712, + "codeIataCity": "SGT", + "codeIso2Country": "US", + "geonameId": 4119403, + "latitudeCity": 34.5, + "longitudeCity": -91.53333, + "nameCity": "Stuttgart", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 6713, + "codeIataCity": "SGU", + "codeIso2Country": "US", + "geonameId": 5546220, + "latitudeCity": 37.032627, + "longitudeCity": -113.51017, + "nameCity": "Saint George", + "timezone": "America/Denver" + }, + { + "GMT": "-3", + "cityId": 6714, + "codeIataCity": "SGV", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -41.566666, + "longitudeCity": -65.35, + "nameCity": "Sierra Grande", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-9", + "cityId": 6715, + "codeIataCity": "SGW", + "codeIso2Country": "US", + "geonameId": 5557293, + "latitudeCity": 58.4776, + "longitudeCity": -134.1578, + "nameCity": "Saginaw Bay", + "timezone": "America/Sitka" + }, + { + "GMT": "3", + "cityId": 6716, + "codeIataCity": "SGX", + "codeIso2Country": "TZ", + "geonameId": 0, + "latitudeCity": -10.686667, + "longitudeCity": 35.5775, + "nameCity": "Songea", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-9", + "cityId": 6717, + "codeIataCity": "SGY", + "codeIso2Country": "US", + "geonameId": 5557317, + "latitudeCity": 59.460556, + "longitudeCity": -135.31555, + "nameCity": "Skagway", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "cityId": 6718, + "codeIataCity": "SGZ", + "codeIso2Country": "TH", + "geonameId": 1606147, + "latitudeCity": 7.183889, + "longitudeCity": 100.61667, + "nameCity": "Songkhla", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "8", + "cityId": 6719, + "codeIataCity": "SHA", + "codeIso2Country": "CN", + "geonameId": 1796236, + "latitudeCity": 31.230393, + "longitudeCity": 121.473704, + "nameCity": "Shanghai", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9", + "cityId": 6720, + "codeIataCity": "SHB", + "codeIso2Country": "JP", + "geonameId": 2128215, + "latitudeCity": 43.572197, + "longitudeCity": 144.95613, + "nameCity": "Nakashibetsu", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "3", + "cityId": 6721, + "codeIataCity": "SHC", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 12.983333, + "longitudeCity": 39.13333, + "nameCity": "Indaselassie", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "-5", + "cityId": 6722, + "codeIataCity": "SHD", + "codeIso2Country": "US", + "geonameId": 4763231, + "latitudeCity": 38.26389, + "longitudeCity": -78.89667, + "nameCity": "Staunton", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 6723, + "codeIataCity": "SHE", + "codeIso2Country": "CN", + "geonameId": 2034937, + "latitudeCity": 41.861084, + "longitudeCity": 123.426926, + "nameCity": "Shenyang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-9", + "cityId": 6724, + "codeIataCity": "SHG", + "codeIso2Country": "US", + "geonameId": 5874123, + "latitudeCity": 66.889725, + "longitudeCity": -157.15778, + "nameCity": "Shungnak", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 6725, + "codeIataCity": "SHH", + "codeIso2Country": "US", + "geonameId": 5874015, + "latitudeCity": 66.25694, + "longitudeCity": -166.05833, + "nameCity": "Shishmaref", + "timezone": "America/Anchorage" + }, + { + "GMT": "9", + "cityId": 6726, + "codeIataCity": "SHI", + "codeIso2Country": "JP", + "geonameId": 0, + "latitudeCity": 24.816668, + "longitudeCity": 125.15, + "nameCity": "Shimojishima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "4", + "cityId": 6727, + "codeIataCity": "SHJ", + "codeIso2Country": "AE", + "geonameId": 292672, + "latitudeCity": 25.320873, + "longitudeCity": 55.52029, + "nameCity": "Sharjah", + "timezone": "Asia/Dubai" + }, + { + "GMT": "2", + "cityId": 6728, + "codeIataCity": "SHK", + "codeIso2Country": "LS", + "geonameId": 0, + "latitudeCity": -29.475, + "longitudeCity": 27.833332, + "nameCity": "Sehonghong", + "timezone": "Africa/Maseru" + }, + { + "GMT": "5.30", + "cityId": 6729, + "codeIataCity": "SHL", + "codeIso2Country": "IN", + "geonameId": 1256523, + "latitudeCity": 25.566668, + "longitudeCity": 91.88333, + "nameCity": "Shillong", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "9", + "cityId": 6730, + "codeIataCity": "SHM", + "codeIso2Country": "JP", + "geonameId": 1851936, + "latitudeCity": 33.66139, + "longitudeCity": 135.35806, + "nameCity": "Shirahama", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-8", + "cityId": 6731, + "codeIataCity": "SHN", + "codeIso2Country": "US", + "geonameId": 5810176, + "latitudeCity": 47.23389, + "longitudeCity": -123.138885, + "nameCity": "Shelton", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9", + "cityId": 6732, + "codeIataCity": "SHO", + "codeIso2Country": "KR", + "geonameId": 0, + "latitudeCity": 38.13333, + "longitudeCity": 128.6, + "nameCity": "Sokcho", + "timezone": "Asia/Seoul" + }, + { + "GMT": "8", + "cityId": 6733, + "codeIataCity": "SHP", + "codeIso2Country": "CN", + "geonameId": 1797595, + "latitudeCity": 39.965214, + "longitudeCity": 119.71656, + "nameCity": "Qinhuangdao", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "cityId": 6734, + "codeIataCity": "SHQ", + "codeIso2Country": "AU", + "geonameId": 2165087, + "latitudeCity": -27.951944, + "longitudeCity": 153.42778, + "nameCity": "Southport", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-7", + "cityId": 6735, + "codeIataCity": "SHR", + "codeIso2Country": "US", + "geonameId": 5838198, + "latitudeCity": 44.774166, + "longitudeCity": -106.97722, + "nameCity": "Sheridan", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "cityId": 6736, + "codeIataCity": "SHS", + "codeIso2Country": "CN", + "geonameId": 1805611, + "latitudeCity": 30.316668, + "longitudeCity": 112.23333, + "nameCity": "Shashi", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "cityId": 6737, + "codeIataCity": "SHT", + "codeIso2Country": "AU", + "geonameId": 2149645, + "latitudeCity": -36.38333, + "longitudeCity": 145.43333, + "nameCity": "Shepparton", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "9.30", + "cityId": 6738, + "codeIataCity": "SHU", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -11.133333, + "longitudeCity": 132.13333, + "nameCity": "Smith Point", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-6", + "cityId": 6739, + "codeIataCity": "SHV", + "codeIso2Country": "US", + "geonameId": 4341513, + "latitudeCity": 32.525152, + "longitudeCity": -93.750179, + "nameCity": "Shreveport", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 6740, + "codeIataCity": "SHW", + "codeIso2Country": "SA", + "geonameId": 0, + "latitudeCity": 17.46946, + "longitudeCity": 47.111984, + "nameCity": "Sharurah", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-9", + "cityId": 6741, + "codeIataCity": "SHX", + "codeIso2Country": "US", + "geonameId": 5873801, + "latitudeCity": 62.69583, + "longitudeCity": -159.56667, + "nameCity": "Shageluk", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "cityId": 6742, + "codeIataCity": "SHY", + "codeIso2Country": "TZ", + "geonameId": 150006, + "latitudeCity": -3.608185, + "longitudeCity": 33.504486, + "nameCity": "Shinyanga", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "2", + "cityId": 6743, + "codeIataCity": "SHZ", + "codeIso2Country": "LS", + "geonameId": 0, + "latitudeCity": -29.166668, + "longitudeCity": 28.0, + "nameCity": "Seshutes", + "timezone": "Africa/Maseru" + }, + { + "GMT": "8", + "cityId": 6744, + "codeIataCity": "SIA", + "codeIso2Country": "CN", + "geonameId": 1790630, + "latitudeCity": 34.44104, + "longitudeCity": 108.75874, + "nameCity": "Xi'an", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 6745, + "codeIataCity": "SIB", + "codeIso2Country": "CG", + "geonameId": 0, + "latitudeCity": -3.733333, + "longitudeCity": 13.4, + "nameCity": "Sibiti", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "-5", + "cityId": 6746, + "codeIataCity": "SIC", + "codeIso2Country": "PA", + "geonameId": 739600, + "latitudeCity": 42.0175, + "longitudeCity": 35.06889, + "nameCity": "Sinop", + "timezone": "America/Panama" + }, + { + "GMT": "-1", + "cityId": 6747, + "codeIataCity": "SID", + "codeIso2Country": "CV", + "geonameId": 3374218, + "latitudeCity": 16.734695, + "longitudeCity": -22.943613, + "nameCity": "Sal", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "0", + "cityId": 6748, + "codeIataCity": "SIE", + "codeIso2Country": "PT", + "geonameId": 2267057, + "latitudeCity": 37.933334, + "longitudeCity": -8.85, + "nameCity": "Sines", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "5.45", + "cityId": 6749, + "codeIataCity": "SIF", + "codeIso2Country": "NP", + "geonameId": 1283240, + "latitudeCity": 27.163563, + "longitudeCity": 84.979195, + "nameCity": "Simara", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "5.45", + "cityId": 6750, + "codeIataCity": "SIH", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 29.266666, + "longitudeCity": 80.975, + "nameCity": "Silgadi Doti", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "0", + "cityId": 6751, + "codeIataCity": "SII", + "codeIso2Country": "MA", + "geonameId": 0, + "latitudeCity": 29.4, + "longitudeCity": -10.2, + "nameCity": "Sidi Ifni", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "0", + "cityId": 6752, + "codeIataCity": "SIJ", + "codeIso2Country": "IS", + "geonameId": 2633274, + "latitudeCity": 66.166664, + "longitudeCity": -18.933332, + "nameCity": "Siglufjordur", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-6", + "cityId": 6753, + "codeIataCity": "SIK", + "codeIso2Country": "US", + "geonameId": 4048662, + "latitudeCity": 36.86667, + "longitudeCity": -89.55, + "nameCity": "Sikeston", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 6754, + "codeIataCity": "SIL", + "codeIso2Country": "PG", + "geonameId": 2086740, + "latitudeCity": -8.333333, + "longitudeCity": 147.5, + "nameCity": "Sila", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 6755, + "codeIataCity": "SIM", + "codeIso2Country": "PG", + "geonameId": 2086697, + "latitudeCity": -5.25, + "longitudeCity": 144.53334, + "nameCity": "Simbai", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 6756, + "codeIataCity": "SIN", + "codeIso2Country": "SG", + "geonameId": 1880252, + "latitudeCity": 1.289437, + "longitudeCity": 103.84998, + "nameCity": "Singapore", + "timezone": "Asia/Singapore" + }, + { + "GMT": "10", + "cityId": 6757, + "codeIataCity": "SIO", + "codeIso2Country": "AU", + "geonameId": 2149254, + "latitudeCity": -40.835835, + "longitudeCity": 145.08167, + "nameCity": "Smithton", + "timezone": "Australia/Hobart" + }, + { + "GMT": "3", + "cityId": 6758, + "codeIataCity": "SIP", + "codeIso2Country": "UA", + "geonameId": 693805, + "latitudeCity": 45.020657, + "longitudeCity": 33.99819, + "nameCity": "Simferopol", + "timezone": "Europe/Simferopol" + }, + { + "GMT": "7", + "cityId": 6759, + "codeIataCity": "SIQ", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -0.5, + "longitudeCity": 104.416664, + "nameCity": "Singkep", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "1", + "cityId": 6760, + "codeIataCity": "SIR", + "codeIso2Country": "CH", + "geonameId": 2658576, + "latitudeCity": 46.25, + "longitudeCity": 7.333333, + "nameCity": "Sion", + "timezone": "Europe/Zurich" + }, + { + "GMT": "2", + "cityId": 6761, + "codeIataCity": "SIS", + "codeIso2Country": "ZA", + "geonameId": 0, + "latitudeCity": -27.916668, + "longitudeCity": 22.983334, + "nameCity": "Sishen", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-9", + "cityId": 6762, + "codeIataCity": "SIT", + "codeIso2Country": "US", + "geonameId": 5557293, + "latitudeCity": 57.04861, + "longitudeCity": -135.23334, + "nameCity": "Sitka", + "timezone": "America/Sitka" + }, + { + "GMT": "-6", + "cityId": 6763, + "codeIataCity": "SIU", + "codeIso2Country": "NI", + "geonameId": 0, + "latitudeCity": 13.727222, + "longitudeCity": -84.77778, + "nameCity": "Siuna", + "timezone": "America/Managua" + }, + { + "GMT": "-6", + "cityId": 6764, + "codeIataCity": "SIV", + "codeIso2Country": "US", + "geonameId": 4237727, + "latitudeCity": 39.1, + "longitudeCity": -87.4, + "nameCity": "Sullivan", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "cityId": 6765, + "codeIataCity": "SIW", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 2.67, + "longitudeCity": 98.93, + "nameCity": "Sibisa", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "10", + "cityId": 6766, + "codeIataCity": "SIX", + "codeIso2Country": "AU", + "geonameId": 2152799, + "latitudeCity": -32.566666, + "longitudeCity": 151.16667, + "nameCity": "Singleton", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-8", + "cityId": 6767, + "codeIataCity": "SIY", + "codeIso2Country": "US", + "geonameId": 5574093, + "latitudeCity": 41.728198, + "longitudeCity": -122.527801, + "nameCity": "Montague", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 6768, + "codeIataCity": "SIZ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -3.0, + "longitudeCity": 142.05, + "nameCity": "Sissano", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 6769, + "codeIataCity": "SJA", + "codeIso2Country": "PE", + "geonameId": 3934356, + "latitudeCity": -15.35, + "longitudeCity": -75.15, + "nameCity": "San Juan", + "timezone": "America/Lima" + }, + { + "GMT": "-4", + "cityId": 6770, + "codeIataCity": "SJB", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -13.083333, + "longitudeCity": -64.8, + "nameCity": "San Joaquin", + "timezone": "America/La_Paz" + }, + { + "GMT": "-8", + "cityId": 6771, + "codeIataCity": "SJC", + "codeIso2Country": "US", + "geonameId": 5392171, + "latitudeCity": 37.339386, + "longitudeCity": -121.894955, + "nameCity": "San Jose", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-7", + "cityId": 6772, + "codeIataCity": "SJD", + "codeIso2Country": "MX", + "geonameId": 3985710, + "latitudeCity": 23.162354, + "longitudeCity": -109.717285, + "nameCity": "San Jose Del Cabo", + "timezone": "America/Mazatlan" + }, + { + "GMT": "-5", + "cityId": 6773, + "codeIataCity": "SJE", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 2.583333, + "longitudeCity": -72.666664, + "nameCity": "San Jose Del Gua", + "timezone": "America/Bogota" + }, + { + "GMT": "-4", + "cityId": 6774, + "codeIataCity": "SJF", + "codeIso2Country": "VI", + "geonameId": 0, + "latitudeCity": 18.333332, + "longitudeCity": -64.75, + "nameCity": "St John Island", + "timezone": "America/St_Thomas" + }, + { + "GMT": "-5", + "cityId": 6775, + "codeIataCity": "SJG", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 9.4, + "longitudeCity": -75.066666, + "nameCity": "San Pedro Jagua", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 6776, + "codeIataCity": "SJH", + "codeIso2Country": "CO", + "geonameId": 3666304, + "latitudeCity": 10.766667, + "longitudeCity": -73.01667, + "nameCity": "San Juan Del Cesar", + "timezone": "America/Bogota" + }, + { + "GMT": "8", + "cityId": 6777, + "codeIataCity": "SJI", + "codeIso2Country": "PH", + "geonameId": 1689510, + "latitudeCity": 12.359764, + "longitudeCity": 121.04569, + "nameCity": "San Jose", + "timezone": "Asia/Manila" + }, + { + "GMT": "1", + "cityId": 6778, + "codeIataCity": "SJJ", + "codeIso2Country": "BA", + "geonameId": 3191281, + "latitudeCity": 43.826687, + "longitudeCity": 18.336065, + "nameCity": "Sarajevo", + "timezone": "Europe/Sarajevo" + }, + { + "GMT": "-3", + "cityId": 6779, + "codeIataCity": "SJK", + "codeIso2Country": "BR", + "geonameId": 3448439, + "latitudeCity": -23.183332, + "longitudeCity": -46.11667, + "nameCity": "Sao Jose Dos Campos", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-4", + "cityId": 6780, + "codeIataCity": "SJL", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -0.148333, + "longitudeCity": -66.98556, + "nameCity": "Sao Gabriel", + "timezone": "America/Manaus" + }, + { + "GMT": "-4", + "cityId": 6781, + "codeIataCity": "SJM", + "codeIso2Country": "DO", + "geonameId": 0, + "latitudeCity": 18.833332, + "longitudeCity": -71.23333, + "nameCity": "San Juan", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "-7", + "cityId": 6782, + "codeIataCity": "SJN", + "codeIso2Country": "US", + "geonameId": 5284580, + "latitudeCity": 34.5, + "longitudeCity": -109.35, + "nameCity": "St Johns", + "timezone": "America/Phoenix" + }, + { + "GMT": "-6", + "cityId": 6783, + "codeIataCity": "SJO", + "codeIso2Country": "CR", + "geonameId": 3621630, + "latitudeCity": 9.998238, + "longitudeCity": -84.20408, + "nameCity": "San Jose", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-3", + "cityId": 6784, + "codeIataCity": "SJP", + "codeIso2Country": "BR", + "geonameId": 3448639, + "latitudeCity": -20.816668, + "longitudeCity": -49.416668, + "nameCity": "Sao Jose Do Rio Preto", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "2", + "cityId": 6785, + "codeIataCity": "SJQ", + "codeIso2Country": "ZM", + "geonameId": 0, + "latitudeCity": -17.483334, + "longitudeCity": 24.283333, + "nameCity": "Sesheke", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-5", + "cityId": 6786, + "codeIataCity": "SJR", + "codeIso2Country": "CO", + "geonameId": 3665580, + "latitudeCity": 8.766667, + "longitudeCity": -76.53333, + "nameCity": "San Juan D Ur", + "timezone": "America/Bogota" + }, + { + "GMT": "-4", + "cityId": 6787, + "codeIataCity": "SJS", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -17.827223, + "longitudeCity": -60.738335, + "nameCity": "San Jose", + "timezone": "America/La_Paz" + }, + { + "GMT": "-6", + "cityId": 6788, + "codeIataCity": "SJT", + "codeIso2Country": "US", + "geonameId": 5530022, + "latitudeCity": 43.82, + "longitudeCity": 12.8, + "nameCity": "San Angelo", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 6789, + "codeIataCity": "SJU", + "codeIso2Country": "PR", + "geonameId": 4568127, + "latitudeCity": 18.466334, + "longitudeCity": -66.105722, + "nameCity": "San Juan", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "-4", + "cityId": 6790, + "codeIataCity": "SJV", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -16.233334, + "longitudeCity": -62.416668, + "nameCity": "San Javier", + "timezone": "America/La_Paz" + }, + { + "GMT": "8", + "cityId": 6791, + "codeIataCity": "SJW", + "codeIso2Country": "CN", + "geonameId": 1795270, + "latitudeCity": 38.274376, + "longitudeCity": 114.69443, + "nameCity": "Shijiazhuang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "cityId": 6792, + "codeIataCity": "SJX", + "codeIso2Country": "BZ", + "geonameId": 0, + "latitudeCity": 18.3, + "longitudeCity": -88.333336, + "nameCity": "Sartaneja", + "timezone": "America/Belize" + }, + { + "GMT": "2", + "cityId": 6793, + "codeIataCity": "SJY", + "codeIso2Country": "FI", + "geonameId": 637219, + "latitudeCity": 62.6932, + "longitudeCity": 22.835285, + "nameCity": "Seinajoki", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-1", + "cityId": 6794, + "codeIataCity": "SJZ", + "codeIso2Country": "PT", + "geonameId": 3372485, + "latitudeCity": 38.664616, + "longitudeCity": -28.16843, + "nameCity": "Sao Jorge Island", + "timezone": "Atlantic/Azores" + }, + { + "GMT": "-4", + "cityId": 6795, + "codeIataCity": "SKB", + "codeIso2Country": "KN", + "geonameId": 3575479, + "latitudeCity": 17.310843, + "longitudeCity": -62.71397, + "nameCity": "Basseterre", + "timezone": "America/St_Kitts" + }, + { + "GMT": "10", + "cityId": 6796, + "codeIataCity": "SKC", + "codeIso2Country": "PG", + "geonameId": 2086204, + "latitudeCity": -8.083333, + "longitudeCity": 141.8, + "nameCity": "Suki", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5", + "cityId": 6797, + "codeIataCity": "SKD", + "codeIso2Country": "UZ", + "geonameId": 1216265, + "latitudeCity": 39.696217, + "longitudeCity": 66.99085, + "nameCity": "Samarkand", + "timezone": "Asia/Samarkand" + }, + { + "GMT": "1", + "cityId": 6798, + "codeIataCity": "SKE", + "codeIso2Country": "NO", + "geonameId": 3139075, + "latitudeCity": 59.182777, + "longitudeCity": 9.5625, + "nameCity": "Skien", + "timezone": "Europe/Oslo" + }, + { + "GMT": "2", + "cityId": 6799, + "codeIataCity": "SKG", + "codeIso2Country": "GR", + "geonameId": 734077, + "latitudeCity": 40.520832, + "longitudeCity": 22.972221, + "nameCity": "Thessaloniki", + "timezone": "Europe/Athens" + }, + { + "GMT": "5.45", + "cityId": 6800, + "codeIataCity": "SKH", + "codeIso2Country": "NP", + "geonameId": 1282742, + "latitudeCity": 28.333332, + "longitudeCity": 82.50833, + "nameCity": "Surkhet", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "1", + "cityId": 6801, + "codeIataCity": "SKI", + "codeIso2Country": "DZ", + "geonameId": 0, + "latitudeCity": 36.833332, + "longitudeCity": 6.966667, + "nameCity": "Skikda", + "timezone": "Africa/Algiers" + }, + { + "GMT": "-9", + "cityId": 6802, + "codeIataCity": "SKJ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 56.53278, + "longitudeCity": -154.11389, + "nameCity": "Sitkinak Island", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 6803, + "codeIataCity": "SKK", + "codeIso2Country": "US", + "geonameId": 5873815, + "latitudeCity": 64.324165, + "longitudeCity": -161.13889, + "nameCity": "Shaktoolik", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "cityId": 6804, + "codeIataCity": "SKL", + "codeIso2Country": "GB", + "geonameId": 2646088, + "latitudeCity": 57.333332, + "longitudeCity": -6.25, + "nameCity": "Isle Of Skye", + "timezone": "Europe/London" + }, + { + "GMT": "-4", + "cityId": 6805, + "codeIataCity": "SKM", + "codeIso2Country": "GY", + "geonameId": 3375941, + "latitudeCity": 5.877778, + "longitudeCity": -57.175, + "nameCity": "Skeldon", + "timezone": "America/Guyana" + }, + { + "GMT": "1", + "cityId": 6806, + "codeIataCity": "SKN", + "codeIso2Country": "NO", + "geonameId": 3136690, + "latitudeCity": 68.57915, + "longitudeCity": 15.032921, + "nameCity": "Stokmarknes", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 6807, + "codeIataCity": "SKO", + "codeIso2Country": "NG", + "geonameId": 2322911, + "latitudeCity": 13.006389, + "longitudeCity": 5.242222, + "nameCity": "Sokoto", + "timezone": "Africa/Lagos" + }, + { + "GMT": "1", + "cityId": 6808, + "codeIataCity": "SKP", + "codeIso2Country": "MK", + "geonameId": 785842, + "latitudeCity": 41.95649, + "longitudeCity": 21.62872, + "nameCity": "Skopje", + "timezone": "Europe/Skopje" + }, + { + "GMT": "2", + "cityId": 6809, + "codeIataCity": "SKQ", + "codeIso2Country": "LS", + "geonameId": 0, + "latitudeCity": -29.65, + "longitudeCity": 28.166668, + "nameCity": "Sekakes", + "timezone": "Africa/Maseru" + }, + { + "GMT": "3", + "cityId": 6810, + "codeIataCity": "SKR", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 5.883333, + "longitudeCity": 38.966667, + "nameCity": "Shakiso", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "1", + "cityId": 6811, + "codeIataCity": "SKS", + "codeIso2Country": "DK", + "geonameId": 2610075, + "latitudeCity": 55.23, + "longitudeCity": 9.26, + "nameCity": "Vojens", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "5", + "cityId": 6812, + "codeIataCity": "SKT", + "codeIso2Country": "PK", + "geonameId": 1164909, + "latitudeCity": 32.533333, + "longitudeCity": 74.5, + "nameCity": "Sialkot", + "timezone": "Asia/Karachi" + }, + { + "GMT": "2", + "cityId": 6813, + "codeIataCity": "SKU", + "codeIso2Country": "GR", + "geonameId": 253614, + "latitudeCity": 38.916668, + "longitudeCity": 24.566668, + "nameCity": "Skiros", + "timezone": "Europe/Athens" + }, + { + "GMT": "2", + "cityId": 6814, + "codeIataCity": "SKV", + "codeIso2Country": "EG", + "geonameId": 0, + "latitudeCity": 28.5, + "longitudeCity": 33.95, + "nameCity": "Santa Katarina", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-9", + "cityId": 6815, + "codeIataCity": "SKW", + "codeIso2Country": "US", + "geonameId": 5875745, + "latitudeCity": 61.96583, + "longitudeCity": -151.18861, + "nameCity": "Skwentna", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "cityId": 6816, + "codeIataCity": "SKX", + "codeIso2Country": "RU", + "geonameId": 498698, + "latitudeCity": 54.166668, + "longitudeCity": 45.166668, + "nameCity": "Saransk", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-5", + "cityId": 6817, + "codeIataCity": "SKY", + "codeIso2Country": "US", + "geonameId": 5170691, + "latitudeCity": 41.45, + "longitudeCity": -83.0, + "nameCity": "Sandusky", + "timezone": "America/New_York" + }, + { + "GMT": "5", + "cityId": 6818, + "codeIataCity": "SKZ", + "codeIso2Country": "PK", + "geonameId": 1164408, + "latitudeCity": 27.72336, + "longitudeCity": 68.7958, + "nameCity": "Sukkur", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-3", + "cityId": 6819, + "codeIataCity": "SLA", + "codeIso2Country": "AR", + "geonameId": 3838233, + "latitudeCity": -24.844217, + "longitudeCity": -65.47849, + "nameCity": "Salta", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-6", + "cityId": 6820, + "codeIataCity": "SLB", + "codeIso2Country": "US", + "geonameId": 4877655, + "latitudeCity": 42.63333, + "longitudeCity": -95.2, + "nameCity": "Storm Lake", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 6821, + "codeIataCity": "SLC", + "codeIso2Country": "US", + "geonameId": 5780993, + "latitudeCity": 40.785645, + "longitudeCity": -111.980675, + "nameCity": "Salt Lake City", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 6822, + "codeIataCity": "SLD", + "codeIso2Country": "SK", + "geonameId": 3056459, + "latitudeCity": 48.63333, + "longitudeCity": 19.133333, + "nameCity": "Sliac", + "timezone": "Europe/Bratislava" + }, + { + "GMT": "-8", + "cityId": 6823, + "codeIataCity": "SLE", + "codeIso2Country": "US", + "geonameId": 5750162, + "latitudeCity": 44.995277, + "longitudeCity": -123.025, + "nameCity": "Salem", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "cityId": 6824, + "codeIataCity": "SLF", + "codeIso2Country": "SA", + "geonameId": 0, + "latitudeCity": 20.466667, + "longitudeCity": 45.61667, + "nameCity": "Sulayel", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-6", + "cityId": 6825, + "codeIataCity": "SLG", + "codeIso2Country": "US", + "geonameId": 4131116, + "latitudeCity": 36.183334, + "longitudeCity": -94.53333, + "nameCity": "Siloam Springs", + "timezone": "America/Chicago" + }, + { + "GMT": "11", + "cityId": 6826, + "codeIataCity": "SLH", + "codeIso2Country": "VU", + "geonameId": 2134814, + "latitudeCity": -13.883333, + "longitudeCity": 167.55, + "nameCity": "Sola", + "timezone": "Pacific/Efate" + }, + { + "GMT": "2", + "cityId": 6827, + "codeIataCity": "SLI", + "codeIso2Country": "ZM", + "geonameId": 897045, + "latitudeCity": -12.172222, + "longitudeCity": 26.366667, + "nameCity": "Solwezi", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "-7", + "cityId": 6828, + "codeIataCity": "SLJ", + "codeIso2Country": "AU", + "geonameId": 5289282, + "latitudeCity": 33.29889, + "longitudeCity": -111.91556, + "nameCity": "Chandler", + "timezone": "America/Phoenix" + }, + { + "GMT": "-5", + "cityId": 6829, + "codeIataCity": "SLK", + "codeIso2Country": "US", + "geonameId": 5136322, + "latitudeCity": 44.38278, + "longitudeCity": -74.206665, + "nameCity": "Saranac Lake", + "timezone": "America/New_York" + }, + { + "GMT": "4", + "cityId": 6830, + "codeIataCity": "SLL", + "codeIso2Country": "OM", + "geonameId": 286621, + "latitudeCity": 17.038124, + "longitudeCity": 54.106937, + "nameCity": "Salalah", + "timezone": "Asia/Muscat" + }, + { + "GMT": "1", + "cityId": 6831, + "codeIataCity": "SLM", + "codeIso2Country": "ES", + "geonameId": 3111108, + "latitudeCity": 40.966667, + "longitudeCity": -5.65, + "nameCity": "Salamanca", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-6", + "cityId": 6832, + "codeIataCity": "SLN", + "codeIso2Country": "US", + "geonameId": 4278890, + "latitudeCity": 38.790833, + "longitudeCity": -97.6525, + "nameCity": "Salina", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 6833, + "codeIataCity": "SLO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.63333, + "longitudeCity": -88.95, + "nameCity": "Salem", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 6834, + "codeIataCity": "SLP", + "codeIso2Country": "MX", + "geonameId": 3985606, + "latitudeCity": 22.255466, + "longitudeCity": -100.936806, + "nameCity": "San Luis Potosi", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-9", + "cityId": 6835, + "codeIataCity": "SLQ", + "codeIso2Country": "US", + "geonameId": 5874506, + "latitudeCity": 61.705, + "longitudeCity": -157.16667, + "nameCity": "Sleetmute", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 6836, + "codeIataCity": "SLR", + "codeIso2Country": "US", + "geonameId": 4734909, + "latitudeCity": 33.13333, + "longitudeCity": -95.6, + "nameCity": "Sulphur Springs", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 6837, + "codeIataCity": "SLS", + "codeIso2Country": "BG", + "geonameId": 727221, + "latitudeCity": 44.05639, + "longitudeCity": 27.180555, + "nameCity": "Silistra", + "timezone": "Europe/Sofia" + }, + { + "GMT": "-7", + "cityId": 6838, + "codeIataCity": "SLT", + "codeIso2Country": "US", + "geonameId": 5437555, + "latitudeCity": 38.533333, + "longitudeCity": -106.0, + "nameCity": "Salida", + "timezone": "America/Denver" + }, + { + "GMT": "-4", + "cityId": 6839, + "codeIataCity": "SLU", + "codeIso2Country": "LC", + "geonameId": 3576686, + "latitudeCity": 13.994143, + "longitudeCity": -61.006863, + "nameCity": "Castries", + "timezone": "America/St_Lucia" + }, + { + "GMT": "5.30", + "cityId": 6840, + "codeIataCity": "SLV", + "codeIso2Country": "IN", + "geonameId": 1274746, + "latitudeCity": 31.116667, + "longitudeCity": 77.15, + "nameCity": "Simla", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-6", + "cityId": 6841, + "codeIataCity": "SLW", + "codeIso2Country": "MX", + "geonameId": 3988086, + "latitudeCity": 25.55, + "longitudeCity": -100.916664, + "nameCity": "Saltillo", + "timezone": "America/Monterrey" + }, + { + "GMT": "-4", + "cityId": 6842, + "codeIataCity": "SLX", + "codeIso2Country": "TC", + "geonameId": 0, + "latitudeCity": 21.333332, + "longitudeCity": -71.20167, + "nameCity": "Salt Cay", + "timezone": "America/Grand_Turk" + }, + { + "GMT": "5", + "cityId": 6843, + "codeIataCity": "SLY", + "codeIso2Country": "RU", + "geonameId": 1493197, + "latitudeCity": 66.583336, + "longitudeCity": 66.6, + "nameCity": "Salekhard", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-3", + "cityId": 6844, + "codeIataCity": "SLZ", + "codeIso2Country": "BR", + "geonameId": 3388368, + "latitudeCity": -2.583316, + "longitudeCity": -44.236683, + "nameCity": "S?o Luis", + "timezone": "America/Fortaleza" + }, + { + "GMT": "-1", + "cityId": 6845, + "codeIataCity": "SMA", + "codeIso2Country": "PT", + "geonameId": 3372473, + "latitudeCity": 36.966667, + "longitudeCity": -25.1, + "nameCity": "Santa Maria", + "timezone": "Atlantic/Azores" + }, + { + "GMT": "-4", + "cityId": 6846, + "codeIataCity": "SMB", + "codeIso2Country": "CL", + "geonameId": 0, + "latitudeCity": -52.738335, + "longitudeCity": -69.34278, + "nameCity": "Cerro Sombrero", + "timezone": "America/Santiago" + }, + { + "GMT": "-5", + "cityId": 6847, + "codeIataCity": "SMC", + "codeIso2Country": "CO", + "geonameId": 3665580, + "latitudeCity": 8.166667, + "longitudeCity": -77.05, + "nameCity": "Santa Maria", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 6848, + "codeIataCity": "SME", + "codeIso2Country": "US", + "geonameId": 4308922, + "latitudeCity": 37.083332, + "longitudeCity": -84.6, + "nameCity": "Somerset", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 6849, + "codeIataCity": "SMG", + "codeIso2Country": "PE", + "geonameId": 3936456, + "latitudeCity": -12.5, + "longitudeCity": -72.0, + "nameCity": "Santa Maria", + "timezone": "America/Lima" + }, + { + "GMT": "10", + "cityId": 6850, + "codeIataCity": "SMH", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.083333, + "longitudeCity": 146.75, + "nameCity": "Sapmanga", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "cityId": 6851, + "codeIataCity": "SMI", + "codeIso2Country": "GR", + "geonameId": 259917, + "latitudeCity": 37.69145, + "longitudeCity": 26.914417, + "nameCity": "Samos", + "timezone": "Europe/Athens" + }, + { + "GMT": "10", + "cityId": 6852, + "codeIataCity": "SMJ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.566667, + "longitudeCity": 146.98334, + "nameCity": "Sim", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 6853, + "codeIataCity": "SMK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 63.484295, + "longitudeCity": -162.11182, + "nameCity": "St Michael", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 6854, + "codeIataCity": "SML", + "codeIso2Country": "BS", + "geonameId": 3571357, + "latitudeCity": 23.583332, + "longitudeCity": -75.26806, + "nameCity": "Stella Maris", + "timezone": "America/Nassau" + }, + { + "GMT": "8", + "cityId": 6855, + "codeIataCity": "SMM", + "codeIso2Country": "MY", + "geonameId": 1733953, + "latitudeCity": 4.416667, + "longitudeCity": 118.833336, + "nameCity": "Semporna", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-7", + "cityId": 6856, + "codeIataCity": "SMN", + "codeIso2Country": "US", + "geonameId": 5606275, + "latitudeCity": 45.183334, + "longitudeCity": -113.916664, + "nameCity": "Salmon", + "timezone": "America/Boise" + }, + { + "GMT": "-8", + "cityId": 6857, + "codeIataCity": "SMO", + "codeIso2Country": "US", + "geonameId": 5368361, + "latitudeCity": 34.016666, + "longitudeCity": -118.5, + "nameCity": "Santa Monica", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 6858, + "codeIataCity": "SMP", + "codeIso2Country": "PG", + "geonameId": 2093685, + "latitudeCity": -4.566667, + "longitudeCity": 151.96666, + "nameCity": "Stockholm", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "7", + "cityId": 6859, + "codeIataCity": "SMQ", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.083333, + "longitudeCity": 113.05, + "nameCity": "Sampit", + "timezone": "Asia/Pontianak" + }, + { + "GMT": "-5", + "cityId": 6860, + "codeIataCity": "SMR", + "codeIso2Country": "CO", + "geonameId": 8051263, + "latitudeCity": 11.117132, + "longitudeCity": -74.232704, + "nameCity": "Santa Marta", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "cityId": 6861, + "codeIataCity": "SMS", + "codeIso2Country": "MG", + "geonameId": 1057215, + "latitudeCity": -17.083332, + "longitudeCity": 49.816666, + "nameCity": "Sainte Marie", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "8", + "cityId": 6862, + "codeIataCity": "SMT", + "codeIso2Country": "TW", + "geonameId": 0, + "latitudeCity": 23.883333, + "longitudeCity": 120.933334, + "nameCity": "Sun Moon Lake", + "timezone": "Asia/Taipei" + }, + { + "GMT": "-9", + "cityId": 6863, + "codeIataCity": "SMU", + "codeIso2Country": "US", + "geonameId": 5877389, + "latitudeCity": 61.8, + "longitudeCity": -147.66667, + "nameCity": "Sheep Mountain", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 6864, + "codeIataCity": "SMV", + "codeIso2Country": "CH", + "geonameId": 2658813, + "latitudeCity": 46.49305, + "longitudeCity": 9.83606, + "nameCity": "St Moritz", + "timezone": "Europe/Zurich" + }, + { + "GMT": "0", + "cityId": 6865, + "codeIataCity": "SMW", + "codeIso2Country": "MA", + "geonameId": 0, + "latitudeCity": 26.733334, + "longitudeCity": -11.683333, + "nameCity": "Smara", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "-8", + "cityId": 6866, + "codeIataCity": "SMX", + "codeIso2Country": "US", + "geonameId": 5393180, + "latitudeCity": 34.905, + "longitudeCity": -120.45778, + "nameCity": "Santa Maria", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "0", + "cityId": 6867, + "codeIataCity": "SMY", + "codeIso2Country": "SN", + "geonameId": 2245546, + "latitudeCity": 13.166667, + "longitudeCity": -13.166667, + "nameCity": "Simenti", + "timezone": "Africa/Dakar" + }, + { + "GMT": "-3", + "cityId": 6868, + "codeIataCity": "SMZ", + "codeIso2Country": "SR", + "geonameId": 0, + "latitudeCity": 4.343056, + "longitudeCity": -54.4, + "nameCity": "Stoelmans Eiland", + "timezone": "America/Paramaribo" + }, + { + "GMT": "-8", + "cityId": 6869, + "codeIataCity": "SNA", + "codeIso2Country": "US", + "geonameId": 5392900, + "latitudeCity": 33.717471, + "longitudeCity": -117.831143, + "nameCity": "Santa Ana", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "cityId": 6870, + "codeIataCity": "SNB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -11.416667, + "longitudeCity": 130.66667, + "nameCity": "Snake Bay", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-5", + "cityId": 6871, + "codeIataCity": "SNC", + "codeIso2Country": "EC", + "geonameId": 3652100, + "latitudeCity": -2.2, + "longitudeCity": -80.98333, + "nameCity": "Salinas", + "timezone": "America/Guayaquil" + }, + { + "GMT": "7", + "cityId": 6872, + "codeIataCity": "SND", + "codeIso2Country": "LA", + "geonameId": 0, + "latitudeCity": 16.666668, + "longitudeCity": 105.01667, + "nameCity": "Seno", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-1", + "cityId": 6873, + "codeIataCity": "SNE", + "codeIso2Country": "CV", + "geonameId": 3374462, + "latitudeCity": 16.586945, + "longitudeCity": -24.28861, + "nameCity": "Sao Nicolau", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "-4", + "cityId": 6874, + "codeIataCity": "SNF", + "codeIso2Country": "VE", + "geonameId": 3625549, + "latitudeCity": 10.280278, + "longitudeCity": -68.75389, + "nameCity": "San Felipe", + "timezone": "America/Caracas" + }, + { + "GMT": "-4", + "cityId": 6875, + "codeIataCity": "SNG", + "codeIso2Country": "BO", + "geonameId": 3905658, + "latitudeCity": -16.383057, + "longitudeCity": -60.97639, + "nameCity": "San Ignacio De Velasco", + "timezone": "America/La_Paz" + }, + { + "GMT": "10", + "cityId": 6876, + "codeIataCity": "SNH", + "codeIso2Country": "AU", + "geonameId": 2148507, + "latitudeCity": -28.65, + "longitudeCity": 151.95, + "nameCity": "Stanthorpe", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "0", + "cityId": 6877, + "codeIataCity": "SNI", + "codeIso2Country": "LR", + "geonameId": 2276600, + "latitudeCity": 5.033056, + "longitudeCity": -9.063611, + "nameCity": "Sinoe", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-5", + "cityId": 6878, + "codeIataCity": "SNJ", + "codeIso2Country": "CU", + "geonameId": 0, + "latitudeCity": 22.083332, + "longitudeCity": -84.15, + "nameCity": "San Julian", + "timezone": "America/Havana" + }, + { + "GMT": "-6", + "cityId": 6879, + "codeIataCity": "SNK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 32.716667, + "longitudeCity": -100.9, + "nameCity": "Snyder", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 6880, + "codeIataCity": "SNL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 35.333332, + "longitudeCity": -96.916664, + "nameCity": "Shawnee", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 6881, + "codeIataCity": "SNM", + "codeIso2Country": "BO", + "geonameId": 3902377, + "latitudeCity": -14.966389, + "longitudeCity": -65.63556, + "nameCity": "San Ignacio De M", + "timezone": "America/La_Paz" + }, + { + "GMT": "0", + "cityId": 6882, + "codeIataCity": "SNN", + "codeIso2Country": "IE", + "geonameId": 3310247, + "latitudeCity": 52.69248, + "longitudeCity": -8.92039, + "nameCity": "Shannon", + "timezone": "Europe/Dublin" + }, + { + "GMT": "7", + "cityId": 6883, + "codeIataCity": "SNO", + "codeIso2Country": "TH", + "geonameId": 1606790, + "latitudeCity": 17.283333, + "longitudeCity": 104.1, + "nameCity": "Sakon Nakhon", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-9", + "cityId": 6884, + "codeIataCity": "SNP", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.15222, + "longitudeCity": -170.21722, + "nameCity": "Saint Paul Island", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "cityId": 6885, + "codeIataCity": "SNQ", + "codeIso2Country": "MX", + "geonameId": 3971310, + "latitudeCity": 30.5, + "longitudeCity": -116.0, + "nameCity": "San Quintin", + "timezone": "America/Hermosillo" + }, + { + "GMT": "1", + "cityId": 6886, + "codeIataCity": "SNR", + "codeIso2Country": "FR", + "geonameId": 2971680, + "latitudeCity": 47.29111, + "longitudeCity": -2.182222, + "nameCity": "St Nazaire", + "timezone": "Europe/Paris" + }, + { + "GMT": "-8", + "cityId": 6887, + "codeIataCity": "SNS", + "codeIso2Country": "US", + "geonameId": 5391295, + "latitudeCity": 36.666668, + "longitudeCity": -121.65, + "nameCity": "Salinas", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 6888, + "codeIataCity": "SNT", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 7.666667, + "longitudeCity": -73.0, + "nameCity": "Sabana De Torres", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 6889, + "codeIataCity": "SNU", + "codeIso2Country": "CU", + "geonameId": 0, + "latitudeCity": 22.491943, + "longitudeCity": -79.94194, + "nameCity": "Santa Clara", + "timezone": "America/Havana" + }, + { + "GMT": "-4", + "cityId": 6890, + "codeIataCity": "SNV", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 4.55, + "longitudeCity": -61.11667, + "nameCity": "Santa Elena", + "timezone": "America/Caracas" + }, + { + "GMT": "6.30", + "cityId": 6891, + "codeIataCity": "SNW", + "codeIso2Country": "MM", + "geonameId": 1298073, + "latitudeCity": 18.453876, + "longitudeCity": 94.30038, + "nameCity": "Thandwe", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-4", + "cityId": 6892, + "codeIataCity": "SNX", + "codeIso2Country": "DO", + "geonameId": 0, + "latitudeCity": 19.116667, + "longitudeCity": -69.4, + "nameCity": "Sabana De Mar", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "-7", + "cityId": 6893, + "codeIataCity": "SNY", + "codeIso2Country": "US", + "geonameId": 5699552, + "latitudeCity": 41.099445, + "longitudeCity": -102.9825, + "nameCity": "Sidney", + "timezone": "America/Denver" + }, + { + "GMT": "-4", + "cityId": 6894, + "codeIataCity": "SNZ", + "codeIso2Country": "BR", + "geonameId": 3465342, + "latitudeCity": -6.216667, + "longitudeCity": -36.016666, + "nameCity": "Santa Cruz", + "timezone": "America/Campo_Grande" + }, + { + "GMT": "7", + "cityId": 6895, + "codeIataCity": "SOA", + "codeIso2Country": "VN", + "geonameId": 1586203, + "latitudeCity": 9.616667, + "longitudeCity": 105.833336, + "nameCity": "Soc Trang", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "1", + "cityId": 6896, + "codeIataCity": "SOB", + "codeIso2Country": "HU", + "geonameId": 722670, + "latitudeCity": 46.71347, + "longitudeCity": 17.240444, + "nameCity": "Sarmellek", + "timezone": "Europe/Budapest" + }, + { + "GMT": "7", + "cityId": 6897, + "codeIataCity": "SOC", + "codeIso2Country": "ID", + "geonameId": 1621177, + "latitudeCity": -7.51583, + "longitudeCity": 110.75667, + "nameCity": "Solo City", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-3", + "cityId": 6898, + "codeIataCity": "SOD", + "codeIso2Country": "BR", + "geonameId": 3448439, + "latitudeCity": -23.483334, + "longitudeCity": -47.45, + "nameCity": "Sorocaba", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "cityId": 6899, + "codeIataCity": "SOE", + "codeIso2Country": "CG", + "geonameId": 0, + "latitudeCity": 2.0, + "longitudeCity": 14.166667, + "nameCity": "Souanke", + "timezone": "Africa/Brazzaville" + }, + { + "GMT": "2", + "cityId": 6900, + "codeIataCity": "SOF", + "codeIso2Country": "BG", + "geonameId": 727011, + "latitudeCity": 42.688343, + "longitudeCity": 23.41443, + "nameCity": "Sofia", + "timezone": "Europe/Sofia" + }, + { + "GMT": "1", + "cityId": 6901, + "codeIataCity": "SOG", + "codeIso2Country": "NO", + "geonameId": 7288345, + "latitudeCity": 61.158127, + "longitudeCity": 7.136988, + "nameCity": "Sogndal", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "cityId": 6902, + "codeIataCity": "SOH", + "codeIso2Country": "CO", + "geonameId": 6792004, + "latitudeCity": 9.2, + "longitudeCity": -71.76667, + "nameCity": "Solita", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "cityId": 6903, + "codeIataCity": "SOI", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -20.75, + "longitudeCity": 148.58333, + "nameCity": "South Molle Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 6904, + "codeIataCity": "SOJ", + "codeIso2Country": "NO", + "geonameId": 777572, + "latitudeCity": 69.78333, + "longitudeCity": 20.933332, + "nameCity": "Sorkjosen", + "timezone": "Europe/Oslo" + }, + { + "GMT": "2", + "cityId": 6905, + "codeIataCity": "SOK", + "codeIso2Country": "LS", + "geonameId": 0, + "latitudeCity": -29.833332, + "longitudeCity": 28.5, + "nameCity": "Semongkong", + "timezone": "Africa/Maseru" + }, + { + "GMT": "-9", + "cityId": 6906, + "codeIataCity": "SOL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 64.56084, + "longitudeCity": -164.44028, + "nameCity": "Solomon", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "cityId": 6907, + "codeIataCity": "SOM", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 8.949167, + "longitudeCity": -64.145836, + "nameCity": "San Tome", + "timezone": "America/Caracas" + }, + { + "GMT": "11", + "cityId": 6908, + "codeIataCity": "SON", + "codeIso2Country": "VU", + "geonameId": 2136150, + "latitudeCity": -15.508251, + "longitudeCity": 167.21873, + "nameCity": "Espiritu Santo", + "timezone": "Pacific/Efate" + }, + { + "GMT": "1", + "cityId": 6909, + "codeIataCity": "SOO", + "codeIso2Country": "SE", + "geonameId": 2676224, + "latitudeCity": 61.3, + "longitudeCity": 17.05, + "nameCity": "Soderhamn", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "cityId": 6910, + "codeIataCity": "SOP", + "codeIso2Country": "US", + "geonameId": 4492722, + "latitudeCity": 35.23761, + "longitudeCity": -79.388794, + "nameCity": "Southern Pines", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "cityId": 6911, + "codeIataCity": "SOQ", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -0.890214, + "longitudeCity": 131.29059, + "nameCity": "Sorong", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "2", + "cityId": 6912, + "codeIataCity": "SOR", + "codeIso2Country": "SY", + "geonameId": 0, + "latitudeCity": 34.4, + "longitudeCity": 40.166668, + "nameCity": "Al Thaurah", + "timezone": "Asia/Damascus" + }, + { + "GMT": "2", + "cityId": 6913, + "codeIataCity": "SOT", + "codeIso2Country": "FI", + "geonameId": 7117281, + "latitudeCity": 67.38333, + "longitudeCity": 26.616667, + "nameCity": "Sodankyla", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "0", + "cityId": 6914, + "codeIataCity": "SOU", + "codeIso2Country": "GB", + "geonameId": 2637487, + "latitudeCity": 50.950726, + "longitudeCity": -1.361318, + "nameCity": "Eastleigh near Southampton", + "timezone": "Europe/London" + }, + { + "GMT": "-9", + "cityId": 6915, + "codeIataCity": "SOV", + "codeIso2Country": "US", + "geonameId": 5873667, + "latitudeCity": 59.4425, + "longitudeCity": -151.70416, + "nameCity": "Seldovia", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "cityId": 6916, + "codeIataCity": "SOW", + "codeIso2Country": "US", + "geonameId": 5314245, + "latitudeCity": 34.264442, + "longitudeCity": -110.004166, + "nameCity": "Show Low", + "timezone": "America/Phoenix" + }, + { + "GMT": "-5", + "cityId": 6917, + "codeIataCity": "SOX", + "codeIso2Country": "CO", + "geonameId": 3667873, + "latitudeCity": 5.716667, + "longitudeCity": -72.933334, + "nameCity": "Sogamoso", + "timezone": "America/Bogota" + }, + { + "GMT": "0", + "cityId": 6918, + "codeIataCity": "SOY", + "codeIso2Country": "GB", + "geonameId": 7670897, + "latitudeCity": 59.154053, + "longitudeCity": -2.640495, + "nameCity": "Stronsay", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 6919, + "codeIataCity": "SOZ", + "codeIso2Country": "FR", + "geonameId": 2974366, + "latitudeCity": 41.88333, + "longitudeCity": 9.383333, + "nameCity": "Solenzara", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 6920, + "codeIataCity": "SPA", + "codeIso2Country": "US", + "geonameId": 4597200, + "latitudeCity": 34.95, + "longitudeCity": -81.916664, + "nameCity": "Spartanburg", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 6921, + "codeIataCity": "SPC", + "codeIso2Country": "ES", + "geonameId": 2511180, + "latitudeCity": 28.626389, + "longitudeCity": -17.755556, + "nameCity": "Santa Cruz De La Palma", + "timezone": "Atlantic/Canary" + }, + { + "GMT": "6", + "cityId": 6922, + "codeIataCity": "SPD", + "codeIso2Country": "BD", + "geonameId": 0, + "latitudeCity": 25.783333, + "longitudeCity": 88.9, + "nameCity": "Saidpur", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "8", + "cityId": 6923, + "codeIataCity": "SPE", + "codeIso2Country": "MY", + "geonameId": 0, + "latitudeCity": 4.712222, + "longitudeCity": 116.45695, + "nameCity": "Sepulot", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-7", + "cityId": 6924, + "codeIataCity": "SPF", + "codeIso2Country": "US", + "geonameId": 5769288, + "latitudeCity": 44.5, + "longitudeCity": -103.86667, + "nameCity": "Spearfish", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "cityId": 6925, + "codeIataCity": "SPG", + "codeIso2Country": "US", + "geonameId": 4171563, + "latitudeCity": 27.766945, + "longitudeCity": -82.625275, + "nameCity": "Saint Petersburg", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 6926, + "codeIataCity": "SPH", + "codeIso2Country": "PG", + "geonameId": 2088122, + "latitudeCity": -9.0, + "longitudeCity": 147.76666, + "nameCity": "Sopu", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 6927, + "codeIataCity": "SPI", + "codeIso2Country": "US", + "geonameId": 4250542, + "latitudeCity": 39.844166, + "longitudeCity": -89.67889, + "nameCity": "Springfield", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 6928, + "codeIataCity": "SPJ", + "codeIso2Country": "GR", + "geonameId": 253394, + "latitudeCity": 36.983334, + "longitudeCity": 22.533333, + "nameCity": "Sparta", + "timezone": "Europe/Athens" + }, + { + "GMT": "9", + "cityId": 6929, + "codeIataCity": "SPK", + "codeIso2Country": "JP", + "geonameId": 2130452, + "latitudeCity": 43.062096, + "longitudeCity": 141.354376, + "nameCity": "Sapporo", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "cityId": 6930, + "codeIataCity": "SPM", + "codeIso2Country": "DE", + "geonameId": 2821164, + "latitudeCity": 50.06547, + "longitudeCity": 6.835917, + "nameCity": "Spangdahlem", + "timezone": "Europe/Berlin" + }, + { + "GMT": "10", + "cityId": 6931, + "codeIataCity": "SPN", + "codeIso2Country": "MP", + "geonameId": 7828758, + "latitudeCity": 15.122178, + "longitudeCity": 145.72325, + "nameCity": "Saipan", + "timezone": "Pacific/Saipan" + }, + { + "GMT": "1", + "cityId": 6932, + "codeIataCity": "SPO", + "codeIso2Country": "ES", + "geonameId": 0, + "latitudeCity": 37.38333, + "longitudeCity": -5.75, + "nameCity": "San Pablo", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "cityId": 6933, + "codeIataCity": "SPP", + "codeIso2Country": "AO", + "geonameId": 3347353, + "latitudeCity": -14.6375, + "longitudeCity": 17.725555, + "nameCity": "Menongue", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-8", + "cityId": 6934, + "codeIataCity": "SPQ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 33.750557, + "longitudeCity": -118.27278, + "nameCity": "San Pedro", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 6935, + "codeIataCity": "SPR", + "codeIso2Country": "BZ", + "geonameId": 3581164, + "latitudeCity": 17.911112, + "longitudeCity": -87.96861, + "nameCity": "San Pedro", + "timezone": "America/Belize" + }, + { + "GMT": "-6", + "cityId": 6936, + "codeIataCity": "SPS", + "codeIso2Country": "US", + "geonameId": 4741752, + "latitudeCity": 33.988335, + "longitudeCity": -98.49194, + "nameCity": "Wichita Falls", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 6937, + "codeIataCity": "SPT", + "codeIso2Country": "MY", + "geonameId": 1733782, + "latitudeCity": 5.083333, + "longitudeCity": 115.55, + "nameCity": "Sipitang", + "timezone": "Asia/Kuching" + }, + { + "GMT": "1", + "cityId": 6938, + "codeIataCity": "SPU", + "codeIso2Country": "HR", + "geonameId": 3190261, + "latitudeCity": 43.536526, + "longitudeCity": 16.29946, + "nameCity": "Split", + "timezone": "Europe/Zagreb" + }, + { + "GMT": "10", + "cityId": 6939, + "codeIataCity": "SPV", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -3.816667, + "longitudeCity": 144.5, + "nameCity": "Sepik Plains", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 6940, + "codeIataCity": "SPW", + "codeIso2Country": "US", + "geonameId": 4847187, + "latitudeCity": 43.16389, + "longitudeCity": -95.200836, + "nameCity": "Spencer", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 6941, + "codeIataCity": "SPY", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 4.730278, + "longitudeCity": -6.626944, + "nameCity": "San Pedro", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "-6", + "cityId": 6942, + "codeIataCity": "SPZ", + "codeIso2Country": "US", + "geonameId": 4132093, + "latitudeCity": 36.183334, + "longitudeCity": -94.166664, + "nameCity": "Springdale", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 6943, + "codeIataCity": "SQA", + "codeIso2Country": "US", + "geonameId": 5393388, + "latitudeCity": 34.066666, + "longitudeCity": -118.566666, + "nameCity": "Santa Ynez", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 6944, + "codeIataCity": "SQB", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 9.316667, + "longitudeCity": -74.583336, + "nameCity": "Santa Ana", + "timezone": "America/Bogota" + }, + { + "GMT": "8", + "cityId": 6945, + "codeIataCity": "SQC", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -31.25, + "longitudeCity": 119.35, + "nameCity": "Southern Cross", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "cityId": 6946, + "codeIataCity": "SQE", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": -12.066667, + "longitudeCity": -77.0, + "nameCity": "San Luis De Pale", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 6947, + "codeIataCity": "SQF", + "codeIso2Country": "CO", + "geonameId": 3667868, + "latitudeCity": 2.0, + "longitudeCity": -66.96667, + "nameCity": "Solano", + "timezone": "America/Bogota" + }, + { + "GMT": "8", + "cityId": 6948, + "codeIataCity": "SQG", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 0.083333, + "longitudeCity": 111.583336, + "nameCity": "Sintang", + "timezone": "Asia/Makassar" + }, + { + "GMT": "7", + "cityId": 6949, + "codeIataCity": "SQH", + "codeIso2Country": "VN", + "geonameId": 0, + "latitudeCity": 21.218056, + "longitudeCity": 104.025, + "nameCity": "Son-La", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-6", + "cityId": 6950, + "codeIataCity": "SQI", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.74, + "longitudeCity": -89.68083, + "nameCity": "Sterling Rockfalls", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 6951, + "codeIataCity": "SQK", + "codeIso2Country": "EG", + "geonameId": 0, + "latitudeCity": 31.6, + "longitudeCity": 25.933332, + "nameCity": "Sidi Barani", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-8", + "cityId": 6952, + "codeIataCity": "SQL", + "codeIso2Country": "US", + "geonameId": 5391760, + "latitudeCity": 37.483334, + "longitudeCity": -122.25, + "nameCity": "San Carlos", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "cityId": 6953, + "codeIataCity": "SQM", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -13.316667, + "longitudeCity": -50.216667, + "nameCity": "S?o Miguel de Aragao", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "9", + "cityId": 6954, + "codeIataCity": "SQN", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -2.2, + "longitudeCity": 125.916664, + "nameCity": "Sanana", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "cityId": 6955, + "codeIataCity": "SQO", + "codeIso2Country": "SE", + "geonameId": 2671530, + "latitudeCity": 64.96222, + "longitudeCity": 17.8, + "nameCity": "Storuman", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "2", + "cityId": 6956, + "codeIataCity": "SQQ", + "codeIso2Country": "LT", + "geonameId": 594739, + "latitudeCity": 55.933334, + "longitudeCity": 23.316668, + "nameCity": "Siauliai", + "timezone": "Europe/Vilnius" + }, + { + "GMT": "8", + "cityId": 6957, + "codeIataCity": "SQR", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.166667, + "longitudeCity": 122.666664, + "nameCity": "Soroako", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-6", + "cityId": 6958, + "codeIataCity": "SQS", + "codeIso2Country": "BZ", + "geonameId": 3581194, + "latitudeCity": 17.183332, + "longitudeCity": -89.03333, + "nameCity": "San Ignacio", + "timezone": "America/Belize" + }, + { + "GMT": "10", + "cityId": 6959, + "codeIataCity": "SQT", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -10.55, + "longitudeCity": 150.68333, + "nameCity": "Samarai Island", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 6960, + "codeIataCity": "SQU", + "codeIso2Country": "PE", + "geonameId": 3691474, + "latitudeCity": -6.95, + "longitudeCity": -76.75, + "nameCity": "Saposoa", + "timezone": "America/Lima" + }, + { + "GMT": "-8", + "cityId": 6961, + "codeIataCity": "SQV", + "codeIso2Country": "US", + "geonameId": 5809983, + "latitudeCity": 48.09778, + "longitudeCity": -123.18528, + "nameCity": "Sequim", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 6962, + "codeIataCity": "SQW", + "codeIso2Country": "DK", + "geonameId": 2613731, + "latitudeCity": 56.563556, + "longitudeCity": 9.032142, + "nameCity": "Skive", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-3", + "cityId": 6963, + "codeIataCity": "SQX", + "codeIso2Country": "BR", + "geonameId": 3466296, + "latitudeCity": -26.780556, + "longitudeCity": -53.502777, + "nameCity": "Sao Miguel do Oeste", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-3", + "cityId": 6964, + "codeIataCity": "SQY", + "codeIso2Country": "BR", + "geonameId": 3451138, + "latitudeCity": -31.382778, + "longitudeCity": -52.032223, + "nameCity": "Sao Lourenco Do Sul", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "0", + "cityId": 6965, + "codeIataCity": "SQZ", + "codeIso2Country": "GB", + "geonameId": 2633352, + "latitudeCity": 53.3, + "longitudeCity": -0.583333, + "nameCity": "Scampton", + "timezone": "Europe/London" + }, + { + "GMT": "-3", + "cityId": 6966, + "codeIataCity": "SRA", + "codeIso2Country": "BR", + "geonameId": 3449822, + "latitudeCity": -27.866667, + "longitudeCity": -54.483334, + "nameCity": "Santa Rosa", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-4", + "cityId": 6967, + "codeIataCity": "SRB", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -10.6, + "longitudeCity": -67.333336, + "nameCity": "Santa Rosa", + "timezone": "America/La_Paz" + }, + { + "GMT": "-6", + "cityId": 6968, + "codeIataCity": "SRC", + "codeIso2Country": "US", + "geonameId": 4130430, + "latitudeCity": 35.25, + "longitudeCity": -91.73333, + "nameCity": "Searcy", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 6969, + "codeIataCity": "SRD", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -13.283333, + "longitudeCity": -64.71667, + "nameCity": "San Ramon", + "timezone": "America/La_Paz" + }, + { + "GMT": "-4", + "cityId": 6970, + "codeIataCity": "SRE", + "codeIso2Country": "BO", + "geonameId": 3903987, + "latitudeCity": -19.007778, + "longitudeCity": -65.30167, + "nameCity": "Sucre", + "timezone": "America/La_Paz" + }, + { + "GMT": "-8", + "cityId": 6971, + "codeIataCity": "SRF", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 37.973535, + "longitudeCity": -122.531087, + "nameCity": "San Rafael", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "7", + "cityId": 6972, + "codeIataCity": "SRG", + "codeIso2Country": "ID", + "geonameId": 1627896, + "latitudeCity": -6.979155, + "longitudeCity": 110.37855, + "nameCity": "Semarang", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "1", + "cityId": 6973, + "codeIataCity": "SRH", + "codeIso2Country": "TD", + "geonameId": 0, + "latitudeCity": 9.083333, + "longitudeCity": 18.383333, + "nameCity": "Sarh", + "timezone": "Africa/Ndjamena" + }, + { + "GMT": "8", + "cityId": 6974, + "codeIataCity": "SRI", + "codeIso2Country": "ID", + "geonameId": 1629001, + "latitudeCity": -0.5, + "longitudeCity": 117.15, + "nameCity": "Samarinda", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-4", + "cityId": 6975, + "codeIataCity": "SRJ", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -14.816667, + "longitudeCity": -66.833336, + "nameCity": "San Borja", + "timezone": "America/La_Paz" + }, + { + "GMT": "-7", + "cityId": 6976, + "codeIataCity": "SRL", + "codeIso2Country": "MX", + "geonameId": 4021889, + "latitudeCity": 27.2, + "longitudeCity": -112.25, + "nameCity": "Santa Rosalia", + "timezone": "America/Hermosillo" + }, + { + "GMT": "10", + "cityId": 6977, + "codeIataCity": "SRM", + "codeIso2Country": "AU", + "geonameId": 2150460, + "latitudeCity": -24.05, + "longitudeCity": 139.06667, + "nameCity": "Sandringham", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "10", + "cityId": 6978, + "codeIataCity": "SRN", + "codeIso2Country": "AU", + "geonameId": 2148132, + "latitudeCity": -42.15, + "longitudeCity": 145.31667, + "nameCity": "Strahan", + "timezone": "Australia/Hobart" + }, + { + "GMT": "-5", + "cityId": 6979, + "codeIataCity": "SRO", + "codeIso2Country": "CO", + "geonameId": 3673899, + "latitudeCity": 9.916944, + "longitudeCity": -126.06694, + "nameCity": "Santana Ramos", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 6980, + "codeIataCity": "SRP", + "codeIso2Country": "NO", + "geonameId": 3136522, + "latitudeCity": 59.833332, + "longitudeCity": 5.416667, + "nameCity": "Stord", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "cityId": 6981, + "codeIataCity": "SRQ", + "codeIso2Country": "US", + "geonameId": 4172131, + "latitudeCity": 27.38748, + "longitudeCity": -82.55328, + "nameCity": "Sarasota", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 6982, + "codeIataCity": "SRR", + "codeIso2Country": "AU", + "geonameId": 5488598, + "latitudeCity": 33.360832, + "longitudeCity": -105.6625, + "nameCity": "Stradbroke Island", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "cityId": 6983, + "codeIataCity": "SRS", + "codeIso2Country": "CO", + "geonameId": 3685712, + "latitudeCity": 8.65, + "longitudeCity": -75.13333, + "nameCity": "San Marcos", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "cityId": 6984, + "codeIataCity": "SRT", + "codeIso2Country": "UG", + "geonameId": 0, + "latitudeCity": 1.7, + "longitudeCity": 33.61667, + "nameCity": "Soroti", + "timezone": "Africa/Kampala" + }, + { + "GMT": "-8", + "cityId": 6985, + "codeIataCity": "SRU", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 36.966667, + "longitudeCity": -122.01667, + "nameCity": "Santa Cruz", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-9", + "cityId": 6986, + "codeIataCity": "SRV", + "codeIso2Country": "US", + "geonameId": 5875240, + "latitudeCity": 61.79111, + "longitudeCity": -156.5861, + "nameCity": "Stony River", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 6987, + "codeIataCity": "SRW", + "codeIso2Country": "US", + "geonameId": 4489985, + "latitudeCity": 35.666668, + "longitudeCity": -80.48333, + "nameCity": "Salisbury", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 6988, + "codeIataCity": "SRX", + "codeIso2Country": "LY", + "geonameId": 0, + "latitudeCity": 31.060917, + "longitudeCity": 16.612036, + "nameCity": "Sert", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "3.30", + "cityId": 6989, + "codeIataCity": "SRY", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 36.635727, + "longitudeCity": 53.197277, + "nameCity": "Sary", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-4", + "cityId": 6990, + "codeIataCity": "SRZ", + "codeIso2Country": "BO", + "geonameId": 3904906, + "latitudeCity": -17.78879, + "longitudeCity": -63.197418, + "nameCity": "Santa Cruz", + "timezone": "America/La_Paz" + }, + { + "GMT": "-3", + "cityId": 6991, + "codeIataCity": "SSA", + "codeIso2Country": "BR", + "geonameId": 6317464, + "latitudeCity": -12.913988, + "longitudeCity": -38.335197, + "nameCity": "Salvador", + "timezone": "America/Bahia" + }, + { + "GMT": "-5", + "cityId": 6992, + "codeIataCity": "SSC", + "codeIso2Country": "US", + "geonameId": 4597948, + "latitudeCity": 33.9, + "longitudeCity": -80.11667, + "nameCity": "Sumter", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 6993, + "codeIataCity": "SSD", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 1.916667, + "longitudeCity": -67.1, + "nameCity": "San Felipe", + "timezone": "America/Bogota" + }, + { + "GMT": "5.30", + "cityId": 6994, + "codeIataCity": "SSE", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 17.633333, + "longitudeCity": 75.933334, + "nameCity": "Sholapur", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "cityId": 6995, + "codeIataCity": "SSG", + "codeIso2Country": "GQ", + "geonameId": 2309527, + "latitudeCity": 3.757791, + "longitudeCity": 8.716096, + "nameCity": "Malabo", + "timezone": "Africa/Malabo" + }, + { + "GMT": "2", + "cityId": 6996, + "codeIataCity": "SSH", + "codeIso2Country": "EG", + "geonameId": 349340, + "latitudeCity": 27.979357, + "longitudeCity": 34.385254, + "nameCity": "Sharm el-Sheikh", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-5", + "cityId": 6997, + "codeIataCity": "SSI", + "codeIso2Country": "US", + "geonameId": 4220866, + "latitudeCity": 31.165916, + "longitudeCity": -81.46347, + "nameCity": "Brunswick", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 6998, + "codeIataCity": "SSJ", + "codeIso2Country": "NO", + "geonameId": 3140301, + "latitudeCity": 65.959946, + "longitudeCity": 12.476518, + "nameCity": "Sandnessjoen", + "timezone": "Europe/Oslo" + }, + { + "GMT": "8", + "cityId": 6999, + "codeIataCity": "SSK", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -19.2, + "longitudeCity": 128.13333, + "nameCity": "Sturt Creek", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "cityId": 7000, + "codeIataCity": "SSL", + "codeIso2Country": "CO", + "geonameId": 3779194, + "latitudeCity": 1.466667, + "longitudeCity": -72.23333, + "nameCity": "Santa Rosalia", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 7001, + "codeIataCity": "SSM", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 46.5, + "longitudeCity": -84.35, + "nameCity": "Sault Sainte Marie", + "timezone": "America/Detroit" + }, + { + "GMT": "-3", + "cityId": 7002, + "codeIataCity": "SSO", + "codeIso2Country": "BR", + "geonameId": 3448616, + "latitudeCity": -22.116667, + "longitudeCity": -45.05, + "nameCity": "Sao Lourenco", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "cityId": 7003, + "codeIataCity": "SSP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -13.983333, + "longitudeCity": 143.55, + "nameCity": "Silver Plains", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 7004, + "codeIataCity": "SSQ", + "codeIso2Country": "CA", + "geonameId": 6050194, + "latitudeCity": 48.916668, + "longitudeCity": -79.166664, + "nameCity": "La Sarre", + "timezone": "America/Montreal" + }, + { + "GMT": "11", + "cityId": 7005, + "codeIataCity": "SSR", + "codeIso2Country": "VU", + "geonameId": 0, + "latitudeCity": -15.5, + "longitudeCity": 168.3, + "nameCity": "Sara", + "timezone": "Pacific/Efate" + }, + { + "GMT": "10", + "cityId": 7006, + "codeIataCity": "SSS", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.616667, + "longitudeCity": 147.81667, + "nameCity": "Siassi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "cityId": 7007, + "codeIataCity": "SST", + "codeIso2Country": "AR", + "geonameId": 3428123, + "latitudeCity": -33.416668, + "longitudeCity": -60.783333, + "nameCity": "Santa Teresita", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "-5", + "cityId": 7008, + "codeIataCity": "SSU", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 37.8, + "longitudeCity": -80.3, + "nameCity": "White Sulphur Springs", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 7009, + "codeIataCity": "SSV", + "codeIso2Country": "PH", + "geonameId": 1686874, + "latitudeCity": 5.5, + "longitudeCity": 120.816666, + "nameCity": "Siasi", + "timezone": "Asia/Manila" + }, + { + "GMT": "-8", + "cityId": 7010, + "codeIataCity": "SSW", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 48.67288, + "longitudeCity": -123.17574, + "nameCity": "Stuart Island", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 7011, + "codeIataCity": "SSY", + "codeIso2Country": "AO", + "geonameId": 7839143, + "latitudeCity": -6.273889, + "longitudeCity": 14.244167, + "nameCity": "M'banza Congo", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-3", + "cityId": 7012, + "codeIataCity": "SSZ", + "codeIso2Country": "BR", + "geonameId": 3461789, + "latitudeCity": -23.933332, + "longitudeCity": -46.36667, + "nameCity": "Santos", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "cityId": 7013, + "codeIataCity": "STA", + "codeIso2Country": "DK", + "geonameId": 2617824, + "latitudeCity": 55.990276, + "longitudeCity": 8.355, + "nameCity": "Skjern", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-4", + "cityId": 7014, + "codeIataCity": "STB", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 9.033333, + "longitudeCity": -71.95, + "nameCity": "Santa Barbara Ed", + "timezone": "America/Caracas" + }, + { + "GMT": "-6", + "cityId": 7015, + "codeIataCity": "STC", + "codeIso2Country": "US", + "geonameId": 5044407, + "latitudeCity": 45.55, + "longitudeCity": -94.166664, + "nameCity": "Saint Cloud", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 7016, + "codeIataCity": "STD", + "codeIso2Country": "VE", + "geonameId": 3627025, + "latitudeCity": 7.583333, + "longitudeCity": -72.066666, + "nameCity": "Santo Domingo", + "timezone": "America/Caracas" + }, + { + "GMT": "-6", + "cityId": 7017, + "codeIataCity": "STE", + "codeIso2Country": "US", + "geonameId": 5274644, + "latitudeCity": 44.545277, + "longitudeCity": -89.53083, + "nameCity": "Stevens Point", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 7018, + "codeIataCity": "STF", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -9.5, + "longitudeCity": 143.56667, + "nameCity": "Stephen Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "cityId": 7019, + "codeIataCity": "STG", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 56.6, + "longitudeCity": -169.5525, + "nameCity": "St George Island", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 7020, + "codeIataCity": "STH", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.833332, + "longitudeCity": 142.58333, + "nameCity": "Strathmore", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-4", + "cityId": 7021, + "codeIataCity": "STI", + "codeIso2Country": "DO", + "geonameId": 3492914, + "latitudeCity": 19.401829, + "longitudeCity": -70.60208, + "nameCity": "Santiago", + "timezone": "America/Santo_Domingo" + }, + { + "GMT": "-6", + "cityId": 7022, + "codeIataCity": "STJ", + "codeIso2Country": "US", + "geonameId": 4407010, + "latitudeCity": 39.960556, + "longitudeCity": -94.925, + "nameCity": "St Joseph", + "timezone": "America/Chicago" + }, + { + "GMT": "-7", + "cityId": 7023, + "codeIataCity": "STK", + "codeIso2Country": "US", + "geonameId": 5699552, + "latitudeCity": 40.61611, + "longitudeCity": -103.26722, + "nameCity": "Sterling", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 7024, + "codeIataCity": "STL", + "codeIso2Country": "US", + "geonameId": 4407066, + "latitudeCity": 38.627003, + "longitudeCity": -90.199404, + "nameCity": "St Louis", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 7025, + "codeIataCity": "STM", + "codeIso2Country": "BR", + "geonameId": 3389353, + "latitudeCity": -2.424886, + "longitudeCity": -54.78639, + "nameCity": "Santarem", + "timezone": "America/Santarem" + }, + { + "GMT": "1", + "cityId": 7026, + "codeIataCity": "STO", + "codeIso2Country": "SE", + "geonameId": 2673730, + "latitudeCity": 59.332788, + "longitudeCity": 18.064488, + "nameCity": "Stockholm", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "cityId": 7027, + "codeIataCity": "STQ", + "codeIso2Country": "US", + "geonameId": 5184541, + "latitudeCity": 41.433334, + "longitudeCity": -78.566666, + "nameCity": "St Marys", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 7028, + "codeIataCity": "STR", + "codeIso2Country": "DE", + "geonameId": 2825297, + "latitudeCity": 48.777106, + "longitudeCity": 9.180769, + "nameCity": "Stuttgart", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-8", + "cityId": 7029, + "codeIataCity": "STS", + "codeIso2Country": "US", + "geonameId": 5391959, + "latitudeCity": 38.50889, + "longitudeCity": -122.81167, + "nameCity": "Santa Rosa", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "cityId": 7030, + "codeIataCity": "STT", + "codeIso2Country": "VI", + "geonameId": 4795467, + "latitudeCity": 18.3419, + "longitudeCity": -64.930701, + "nameCity": "Charlotte Amalie", + "timezone": "America/St_Thomas" + }, + { + "GMT": "-6", + "cityId": 7031, + "codeIataCity": "STU", + "codeIso2Country": "BZ", + "geonameId": 0, + "latitudeCity": 18.266666, + "longitudeCity": -88.45, + "nameCity": "Santa Cruz", + "timezone": "America/Belize" + }, + { + "GMT": "5.30", + "cityId": 7032, + "codeIataCity": "STV", + "codeIso2Country": "IN", + "geonameId": 1255364, + "latitudeCity": 21.117659, + "longitudeCity": 72.745255, + "nameCity": "Surat", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "3", + "cityId": 7033, + "codeIataCity": "STW", + "codeIso2Country": "RU", + "geonameId": 487846, + "latitudeCity": 45.333332, + "longitudeCity": 42.00833, + "nameCity": "Stavropol", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-4", + "cityId": 7034, + "codeIataCity": "STX", + "codeIso2Country": "VI", + "geonameId": 4795479, + "latitudeCity": 17.74664, + "longitudeCity": -64.703198, + "nameCity": "Christiansted", + "timezone": "America/St_Thomas" + }, + { + "GMT": "-3", + "cityId": 7035, + "codeIataCity": "STY", + "codeIso2Country": "UY", + "geonameId": 3440714, + "latitudeCity": -31.436666, + "longitudeCity": -57.988335, + "nameCity": "Salto", + "timezone": "America/Montevideo" + }, + { + "GMT": "-4", + "cityId": 7036, + "codeIataCity": "STZ", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -10.300278, + "longitudeCity": -50.45, + "nameCity": "Santa Terezinha", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-5", + "cityId": 7037, + "codeIataCity": "SUA", + "codeIso2Country": "US", + "geonameId": 4174201, + "latitudeCity": 27.2, + "longitudeCity": -80.25, + "nameCity": "Stuart", + "timezone": "America/New_York" + }, + { + "GMT": "7", + "cityId": 7038, + "codeIataCity": "SUB", + "codeIso2Country": "ID", + "geonameId": 1625820, + "latitudeCity": -7.38387, + "longitudeCity": 112.77724, + "nameCity": "Surabaya", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-7", + "cityId": 7039, + "codeIataCity": "SUC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 44.4, + "longitudeCity": -104.38333, + "nameCity": "Sundance", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 7040, + "codeIataCity": "SUD", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 35.75, + "longitudeCity": -96.683334, + "nameCity": "Stroud", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 7041, + "codeIataCity": "SUE", + "codeIso2Country": "US", + "geonameId": 5274867, + "latitudeCity": 44.843887, + "longitudeCity": -87.42139, + "nameCity": "Sturgeon Bay", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 7042, + "codeIataCity": "SUF", + "codeIso2Country": "IT", + "geonameId": 6534232, + "latitudeCity": 38.91, + "longitudeCity": 16.24, + "nameCity": "Lamezia Terme", + "timezone": "Europe/Rome" + }, + { + "GMT": "8", + "cityId": 7043, + "codeIataCity": "SUG", + "codeIso2Country": "PH", + "geonameId": 1685218, + "latitudeCity": 9.758889, + "longitudeCity": 125.479164, + "nameCity": "Surigao", + "timezone": "Asia/Manila" + }, + { + "GMT": "4", + "cityId": 7044, + "codeIataCity": "SUH", + "codeIso2Country": "OM", + "geonameId": 0, + "latitudeCity": 22.533333, + "longitudeCity": 59.483334, + "nameCity": "Sur", + "timezone": "Asia/Muscat" + }, + { + "GMT": "4", + "cityId": 7045, + "codeIataCity": "SUI", + "codeIso2Country": "GE", + "geonameId": 615761, + "latitudeCity": 42.86667, + "longitudeCity": 41.11667, + "nameCity": "Sukhumi", + "timezone": "Asia/Tbilisi" + }, + { + "GMT": "2", + "cityId": 7046, + "codeIataCity": "SUJ", + "codeIso2Country": "RO", + "geonameId": 667873, + "latitudeCity": 47.7, + "longitudeCity": 22.883333, + "nameCity": "Satu Mare", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "9", + "cityId": 7047, + "codeIataCity": "SUK", + "codeIso2Country": "KR", + "geonameId": 1834262, + "latitudeCity": 37.494446, + "longitudeCity": 129.13695, + "nameCity": "Samcheok", + "timezone": "Asia/Seoul" + }, + { + "GMT": "5", + "cityId": 7048, + "codeIataCity": "SUL", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 28.64889, + "longitudeCity": 69.1725, + "nameCity": "Sui", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-7", + "cityId": 7049, + "codeIataCity": "SUN", + "codeIso2Country": "US", + "geonameId": 5594956, + "latitudeCity": 43.697129, + "longitudeCity": -114.351717, + "nameCity": "Sun Valley", + "timezone": "America/Boise" + }, + { + "GMT": "-8", + "cityId": 7050, + "codeIataCity": "SUO", + "codeIso2Country": "US", + "geonameId": 5755337, + "latitudeCity": 43.916668, + "longitudeCity": -121.5, + "nameCity": "Sun River", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "7", + "cityId": 7051, + "codeIataCity": "SUP", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -7.066667, + "longitudeCity": 113.933334, + "nameCity": "Sumenep", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-5", + "cityId": 7052, + "codeIataCity": "SUQ", + "codeIso2Country": "EC", + "geonameId": 3660043, + "latitudeCity": -2.466667, + "longitudeCity": -78.166664, + "nameCity": "Sucua", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-5", + "cityId": 7053, + "codeIataCity": "SUR", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.71528, + "longitudeCity": -88.5475, + "nameCity": "Summer Beaver", + "timezone": "America/Toronto" + }, + { + "GMT": "3", + "cityId": 7054, + "codeIataCity": "SUT", + "codeIso2Country": "TZ", + "geonameId": 0, + "latitudeCity": -7.966667, + "longitudeCity": 31.616667, + "nameCity": "Sumbawanga", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-8", + "cityId": 7055, + "codeIataCity": "SUU", + "codeIso2Country": "US", + "geonameId": 5347335, + "latitudeCity": 38.2625, + "longitudeCity": -121.92694, + "nameCity": "Fairfield", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "12", + "cityId": 7056, + "codeIataCity": "SUV", + "codeIso2Country": "FJ", + "geonameId": 2198148, + "latitudeCity": -18.045885, + "longitudeCity": 178.55981, + "nameCity": "Suva", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-6", + "cityId": 7057, + "codeIataCity": "SUW", + "codeIso2Country": "US", + "geonameId": 5024719, + "latitudeCity": 46.691113, + "longitudeCity": -92.10333, + "nameCity": "Superior", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 7058, + "codeIataCity": "SUX", + "codeIso2Country": "US", + "geonameId": 4876523, + "latitudeCity": 42.401943, + "longitudeCity": -96.38417, + "nameCity": "Sioux City", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 7059, + "codeIataCity": "SUZ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -9.133333, + "longitudeCity": 147.6, + "nameCity": "Suria", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 7060, + "codeIataCity": "SVA", + "codeIso2Country": "US", + "geonameId": 5873445, + "latitudeCity": 63.69093, + "longitudeCity": -170.48679, + "nameCity": "Savoonga", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "cityId": 7061, + "codeIataCity": "SVB", + "codeIso2Country": "MG", + "geonameId": 1056899, + "latitudeCity": -14.276944, + "longitudeCity": 50.175, + "nameCity": "Sambava", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-7", + "cityId": 7062, + "codeIataCity": "SVC", + "codeIso2Country": "US", + "geonameId": 5491487, + "latitudeCity": 32.631943, + "longitudeCity": -108.15389, + "nameCity": "Silver City", + "timezone": "America/Denver" + }, + { + "GMT": "-4", + "cityId": 7063, + "codeIataCity": "SVD", + "codeIso2Country": "VC", + "geonameId": 3577879, + "latitudeCity": 13.14604, + "longitudeCity": -61.21038, + "nameCity": "St Vincent", + "timezone": "America/St_Vincent" + }, + { + "GMT": "-8", + "cityId": 7064, + "codeIataCity": "SVE", + "codeIso2Country": "US", + "geonameId": 5572400, + "latitudeCity": 40.416668, + "longitudeCity": -120.65, + "nameCity": "Susanville", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 7065, + "codeIataCity": "SVF", + "codeIso2Country": "BJ", + "geonameId": 0, + "latitudeCity": 8.033333, + "longitudeCity": 2.483333, + "nameCity": "Save", + "timezone": "Africa/Porto-Novo" + }, + { + "GMT": "1", + "cityId": 7066, + "codeIataCity": "SVG", + "codeIso2Country": "NO", + "geonameId": 3137115, + "latitudeCity": 58.969976, + "longitudeCity": 5.733107, + "nameCity": "Stavanger", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "cityId": 7067, + "codeIataCity": "SVH", + "codeIso2Country": "US", + "geonameId": 4493316, + "latitudeCity": 35.783333, + "longitudeCity": -80.88333, + "nameCity": "Statesville", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 7068, + "codeIataCity": "SVI", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 2.15, + "longitudeCity": -74.76667, + "nameCity": "San Vicente", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 7069, + "codeIataCity": "SVJ", + "codeIso2Country": "NO", + "geonameId": 3135020, + "latitudeCity": 68.24498, + "longitudeCity": 14.667774, + "nameCity": "Svolvaer", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "cityId": 7070, + "codeIataCity": "SVK", + "codeIso2Country": "BZ", + "geonameId": 3581447, + "latitudeCity": 16.7253, + "longitudeCity": -88.34, + "nameCity": "Silver Creek", + "timezone": "America/Belize" + }, + { + "GMT": "2", + "cityId": 7071, + "codeIataCity": "SVL", + "codeIso2Country": "FI", + "geonameId": 637292, + "latitudeCity": 61.95, + "longitudeCity": 28.95, + "nameCity": "Savonlinna", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "10", + "cityId": 7072, + "codeIataCity": "SVM", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -10.366667, + "longitudeCity": 142.11667, + "nameCity": "St Pauls", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 7073, + "codeIataCity": "SVP", + "codeIso2Country": "AO", + "geonameId": 3348078, + "latitudeCity": -12.404167, + "longitudeCity": 16.956667, + "nameCity": "Kuito", + "timezone": "Africa/Luanda" + }, + { + "GMT": "1", + "cityId": 7074, + "codeIataCity": "SVQ", + "codeIso2Country": "ES", + "geonameId": 2510911, + "latitudeCity": 37.38264, + "longitudeCity": -5.996295, + "nameCity": "Sevilla", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-9", + "cityId": 7075, + "codeIataCity": "SVS", + "codeIso2Country": "US", + "geonameId": 5875188, + "latitudeCity": 66.009445, + "longitudeCity": -149.09416, + "nameCity": "Stevens Village", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "cityId": 7076, + "codeIataCity": "SVT", + "codeIso2Country": "BW", + "geonameId": 0, + "latitudeCity": -18.633333, + "longitudeCity": 24.083332, + "nameCity": "Savuti", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "12", + "cityId": 7077, + "codeIataCity": "SVU", + "codeIso2Country": "FJ", + "geonameId": 2198520, + "latitudeCity": -16.798828, + "longitudeCity": 179.33913, + "nameCity": "Savusavu", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-4", + "cityId": 7078, + "codeIataCity": "SVV", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 7.0, + "longitudeCity": -62.0, + "nameCity": "San Salvador De", + "timezone": "America/Caracas" + }, + { + "GMT": "-9", + "cityId": 7079, + "codeIataCity": "SVW", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 61.0975, + "longitudeCity": -155.57222, + "nameCity": "Sparrevohn", + "timezone": "America/Anchorage" + }, + { + "GMT": "5", + "cityId": 7080, + "codeIataCity": "SVX", + "codeIso2Country": "RU", + "geonameId": 1486209, + "latitudeCity": 56.750336, + "longitudeCity": 60.804314, + "nameCity": "Ekaterinburg", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "11", + "cityId": 7081, + "codeIataCity": "SVY", + "codeIso2Country": "SB", + "geonameId": 2108502, + "latitudeCity": -9.133333, + "longitudeCity": 159.8, + "nameCity": "Savo", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-4", + "cityId": 7082, + "codeIataCity": "SVZ", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 7.843056, + "longitudeCity": -72.43806, + "nameCity": "San Antonio", + "timezone": "America/Caracas" + }, + { + "GMT": "8", + "cityId": 7083, + "codeIataCity": "SWA", + "codeIso2Country": "CN", + "geonameId": 1795940, + "latitudeCity": 23.430237, + "longitudeCity": 116.75859, + "nameCity": "Shantou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 7084, + "codeIataCity": "SWB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -21.516666, + "longitudeCity": 119.36667, + "nameCity": "Shaw River", + "timezone": "Australia/Perth" + }, + { + "GMT": "10", + "cityId": 7085, + "codeIataCity": "SWC", + "codeIso2Country": "AU", + "geonameId": 2148431, + "latitudeCity": -37.066666, + "longitudeCity": 142.76666, + "nameCity": "Stawell", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-9", + "cityId": 7086, + "codeIataCity": "SWD", + "codeIso2Country": "US", + "geonameId": 5873776, + "latitudeCity": 60.13333, + "longitudeCity": -149.41806, + "nameCity": "Seward", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 7087, + "codeIataCity": "SWE", + "codeIso2Country": "PG", + "geonameId": 2086499, + "latitudeCity": -6.283333, + "longitudeCity": 147.55, + "nameCity": "Siwea", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 7088, + "codeIataCity": "SWF", + "codeIso2Country": "US", + "geonameId": 5128654, + "latitudeCity": 41.49843, + "longitudeCity": -74.10104, + "nameCity": "Newburgh", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 7089, + "codeIataCity": "SWG", + "codeIso2Country": "PG", + "geonameId": 2087114, + "latitudeCity": -6.166667, + "longitudeCity": 147.3, + "nameCity": "Satwag", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 7090, + "codeIataCity": "SWH", + "codeIso2Country": "AU", + "geonameId": 2147756, + "latitudeCity": -35.38333, + "longitudeCity": 143.61667, + "nameCity": "Swan Hill", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "11", + "cityId": 7091, + "codeIataCity": "SWJ", + "codeIso2Country": "VU", + "geonameId": 2137621, + "latitudeCity": -16.25, + "longitudeCity": 167.16667, + "nameCity": "South West Bay", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-5", + "cityId": 7092, + "codeIataCity": "SWL", + "codeIso2Country": "BS", + "geonameId": 3571375, + "latitudeCity": 25.54, + "longitudeCity": -76.75, + "nameCity": "Spanish Wells", + "timezone": "America/Nassau" + }, + { + "GMT": "-4", + "cityId": 7093, + "codeIataCity": "SWM", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -11.216667, + "longitudeCity": -53.25, + "nameCity": "Suia-Missu", + "timezone": "America/Cuiaba" + }, + { + "GMT": "5", + "cityId": 7094, + "codeIataCity": "SWN", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 30.75, + "longitudeCity": 73.13333, + "nameCity": "Sahiwal", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-6", + "cityId": 7095, + "codeIataCity": "SWO", + "codeIso2Country": "US", + "geonameId": 4552215, + "latitudeCity": 36.15889, + "longitudeCity": -97.085556, + "nameCity": "Stillwater", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 7096, + "codeIataCity": "SWP", + "codeIso2Country": "NA", + "geonameId": 3352844, + "latitudeCity": -22.674101, + "longitudeCity": 14.52784, + "nameCity": "Swakopmund", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "8", + "cityId": 7097, + "codeIataCity": "SWQ", + "codeIso2Country": "ID", + "geonameId": 1626185, + "latitudeCity": -8.5, + "longitudeCity": 117.416664, + "nameCity": "Sumbawa", + "timezone": "Asia/Makassar" + }, + { + "GMT": "10", + "cityId": 7098, + "codeIataCity": "SWR", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -4.533333, + "longitudeCity": 153.05, + "nameCity": "Silur", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "cityId": 7099, + "codeIataCity": "SWS", + "codeIso2Country": "GB", + "geonameId": 2636432, + "latitudeCity": 51.63333, + "longitudeCity": -3.95, + "nameCity": "Swansea", + "timezone": "Europe/London" + }, + { + "GMT": "7", + "cityId": 7100, + "codeIataCity": "SWT", + "codeIso2Country": "RU", + "geonameId": 1490796, + "latitudeCity": 60.5, + "longitudeCity": 77.0, + "nameCity": "Strzhewoi", + "timezone": "Asia/Novosibirsk" + }, + { + "GMT": "9", + "cityId": 7101, + "codeIataCity": "SWU", + "codeIso2Country": "KR", + "geonameId": 1835848, + "latitudeCity": 37.283333, + "longitudeCity": 127.01667, + "nameCity": "Suwon", + "timezone": "Asia/Seoul" + }, + { + "GMT": "5", + "cityId": 7102, + "codeIataCity": "SWV", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 27.95, + "longitudeCity": 68.63333, + "nameCity": "Shikarpur", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-6", + "cityId": 7103, + "codeIataCity": "SWW", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 32.466667, + "longitudeCity": -100.4, + "nameCity": "Sweetwater", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 7104, + "codeIataCity": "SWX", + "codeIso2Country": "BW", + "geonameId": 0, + "latitudeCity": -18.383333, + "longitudeCity": 21.833332, + "nameCity": "Shakawe", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "8", + "cityId": 7105, + "codeIataCity": "SWY", + "codeIso2Country": "MY", + "geonameId": 1735450, + "latitudeCity": 4.216667, + "longitudeCity": 100.7, + "nameCity": "Sitiawan", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "10", + "cityId": 7106, + "codeIataCity": "SXA", + "codeIso2Country": "PG", + "geonameId": 2086830, + "latitudeCity": -6.033333, + "longitudeCity": 147.61667, + "nameCity": "Sialum", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 7107, + "codeIataCity": "SXB", + "codeIso2Country": "FR", + "geonameId": 2973783, + "latitudeCity": 48.583148, + "longitudeCity": 7.747882, + "nameCity": "Strasbourg", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "cityId": 7108, + "codeIataCity": "SXE", + "codeIso2Country": "AU", + "geonameId": 2150615, + "latitudeCity": -38.166668, + "longitudeCity": 147.0, + "nameCity": "Sale", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "2", + "cityId": 7109, + "codeIataCity": "SXG", + "codeIso2Country": "ZM", + "geonameId": 0, + "latitudeCity": -16.119444, + "longitudeCity": 23.281944, + "nameCity": "Senanga", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "10", + "cityId": 7110, + "codeIataCity": "SXH", + "codeIso2Country": "PG", + "geonameId": 2086997, + "latitudeCity": -9.983333, + "longitudeCity": 151.18333, + "nameCity": "Sehulea", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3.30", + "cityId": 7111, + "codeIataCity": "SXI", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 25.916668, + "longitudeCity": 54.533333, + "nameCity": "Sirri Island", + "timezone": "Asia/Tehran" + }, + { + "GMT": "8", + "cityId": 7112, + "codeIataCity": "SXJ", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 42.816666, + "longitudeCity": 90.23333, + "nameCity": "Shanshan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9", + "cityId": 7113, + "codeIataCity": "SXK", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -7.966667, + "longitudeCity": 131.31667, + "nameCity": "Saumlaki", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "0", + "cityId": 7114, + "codeIataCity": "SXL", + "codeIso2Country": "IE", + "geonameId": 2961423, + "latitudeCity": 54.270607, + "longitudeCity": -8.471528, + "nameCity": "Sligo", + "timezone": "Europe/Dublin" + }, + { + "GMT": "-4", + "cityId": 7115, + "codeIataCity": "SXM", + "codeIso2Country": "SX", + "geonameId": 6957290, + "latitudeCity": 18.044722, + "longitudeCity": -63.11406, + "nameCity": "Philipsburg", + "timezone": "America/Lower_Princes" + }, + { + "GMT": "2", + "cityId": 7116, + "codeIataCity": "SXN", + "codeIso2Country": "BW", + "geonameId": 0, + "latitudeCity": -20.55, + "longitudeCity": 26.116667, + "nameCity": "Suapan", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "-4", + "cityId": 7117, + "codeIataCity": "SXO", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -11.6, + "longitudeCity": -50.65, + "nameCity": "Sao Felix Do Araguaia", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-9", + "cityId": 7118, + "codeIataCity": "SXP", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 62.533333, + "longitudeCity": -164.83333, + "nameCity": "Sheldon Point", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 7119, + "codeIataCity": "SXQ", + "codeIso2Country": "US", + "geonameId": 5864145, + "latitudeCity": 60.475555, + "longitudeCity": -151.03639, + "nameCity": "Soldotna", + "timezone": "America/Anchorage" + }, + { + "GMT": "5.30", + "cityId": 7120, + "codeIataCity": "SXR", + "codeIso2Country": "IN", + "geonameId": 1255634, + "latitudeCity": 34.002308, + "longitudeCity": 74.762634, + "nameCity": "Srinagar", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "8", + "cityId": 7121, + "codeIataCity": "SXS", + "codeIso2Country": "MY", + "geonameId": 1733953, + "latitudeCity": 5.089722, + "longitudeCity": 119.09167, + "nameCity": "Sahabat 16", + "timezone": "Asia/Kuching" + }, + { + "GMT": "8", + "cityId": 7122, + "codeIataCity": "SXT", + "codeIso2Country": "MY", + "geonameId": 1733007, + "latitudeCity": 4.330556, + "longitudeCity": 102.39667, + "nameCity": "Taman Negara", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "3", + "cityId": 7123, + "codeIataCity": "SXU", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 6.836111, + "longitudeCity": 37.775, + "nameCity": "Soddu", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "5.30", + "cityId": 7124, + "codeIataCity": "SXV", + "codeIso2Country": "IN", + "geonameId": 1252734, + "latitudeCity": 11.65, + "longitudeCity": 78.166664, + "nameCity": "Salem", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "cityId": 7125, + "codeIataCity": "SXW", + "codeIso2Country": "PG", + "geonameId": 2087095, + "latitudeCity": -5.971389, + "longitudeCity": 148.95305, + "nameCity": "Sauren", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "cityId": 7126, + "codeIataCity": "SXX", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -6.633333, + "longitudeCity": -51.983334, + "nameCity": "Sao Felix Do Xingu", + "timezone": "America/Belem" + }, + { + "GMT": "-5", + "cityId": 7127, + "codeIataCity": "SXY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.316666, + "longitudeCity": -75.4, + "nameCity": "Sidney", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 7128, + "codeIataCity": "SXZ", + "codeIso2Country": "TR", + "geonameId": 321836, + "latitudeCity": 37.98, + "longitudeCity": 41.84, + "nameCity": "Siirt", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-10", + "cityId": 7129, + "codeIataCity": "SYA", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 52.7175, + "longitudeCity": 174.08945, + "nameCity": "Shemya", + "timezone": "America/Adak" + }, + { + "GMT": "-9", + "cityId": 7130, + "codeIataCity": "SYB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 58.166668, + "longitudeCity": -152.5, + "nameCity": "Seal Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 7131, + "codeIataCity": "SYC", + "codeIso2Country": "PE", + "geonameId": 3928717, + "latitudeCity": -11.9, + "longitudeCity": -69.166664, + "nameCity": "Shiringayoc", + "timezone": "America/Lima" + }, + { + "GMT": "10", + "cityId": 7132, + "codeIataCity": "SYD", + "codeIso2Country": "AU", + "geonameId": 2147714, + "latitudeCity": -33.868901, + "longitudeCity": 151.207091, + "nameCity": "Sydney", + "timezone": "Australia/Sydney" + }, + { + "GMT": "3", + "cityId": 7133, + "codeIataCity": "SYE", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 16.866667, + "longitudeCity": 43.61667, + "nameCity": "Sadah", + "timezone": "Asia/Aden" + }, + { + "GMT": "-8", + "cityId": 7134, + "codeIataCity": "SYF", + "codeIso2Country": "CA", + "geonameId": 6147649, + "latitudeCity": 49.15, + "longitudeCity": -123.69722, + "nameCity": "Silva Bay", + "timezone": "America/Vancouver" + }, + { + "GMT": "5.45", + "cityId": 7135, + "codeIataCity": "SYH", + "codeIso2Country": "NP", + "geonameId": 7996898, + "latitudeCity": 27.81, + "longitudeCity": 86.71, + "nameCity": "Syangboche", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-6", + "cityId": 7136, + "codeIataCity": "SYI", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 35.560833, + "longitudeCity": -86.4425, + "nameCity": "Shelbyville", + "timezone": "America/Chicago" + }, + { + "GMT": "3.30", + "cityId": 7137, + "codeIataCity": "SYJ", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 29.550123, + "longitudeCity": 55.664917, + "nameCity": "Sirjan", + "timezone": "Asia/Tehran" + }, + { + "GMT": "0", + "cityId": 7138, + "codeIataCity": "SYK", + "codeIso2Country": "IS", + "geonameId": 3418076, + "latitudeCity": 65.1, + "longitudeCity": -22.8, + "nameCity": "Stykkisholmur", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-8", + "cityId": 7139, + "codeIataCity": "SYL", + "codeIso2Country": "US", + "geonameId": 5381438, + "latitudeCity": 35.75, + "longitudeCity": -120.7, + "nameCity": "San Miguel", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "cityId": 7140, + "codeIataCity": "SYM", + "codeIso2Country": "CN", + "geonameId": 1794209, + "latitudeCity": 22.79657, + "longitudeCity": 100.96222, + "nameCity": "Simao", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "cityId": 7141, + "codeIataCity": "SYN", + "codeIso2Country": "US", + "geonameId": 5048549, + "latitudeCity": 32.13333, + "longitudeCity": -101.8, + "nameCity": "Stanton", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "cityId": 7142, + "codeIataCity": "SYO", + "codeIso2Country": "JP", + "geonameId": 1849563, + "latitudeCity": 38.809444, + "longitudeCity": 139.79056, + "nameCity": "Shonai", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "cityId": 7143, + "codeIataCity": "SYP", + "codeIso2Country": "PA", + "geonameId": 3710855, + "latitudeCity": 8.1, + "longitudeCity": -80.98333, + "nameCity": "Santiago", + "timezone": "America/Panama" + }, + { + "GMT": "-6", + "cityId": 7144, + "codeIataCity": "SYQ", + "codeIso2Country": "CR", + "geonameId": 3621849, + "latitudeCity": 9.95, + "longitudeCity": -84.13333, + "nameCity": "San Jose", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-5", + "cityId": 7145, + "codeIataCity": "SYR", + "codeIso2Country": "US", + "geonameId": 5140405, + "latitudeCity": 43.048122, + "longitudeCity": -76.147424, + "nameCity": "Syracuse", + "timezone": "America/New_York" + }, + { + "GMT": "9", + "cityId": 7146, + "codeIataCity": "SYS", + "codeIso2Country": "KR", + "geonameId": 0, + "latitudeCity": 34.83389, + "longitudeCity": 127.61694, + "nameCity": "Suncheon", + "timezone": "Asia/Seoul" + }, + { + "GMT": "1", + "cityId": 7147, + "codeIataCity": "SYT", + "codeIso2Country": "FR", + "geonameId": 2988592, + "latitudeCity": 46.4, + "longitudeCity": 4.033333, + "nameCity": "Saint Yan", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "cityId": 7148, + "codeIataCity": "SYU", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -10.208333, + "longitudeCity": 142.81667, + "nameCity": "Sue Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 7149, + "codeIataCity": "SYV", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 31.516666, + "longitudeCity": -83.833336, + "nameCity": "Sylvester", + "timezone": "America/New_York" + }, + { + "GMT": "5", + "cityId": 7150, + "codeIataCity": "SYW", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 26.416668, + "longitudeCity": 67.85, + "nameCity": "Sehwen Sharif", + "timezone": "Asia/Karachi" + }, + { + "GMT": "8", + "cityId": 7151, + "codeIataCity": "SYX", + "codeIso2Country": "CN", + "geonameId": 1796556, + "latitudeCity": 18.31063, + "longitudeCity": 109.409706, + "nameCity": "Sanya", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "0", + "cityId": 7152, + "codeIataCity": "SYY", + "codeIso2Country": "GB", + "geonameId": 2636790, + "latitudeCity": 58.213627, + "longitudeCity": -6.321995, + "nameCity": "Stornoway", + "timezone": "Europe/London" + }, + { + "GMT": "3.30", + "cityId": 7153, + "codeIataCity": "SYZ", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 29.54613, + "longitudeCity": 52.58997, + "nameCity": "Shiraz", + "timezone": "Asia/Tehran" + }, + { + "GMT": "1", + "cityId": 7154, + "codeIataCity": "SZA", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -6.033333, + "longitudeCity": 12.416667, + "nameCity": "Soyo", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-6", + "cityId": 7155, + "codeIataCity": "SZC", + "codeIso2Country": "CR", + "geonameId": 6619864, + "latitudeCity": 10.254722, + "longitudeCity": -85.58417, + "nameCity": "Santa Cruz", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "3", + "cityId": 7156, + "codeIataCity": "SZE", + "codeIso2Country": "ET", + "geonameId": 6913519, + "latitudeCity": 11.5, + "longitudeCity": 41.083332, + "nameCity": "Semera", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "3", + "cityId": 7157, + "codeIataCity": "SZF", + "codeIso2Country": "TR", + "geonameId": 740264, + "latitudeCity": 41.25738, + "longitudeCity": 36.555058, + "nameCity": "Samsun", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "1", + "cityId": 7158, + "codeIataCity": "SZG", + "codeIso2Country": "AT", + "geonameId": 2766824, + "latitudeCity": 47.80949, + "longitudeCity": 13.05501, + "nameCity": "Salzburg", + "timezone": "Europe/Vienna" + }, + { + "GMT": "8", + "cityId": 7159, + "codeIataCity": "SZH", + "codeIso2Country": "ID", + "geonameId": 1627680, + "latitudeCity": -0.966667, + "longitudeCity": 117.13333, + "nameCity": "Senipah", + "timezone": "Asia/Makassar" + }, + { + "GMT": "6", + "cityId": 7160, + "codeIataCity": "SZI", + "codeIso2Country": "KZ", + "geonameId": 0, + "latitudeCity": 47.7, + "longitudeCity": 84.86667, + "nameCity": "Zaisan", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-5", + "cityId": 7161, + "codeIataCity": "SZJ", + "codeIso2Country": "CU", + "geonameId": 0, + "latitudeCity": 21.633333, + "longitudeCity": -82.95, + "nameCity": "Siguanea", + "timezone": "America/Havana" + }, + { + "GMT": "2", + "cityId": 7162, + "codeIataCity": "SZK", + "codeIso2Country": "ZA", + "geonameId": 954955, + "latitudeCity": -24.9625, + "longitudeCity": 31.586111, + "nameCity": "Skukuza", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-6", + "cityId": 7163, + "codeIataCity": "SZL", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.766666, + "longitudeCity": -93.73333, + "nameCity": "Kansas", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 7164, + "codeIataCity": "SZM", + "codeIso2Country": "NA", + "geonameId": 0, + "latitudeCity": -24.583332, + "longitudeCity": 15.833333, + "nameCity": "Sesriem", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-8", + "cityId": 7165, + "codeIataCity": "SZP", + "codeIso2Country": "US", + "geonameId": 5368361, + "latitudeCity": 34.35, + "longitudeCity": -119.066666, + "nameCity": "Santa Paula", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "cityId": 7166, + "codeIataCity": "SZQ", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -34.61667, + "longitudeCity": -58.533333, + "nameCity": "Saenz Pena", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "2", + "cityId": 7167, + "codeIataCity": "SZR", + "codeIso2Country": "BG", + "geonameId": 726848, + "latitudeCity": 42.433334, + "longitudeCity": 25.616667, + "nameCity": "Stara Zagora", + "timezone": "Europe/Sofia" + }, + { + "GMT": "12", + "cityId": 7168, + "codeIataCity": "SZS", + "codeIso2Country": "NZ", + "geonameId": 2190349, + "latitudeCity": -47.0, + "longitudeCity": 167.86667, + "nameCity": "Stewart Island", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-6", + "cityId": 7169, + "codeIataCity": "SZT", + "codeIso2Country": "MX", + "geonameId": 3519537, + "latitudeCity": 16.690556, + "longitudeCity": -92.54417, + "nameCity": "S.Cristobal deL Casas", + "timezone": "America/Mexico_City" + }, + { + "GMT": "0", + "cityId": 7170, + "codeIataCity": "SZU", + "codeIso2Country": "ML", + "geonameId": 0, + "latitudeCity": 13.433333, + "longitudeCity": -6.283333, + "nameCity": "Segou", + "timezone": "Africa/Bamako" + }, + { + "GMT": "8", + "cityId": 7171, + "codeIataCity": "SZV", + "codeIso2Country": "CN", + "geonameId": 1886760, + "latitudeCity": 31.3, + "longitudeCity": 120.63333, + "nameCity": "Suzhou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 7172, + "codeIataCity": "SZW", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 53.625743, + "longitudeCity": 11.416893, + "nameCity": "Schwerin", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "cityId": 7173, + "codeIataCity": "SZX", + "codeIso2Country": "CN", + "geonameId": 1795565, + "latitudeCity": 22.543099, + "longitudeCity": 114.057868, + "nameCity": "Shenzhen", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 7174, + "codeIataCity": "SZY", + "codeIso2Country": "PL", + "geonameId": 763166, + "latitudeCity": 52.43611, + "longitudeCity": 20.938334, + "nameCity": "Szymany", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "1", + "cityId": 7175, + "codeIataCity": "SZZ", + "codeIso2Country": "PL", + "geonameId": 3083829, + "latitudeCity": 53.428544, + "longitudeCity": 14.552812, + "nameCity": "Szczecin", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "11", + "cityId": 7176, + "codeIataCity": "TAA", + "codeIso2Country": "SB", + "geonameId": 2102798, + "latitudeCity": -9.4, + "longitudeCity": 161.35, + "nameCity": "Tarapaina", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-4", + "cityId": 7177, + "codeIataCity": "TAB", + "codeIso2Country": "TT", + "geonameId": 3573703, + "latitudeCity": 11.152541, + "longitudeCity": -60.839684, + "nameCity": "Tobago", + "timezone": "America/Port_of_Spain" + }, + { + "GMT": "8", + "cityId": 7178, + "codeIataCity": "TAC", + "codeIso2Country": "PH", + "geonameId": 1684712, + "latitudeCity": 11.22684, + "longitudeCity": 125.02592, + "nameCity": "Tacloban", + "timezone": "Asia/Manila" + }, + { + "GMT": "-7", + "cityId": 7179, + "codeIataCity": "TAD", + "codeIso2Country": "US", + "geonameId": 5442007, + "latitudeCity": 37.305557, + "longitudeCity": -104.325, + "nameCity": "Trinidad", + "timezone": "America/Denver" + }, + { + "GMT": "9", + "cityId": 7180, + "codeIataCity": "TAE", + "codeIso2Country": "KR", + "geonameId": 1835329, + "latitudeCity": 35.899254, + "longitudeCity": 128.63788, + "nameCity": "Daegu", + "timezone": "Asia/Seoul" + }, + { + "GMT": "8", + "cityId": 7181, + "codeIataCity": "TAG", + "codeIso2Country": "PH", + "geonameId": 1684497, + "latitudeCity": 9.657587, + "longitudeCity": 123.853615, + "nameCity": "Tagbilaran", + "timezone": "Asia/Manila" + }, + { + "GMT": "11", + "cityId": 7182, + "codeIataCity": "TAH", + "codeIso2Country": "VU", + "geonameId": 2136256, + "latitudeCity": -19.458445, + "longitudeCity": 169.22821, + "nameCity": "Tanna", + "timezone": "Pacific/Efate" + }, + { + "GMT": "3", + "cityId": 7183, + "codeIataCity": "TAI", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 13.685553, + "longitudeCity": 44.134346, + "nameCity": "Taiz", + "timezone": "Asia/Aden" + }, + { + "GMT": "9", + "cityId": 7184, + "codeIataCity": "TAK", + "codeIso2Country": "JP", + "geonameId": 1851100, + "latitudeCity": 34.219017, + "longitudeCity": 134.01825, + "nameCity": "Takamatsu", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-9", + "cityId": 7185, + "codeIataCity": "TAL", + "codeIso2Country": "US", + "geonameId": 5875808, + "latitudeCity": 65.175, + "longitudeCity": -152.10806, + "nameCity": "Tanana", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 7186, + "codeIataCity": "TAM", + "codeIso2Country": "MX", + "geonameId": 3516355, + "latitudeCity": 22.289082, + "longitudeCity": -97.87016, + "nameCity": "Tampico", + "timezone": "America/Monterrey" + }, + { + "GMT": "10", + "cityId": 7187, + "codeIataCity": "TAN", + "codeIso2Country": "AU", + "geonameId": 2207332, + "latitudeCity": -27.083332, + "longitudeCity": 153.25, + "nameCity": "Tangalooma", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "cityId": 7188, + "codeIataCity": "TAO", + "codeIso2Country": "CN", + "geonameId": 1797929, + "latitudeCity": 36.265884, + "longitudeCity": 120.38236, + "nameCity": "Qingdao", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "cityId": 7189, + "codeIataCity": "TAP", + "codeIso2Country": "MX", + "geonameId": 3516266, + "latitudeCity": 14.909722, + "longitudeCity": -92.25306, + "nameCity": "Tapachula", + "timezone": "America/Mexico_City" + }, + { + "GMT": "9.30", + "cityId": 7190, + "codeIataCity": "TAQ", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -30.683332, + "longitudeCity": 134.55, + "nameCity": "Tarcoola", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "1", + "cityId": 7191, + "codeIataCity": "TAR", + "codeIso2Country": "IT", + "geonameId": 3165926, + "latitudeCity": 40.517776, + "longitudeCity": 17.401943, + "nameCity": "Taranto", + "timezone": "Europe/Rome" + }, + { + "GMT": "5", + "cityId": 7192, + "codeIataCity": "TAS", + "codeIso2Country": "UZ", + "geonameId": 1512569, + "latitudeCity": 41.262714, + "longitudeCity": 69.26619, + "nameCity": "Tashkent", + "timezone": "Asia/Tashkent" + }, + { + "GMT": "1", + "cityId": 7193, + "codeIataCity": "TAT", + "codeIso2Country": "SK", + "geonameId": 723846, + "latitudeCity": 49.071945, + "longitudeCity": 20.240278, + "nameCity": "Poprad", + "timezone": "Europe/Bratislava" + }, + { + "GMT": "-5", + "cityId": 7194, + "codeIataCity": "TAU", + "codeIso2Country": "CO", + "geonameId": 3667355, + "latitudeCity": 5.0, + "longitudeCity": -72.73333, + "nameCity": "Tauramena", + "timezone": "America/Bogota" + }, + { + "GMT": "-11", + "cityId": 7195, + "codeIataCity": "TAV", + "codeIso2Country": "AS", + "geonameId": 0, + "latitudeCity": -14.25, + "longitudeCity": -169.45, + "nameCity": "Fiti'Uta Village", + "timezone": "Pacific/Pago_Pago" + }, + { + "GMT": "-3", + "cityId": 7196, + "codeIataCity": "TAW", + "codeIso2Country": "UY", + "geonameId": 3441659, + "latitudeCity": -31.75, + "longitudeCity": -55.916668, + "nameCity": "Tacuarembo", + "timezone": "America/Montevideo" + }, + { + "GMT": "9", + "cityId": 7197, + "codeIataCity": "TAX", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -1.766667, + "longitudeCity": 124.8, + "nameCity": "Taliabu", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "2", + "cityId": 7198, + "codeIataCity": "TAY", + "codeIso2Country": "EE", + "geonameId": 588335, + "latitudeCity": 58.333332, + "longitudeCity": 26.733334, + "nameCity": "Tartu", + "timezone": "Europe/Tallinn" + }, + { + "GMT": "5", + "cityId": 7199, + "codeIataCity": "TAZ", + "codeIso2Country": "TM", + "geonameId": 0, + "latitudeCity": 41.833332, + "longitudeCity": 59.966667, + "nameCity": "Dashoguz", + "timezone": "Asia/Ashgabat" + }, + { + "GMT": "10", + "cityId": 7200, + "codeIataCity": "TBA", + "codeIso2Country": "PG", + "geonameId": 2086062, + "latitudeCity": -5.55, + "longitudeCity": 144.63333, + "nameCity": "Tabibuga", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "7", + "cityId": 7201, + "codeIataCity": "TBB", + "codeIso2Country": "VN", + "geonameId": 1572151, + "latitudeCity": 13.044167, + "longitudeCity": 109.33972, + "nameCity": "Tuy Hoa", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-7", + "cityId": 7202, + "codeIataCity": "TBC", + "codeIso2Country": "US", + "geonameId": 5307778, + "latitudeCity": 36.13333, + "longitudeCity": -111.23333, + "nameCity": "Tuba City", + "timezone": "America/Phoenix" + }, + { + "GMT": "-5", + "cityId": 7203, + "codeIataCity": "TBD", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 2.766667, + "longitudeCity": -77.7, + "nameCity": "Timbiqui", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "cityId": 7204, + "codeIataCity": "TBE", + "codeIso2Country": "PG", + "geonameId": 2085452, + "latitudeCity": -4.2, + "longitudeCity": 143.51666, + "nameCity": "Timbunke", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "12", + "cityId": 7205, + "codeIataCity": "TBF", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": -1.231944, + "longitudeCity": 174.78, + "nameCity": "Tabiteuea North", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "10", + "cityId": 7206, + "codeIataCity": "TBG", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.274722, + "longitudeCity": 141.227, + "nameCity": "Tabubil", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 7207, + "codeIataCity": "TBH", + "codeIso2Country": "PH", + "geonameId": 1709632, + "latitudeCity": 12.31612, + "longitudeCity": 122.08056, + "nameCity": "Tablas", + "timezone": "Asia/Manila" + }, + { + "GMT": "-5", + "cityId": 7208, + "codeIataCity": "TBI", + "codeIso2Country": "BS", + "geonameId": 3572349, + "latitudeCity": 24.315, + "longitudeCity": -75.45361, + "nameCity": "The Bight", + "timezone": "America/Nassau" + }, + { + "GMT": "1", + "cityId": 7209, + "codeIataCity": "TBJ", + "codeIso2Country": "TN", + "geonameId": 2464871, + "latitudeCity": 36.978333, + "longitudeCity": 8.876389, + "nameCity": "Tabarka", + "timezone": "Africa/Tunis" + }, + { + "GMT": "9.30", + "cityId": 7210, + "codeIataCity": "TBK", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -15.65, + "longitudeCity": 130.48334, + "nameCity": "Timber Creek", + "timezone": "Australia/Darwin" + }, + { + "GMT": "8", + "cityId": 7211, + "codeIataCity": "TBL", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.3, + "longitudeCity": 126.833336, + "nameCity": "Tableland", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "cityId": 7212, + "codeIataCity": "TBM", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.25, + "longitudeCity": 112.583336, + "nameCity": "Tumbang Samba", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-6", + "cityId": 7213, + "codeIataCity": "TBN", + "codeIso2Country": "US", + "geonameId": 7259265, + "latitudeCity": 37.74139, + "longitudeCity": -92.14056, + "nameCity": "Fort Leonard Wood", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 7214, + "codeIataCity": "TBO", + "codeIso2Country": "TZ", + "geonameId": 149658, + "latitudeCity": -5.0725, + "longitudeCity": 32.8375, + "nameCity": "Tabora", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-5", + "cityId": 7215, + "codeIataCity": "TBP", + "codeIso2Country": "PE", + "geonameId": 3691148, + "latitudeCity": -3.566667, + "longitudeCity": -80.416664, + "nameCity": "Tumbes", + "timezone": "America/Lima" + }, + { + "GMT": "10", + "cityId": 7216, + "codeIataCity": "TBQ", + "codeIso2Country": "PG", + "geonameId": 2085796, + "latitudeCity": 12.3, + "longitudeCity": 22.75, + "nameCity": "Tarabo", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 7217, + "codeIataCity": "TBR", + "codeIso2Country": "US", + "geonameId": 4224413, + "latitudeCity": 32.490276, + "longitudeCity": -81.73556, + "nameCity": "Statesboro", + "timezone": "America/New_York" + }, + { + "GMT": "4", + "cityId": 7218, + "codeIataCity": "TBS", + "codeIso2Country": "GE", + "geonameId": 611717, + "latitudeCity": 41.674065, + "longitudeCity": 44.958958, + "nameCity": "Tbilisi", + "timezone": "Asia/Tbilisi" + }, + { + "GMT": "-4", + "cityId": 7219, + "codeIataCity": "TBT", + "codeIso2Country": "BR", + "geonameId": 3662075, + "latitudeCity": -4.233333, + "longitudeCity": -69.933334, + "nameCity": "Tabatinga", + "timezone": "America/Manaus" + }, + { + "GMT": "13", + "cityId": 7220, + "codeIataCity": "TBU", + "codeIso2Country": "TO", + "geonameId": 4032402, + "latitudeCity": -21.24117, + "longitudeCity": -175.14131, + "nameCity": "Nuku'alofa", + "timezone": "Pacific/Tongatapu" + }, + { + "GMT": "12", + "cityId": 7221, + "codeIataCity": "TBV", + "codeIso2Country": "MH", + "geonameId": 2080879, + "latitudeCity": 10.038889, + "longitudeCity": 169.94722, + "nameCity": "Tabal", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "3", + "cityId": 7222, + "codeIataCity": "TBW", + "codeIso2Country": "RU", + "geonameId": 484646, + "latitudeCity": 52.716667, + "longitudeCity": 41.433334, + "nameCity": "Tambov", + "timezone": "Europe/Moscow" + }, + { + "GMT": "2", + "cityId": 7223, + "codeIataCity": "TBY", + "codeIso2Country": "BW", + "geonameId": 0, + "latitudeCity": -26.066668, + "longitudeCity": 22.466667, + "nameCity": "Tsabong", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "3.30", + "cityId": 7224, + "codeIataCity": "TBZ", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 38.12285, + "longitudeCity": 46.244274, + "nameCity": "Tabriz", + "timezone": "Asia/Tehran" + }, + { + "GMT": "9.30", + "cityId": 7225, + "codeIataCity": "TCA", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -19.638056, + "longitudeCity": 134.18083, + "nameCity": "Tennant Creek", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-5", + "cityId": 7226, + "codeIataCity": "TCB", + "codeIso2Country": "BS", + "geonameId": 7535668, + "latitudeCity": 26.735, + "longitudeCity": -77.37222, + "nameCity": "Treasure Cay", + "timezone": "America/Nassau" + }, + { + "GMT": "-7", + "cityId": 7227, + "codeIataCity": "TCC", + "codeIso2Country": "US", + "geonameId": 5495360, + "latitudeCity": 35.166668, + "longitudeCity": -103.73333, + "nameCity": "Tucumcari", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "cityId": 7228, + "codeIataCity": "TCD", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": -2.933333, + "longitudeCity": -69.76667, + "nameCity": "Tarapaca", + "timezone": "America/Bogota" + }, + { + "GMT": "2", + "cityId": 7229, + "codeIataCity": "TCE", + "codeIso2Country": "RO", + "geonameId": 680963, + "latitudeCity": 45.183334, + "longitudeCity": 28.816668, + "nameCity": "Tulcea", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "-6", + "cityId": 7230, + "codeIataCity": "TCF", + "codeIso2Country": "HN", + "geonameId": 3600704, + "latitudeCity": 15.658889, + "longitudeCity": -85.99472, + "nameCity": "Tocoa", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "8", + "cityId": 7231, + "codeIataCity": "TCG", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 46.666668, + "longitudeCity": 83.333336, + "nameCity": "Tacheng", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 7232, + "codeIataCity": "TCH", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -2.816667, + "longitudeCity": 11.0, + "nameCity": "Tchibanga", + "timezone": "Africa/Libreville" + }, + { + "GMT": "0", + "cityId": 7233, + "codeIataCity": "TCI", + "codeIso2Country": "ES", + "geonameId": 2511174, + "latitudeCity": 28.291564, + "longitudeCity": -16.62913, + "nameCity": "Tenerife", + "timezone": "Atlantic/Canary" + }, + { + "GMT": "10", + "cityId": 7234, + "codeIataCity": "TCJ", + "codeIso2Country": "PG", + "geonameId": 2085203, + "latitudeCity": -4.016667, + "longitudeCity": 143.13333, + "nameCity": "Torembi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 7235, + "codeIataCity": "TCK", + "codeIso2Country": "PG", + "geonameId": 2085433, + "latitudeCity": -4.083333, + "longitudeCity": 143.38333, + "nameCity": "Tinboli", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 7236, + "codeIataCity": "TCL", + "codeIso2Country": "US", + "geonameId": 4094455, + "latitudeCity": 33.22111, + "longitudeCity": -87.61083, + "nameCity": "Tuscaloosa", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 7237, + "codeIataCity": "TCN", + "codeIso2Country": "MX", + "geonameId": 3516109, + "latitudeCity": 18.499722, + "longitudeCity": -97.41778, + "nameCity": "Tehuacan", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-5", + "cityId": 7238, + "codeIataCity": "TCO", + "codeIso2Country": "CO", + "geonameId": 3666640, + "latitudeCity": 1.816667, + "longitudeCity": -78.76667, + "nameCity": "Tumaco", + "timezone": "America/Bogota" + }, + { + "GMT": "2", + "cityId": 7239, + "codeIataCity": "TCP", + "codeIso2Country": "EG", + "geonameId": 347702, + "latitudeCity": 29.55, + "longitudeCity": 34.916668, + "nameCity": "Taba", + "timezone": "Africa/Cairo" + }, + { + "GMT": "-5", + "cityId": 7240, + "codeIataCity": "TCQ", + "codeIso2Country": "PE", + "geonameId": 3928128, + "latitudeCity": -18.063334, + "longitudeCity": -70.27889, + "nameCity": "Tacna", + "timezone": "America/Lima" + }, + { + "GMT": "5.30", + "cityId": 7241, + "codeIataCity": "TCR", + "codeIso2Country": "IN", + "geonameId": 1254361, + "latitudeCity": 8.716667, + "longitudeCity": 78.03333, + "nameCity": "Tuticorin", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-7", + "cityId": 7242, + "codeIataCity": "TCS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 33.13333, + "longitudeCity": -107.25, + "nameCity": "Truth Or Consequences", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "cityId": 7243, + "codeIataCity": "TCT", + "codeIso2Country": "US", + "geonameId": 5875719, + "latitudeCity": 62.99278, + "longitudeCity": -156.06555, + "nameCity": "Takotna", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "cityId": 7244, + "codeIataCity": "TCU", + "codeIso2Country": "ZA", + "geonameId": 1018725, + "latitudeCity": -29.283333, + "longitudeCity": 26.866667, + "nameCity": "Thaba Nchu", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "10", + "cityId": 7245, + "codeIataCity": "TCW", + "codeIso2Country": "AU", + "geonameId": 2146482, + "latitudeCity": -35.816666, + "longitudeCity": 145.6, + "nameCity": "Tocumwal", + "timezone": "Australia/Sydney" + }, + { + "GMT": "3.30", + "cityId": 7246, + "codeIataCity": "TCX", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 33.68, + "longitudeCity": 56.90139, + "nameCity": "Tabas", + "timezone": "Asia/Tehran" + }, + { + "GMT": "2", + "cityId": 7247, + "codeIataCity": "TCY", + "codeIso2Country": "NA", + "geonameId": 0, + "latitudeCity": -19.983334, + "longitudeCity": 13.0, + "nameCity": "Terrace Bay", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "8", + "cityId": 7248, + "codeIataCity": "TCZ", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 24.939379, + "longitudeCity": 98.482025, + "nameCity": "Tengchong", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 7249, + "codeIataCity": "TDA", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 5.423611, + "longitudeCity": -71.72444, + "nameCity": "Trinidad", + "timezone": "America/Bogota" + }, + { + "GMT": "10", + "cityId": 7250, + "codeIataCity": "TDB", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.997222, + "longitudeCity": 148.43333, + "nameCity": "Tetabedi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "cityId": 7251, + "codeIataCity": "TDD", + "codeIso2Country": "BO", + "geonameId": 3902377, + "latitudeCity": -14.822613, + "longitudeCity": -64.91931, + "nameCity": "Trinidad", + "timezone": "America/La_Paz" + }, + { + "GMT": "8", + "cityId": 7252, + "codeIataCity": "TDG", + "codeIso2Country": "PH", + "geonameId": 1683302, + "latitudeCity": 9.5, + "longitudeCity": 126.00833, + "nameCity": "Tandag", + "timezone": "Asia/Manila" + }, + { + "GMT": "3", + "cityId": 7253, + "codeIataCity": "TDJ", + "codeIso2Country": "DJ", + "geonameId": 0, + "latitudeCity": 11.783333, + "longitudeCity": 42.9, + "nameCity": "Tadjoura", + "timezone": "Africa/Djibouti" + }, + { + "GMT": "6", + "cityId": 7254, + "codeIataCity": "TDK", + "codeIso2Country": "KZ", + "geonameId": 0, + "latitudeCity": 45.15, + "longitudeCity": 78.433334, + "nameCity": "Taldy-Kurgan", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-3", + "cityId": 7255, + "codeIataCity": "TDL", + "codeIso2Country": "AR", + "geonameId": 3427833, + "latitudeCity": -37.333332, + "longitudeCity": -59.083332, + "nameCity": "Tandil", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "8", + "cityId": 7256, + "codeIataCity": "TDN", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -14.75, + "longitudeCity": 126.51667, + "nameCity": "Theda", + "timezone": "Australia/Perth" + }, + { + "GMT": "-8", + "cityId": 7257, + "codeIataCity": "TDO", + "codeIso2Country": "US", + "geonameId": 5789683, + "latitudeCity": 46.433334, + "longitudeCity": -122.85, + "nameCity": "Toledo", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 7258, + "codeIataCity": "TDP", + "codeIso2Country": "PE", + "geonameId": 0, + "latitudeCity": 15.543056, + "longitudeCity": -61.309166, + "nameCity": "Trompeteros", + "timezone": "America/Lima" + }, + { + "GMT": "10", + "cityId": 7259, + "codeIataCity": "TDR", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -24.983334, + "longitudeCity": 150.08333, + "nameCity": "Theodore", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 7260, + "codeIataCity": "TDS", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.62281, + "longitudeCity": 142.86896, + "nameCity": "Sasereme", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "cityId": 7261, + "codeIataCity": "TDT", + "codeIso2Country": "ZA", + "geonameId": 938694, + "latitudeCity": -24.533333, + "longitudeCity": 31.3, + "nameCity": "Timbavati", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "3", + "cityId": 7262, + "codeIataCity": "TDV", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -21.7, + "longitudeCity": 43.733334, + "nameCity": "Tanandava", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "7", + "cityId": 7263, + "codeIataCity": "TDX", + "codeIso2Country": "TH", + "geonameId": 1605279, + "latitudeCity": 12.273953, + "longitudeCity": 102.31867, + "nameCity": "Trat", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-6", + "cityId": 7264, + "codeIataCity": "TEA", + "codeIso2Country": "HN", + "geonameId": 3601782, + "latitudeCity": 15.771667, + "longitudeCity": -87.48778, + "nameCity": "Tela", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-5", + "cityId": 7265, + "codeIataCity": "TEB", + "codeIso2Country": "US", + "geonameId": 5105333, + "latitudeCity": 40.849724, + "longitudeCity": -74.062225, + "nameCity": "Teterboro", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 7266, + "codeIataCity": "TEC", + "codeIso2Country": "BR", + "geonameId": 3453186, + "latitudeCity": -24.315832, + "longitudeCity": -50.65167, + "nameCity": "Telemaco Borba", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "cityId": 7267, + "codeIataCity": "TED", + "codeIso2Country": "DK", + "geonameId": 2620786, + "latitudeCity": 57.072224, + "longitudeCity": 8.703333, + "nameCity": "Thisted", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "cityId": 7268, + "codeIataCity": "TEE", + "codeIso2Country": "DZ", + "geonameId": 0, + "latitudeCity": 35.466667, + "longitudeCity": 8.15, + "nameCity": "Tbessa", + "timezone": "Africa/Algiers" + }, + { + "GMT": "8", + "cityId": 7269, + "codeIataCity": "TEF", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -21.713057, + "longitudeCity": 122.21222, + "nameCity": "Telfer", + "timezone": "Australia/Perth" + }, + { + "GMT": "0", + "cityId": 7270, + "codeIataCity": "TEG", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 11.9, + "longitudeCity": -0.316667, + "nameCity": "Tenkodogo", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-9", + "cityId": 7271, + "codeIataCity": "TEH", + "codeIso2Country": "US", + "geonameId": 5876024, + "latitudeCity": 63.13333, + "longitudeCity": -142.51666, + "nameCity": "Tetlin", + "timezone": "America/Anchorage" + }, + { + "GMT": "5.30", + "cityId": 7272, + "codeIataCity": "TEI", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 27.95, + "longitudeCity": 96.13333, + "nameCity": "Tezu", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-9", + "cityId": 7273, + "codeIataCity": "TEK", + "codeIso2Country": "US", + "geonameId": 5875879, + "latitudeCity": 60.86667, + "longitudeCity": -146.68333, + "nameCity": "Tatitlek", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "cityId": 7274, + "codeIataCity": "TEL", + "codeIso2Country": "MY", + "geonameId": 1733502, + "latitudeCity": 5.583333, + "longitudeCity": 117.11667, + "nameCity": "Telupid", + "timezone": "Asia/Kuching" + }, + { + "GMT": "10", + "cityId": 7275, + "codeIataCity": "TEM", + "codeIso2Country": "AU", + "geonameId": 2147150, + "latitudeCity": -34.416668, + "longitudeCity": 147.5, + "nameCity": "Temora", + "timezone": "Australia/Sydney" + }, + { + "GMT": "8", + "cityId": 7276, + "codeIataCity": "TEN", + "codeIso2Country": "CN", + "geonameId": 7304020, + "latitudeCity": 27.88369, + "longitudeCity": 109.29902, + "nameCity": "Tongren", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "cityId": 7277, + "codeIataCity": "TEO", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.083333, + "longitudeCity": 146.06667, + "nameCity": "Terapo", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 7278, + "codeIataCity": "TEP", + "codeIso2Country": "PG", + "geonameId": 2085549, + "latitudeCity": -5.85, + "longitudeCity": 146.5, + "nameCity": "Teptep", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 7279, + "codeIataCity": "TEQ", + "codeIso2Country": "TR", + "geonameId": 745044, + "latitudeCity": 40.966667, + "longitudeCity": 27.5, + "nameCity": "Tekirdag", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-1", + "cityId": 7280, + "codeIataCity": "TER", + "codeIso2Country": "PT", + "geonameId": 3372760, + "latitudeCity": 38.754074, + "longitudeCity": -27.08757, + "nameCity": "Terceira Island", + "timezone": "Atlantic/Azores" + }, + { + "GMT": "3", + "cityId": 7281, + "codeIataCity": "TES", + "codeIso2Country": "ER", + "geonameId": 0, + "latitudeCity": 15.116667, + "longitudeCity": 36.683334, + "nameCity": "Tessenei", + "timezone": "Africa/Asmara" + }, + { + "GMT": "2", + "cityId": 7282, + "codeIataCity": "TET", + "codeIso2Country": "MZ", + "geonameId": 1026014, + "latitudeCity": -16.103333, + "longitudeCity": 33.63889, + "nameCity": "Tete", + "timezone": "Africa/Maputo" + }, + { + "GMT": "12", + "cityId": 7283, + "codeIataCity": "TEU", + "codeIso2Country": "NZ", + "geonameId": 2181625, + "latitudeCity": -45.419445, + "longitudeCity": 167.7264, + "nameCity": "Te Anau", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-7", + "cityId": 7284, + "codeIataCity": "TEX", + "codeIso2Country": "US", + "geonameId": 5441199, + "latitudeCity": 37.937494, + "longitudeCity": -107.812285, + "nameCity": "Telluride", + "timezone": "America/Denver" + }, + { + "GMT": "0", + "cityId": 7285, + "codeIataCity": "TEY", + "codeIso2Country": "IS", + "geonameId": 3415667, + "latitudeCity": 65.88333, + "longitudeCity": -23.45, + "nameCity": "Thingeyri", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "5.30", + "cityId": 7286, + "codeIataCity": "TEZ", + "codeIso2Country": "IN", + "geonameId": 1254710, + "latitudeCity": 26.710833, + "longitudeCity": 92.79611, + "nameCity": "Tezpur", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "cityId": 7287, + "codeIataCity": "TFB", + "codeIso2Country": "PG", + "geonameId": 2085484, + "latitudeCity": -5.118333, + "longitudeCity": 141.41777, + "nameCity": "Tifalmin", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 7288, + "codeIataCity": "TFC", + "codeIso2Country": "IT", + "geonameId": 2522975, + "latitudeCity": 37.8536, + "longitudeCity": 15.2885, + "nameCity": "Taormina", + "timezone": "Europe/Rome" + }, + { + "GMT": "-4", + "cityId": 7289, + "codeIataCity": "TFF", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -3.366667, + "longitudeCity": -64.7, + "nameCity": "Tefe", + "timezone": "America/Manaus" + }, + { + "GMT": "10", + "cityId": 7290, + "codeIataCity": "TFI", + "codeIso2Country": "PG", + "geonameId": 2085070, + "latitudeCity": -9.05, + "longitudeCity": 149.33333, + "nameCity": "Tufi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "cityId": 7291, + "codeIataCity": "TFL", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -17.85, + "longitudeCity": -41.5, + "nameCity": "Teofilo Otoni", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "cityId": 7292, + "codeIataCity": "TFM", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.183333, + "longitudeCity": 141.63333, + "nameCity": "Telefomin", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "cityId": 7293, + "codeIataCity": "TFR", + "codeIso2Country": "EG", + "geonameId": 0, + "latitudeCity": 30.1175, + "longitudeCity": 31.400833, + "nameCity": "Ramadan", + "timezone": "Africa/Cairo" + }, + { + "GMT": "5", + "cityId": 7294, + "codeIataCity": "TFT", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 28.583332, + "longitudeCity": 61.36667, + "nameCity": "Taftan", + "timezone": "Asia/Karachi" + }, + { + "GMT": "8", + "cityId": 7295, + "codeIataCity": "TGB", + "codeIso2Country": "PH", + "geonameId": 1684759, + "latitudeCity": 1.416667, + "longitudeCity": 126.78333, + "nameCity": "Tagbita", + "timezone": "Asia/Manila" + }, + { + "GMT": "8", + "cityId": 7296, + "codeIataCity": "TGC", + "codeIso2Country": "MY", + "geonameId": 1735902, + "latitudeCity": 2.176315, + "longitudeCity": 111.20335, + "nameCity": "Tanjung Manis", + "timezone": "Asia/Kuching" + }, + { + "GMT": "1", + "cityId": 7297, + "codeIataCity": "TGD", + "codeIso2Country": "ME", + "geonameId": 3193044, + "latitudeCity": 42.368023, + "longitudeCity": 19.246023, + "nameCity": "Podgorica", + "timezone": "Europe/Podgorica" + }, + { + "GMT": "-6", + "cityId": 7298, + "codeIataCity": "TGE", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 32.466667, + "longitudeCity": -85.683334, + "nameCity": "Tuskegee", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 7299, + "codeIataCity": "TGG", + "codeIso2Country": "MY", + "geonameId": 1734705, + "latitudeCity": 5.380504, + "longitudeCity": 103.10642, + "nameCity": "Kuala Terengganu", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "11", + "cityId": 7300, + "codeIataCity": "TGH", + "codeIso2Country": "VU", + "geonameId": 2135171, + "latitudeCity": -16.90361, + "longitudeCity": 168.54666, + "nameCity": "Tongoa", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-5", + "cityId": 7301, + "codeIataCity": "TGI", + "codeIso2Country": "PE", + "geonameId": 0, + "latitudeCity": -9.3, + "longitudeCity": -76.01667, + "nameCity": "Tingo Maria", + "timezone": "America/Lima" + }, + { + "GMT": "11", + "cityId": 7302, + "codeIataCity": "TGJ", + "codeIso2Country": "NC", + "geonameId": 0, + "latitudeCity": -21.098358, + "longitudeCity": 167.80293, + "nameCity": "Tiga", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "3", + "cityId": 7303, + "codeIataCity": "TGK", + "codeIso2Country": "RU", + "geonameId": 484907, + "latitudeCity": 47.243378, + "longitudeCity": 38.864017, + "nameCity": "Taganrog", + "timezone": "Europe/Moscow" + }, + { + "GMT": "10", + "cityId": 7304, + "codeIataCity": "TGL", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -11.5, + "longitudeCity": 153.5, + "nameCity": "Tagula", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "2", + "cityId": 7305, + "codeIataCity": "TGM", + "codeIso2Country": "RO", + "geonameId": 665004, + "latitudeCity": 46.533333, + "longitudeCity": 24.533333, + "nameCity": "Tirgu Mures", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "10", + "cityId": 7306, + "codeIataCity": "TGN", + "codeIso2Country": "AU", + "geonameId": 2146108, + "latitudeCity": -38.2, + "longitudeCity": 146.56667, + "nameCity": "Traralgon", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "8", + "cityId": 7307, + "codeIataCity": "TGO", + "codeIso2Country": "CN", + "geonameId": 2034400, + "latitudeCity": 43.55701, + "longitudeCity": 122.204605, + "nameCity": "Tongliao", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "7", + "cityId": 7308, + "codeIataCity": "TGP", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 61.59, + "longitudeCity": 89.97945, + "nameCity": "Bor", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "-4", + "cityId": 7309, + "codeIataCity": "TGQ", + "codeIso2Country": "BR", + "geonameId": 6318738, + "latitudeCity": -14.656389, + "longitudeCity": -57.448612, + "nameCity": "Tangara da Serra", + "timezone": "America/Cuiaba" + }, + { + "GMT": "1", + "cityId": 7310, + "codeIataCity": "TGR", + "codeIso2Country": "DZ", + "geonameId": 2475475, + "latitudeCity": 33.058334, + "longitudeCity": 6.084722, + "nameCity": "Touggourt", + "timezone": "Africa/Algiers" + }, + { + "GMT": "2", + "cityId": 7311, + "codeIataCity": "TGS", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": -24.616667, + "longitudeCity": 32.416668, + "nameCity": "Chokwe", + "timezone": "Africa/Maputo" + }, + { + "GMT": "3", + "cityId": 7312, + "codeIataCity": "TGT", + "codeIso2Country": "TZ", + "geonameId": 154605, + "latitudeCity": -5.089444, + "longitudeCity": 39.07028, + "nameCity": "Tanga", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-6", + "cityId": 7313, + "codeIataCity": "TGU", + "codeIso2Country": "HN", + "geonameId": 3600949, + "latitudeCity": 14.060123, + "longitudeCity": -87.21972, + "nameCity": "Tegucigalpa", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "2", + "cityId": 7314, + "codeIataCity": "TGV", + "codeIso2Country": "BG", + "geonameId": 727233, + "latitudeCity": 42.416668, + "longitudeCity": 24.5, + "nameCity": "Targovishte", + "timezone": "Europe/Sofia" + }, + { + "GMT": "-6", + "cityId": 7315, + "codeIataCity": "TGZ", + "codeIso2Country": "MX", + "geonameId": 3515001, + "latitudeCity": 16.56361, + "longitudeCity": -93.0225, + "nameCity": "Tuxtla Gutierrez", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-6", + "cityId": 7316, + "codeIataCity": "THA", + "codeIso2Country": "US", + "geonameId": 4663494, + "latitudeCity": 35.362023, + "longitudeCity": -86.209434, + "nameCity": "Tullahoma", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 7317, + "codeIataCity": "THB", + "codeIso2Country": "LS", + "geonameId": 0, + "latitudeCity": -28.833332, + "longitudeCity": 29.5, + "nameCity": "Thaba-Tseka", + "timezone": "Africa/Maseru" + }, + { + "GMT": "0", + "cityId": 7318, + "codeIataCity": "THC", + "codeIso2Country": "LR", + "geonameId": 0, + "latitudeCity": 6.066667, + "longitudeCity": -8.133333, + "nameCity": "Tchien", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-3", + "cityId": 7319, + "codeIataCity": "THE", + "codeIso2Country": "BR", + "geonameId": 3386496, + "latitudeCity": -5.06335, + "longitudeCity": -42.821087, + "nameCity": "Teresina", + "timezone": "America/Fortaleza" + }, + { + "GMT": "10", + "cityId": 7320, + "codeIataCity": "THG", + "codeIso2Country": "AU", + "geonameId": 2165478, + "latitudeCity": -24.5, + "longitudeCity": 150.56667, + "nameCity": "Thangool", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "12", + "cityId": 7321, + "codeIataCity": "THH", + "codeIso2Country": "NZ", + "geonameId": 2190324, + "latitudeCity": -38.2, + "longitudeCity": 174.71666, + "nameCity": "Taharoa", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "0", + "cityId": 7322, + "codeIataCity": "THI", + "codeIso2Country": "MR", + "geonameId": 0, + "latitudeCity": 18.45, + "longitudeCity": -9.5, + "nameCity": "Tichitt", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "7", + "cityId": 7323, + "codeIataCity": "THK", + "codeIso2Country": "LA", + "geonameId": 1655199, + "latitudeCity": 17.4, + "longitudeCity": 104.816666, + "nameCity": "Thakhek", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "6.30", + "cityId": 7324, + "codeIataCity": "THL", + "codeIso2Country": "MM", + "geonameId": 1295301, + "latitudeCity": 20.45, + "longitudeCity": 99.95, + "nameCity": "Tachilek", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-6", + "cityId": 7325, + "codeIataCity": "THM", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.183334, + "longitudeCity": -91.98333, + "nameCity": "Thompsonfield", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 7326, + "codeIataCity": "THN", + "codeIso2Country": "SE", + "geonameId": 2665171, + "latitudeCity": 58.266666, + "longitudeCity": 12.3, + "nameCity": "Trollhattan", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "0", + "cityId": 7327, + "codeIataCity": "THO", + "codeIso2Country": "IS", + "geonameId": 2627574, + "latitudeCity": 66.2, + "longitudeCity": -15.333333, + "nameCity": "Thorshofn", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-7", + "cityId": 7328, + "codeIataCity": "THP", + "codeIso2Country": "US", + "geonameId": 5840846, + "latitudeCity": 43.65, + "longitudeCity": -108.21667, + "nameCity": "Thermopolis", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "cityId": 7329, + "codeIataCity": "THQ", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 34.556236, + "longitudeCity": 105.86501, + "nameCity": "Tianshui", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3.30", + "cityId": 7330, + "codeIataCity": "THR", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 35.696111, + "longitudeCity": 51.423056, + "nameCity": "Tehran", + "timezone": "Asia/Tehran" + }, + { + "GMT": "7", + "cityId": 7331, + "codeIataCity": "THS", + "codeIso2Country": "TH", + "geonameId": 1150533, + "latitudeCity": 17.223057, + "longitudeCity": 99.82222, + "nameCity": "Sukhothai (sawankolok)", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "0", + "cityId": 7332, + "codeIataCity": "THT", + "codeIso2Country": "MR", + "geonameId": 0, + "latitudeCity": 17.233334, + "longitudeCity": -10.816667, + "nameCity": "Tamchakett", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "-4", + "cityId": 7333, + "codeIataCity": "THU", + "codeIso2Country": "GL", + "geonameId": 3831224, + "latitudeCity": 76.53333, + "longitudeCity": -68.7, + "nameCity": "Pituffik", + "timezone": "America/Thule" + }, + { + "GMT": "-5", + "cityId": 7334, + "codeIataCity": "THV", + "codeIso2Country": "US", + "geonameId": 5192726, + "latitudeCity": 39.95, + "longitudeCity": -76.71667, + "nameCity": "York", + "timezone": "America/New_York" + }, + { + "GMT": "7", + "cityId": 7335, + "codeIataCity": "THX", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 65.79722, + "longitudeCity": 87.93528, + "nameCity": "Turukhansk", + "timezone": "Asia/Krasnoyarsk" + }, + { + "GMT": "2", + "cityId": 7336, + "codeIataCity": "THY", + "codeIso2Country": "ZA", + "geonameId": 946973, + "latitudeCity": -22.883333, + "longitudeCity": 30.55, + "nameCity": "Thohoyandou", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "1", + "cityId": 7337, + "codeIataCity": "THZ", + "codeIso2Country": "NE", + "geonameId": 0, + "latitudeCity": 14.872778, + "longitudeCity": 5.263889, + "nameCity": "Tahoua", + "timezone": "Africa/Niamey" + }, + { + "GMT": "1", + "cityId": 7338, + "codeIataCity": "TIA", + "codeIso2Country": "AL", + "geonameId": 3183875, + "latitudeCity": 41.419132, + "longitudeCity": 19.71328, + "nameCity": "Tirana", + "timezone": "Europe/Tirane" + }, + { + "GMT": "-5", + "cityId": 7339, + "codeIataCity": "TIB", + "codeIso2Country": "CO", + "geonameId": 3685533, + "latitudeCity": 8.633333, + "longitudeCity": -72.73333, + "nameCity": "Tibu", + "timezone": "America/Bogota" + }, + { + "GMT": "12", + "cityId": 7340, + "codeIataCity": "TIC", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 7.05, + "longitudeCity": 171.78334, + "nameCity": "Tinak Island", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "1", + "cityId": 7341, + "codeIataCity": "TID", + "codeIso2Country": "DZ", + "geonameId": 2476897, + "latitudeCity": 35.466667, + "longitudeCity": 1.35, + "nameCity": "Tiaret", + "timezone": "Africa/Algiers" + }, + { + "GMT": "3", + "cityId": 7342, + "codeIataCity": "TIE", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 7.201111, + "longitudeCity": 35.41528, + "nameCity": "Tippi", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "3", + "cityId": 7343, + "codeIataCity": "TIF", + "codeIso2Country": "SA", + "geonameId": 104515, + "latitudeCity": 21.480364, + "longitudeCity": 40.552685, + "nameCity": "Taif", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "10", + "cityId": 7344, + "codeIataCity": "TIG", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -2.6, + "longitudeCity": 149.78334, + "nameCity": "Tingwon", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-10", + "cityId": 7345, + "codeIataCity": "TIH", + "codeIso2Country": "PF", + "geonameId": 4034590, + "latitudeCity": -15.118639, + "longitudeCity": -148.2338, + "nameCity": "Tikehau Atoll", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "4.30", + "cityId": 7346, + "codeIataCity": "TII", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 32.86667, + "longitudeCity": 65.63333, + "nameCity": "Tirinkot", + "timezone": "Asia/Kabul" + }, + { + "GMT": "-8", + "cityId": 7347, + "codeIataCity": "TIJ", + "codeIso2Country": "MX", + "geonameId": 3981609, + "latitudeCity": 32.546284, + "longitudeCity": -116.97466, + "nameCity": "Tijuana", + "timezone": "America/Tijuana" + }, + { + "GMT": "-7", + "cityId": 7348, + "codeIataCity": "TIL", + "codeIso2Country": "CA", + "geonameId": 5983620, + "latitudeCity": 50.5, + "longitudeCity": -1.03, + "nameCity": "Inverlake", + "timezone": "America/Edmonton" + }, + { + "GMT": "9", + "cityId": 7349, + "codeIataCity": "TIM", + "codeIso2Country": "ID", + "geonameId": 1624232, + "latitudeCity": -4.525666, + "longitudeCity": 136.88748, + "nameCity": "Tembagapura", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "cityId": 7350, + "codeIataCity": "TIN", + "codeIso2Country": "DZ", + "geonameId": 2476301, + "latitudeCity": 27.716667, + "longitudeCity": -8.166667, + "nameCity": "Tindouf", + "timezone": "Africa/Algiers" + }, + { + "GMT": "6.30", + "cityId": 7351, + "codeIataCity": "TIO", + "codeIso2Country": "MM", + "geonameId": 1302638, + "latitudeCity": 20.0, + "longitudeCity": 96.0, + "nameCity": "Tilin", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "2", + "cityId": 7352, + "codeIataCity": "TIP", + "codeIso2Country": "LY", + "geonameId": 2210247, + "latitudeCity": 32.876174, + "longitudeCity": 13.187507, + "nameCity": "Tripoli", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "10", + "cityId": 7353, + "codeIataCity": "TIQ", + "codeIso2Country": "MP", + "geonameId": 7828758, + "latitudeCity": 14.994319, + "longitudeCity": 145.62634, + "nameCity": "Tinian", + "timezone": "Pacific/Saipan" + }, + { + "GMT": "5.30", + "cityId": 7354, + "codeIataCity": "TIR", + "codeIso2Country": "IN", + "geonameId": 1254360, + "latitudeCity": 13.635721, + "longitudeCity": 79.54293, + "nameCity": "Tirupati", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "cityId": 7355, + "codeIataCity": "TIS", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -10.5, + "longitudeCity": 142.05, + "nameCity": "Thursday Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "12", + "cityId": 7356, + "codeIataCity": "TIU", + "codeIso2Country": "NZ", + "geonameId": 2181133, + "latitudeCity": -44.303448, + "longitudeCity": 171.22632, + "nameCity": "Timaru", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "1", + "cityId": 7357, + "codeIataCity": "TIV", + "codeIso2Country": "ME", + "geonameId": 3189073, + "latitudeCity": 42.40361, + "longitudeCity": 18.725555, + "nameCity": "Tivat", + "timezone": "Europe/Podgorica" + }, + { + "GMT": "-8", + "cityId": 7358, + "codeIataCity": "TIW", + "codeIso2Country": "US", + "geonameId": 5812944, + "latitudeCity": 47.252877, + "longitudeCity": -122.444291, + "nameCity": "Tacoma", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 7359, + "codeIataCity": "TIX", + "codeIso2Country": "US", + "geonameId": 4167147, + "latitudeCity": 28.512222, + "longitudeCity": -80.799446, + "nameCity": "Titusville", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 7360, + "codeIataCity": "TIY", + "codeIso2Country": "MR", + "geonameId": 0, + "latitudeCity": 18.566668, + "longitudeCity": -11.416667, + "nameCity": "Tidjikja", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "10", + "cityId": 7361, + "codeIataCity": "TIZ", + "codeIso2Country": "PG", + "geonameId": 2085772, + "latitudeCity": -5.860556, + "longitudeCity": 142.94055, + "nameCity": "Tari", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "cityId": 7362, + "codeIataCity": "TJA", + "codeIso2Country": "BO", + "geonameId": 3903320, + "latitudeCity": -21.554167, + "longitudeCity": -64.745834, + "nameCity": "Tarija", + "timezone": "America/La_Paz" + }, + { + "GMT": "7", + "cityId": 7363, + "codeIataCity": "TJB", + "codeIso2Country": "ID", + "geonameId": 6295587, + "latitudeCity": 2.916667, + "longitudeCity": 99.73333, + "nameCity": "Tanjung Balai", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-5", + "cityId": 7364, + "codeIataCity": "TJC", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 9.408333, + "longitudeCity": -78.48889, + "nameCity": "Ticantiki", + "timezone": "America/Panama" + }, + { + "GMT": "7", + "cityId": 7365, + "codeIataCity": "TJG", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -1.4, + "longitudeCity": 103.96667, + "nameCity": "Tanjung Warukin", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "9", + "cityId": 7366, + "codeIataCity": "TJH", + "codeIso2Country": "JP", + "geonameId": 1849831, + "latitudeCity": 35.509167, + "longitudeCity": 134.78972, + "nameCity": "Toyooka", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-6", + "cityId": 7367, + "codeIataCity": "TJI", + "codeIso2Country": "HN", + "geonameId": 3600591, + "latitudeCity": 15.925833, + "longitudeCity": -85.939445, + "nameCity": "Trujillo", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "3", + "cityId": 7368, + "codeIataCity": "TJK", + "codeIso2Country": "TR", + "geonameId": 300619, + "latitudeCity": 40.302223, + "longitudeCity": 36.36778, + "nameCity": "Tokat", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "5", + "cityId": 7369, + "codeIataCity": "TJM", + "codeIso2Country": "RU", + "geonameId": 1488754, + "latitudeCity": 57.181828, + "longitudeCity": 65.35024, + "nameCity": "Tyumen", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-10", + "cityId": 7370, + "codeIataCity": "TJN", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -15.850556, + "longitudeCity": -142.26694, + "nameCity": "Takume", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "7", + "cityId": 7371, + "codeIataCity": "TJQ", + "codeIso2Country": "ID", + "geonameId": 1624877, + "latitudeCity": -2.75, + "longitudeCity": 107.65, + "nameCity": "Tanjung Pandan", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "8", + "cityId": 7372, + "codeIataCity": "TJS", + "codeIso2Country": "ID", + "geonameId": 1624725, + "latitudeCity": 2.85, + "longitudeCity": 117.36667, + "nameCity": "Tanjung Selor", + "timezone": "Asia/Makassar" + }, + { + "GMT": "5", + "cityId": 7373, + "codeIataCity": "TJU", + "codeIso2Country": "TJ", + "geonameId": 0, + "latitudeCity": 37.988335, + "longitudeCity": 69.80666, + "nameCity": "Kulyab", + "timezone": "Asia/Dushanbe" + }, + { + "GMT": "5.30", + "cityId": 7374, + "codeIataCity": "TJV", + "codeIso2Country": "IN", + "geonameId": 1254649, + "latitudeCity": 10.8, + "longitudeCity": 79.2, + "nameCity": "Thanjavur", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-9", + "cityId": 7375, + "codeIataCity": "TKA", + "codeIso2Country": "US", + "geonameId": 5875745, + "latitudeCity": 62.322224, + "longitudeCity": -150.09, + "nameCity": "Talkeetna", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 7376, + "codeIataCity": "TKB", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.666667, + "longitudeCity": 146.55, + "nameCity": "Tekadu", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 7377, + "codeIataCity": "TKC", + "codeIso2Country": "CM", + "geonameId": 2232593, + "latitudeCity": 4.116667, + "longitudeCity": 9.333333, + "nameCity": "Tiko", + "timezone": "Africa/Douala" + }, + { + "GMT": "0", + "cityId": 7378, + "codeIataCity": "TKD", + "codeIso2Country": "GH", + "geonameId": 2294915, + "latitudeCity": 4.891667, + "longitudeCity": -1.775, + "nameCity": "Takoradi", + "timezone": "Africa/Accra" + }, + { + "GMT": "-9", + "cityId": 7379, + "codeIataCity": "TKE", + "codeIso2Country": "US", + "geonameId": 5557890, + "latitudeCity": 57.783333, + "longitudeCity": -135.21666, + "nameCity": "Tenakee Springs", + "timezone": "America/Anchorage" + }, + { + "GMT": "-8", + "cityId": 7380, + "codeIataCity": "TKF", + "codeIso2Country": "US", + "geonameId": 5403676, + "latitudeCity": 39.325, + "longitudeCity": -120.14167, + "nameCity": "Truckee", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "7", + "cityId": 7381, + "codeIataCity": "TKG", + "codeIso2Country": "ID", + "geonameId": 1624917, + "latitudeCity": -5.242783, + "longitudeCity": 105.1758, + "nameCity": "Bandar Lampung", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "7", + "cityId": 7382, + "codeIataCity": "TKH", + "codeIso2Country": "TH", + "geonameId": 1605912, + "latitudeCity": 15.25, + "longitudeCity": 100.35, + "nameCity": "Takhli", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-9", + "cityId": 7383, + "codeIataCity": "TKI", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 55.9375, + "longitudeCity": -133.325, + "nameCity": "Tokeen", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 7384, + "codeIataCity": "TKJ", + "codeIso2Country": "US", + "geonameId": 5876363, + "latitudeCity": 63.3, + "longitudeCity": -143.0, + "nameCity": "Tok", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 7385, + "codeIataCity": "TKK", + "codeIso2Country": "FM", + "geonameId": 0, + "latitudeCity": 7.457446, + "longitudeCity": 151.84201, + "nameCity": "Truk", + "timezone": "Pacific/Chuuk" + }, + { + "GMT": "-9", + "cityId": 7386, + "codeIataCity": "TKL", + "codeIso2Country": "US", + "geonameId": 5554072, + "latitudeCity": 58.0, + "longitudeCity": -134.0, + "nameCity": "Taku Lodge", + "timezone": "America/Juneau" + }, + { + "GMT": "-6", + "cityId": 7387, + "codeIataCity": "TKM", + "codeIso2Country": "GT", + "geonameId": 3595725, + "latitudeCity": 17.226389, + "longitudeCity": -89.605, + "nameCity": "Tikal", + "timezone": "America/Guatemala" + }, + { + "GMT": "9", + "cityId": 7388, + "codeIataCity": "TKN", + "codeIso2Country": "JP", + "geonameId": 0, + "latitudeCity": 27.833332, + "longitudeCity": 128.88333, + "nameCity": "Tokunoshima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "2", + "cityId": 7389, + "codeIataCity": "TKO", + "codeIso2Country": "LS", + "geonameId": 0, + "latitudeCity": -29.233334, + "longitudeCity": 28.883333, + "nameCity": "Tlokoeng", + "timezone": "Africa/Maseru" + }, + { + "GMT": "-10", + "cityId": 7390, + "codeIataCity": "TKP", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -15.45, + "longitudeCity": -145.14166, + "nameCity": "Takapoto", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "3", + "cityId": 7391, + "codeIataCity": "TKQ", + "codeIso2Country": "TZ", + "geonameId": 157738, + "latitudeCity": -4.885, + "longitudeCity": 29.67, + "nameCity": "Kigoma", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "6", + "cityId": 7392, + "codeIataCity": "TKR", + "codeIso2Country": "BD", + "geonameId": 0, + "latitudeCity": 26.016666, + "longitudeCity": 88.4, + "nameCity": "Thakurgaon", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "9", + "cityId": 7393, + "codeIataCity": "TKS", + "codeIso2Country": "JP", + "geonameId": 1850158, + "latitudeCity": 34.139023, + "longitudeCity": 134.59483, + "nameCity": "Tokushima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "7", + "cityId": 7394, + "codeIataCity": "TKT", + "codeIso2Country": "TH", + "geonameId": 1150490, + "latitudeCity": 16.878332, + "longitudeCity": 99.15222, + "nameCity": "Tak", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "2", + "cityId": 7395, + "codeIataCity": "TKU", + "codeIso2Country": "FI", + "geonameId": 633679, + "latitudeCity": 60.512794, + "longitudeCity": 22.28098, + "nameCity": "Turku", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-10", + "cityId": 7396, + "codeIataCity": "TKV", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -17.283333, + "longitudeCity": -138.33333, + "nameCity": "Tatakoto", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "10", + "cityId": 7397, + "codeIataCity": "TKW", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.25, + "longitudeCity": 142.15, + "nameCity": "Tekin", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-10", + "cityId": 7398, + "codeIataCity": "TKX", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -14.457749, + "longitudeCity": -145.0264, + "nameCity": "Takaroa", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "8", + "cityId": 7399, + "codeIataCity": "TKY", + "codeIso2Country": "AU", + "geonameId": 2059811, + "latitudeCity": -17.066668, + "longitudeCity": 128.25, + "nameCity": "Turkey Creek", + "timezone": "Australia/Perth" + }, + { + "GMT": "12", + "cityId": 7400, + "codeIataCity": "TKZ", + "codeIso2Country": "NZ", + "geonameId": 2190324, + "latitudeCity": -38.216667, + "longitudeCity": 175.83333, + "nameCity": "Tokoroa", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-9", + "cityId": 7401, + "codeIataCity": "TLA", + "codeIso2Country": "US", + "geonameId": 5875969, + "latitudeCity": 65.27167, + "longitudeCity": -166.355, + "nameCity": "Teller", + "timezone": "America/Anchorage" + }, + { + "GMT": "5", + "cityId": 7402, + "codeIataCity": "TLB", + "codeIso2Country": "PK", + "geonameId": 1176615, + "latitudeCity": 34.13333, + "longitudeCity": 72.816666, + "nameCity": "Tarbela", + "timezone": "Asia/Karachi" + }, + { + "GMT": "2", + "cityId": 7403, + "codeIataCity": "TLD", + "codeIso2Country": "BW", + "geonameId": 0, + "latitudeCity": -22.183332, + "longitudeCity": 29.116667, + "nameCity": "Tuli Block", + "timezone": "Africa/Gaborone" + }, + { + "GMT": "3", + "cityId": 7404, + "codeIataCity": "TLE", + "codeIso2Country": "MG", + "geonameId": 1055429, + "latitudeCity": -23.389723, + "longitudeCity": 43.724167, + "nameCity": "Tulear", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-9", + "cityId": 7405, + "codeIataCity": "TLF", + "codeIso2Country": "US", + "geonameId": 5875962, + "latitudeCity": 63.666668, + "longitudeCity": -152.5, + "nameCity": "Telida", + "timezone": "America/Anchorage" + }, + { + "GMT": "11", + "cityId": 7406, + "codeIataCity": "TLG", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -9.1, + "longitudeCity": 160.15, + "nameCity": "Tulagi Island", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-5", + "cityId": 7407, + "codeIataCity": "TLH", + "codeIso2Country": "US", + "geonameId": 4174715, + "latitudeCity": 30.395782, + "longitudeCity": -84.34444, + "nameCity": "Tallahassee", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 7408, + "codeIataCity": "TLI", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 1.033333, + "longitudeCity": 120.816666, + "nameCity": "Tolitoli", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-9", + "cityId": 7409, + "codeIataCity": "TLJ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 62.885277, + "longitudeCity": -155.96806, + "nameCity": "Tatalina", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "cityId": 7410, + "codeIataCity": "TLL", + "codeIso2Country": "EE", + "geonameId": 588409, + "latitudeCity": 59.438862, + "longitudeCity": 24.754472, + "nameCity": "Tallinn", + "timezone": "Europe/Tallinn" + }, + { + "GMT": "1", + "cityId": 7411, + "codeIataCity": "TLM", + "codeIso2Country": "DZ", + "geonameId": 2475687, + "latitudeCity": 35.016666, + "longitudeCity": -1.45, + "nameCity": "Tlemcen", + "timezone": "Africa/Algiers" + }, + { + "GMT": "1", + "cityId": 7412, + "codeIataCity": "TLN", + "codeIso2Country": "FR", + "geonameId": 3008432, + "latitudeCity": 43.120541, + "longitudeCity": 6.128639, + "nameCity": "Hyeres", + "timezone": "Europe/Paris" + }, + { + "GMT": "10", + "cityId": 7413, + "codeIataCity": "TLO", + "codeIso2Country": "PG", + "geonameId": 2093685, + "latitudeCity": -4.983333, + "longitudeCity": 152.03334, + "nameCity": "Tol", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "10", + "cityId": 7414, + "codeIataCity": "TLP", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -4.783333, + "longitudeCity": 141.01666, + "nameCity": "Tumolbil", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "6", + "cityId": 7415, + "codeIataCity": "TLQ", + "codeIso2Country": "CN", + "geonameId": 1529114, + "latitudeCity": 43.0303, + "longitudeCity": 89.0972, + "nameCity": "Turpan", + "timezone": "Asia/Urumqi" + }, + { + "GMT": "-8", + "cityId": 7416, + "codeIataCity": "TLR", + "codeIso2Country": "US", + "geonameId": 5403783, + "latitudeCity": 36.216667, + "longitudeCity": -119.35, + "nameCity": "Tulare", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 7417, + "codeIataCity": "TLS", + "codeIso2Country": "FR", + "geonameId": 2972315, + "latitudeCity": 43.63007, + "longitudeCity": 1.374321, + "nameCity": "Toulouse", + "timezone": "Europe/Paris" + }, + { + "GMT": "-9", + "cityId": 7418, + "codeIataCity": "TLT", + "codeIso2Country": "US", + "geonameId": 5876777, + "latitudeCity": 61.09889, + "longitudeCity": -160.96472, + "nameCity": "Tuluksak", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 7419, + "codeIataCity": "TLU", + "codeIso2Country": "CO", + "geonameId": 3687238, + "latitudeCity": 9.516667, + "longitudeCity": -75.583336, + "nameCity": "Tolu", + "timezone": "America/Bogota" + }, + { + "GMT": "2", + "cityId": 7420, + "codeIataCity": "TLV", + "codeIso2Country": "IL", + "geonameId": 293397, + "latitudeCity": 32.000454, + "longitudeCity": 34.870743, + "nameCity": "Tel Aviv Yafo", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "10", + "cityId": 7421, + "codeIataCity": "TLW", + "codeIso2Country": "PG", + "geonameId": 2085944, + "latitudeCity": -5.366667, + "longitudeCity": 150.01666, + "nameCity": "Talasea", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "cityId": 7422, + "codeIataCity": "TLX", + "codeIso2Country": "CL", + "geonameId": 3870294, + "latitudeCity": -35.466667, + "longitudeCity": -71.666664, + "nameCity": "Talca", + "timezone": "America/Santiago" + }, + { + "GMT": "10", + "cityId": 7423, + "codeIataCity": "TLY", + "codeIso2Country": "RU", + "geonameId": 2017912, + "latitudeCity": 44.81465, + "longitudeCity": 136.28928, + "nameCity": "Plastun", + "timezone": "Asia/Vladivostok" + }, + { + "GMT": "-3", + "cityId": 7424, + "codeIataCity": "TLZ", + "codeIso2Country": "BR", + "geonameId": 3468100, + "latitudeCity": -18.166668, + "longitudeCity": -47.95, + "nameCity": "Catalao", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "cityId": 7425, + "codeIataCity": "TMA", + "codeIso2Country": "US", + "geonameId": 4226552, + "latitudeCity": 31.433332, + "longitudeCity": -83.48333, + "nameCity": "Tifton", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 7426, + "codeIataCity": "TMC", + "codeIso2Country": "ID", + "geonameId": 7336548, + "latitudeCity": -9.340278, + "longitudeCity": 119.18306, + "nameCity": "Tambolaka", + "timezone": "Asia/Makassar" + }, + { + "GMT": "0", + "cityId": 7427, + "codeIataCity": "TMD", + "codeIso2Country": "MR", + "geonameId": 0, + "latitudeCity": 16.236668, + "longitudeCity": -8.154167, + "nameCity": "Timbedra", + "timezone": "Africa/Nouakchott" + }, + { + "GMT": "-5", + "cityId": 7428, + "codeIataCity": "TME", + "codeIso2Country": "CO", + "geonameId": 3667478, + "latitudeCity": 6.5, + "longitudeCity": -71.76667, + "nameCity": "Tame", + "timezone": "America/Bogota" + }, + { + "GMT": "8", + "cityId": 7429, + "codeIataCity": "TMG", + "codeIso2Country": "MY", + "geonameId": 1734052, + "latitudeCity": 5.4, + "longitudeCity": 118.65, + "nameCity": "Tomanggong", + "timezone": "Asia/Kuching" + }, + { + "GMT": "9", + "cityId": 7430, + "codeIataCity": "TMH", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -6.083333, + "longitudeCity": 140.26666, + "nameCity": "Tanahmerah", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "5.45", + "cityId": 7431, + "codeIataCity": "TMI", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 27.3, + "longitudeCity": 87.2, + "nameCity": "Tumling Tar", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "5", + "cityId": 7432, + "codeIataCity": "TMJ", + "codeIso2Country": "UZ", + "geonameId": 0, + "latitudeCity": 37.280502, + "longitudeCity": 67.318954, + "nameCity": "Termez", + "timezone": "Asia/Samarkand" + }, + { + "GMT": "7", + "cityId": 7433, + "codeIataCity": "TMK", + "codeIso2Country": "VN", + "geonameId": 1583992, + "latitudeCity": 15.566667, + "longitudeCity": 108.48333, + "nameCity": "Tamky", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "0", + "cityId": 7434, + "codeIataCity": "TML", + "codeIso2Country": "GH", + "geonameId": 2294877, + "latitudeCity": 9.406944, + "longitudeCity": -0.879167, + "nameCity": "Tamale", + "timezone": "Africa/Accra" + }, + { + "GMT": "3", + "cityId": 7435, + "codeIataCity": "TMM", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -18.11, + "longitudeCity": 49.392223, + "nameCity": "Tamatave", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "12", + "cityId": 7436, + "codeIataCity": "TMN", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": -2.483333, + "longitudeCity": 175.98334, + "nameCity": "Tamana Island", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "-4", + "cityId": 7437, + "codeIataCity": "TMO", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 7.3, + "longitudeCity": -61.5, + "nameCity": "Tumeremo", + "timezone": "America/Caracas" + }, + { + "GMT": "2", + "cityId": 7438, + "codeIataCity": "TMP", + "codeIso2Country": "FI", + "geonameId": 634963, + "latitudeCity": 61.497856, + "longitudeCity": 23.759633, + "nameCity": "Tampere", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "0", + "cityId": 7439, + "codeIataCity": "TMQ", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 14.783333, + "longitudeCity": 0.083333, + "nameCity": "Tambao", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "1", + "cityId": 7440, + "codeIataCity": "TMR", + "codeIso2Country": "DZ", + "geonameId": 2478216, + "latitudeCity": 22.814722, + "longitudeCity": 5.459167, + "nameCity": "Tamanrasset", + "timezone": "Africa/Algiers" + }, + { + "GMT": "0", + "cityId": 7441, + "codeIataCity": "TMS", + "codeIso2Country": "ST", + "geonameId": 0, + "latitudeCity": 0.378333, + "longitudeCity": 6.725, + "nameCity": "Sao Tome Island", + "timezone": "Africa/Sao_Tome" + }, + { + "GMT": "-3", + "cityId": 7442, + "codeIataCity": "TMT", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -1.916667, + "longitudeCity": -55.583332, + "nameCity": "Trombetas", + "timezone": "America/Santarem" + }, + { + "GMT": "-6", + "cityId": 7443, + "codeIataCity": "TMU", + "codeIso2Country": "CR", + "geonameId": 3621359, + "latitudeCity": 9.733333, + "longitudeCity": -85.01667, + "nameCity": "Tambor", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "10", + "cityId": 7444, + "codeIataCity": "TMW", + "codeIso2Country": "AU", + "geonameId": 2147497, + "latitudeCity": -31.0845, + "longitudeCity": 150.8485, + "nameCity": "Tamworth", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "cityId": 7445, + "codeIataCity": "TMX", + "codeIso2Country": "DZ", + "geonameId": 2476403, + "latitudeCity": 29.233334, + "longitudeCity": 0.283333, + "nameCity": "Timimoun", + "timezone": "Africa/Algiers" + }, + { + "GMT": "9", + "cityId": 7446, + "codeIataCity": "TMY", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.95, + "longitudeCity": 138.41667, + "nameCity": "Tiom", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "12", + "cityId": 7447, + "codeIataCity": "TMZ", + "codeIso2Country": "NZ", + "geonameId": 2193733, + "latitudeCity": -37.11667, + "longitudeCity": 175.56667, + "nameCity": "Thames", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "8", + "cityId": 7448, + "codeIataCity": "TNA", + "codeIso2Country": "CN", + "geonameId": 1805753, + "latitudeCity": 36.85769, + "longitudeCity": 117.20688, + "nameCity": "Jinan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 7449, + "codeIataCity": "TNB", + "codeIso2Country": "ID", + "geonameId": 1650527, + "latitudeCity": -1.916667, + "longitudeCity": 116.2, + "nameCity": "Tanah Grogot", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-9", + "cityId": 7450, + "codeIataCity": "TNC", + "codeIso2Country": "US", + "geonameId": 5876265, + "latitudeCity": 65.56389, + "longitudeCity": -167.91888, + "nameCity": "Tin City", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 7451, + "codeIataCity": "TND", + "codeIso2Country": "CU", + "geonameId": 0, + "latitudeCity": 21.8, + "longitudeCity": -80.0, + "nameCity": "Trinidad", + "timezone": "America/Havana" + }, + { + "GMT": "9", + "cityId": 7452, + "codeIataCity": "TNE", + "codeIso2Country": "JP", + "geonameId": 1855203, + "latitudeCity": 30.541111, + "longitudeCity": 130.95416, + "nameCity": "Tanegashima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "cityId": 7453, + "codeIataCity": "TNF", + "codeIso2Country": "FR", + "geonameId": 2988507, + "latitudeCity": 48.75083, + "longitudeCity": 2.113056, + "nameCity": "Toussus-Le-Noble", + "timezone": "Europe/Paris" + }, + { + "GMT": "0", + "cityId": 7454, + "codeIataCity": "TNG", + "codeIso2Country": "MA", + "geonameId": 2530335, + "latitudeCity": 35.726288, + "longitudeCity": -5.912898, + "nameCity": "Tangier", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "8", + "cityId": 7455, + "codeIataCity": "TNH", + "codeIso2Country": "CN", + "geonameId": 2038584, + "latitudeCity": 41.75, + "longitudeCity": 125.95, + "nameCity": "Tonghua", + "timezone": "Asia/Harbin" + }, + { + "GMT": "5.30", + "cityId": 7456, + "codeIataCity": "TNI", + "codeIso2Country": "IN", + "geonameId": 1267154, + "latitudeCity": 24.564325, + "longitudeCity": 80.85181, + "nameCity": "Satna", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "7", + "cityId": 7457, + "codeIataCity": "TNJ", + "codeIso2Country": "ID", + "geonameId": 1624863, + "latitudeCity": 0.919167, + "longitudeCity": 104.53611, + "nameCity": "Tanjung Pinang", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-9", + "cityId": 7458, + "codeIataCity": "TNK", + "codeIso2Country": "US", + "geonameId": 5876829, + "latitudeCity": 60.57083, + "longitudeCity": -165.26666, + "nameCity": "Tununak", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "cityId": 7459, + "codeIataCity": "TNL", + "codeIso2Country": "UA", + "geonameId": 691650, + "latitudeCity": 49.566666, + "longitudeCity": 25.6, + "nameCity": "Ternopol", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-4", + "cityId": 7460, + "codeIataCity": "TNM", + "codeIso2Country": "AQ", + "geonameId": 0, + "latitudeCity": -62.190556, + "longitudeCity": -58.98639, + "nameCity": "Teniente R. Marsh Martin", + "timezone": "America/Santiago" + }, + { + "GMT": "8", + "cityId": 7461, + "codeIataCity": "TNN", + "codeIso2Country": "TW", + "geonameId": 1668355, + "latitudeCity": 22.948706, + "longitudeCity": 120.21571, + "nameCity": "Tainan", + "timezone": "Asia/Taipei" + }, + { + "GMT": "-6", + "cityId": 7462, + "codeIataCity": "TNO", + "codeIso2Country": "CR", + "geonameId": 6619864, + "latitudeCity": 10.314033, + "longitudeCity": -85.815475, + "nameCity": "Tamarindo", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-8", + "cityId": 7463, + "codeIataCity": "TNP", + "codeIso2Country": "US", + "geonameId": 5380668, + "latitudeCity": 34.11889, + "longitudeCity": -115.935, + "nameCity": "Twentynine Palms", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "14", + "cityId": 7464, + "codeIataCity": "TNQ", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": 4.7, + "longitudeCity": -160.33333, + "nameCity": "Teraina", + "timezone": "Pacific/Kiritimati" + }, + { + "GMT": "3", + "cityId": 7465, + "codeIataCity": "TNR", + "codeIso2Country": "MG", + "geonameId": 1070940, + "latitudeCity": -18.799631, + "longitudeCity": 47.47503, + "nameCity": "Antananarivo", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-7", + "cityId": 7466, + "codeIataCity": "TNS", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 62.0, + "longitudeCity": -127.666664, + "nameCity": "Tungsten", + "timezone": "America/Dawson_Creek" + }, + { + "GMT": "-6", + "cityId": 7467, + "codeIataCity": "TNU", + "codeIso2Country": "US", + "geonameId": 4853828, + "latitudeCity": 41.7, + "longitudeCity": -93.05, + "nameCity": "Newton", + "timezone": "America/Chicago" + }, + { + "GMT": "14", + "cityId": 7468, + "codeIataCity": "TNV", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": 3.833333, + "longitudeCity": -159.35, + "nameCity": "Tabuaeran", + "timezone": "Pacific/Kiritimati" + }, + { + "GMT": "-5", + "cityId": 7469, + "codeIataCity": "TNW", + "codeIso2Country": "EC", + "geonameId": 3652728, + "latitudeCity": 62.666195, + "longitudeCity": -153.7112, + "nameCity": "Tena", + "timezone": "America/Guayaquil" + }, + { + "GMT": "7", + "cityId": 7470, + "codeIataCity": "TNX", + "codeIso2Country": "KH", + "geonameId": 0, + "latitudeCity": 13.533333, + "longitudeCity": 106.03333, + "nameCity": "Stung Treng", + "timezone": "Asia/Phnom_Penh" + }, + { + "GMT": "7", + "cityId": 7471, + "codeIataCity": "TNZ", + "codeIso2Country": "MN", + "geonameId": 0, + "latitudeCity": 48.739723, + "longitudeCity": 98.275276, + "nameCity": "Tosontsengel", + "timezone": "Asia/Hovd" + }, + { + "GMT": "-8", + "cityId": 7472, + "codeIataCity": "TOA", + "codeIso2Country": "US", + "geonameId": 5368361, + "latitudeCity": 33.833332, + "longitudeCity": -118.316666, + "nameCity": "Torrance", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "cityId": 7473, + "codeIataCity": "TOB", + "codeIso2Country": "LY", + "geonameId": 81302, + "latitudeCity": 31.854168, + "longitudeCity": 23.917221, + "nameCity": "Tobruk", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "-5", + "cityId": 7474, + "codeIataCity": "TOC", + "codeIso2Country": "US", + "geonameId": 4226722, + "latitudeCity": 34.583332, + "longitudeCity": -83.316666, + "nameCity": "Toccoa", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 7475, + "codeIataCity": "TOD", + "codeIso2Country": "MY", + "geonameId": 1732826, + "latitudeCity": 2.75, + "longitudeCity": 104.166664, + "nameCity": "Tioman", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "1", + "cityId": 7476, + "codeIataCity": "TOE", + "codeIso2Country": "TN", + "geonameId": 2464648, + "latitudeCity": 33.916668, + "longitudeCity": 8.133333, + "nameCity": "Tozeur", + "timezone": "Africa/Tunis" + }, + { + "GMT": "7", + "cityId": 7477, + "codeIataCity": "TOF", + "codeIso2Country": "RU", + "geonameId": 1489425, + "latitudeCity": 56.5, + "longitudeCity": 84.96667, + "nameCity": "Tomsk", + "timezone": "Asia/Novosibirsk" + }, + { + "GMT": "-9", + "cityId": 7478, + "codeIataCity": "TOG", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 59.056667, + "longitudeCity": -160.38222, + "nameCity": "Togiak Village", + "timezone": "America/Anchorage" + }, + { + "GMT": "11", + "cityId": 7479, + "codeIataCity": "TOH", + "codeIso2Country": "VU", + "geonameId": 0, + "latitudeCity": -13.166667, + "longitudeCity": 166.75, + "nameCity": "Torres", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-6", + "cityId": 7480, + "codeIataCity": "TOI", + "codeIso2Country": "US", + "geonameId": 4094163, + "latitudeCity": 31.8, + "longitudeCity": -85.96667, + "nameCity": "Troy", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 7481, + "codeIataCity": "TOK", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.233333, + "longitudeCity": 155.33333, + "nameCity": "Torokina", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 7482, + "codeIataCity": "TOL", + "codeIso2Country": "US", + "geonameId": 5174035, + "latitudeCity": 41.663938, + "longitudeCity": -83.555212, + "nameCity": "Toledo", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 7483, + "codeIataCity": "TOM", + "codeIso2Country": "ML", + "geonameId": 2449067, + "latitudeCity": 16.732222, + "longitudeCity": -3.005278, + "nameCity": "Tombouctou", + "timezone": "Africa/Bamako" + }, + { + "GMT": "10", + "cityId": 7484, + "codeIataCity": "TON", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.35, + "longitudeCity": 155.59166, + "nameCity": "Tonu", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 7485, + "codeIataCity": "TOO", + "codeIso2Country": "CR", + "geonameId": 3622674, + "latitudeCity": 8.833333, + "longitudeCity": -82.96667, + "nameCity": "San Vito", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-6", + "cityId": 7486, + "codeIataCity": "TOP", + "codeIso2Country": "US", + "geonameId": 4280539, + "latitudeCity": 39.055824, + "longitudeCity": -95.689019, + "nameCity": "Topeka", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 7487, + "codeIataCity": "TOQ", + "codeIso2Country": "CL", + "geonameId": 3869716, + "latitudeCity": -22.13611, + "longitudeCity": -70.061386, + "nameCity": "Tocopilla", + "timezone": "America/Santiago" + }, + { + "GMT": "-7", + "cityId": 7488, + "codeIataCity": "TOR", + "codeIso2Country": "US", + "geonameId": 5831333, + "latitudeCity": 42.066666, + "longitudeCity": -104.183334, + "nameCity": "Torrington", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 7489, + "codeIataCity": "TOS", + "codeIso2Country": "NO", + "geonameId": 3133895, + "latitudeCity": 69.67983, + "longitudeCity": 18.907343, + "nameCity": "Tromso", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-3", + "cityId": 7490, + "codeIataCity": "TOT", + "codeIso2Country": "SR", + "geonameId": 3382867, + "latitudeCity": 5.883333, + "longitudeCity": -56.316666, + "nameCity": "Totness", + "timezone": "America/Paramaribo" + }, + { + "GMT": "11", + "cityId": 7491, + "codeIataCity": "TOU", + "codeIso2Country": "NC", + "geonameId": 2137873, + "latitudeCity": -20.8, + "longitudeCity": 165.25, + "nameCity": "Touho", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "-4", + "cityId": 7492, + "codeIataCity": "TOV", + "codeIso2Country": "VG", + "geonameId": 0, + "latitudeCity": 18.43347, + "longitudeCity": -64.633278, + "nameCity": "Tortola", + "timezone": "America/Tortola" + }, + { + "GMT": "-3", + "cityId": 7493, + "codeIataCity": "TOW", + "codeIso2Country": "BR", + "geonameId": 3446370, + "latitudeCity": -24.69861, + "longitudeCity": -53.69611, + "nameCity": "Toledo", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "5", + "cityId": 7494, + "codeIataCity": "TOX", + "codeIso2Country": "RU", + "geonameId": 1489530, + "latitudeCity": 58.13333, + "longitudeCity": 68.23333, + "nameCity": "Tobolsk", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "9", + "cityId": 7495, + "codeIataCity": "TOY", + "codeIso2Country": "JP", + "geonameId": 1849876, + "latitudeCity": 36.64245, + "longitudeCity": 137.18945, + "nameCity": "Toyama", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "0", + "cityId": 7496, + "codeIataCity": "TOZ", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 8.283333, + "longitudeCity": -7.683333, + "nameCity": "Touba", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "-5", + "cityId": 7497, + "codeIataCity": "TPA", + "codeIso2Country": "US", + "geonameId": 4174757, + "latitudeCity": 27.949436, + "longitudeCity": -82.465144, + "nameCity": "Tampa", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 7498, + "codeIataCity": "TPC", + "codeIso2Country": "EC", + "geonameId": 0, + "latitudeCity": -1.416667, + "longitudeCity": -76.78333, + "nameCity": "Tarapoa", + "timezone": "America/Guayaquil" + }, + { + "GMT": "8", + "cityId": 7499, + "codeIataCity": "TPE", + "codeIso2Country": "TW", + "geonameId": 1668341, + "latitudeCity": 25.091075, + "longitudeCity": 121.559834, + "nameCity": "Taipei", + "timezone": "Asia/Taipei" + }, + { + "GMT": "8", + "cityId": 7500, + "codeIataCity": "TPG", + "codeIso2Country": "MY", + "geonameId": 1734634, + "latitudeCity": 4.85, + "longitudeCity": 100.73333, + "nameCity": "Taiping", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "-8", + "cityId": 7501, + "codeIataCity": "TPH", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.069211, + "longitudeCity": -117.230586, + "nameCity": "Tonopah", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 7502, + "codeIataCity": "TPI", + "codeIso2Country": "PG", + "geonameId": 2085807, + "latitudeCity": -8.366667, + "longitudeCity": 146.98334, + "nameCity": "Tapini", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "5.45", + "cityId": 7503, + "codeIataCity": "TPJ", + "codeIso2Country": "NP", + "geonameId": 1283240, + "latitudeCity": 27.35, + "longitudeCity": 87.683334, + "nameCity": "Taplejung", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "7", + "cityId": 7504, + "codeIataCity": "TPK", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 3.266667, + "longitudeCity": 97.183334, + "nameCity": "Tapaktuan", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "-6", + "cityId": 7505, + "codeIataCity": "TPL", + "codeIso2Country": "US", + "geonameId": 4735966, + "latitudeCity": 31.150278, + "longitudeCity": -97.409164, + "nameCity": "Temple", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 7506, + "codeIataCity": "TPN", + "codeIso2Country": "EC", + "geonameId": 0, + "latitudeCity": -0.766667, + "longitudeCity": -75.53333, + "nameCity": "Tiputini", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-9", + "cityId": 7507, + "codeIataCity": "TPO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 60.166668, + "longitudeCity": -154.33333, + "nameCity": "Tanalian Point", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 7508, + "codeIataCity": "TPP", + "codeIso2Country": "PE", + "geonameId": 3691474, + "latitudeCity": -6.511111, + "longitudeCity": -76.39861, + "nameCity": "Tarapoto", + "timezone": "America/Lima" + }, + { + "GMT": "-7", + "cityId": 7509, + "codeIataCity": "TPQ", + "codeIso2Country": "MX", + "geonameId": 3981941, + "latitudeCity": 21.5, + "longitudeCity": -104.9, + "nameCity": "Tepic", + "timezone": "America/Mazatlan" + }, + { + "GMT": "8", + "cityId": 7510, + "codeIataCity": "TPR", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -22.75, + "longitudeCity": 117.666664, + "nameCity": "Tom Price", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "cityId": 7511, + "codeIataCity": "TPS", + "codeIso2Country": "IT", + "geonameId": 2522876, + "latitudeCity": 37.901386, + "longitudeCity": 12.495865, + "nameCity": "Trapani", + "timezone": "Europe/Rome" + }, + { + "GMT": "0", + "cityId": 7512, + "codeIataCity": "TPT", + "codeIso2Country": "LR", + "geonameId": 0, + "latitudeCity": 6.483333, + "longitudeCity": -8.866667, + "nameCity": "Tapeta", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "5.45", + "cityId": 7513, + "codeIataCity": "TPU", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 28.55, + "longitudeCity": 81.191666, + "nameCity": "Tikapur", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-10", + "cityId": 7514, + "codeIataCity": "TPX", + "codeIso2Country": "PF", + "geonameId": 4033077, + "latitudeCity": -16.283333, + "longitudeCity": -151.83333, + "nameCity": "Tupai", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "3", + "cityId": 7515, + "codeIataCity": "TQD", + "codeIso2Country": "IQ", + "geonameId": 0, + "latitudeCity": 33.3381, + "longitudeCity": 43.5969, + "nameCity": "Al Fallujah", + "timezone": "Asia/Baghdad" + }, + { + "GMT": "5", + "cityId": 7516, + "codeIataCity": "TQL", + "codeIso2Country": "RU", + "geonameId": 1490085, + "latitudeCity": 64.92134, + "longitudeCity": 77.797356, + "nameCity": "Tarko-Sale", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "4.30", + "cityId": 7517, + "codeIataCity": "TQN", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 36.766666, + "longitudeCity": 69.53333, + "nameCity": "Taluqan", + "timezone": "Asia/Kabul" + }, + { + "GMT": "1", + "cityId": 7518, + "codeIataCity": "TQR", + "codeIso2Country": "IT", + "geonameId": 0, + "latitudeCity": 42.11667, + "longitudeCity": 15.483333, + "nameCity": "San Domino Island", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "cityId": 7519, + "codeIataCity": "TQS", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 0.733333, + "longitudeCity": -75.23333, + "nameCity": "Tres Esquinas", + "timezone": "America/Bogota" + }, + { + "GMT": "9", + "cityId": 7520, + "codeIataCity": "TRA", + "codeIso2Country": "JP", + "geonameId": 1850822, + "latitudeCity": 24.65, + "longitudeCity": 124.7, + "nameCity": "Taramajima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "cityId": 7521, + "codeIataCity": "TRB", + "codeIso2Country": "CO", + "geonameId": 3665580, + "latitudeCity": 8.078333, + "longitudeCity": -76.748055, + "nameCity": "Turbo", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 7522, + "codeIataCity": "TRC", + "codeIso2Country": "MX", + "geonameId": 3981254, + "latitudeCity": 25.563066, + "longitudeCity": -103.39874, + "nameCity": "Torreon", + "timezone": "America/Monterrey" + }, + { + "GMT": "1", + "cityId": 7523, + "codeIataCity": "TRD", + "codeIso2Country": "NO", + "geonameId": 3133880, + "latitudeCity": 63.430515, + "longitudeCity": 10.395053, + "nameCity": "Trondheim", + "timezone": "Europe/Oslo" + }, + { + "GMT": "0", + "cityId": 7524, + "codeIataCity": "TRE", + "codeIso2Country": "GB", + "geonameId": 2641108, + "latitudeCity": 56.500557, + "longitudeCity": -6.871389, + "nameCity": "Tiree", + "timezone": "Europe/London" + }, + { + "GMT": "12", + "cityId": 7525, + "codeIataCity": "TRG", + "codeIso2Country": "NZ", + "geonameId": 2208032, + "latitudeCity": -37.67093, + "longitudeCity": 176.19772, + "nameCity": "Tauranga", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-8", + "cityId": 7526, + "codeIataCity": "TRH", + "codeIso2Country": "US", + "geonameId": 5387494, + "latitudeCity": 35.81278, + "longitudeCity": -117.325836, + "nameCity": "Trona", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 7527, + "codeIataCity": "TRI", + "codeIso2Country": "US", + "geonameId": 4453066, + "latitudeCity": 36.48111, + "longitudeCity": -82.40785, + "nameCity": "Blountville", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 7528, + "codeIataCity": "TRJ", + "codeIso2Country": "PG", + "geonameId": 2085793, + "latitudeCity": -5.616667, + "longitudeCity": 141.05, + "nameCity": "Tarakbits", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 7529, + "codeIataCity": "TRK", + "codeIso2Country": "ID", + "geonameId": 1624725, + "latitudeCity": 3.327222, + "longitudeCity": 117.56528, + "nameCity": "Tarakan", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-6", + "cityId": 7530, + "codeIataCity": "TRL", + "codeIso2Country": "US", + "geonameId": 4736028, + "latitudeCity": 32.735832, + "longitudeCity": -96.275, + "nameCity": "Terrell", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 7531, + "codeIataCity": "TRM", + "codeIso2Country": "US", + "geonameId": 5359426, + "latitudeCity": 33.630554, + "longitudeCity": -116.93611, + "nameCity": "Thermal", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 7532, + "codeIataCity": "TRN", + "codeIso2Country": "IT", + "geonameId": 3165524, + "latitudeCity": 45.070562, + "longitudeCity": 7.686619, + "nameCity": "Turin", + "timezone": "Europe/Rome" + }, + { + "GMT": "10", + "cityId": 7533, + "codeIataCity": "TRO", + "codeIso2Country": "AU", + "geonameId": 2147381, + "latitudeCity": -31.890272, + "longitudeCity": 152.50896, + "nameCity": "Taree", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-9", + "cityId": 7534, + "codeIataCity": "TRP", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Tree Point", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 7535, + "codeIataCity": "TRQ", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -8.1, + "longitudeCity": -70.75, + "nameCity": "Tarauaca", + "timezone": "America/Rio_Branco" + }, + { + "GMT": "5.30", + "cityId": 7536, + "codeIataCity": "TRR", + "codeIso2Country": "LK", + "geonameId": 1226260, + "latitudeCity": 8.569151, + "longitudeCity": 81.23291, + "nameCity": "Trincomalee", + "timezone": "Asia/Colombo" + }, + { + "GMT": "1", + "cityId": 7537, + "codeIataCity": "TRS", + "codeIso2Country": "IT", + "geonameId": 3169015, + "latitudeCity": 45.82078, + "longitudeCity": 13.485678, + "nameCity": "Trieste", + "timezone": "Europe/Rome" + }, + { + "GMT": "-7", + "cityId": 7538, + "codeIataCity": "TRT", + "codeIso2Country": "US", + "geonameId": 5783768, + "latitudeCity": 41.716667, + "longitudeCity": -112.166664, + "nameCity": "Tremonton", + "timezone": "America/Denver" + }, + { + "GMT": "-5", + "cityId": 7539, + "codeIataCity": "TRU", + "codeIso2Country": "PE", + "geonameId": 3691175, + "latitudeCity": -8.09, + "longitudeCity": -79.115, + "nameCity": "Trujillo", + "timezone": "America/Lima" + }, + { + "GMT": "5.30", + "cityId": 7540, + "codeIataCity": "TRV", + "codeIso2Country": "IN", + "geonameId": 1254163, + "latitudeCity": 8.476126, + "longitudeCity": 76.91907, + "nameCity": "Thiruvananthapuram", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "12", + "cityId": 7541, + "codeIataCity": "TRW", + "codeIso2Country": "KI", + "geonameId": 2110257, + "latitudeCity": 1.358333, + "longitudeCity": 172.94167, + "nameCity": "Tarawa", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "-6", + "cityId": 7542, + "codeIataCity": "TRX", + "codeIso2Country": "US", + "geonameId": 4385966, + "latitudeCity": 40.083332, + "longitudeCity": -93.61667, + "nameCity": "Trenton", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 7543, + "codeIataCity": "TRY", + "codeIso2Country": "UG", + "geonameId": 0, + "latitudeCity": 0.7, + "longitudeCity": 34.183334, + "nameCity": "Tororo", + "timezone": "Africa/Kampala" + }, + { + "GMT": "5.30", + "cityId": 7544, + "codeIataCity": "TRZ", + "codeIso2Country": "IN", + "geonameId": 1254389, + "latitudeCity": 10.762168, + "longitudeCity": 78.70724, + "nameCity": "Tiruchirapally", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "2", + "cityId": 7545, + "codeIataCity": "TSB", + "codeIso2Country": "NA", + "geonameId": 0, + "latitudeCity": -19.266666, + "longitudeCity": 17.733334, + "nameCity": "Tsumeb", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-5", + "cityId": 7546, + "codeIataCity": "TSC", + "codeIso2Country": "EC", + "geonameId": 0, + "latitudeCity": -2.383333, + "longitudeCity": -77.5, + "nameCity": "Taisha", + "timezone": "America/Guayaquil" + }, + { + "GMT": "2", + "cityId": 7547, + "codeIataCity": "TSD", + "codeIso2Country": "ZA", + "geonameId": 947872, + "latitudeCity": -22.616667, + "longitudeCity": 30.166668, + "nameCity": "Tshipise", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "6", + "cityId": 7548, + "codeIataCity": "TSE", + "codeIso2Country": "KZ", + "geonameId": 1526273, + "latitudeCity": 51.02781, + "longitudeCity": 71.4612, + "nameCity": "Astana", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-9", + "cityId": 7549, + "codeIataCity": "TSG", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 63.35, + "longitudeCity": -143.5, + "nameCity": "Tanacross", + "timezone": "America/Anchorage" + }, + { + "GMT": "2", + "cityId": 7550, + "codeIataCity": "TSH", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": -6.441111, + "longitudeCity": 20.797222, + "nameCity": "Tshikapa", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "10", + "cityId": 7551, + "codeIataCity": "TSI", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.85, + "longitudeCity": 146.35, + "nameCity": "Tsili Tsili", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "cityId": 7552, + "codeIataCity": "TSJ", + "codeIso2Country": "JP", + "geonameId": 0, + "latitudeCity": 34.28615, + "longitudeCity": 129.32637, + "nameCity": "Tsushima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "10", + "cityId": 7553, + "codeIataCity": "TSK", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -2.566667, + "longitudeCity": 150.41667, + "nameCity": "Taskul", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 7554, + "codeIataCity": "TSL", + "codeIso2Country": "MX", + "geonameId": 3530582, + "latitudeCity": 21.983334, + "longitudeCity": -98.75, + "nameCity": "Tamuin", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-7", + "cityId": 7555, + "codeIataCity": "TSM", + "codeIso2Country": "US", + "geonameId": 5490263, + "latitudeCity": 36.459167, + "longitudeCity": -105.67528, + "nameCity": "Taos", + "timezone": "America/Denver" + }, + { + "GMT": "8", + "cityId": 7556, + "codeIataCity": "TSN", + "codeIso2Country": "CN", + "geonameId": 1792947, + "latitudeCity": 39.084158, + "longitudeCity": 117.200983, + "nameCity": "Tianjin", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-8", + "cityId": 7557, + "codeIataCity": "TSP", + "codeIso2Country": "US", + "geonameId": 5401297, + "latitudeCity": 35.1375, + "longitudeCity": -118.441666, + "nameCity": "Tehachapi", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-3", + "cityId": 7558, + "codeIataCity": "TSQ", + "codeIso2Country": "BR", + "geonameId": 3446295, + "latitudeCity": -29.3325, + "longitudeCity": -49.746113, + "nameCity": "Torres", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "2", + "cityId": 7559, + "codeIataCity": "TSR", + "codeIso2Country": "RO", + "geonameId": 665087, + "latitudeCity": 45.809925, + "longitudeCity": 21.32012, + "nameCity": "Timisoara", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "7", + "cityId": 7560, + "codeIataCity": "TST", + "codeIso2Country": "TH", + "geonameId": 1150007, + "latitudeCity": 7.5, + "longitudeCity": 99.61667, + "nameCity": "Trang", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "12", + "cityId": 7561, + "codeIataCity": "TSU", + "codeIso2Country": "KI", + "geonameId": 0, + "latitudeCity": -1.416667, + "longitudeCity": 174.83333, + "nameCity": "Tabiteuea South", + "timezone": "Pacific/Tarawa" + }, + { + "GMT": "10", + "cityId": 7562, + "codeIataCity": "TSV", + "codeIso2Country": "AU", + "geonameId": 2146142, + "latitudeCity": -19.256506, + "longitudeCity": 146.7708, + "nameCity": "Townsville", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 7563, + "codeIataCity": "TSW", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.966667, + "longitudeCity": 146.03334, + "nameCity": "Tsewi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 7564, + "codeIataCity": "TSX", + "codeIso2Country": "ID", + "geonameId": 1629001, + "latitudeCity": -0.083333, + "longitudeCity": 117.433334, + "nameCity": "Tanjung Santan", + "timezone": "Asia/Makassar" + }, + { + "GMT": "7", + "cityId": 7565, + "codeIataCity": "TSY", + "codeIso2Country": "ID", + "geonameId": 1650357, + "latitudeCity": -7.3, + "longitudeCity": 108.2, + "nameCity": "Tasikmalaya", + "timezone": "Asia/Jakarta" + }, + { + "GMT": "8", + "cityId": 7566, + "codeIataCity": "TSZ", + "codeIso2Country": "MN", + "geonameId": 0, + "latitudeCity": 47.733334, + "longitudeCity": 101.76667, + "nameCity": "Tsetserleg", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "0", + "cityId": 7567, + "codeIataCity": "TTA", + "codeIso2Country": "MA", + "geonameId": 2530241, + "latitudeCity": 28.45, + "longitudeCity": -11.083333, + "nameCity": "Tan Tan", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "1", + "cityId": 7568, + "codeIataCity": "TTB", + "codeIso2Country": "IT", + "geonameId": 2522890, + "latitudeCity": 39.916668, + "longitudeCity": 9.683333, + "nameCity": "Tortoli", + "timezone": "Europe/Rome" + }, + { + "GMT": "-4", + "cityId": 7569, + "codeIataCity": "TTC", + "codeIso2Country": "CL", + "geonameId": 3870243, + "latitudeCity": -25.517778, + "longitudeCity": -70.42222, + "nameCity": "Taltal", + "timezone": "America/Santiago" + }, + { + "GMT": "-8", + "cityId": 7570, + "codeIataCity": "TTD", + "codeIso2Country": "US", + "geonameId": 5757477, + "latitudeCity": 45.9, + "longitudeCity": -122.65, + "nameCity": "Troutdale", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9", + "cityId": 7571, + "codeIataCity": "TTE", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 0.8, + "longitudeCity": 127.4, + "nameCity": "Ternate", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-3", + "cityId": 7572, + "codeIataCity": "TTG", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -22.533333, + "longitudeCity": -63.833332, + "nameCity": "Tartagal", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "4", + "cityId": 7573, + "codeIataCity": "TTH", + "codeIso2Country": "OM", + "geonameId": 286621, + "latitudeCity": 17.633333, + "longitudeCity": 54.0, + "nameCity": "Thumrait", + "timezone": "Asia/Muscat" + }, + { + "GMT": "-10", + "cityId": 7574, + "codeIataCity": "TTI", + "codeIso2Country": "PF", + "geonameId": 6690181, + "latitudeCity": -17.083332, + "longitudeCity": -149.5, + "nameCity": "Tetiaroa Island", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "9", + "cityId": 7575, + "codeIataCity": "TTJ", + "codeIso2Country": "JP", + "geonameId": 1849892, + "latitudeCity": 35.525913, + "longitudeCity": 134.16756, + "nameCity": "Tottori", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "0", + "cityId": 7576, + "codeIataCity": "TTK", + "codeIso2Country": "GB", + "geonameId": 2635608, + "latitudeCity": 51.583332, + "longitudeCity": -0.083333, + "nameCity": "Tottenham", + "timezone": "Europe/London" + }, + { + "GMT": "12", + "cityId": 7577, + "codeIataCity": "TTL", + "codeIso2Country": "FJ", + "geonameId": 8555974, + "latitudeCity": -16.833332, + "longitudeCity": 179.0, + "nameCity": "Turtle Island", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-5", + "cityId": 7578, + "codeIataCity": "TTM", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 5.716667, + "longitudeCity": -72.1, + "nameCity": "Tablon De Tamara", + "timezone": "America/Bogota" + }, + { + "GMT": "-6", + "cityId": 7579, + "codeIataCity": "TTO", + "codeIso2Country": "US", + "geonameId": 5225857, + "latitudeCity": 45.8, + "longitudeCity": -97.75, + "nameCity": "Britton", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 7580, + "codeIataCity": "TTQ", + "codeIso2Country": "CR", + "geonameId": 3621241, + "latitudeCity": 10.566667, + "longitudeCity": -83.51667, + "nameCity": "Tortuquero", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "8", + "cityId": 7581, + "codeIataCity": "TTR", + "codeIso2Country": "ID", + "geonameId": 1636798, + "latitudeCity": -3.042564, + "longitudeCity": 119.82094, + "nameCity": "Tana Toraja", + "timezone": "Asia/Makassar" + }, + { + "GMT": "3", + "cityId": 7582, + "codeIataCity": "TTS", + "codeIso2Country": "MG", + "geonameId": 1055059, + "latitudeCity": -16.733334, + "longitudeCity": 47.6, + "nameCity": "Tsaratanana", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "8", + "cityId": 7583, + "codeIataCity": "TTT", + "codeIso2Country": "TW", + "geonameId": 1668295, + "latitudeCity": 22.75, + "longitudeCity": 121.1, + "nameCity": "Taitung", + "timezone": "Asia/Taipei" + }, + { + "GMT": "0", + "cityId": 7584, + "codeIataCity": "TTU", + "codeIso2Country": "MA", + "geonameId": 2528910, + "latitudeCity": 35.583332, + "longitudeCity": -5.316667, + "nameCity": "Tetuan", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "-9", + "cityId": 7585, + "codeIataCity": "TTW", + "codeIso2Country": "LK", + "geonameId": 5868582, + "latitudeCity": 63.39111, + "longitudeCity": -148.95556, + "nameCity": "Tissa Tank", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 7586, + "codeIataCity": "TUA", + "codeIso2Country": "EC", + "geonameId": 3655673, + "latitudeCity": 0.8, + "longitudeCity": -77.71667, + "nameCity": "Tulcan", + "timezone": "America/Guayaquil" + }, + { + "GMT": "-10", + "cityId": 7587, + "codeIataCity": "TUB", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -23.35, + "longitudeCity": -149.46666, + "nameCity": "Tubuai", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-3", + "cityId": 7588, + "codeIataCity": "TUC", + "codeIso2Country": "AR", + "geonameId": 3836873, + "latitudeCity": -26.833332, + "longitudeCity": -65.2, + "nameCity": "Tucuman", + "timezone": "America/Argentina/Tucuman" + }, + { + "GMT": "0", + "cityId": 7589, + "codeIataCity": "TUD", + "codeIso2Country": "SN", + "geonameId": 0, + "latitudeCity": 13.736111, + "longitudeCity": -13.658333, + "nameCity": "Tambacounda", + "timezone": "Africa/Dakar" + }, + { + "GMT": "-5", + "cityId": 7590, + "codeIataCity": "TUE", + "codeIso2Country": "PA", + "geonameId": 3700347, + "latitudeCity": 9.5725, + "longitudeCity": -79.48722, + "nameCity": "Tupile", + "timezone": "America/Panama" + }, + { + "GMT": "1", + "cityId": 7591, + "codeIataCity": "TUF", + "codeIso2Country": "FR", + "geonameId": 2972191, + "latitudeCity": 47.394144, + "longitudeCity": 0.68484, + "nameCity": "Tours", + "timezone": "Europe/Paris" + }, + { + "GMT": "8", + "cityId": 7592, + "codeIataCity": "TUG", + "codeIso2Country": "PH", + "geonameId": 1680933, + "latitudeCity": 17.641111, + "longitudeCity": 121.73167, + "nameCity": "Tuguegarao", + "timezone": "Asia/Manila" + }, + { + "GMT": "3", + "cityId": 7593, + "codeIataCity": "TUI", + "codeIso2Country": "SA", + "geonameId": 0, + "latitudeCity": 31.68873, + "longitudeCity": 38.73383, + "nameCity": "Turaif", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "3", + "cityId": 7594, + "codeIataCity": "TUJ", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 5.833333, + "longitudeCity": 35.566666, + "nameCity": "Tum", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "5", + "cityId": 7595, + "codeIataCity": "TUK", + "codeIso2Country": "PK", + "geonameId": 1163054, + "latitudeCity": 25.983334, + "longitudeCity": 63.066666, + "nameCity": "Turbat", + "timezone": "Asia/Karachi" + }, + { + "GMT": "-6", + "cityId": 7596, + "codeIataCity": "TUL", + "codeIso2Country": "US", + "geonameId": 4553433, + "latitudeCity": 36.153982, + "longitudeCity": -95.992775, + "nameCity": "Tulsa", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 7597, + "codeIataCity": "TUM", + "codeIso2Country": "AU", + "geonameId": 2145875, + "latitudeCity": -35.3, + "longitudeCity": 148.21666, + "nameCity": "Tumut", + "timezone": "Australia/Sydney" + }, + { + "GMT": "1", + "cityId": 7598, + "codeIataCity": "TUN", + "codeIso2Country": "TN", + "geonameId": 2464470, + "latitudeCity": 36.847622, + "longitudeCity": 10.21709, + "nameCity": "Tunis", + "timezone": "Africa/Tunis" + }, + { + "GMT": "12", + "cityId": 7599, + "codeIataCity": "TUO", + "codeIso2Country": "NZ", + "geonameId": 2181742, + "latitudeCity": -38.741432, + "longitudeCity": 176.08235, + "nameCity": "Taupo", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-6", + "cityId": 7600, + "codeIataCity": "TUP", + "codeIso2Country": "US", + "geonameId": 4448903, + "latitudeCity": 34.25889, + "longitudeCity": -88.76722, + "nameCity": "Tupelo", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 7601, + "codeIataCity": "TUQ", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 13.0, + "longitudeCity": -3.0, + "nameCity": "Tougan", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-3", + "cityId": 7602, + "codeIataCity": "TUR", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -3.7, + "longitudeCity": -49.733334, + "nameCity": "Tucurui", + "timezone": "America/Belem" + }, + { + "GMT": "-7", + "cityId": 7603, + "codeIataCity": "TUS", + "codeIso2Country": "US", + "geonameId": 5318313, + "latitudeCity": 32.221743, + "longitudeCity": -110.926479, + "nameCity": "Tucson", + "timezone": "America/Phoenix" + }, + { + "GMT": "10", + "cityId": 7604, + "codeIataCity": "TUT", + "codeIso2Country": "PG", + "geonameId": 2085683, + "latitudeCity": -5.5, + "longitudeCity": 145.56667, + "nameCity": "Tauta", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 7605, + "codeIataCity": "TUU", + "codeIso2Country": "SA", + "geonameId": 0, + "latitudeCity": 28.375784, + "longitudeCity": 36.608288, + "nameCity": "Tabuk", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-4", + "cityId": 7606, + "codeIataCity": "TUV", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 9.091667, + "longitudeCity": -62.05, + "nameCity": "Tucupita", + "timezone": "America/Caracas" + }, + { + "GMT": "-5", + "cityId": 7607, + "codeIataCity": "TUW", + "codeIso2Country": "PA", + "geonameId": 0, + "latitudeCity": 8.833333, + "longitudeCity": -77.666664, + "nameCity": "Tubala", + "timezone": "America/Panama" + }, + { + "GMT": "-7", + "cityId": 7608, + "codeIataCity": "TUX", + "codeIso2Country": "CA", + "geonameId": 6170118, + "latitudeCity": 55.1, + "longitudeCity": -121.083336, + "nameCity": "Tumbler Ridge", + "timezone": "America/Dawson_Creek" + }, + { + "GMT": "-5", + "cityId": 7609, + "codeIataCity": "TUY", + "codeIso2Country": "MX", + "geonameId": 3515040, + "latitudeCity": 20.216667, + "longitudeCity": -87.46667, + "nameCity": "Tulum", + "timezone": "America/Cancun" + }, + { + "GMT": "-3", + "cityId": 7610, + "codeIataCity": "TUZ", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -21.883333, + "longitudeCity": -50.5, + "nameCity": "Tucuma", + "timezone": "America/Belem" + }, + { + "GMT": "3", + "cityId": 7611, + "codeIataCity": "TVA", + "codeIso2Country": "MG", + "geonameId": 1058563, + "latitudeCity": -17.849443, + "longitudeCity": 44.919167, + "nameCity": "Morafenobe", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-5", + "cityId": 7612, + "codeIataCity": "TVC", + "codeIso2Country": "US", + "geonameId": 5012495, + "latitudeCity": 44.744083, + "longitudeCity": -85.58035, + "nameCity": "Traverse City", + "timezone": "America/Detroit" + }, + { + "GMT": "-6", + "cityId": 7613, + "codeIataCity": "TVF", + "codeIso2Country": "US", + "geonameId": 5049970, + "latitudeCity": 48.066113, + "longitudeCity": -96.185, + "nameCity": "Thief River Falls", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 7614, + "codeIataCity": "TVI", + "codeIso2Country": "US", + "geonameId": 4174715, + "latitudeCity": 30.9025, + "longitudeCity": -83.880554, + "nameCity": "Thomasville", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "cityId": 7615, + "codeIataCity": "TVL", + "codeIso2Country": "US", + "geonameId": 5397664, + "latitudeCity": 38.89417, + "longitudeCity": -119.994446, + "nameCity": "South Lake Tahoe", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "8", + "cityId": 7616, + "codeIataCity": "TVS", + "codeIso2Country": "CN", + "geonameId": 1792947, + "latitudeCity": 39.724, + "longitudeCity": 117.99345, + "nameCity": "Tangshan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "12", + "cityId": 7617, + "codeIataCity": "TVU", + "codeIso2Country": "FJ", + "geonameId": 8555975, + "latitudeCity": -16.693056, + "longitudeCity": 179.87416, + "nameCity": "Taveuni", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "6.30", + "cityId": 7618, + "codeIataCity": "TVY", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 14.1, + "longitudeCity": 98.2, + "nameCity": "Dawe", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "-9", + "cityId": 7619, + "codeIataCity": "TWA", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 59.166668, + "longitudeCity": -159.99167, + "nameCity": "Twin Hills", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 7620, + "codeIataCity": "TWB", + "codeIso2Country": "AU", + "geonameId": 2146268, + "latitudeCity": -27.542221, + "longitudeCity": 151.9139, + "nameCity": "Toowoomba", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-8", + "cityId": 7621, + "codeIataCity": "TWD", + "codeIso2Country": "US", + "geonameId": 5807239, + "latitudeCity": 48.11667, + "longitudeCity": -122.76667, + "nameCity": "Port Townsend", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-9", + "cityId": 7622, + "codeIataCity": "TWE", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 65.73333, + "longitudeCity": -164.85, + "nameCity": "Taylor", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "cityId": 7623, + "codeIataCity": "TWF", + "codeIso2Country": "US", + "geonameId": 5610810, + "latitudeCity": 42.481945, + "longitudeCity": -114.486664, + "nameCity": "Twin Falls", + "timezone": "America/Boise" + }, + { + "GMT": "10", + "cityId": 7624, + "codeIataCity": "TWN", + "codeIso2Country": "AU", + "geonameId": 2146997, + "latitudeCity": -26.4, + "longitudeCity": 153.05, + "nameCity": "Tewantin", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 7625, + "codeIataCity": "TWP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.366667, + "longitudeCity": 143.75, + "nameCity": "Torwood", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "8", + "cityId": 7626, + "codeIataCity": "TWT", + "codeIso2Country": "PH", + "geonameId": 1682672, + "latitudeCity": 5.044958, + "longitudeCity": 119.74403, + "nameCity": "Tawitawi", + "timezone": "Asia/Manila" + }, + { + "GMT": "8", + "cityId": 7627, + "codeIataCity": "TWU", + "codeIso2Country": "MY", + "geonameId": 1734199, + "latitudeCity": 4.26275, + "longitudeCity": 117.884865, + "nameCity": "Tawau", + "timezone": "Asia/Kuching" + }, + { + "GMT": "10", + "cityId": 7628, + "codeIataCity": "TWY", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.266667, + "longitudeCity": 146.06667, + "nameCity": "Tawa", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "cityId": 7629, + "codeIataCity": "TXF", + "codeIso2Country": "BR", + "geonameId": 6318755, + "latitudeCity": -7.133333, + "longitudeCity": -37.183334, + "nameCity": "Teixeira de Freitas", + "timezone": "America/Bahia" + }, + { + "GMT": "8", + "cityId": 7630, + "codeIataCity": "TXG", + "codeIso2Country": "TW", + "geonameId": 0, + "latitudeCity": 24.15, + "longitudeCity": 120.64611, + "nameCity": "Taichung", + "timezone": "Asia/Taipei" + }, + { + "GMT": "-6", + "cityId": 7631, + "codeIataCity": "TXK", + "codeIso2Country": "US", + "geonameId": 4736096, + "latitudeCity": 33.45639, + "longitudeCity": -93.98917, + "nameCity": "Texarkana", + "timezone": "America/Chicago" + }, + { + "GMT": "9", + "cityId": 7632, + "codeIataCity": "TXM", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -1.433333, + "longitudeCity": 132.01666, + "nameCity": "Teminabuan", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "8", + "cityId": 7633, + "codeIataCity": "TXN", + "codeIso2Country": "CN", + "geonameId": 1792359, + "latitudeCity": 29.72962, + "longitudeCity": 118.25646, + "nameCity": "Tunxi", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "cityId": 7634, + "codeIataCity": "TXR", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -25.85, + "longitudeCity": 141.91667, + "nameCity": "Tanbar", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "0", + "cityId": 7635, + "codeIataCity": "TXU", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 4.433333, + "longitudeCity": -7.366667, + "nameCity": "Tabou", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "3", + "cityId": 7636, + "codeIataCity": "TYA", + "codeIso2Country": "RU", + "geonameId": 480562, + "latitudeCity": 54.2, + "longitudeCity": 37.61667, + "nameCity": "Tula", + "timezone": "Europe/Moscow" + }, + { + "GMT": "10", + "cityId": 7637, + "codeIataCity": "TYB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -29.456944, + "longitudeCity": 142.06223, + "nameCity": "Tibooburra", + "timezone": "Australia/Sydney" + }, + { + "GMT": "9", + "cityId": 7638, + "codeIataCity": "TYD", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 55.283333, + "longitudeCity": 124.73333, + "nameCity": "Tynda", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "-9", + "cityId": 7639, + "codeIataCity": "TYE", + "codeIso2Country": "US", + "geonameId": 5879400, + "latitudeCity": 61.016666, + "longitudeCity": -151.33333, + "nameCity": "Tyonek", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 7640, + "codeIataCity": "TYF", + "codeIso2Country": "SE", + "geonameId": 2667876, + "latitudeCity": 60.154484, + "longitudeCity": 12.99661, + "nameCity": "Torsby", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "10", + "cityId": 7641, + "codeIataCity": "TYG", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -26.098612, + "longitudeCity": 143.45555, + "nameCity": "Thylungra", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 7642, + "codeIataCity": "TYL", + "codeIso2Country": "PE", + "geonameId": 3691582, + "latitudeCity": -4.564722, + "longitudeCity": -81.25278, + "nameCity": "Talara", + "timezone": "America/Lima" + }, + { + "GMT": "-5", + "cityId": 7643, + "codeIataCity": "TYM", + "codeIso2Country": "BS", + "geonameId": 0, + "latitudeCity": 24.15, + "longitudeCity": -76.433334, + "nameCity": "Staniel Cay", + "timezone": "America/Nassau" + }, + { + "GMT": "8", + "cityId": 7644, + "codeIataCity": "TYN", + "codeIso2Country": "CN", + "geonameId": 1793511, + "latitudeCity": 37.754997, + "longitudeCity": 112.62585, + "nameCity": "Taiyuan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9", + "cityId": 7645, + "codeIataCity": "TYO", + "codeIso2Country": "JP", + "geonameId": 1850147, + "latitudeCity": 35.689487, + "longitudeCity": 139.691706, + "nameCity": "Tokyo", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "9.30", + "cityId": 7646, + "codeIataCity": "TYP", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -22.283333, + "longitudeCity": 137.96666, + "nameCity": "Tobermorey", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-6", + "cityId": 7647, + "codeIataCity": "TYR", + "codeIso2Country": "US", + "geonameId": 4738214, + "latitudeCity": 32.351597, + "longitudeCity": -95.41012, + "nameCity": "Tyler", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 7648, + "codeIataCity": "TYS", + "codeIso2Country": "US", + "geonameId": 4634946, + "latitudeCity": 35.80565, + "longitudeCity": -83.98973, + "nameCity": "Knoxville", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 7649, + "codeIataCity": "TYT", + "codeIso2Country": "UY", + "geonameId": 3441702, + "latitudeCity": -33.266666, + "longitudeCity": -54.283333, + "nameCity": "Treinta-y-Tres", + "timezone": "America/Montevideo" + }, + { + "GMT": "-7", + "cityId": 7650, + "codeIataCity": "TYZ", + "codeIso2Country": "US", + "geonameId": 5314943, + "latitudeCity": 34.466667, + "longitudeCity": -110.083336, + "nameCity": "Taylor", + "timezone": "America/Phoenix" + }, + { + "GMT": "-5", + "cityId": 7651, + "codeIataCity": "TZC", + "codeIso2Country": "US", + "geonameId": 4993321, + "latitudeCity": 43.45861, + "longitudeCity": -83.44528, + "nameCity": "Caro", + "timezone": "America/Detroit" + }, + { + "GMT": "1", + "cityId": 7652, + "codeIataCity": "TZL", + "codeIso2Country": "BA", + "geonameId": 3191281, + "latitudeCity": 44.40972, + "longitudeCity": 18.709167, + "nameCity": "Tuzla", + "timezone": "Europe/Sarajevo" + }, + { + "GMT": "-5", + "cityId": 7653, + "codeIataCity": "TZM", + "codeIso2Country": "MX", + "geonameId": 3823208, + "latitudeCity": 21.166668, + "longitudeCity": -88.15, + "nameCity": "Tizimin", + "timezone": "America/Cancun" + }, + { + "GMT": "-5", + "cityId": 7654, + "codeIataCity": "TZN", + "codeIso2Country": "BS", + "geonameId": 0, + "latitudeCity": 24.165, + "longitudeCity": -77.58528, + "nameCity": "South Andros", + "timezone": "America/Nassau" + }, + { + "GMT": "3", + "cityId": 7655, + "codeIataCity": "TZO", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -18.34797, + "longitudeCity": 45.01266, + "nameCity": "Ankisatra", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "3", + "cityId": 7656, + "codeIataCity": "TZX", + "codeIso2Country": "TR", + "geonameId": 738648, + "latitudeCity": 40.99419, + "longitudeCity": 39.78168, + "nameCity": "Trabzon", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-8", + "cityId": 7657, + "codeIataCity": "UAC", + "codeIso2Country": "MX", + "geonameId": 3996069, + "latitudeCity": 32.45, + "longitudeCity": -114.8, + "nameCity": "San Luis Rio Colorado", + "timezone": "America/Tijuana" + }, + { + "GMT": "10", + "cityId": 7658, + "codeIataCity": "UAE", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.233333, + "longitudeCity": 144.65, + "nameCity": "Mount Aue", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9:30", + "cityId": 7659, + "codeIataCity": "UAH", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -8.933333, + "longitudeCity": -139.55, + "nameCity": "Ua Huka", + "timezone": "Pacific/Marquesas" + }, + { + "GMT": "9", + "cityId": 7660, + "codeIataCity": "UAI", + "codeIso2Country": "TL", + "geonameId": 1626459, + "latitudeCity": -9.3, + "longitudeCity": 125.28333, + "nameCity": "Suai", + "timezone": "Asia/Dili" + }, + { + "GMT": "-3", + "cityId": 7661, + "codeIataCity": "UAK", + "codeIso2Country": "GL", + "geonameId": 3421711, + "latitudeCity": 61.166668, + "longitudeCity": -45.316666, + "nameCity": "Narsarsuaq", + "timezone": "America/Godthab" + }, + { + "GMT": "1", + "cityId": 7662, + "codeIataCity": "UAL", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -11.0, + "longitudeCity": 22.5, + "nameCity": "Luau", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-9:30", + "cityId": 7663, + "codeIataCity": "UAP", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -9.343477, + "longitudeCity": -140.08125, + "nameCity": "Ua Pou", + "timezone": "Pacific/Marquesas" + }, + { + "GMT": "-3", + "cityId": 7664, + "codeIataCity": "UAQ", + "codeIso2Country": "AR", + "geonameId": 3837213, + "latitudeCity": -31.55, + "longitudeCity": -68.51667, + "nameCity": "San Juan", + "timezone": "America/Argentina/San_Juan" + }, + { + "GMT": "0", + "cityId": 7665, + "codeIataCity": "UAR", + "codeIso2Country": "MA", + "geonameId": 2555157, + "latitudeCity": 51.15371, + "longitudeCity": 51.538563, + "nameCity": "Bouarfa", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "3", + "cityId": 7666, + "codeIataCity": "UAS", + "codeIso2Country": "KE", + "geonameId": 180784, + "latitudeCity": 0.466667, + "longitudeCity": 37.55, + "nameCity": "Samburu", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "-6", + "cityId": 7667, + "codeIataCity": "UAX", + "codeIso2Country": "GT", + "geonameId": 3595725, + "latitudeCity": 17.393888, + "longitudeCity": -89.632774, + "nameCity": "Uaxactun", + "timezone": "America/Guatemala" + }, + { + "GMT": "-3", + "cityId": 7668, + "codeIataCity": "UBA", + "codeIso2Country": "BR", + "geonameId": 3445839, + "latitudeCity": -19.776388, + "longitudeCity": -47.958332, + "nameCity": "Uberaba", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "10", + "cityId": 7669, + "codeIataCity": "UBB", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -9.95, + "longitudeCity": 142.18333, + "nameCity": "Mabuiag Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 7670, + "codeIataCity": "UBI", + "codeIso2Country": "PG", + "geonameId": 2098923, + "latitudeCity": -6.716667, + "longitudeCity": 155.7, + "nameCity": "Buin", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "cityId": 7671, + "codeIataCity": "UBJ", + "codeIso2Country": "JP", + "geonameId": 1849498, + "latitudeCity": 33.933395, + "longitudeCity": 131.27489, + "nameCity": "Ube", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "7", + "cityId": 7672, + "codeIataCity": "UBP", + "codeIso2Country": "TH", + "geonameId": 1605245, + "latitudeCity": 15.246491, + "longitudeCity": 104.87068, + "nameCity": "Ubon Ratchathni", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "9", + "cityId": 7673, + "codeIataCity": "UBR", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.666667, + "longitudeCity": 140.85, + "nameCity": "Ubrub", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-6", + "cityId": 7674, + "codeIataCity": "UBS", + "codeIso2Country": "US", + "geonameId": 4422442, + "latitudeCity": 33.466667, + "longitudeCity": -88.38333, + "nameCity": "Columbus", + "timezone": "America/Chicago" + }, + { + "GMT": "-3", + "cityId": 7675, + "codeIataCity": "UBT", + "codeIso2Country": "BR", + "geonameId": 3445847, + "latitudeCity": -23.433332, + "longitudeCity": -45.083332, + "nameCity": "Ubatuba", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "8", + "cityId": 7676, + "codeIataCity": "UBU", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -14.3, + "longitudeCity": 126.65, + "nameCity": "Kalumburu", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "cityId": 7677, + "codeIataCity": "UCA", + "codeIso2Country": "US", + "geonameId": 5142056, + "latitudeCity": 43.100903, + "longitudeCity": -75.232664, + "nameCity": "Utica", + "timezone": "America/New_York" + }, + { + "GMT": "-8", + "cityId": 7678, + "codeIataCity": "UCC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 37.0, + "longitudeCity": -116.05, + "nameCity": "Yucca Flat", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 7679, + "codeIataCity": "UCE", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 30.5, + "longitudeCity": -92.416664, + "nameCity": "Eunice", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 7680, + "codeIataCity": "UCK", + "codeIso2Country": "UA", + "geonameId": 695594, + "latitudeCity": 50.75, + "longitudeCity": 25.333332, + "nameCity": "Lutsk", + "timezone": "Europe/Kiev" + }, + { + "GMT": "0", + "cityId": 7681, + "codeIataCity": "UCN", + "codeIso2Country": "LR", + "geonameId": 2278158, + "latitudeCity": 5.95, + "longitudeCity": -10.033333, + "nameCity": "Buchanan", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "3", + "cityId": 7682, + "codeIataCity": "UCT", + "codeIso2Country": "RU", + "geonameId": 479411, + "latitudeCity": 63.566666, + "longitudeCity": 53.8, + "nameCity": "Ukhta", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-6", + "cityId": 7683, + "codeIataCity": "UCY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 36.433334, + "longitudeCity": -89.05, + "nameCity": "Union City", + "timezone": "America/Chicago" + }, + { + "GMT": "10", + "cityId": 7684, + "codeIataCity": "UDA", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.183332, + "longitudeCity": 144.6, + "nameCity": "Undarra", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 7685, + "codeIataCity": "UDE", + "codeIso2Country": "NL", + "geonameId": 2759794, + "latitudeCity": 51.666668, + "longitudeCity": 5.616667, + "nameCity": "Uden", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "-3", + "cityId": 7686, + "codeIataCity": "UDI", + "codeIso2Country": "BR", + "geonameId": 3445831, + "latitudeCity": -18.9, + "longitudeCity": -48.233334, + "nameCity": "Uberlandia", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "2", + "cityId": 7687, + "codeIataCity": "UDJ", + "codeIso2Country": "UA", + "geonameId": 690548, + "latitudeCity": 48.63762, + "longitudeCity": 22.273214, + "nameCity": "Uzhgorod", + "timezone": "Europe/Uzhgorod" + }, + { + "GMT": "1", + "cityId": 7688, + "codeIataCity": "UDN", + "codeIso2Country": "IT", + "geonameId": 3164603, + "latitudeCity": 46.033333, + "longitudeCity": 13.183333, + "nameCity": "Udine", + "timezone": "Europe/Rome" + }, + { + "GMT": "7", + "cityId": 7689, + "codeIataCity": "UDO", + "codeIso2Country": "LA", + "geonameId": 0, + "latitudeCity": 19.133333, + "longitudeCity": 103.816666, + "nameCity": "Udomxay", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "5.30", + "cityId": 7690, + "codeIataCity": "UDR", + "codeIso2Country": "IN", + "geonameId": 1253986, + "latitudeCity": 24.61919, + "longitudeCity": 73.891266, + "nameCity": "Udaipur", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "cityId": 7691, + "codeIataCity": "UEE", + "codeIso2Country": "AU", + "geonameId": 2152272, + "latitudeCity": -42.083332, + "longitudeCity": 145.55, + "nameCity": "Queenstown", + "timezone": "Australia/Hobart" + }, + { + "GMT": "2", + "cityId": 7692, + "codeIataCity": "UEL", + "codeIso2Country": "MZ", + "geonameId": 1028434, + "latitudeCity": -17.847221, + "longitudeCity": 36.865555, + "nameCity": "Quelimane", + "timezone": "Africa/Maputo" + }, + { + "GMT": "5", + "cityId": 7693, + "codeIataCity": "UEN", + "codeIso2Country": "RU", + "geonameId": 1496511, + "latitudeCity": 65.9667, + "longitudeCity": 78.3667, + "nameCity": "Urengoy", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "9", + "cityId": 7694, + "codeIataCity": "UEO", + "codeIso2Country": "JP", + "geonameId": 6822157, + "latitudeCity": 26.365278, + "longitudeCity": 126.719444, + "nameCity": "Kumejima", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "cityId": 7695, + "codeIataCity": "UER", + "codeIso2Country": "ES", + "geonameId": 2512177, + "latitudeCity": 38.7, + "longitudeCity": -4.116667, + "nameCity": "Puertollano", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-6", + "cityId": 7696, + "codeIataCity": "UES", + "codeIso2Country": "US", + "geonameId": 5263045, + "latitudeCity": 43.038334, + "longitudeCity": -88.23, + "nameCity": "Waukesha", + "timezone": "America/Chicago" + }, + { + "GMT": "5", + "cityId": 7697, + "codeIataCity": "UET", + "codeIso2Country": "PK", + "geonameId": 1167528, + "latitudeCity": 30.249266, + "longitudeCity": 66.949036, + "nameCity": "Quetta", + "timezone": "Asia/Karachi" + }, + { + "GMT": "5", + "cityId": 7698, + "codeIataCity": "UFA", + "codeIso2Country": "RU", + "geonameId": 479561, + "latitudeCity": 54.565403, + "longitudeCity": 55.884544, + "nameCity": "Ufa", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "8", + "cityId": 7699, + "codeIataCity": "UGA", + "codeIso2Country": "MN", + "geonameId": 0, + "latitudeCity": 48.8, + "longitudeCity": 103.55, + "nameCity": "Bulgan", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "5", + "cityId": 7700, + "codeIataCity": "UGC", + "codeIso2Country": "UZ", + "geonameId": 0, + "latitudeCity": 41.584835, + "longitudeCity": 60.63303, + "nameCity": "Urgench", + "timezone": "Asia/Samarkand" + }, + { + "GMT": "-9", + "cityId": 7701, + "codeIataCity": "UGI", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.88333, + "longitudeCity": -153.5, + "nameCity": "Uganik", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 7702, + "codeIataCity": "UGN", + "codeIso2Country": "US", + "geonameId": 4887398, + "latitudeCity": 42.36667, + "longitudeCity": -87.833336, + "nameCity": "Waukegan", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 7703, + "codeIataCity": "UGO", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -7.816667, + "longitudeCity": 15.15, + "nameCity": "Uige", + "timezone": "Africa/Luanda" + }, + { + "GMT": "-9", + "cityId": 7704, + "codeIataCity": "UGS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.533333, + "longitudeCity": -157.41667, + "nameCity": "Ugashik", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "cityId": 7705, + "codeIataCity": "UGT", + "codeIso2Country": "MN", + "geonameId": 0, + "latitudeCity": 43.752777, + "longitudeCity": 104.12778, + "nameCity": "Umnugobitour", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "9", + "cityId": 7706, + "codeIataCity": "UGU", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -3.733333, + "longitudeCity": 137.03334, + "nameCity": "Zugapa", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "cityId": 7707, + "codeIataCity": "UHE", + "codeIso2Country": "CZ", + "geonameId": 3063739, + "latitudeCity": 49.066666, + "longitudeCity": 17.45, + "nameCity": "Uherske Hradiste", + "timezone": "Europe/Prague" + }, + { + "GMT": "-5", + "cityId": 7708, + "codeIataCity": "UIB", + "codeIso2Country": "CO", + "geonameId": 3673690, + "latitudeCity": 5.690556, + "longitudeCity": -76.641945, + "nameCity": "Quibdo", + "timezone": "America/Bogota" + }, + { + "GMT": "7", + "cityId": 7709, + "codeIataCity": "UIH", + "codeIso2Country": "VN", + "geonameId": 1568574, + "latitudeCity": 13.766111, + "longitudeCity": 109.22639, + "nameCity": "Qui Nhon", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-6", + "cityId": 7710, + "codeIataCity": "UII", + "codeIso2Country": "HN", + "geonameId": 3600483, + "latitudeCity": 16.091667, + "longitudeCity": -86.8875, + "nameCity": "Utila", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "8", + "cityId": 7711, + "codeIataCity": "UIK", + "codeIso2Country": "RU", + "geonameId": 2013952, + "latitudeCity": 58.13333, + "longitudeCity": 102.55, + "nameCity": "Ust-Ilimsk", + "timezone": "Asia/Irkutsk" + }, + { + "GMT": "-8", + "cityId": 7712, + "codeIataCity": "UIL", + "codeIso2Country": "US", + "geonameId": 5807212, + "latitudeCity": 47.9, + "longitudeCity": -124.63333, + "nameCity": "Quillayute", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 7713, + "codeIataCity": "UIN", + "codeIso2Country": "US", + "geonameId": 4247703, + "latitudeCity": 39.944168, + "longitudeCity": -91.19722, + "nameCity": "Quincy", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 7714, + "codeIataCity": "UIO", + "codeIso2Country": "EC", + "geonameId": 3652462, + "latitudeCity": -0.145528, + "longitudeCity": -78.49053, + "nameCity": "Quito", + "timezone": "America/Guayaquil" + }, + { + "GMT": "1", + "cityId": 7715, + "codeIataCity": "UIP", + "codeIso2Country": "FR", + "geonameId": 2984701, + "latitudeCity": 47.974445, + "longitudeCity": -4.170833, + "nameCity": "Quimper", + "timezone": "Europe/Paris" + }, + { + "GMT": "11", + "cityId": 7716, + "codeIataCity": "UIQ", + "codeIso2Country": "VU", + "geonameId": 0, + "latitudeCity": -17.0, + "longitudeCity": 168.16667, + "nameCity": "Quine Hill", + "timezone": "Pacific/Efate" + }, + { + "GMT": "10", + "cityId": 7717, + "codeIataCity": "UIR", + "codeIso2Country": "AU", + "geonameId": 2147497, + "latitudeCity": -31.5, + "longitudeCity": 150.51666, + "nameCity": "Quirindi", + "timezone": "Australia/Sydney" + }, + { + "GMT": "12", + "cityId": 7718, + "codeIataCity": "UIT", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 5.833333, + "longitudeCity": 169.61667, + "nameCity": "Jaluit Island", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-5", + "cityId": 7719, + "codeIataCity": "UIZ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.61667, + "longitudeCity": -83.05, + "nameCity": "Utica", + "timezone": "America/Detroit" + }, + { + "GMT": "12", + "cityId": 7720, + "codeIataCity": "UJE", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 9.083333, + "longitudeCity": 165.66667, + "nameCity": "Ujae Island", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "9", + "cityId": 7721, + "codeIataCity": "UJN", + "codeIso2Country": "KR", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Uljin", + "timezone": "Asia/Seoul" + }, + { + "GMT": "3", + "cityId": 7722, + "codeIataCity": "UKA", + "codeIso2Country": "KE", + "geonameId": 178792, + "latitudeCity": -4.3, + "longitudeCity": 39.566666, + "nameCity": "Ukunda", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "4", + "cityId": 7723, + "codeIataCity": "UKH", + "codeIso2Country": "OM", + "geonameId": 0, + "latitudeCity": 19.37, + "longitudeCity": 56.4, + "nameCity": "Mukhaizna", + "timezone": "Asia/Muscat" + }, + { + "GMT": "-8", + "cityId": 7724, + "codeIataCity": "UKI", + "codeIso2Country": "US", + "geonameId": 5404476, + "latitudeCity": 39.126667, + "longitudeCity": -123.2, + "nameCity": "Ukiah", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "6", + "cityId": 7725, + "codeIataCity": "UKK", + "codeIso2Country": "KZ", + "geonameId": 0, + "latitudeCity": 50.025723, + "longitudeCity": 82.5056, + "nameCity": "Ust-kamenogorsk", + "timezone": "Asia/Almaty" + }, + { + "GMT": "-6", + "cityId": 7726, + "codeIataCity": "UKN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 43.266666, + "longitudeCity": -91.48333, + "nameCity": "Waukon", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 7727, + "codeIataCity": "UKR", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 13.933333, + "longitudeCity": 45.683334, + "nameCity": "Mukeiras", + "timezone": "Asia/Aden" + }, + { + "GMT": "3", + "cityId": 7728, + "codeIataCity": "UKS", + "codeIso2Country": "UA", + "geonameId": 0, + "latitudeCity": 44.691666, + "longitudeCity": 33.576668, + "nameCity": "Sevastopol", + "timezone": "Europe/Simferopol" + }, + { + "GMT": "-5", + "cityId": 7729, + "codeIataCity": "UKT", + "codeIso2Country": "US", + "geonameId": 5207381, + "latitudeCity": 40.433334, + "longitudeCity": -75.35, + "nameCity": "Quakertown", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 7730, + "codeIataCity": "UKU", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -3.683333, + "longitudeCity": 142.46666, + "nameCity": "Nuku", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 7731, + "codeIataCity": "UKX", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 56.85, + "longitudeCity": 105.73333, + "nameCity": "Ust-Kut", + "timezone": "Asia/Irkutsk" + }, + { + "GMT": "9", + "cityId": 7732, + "codeIataCity": "UKY", + "codeIso2Country": "JP", + "geonameId": 1857910, + "latitudeCity": 35.0, + "longitudeCity": 135.75, + "nameCity": "Kyoto", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-3", + "cityId": 7733, + "codeIataCity": "ULA", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -49.316666, + "longitudeCity": -67.666664, + "nameCity": "San Julian", + "timezone": "America/Argentina/Rio_Gallegos" + }, + { + "GMT": "11", + "cityId": 7734, + "codeIataCity": "ULB", + "codeIso2Country": "VU", + "geonameId": 0, + "latitudeCity": -16.416668, + "longitudeCity": 168.33333, + "nameCity": "Ulei", + "timezone": "Pacific/Efate" + }, + { + "GMT": "2", + "cityId": 7735, + "codeIataCity": "ULD", + "codeIso2Country": "ZA", + "geonameId": 962367, + "latitudeCity": -28.283333, + "longitudeCity": 31.433332, + "nameCity": "Ulundi", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "10", + "cityId": 7736, + "codeIataCity": "ULE", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -4.933333, + "longitudeCity": 151.26666, + "nameCity": "Sule", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "7", + "cityId": 7737, + "codeIataCity": "ULG", + "codeIso2Country": "MN", + "geonameId": 0, + "latitudeCity": 48.966667, + "longitudeCity": 89.96667, + "nameCity": "Ulgit", + "timezone": "Asia/Hovd" + }, + { + "GMT": "3", + "cityId": 7738, + "codeIataCity": "ULH", + "codeIso2Country": "SA", + "geonameId": 0, + "latitudeCity": 26.616667, + "longitudeCity": 37.866665, + "nameCity": "Al Ula", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "10", + "cityId": 7739, + "codeIataCity": "ULI", + "codeIso2Country": "FM", + "geonameId": 0, + "latitudeCity": 10.016667, + "longitudeCity": 139.8, + "nameCity": "Ulithi", + "timezone": "Pacific/Chuuk" + }, + { + "GMT": "9", + "cityId": 7740, + "codeIataCity": "ULK", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 60.72248, + "longitudeCity": 114.83152, + "nameCity": "Lensk", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "0", + "cityId": 7741, + "codeIataCity": "ULL", + "codeIso2Country": "GB", + "geonameId": 2641108, + "latitudeCity": 56.45, + "longitudeCity": -6.0, + "nameCity": "Mull", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "cityId": 7742, + "codeIataCity": "ULM", + "codeIso2Country": "US", + "geonameId": 5039173, + "latitudeCity": 44.32139, + "longitudeCity": -94.50056, + "nameCity": "New Ulm", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 7743, + "codeIataCity": "ULN", + "codeIso2Country": "MN", + "geonameId": 2028462, + "latitudeCity": 47.85275, + "longitudeCity": 106.76327, + "nameCity": "Ulaanbaatar", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "7", + "cityId": 7744, + "codeIataCity": "ULO", + "codeIso2Country": "MN", + "geonameId": 1515029, + "latitudeCity": 49.983334, + "longitudeCity": 92.066666, + "nameCity": "Ulaangom", + "timezone": "Asia/Hovd" + }, + { + "GMT": "10", + "cityId": 7745, + "codeIataCity": "ULP", + "codeIso2Country": "AU", + "geonameId": 2152257, + "latitudeCity": -26.633333, + "longitudeCity": 144.3, + "nameCity": "Quilpie", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 7746, + "codeIataCity": "ULQ", + "codeIso2Country": "CO", + "geonameId": 3687925, + "latitudeCity": 4.097222, + "longitudeCity": -76.229164, + "nameCity": "Tulua", + "timezone": "America/Bogota" + }, + { + "GMT": "-5", + "cityId": 7747, + "codeIataCity": "ULS", + "codeIso2Country": "CO", + "geonameId": 3665580, + "latitudeCity": 8.65, + "longitudeCity": -76.75, + "nameCity": "Mulatos", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "cityId": 7748, + "codeIataCity": "ULU", + "codeIso2Country": "UG", + "geonameId": 233346, + "latitudeCity": 2.783333, + "longitudeCity": 32.3, + "nameCity": "Gulu", + "timezone": "Africa/Kampala" + }, + { + "GMT": "2", + "cityId": 7749, + "codeIataCity": "ULX", + "codeIso2Country": "ZA", + "geonameId": 971534, + "latitudeCity": -24.783333, + "longitudeCity": 31.35, + "nameCity": "Ulusaba", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "3", + "cityId": 7750, + "codeIataCity": "ULY", + "codeIso2Country": "RU", + "geonameId": 479123, + "latitudeCity": 54.32148, + "longitudeCity": 48.38565, + "nameCity": "Ulyanovsk", + "timezone": "Europe/Moscow" + }, + { + "GMT": "7", + "cityId": 7751, + "codeIataCity": "ULZ", + "codeIso2Country": "MN", + "geonameId": 0, + "latitudeCity": 47.75, + "longitudeCity": 96.85, + "nameCity": "Uliastai", + "timezone": "Asia/Hovd" + }, + { + "GMT": "-5", + "cityId": 7752, + "codeIataCity": "UMA", + "codeIso2Country": "CU", + "geonameId": 0, + "latitudeCity": 20.24, + "longitudeCity": -74.15, + "nameCity": "Punta De Maisi", + "timezone": "America/Havana" + }, + { + "GMT": "-9", + "cityId": 7753, + "codeIataCity": "UMB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 53.376667, + "longitudeCity": -167.8875, + "nameCity": "Umnak Island", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 7754, + "codeIataCity": "UMC", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.016667, + "longitudeCity": 145.96666, + "nameCity": "Umba", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "cityId": 7755, + "codeIataCity": "UMD", + "codeIso2Country": "GL", + "geonameId": 3426193, + "latitudeCity": 70.66889, + "longitudeCity": -52.11778, + "nameCity": "Uummannaq", + "timezone": "America/Godthab" + }, + { + "GMT": "1", + "cityId": 7756, + "codeIataCity": "UME", + "codeIso2Country": "SE", + "geonameId": 602150, + "latitudeCity": 63.79333, + "longitudeCity": 20.28954, + "nameCity": "Umea", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "cityId": 7757, + "codeIataCity": "UMI", + "codeIso2Country": "PE", + "geonameId": 0, + "latitudeCity": -13.25, + "longitudeCity": -70.666664, + "nameCity": "Quincemil", + "timezone": "America/Lima" + }, + { + "GMT": "-9", + "cityId": 7758, + "codeIataCity": "UMM", + "codeIso2Country": "US", + "geonameId": 5875396, + "latitudeCity": 63.316666, + "longitudeCity": -149.31667, + "nameCity": "Summit", + "timezone": "America/Anchorage" + }, + { + "GMT": "9.30", + "cityId": 7759, + "codeIataCity": "UMR", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -31.15, + "longitudeCity": 136.81667, + "nameCity": "Woomera", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-9", + "cityId": 7760, + "codeIataCity": "UMT", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 69.416664, + "longitudeCity": -152.33333, + "nameCity": "Umiat", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "cityId": 7761, + "codeIataCity": "UMU", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -23.798332, + "longitudeCity": -53.31333, + "nameCity": "Umuarama", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "2", + "cityId": 7762, + "codeIataCity": "UMY", + "codeIso2Country": "UA", + "geonameId": 692194, + "latitudeCity": 50.933334, + "longitudeCity": 34.783333, + "nameCity": "Sumy", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-3", + "cityId": 7763, + "codeIataCity": "UNA", + "codeIso2Country": "BR", + "geonameId": 3465872, + "latitudeCity": -15.353333, + "longitudeCity": -38.997223, + "nameCity": "Una", + "timezone": "America/Bahia" + }, + { + "GMT": "-5", + "cityId": 7764, + "codeIataCity": "UNC", + "codeIso2Country": "CO", + "geonameId": 3665580, + "latitudeCity": 8.033333, + "longitudeCity": -77.083336, + "nameCity": "Unguia", + "timezone": "America/Bogota" + }, + { + "GMT": "4.30", + "cityId": 7765, + "codeIataCity": "UND", + "codeIso2Country": "AF", + "geonameId": 1135689, + "latitudeCity": 36.660557, + "longitudeCity": 68.909164, + "nameCity": "Kunduz", + "timezone": "Asia/Kabul" + }, + { + "GMT": "2", + "cityId": 7766, + "codeIataCity": "UNE", + "codeIso2Country": "LS", + "geonameId": 0, + "latitudeCity": -30.166668, + "longitudeCity": 27.166668, + "nameCity": "Qachas Nek", + "timezone": "Africa/Maseru" + }, + { + "GMT": "10", + "cityId": 7767, + "codeIataCity": "UNG", + "codeIso2Country": "PG", + "geonameId": 2093846, + "latitudeCity": -6.125552, + "longitudeCity": 141.28601, + "nameCity": "Kiunga", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "cityId": 7768, + "codeIataCity": "UNI", + "codeIso2Country": "VC", + "geonameId": 0, + "latitudeCity": 13.5, + "longitudeCity": -61.0, + "nameCity": "Union Island", + "timezone": "America/St_Vincent" + }, + { + "GMT": "-9", + "cityId": 7769, + "codeIataCity": "UNK", + "codeIso2Country": "US", + "geonameId": 5877192, + "latitudeCity": 63.881927, + "longitudeCity": -160.79944, + "nameCity": "Unalakleet", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "cityId": 7770, + "codeIataCity": "UNN", + "codeIso2Country": "TH", + "geonameId": 1150965, + "latitudeCity": 9.852778, + "longitudeCity": 98.629166, + "nameCity": "Ranong", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "8", + "cityId": 7771, + "codeIataCity": "UNR", + "codeIso2Country": "MN", + "geonameId": 0, + "latitudeCity": 47.316666, + "longitudeCity": 110.666664, + "nameCity": "Underkhaan", + "timezone": "Asia/Ulaanbaatar" + }, + { + "GMT": "0", + "cityId": 7772, + "codeIataCity": "UNT", + "codeIso2Country": "GB", + "geonameId": 2644605, + "latitudeCity": 60.766666, + "longitudeCity": -0.85, + "nameCity": "Unst Shetland Island", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "cityId": 7773, + "codeIataCity": "UNU", + "codeIso2Country": "US", + "geonameId": 5258190, + "latitudeCity": 58.3, + "longitudeCity": -134.41667, + "nameCity": "Juneau", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 7774, + "codeIataCity": "UOL", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": 1.166667, + "longitudeCity": 121.433334, + "nameCity": "Buol", + "timezone": "Asia/Makassar" + }, + { + "GMT": "7", + "cityId": 7775, + "codeIataCity": "UON", + "codeIso2Country": "LA", + "geonameId": 0, + "latitudeCity": 20.7, + "longitudeCity": 101.98333, + "nameCity": "Muong Sai", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-6", + "cityId": 7776, + "codeIataCity": "UOS", + "codeIso2Country": "US", + "geonameId": 4656589, + "latitudeCity": 35.183334, + "longitudeCity": -85.9, + "nameCity": "Sewanee", + "timezone": "America/Chicago" + }, + { + "GMT": "-6", + "cityId": 7777, + "codeIataCity": "UOX", + "codeIso2Country": "US", + "geonameId": 4641239, + "latitudeCity": 34.384445, + "longitudeCity": -89.535, + "nameCity": "Oxford", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 7778, + "codeIataCity": "UPA", + "codeIso2Country": "CU", + "geonameId": 0, + "latitudeCity": 22.383333, + "longitudeCity": -78.816666, + "nameCity": "Punta Alegre", + "timezone": "America/Havana" + }, + { + "GMT": "-5", + "cityId": 7779, + "codeIataCity": "UPB", + "codeIso2Country": "CU", + "geonameId": 3553478, + "latitudeCity": 23.032778, + "longitudeCity": -82.579445, + "nameCity": "Havana", + "timezone": "America/Havana" + }, + { + "GMT": "8", + "cityId": 7780, + "codeIataCity": "UPG", + "codeIso2Country": "ID", + "geonameId": 1622786, + "latitudeCity": -5.058312, + "longitudeCity": 119.54589, + "nameCity": "Ujung Pandang", + "timezone": "Asia/Makassar" + }, + { + "GMT": "-6", + "cityId": 7781, + "codeIataCity": "UPL", + "codeIso2Country": "CR", + "geonameId": 3621598, + "latitudeCity": 10.783333, + "longitudeCity": -85.03333, + "nameCity": "Upala", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "-6", + "cityId": 7782, + "codeIataCity": "UPN", + "codeIso2Country": "MX", + "geonameId": 3980760, + "latitudeCity": 19.411112, + "longitudeCity": -102.04722, + "nameCity": "Uruapan", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-10", + "cityId": 7783, + "codeIataCity": "UPP", + "codeIso2Country": "US", + "geonameId": 5847504, + "latitudeCity": 20.268057, + "longitudeCity": -155.8625, + "nameCity": "Upolu Point", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "10", + "cityId": 7784, + "codeIataCity": "UPR", + "codeIso2Country": "PG", + "geonameId": 2084640, + "latitudeCity": -8.533333, + "longitudeCity": 142.63333, + "nameCity": "Upiara", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "cityId": 7785, + "codeIataCity": "UPV", + "codeIso2Country": "GB", + "geonameId": 2635162, + "latitudeCity": 51.3, + "longitudeCity": -1.816667, + "nameCity": "Upavon", + "timezone": "Europe/London" + }, + { + "GMT": "-9", + "cityId": 7786, + "codeIataCity": "UQE", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 58.876667, + "longitudeCity": -158.43167, + "nameCity": "Queen", + "timezone": "America/Anchorage" + }, + { + "GMT": "5", + "cityId": 7787, + "codeIataCity": "URA", + "codeIso2Country": "KZ", + "geonameId": 608668, + "latitudeCity": 51.15371, + "longitudeCity": 51.538563, + "nameCity": "Uralsk", + "timezone": "Asia/Oral" + }, + { + "GMT": "-3", + "cityId": 7788, + "codeIataCity": "URB", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -20.783333, + "longitudeCity": -51.566666, + "nameCity": "Urubupunga", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "8", + "cityId": 7789, + "codeIataCity": "URC", + "codeIso2Country": "CN", + "geonameId": 1529102, + "latitudeCity": 43.90126, + "longitudeCity": 87.47515, + "nameCity": "Urumqi", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 7790, + "codeIataCity": "URD", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 49.8, + "longitudeCity": 11.133333, + "nameCity": "Burg Feuerstein", + "timezone": "Europe/Berlin" + }, + { + "GMT": "2", + "cityId": 7791, + "codeIataCity": "URE", + "codeIso2Country": "EE", + "geonameId": 590939, + "latitudeCity": 58.216667, + "longitudeCity": 22.5, + "nameCity": "Kuressaare", + "timezone": "Europe/Tallinn" + }, + { + "GMT": "-3", + "cityId": 7792, + "codeIataCity": "URG", + "codeIso2Country": "BR", + "geonameId": 3445679, + "latitudeCity": -29.781668, + "longitudeCity": -57.038334, + "nameCity": "Uruguaiana", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-5", + "cityId": 7793, + "codeIataCity": "URI", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 3.216667, + "longitudeCity": -74.4, + "nameCity": "Uribe", + "timezone": "America/Bogota" + }, + { + "GMT": "5", + "cityId": 7794, + "codeIataCity": "URJ", + "codeIso2Country": "RU", + "geonameId": 1488429, + "latitudeCity": 60.11667, + "longitudeCity": 64.833336, + "nameCity": "Uraj", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-4", + "cityId": 7795, + "codeIataCity": "URM", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 5.341667, + "longitudeCity": -62.75833, + "nameCity": "Uriman", + "timezone": "America/Caracas" + }, + { + "GMT": "4.30", + "cityId": 7796, + "codeIataCity": "URN", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 32.95, + "longitudeCity": 69.183334, + "nameCity": "Urgoon", + "timezone": "Asia/Kabul" + }, + { + "GMT": "1", + "cityId": 7797, + "codeIataCity": "URO", + "codeIso2Country": "FR", + "geonameId": 2982652, + "latitudeCity": 49.38861, + "longitudeCity": 1.1875, + "nameCity": "Rouen", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 7798, + "codeIataCity": "URR", + "codeIso2Country": "CO", + "geonameId": 3674962, + "latitudeCity": 6.333333, + "longitudeCity": -76.183334, + "nameCity": "Urrao", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "cityId": 7799, + "codeIataCity": "URS", + "codeIso2Country": "RU", + "geonameId": 538560, + "latitudeCity": 51.75, + "longitudeCity": 36.266666, + "nameCity": "Kursk", + "timezone": "Europe/Moscow" + }, + { + "GMT": "7", + "cityId": 7800, + "codeIataCity": "URT", + "codeIso2Country": "TH", + "geonameId": 1150515, + "latitudeCity": 9.133865, + "longitudeCity": 99.143196, + "nameCity": "Surat Thani", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "10", + "cityId": 7801, + "codeIataCity": "URU", + "codeIso2Country": "PG", + "geonameId": 2085070, + "latitudeCity": -9.5, + "longitudeCity": 148.56667, + "nameCity": "Uroubi", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 7802, + "codeIataCity": "URY", + "codeIso2Country": "SA", + "geonameId": 0, + "latitudeCity": 31.409622, + "longitudeCity": 37.275005, + "nameCity": "Gurayat", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "4.30", + "cityId": 7803, + "codeIataCity": "URZ", + "codeIso2Country": "AF", + "geonameId": 0, + "latitudeCity": 32.9, + "longitudeCity": 66.61667, + "nameCity": "Uruzgan", + "timezone": "Asia/Kabul" + }, + { + "GMT": "-3", + "cityId": 7804, + "codeIataCity": "USH", + "codeIso2Country": "AR", + "geonameId": 3833367, + "latitudeCity": -54.839348, + "longitudeCity": -68.31245, + "nameCity": "Ushuaia", + "timezone": "America/Argentina/Ushuaia" + }, + { + "GMT": "-4", + "cityId": 7805, + "codeIataCity": "USI", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 8.166667, + "longitudeCity": -59.833332, + "nameCity": "Mabaruma", + "timezone": "America/Guyana" + }, + { + "GMT": "3", + "cityId": 7806, + "codeIataCity": "USK", + "codeIso2Country": "RU", + "geonameId": 863061, + "latitudeCity": 65.95, + "longitudeCity": 57.4, + "nameCity": "Usinsk", + "timezone": "Europe/Moscow" + }, + { + "GMT": "8", + "cityId": 7807, + "codeIataCity": "USL", + "codeIso2Country": "AU", + "geonameId": 2061676, + "latitudeCity": -25.966667, + "longitudeCity": 113.11667, + "nameCity": "Useless Loop", + "timezone": "Australia/Perth" + }, + { + "GMT": "7", + "cityId": 7808, + "codeIataCity": "USM", + "codeIso2Country": "TH", + "geonameId": 6692478, + "latitudeCity": 9.555315, + "longitudeCity": 100.0628, + "nameCity": "Koh Samui", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "9", + "cityId": 7809, + "codeIataCity": "USN", + "codeIso2Country": "KR", + "geonameId": 1833747, + "latitudeCity": 35.59367, + "longitudeCity": 129.35597, + "nameCity": "Ulsan", + "timezone": "Asia/Seoul" + }, + { + "GMT": "10", + "cityId": 7810, + "codeIataCity": "USO", + "codeIso2Country": "PG", + "geonameId": 2084527, + "latitudeCity": -5.5, + "longitudeCity": 145.43333, + "nameCity": "Usino", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 7811, + "codeIataCity": "USQ", + "codeIso2Country": "TR", + "geonameId": 298299, + "latitudeCity": 38.68222, + "longitudeCity": 29.471945, + "nameCity": "Usak", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-5", + "cityId": 7812, + "codeIataCity": "USS", + "codeIso2Country": "CU", + "geonameId": 0, + "latitudeCity": 21.866667, + "longitudeCity": -79.55, + "nameCity": "Sancti Spiritus", + "timezone": "America/Havana" + }, + { + "GMT": "-5", + "cityId": 7813, + "codeIataCity": "UST", + "codeIso2Country": "US", + "geonameId": 4170894, + "latitudeCity": 29.95, + "longitudeCity": -81.333336, + "nameCity": "St Augustine", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 7814, + "codeIataCity": "USU", + "codeIso2Country": "PH", + "geonameId": 1722263, + "latitudeCity": 12.1, + "longitudeCity": 120.166664, + "nameCity": "Busuanga", + "timezone": "Asia/Manila" + }, + { + "GMT": "2", + "cityId": 7815, + "codeIataCity": "UTA", + "codeIso2Country": "ZW", + "geonameId": 0, + "latitudeCity": -18.966667, + "longitudeCity": 32.666668, + "nameCity": "Mutare", + "timezone": "Africa/Harare" + }, + { + "GMT": "10", + "cityId": 7816, + "codeIataCity": "UTB", + "codeIso2Country": "AU", + "geonameId": 2159630, + "latitudeCity": -22.5875, + "longitudeCity": 144.525, + "nameCity": "Muttaburra", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 7817, + "codeIataCity": "UTC", + "codeIso2Country": "NL", + "geonameId": 2745912, + "latitudeCity": 52.083332, + "longitudeCity": 5.166667, + "nameCity": "Utrecht", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "9.30", + "cityId": 7818, + "codeIataCity": "UTD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -15.816667, + "longitudeCity": 134.16667, + "nameCity": "Nutwood Downs", + "timezone": "Australia/Darwin" + }, + { + "GMT": "2", + "cityId": 7819, + "codeIataCity": "UTG", + "codeIso2Country": "LS", + "geonameId": 0, + "latitudeCity": -30.5, + "longitudeCity": 27.6, + "nameCity": "Quthing", + "timezone": "Africa/Maseru" + }, + { + "GMT": "7", + "cityId": 7820, + "codeIataCity": "UTH", + "codeIso2Country": "TH", + "geonameId": 1605239, + "latitudeCity": 17.38661, + "longitudeCity": 102.774506, + "nameCity": "Udon Thani", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "2", + "cityId": 7821, + "codeIataCity": "UTI", + "codeIso2Country": "FI", + "geonameId": 650859, + "latitudeCity": 60.9, + "longitudeCity": 26.933332, + "nameCity": "Valkeala", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "12", + "cityId": 7822, + "codeIataCity": "UTK", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 11.233333, + "longitudeCity": 169.86667, + "nameCity": "Utirik Island", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "1", + "cityId": 7823, + "codeIataCity": "UTL", + "codeIso2Country": "ES", + "geonameId": 2510281, + "latitudeCity": 36.63333, + "longitudeCity": -4.5, + "nameCity": "Torremolinos", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-6", + "cityId": 7824, + "codeIataCity": "UTM", + "codeIso2Country": "US", + "geonameId": 4448894, + "latitudeCity": 34.667694, + "longitudeCity": -90.36767, + "nameCity": "Tunica", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 7825, + "codeIataCity": "UTN", + "codeIso2Country": "ZA", + "geonameId": 945945, + "latitudeCity": -28.400557, + "longitudeCity": 21.253332, + "nameCity": "Upington", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-9", + "cityId": 7826, + "codeIataCity": "UTO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 65.99333, + "longitudeCity": -153.70166, + "nameCity": "Utopia Creek", + "timezone": "America/Anchorage" + }, + { + "GMT": "7", + "cityId": 7827, + "codeIataCity": "UTP", + "codeIso2Country": "TH", + "geonameId": 1607017, + "latitudeCity": 12.683333, + "longitudeCity": 101.01667, + "nameCity": "Pattaya", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "7", + "cityId": 7828, + "codeIataCity": "UTR", + "codeIso2Country": "TH", + "geonameId": 1607708, + "latitudeCity": 17.669443, + "longitudeCity": 100.24389, + "nameCity": "Uttaradit", + "timezone": "Asia/Bangkok" + }, + { + "GMT": "-6", + "cityId": 7829, + "codeIataCity": "UTS", + "codeIso2Country": "RU", + "geonameId": 4699540, + "latitudeCity": 65.433334, + "longitudeCity": 52.2, + "nameCity": "Ust-Tsilma", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 7830, + "codeIataCity": "UTT", + "codeIso2Country": "ZA", + "geonameId": 946058, + "latitudeCity": -31.583332, + "longitudeCity": 28.783333, + "nameCity": "Umtata", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-5", + "cityId": 7831, + "codeIataCity": "UTU", + "codeIso2Country": "PA", + "geonameId": 3700269, + "latitudeCity": 9.666667, + "longitudeCity": -78.833336, + "nameCity": "Ustupo", + "timezone": "America/Panama" + }, + { + "GMT": "2", + "cityId": 7832, + "codeIataCity": "UTW", + "codeIso2Country": "ZA", + "geonameId": 996060, + "latitudeCity": -31.866667, + "longitudeCity": 26.866667, + "nameCity": "Queenstown", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "3", + "cityId": 7833, + "codeIataCity": "UUA", + "codeIso2Country": "RU", + "geonameId": 538001, + "latitudeCity": 54.61667, + "longitudeCity": 52.816666, + "nameCity": "Bugulma", + "timezone": "Europe/Moscow" + }, + { + "GMT": "8", + "cityId": 7834, + "codeIataCity": "UUD", + "codeIso2Country": "RU", + "geonameId": 2014407, + "latitudeCity": 51.833332, + "longitudeCity": 107.5, + "nameCity": "Ulan-ude", + "timezone": "Asia/Irkutsk" + }, + { + "GMT": "-9", + "cityId": 7835, + "codeIataCity": "UUK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 70.416664, + "longitudeCity": -148.91667, + "nameCity": "Kuparuk", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "cityId": 7836, + "codeIataCity": "UUN", + "codeIso2Country": "MN", + "geonameId": 0, + "latitudeCity": 46.683334, + "longitudeCity": 113.28333, + "nameCity": "Baruun-Urt", + "timezone": "Asia/Choibalsan" + }, + { + "GMT": "11", + "cityId": 7837, + "codeIataCity": "UUS", + "codeIso2Country": "RU", + "geonameId": 2119441, + "latitudeCity": 46.966667, + "longitudeCity": 142.75, + "nameCity": "Yuzhno-Sakhalinsk", + "timezone": "Asia/Sakhalin" + }, + { + "GMT": "10", + "cityId": 7838, + "codeIataCity": "UUU", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -8.999722, + "longitudeCity": 147.46666, + "nameCity": "Manumu", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-6", + "cityId": 7839, + "codeIataCity": "UVA", + "codeIso2Country": "US", + "geonameId": 4738721, + "latitudeCity": 29.201944, + "longitudeCity": -99.735, + "nameCity": "Uvalde", + "timezone": "America/Chicago" + }, + { + "GMT": "11", + "cityId": 7840, + "codeIataCity": "UVE", + "codeIso2Country": "NC", + "geonameId": 0, + "latitudeCity": -20.64242, + "longitudeCity": 166.57198, + "nameCity": "Ouvea", + "timezone": "Pacific/Noumea" + }, + { + "GMT": "2", + "cityId": 7841, + "codeIataCity": "UVL", + "codeIso2Country": "EG", + "geonameId": 360923, + "latitudeCity": 25.475, + "longitudeCity": 30.590834, + "nameCity": "Kharga", + "timezone": "Africa/Cairo" + }, + { + "GMT": "10", + "cityId": 7842, + "codeIataCity": "UVO", + "codeIso2Country": "PG", + "geonameId": 2084489, + "latitudeCity": -5.975, + "longitudeCity": 150.96666, + "nameCity": "Uvol", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 7843, + "codeIataCity": "UWA", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.266666, + "longitudeCity": -72.23333, + "nameCity": "Ware", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 7844, + "codeIataCity": "UWP", + "codeIso2Country": "DE", + "geonameId": 2805753, + "latitudeCity": 51.2667, + "longitudeCity": 7.18333, + "nameCity": "Wuppertal", + "timezone": "Europe/Berlin" + }, + { + "GMT": "3", + "cityId": 7845, + "codeIataCity": "UYL", + "codeIso2Country": "SD", + "geonameId": 369004, + "latitudeCity": 12.071667, + "longitudeCity": 24.894722, + "nameCity": "Nyala", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "8", + "cityId": 7846, + "codeIataCity": "UYN", + "codeIso2Country": "CN", + "geonameId": 1785777, + "latitudeCity": 38.274155, + "longitudeCity": 109.73038, + "nameCity": "Yulin", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-4", + "cityId": 7847, + "codeIataCity": "UYU", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -20.4463, + "longitudeCity": -66.8484, + "nameCity": "Uyuni", + "timezone": "America/La_Paz" + }, + { + "GMT": "1", + "cityId": 7848, + "codeIataCity": "UZC", + "codeIso2Country": "RS", + "geonameId": 3302765, + "latitudeCity": 43.898834, + "longitudeCity": 19.697403, + "nameCity": "Uzice", + "timezone": "Europe/Belgrade" + }, + { + "GMT": "3", + "cityId": 7849, + "codeIataCity": "UZH", + "codeIso2Country": "SA", + "geonameId": 100768, + "latitudeCity": 26.1, + "longitudeCity": 43.933334, + "nameCity": "Unayzah", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-7", + "cityId": 7850, + "codeIataCity": "UZM", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 68.1639, + "longitudeCity": -106.614, + "nameCity": "Hope Bay", + "timezone": "America/Cambridge_Bay" + }, + { + "GMT": "-3", + "cityId": 7851, + "codeIataCity": "UZU", + "codeIso2Country": "AR", + "geonameId": 3430598, + "latitudeCity": -29.778889, + "longitudeCity": -58.095554, + "nameCity": "Curuzu Cuatia", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "2", + "cityId": 7852, + "codeIataCity": "VAA", + "codeIso2Country": "FI", + "geonameId": 632978, + "latitudeCity": 63.04355, + "longitudeCity": 21.760122, + "nameCity": "Vaasa", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-5", + "cityId": 7853, + "codeIataCity": "VAB", + "codeIso2Country": "CO", + "geonameId": 0, + "latitudeCity": 1.116667, + "longitudeCity": -70.75, + "nameCity": "Yavarate", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 7854, + "codeIataCity": "VAC", + "codeIso2Country": "DE", + "geonameId": 2939969, + "latitudeCity": 52.916668, + "longitudeCity": 8.05, + "nameCity": "Varrelbusch", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 7855, + "codeIataCity": "VAF", + "codeIso2Country": "FR", + "geonameId": 2971053, + "latitudeCity": 44.933393, + "longitudeCity": 4.89236, + "nameCity": "Valence", + "timezone": "Europe/Paris" + }, + { + "GMT": "-3", + "cityId": 7856, + "codeIataCity": "VAG", + "codeIso2Country": "BR", + "geonameId": 3445487, + "latitudeCity": -21.55, + "longitudeCity": -45.433334, + "nameCity": "Varginha", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-4", + "cityId": 7857, + "codeIataCity": "VAH", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -18.483334, + "longitudeCity": -64.1, + "nameCity": "Vallegrande", + "timezone": "America/La_Paz" + }, + { + "GMT": "10", + "cityId": 7858, + "codeIataCity": "VAI", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -2.694722, + "longitudeCity": 141.30194, + "nameCity": "Vanimo", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 7859, + "codeIataCity": "VAK", + "codeIso2Country": "US", + "geonameId": 5859114, + "latitudeCity": 61.52861, + "longitudeCity": -165.59027, + "nameCity": "Chevak", + "timezone": "America/Nome" + }, + { + "GMT": "-3", + "cityId": 7860, + "codeIataCity": "VAL", + "codeIso2Country": "BR", + "geonameId": 3450554, + "latitudeCity": -13.333333, + "longitudeCity": -39.083332, + "nameCity": "Valenca", + "timezone": "America/Bahia" + }, + { + "GMT": "5", + "cityId": 7861, + "codeIataCity": "VAM", + "codeIso2Country": "MV", + "geonameId": 8199139, + "latitudeCity": 55.46389, + "longitudeCity": 9.458333, + "nameCity": "Maamigili", + "timezone": "Indian/Maldives" + }, + { + "GMT": "3", + "cityId": 7862, + "codeIataCity": "VAN", + "codeIso2Country": "TR", + "geonameId": 298117, + "latitudeCity": 38.45861, + "longitudeCity": 43.332222, + "nameCity": "Van", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "11", + "cityId": 7863, + "codeIataCity": "VAO", + "codeIso2Country": "SB", + "geonameId": 2103290, + "latitudeCity": -7.566667, + "longitudeCity": 158.66667, + "nameCity": "Suavanao", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-4", + "cityId": 7864, + "codeIataCity": "VAP", + "codeIso2Country": "CL", + "geonameId": 3868626, + "latitudeCity": -33.033333, + "longitudeCity": -71.666664, + "nameCity": "Valparaiso", + "timezone": "America/Santiago" + }, + { + "GMT": "2", + "cityId": 7865, + "codeIataCity": "VAR", + "codeIso2Country": "BG", + "geonameId": 726050, + "latitudeCity": 43.23726, + "longitudeCity": 27.829096, + "nameCity": "Varna", + "timezone": "Europe/Sofia" + }, + { + "GMT": "3", + "cityId": 7866, + "codeIataCity": "VAS", + "codeIso2Country": "TR", + "geonameId": 300619, + "latitudeCity": 39.81389, + "longitudeCity": 36.904167, + "nameCity": "Sivas", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "3", + "cityId": 7867, + "codeIataCity": "VAT", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -19.283333, + "longitudeCity": 48.833332, + "nameCity": "Vatomandry", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "12", + "cityId": 7868, + "codeIataCity": "VAU", + "codeIso2Country": "FJ", + "geonameId": 2198148, + "latitudeCity": -17.5, + "longitudeCity": 177.86667, + "nameCity": "Vatukoula", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "13", + "cityId": 7869, + "codeIataCity": "VAV", + "codeIso2Country": "TO", + "geonameId": 4032420, + "latitudeCity": -18.586012, + "longitudeCity": -173.96829, + "nameCity": "Vava'u", + "timezone": "Pacific/Tongatapu" + }, + { + "GMT": "1", + "cityId": 7870, + "codeIataCity": "VAW", + "codeIso2Country": "NO", + "geonameId": 779303, + "latitudeCity": 70.35472, + "longitudeCity": 31.045555, + "nameCity": "Vardoe", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-9", + "cityId": 7871, + "codeIataCity": "VBM", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.8575, + "longitudeCity": -157.08667, + "nameCity": "Blue Mountain", + "timezone": "America/Anchorage" + }, + { + "GMT": "12", + "cityId": 7872, + "codeIataCity": "VBV", + "codeIso2Country": "FJ", + "geonameId": 0, + "latitudeCity": -17.233334, + "longitudeCity": -178.95, + "nameCity": "Vanuabalavu", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "1", + "cityId": 7873, + "codeIataCity": "VBY", + "codeIso2Country": "SE", + "geonameId": 2662689, + "latitudeCity": 57.660446, + "longitudeCity": 18.338154, + "nameCity": "Visby", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "7", + "cityId": 7874, + "codeIataCity": "VCA", + "codeIso2Country": "VN", + "geonameId": 1586203, + "latitudeCity": 10.047222, + "longitudeCity": 105.76639, + "nameCity": "Can Tho", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-8", + "cityId": 7875, + "codeIataCity": "VCB", + "codeIso2Country": "US", + "geonameId": 5376095, + "latitudeCity": 55.083332, + "longitudeCity": -133.01666, + "nameCity": "View Cove", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "9.30", + "cityId": 7876, + "codeIataCity": "VCD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -16.4, + "longitudeCity": 131.0, + "nameCity": "Victoria River Downs", + "timezone": "Australia/Darwin" + }, + { + "GMT": "1", + "cityId": 7877, + "codeIataCity": "VCE", + "codeIso2Country": "IT", + "geonameId": 3164603, + "latitudeCity": 45.434336, + "longitudeCity": 12.338784, + "nameCity": "Venice", + "timezone": "Europe/Rome" + }, + { + "GMT": "-3", + "cityId": 7878, + "codeIataCity": "VCF", + "codeIso2Country": "AR", + "geonameId": 0, + "latitudeCity": -40.7, + "longitudeCity": -66.15, + "nameCity": "Valcheta", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-3", + "cityId": 7879, + "codeIataCity": "VCH", + "codeIso2Country": "UY", + "geonameId": 3441659, + "latitudeCity": -31.733334, + "longitudeCity": -54.25, + "nameCity": "Vichadero", + "timezone": "America/Montevideo" + }, + { + "GMT": "7", + "cityId": 7880, + "codeIataCity": "VCL", + "codeIso2Country": "VN", + "geonameId": 0, + "latitudeCity": 15.422222, + "longitudeCity": 108.70389, + "nameCity": "Tamky", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-4", + "cityId": 7881, + "codeIataCity": "VCR", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 10.183333, + "longitudeCity": -70.083336, + "nameCity": "Carora", + "timezone": "America/Caracas" + }, + { + "GMT": "7", + "cityId": 7882, + "codeIataCity": "VCS", + "codeIso2Country": "VN", + "geonameId": 0, + "latitudeCity": 10.371389, + "longitudeCity": 106.63333, + "nameCity": "Con Dao", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-6", + "cityId": 7883, + "codeIataCity": "VCT", + "codeIso2Country": "US", + "geonameId": 4739157, + "latitudeCity": 28.85111, + "longitudeCity": -96.914444, + "nameCity": "Victoria", + "timezone": "America/Chicago" + }, + { + "GMT": "-8", + "cityId": 7884, + "codeIataCity": "VCV", + "codeIso2Country": "US", + "geonameId": 5406222, + "latitudeCity": 34.533333, + "longitudeCity": -117.3, + "nameCity": "Victorville", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "2", + "cityId": 7885, + "codeIataCity": "VDA", + "codeIso2Country": "IL", + "geonameId": 295277, + "latitudeCity": 29.952015, + "longitudeCity": 34.9339, + "nameCity": "Ovda", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "1", + "cityId": 7886, + "codeIataCity": "VDB", + "codeIso2Country": "NO", + "geonameId": 3157897, + "latitudeCity": 61.083332, + "longitudeCity": 9.333333, + "nameCity": "Fagernes", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-3", + "cityId": 7887, + "codeIataCity": "VDC", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -14.883333, + "longitudeCity": -40.86667, + "nameCity": "Vitoria Da Conquista", + "timezone": "America/Bahia" + }, + { + "GMT": "0", + "cityId": 7888, + "codeIataCity": "VDE", + "codeIso2Country": "ES", + "geonameId": 2516127, + "latitudeCity": 27.813969, + "longitudeCity": -17.884937, + "nameCity": "Valverde", + "timezone": "Atlantic/Canary" + }, + { + "GMT": "7", + "cityId": 7889, + "codeIataCity": "VDH", + "codeIso2Country": "VN", + "geonameId": 1582894, + "latitudeCity": 17.515, + "longitudeCity": 106.59055, + "nameCity": "Dong Hoi", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-5", + "cityId": 7890, + "codeIataCity": "VDI", + "codeIso2Country": "US", + "geonameId": 4228425, + "latitudeCity": 32.216667, + "longitudeCity": -82.416664, + "nameCity": "Vidalia", + "timezone": "America/New_York" + }, + { + "GMT": "-3", + "cityId": 7891, + "codeIataCity": "VDM", + "codeIso2Country": "AR", + "geonameId": 3832899, + "latitudeCity": -40.85, + "longitudeCity": -63.016666, + "nameCity": "Viedma", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-4", + "cityId": 7892, + "codeIataCity": "VDP", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 9.221389, + "longitudeCity": -65.99111, + "nameCity": "Valle De Pascua", + "timezone": "America/Caracas" + }, + { + "GMT": "-3", + "cityId": 7893, + "codeIataCity": "VDR", + "codeIso2Country": "AR", + "geonameId": 3832791, + "latitudeCity": -31.94111, + "longitudeCity": -65.14222, + "nameCity": "Villa Dolores", + "timezone": "America/Argentina/Cordoba" + }, + { + "GMT": "1", + "cityId": 7894, + "codeIataCity": "VDS", + "codeIso2Country": "NO", + "geonameId": 777073, + "latitudeCity": 70.065, + "longitudeCity": 29.845278, + "nameCity": "Vadso", + "timezone": "Europe/Oslo" + }, + { + "GMT": "5.30", + "cityId": 7895, + "codeIataCity": "VDY", + "codeIso2Country": "IN", + "geonameId": 1254228, + "latitudeCity": 15.17483, + "longitudeCity": 76.63406, + "nameCity": "Vidyanagar", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-9", + "cityId": 7896, + "codeIataCity": "VDZ", + "codeIso2Country": "US", + "geonameId": 5877389, + "latitudeCity": 61.1325, + "longitudeCity": -146.23889, + "nameCity": "Valdez", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 7897, + "codeIataCity": "VEE", + "codeIso2Country": "US", + "geonameId": 5877422, + "latitudeCity": 67.023056, + "longitudeCity": -146.41112, + "nameCity": "Venetie", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "cityId": 7898, + "codeIataCity": "VEG", + "codeIso2Country": "GY", + "geonameId": 0, + "latitudeCity": 5.55, + "longitudeCity": -59.283333, + "nameCity": "Maikwak", + "timezone": "America/Guyana" + }, + { + "GMT": "-7", + "cityId": 7899, + "codeIataCity": "VEL", + "codeIso2Country": "US", + "geonameId": 5784154, + "latitudeCity": 40.43889, + "longitudeCity": -109.51028, + "nameCity": "Vernal", + "timezone": "America/Denver" + }, + { + "GMT": "-6", + "cityId": 7900, + "codeIataCity": "VER", + "codeIso2Country": "MX", + "geonameId": 3514783, + "latitudeCity": 19.142275, + "longitudeCity": -96.18321, + "nameCity": "Veracruz", + "timezone": "America/Mexico_City" + }, + { + "GMT": "11", + "cityId": 7901, + "codeIataCity": "VEV", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -7.85, + "longitudeCity": 159.55, + "nameCity": "Barakoma", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "-6", + "cityId": 7902, + "codeIataCity": "VEX", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.916668, + "longitudeCity": -77.13333, + "nameCity": "Tioga", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 7903, + "codeIataCity": "VEY", + "codeIso2Country": "IS", + "geonameId": 3412093, + "latitudeCity": 63.426388, + "longitudeCity": -20.277779, + "nameCity": "Vestmannaeyjar", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "2", + "cityId": 7904, + "codeIataCity": "VFA", + "codeIso2Country": "ZW", + "geonameId": 879431, + "latitudeCity": -18.093056, + "longitudeCity": 25.840279, + "nameCity": "Victoria Falls", + "timezone": "Africa/Harare" + }, + { + "GMT": "5.30", + "cityId": 7905, + "codeIataCity": "VGA", + "codeIso2Country": "IN", + "geonameId": 1253184, + "latitudeCity": 16.529444, + "longitudeCity": 80.79722, + "nameCity": "Vijayawada", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "3", + "cityId": 7906, + "codeIataCity": "VGD", + "codeIso2Country": "RU", + "geonameId": 472459, + "latitudeCity": 59.283333, + "longitudeCity": 39.95, + "nameCity": "Vologda", + "timezone": "Europe/Moscow" + }, + { + "GMT": "7", + "cityId": 7907, + "codeIataCity": "VGG", + "codeIso2Country": "LA", + "geonameId": 0, + "latitudeCity": 62.53, + "longitudeCity": 11.07, + "nameCity": "Vangrieng", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "1", + "cityId": 7908, + "codeIataCity": "VGO", + "codeIso2Country": "ES", + "geonameId": 3105976, + "latitudeCity": 42.231356, + "longitudeCity": -8.712447, + "nameCity": "Vigo", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-3", + "cityId": 7909, + "codeIataCity": "VGS", + "codeIso2Country": "AR", + "geonameId": 3835729, + "latitudeCity": -35.083332, + "longitudeCity": -63.0, + "nameCity": "General Villegas", + "timezone": "America/Argentina/Salta" + }, + { + "GMT": "-5", + "cityId": 7910, + "codeIataCity": "VGZ", + "codeIso2Country": "CO", + "geonameId": 3666023, + "latitudeCity": 1.066667, + "longitudeCity": -76.71667, + "nameCity": "Villagarzon", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 7911, + "codeIataCity": "VHC", + "codeIso2Country": "AO", + "geonameId": 145531, + "latitudeCity": -9.75, + "longitudeCity": 20.55, + "nameCity": "Saurimo", + "timezone": "Africa/Luanda" + }, + { + "GMT": "1", + "cityId": 7912, + "codeIataCity": "VHM", + "codeIso2Country": "SE", + "geonameId": 2662935, + "latitudeCity": 64.61667, + "longitudeCity": 16.65, + "nameCity": "Vilhelmina", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-6", + "cityId": 7913, + "codeIataCity": "VHN", + "codeIso2Country": "US", + "geonameId": 5532924, + "latitudeCity": 31.05, + "longitudeCity": -104.833336, + "nameCity": "Van Horn", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 7914, + "codeIataCity": "VHY", + "codeIso2Country": "FR", + "geonameId": 2969392, + "latitudeCity": 46.165558, + "longitudeCity": 3.409722, + "nameCity": "Vichy", + "timezone": "Europe/Paris" + }, + { + "GMT": "-10", + "cityId": 7915, + "codeIataCity": "VHZ", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -18.583332, + "longitudeCity": -138.83333, + "nameCity": "Vahitahi", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-3", + "cityId": 7916, + "codeIataCity": "VIA", + "codeIso2Country": "BR", + "geonameId": 6317166, + "latitudeCity": -27.008333, + "longitudeCity": -51.136112, + "nameCity": "Videira", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-7", + "cityId": 7917, + "codeIataCity": "VIB", + "codeIso2Country": "MX", + "geonameId": 0, + "latitudeCity": 25.058332, + "longitudeCity": -111.7, + "nameCity": "Villa Constitucion", + "timezone": "America/Mazatlan" + }, + { + "GMT": "1", + "cityId": 7918, + "codeIataCity": "VIC", + "codeIso2Country": "IT", + "geonameId": 3164419, + "latitudeCity": 45.545905, + "longitudeCity": 11.540307, + "nameCity": "Vicenza", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "cityId": 7919, + "codeIataCity": "VIE", + "codeIso2Country": "AT", + "geonameId": 2761369, + "latitudeCity": 48.208174, + "longitudeCity": 16.373819, + "nameCity": "Vienna", + "timezone": "Europe/Vienna" + }, + { + "GMT": "1", + "cityId": 7920, + "codeIataCity": "VIF", + "codeIso2Country": "IT", + "geonameId": 0, + "latitudeCity": 41.885277, + "longitudeCity": 16.176945, + "nameCity": "Vieste", + "timezone": "Europe/Rome" + }, + { + "GMT": "-4", + "cityId": 7921, + "codeIataCity": "VIG", + "codeIso2Country": "VE", + "geonameId": 3481832, + "latitudeCity": 8.633333, + "longitudeCity": -71.65, + "nameCity": "El Vigia", + "timezone": "America/Caracas" + }, + { + "GMT": "-6", + "cityId": 7922, + "codeIataCity": "VIH", + "codeIso2Country": "US", + "geonameId": 4413031, + "latitudeCity": 38.13333, + "longitudeCity": -91.76667, + "nameCity": "Vichy", + "timezone": "America/Chicago" + }, + { + "GMT": "7", + "cityId": 7923, + "codeIataCity": "VII", + "codeIso2Country": "VN", + "geonameId": 1562798, + "latitudeCity": 18.7, + "longitudeCity": 105.63333, + "nameCity": "Vinh City", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-4", + "cityId": 7924, + "codeIataCity": "VIJ", + "codeIso2Country": "VG", + "geonameId": 3577369, + "latitudeCity": 18.45027, + "longitudeCity": -64.427734, + "nameCity": "Spanish Town", + "timezone": "America/Tortola" + }, + { + "GMT": "-9", + "cityId": 7925, + "codeIataCity": "VIK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 69.68, + "longitudeCity": -146.9, + "nameCity": "Kavik", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "cityId": 7926, + "codeIataCity": "VIL", + "codeIso2Country": "MA", + "geonameId": 0, + "latitudeCity": 23.713333, + "longitudeCity": -15.935, + "nameCity": "Dakhla", + "timezone": "Africa/Casablanca" + }, + { + "GMT": "2", + "cityId": 7927, + "codeIataCity": "VIN", + "codeIso2Country": "UA", + "geonameId": 689558, + "latitudeCity": 49.233334, + "longitudeCity": 28.483334, + "nameCity": "Vinnica", + "timezone": "Europe/Kiev" + }, + { + "GMT": "9", + "cityId": 7928, + "codeIataCity": "VIQ", + "codeIso2Country": "TL", + "geonameId": 1645457, + "latitudeCity": -8.883333, + "longitudeCity": 126.36667, + "nameCity": "Viqueque", + "timezone": "Asia/Dili" + }, + { + "GMT": "-8", + "cityId": 7929, + "codeIataCity": "VIS", + "codeIso2Country": "US", + "geonameId": 5406567, + "latitudeCity": 36.319443, + "longitudeCity": -119.39389, + "nameCity": "Visalia", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 7930, + "codeIataCity": "VIT", + "codeIso2Country": "ES", + "geonameId": 3104499, + "latitudeCity": 42.833332, + "longitudeCity": -2.5, + "nameCity": "Vitoria", + "timezone": "Europe/Madrid" + }, + { + "GMT": "11", + "cityId": 7931, + "codeIataCity": "VIU", + "codeIso2Country": "SB", + "geonameId": 0, + "latitudeCity": -8.5, + "longitudeCity": 157.66667, + "nameCity": "Viru", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "10", + "cityId": 7932, + "codeIataCity": "VIV", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -9.330556, + "longitudeCity": 150.34166, + "nameCity": "Vivigani", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-3", + "cityId": 7933, + "codeIataCity": "VIX", + "codeIso2Country": "BR", + "geonameId": 3444924, + "latitudeCity": -20.25681, + "longitudeCity": -40.289566, + "nameCity": "Vitoria", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "2", + "cityId": 7934, + "codeIataCity": "VJB", + "codeIso2Country": "MZ", + "geonameId": 1024552, + "latitudeCity": -25.033333, + "longitudeCity": 33.61667, + "nameCity": "Xai Xai", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-5", + "cityId": 7935, + "codeIataCity": "VJI", + "codeIso2Country": "US", + "geonameId": 4743815, + "latitudeCity": 36.68611, + "longitudeCity": -82.03333, + "nameCity": "Abingdon", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 7936, + "codeIataCity": "VJQ", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": -15.416667, + "longitudeCity": 36.966667, + "nameCity": "Gurue", + "timezone": "Africa/Maputo" + }, + { + "GMT": "7", + "cityId": 7937, + "codeIataCity": "VKG", + "codeIso2Country": "VN", + "geonameId": 1568510, + "latitudeCity": 10.083333, + "longitudeCity": 105.083336, + "nameCity": "Rach Gia", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-6", + "cityId": 7938, + "codeIataCity": "VKS", + "codeIso2Country": "US", + "geonameId": 4449620, + "latitudeCity": 32.35, + "longitudeCity": -90.85, + "nameCity": "Vicksburg", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 7939, + "codeIataCity": "VKT", + "codeIso2Country": "RU", + "geonameId": 1486910, + "latitudeCity": 67.48333, + "longitudeCity": 63.983334, + "nameCity": "Vorkuta", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-9", + "cityId": 7940, + "codeIataCity": "VKW", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 69.76667, + "longitudeCity": -146.91667, + "nameCity": "West Kavik", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 7941, + "codeIataCity": "VLA", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.966667, + "longitudeCity": -89.1, + "nameCity": "Vandalia", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 7942, + "codeIataCity": "VLC", + "codeIso2Country": "ES", + "geonameId": 2509954, + "latitudeCity": 39.490732, + "longitudeCity": -0.455882, + "nameCity": "Manises", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-5", + "cityId": 7943, + "codeIataCity": "VLD", + "codeIso2Country": "US", + "geonameId": 4228147, + "latitudeCity": 30.832702, + "longitudeCity": -83.278485, + "nameCity": "Valdosta", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 7944, + "codeIataCity": "VLE", + "codeIso2Country": "US", + "geonameId": 5319342, + "latitudeCity": 35.65, + "longitudeCity": -112.183334, + "nameCity": "Valle", + "timezone": "America/Phoenix" + }, + { + "GMT": "-3", + "cityId": 7945, + "codeIataCity": "VLG", + "codeIso2Country": "AR", + "geonameId": 3427431, + "latitudeCity": -38.016666, + "longitudeCity": -57.583332, + "nameCity": "Villa Gesell", + "timezone": "America/Argentina/Buenos_Aires" + }, + { + "GMT": "11", + "cityId": 7946, + "codeIataCity": "VLI", + "codeIso2Country": "VU", + "geonameId": 2135171, + "latitudeCity": -17.701853, + "longitudeCity": 168.3195, + "nameCity": "Port Vila", + "timezone": "Pacific/Efate" + }, + { + "GMT": "3", + "cityId": 7947, + "codeIataCity": "VLK", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 47.683334, + "longitudeCity": 42.083332, + "nameCity": "Volgodonsk", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "cityId": 7948, + "codeIataCity": "VLL", + "codeIso2Country": "ES", + "geonameId": 3106672, + "latitudeCity": 41.652943, + "longitudeCity": -4.728381, + "nameCity": "Valladolid", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-4", + "cityId": 7949, + "codeIataCity": "VLM", + "codeIso2Country": "BO", + "geonameId": 0, + "latitudeCity": -21.25, + "longitudeCity": -63.5, + "nameCity": "Villamontes", + "timezone": "America/La_Paz" + }, + { + "GMT": "-4", + "cityId": 7950, + "codeIataCity": "VLN", + "codeIso2Country": "VE", + "geonameId": 3625549, + "latitudeCity": 10.15429, + "longitudeCity": -67.92248, + "nameCity": "Valencia", + "timezone": "America/Caracas" + }, + { + "GMT": "-8", + "cityId": 7951, + "codeIataCity": "VLO", + "codeIso2Country": "US", + "geonameId": 5405380, + "latitudeCity": 38.11667, + "longitudeCity": -122.23333, + "nameCity": "Vallejo", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-4", + "cityId": 7952, + "codeIataCity": "VLP", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -10.015556, + "longitudeCity": -51.122223, + "nameCity": "Vila Rica", + "timezone": "America/Cuiaba" + }, + { + "GMT": "-4", + "cityId": 7953, + "codeIataCity": "VLR", + "codeIso2Country": "CL", + "geonameId": 3868633, + "latitudeCity": -28.591667, + "longitudeCity": -70.761665, + "nameCity": "Vallenar", + "timezone": "America/Santiago" + }, + { + "GMT": "11", + "cityId": 7954, + "codeIataCity": "VLS", + "codeIso2Country": "VU", + "geonameId": 2134440, + "latitudeCity": -16.8, + "longitudeCity": 168.2, + "nameCity": "Valesdir", + "timezone": "Pacific/Efate" + }, + { + "GMT": "3", + "cityId": 7955, + "codeIataCity": "VLU", + "codeIso2Country": "RU", + "geonameId": 476077, + "latitudeCity": 56.38333, + "longitudeCity": 30.616667, + "nameCity": "Velikiye Luki", + "timezone": "Europe/Moscow" + }, + { + "GMT": "-4", + "cityId": 7956, + "codeIataCity": "VLV", + "codeIso2Country": "VE", + "geonameId": 3625542, + "latitudeCity": 9.339167, + "longitudeCity": -70.58583, + "nameCity": "Valera", + "timezone": "America/Caracas" + }, + { + "GMT": "0", + "cityId": 7957, + "codeIataCity": "VLY", + "codeIso2Country": "GB", + "geonameId": 2646686, + "latitudeCity": 53.25036, + "longitudeCity": -4.529017, + "nameCity": "Anglesey", + "timezone": "Europe/London" + }, + { + "GMT": "-3", + "cityId": 7958, + "codeIataCity": "VME", + "codeIso2Country": "AR", + "geonameId": 7116866, + "latitudeCity": -33.63333, + "longitudeCity": -65.416664, + "nameCity": "Villa Mercedes", + "timezone": "America/Argentina/San_Luis" + }, + { + "GMT": "-4", + "cityId": 7959, + "codeIataCity": "VMI", + "codeIso2Country": "PY", + "geonameId": 0, + "latitudeCity": -22.25, + "longitudeCity": -58.0, + "nameCity": "Vallemi", + "timezone": "America/Asuncion" + }, + { + "GMT": "10", + "cityId": 7960, + "codeIataCity": "VMU", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.5, + "longitudeCity": 144.8, + "nameCity": "Baimuru", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "7", + "cityId": 7961, + "codeIataCity": "VNA", + "codeIso2Country": "LA", + "geonameId": 1654379, + "latitudeCity": 15.692778, + "longitudeCity": 106.42611, + "nameCity": "Saravane", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-5", + "cityId": 7962, + "codeIataCity": "VNC", + "codeIso2Country": "US", + "geonameId": 4176380, + "latitudeCity": 27.066668, + "longitudeCity": -82.433334, + "nameCity": "Venice", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 7963, + "codeIataCity": "VND", + "codeIso2Country": "MG", + "geonameId": 1054329, + "latitudeCity": -23.35, + "longitudeCity": 47.566666, + "nameCity": "Vangaindrano", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "1", + "cityId": 7964, + "codeIataCity": "VNE", + "codeIso2Country": "FR", + "geonameId": 2970777, + "latitudeCity": 47.65, + "longitudeCity": -2.766667, + "nameCity": "Vannes", + "timezone": "Europe/Paris" + }, + { + "GMT": "7", + "cityId": 7965, + "codeIataCity": "VNG", + "codeIso2Country": "LA", + "geonameId": 7648323, + "latitudeCity": 18.933332, + "longitudeCity": 102.5, + "nameCity": "Viengxay", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "2", + "cityId": 7966, + "codeIataCity": "VNO", + "codeIso2Country": "LT", + "geonameId": 593116, + "latitudeCity": 54.643078, + "longitudeCity": 25.279606, + "nameCity": "Vilnius", + "timezone": "Europe/Vilnius" + }, + { + "GMT": "10", + "cityId": 7967, + "codeIataCity": "VNR", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -16.866667, + "longitudeCity": 141.91667, + "nameCity": "Vanrook", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5.30", + "cityId": 7968, + "codeIataCity": "VNS", + "codeIso2Country": "IN", + "geonameId": 1253407, + "latitudeCity": 25.449697, + "longitudeCity": 82.85373, + "nameCity": "Varanasi", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "2", + "cityId": 7969, + "codeIataCity": "VNT", + "codeIso2Country": "LV", + "geonameId": 454310, + "latitudeCity": 27.3, + "longitudeCity": 87.2, + "nameCity": "Ventspils", + "timezone": "Europe/Riga" + }, + { + "GMT": "2", + "cityId": 7970, + "codeIataCity": "VNX", + "codeIso2Country": "MZ", + "geonameId": 0, + "latitudeCity": -22.016666, + "longitudeCity": 35.283333, + "nameCity": "Vilanculos", + "timezone": "Africa/Maputo" + }, + { + "GMT": "3", + "cityId": 7971, + "codeIataCity": "VOG", + "codeIso2Country": "RU", + "geonameId": 472757, + "latitudeCity": 48.792, + "longitudeCity": 44.354805, + "nameCity": "Volgograd", + "timezone": "Europe/Volgograd" + }, + { + "GMT": "3", + "cityId": 7972, + "codeIataCity": "VOH", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -13.366667, + "longitudeCity": 50.0, + "nameCity": "Vohemar", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "0", + "cityId": 7973, + "codeIataCity": "VOI", + "codeIso2Country": "LR", + "geonameId": 0, + "latitudeCity": 8.416667, + "longitudeCity": -9.75, + "nameCity": "Voinjama", + "timezone": "Africa/Monrovia" + }, + { + "GMT": "-6", + "cityId": 7974, + "codeIataCity": "VOK", + "codeIso2Country": "US", + "geonameId": 5258957, + "latitudeCity": 43.933334, + "longitudeCity": -90.28333, + "nameCity": "Camp Douglas", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 7975, + "codeIataCity": "VOL", + "codeIso2Country": "GR", + "geonameId": 251833, + "latitudeCity": 39.38333, + "longitudeCity": 22.93111, + "nameCity": "Volos", + "timezone": "Europe/Athens" + }, + { + "GMT": "-3", + "cityId": 7976, + "codeIataCity": "VOT", + "codeIso2Country": "BR", + "geonameId": 3444864, + "latitudeCity": -20.433332, + "longitudeCity": -49.88333, + "nameCity": "Votuporanga", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "3", + "cityId": 7977, + "codeIataCity": "VOZ", + "codeIso2Country": "RU", + "geonameId": 472045, + "latitudeCity": 51.812355, + "longitudeCity": 39.226997, + "nameCity": "Voronezh", + "timezone": "Europe/Moscow" + }, + { + "GMT": "1", + "cityId": 7978, + "codeIataCity": "VPE", + "codeIso2Country": "AO", + "geonameId": 3346821, + "latitudeCity": -17.05, + "longitudeCity": 15.7, + "nameCity": "Ondjiva", + "timezone": "Africa/Luanda" + }, + { + "GMT": "3", + "cityId": 7979, + "codeIataCity": "VPG", + "codeIso2Country": "KE", + "geonameId": 178543, + "latitudeCity": -3.842778, + "longitudeCity": 39.805, + "nameCity": "Vipingo", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "0", + "cityId": 7980, + "codeIataCity": "VPN", + "codeIso2Country": "IS", + "geonameId": 6354943, + "latitudeCity": 65.75694, + "longitudeCity": -14.829444, + "nameCity": "Vopnafjordur", + "timezone": "Atlantic/Reykjavik" + }, + { + "GMT": "-6", + "cityId": 7981, + "codeIataCity": "VPS", + "codeIso2Country": "US", + "geonameId": 4176316, + "latitudeCity": 30.495913, + "longitudeCity": -86.54946, + "nameCity": "Valparaiso", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 7982, + "codeIataCity": "VPY", + "codeIso2Country": "MZ", + "geonameId": 1049261, + "latitudeCity": -19.133333, + "longitudeCity": 33.483334, + "nameCity": "Chimoio", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-6", + "cityId": 7983, + "codeIataCity": "VPZ", + "codeIso2Country": "US", + "geonameId": 4927537, + "latitudeCity": 41.4525, + "longitudeCity": -87.00528, + "nameCity": "Valparaiso", + "timezone": "America/Chicago" + }, + { + "GMT": "-4", + "cityId": 7984, + "codeIataCity": "VQS", + "codeIso2Country": "PR", + "geonameId": 4568571, + "latitudeCity": 18.134089, + "longitudeCity": -65.48803, + "nameCity": "Vieques", + "timezone": "America/Puerto_Rico" + }, + { + "GMT": "-5", + "cityId": 7985, + "codeIataCity": "VRA", + "codeIso2Country": "CU", + "geonameId": 3534632, + "latitudeCity": 23.039896, + "longitudeCity": -81.43694, + "nameCity": "Varadero", + "timezone": "America/Havana" + }, + { + "GMT": "-5", + "cityId": 7986, + "codeIataCity": "VRB", + "codeIso2Country": "US", + "geonameId": 4176409, + "latitudeCity": 27.6525, + "longitudeCity": -80.41361, + "nameCity": "Vero Beach", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 7987, + "codeIataCity": "VRC", + "codeIso2Country": "PH", + "geonameId": 1679802, + "latitudeCity": 13.583333, + "longitudeCity": 124.2, + "nameCity": "Virac", + "timezone": "Asia/Manila" + }, + { + "GMT": "2", + "cityId": 7988, + "codeIataCity": "VRE", + "codeIso2Country": "ZA", + "geonameId": 3359736, + "latitudeCity": -31.666668, + "longitudeCity": 18.5, + "nameCity": "Vredendal", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "3", + "cityId": 7989, + "codeIataCity": "VRI", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 68.84797, + "longitudeCity": 58.1987, + "nameCity": "Varandey", + "timezone": "Europe/Moscow" + }, + { + "GMT": "2", + "cityId": 7990, + "codeIataCity": "VRK", + "codeIso2Country": "FI", + "geonameId": 632370, + "latitudeCity": 62.3, + "longitudeCity": 27.933332, + "nameCity": "Joroinen", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "0", + "cityId": 7991, + "codeIataCity": "VRL", + "codeIso2Country": "PT", + "geonameId": 2732438, + "latitudeCity": 41.3, + "longitudeCity": -7.75, + "nameCity": "Vila Real", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "1", + "cityId": 7992, + "codeIataCity": "VRN", + "codeIso2Country": "IT", + "geonameId": 3164527, + "latitudeCity": 45.438328, + "longitudeCity": 10.991762, + "nameCity": "Verona", + "timezone": "Europe/Rome" + }, + { + "GMT": "-5", + "cityId": 7993, + "codeIataCity": "VRO", + "codeIso2Country": "CU", + "geonameId": 3547398, + "latitudeCity": 23.133333, + "longitudeCity": -81.3, + "nameCity": "Matanzas", + "timezone": "America/Havana" + }, + { + "GMT": "-6", + "cityId": 7994, + "codeIataCity": "VRS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.433334, + "longitudeCity": -92.85, + "nameCity": "Versailles", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 7995, + "codeIataCity": "VRU", + "codeIso2Country": "ZA", + "geonameId": 0, + "latitudeCity": -26.916668, + "longitudeCity": 24.75, + "nameCity": "Vryburg", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "1", + "cityId": 7996, + "codeIataCity": "VRY", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 67.666664, + "longitudeCity": 12.683333, + "nameCity": "Vaeroy", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "cityId": 7997, + "codeIataCity": "VSA", + "codeIso2Country": "MX", + "geonameId": 3514670, + "latitudeCity": 17.99243, + "longitudeCity": -92.818985, + "nameCity": "Villahermosa", + "timezone": "America/Mexico_City" + }, + { + "GMT": "0", + "cityId": 7998, + "codeIataCity": "VSE", + "codeIso2Country": "PT", + "geonameId": 2732265, + "latitudeCity": 40.65, + "longitudeCity": -7.916667, + "nameCity": "Viseu", + "timezone": "Europe/Lisbon" + }, + { + "GMT": "-5", + "cityId": 7999, + "codeIataCity": "VSF", + "codeIso2Country": "US", + "geonameId": 5241423, + "latitudeCity": 42.11667, + "longitudeCity": -72.583336, + "nameCity": "Springfield", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 8000, + "codeIataCity": "VSG", + "codeIso2Country": "UA", + "geonameId": 702658, + "latitudeCity": 48.566666, + "longitudeCity": 39.333332, + "nameCity": "Lugansk", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-8", + "cityId": 8001, + "codeIataCity": "VSK", + "codeIso2Country": "US", + "geonameId": 5799610, + "latitudeCity": 46.21125, + "longitudeCity": -119.13723, + "nameCity": "Kennewick", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "7", + "cityId": 8002, + "codeIataCity": "VSO", + "codeIso2Country": "VN", + "geonameId": 1586203, + "latitudeCity": 9.433333, + "longitudeCity": 105.46667, + "nameCity": "Phuoclong", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-6", + "cityId": 8003, + "codeIataCity": "VTA", + "codeIso2Country": "HN", + "geonameId": 0, + "latitudeCity": 14.95, + "longitudeCity": -87.4, + "nameCity": "Victoria", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "3", + "cityId": 8004, + "codeIataCity": "VTB", + "codeIso2Country": "BY", + "geonameId": 0, + "latitudeCity": 55.13333, + "longitudeCity": 30.366667, + "nameCity": "Vitebsk", + "timezone": "Europe/Minsk" + }, + { + "GMT": "7", + "cityId": 8005, + "codeIataCity": "VTE", + "codeIso2Country": "LA", + "geonameId": 1651944, + "latitudeCity": 17.975431, + "longitudeCity": 102.56772, + "nameCity": "Vientiane", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "12", + "cityId": 8006, + "codeIataCity": "VTF", + "codeIso2Country": "FJ", + "geonameId": 2198148, + "latitudeCity": -18.55, + "longitudeCity": 177.61667, + "nameCity": "Vatulele", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "7", + "cityId": 8007, + "codeIataCity": "VTG", + "codeIso2Country": "VN", + "geonameId": 1566083, + "latitudeCity": 10.374444, + "longitudeCity": 107.09111, + "nameCity": "Vung Tau", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "1", + "cityId": 8008, + "codeIataCity": "VTL", + "codeIso2Country": "FR", + "geonameId": 2967845, + "latitudeCity": 48.2, + "longitudeCity": 5.95, + "nameCity": "Vittel", + "timezone": "Europe/Paris" + }, + { + "GMT": "2", + "cityId": 8009, + "codeIataCity": "VTM", + "codeIso2Country": "IL", + "geonameId": 281184, + "latitudeCity": 31.20473, + "longitudeCity": 35.02047, + "nameCity": "Nevatim", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "-6", + "cityId": 8010, + "codeIataCity": "VTN", + "codeIso2Country": "US", + "geonameId": 5700344, + "latitudeCity": 42.86667, + "longitudeCity": -100.55, + "nameCity": "Valentine", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 8011, + "codeIataCity": "VTU", + "codeIso2Country": "CU", + "geonameId": 3550598, + "latitudeCity": 20.966667, + "longitudeCity": -76.95, + "nameCity": "Las Tunas", + "timezone": "America/Havana" + }, + { + "GMT": "5.30", + "cityId": 8012, + "codeIataCity": "VTZ", + "codeIso2Country": "IN", + "geonameId": 1272410, + "latitudeCity": 17.728151, + "longitudeCity": 83.22675, + "nameCity": "Vishakhapatnam", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "-5", + "cityId": 8013, + "codeIataCity": "VUP", + "codeIso2Country": "CO", + "geonameId": 3666304, + "latitudeCity": 10.436667, + "longitudeCity": -73.25278, + "nameCity": "Valledupar", + "timezone": "America/Bogota" + }, + { + "GMT": "3", + "cityId": 8014, + "codeIataCity": "VUS", + "codeIso2Country": "RU", + "geonameId": 476062, + "latitudeCity": 60.766666, + "longitudeCity": 46.316666, + "nameCity": "Velikij Ustyug", + "timezone": "Europe/Moscow" + }, + { + "GMT": "2", + "cityId": 8015, + "codeIataCity": "VUU", + "codeIso2Country": "MW", + "geonameId": 0, + "latitudeCity": -15.683333, + "longitudeCity": 35.0, + "nameCity": "Mvuu Camp", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "3", + "cityId": 8016, + "codeIataCity": "VVB", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -19.833332, + "longitudeCity": 48.8, + "nameCity": "Mahanoro", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-5", + "cityId": 8017, + "codeIataCity": "VVC", + "codeIso2Country": "CO", + "geonameId": 3665900, + "latitudeCity": 4.078889, + "longitudeCity": -73.566666, + "nameCity": "Villavicencio", + "timezone": "America/Bogota" + }, + { + "GMT": "1", + "cityId": 8018, + "codeIataCity": "VVK", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 57.75, + "longitudeCity": 16.633333, + "nameCity": "Vastervik", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "cityId": 8019, + "codeIataCity": "VVN", + "codeIso2Country": "PE", + "geonameId": 0, + "latitudeCity": -11.8547, + "longitudeCity": -72.9397, + "nameCity": "Malvinas", + "timezone": "America/Lima" + }, + { + "GMT": "10", + "cityId": 8020, + "codeIataCity": "VVO", + "codeIso2Country": "RU", + "geonameId": 2013348, + "latitudeCity": 43.378574, + "longitudeCity": 132.14075, + "nameCity": "Vladivostok", + "timezone": "Asia/Vladivostok" + }, + { + "GMT": "1", + "cityId": 8021, + "codeIataCity": "VVZ", + "codeIso2Country": "DZ", + "geonameId": 2493456, + "latitudeCity": 26.533333, + "longitudeCity": 8.55, + "nameCity": "Illizi", + "timezone": "Africa/Algiers" + }, + { + "GMT": "2", + "cityId": 8022, + "codeIataCity": "VXC", + "codeIso2Country": "MZ", + "geonameId": 1043893, + "latitudeCity": -13.283333, + "longitudeCity": 35.25, + "nameCity": "Lichinga", + "timezone": "Africa/Maputo" + }, + { + "GMT": "-1", + "cityId": 8023, + "codeIataCity": "VXE", + "codeIso2Country": "CV", + "geonameId": 3374462, + "latitudeCity": 16.835613, + "longitudeCity": -25.057571, + "nameCity": "Sao Vicente", + "timezone": "Atlantic/Cape_Verde" + }, + { + "GMT": "1", + "cityId": 8024, + "codeIataCity": "VXO", + "codeIso2Country": "SE", + "geonameId": 2663536, + "latitudeCity": 56.925095, + "longitudeCity": 14.732046, + "nameCity": "V?xj?", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "2", + "cityId": 8025, + "codeIataCity": "VYD", + "codeIso2Country": "ZA", + "geonameId": 942470, + "latitudeCity": -27.783333, + "longitudeCity": 30.8, + "nameCity": "Vryheid", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "-6", + "cityId": 8026, + "codeIataCity": "VYS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.333332, + "longitudeCity": -89.13333, + "nameCity": "Peru", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 8027, + "codeIataCity": "WAA", + "codeIso2Country": "US", + "geonameId": 5877563, + "latitudeCity": 65.617226, + "longitudeCity": -168.09084, + "nameCity": "Wales", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 8028, + "codeIataCity": "WAB", + "codeIso2Country": "PG", + "geonameId": 2084246, + "latitudeCity": -5.483333, + "longitudeCity": 143.73334, + "nameCity": "Wabag", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 8029, + "codeIataCity": "WAC", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 7.166667, + "longitudeCity": 37.166668, + "nameCity": "Waca", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "3", + "cityId": 8030, + "codeIataCity": "WAD", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -17.45, + "longitudeCity": 47.516666, + "nameCity": "Andriamena", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "3", + "cityId": 8031, + "codeIataCity": "WAE", + "codeIso2Country": "SA", + "geonameId": 0, + "latitudeCity": 20.498444, + "longitudeCity": 45.20445, + "nameCity": "Wadi Ad Dawasir", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "5", + "cityId": 8032, + "codeIataCity": "WAF", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 32.333332, + "longitudeCity": 69.53333, + "nameCity": "Wana", + "timezone": "Asia/Karachi" + }, + { + "GMT": "12", + "cityId": 8033, + "codeIataCity": "WAG", + "codeIso2Country": "NZ", + "geonameId": 2179670, + "latitudeCity": -39.960922, + "longitudeCity": 175.02444, + "nameCity": "Wanganui", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-6", + "cityId": 8034, + "codeIataCity": "WAH", + "codeIso2Country": "US", + "geonameId": 5059163, + "latitudeCity": 46.266666, + "longitudeCity": -96.6, + "nameCity": "Wahpeton", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 8035, + "codeIataCity": "WAI", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -14.916667, + "longitudeCity": 47.95, + "nameCity": "Antsohihy", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "10", + "cityId": 8036, + "codeIataCity": "WAJ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.8, + "longitudeCity": 143.26666, + "nameCity": "Wawoi Falls", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 8037, + "codeIataCity": "WAK", + "codeIso2Country": "MG", + "geonameId": 1072879, + "latitudeCity": -22.3, + "longitudeCity": 44.533333, + "nameCity": "Ankazoabo", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-5", + "cityId": 8038, + "codeIataCity": "WAL", + "codeIso2Country": "US", + "geonameId": 4752495, + "latitudeCity": 37.933334, + "longitudeCity": -75.38333, + "nameCity": "Chincoteague", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 8039, + "codeIataCity": "WAM", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -17.8, + "longitudeCity": 48.433334, + "nameCity": "Ambatondrazaka", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "10", + "cityId": 8040, + "codeIataCity": "WAN", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -25.366667, + "longitudeCity": 141.93333, + "nameCity": "Waverney", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 8041, + "codeIataCity": "WAO", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.495086, + "longitudeCity": 144.8243, + "nameCity": "Wabo", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-4", + "cityId": 8042, + "codeIataCity": "WAP", + "codeIso2Country": "CL", + "geonameId": 3889223, + "latitudeCity": -43.61667, + "longitudeCity": -71.8, + "nameCity": "Alto Palena", + "timezone": "America/Santiago" + }, + { + "GMT": "3", + "cityId": 8043, + "codeIataCity": "WAQ", + "codeIso2Country": "MG", + "geonameId": 1069579, + "latitudeCity": -18.7, + "longitudeCity": 44.61667, + "nameCity": "Antsalova", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "9", + "cityId": 8044, + "codeIataCity": "WAR", + "codeIso2Country": "ID", + "geonameId": 2082600, + "latitudeCity": -3.116667, + "longitudeCity": 140.88333, + "nameCity": "Waris", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-5", + "cityId": 8045, + "codeIataCity": "WAS", + "codeIso2Country": "US", + "geonameId": 4140963, + "latitudeCity": 38.895112, + "longitudeCity": -77.036366, + "nameCity": "Washington", + "timezone": "America/New_York" + }, + { + "GMT": "0", + "cityId": 8046, + "codeIataCity": "WAT", + "codeIso2Country": "IE", + "geonameId": 2960992, + "latitudeCity": 52.188866, + "longitudeCity": -7.080082, + "nameCity": "Waterford", + "timezone": "Europe/Dublin" + }, + { + "GMT": "10", + "cityId": 8047, + "codeIataCity": "WAU", + "codeIso2Country": "AU", + "geonameId": 2144332, + "latitudeCity": -31.466667, + "longitudeCity": 152.75, + "nameCity": "Wauchope", + "timezone": "Australia/Sydney" + }, + { + "GMT": "9.30", + "cityId": 8048, + "codeIataCity": "WAV", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.483334, + "longitudeCity": 130.95, + "nameCity": "Wave Hill", + "timezone": "Australia/Darwin" + }, + { + "GMT": "1", + "cityId": 8049, + "codeIataCity": "WAW", + "codeIso2Country": "PL", + "geonameId": 756135, + "latitudeCity": 52.170906, + "longitudeCity": 20.97329, + "nameCity": "Warsaw", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "2", + "cityId": 8050, + "codeIataCity": "WAX", + "codeIso2Country": "LY", + "geonameId": 0, + "latitudeCity": 51.216667, + "longitudeCity": -55.38333, + "nameCity": "Zwara", + "timezone": "Africa/Tripoli" + }, + { + "GMT": "-5", + "cityId": 8051, + "codeIataCity": "WAY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.75, + "longitudeCity": -77.583336, + "nameCity": "Waynesburg", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 8052, + "codeIataCity": "WAZ", + "codeIso2Country": "AU", + "geonameId": 2144502, + "latitudeCity": -28.15, + "longitudeCity": 151.95, + "nameCity": "Warwick", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "9", + "cityId": 8053, + "codeIataCity": "WBA", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -2.816667, + "longitudeCity": 129.48334, + "nameCity": "Wahai", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-9", + "cityId": 8054, + "codeIataCity": "WBB", + "codeIso2Country": "US", + "geonameId": 5875125, + "latitudeCity": 63.51936, + "longitudeCity": -162.28873, + "nameCity": "Stebbins", + "timezone": "America/Anchorage" + }, + { + "GMT": "10", + "cityId": 8055, + "codeIataCity": "WBC", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -9.316667, + "longitudeCity": 150.35, + "nameCity": "Wapolu", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "3", + "cityId": 8056, + "codeIataCity": "WBD", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -15.2, + "longitudeCity": 48.483334, + "nameCity": "Befandriana", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "3", + "cityId": 8057, + "codeIataCity": "WBE", + "codeIso2Country": "MG", + "geonameId": 1068670, + "latitudeCity": -14.533333, + "longitudeCity": 48.7, + "nameCity": "Bealanana", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "1", + "cityId": 8058, + "codeIataCity": "WBG", + "codeIso2Country": "DE", + "geonameId": 2838634, + "latitudeCity": 54.45, + "longitudeCity": 9.516667, + "nameCity": "Schleswig-jagel", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "cityId": 8059, + "codeIataCity": "WBK", + "codeIso2Country": "US", + "geonameId": 4985180, + "latitudeCity": 44.2466, + "longitudeCity": -84.18684, + "nameCity": "West Branch", + "timezone": "America/Detroit" + }, + { + "GMT": "10", + "cityId": 8060, + "codeIataCity": "WBM", + "codeIso2Country": "PG", + "geonameId": 2083852, + "latitudeCity": -5.616667, + "longitudeCity": 143.91667, + "nameCity": "Wapenamanda", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 8061, + "codeIataCity": "WBN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.466667, + "longitudeCity": -71.15, + "nameCity": "Woburn", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 8062, + "codeIataCity": "WBO", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -21.6, + "longitudeCity": 45.13333, + "nameCity": "Beroroha", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-9", + "cityId": 8063, + "codeIataCity": "WBQ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 66.36222, + "longitudeCity": -147.40834, + "nameCity": "Beaver", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 8064, + "codeIataCity": "WBR", + "codeIso2Country": "US", + "geonameId": 4986020, + "latitudeCity": 43.7, + "longitudeCity": -85.48333, + "nameCity": "Big Rapids", + "timezone": "America/Detroit" + }, + { + "GMT": "-7", + "cityId": 8065, + "codeIataCity": "WBU", + "codeIso2Country": "US", + "geonameId": 5574991, + "latitudeCity": 40.014986, + "longitudeCity": -105.270546, + "nameCity": "Boulder", + "timezone": "America/Denver" + }, + { + "GMT": "-4", + "cityId": 8066, + "codeIataCity": "WCA", + "codeIso2Country": "CL", + "geonameId": 3874453, + "latitudeCity": -42.466667, + "longitudeCity": -73.8, + "nameCity": "Castro", + "timezone": "America/Santiago" + }, + { + "GMT": "-4", + "cityId": 8067, + "codeIataCity": "WCH", + "codeIso2Country": "CL", + "geonameId": 3874453, + "latitudeCity": -42.916668, + "longitudeCity": -72.71667, + "nameCity": "Chaiten", + "timezone": "America/Santiago" + }, + { + "GMT": "-9", + "cityId": 8068, + "codeIataCity": "WCR", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 67.505554, + "longitudeCity": -148.5, + "nameCity": "Chandalar", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "cityId": 8069, + "codeIataCity": "WDA", + "codeIso2Country": "YE", + "geonameId": 0, + "latitudeCity": 14.866667, + "longitudeCity": 45.55, + "nameCity": "Wadi Ain", + "timezone": "Asia/Aden" + }, + { + "GMT": "-9", + "cityId": 8070, + "codeIataCity": "WDB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 55.583332, + "longitudeCity": -131.75, + "nameCity": "Deep Bay", + "timezone": "America/Sitka" + }, + { + "GMT": "-6", + "cityId": 8071, + "codeIataCity": "WDG", + "codeIso2Country": "US", + "geonameId": 4535961, + "latitudeCity": 36.395589, + "longitudeCity": -97.878391, + "nameCity": "Enid", + "timezone": "America/Chicago" + }, + { + "GMT": "2", + "cityId": 8072, + "codeIataCity": "WDH", + "codeIso2Country": "NA", + "geonameId": 3352136, + "latitudeCity": -22.558904, + "longitudeCity": 17.082481, + "nameCity": "Windhoek", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "10", + "cityId": 8073, + "codeIataCity": "WDI", + "codeIso2Country": "AU", + "geonameId": 2143180, + "latitudeCity": -26.333332, + "longitudeCity": 151.81667, + "nameCity": "Wondai", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-8", + "cityId": 8074, + "codeIataCity": "WDN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 48.716667, + "longitudeCity": -123.03333, + "nameCity": "Waldron Island", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-5", + "cityId": 8075, + "codeIataCity": "WDR", + "codeIso2Country": "US", + "geonameId": 4180439, + "latitudeCity": 33.983334, + "longitudeCity": -83.71667, + "nameCity": "Winder", + "timezone": "America/New_York" + }, + { + "GMT": "-6", + "cityId": 8076, + "codeIataCity": "WEA", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 32.766666, + "longitudeCity": -97.8, + "nameCity": "Weatherford", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 8077, + "codeIataCity": "WEC", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 49.2, + "longitudeCity": 9.925, + "nameCity": "Wenchang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "cityId": 8078, + "codeIataCity": "WED", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -10.1, + "longitudeCity": 150.08333, + "nameCity": "Wedau", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 8079, + "codeIataCity": "WEF", + "codeIso2Country": "CN", + "geonameId": 1791681, + "latitudeCity": 36.641075, + "longitudeCity": 119.11347, + "nameCity": "Weifang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 8080, + "codeIataCity": "WEH", + "codeIso2Country": "CN", + "geonameId": 1791673, + "latitudeCity": 37.18814, + "longitudeCity": 122.23607, + "nameCity": "Weihai", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "cityId": 8081, + "codeIataCity": "WEI", + "codeIso2Country": "AU", + "geonameId": 2144209, + "latitudeCity": -12.681317, + "longitudeCity": 141.9247, + "nameCity": "Weipa", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "cityId": 8082, + "codeIataCity": "WEL", + "codeIso2Country": "ZA", + "geonameId": 968477, + "latitudeCity": -28.0, + "longitudeCity": 26.75, + "nameCity": "Welkom", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "10", + "cityId": 8083, + "codeIataCity": "WEP", + "codeIso2Country": "PG", + "geonameId": 2083621, + "latitudeCity": -10.066667, + "longitudeCity": 148.16667, + "nameCity": "Weam", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "9", + "cityId": 8084, + "codeIataCity": "WET", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -4.166667, + "longitudeCity": 135.83333, + "nameCity": "Wagethe", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "10", + "cityId": 8085, + "codeIataCity": "WEW", + "codeIso2Country": "AU", + "geonameId": 2156927, + "latitudeCity": -30.233334, + "longitudeCity": 149.43333, + "nameCity": "Wee Waa", + "timezone": "Australia/Sydney" + }, + { + "GMT": "0", + "cityId": 8086, + "codeIataCity": "WFD", + "codeIso2Country": "GB", + "geonameId": 0, + "latitudeCity": 53.338055, + "longitudeCity": -2.148889, + "nameCity": "Woodford", + "timezone": "Europe/London" + }, + { + "GMT": "3", + "cityId": 8087, + "codeIataCity": "WFI", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -21.466667, + "longitudeCity": 47.083332, + "nameCity": "Fianarantsoa", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-5", + "cityId": 8088, + "codeIataCity": "WFK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 47.35, + "longitudeCity": -68.333336, + "nameCity": "Frenchville", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 8089, + "codeIataCity": "WGA", + "codeIso2Country": "AU", + "geonameId": 2145110, + "latitudeCity": -35.15992, + "longitudeCity": 147.46626, + "nameCity": "Wagga Wagga", + "timezone": "Australia/Sydney" + }, + { + "GMT": "5", + "cityId": 8090, + "codeIataCity": "WGB", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 30.0, + "longitudeCity": 73.25, + "nameCity": "Bahawalnagar", + "timezone": "Asia/Karachi" + }, + { + "GMT": "5.30", + "cityId": 8091, + "codeIataCity": "WGC", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 17.916668, + "longitudeCity": 79.6, + "nameCity": "Warangal", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "10", + "cityId": 8092, + "codeIataCity": "WGE", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -30.033333, + "longitudeCity": 148.13333, + "nameCity": "Walgett", + "timezone": "Australia/Sydney" + }, + { + "GMT": "12", + "cityId": 8093, + "codeIataCity": "WGN", + "codeIso2Country": "NZ", + "geonameId": 0, + "latitudeCity": -36.266945, + "longitudeCity": 174.1, + "nameCity": "Waitangi", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-5", + "cityId": 8094, + "codeIataCity": "WGO", + "codeIso2Country": "US", + "geonameId": 4140963, + "latitudeCity": 39.14111, + "longitudeCity": -78.14278, + "nameCity": "Winchester", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 8095, + "codeIataCity": "WGP", + "codeIso2Country": "ID", + "geonameId": 1622318, + "latitudeCity": -9.666667, + "longitudeCity": 120.3, + "nameCity": "Waingapu", + "timezone": "Asia/Makassar" + }, + { + "GMT": "10", + "cityId": 8096, + "codeIataCity": "WGT", + "codeIso2Country": "AU", + "geonameId": 2144764, + "latitudeCity": -36.36667, + "longitudeCity": 146.33333, + "nameCity": "Wangaratta", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "10", + "cityId": 8097, + "codeIataCity": "WGU", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.8, + "longitudeCity": 146.8, + "nameCity": "Wagau", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 8098, + "codeIataCity": "WGY", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": 0.516667, + "longitudeCity": 10.433333, + "nameCity": "Wagny", + "timezone": "Africa/Libreville" + }, + { + "GMT": "-9", + "cityId": 8099, + "codeIataCity": "WHD", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 55.916668, + "longitudeCity": -130.08333, + "nameCity": "Hyder", + "timezone": "America/Sitka" + }, + { + "GMT": "3", + "cityId": 8100, + "codeIataCity": "WHF", + "codeIso2Country": "SD", + "geonameId": 0, + "latitudeCity": 21.75, + "longitudeCity": 31.5, + "nameCity": "Wadi Halfa", + "timezone": "Africa/Khartoum" + }, + { + "GMT": "12", + "cityId": 8101, + "codeIataCity": "WHK", + "codeIso2Country": "NZ", + "geonameId": 2208330, + "latitudeCity": -37.924675, + "longitudeCity": 176.91748, + "nameCity": "Whakatane", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "10", + "cityId": 8102, + "codeIataCity": "WHL", + "codeIso2Country": "AU", + "geonameId": 2144143, + "latitudeCity": -38.68889, + "longitudeCity": 146.45, + "nameCity": "Welshpool", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "12", + "cityId": 8103, + "codeIataCity": "WHO", + "codeIso2Country": "NZ", + "geonameId": 2190928, + "latitudeCity": -43.38333, + "longitudeCity": 170.18333, + "nameCity": "Franz Josef", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "0", + "cityId": 8104, + "codeIataCity": "WHS", + "codeIso2Country": "GB", + "geonameId": 2644605, + "latitudeCity": 60.36667, + "longitudeCity": -0.983333, + "nameCity": "Whalsay", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "cityId": 8105, + "codeIataCity": "WHT", + "codeIso2Country": "US", + "geonameId": 4699066, + "latitudeCity": 29.316668, + "longitudeCity": -96.1, + "nameCity": "Wharton", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 8106, + "codeIataCity": "WHU", + "codeIso2Country": "CN", + "geonameId": 1791236, + "latitudeCity": 31.366667, + "longitudeCity": 118.36667, + "nameCity": "Wuhu", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "cityId": 8107, + "codeIataCity": "WIB", + "codeIso2Country": "US", + "geonameId": 4540737, + "latitudeCity": 0.464563, + "longitudeCity": 101.446884, + "nameCity": "Wilbarger", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 8108, + "codeIataCity": "WIC", + "codeIso2Country": "GB", + "geonameId": 2633982, + "latitudeCity": 58.456944, + "longitudeCity": -3.086667, + "nameCity": "Wick", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 8109, + "codeIataCity": "WIE", + "codeIso2Country": "DE", + "geonameId": 2809346, + "latitudeCity": 50.083332, + "longitudeCity": 8.233333, + "nameCity": "Wiesbaden", + "timezone": "Europe/Berlin" + }, + { + "GMT": "12", + "cityId": 8110, + "codeIataCity": "WIK", + "codeIso2Country": "NZ", + "geonameId": 2193733, + "latitudeCity": -36.833332, + "longitudeCity": 175.08333, + "nameCity": "Surfdale", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "10", + "cityId": 8111, + "codeIataCity": "WIN", + "codeIso2Country": "AU", + "geonameId": 2143350, + "latitudeCity": -22.35, + "longitudeCity": 143.06667, + "nameCity": "Winton", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 8112, + "codeIataCity": "WIO", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -31.083332, + "longitudeCity": 143.55, + "nameCity": "Wilcannia", + "timezone": "Australia/Sydney" + }, + { + "GMT": "12", + "cityId": 8113, + "codeIataCity": "WIR", + "codeIso2Country": "NZ", + "geonameId": 2186313, + "latitudeCity": -39.033333, + "longitudeCity": 177.41667, + "nameCity": "Wairoa", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "8", + "cityId": 8114, + "codeIataCity": "WIT", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -22.266666, + "longitudeCity": 118.333336, + "nameCity": "Wittenoom", + "timezone": "Australia/Perth" + }, + { + "GMT": "10", + "cityId": 8115, + "codeIataCity": "WIU", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -4.666667, + "longitudeCity": 149.5, + "nameCity": "Witu", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "12", + "cityId": 8116, + "codeIataCity": "WJA", + "codeIso2Country": "MH", + "geonameId": 2080486, + "latitudeCity": 7.453653, + "longitudeCity": 168.55296, + "nameCity": "Woja", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-8", + "cityId": 8117, + "codeIataCity": "WJF", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 34.686785, + "longitudeCity": -118.154163, + "nameCity": "Lancaster", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "cityId": 8118, + "codeIataCity": "WJR", + "codeIso2Country": "KE", + "geonameId": 178443, + "latitudeCity": 1.766667, + "longitudeCity": 40.6, + "nameCity": "Wajir", + "timezone": "Africa/Nairobi" + }, + { + "GMT": "9", + "cityId": 8119, + "codeIataCity": "WJU", + "codeIso2Country": "KR", + "geonameId": 1835848, + "latitudeCity": 37.434166, + "longitudeCity": 127.95167, + "nameCity": "WonJu", + "timezone": "Asia/Seoul" + }, + { + "GMT": "12", + "cityId": 8120, + "codeIataCity": "WKA", + "codeIso2Country": "NZ", + "geonameId": 2184707, + "latitudeCity": -44.72336, + "longitudeCity": 169.24425, + "nameCity": "Wanaka", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "10", + "cityId": 8121, + "codeIataCity": "WKB", + "codeIso2Country": "AU", + "geonameId": 2148431, + "latitudeCity": -36.15, + "longitudeCity": 142.43333, + "nameCity": "Warracknabeal", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "2", + "cityId": 8122, + "codeIataCity": "WKI", + "codeIso2Country": "ZW", + "geonameId": 0, + "latitudeCity": -18.3625, + "longitudeCity": 26.518333, + "nameCity": "Hwange", + "timezone": "Africa/Harare" + }, + { + "GMT": "9", + "cityId": 8123, + "codeIataCity": "WKJ", + "codeIso2Country": "JP", + "geonameId": 2127515, + "latitudeCity": 45.39943, + "longitudeCity": 141.7974, + "nameCity": "Wakkanai", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-9", + "cityId": 8124, + "codeIataCity": "WKK", + "codeIso2Country": "US", + "geonameId": 5879134, + "latitudeCity": 59.27778, + "longitudeCity": -158.61111, + "nameCity": "Aleknagik", + "timezone": "America/Anchorage" + }, + { + "GMT": "-10", + "cityId": 8125, + "codeIataCity": "WKL", + "codeIso2Country": "US", + "geonameId": 5854410, + "latitudeCity": 19.85, + "longitudeCity": -156.33333, + "nameCity": "Waikoloa", + "timezone": "Pacific/Honolulu" + }, + { + "GMT": "10", + "cityId": 8126, + "codeIataCity": "WKN", + "codeIso2Country": "PG", + "geonameId": 2084041, + "latitudeCity": -5.866667, + "longitudeCity": 155.21666, + "nameCity": "Wakunai", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 8127, + "codeIataCity": "WKR", + "codeIso2Country": "BS", + "geonameId": 0, + "latitudeCity": 27.266666, + "longitudeCity": -78.4, + "nameCity": "Walker's Cay", + "timezone": "America/Nassau" + }, + { + "GMT": "8", + "cityId": 8128, + "codeIataCity": "WLA", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -19.783333, + "longitudeCity": 120.666664, + "nameCity": "Wallal", + "timezone": "Australia/Perth" + }, + { + "GMT": "-9", + "cityId": 8129, + "codeIataCity": "WLB", + "codeIso2Country": "US", + "geonameId": 5554818, + "latitudeCity": 56.291668, + "longitudeCity": -133.65834, + "nameCity": "Labouchere Bay", + "timezone": "America/Juneau" + }, + { + "GMT": "10", + "cityId": 8130, + "codeIataCity": "WLC", + "codeIso2Country": "AU", + "geonameId": 2145059, + "latitudeCity": -30.983334, + "longitudeCity": 151.6, + "nameCity": "Walcha", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "cityId": 8131, + "codeIataCity": "WLD", + "codeIso2Country": "US", + "geonameId": 4281730, + "latitudeCity": 37.166943, + "longitudeCity": -97.05028, + "nameCity": "Winfield", + "timezone": "America/Chicago" + }, + { + "GMT": "12", + "cityId": 8132, + "codeIataCity": "WLG", + "codeIso2Country": "NZ", + "geonameId": 2179537, + "latitudeCity": -41.329037, + "longitudeCity": 174.81216, + "nameCity": "Wellington", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "11", + "cityId": 8133, + "codeIataCity": "WLH", + "codeIso2Country": "VU", + "geonameId": 2136150, + "latitudeCity": -15.416667, + "longitudeCity": 167.7, + "nameCity": "Walaha", + "timezone": "Pacific/Efate" + }, + { + "GMT": "-9", + "cityId": 8134, + "codeIataCity": "WLK", + "codeIso2Country": "US", + "geonameId": 5873663, + "latitudeCity": 66.602776, + "longitudeCity": -159.98334, + "nameCity": "Selawik", + "timezone": "America/Anchorage" + }, + { + "GMT": "9.30", + "cityId": 8135, + "codeIataCity": "WLL", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -17.616667, + "longitudeCity": 137.91667, + "nameCity": "Wollogorang", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-5", + "cityId": 8136, + "codeIataCity": "WLM", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.385277, + "longitudeCity": -71.25139, + "nameCity": "Waltham", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 8137, + "codeIataCity": "WLN", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 55.86667, + "longitudeCity": -133.21666, + "nameCity": "Little Naukati", + "timezone": "America/Sitka" + }, + { + "GMT": "9.30", + "cityId": 8138, + "codeIataCity": "WLO", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -16.633333, + "longitudeCity": 129.31667, + "nameCity": "Waterloo", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-9", + "cityId": 8139, + "codeIataCity": "WLR", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 55.666668, + "longitudeCity": -131.66667, + "nameCity": "Loring", + "timezone": "America/Sitka" + }, + { + "GMT": "12", + "cityId": 8140, + "codeIataCity": "WLS", + "codeIso2Country": "WF", + "geonameId": 0, + "latitudeCity": -13.233333, + "longitudeCity": -176.16667, + "nameCity": "Wallis Island", + "timezone": "Pacific/Wallis" + }, + { + "GMT": "-8", + "cityId": 8141, + "codeIataCity": "WLW", + "codeIso2Country": "US", + "geonameId": 5409777, + "latitudeCity": 39.88333, + "longitudeCity": -122.35, + "nameCity": "Willows", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "cityId": 8142, + "codeIataCity": "WMA", + "codeIso2Country": "MG", + "geonameId": 1061028, + "latitudeCity": -15.833333, + "longitudeCity": 48.833332, + "nameCity": "Mandritsara", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "10", + "cityId": 8143, + "codeIataCity": "WMB", + "codeIso2Country": "AU", + "geonameId": 2144528, + "latitudeCity": -38.295, + "longitudeCity": 142.44833, + "nameCity": "Warrnambool", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "-8", + "cityId": 8144, + "codeIataCity": "WMC", + "codeIso2Country": "US", + "geonameId": 5710360, + "latitudeCity": 40.966667, + "longitudeCity": -117.73333, + "nameCity": "Winnemucca", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "cityId": 8145, + "codeIataCity": "WMD", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -21.033333, + "longitudeCity": 44.95, + "nameCity": "Mandabe", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "8", + "cityId": 8146, + "codeIataCity": "WME", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -27.287222, + "longitudeCity": 120.549446, + "nameCity": "Mount Keith", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "cityId": 8147, + "codeIataCity": "WMH", + "codeIso2Country": "US", + "geonameId": 4123037, + "latitudeCity": 36.333332, + "longitudeCity": -92.38333, + "nameCity": "Mountain Home", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 8148, + "codeIataCity": "WMI", + "codeIso2Country": "PL", + "geonameId": 756135, + "latitudeCity": 52.45111, + "longitudeCity": 20.651667, + "nameCity": "Nowy Dwor Mazowiecki", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "-9", + "cityId": 8149, + "codeIataCity": "WMK", + "codeIso2Country": "US", + "geonameId": 5554428, + "latitudeCity": 55.733334, + "longitudeCity": -132.18333, + "nameCity": "Meyers Chuck", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "cityId": 8150, + "codeIataCity": "WML", + "codeIso2Country": "MG", + "geonameId": 1061831, + "latitudeCity": -20.35, + "longitudeCity": 45.55, + "nameCity": "Malaimbandy", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "3", + "cityId": 8151, + "codeIataCity": "WMN", + "codeIso2Country": "MG", + "geonameId": 1060283, + "latitudeCity": -15.433333, + "longitudeCity": 49.683334, + "nameCity": "Maroantsetra", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-9", + "cityId": 8152, + "codeIataCity": "WMO", + "codeIso2Country": "US", + "geonameId": 5877986, + "latitudeCity": 64.68694, + "longitudeCity": -163.40666, + "nameCity": "White Mountain", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "cityId": 8153, + "codeIataCity": "WMP", + "codeIso2Country": "MG", + "geonameId": 1061700, + "latitudeCity": -16.075, + "longitudeCity": 47.59722, + "nameCity": "Mampikony", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "3", + "cityId": 8154, + "codeIataCity": "WMR", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -16.161943, + "longitudeCity": 49.770557, + "nameCity": "Mananara", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "3", + "cityId": 8155, + "codeIataCity": "WMV", + "codeIso2Country": "MG", + "geonameId": 1062869, + "latitudeCity": -16.45, + "longitudeCity": 46.566666, + "nameCity": "Madirovalo", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "9", + "cityId": 8156, + "codeIataCity": "WMX", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -4.116667, + "longitudeCity": 138.93333, + "nameCity": "Wamena", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-9", + "cityId": 8157, + "codeIataCity": "WNA", + "codeIso2Country": "US", + "geonameId": 5869637, + "latitudeCity": 60.7, + "longitudeCity": -162.11667, + "nameCity": "Napakiak", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 8158, + "codeIataCity": "WNC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 55.854168, + "longitudeCity": -133.225, + "nameCity": "Tuxekan Island", + "timezone": "America/Anchorage" + }, + { + "GMT": "8", + "cityId": 8159, + "codeIataCity": "WND", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -28.266666, + "longitudeCity": 121.833336, + "nameCity": "Windarra", + "timezone": "Australia/Perth" + }, + { + "GMT": "1", + "cityId": 8160, + "codeIataCity": "WNE", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -1.35, + "longitudeCity": 9.333333, + "nameCity": "Wora Na Ye", + "timezone": "Africa/Libreville" + }, + { + "GMT": "8", + "cityId": 8161, + "codeIataCity": "WNH", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 23.374907, + "longitudeCity": 104.24256, + "nameCity": "Wenshan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "cityId": 8162, + "codeIataCity": "WNN", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.916668, + "longitudeCity": -89.166664, + "nameCity": "Wunnummin Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "8", + "cityId": 8163, + "codeIataCity": "WNP", + "codeIso2Country": "PH", + "geonameId": 1698829, + "latitudeCity": 13.587222, + "longitudeCity": 123.27, + "nameCity": "Naga", + "timezone": "Asia/Manila" + }, + { + "GMT": "10", + "cityId": 8164, + "codeIataCity": "WNR", + "codeIso2Country": "AU", + "geonameId": 2143412, + "latitudeCity": -25.416668, + "longitudeCity": 142.66667, + "nameCity": "Windorah", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "5", + "cityId": 8165, + "codeIataCity": "WNS", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 26.219444, + "longitudeCity": 68.39222, + "nameCity": "Nawabshah", + "timezone": "Asia/Karachi" + }, + { + "GMT": "10", + "cityId": 8166, + "codeIataCity": "WNU", + "codeIso2Country": "PG", + "geonameId": 2083867, + "latitudeCity": -4.9, + "longitudeCity": 145.31667, + "nameCity": "Wanuma", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 8167, + "codeIataCity": "WNZ", + "codeIso2Country": "CN", + "geonameId": 1791388, + "latitudeCity": 27.91566, + "longitudeCity": 120.84738, + "nameCity": "Wenzhou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "cityId": 8168, + "codeIataCity": "WOA", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -6.8, + "longitudeCity": 145.88333, + "nameCity": "Wonenara", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 8169, + "codeIataCity": "WOD", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.86667, + "longitudeCity": -90.083336, + "nameCity": "Wood River", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 8170, + "codeIataCity": "WOE", + "codeIso2Country": "NL", + "geonameId": 2749223, + "latitudeCity": 51.435833, + "longitudeCity": 4.335, + "nameCity": "Woensdrecht", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "-4", + "cityId": 8171, + "codeIataCity": "WOK", + "codeIso2Country": "VE", + "geonameId": 0, + "latitudeCity": 5.25, + "longitudeCity": -61.733334, + "nameCity": "Wonken", + "timezone": "America/Caracas" + }, + { + "GMT": "10", + "cityId": 8172, + "codeIataCity": "WOL", + "codeIso2Country": "AU", + "geonameId": 2147714, + "latitudeCity": -34.566666, + "longitudeCity": 150.78334, + "nameCity": "Wollongong", + "timezone": "Australia/Sydney" + }, + { + "GMT": "10", + "cityId": 8173, + "codeIataCity": "WON", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -18.583332, + "longitudeCity": 140.9, + "nameCity": "Wondoola", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-9", + "cityId": 8174, + "codeIataCity": "WOO", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 65.333336, + "longitudeCity": -143.53334, + "nameCity": "Woodchopper", + "timezone": "America/Anchorage" + }, + { + "GMT": "3", + "cityId": 8175, + "codeIataCity": "WOR", + "codeIso2Country": "MG", + "geonameId": 1071712, + "latitudeCity": -14.883333, + "longitudeCity": 47.283333, + "nameCity": "Ankorefo", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "8.30", + "cityId": 8176, + "codeIataCity": "WOS", + "codeIso2Country": "KP", + "geonameId": 0, + "latitudeCity": 50.216667, + "longitudeCity": -126.61667, + "nameCity": "Wonsan", + "timezone": "Asia/Pyongyang" + }, + { + "GMT": "8", + "cityId": 8177, + "codeIataCity": "WOT", + "codeIso2Country": "TW", + "geonameId": 1668355, + "latitudeCity": 23.416668, + "longitudeCity": 119.5, + "nameCity": "Wonan", + "timezone": "Asia/Taipei" + }, + { + "GMT": "-9", + "cityId": 8178, + "codeIataCity": "WOW", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 61.833332, + "longitudeCity": -150.16667, + "nameCity": "Willow", + "timezone": "America/Anchorage" + }, + { + "GMT": "-4", + "cityId": 8179, + "codeIataCity": "WPA", + "codeIso2Country": "CL", + "geonameId": 3874997, + "latitudeCity": -45.4, + "longitudeCity": -72.7, + "nameCity": "Puerto Aisen", + "timezone": "America/Santiago" + }, + { + "GMT": "3", + "cityId": 8180, + "codeIataCity": "WPB", + "codeIso2Country": "MG", + "geonameId": 1057995, + "latitudeCity": -15.55, + "longitudeCity": 47.666668, + "nameCity": "Port Berge", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-7", + "cityId": 8181, + "codeIataCity": "WPC", + "codeIso2Country": "CA", + "geonameId": 6104841, + "latitudeCity": 49.483334, + "longitudeCity": -113.95, + "nameCity": "Pincher Creek", + "timezone": "America/Edmonton" + }, + { + "GMT": "10", + "cityId": 8182, + "codeIataCity": "WPK", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -16.633333, + "longitudeCity": 144.0, + "nameCity": "Wrotham Park", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-8", + "cityId": 8183, + "codeIataCity": "WPL", + "codeIso2Country": "CA", + "geonameId": 5914132, + "latitudeCity": 50.183334, + "longitudeCity": -124.4, + "nameCity": "Powell Lake", + "timezone": "America/Vancouver" + }, + { + "GMT": "10", + "cityId": 8184, + "codeIataCity": "WPM", + "codeIso2Country": "PG", + "geonameId": 2083452, + "latitudeCity": -8.816667, + "longitudeCity": 143.03334, + "nameCity": "Wipim", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "cityId": 8185, + "codeIataCity": "WPO", + "codeIso2Country": "US", + "geonameId": 5550409, + "latitudeCity": 38.86667, + "longitudeCity": -107.6, + "nameCity": "Paonia", + "timezone": "America/Denver" + }, + { + "GMT": "-4", + "cityId": 8186, + "codeIataCity": "WPR", + "codeIso2Country": "CL", + "geonameId": 3874787, + "latitudeCity": -53.25, + "longitudeCity": -70.333336, + "nameCity": "Porvenir", + "timezone": "America/Santiago" + }, + { + "GMT": "-4", + "cityId": 8187, + "codeIataCity": "WPU", + "codeIso2Country": "CL", + "geonameId": 3874926, + "latitudeCity": -54.95, + "longitudeCity": -68.25, + "nameCity": "Puerto Williams", + "timezone": "America/Santiago" + }, + { + "GMT": "3", + "cityId": 8188, + "codeIataCity": "WRA", + "codeIso2Country": "ET", + "geonameId": 326282, + "latitudeCity": 6.966667, + "longitudeCity": 45.333332, + "nameCity": "Warder", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "12", + "cityId": 8189, + "codeIataCity": "WRE", + "codeIso2Country": "NZ", + "geonameId": 6230919, + "latitudeCity": -35.76742, + "longitudeCity": 174.36403, + "nameCity": "Whangarei", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-9", + "cityId": 8190, + "codeIataCity": "WRG", + "codeIso2Country": "US", + "geonameId": 5558586, + "latitudeCity": 56.484444, + "longitudeCity": -132.36667, + "nameCity": "Wrangell", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 8191, + "codeIataCity": "WRH", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 68.25, + "longitudeCity": -162.28334, + "nameCity": "Wrench Creek", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 8192, + "codeIataCity": "WRI", + "codeIso2Country": "US", + "geonameId": 5098132, + "latitudeCity": 40.155308, + "longitudeCity": -74.65017, + "nameCity": "Wrightstown", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 8193, + "codeIataCity": "WRL", + "codeIso2Country": "US", + "geonameId": 5843495, + "latitudeCity": 43.9675, + "longitudeCity": -107.95306, + "nameCity": "Worland", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 8194, + "codeIataCity": "WRO", + "codeIso2Country": "PL", + "geonameId": 3081368, + "latitudeCity": 51.10482, + "longitudeCity": 16.899403, + "nameCity": "Wroclaw", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "8", + "cityId": 8195, + "codeIataCity": "WRW", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -20.866667, + "longitudeCity": 120.71667, + "nameCity": "Warrawagine", + "timezone": "Australia/Perth" + }, + { + "GMT": "0", + "cityId": 8196, + "codeIataCity": "WRY", + "codeIso2Country": "GB", + "geonameId": 0, + "latitudeCity": 59.35, + "longitudeCity": -2.95, + "nameCity": "Westray", + "timezone": "Europe/London" + }, + { + "GMT": "5.30", + "cityId": 8197, + "codeIataCity": "WRZ", + "codeIso2Country": "LK", + "geonameId": 1226371, + "latitudeCity": 6.251667, + "longitudeCity": 81.238335, + "nameCity": "Wirawila", + "timezone": "Asia/Colombo" + }, + { + "GMT": "10", + "cityId": 8198, + "codeIataCity": "WSA", + "codeIso2Country": "PG", + "geonameId": 2083705, + "latitudeCity": -8.283333, + "longitudeCity": 142.86667, + "nameCity": "Wasua", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 8199, + "codeIataCity": "WSB", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 39.36667, + "longitudeCity": -119.73333, + "nameCity": "Steamboat Bay", + "timezone": "America/Anchorage" + }, + { + "GMT": "-7", + "cityId": 8200, + "codeIataCity": "WSD", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 32.38333, + "longitudeCity": -106.48333, + "nameCity": "White Sands", + "timezone": "America/Denver" + }, + { + "GMT": "-9", + "cityId": 8201, + "codeIataCity": "WSF", + "codeIso2Country": "US", + "geonameId": 5861897, + "latitudeCity": 54.583332, + "longitudeCity": -164.91667, + "nameCity": "Sarichef", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 8202, + "codeIataCity": "WSG", + "codeIso2Country": "US", + "geonameId": 5218069, + "latitudeCity": 40.166668, + "longitudeCity": -80.25, + "nameCity": "Washington", + "timezone": "America/New_York" + }, + { + "GMT": "-5", + "cityId": 8203, + "codeIataCity": "WSH", + "codeIso2Country": "US", + "geonameId": 5138022, + "latitudeCity": 40.75, + "longitudeCity": -72.833336, + "nameCity": "Shirley", + "timezone": "America/New_York" + }, + { + "GMT": "-9", + "cityId": 8204, + "codeIataCity": "WSJ", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 57.73111, + "longitudeCity": -153.31833, + "nameCity": "San Juan", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 8205, + "codeIataCity": "WSM", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 67.401665, + "longitudeCity": -150.11667, + "nameCity": "Wiseman", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 8206, + "codeIataCity": "WSN", + "codeIso2Country": "US", + "geonameId": 5874841, + "latitudeCity": 58.718613, + "longitudeCity": -156.93417, + "nameCity": "South Naknek", + "timezone": "America/Anchorage" + }, + { + "GMT": "-3", + "cityId": 8207, + "codeIataCity": "WSO", + "codeIso2Country": "SR", + "geonameId": 0, + "latitudeCity": 5.216667, + "longitudeCity": -57.183334, + "nameCity": "Washabo", + "timezone": "America/Paramaribo" + }, + { + "GMT": "-6", + "cityId": 8208, + "codeIataCity": "WSP", + "codeIso2Country": "NI", + "geonameId": 0, + "latitudeCity": 14.683333, + "longitudeCity": -84.01667, + "nameCity": "Waspam", + "timezone": "America/Managua" + }, + { + "GMT": "9", + "cityId": 8209, + "codeIataCity": "WSR", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -2.716667, + "longitudeCity": 134.5, + "nameCity": "Wasior", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-5", + "cityId": 8210, + "codeIataCity": "WST", + "codeIso2Country": "US", + "geonameId": 5225631, + "latitudeCity": 41.350193, + "longitudeCity": -71.8069, + "nameCity": "Westerly", + "timezone": "America/New_York" + }, + { + "GMT": "10", + "cityId": 8211, + "codeIataCity": "WSU", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.95, + "longitudeCity": 147.23334, + "nameCity": "Wasu", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "cityId": 8212, + "codeIataCity": "WSX", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 48.666668, + "longitudeCity": -122.88333, + "nameCity": "Westsound", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "10", + "cityId": 8213, + "codeIataCity": "WSY", + "codeIso2Country": "AU", + "geonameId": 6354936, + "latitudeCity": -20.502777, + "longitudeCity": 148.75278, + "nameCity": "Airlie Beach", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "12", + "cityId": 8214, + "codeIataCity": "WSZ", + "codeIso2Country": "NZ", + "geonameId": 2206900, + "latitudeCity": -41.74002, + "longitudeCity": 171.57858, + "nameCity": "Westport", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "3", + "cityId": 8215, + "codeIataCity": "WTA", + "codeIso2Country": "MG", + "geonameId": 1055953, + "latitudeCity": -17.483334, + "longitudeCity": 43.966667, + "nameCity": "Tambohorano", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-5", + "cityId": 8216, + "codeIataCity": "WTD", + "codeIso2Country": "BS", + "geonameId": 3571224, + "latitudeCity": 26.686111, + "longitudeCity": -78.97583, + "nameCity": "West End", + "timezone": "America/Nassau" + }, + { + "GMT": "12", + "cityId": 8217, + "codeIataCity": "WTE", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 9.45, + "longitudeCity": 170.26666, + "nameCity": "Wotje Island", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "-9", + "cityId": 8218, + "codeIataCity": "WTK", + "codeIso2Country": "US", + "geonameId": 5870091, + "latitudeCity": 67.56306, + "longitudeCity": -162.98416, + "nameCity": "Noatak", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 8219, + "codeIataCity": "WTL", + "codeIso2Country": "US", + "geonameId": 5876820, + "latitudeCity": 60.35, + "longitudeCity": -162.63333, + "nameCity": "Tuntutuliak", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "cityId": 8220, + "codeIataCity": "WTN", + "codeIso2Country": "GB", + "geonameId": 2633352, + "latitudeCity": 53.166668, + "longitudeCity": -0.516667, + "nameCity": "Waddington", + "timezone": "Europe/London" + }, + { + "GMT": "12", + "cityId": 8221, + "codeIataCity": "WTO", + "codeIso2Country": "MH", + "geonameId": 0, + "latitudeCity": 10.166667, + "longitudeCity": 166.03334, + "nameCity": "Wotho Island", + "timezone": "Pacific/Majuro" + }, + { + "GMT": "10", + "cityId": 8222, + "codeIataCity": "WTP", + "codeIso2Country": "PG", + "geonameId": 2083396, + "latitudeCity": -8.55, + "longitudeCity": 147.25, + "nameCity": "Woitape", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-7", + "cityId": 8223, + "codeIataCity": "WTR", + "codeIso2Country": "US", + "geonameId": 5309139, + "latitudeCity": 33.85, + "longitudeCity": -109.96667, + "nameCity": "White River", + "timezone": "America/Phoenix" + }, + { + "GMT": "3", + "cityId": 8224, + "codeIataCity": "WTS", + "codeIso2Country": "MG", + "geonameId": 1054463, + "latitudeCity": -18.757221, + "longitudeCity": 46.054443, + "nameCity": "Tsiroanomandidy", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "10", + "cityId": 8225, + "codeIataCity": "WTT", + "codeIso2Country": "PG", + "geonameId": 2083873, + "latitudeCity": -6.05, + "longitudeCity": 146.4, + "nameCity": "Wantoat", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "12", + "cityId": 8226, + "codeIataCity": "WTZ", + "codeIso2Country": "NZ", + "geonameId": 2179103, + "latitudeCity": -36.8313, + "longitudeCity": 175.678, + "nameCity": "Whitianga", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "8", + "cityId": 8227, + "codeIataCity": "WUA", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 39.794724, + "longitudeCity": 106.799164, + "nameCity": "Wu Hai", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9.30", + "cityId": 8228, + "codeIataCity": "WUD", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -33.016666, + "longitudeCity": 135.61945, + "nameCity": "Wudinna", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "10", + "cityId": 8229, + "codeIataCity": "WUG", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.3375, + "longitudeCity": 146.71834, + "nameCity": "Wau", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 8230, + "codeIataCity": "WUH", + "codeIso2Country": "CN", + "geonameId": 1791247, + "latitudeCity": 30.776598, + "longitudeCity": 114.209625, + "nameCity": "Wuhan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "10", + "cityId": 8231, + "codeIataCity": "WUM", + "codeIso2Country": "PG", + "geonameId": 2083700, + "latitudeCity": -6.05, + "longitudeCity": 149.33333, + "nameCity": "Wasum", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 8232, + "codeIataCity": "WUN", + "codeIso2Country": "AU", + "geonameId": 2058225, + "latitudeCity": -26.633333, + "longitudeCity": 120.21667, + "nameCity": "Wiluna", + "timezone": "Australia/Perth" + }, + { + "GMT": "8", + "cityId": 8233, + "codeIataCity": "WUS", + "codeIso2Country": "CN", + "geonameId": 1922014, + "latitudeCity": 27.716667, + "longitudeCity": 117.96667, + "nameCity": "Wuyishan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "cityId": 8234, + "codeIataCity": "WUU", + "codeIso2Country": "SS", + "geonameId": 0, + "latitudeCity": 7.746389, + "longitudeCity": 27.985277, + "nameCity": "Wau", + "timezone": "Africa/Juba" + }, + { + "GMT": "10", + "cityId": 8235, + "codeIataCity": "WUV", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -1.75, + "longitudeCity": 142.83333, + "nameCity": "Wuvulu Island", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "8", + "cityId": 8236, + "codeIataCity": "WUX", + "codeIso2Country": "CN", + "geonameId": 1790923, + "latitudeCity": 31.49289, + "longitudeCity": 120.42438, + "nameCity": "Wuxi", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 8237, + "codeIataCity": "WUZ", + "codeIso2Country": "CN", + "geonameId": 1790840, + "latitudeCity": 23.456062, + "longitudeCity": 111.25191, + "nameCity": "Wuzhou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "2", + "cityId": 8238, + "codeIataCity": "WVB", + "codeIso2Country": "NA", + "geonameId": 3359638, + "latitudeCity": -22.978611, + "longitudeCity": 14.517222, + "nameCity": "Walvis Bay", + "timezone": "Africa/Windhoek" + }, + { + "GMT": "-8", + "cityId": 8239, + "codeIataCity": "WVI", + "codeIso2Country": "US", + "geonameId": 5407529, + "latitudeCity": 36.916668, + "longitudeCity": -121.75, + "nameCity": "Watsonville", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "3", + "cityId": 8240, + "codeIataCity": "WVK", + "codeIso2Country": "MG", + "geonameId": 1061605, + "latitudeCity": -22.116667, + "longitudeCity": 48.016666, + "nameCity": "Manakara", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "-5", + "cityId": 8241, + "codeIataCity": "WVL", + "codeIso2Country": "US", + "geonameId": 4982236, + "latitudeCity": 44.53389, + "longitudeCity": -69.675835, + "nameCity": "Waterville", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 8242, + "codeIataCity": "WVN", + "codeIso2Country": "DE", + "geonameId": 2808720, + "latitudeCity": 53.533333, + "longitudeCity": 8.116667, + "nameCity": "Wilhelmshaven", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-9", + "cityId": 8243, + "codeIataCity": "WWA", + "codeIso2Country": "US", + "geonameId": 5877641, + "latitudeCity": 61.583332, + "longitudeCity": -149.43333, + "nameCity": "Wasilla", + "timezone": "America/Anchorage" + }, + { + "GMT": "-5", + "cityId": 8244, + "codeIataCity": "WWD", + "codeIso2Country": "US", + "geonameId": 4504856, + "latitudeCity": 39.00639, + "longitudeCity": -74.90889, + "nameCity": "Wildwood", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 8245, + "codeIataCity": "WWI", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -21.633333, + "longitudeCity": 121.23333, + "nameCity": "Woodie Woodie", + "timezone": "Australia/Perth" + }, + { + "GMT": "10", + "cityId": 8246, + "codeIataCity": "WWK", + "codeIso2Country": "PG", + "geonameId": 2083537, + "latitudeCity": -3.580034, + "longitudeCity": 143.66916, + "nameCity": "Wewak", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-9", + "cityId": 8247, + "codeIataCity": "WWP", + "codeIso2Country": "US", + "geonameId": 5558430, + "latitudeCity": 56.666668, + "longitudeCity": -133.83333, + "nameCity": "Whale Pass", + "timezone": "America/Anchorage" + }, + { + "GMT": "-6", + "cityId": 8248, + "codeIataCity": "WWR", + "codeIso2Country": "US", + "geonameId": 4556050, + "latitudeCity": 36.43611, + "longitudeCity": -99.52639, + "nameCity": "Woodward", + "timezone": "America/Chicago" + }, + { + "GMT": "-9", + "cityId": 8249, + "codeIataCity": "WWS", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Wildwood", + "timezone": "America/Anchorage" + }, + { + "GMT": "-9", + "cityId": 8250, + "codeIataCity": "WWT", + "codeIso2Country": "US", + "geonameId": 5869897, + "latitudeCity": 60.92278, + "longitudeCity": -164.6486, + "nameCity": "Newtok", + "timezone": "America/Nome" + }, + { + "GMT": "10", + "cityId": 8251, + "codeIataCity": "WWY", + "codeIso2Country": "AU", + "geonameId": 2143930, + "latitudeCity": -33.933334, + "longitudeCity": 147.25, + "nameCity": "West Wyalong", + "timezone": "Australia/Sydney" + }, + { + "GMT": "8", + "cityId": 8252, + "codeIataCity": "WXJ", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Wanning", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 8253, + "codeIataCity": "WXN", + "codeIso2Country": "CN", + "geonameId": 1791748, + "latitudeCity": 30.799679, + "longitudeCity": 108.42695, + "nameCity": "Wanxian", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9.30", + "cityId": 8254, + "codeIataCity": "WYA", + "codeIso2Country": "AU", + "geonameId": 2058430, + "latitudeCity": -33.05241, + "longitudeCity": 137.52197, + "nameCity": "Whyalla", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "-9", + "cityId": 8255, + "codeIataCity": "WYB", + "codeIso2Country": "US", + "geonameId": 5554428, + "latitudeCity": 55.916668, + "longitudeCity": -131.83333, + "nameCity": "Yes Bay", + "timezone": "America/Sitka" + }, + { + "GMT": "0", + "cityId": 8256, + "codeIataCity": "WYE", + "codeIso2Country": "SL", + "geonameId": 0, + "latitudeCity": 8.616667, + "longitudeCity": -11.058889, + "nameCity": "Yengema", + "timezone": "Africa/Freetown" + }, + { + "GMT": "8", + "cityId": 8257, + "codeIataCity": "WYN", + "codeIso2Country": "AU", + "geonameId": 2068110, + "latitudeCity": -15.507222, + "longitudeCity": 128.1375, + "nameCity": "Wyndham", + "timezone": "Australia/Perth" + }, + { + "GMT": "-7", + "cityId": 8258, + "codeIataCity": "WYS", + "codeIso2Country": "US", + "geonameId": 5685767, + "latitudeCity": 44.68667, + "longitudeCity": -111.10472, + "nameCity": "West Yellowstone", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 8259, + "codeIataCity": "XAH", + "codeIso2Country": "DK", + "geonameId": 2614030, + "latitudeCity": 56.1667, + "longitudeCity": 9.56667, + "nameCity": "Silkeborg", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "cityId": 8260, + "codeIataCity": "XAJ", + "codeIso2Country": "DK", + "geonameId": 2620279, + "latitudeCity": 57.58812, + "longitudeCity": 9.95922, + "nameCity": "Hirtshals", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-7", + "cityId": 8261, + "codeIataCity": "XAL", + "codeIso2Country": "MX", + "geonameId": 0, + "latitudeCity": 27.016666, + "longitudeCity": -108.933334, + "nameCity": "Alamos", + "timezone": "America/Hermosillo" + }, + { + "GMT": "-3", + "cityId": 8262, + "codeIataCity": "XAP", + "codeIso2Country": "BR", + "geonameId": 3466296, + "latitudeCity": -27.088612, + "longitudeCity": -52.629723, + "nameCity": "Chapeco", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "1", + "cityId": 8263, + "codeIataCity": "XAQ", + "codeIso2Country": "DK", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Bronderslev", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "0", + "cityId": 8264, + "codeIataCity": "XAR", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 14.233333, + "longitudeCity": -0.866667, + "nameCity": "Aribinda", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-3", + "cityId": 8265, + "codeIataCity": "XAU", + "codeIso2Country": "GF", + "geonameId": 0, + "latitudeCity": 3.616667, + "longitudeCity": -53.2, + "nameCity": "Saul", + "timezone": "America/Cayenne" + }, + { + "GMT": "-5", + "cityId": 8266, + "codeIataCity": "XAW", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Capreol", + "timezone": "America/Toronto" + }, + { + "GMT": "7", + "cityId": 8267, + "codeIataCity": "XAY", + "codeIso2Country": "LA", + "geonameId": 0, + "latitudeCity": 18.666668, + "longitudeCity": 104.71667, + "nameCity": "Xayabury", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-4", + "cityId": 8268, + "codeIataCity": "XAZ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 49.2832, + "longitudeCity": -54.9315, + "nameCity": "Campbellton", + "timezone": "America/Moncton" + }, + { + "GMT": "-8", + "cityId": 8269, + "codeIataCity": "XBB", + "codeIso2Country": "CA", + "geonameId": 5930890, + "latitudeCity": 50.0, + "longitudeCity": -123.0, + "nameCity": "Blubber Bay", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 8270, + "codeIataCity": "XBE", + "codeIso2Country": "CA", + "geonameId": 5896263, + "latitudeCity": 53.95, + "longitudeCity": -90.98333, + "nameCity": "Bearskin Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "0", + "cityId": 8271, + "codeIataCity": "XBG", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 12.983333, + "longitudeCity": -0.133333, + "nameCity": "Bogande", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "3.30", + "cityId": 8272, + "codeIataCity": "XBJ", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 32.89905, + "longitudeCity": 59.25499, + "nameCity": "Birjand", + "timezone": "Asia/Tehran" + }, + { + "GMT": "3", + "cityId": 8273, + "codeIataCity": "XBL", + "codeIso2Country": "ET", + "geonameId": 0, + "latitudeCity": 8.45, + "longitudeCity": 36.333332, + "nameCity": "Buno Bedelle", + "timezone": "Africa/Addis_Ababa" + }, + { + "GMT": "10", + "cityId": 8274, + "codeIataCity": "XBN", + "codeIso2Country": "PG", + "geonameId": 2099444, + "latitudeCity": -9.633333, + "longitudeCity": 149.3, + "nameCity": "Biniguni", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "cityId": 8275, + "codeIataCity": "XBO", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 12.65, + "longitudeCity": -0.566667, + "nameCity": "Boulsa", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-5", + "cityId": 8276, + "codeIataCity": "XBR", + "codeIso2Country": "CA", + "geonameId": 5909294, + "latitudeCity": 44.583332, + "longitudeCity": -75.683334, + "nameCity": "Brockville", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8277, + "codeIataCity": "XBW", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 42.65, + "longitudeCity": -80.82, + "nameCity": "Killineq", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "cityId": 8278, + "codeIataCity": "XCC", + "codeIso2Country": "FR", + "geonameId": 0, + "latitudeCity": 46.8, + "longitudeCity": 4.43333, + "nameCity": "Le Creusot/Montceau", + "timezone": "Europe/Paris" + }, + { + "GMT": "7", + "cityId": 8279, + "codeIataCity": "XCH", + "codeIso2Country": "CX", + "geonameId": 0, + "latitudeCity": -10.5, + "longitudeCity": 105.666664, + "nameCity": "Christmas Island", + "timezone": "Indian/Christmas" + }, + { + "GMT": "-5", + "cityId": 8280, + "codeIataCity": "XCI", + "codeIso2Country": "CA", + "geonameId": 5919569, + "latitudeCity": 48.4334, + "longitudeCity": -72.0658, + "nameCity": "Chambord", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "cityId": 8281, + "codeIataCity": "XCL", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 59.0, + "longitudeCity": -107.0, + "nameCity": "Cluff Lake", + "timezone": "America/Regina" + }, + { + "GMT": "-5", + "cityId": 8282, + "codeIataCity": "XCM", + "codeIso2Country": "CA", + "geonameId": 6051123, + "latitudeCity": 42.4, + "longitudeCity": -82.183334, + "nameCity": "Chatham", + "timezone": "America/Toronto" + }, + { + "GMT": "8", + "cityId": 8283, + "codeIataCity": "XCN", + "codeIso2Country": "PH", + "geonameId": 1716834, + "latitudeCity": 12.016667, + "longitudeCity": 120.2, + "nameCity": "Puerto Princesa City", + "timezone": "Asia/Manila" + }, + { + "GMT": "10", + "cityId": 8284, + "codeIataCity": "XCO", + "codeIso2Country": "AU", + "geonameId": 2177091, + "latitudeCity": -38.35, + "longitudeCity": 143.58333, + "nameCity": "Colac", + "timezone": "Australia/Melbourne" + }, + { + "GMT": "0", + "cityId": 8285, + "codeIataCity": "XDE", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 10.966667, + "longitudeCity": -3.25, + "nameCity": "Diebougou", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "0", + "cityId": 8286, + "codeIataCity": "XDJ", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 14.1, + "longitudeCity": -1.633333, + "nameCity": "Djibo", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-5", + "cityId": 8287, + "codeIataCity": "XDL", + "codeIso2Country": "CA", + "geonameId": 6943811, + "latitudeCity": 39.3003, + "longitudeCity": -94.3827, + "nameCity": "Chandler", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8288, + "codeIataCity": "XDM", + "codeIso2Country": "CA", + "geonameId": 5942845, + "latitudeCity": 45.8834, + "longitudeCity": -72.4824, + "nameCity": "Drummondville", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8289, + "codeIataCity": "XDO", + "codeIso2Country": "CA", + "geonameId": 6943814, + "latitudeCity": 16.0833, + "longitudeCity": -61.7167, + "nameCity": "Grande-Riviere", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8290, + "codeIataCity": "XDU", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 33.4982, + "longitudeCity": -93.7771, + "nameCity": "Hervey", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "cityId": 8291, + "codeIataCity": "XED", + "codeIso2Country": "FR", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Disneyland Paris", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 8292, + "codeIataCity": "XEE", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Lac Edouard", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "cityId": 8293, + "codeIataCity": "XEH", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 48.9829, + "longitudeCity": -123.819, + "nameCity": "Ladysmith", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "cityId": 8294, + "codeIataCity": "XEJ", + "codeIso2Country": "CA", + "geonameId": 6049388, + "latitudeCity": 48.4496, + "longitudeCity": -123.503, + "nameCity": "Langford", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 8295, + "codeIataCity": "XEK", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": -28.1833, + "longitudeCity": 116.733, + "nameCity": "Melville", + "timezone": "America/Regina" + }, + { + "GMT": "-5", + "cityId": 8296, + "codeIataCity": "XEL", + "codeIso2Country": "CA", + "geonameId": 6943833, + "latitudeCity": 39.9362, + "longitudeCity": -84.0255, + "nameCity": "New Carlisle", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8297, + "codeIataCity": "XEM", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 37.5701, + "longitudeCity": -81.4887, + "nameCity": "New Richmond", + "timezone": "America/Montreal" + }, + { + "GMT": "8", + "cityId": 8298, + "codeIataCity": "XEN", + "codeIso2Country": "CN", + "geonameId": 2033058, + "latitudeCity": 40.733334, + "longitudeCity": 118.61667, + "nameCity": "Xingcheng", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-3", + "cityId": 8299, + "codeIataCity": "XEO", + "codeIso2Country": "GL", + "geonameId": 0, + "latitudeCity": 69.333336, + "longitudeCity": -51.0, + "nameCity": "Oqatsut", + "timezone": "America/Godthab" + }, + { + "GMT": "-3", + "cityId": 8300, + "codeIataCity": "XEQ", + "codeIso2Country": "GL", + "geonameId": 0, + "latitudeCity": 60.266666, + "longitudeCity": -44.63333, + "nameCity": "Tasiuasaq", + "timezone": "America/Godthab" + }, + { + "GMT": "-6", + "cityId": 8301, + "codeIataCity": "XES", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 42.627777, + "longitudeCity": -88.428055, + "nameCity": "Lake Geneva", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 8302, + "codeIataCity": "XEW", + "codeIso2Country": "SE", + "geonameId": 7118038, + "latitudeCity": 59.21721, + "longitudeCity": 17.937, + "nameCity": "Flemingsberg", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-4", + "cityId": 8303, + "codeIataCity": "XEY", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Miramichi", + "timezone": "America/Moncton" + }, + { + "GMT": "-4", + "cityId": 8304, + "codeIataCity": "XFC", + "codeIso2Country": "CA", + "geonameId": 5957777, + "latitudeCity": 45.66043, + "longitudeCity": -66.61387, + "nameCity": "Fredericton Junction", + "timezone": "America/Moncton" + }, + { + "GMT": "-5", + "cityId": 8305, + "codeIataCity": "XFD", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": -37.9667, + "longitudeCity": 147.083, + "nameCity": "Stratford", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8306, + "codeIataCity": "XFE", + "codeIso2Country": "CA", + "geonameId": 6098332, + "latitudeCity": 47.9168, + "longitudeCity": -74.6159, + "nameCity": "Parent", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8307, + "codeIataCity": "XFG", + "codeIso2Country": "CA", + "geonameId": 6621052, + "latitudeCity": 48.4879, + "longitudeCity": -64.2985, + "nameCity": "Perce", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "cityId": 8308, + "codeIataCity": "XFH", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Strangnas", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "cityId": 8309, + "codeIataCity": "XFI", + "codeIso2Country": "CA", + "geonameId": 6943829, + "latitudeCity": 48.16425, + "longitudeCity": -64.97847, + "nameCity": "Port-Daniel", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8310, + "codeIataCity": "XFK", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 48.3835, + "longitudeCity": -77.2328, + "nameCity": "Senneterre", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8311, + "codeIataCity": "XFL", + "codeIso2Country": "CA", + "geonameId": 6145489, + "latitudeCity": 46.5668, + "longitudeCity": -72.7491, + "nameCity": "Shawinigan", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "cityId": 8312, + "codeIataCity": "XFM", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Shawnigan", + "timezone": "America/Vancouver" + }, + { + "GMT": "8", + "cityId": 8313, + "codeIataCity": "XFN", + "codeIso2Country": "CN", + "geonameId": 1790587, + "latitudeCity": 32.151558, + "longitudeCity": 112.28627, + "nameCity": "Xiangfan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 8314, + "codeIataCity": "XFO", + "codeIso2Country": "CA", + "geonameId": 6161761, + "latitudeCity": 48.6669, + "longitudeCity": -78.6829, + "nameCity": "Taschereau", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8315, + "codeIataCity": "XFQ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Weymont", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8316, + "codeIataCity": "XFS", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 43.8833, + "longitudeCity": 27.75, + "nameCity": "Alexandria", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "cityId": 8317, + "codeIataCity": "XFU", + "codeIso2Country": "SE", + "geonameId": 2669098, + "latitudeCity": 60.34269, + "longitudeCity": 17.51812, + "nameCity": "Tierp", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "cityId": 8318, + "codeIataCity": "XFV", + "codeIso2Country": "CA", + "geonameId": 5907990, + "latitudeCity": 43.1334, + "longitudeCity": -80.2664, + "nameCity": "Brantford", + "timezone": "America/Toronto" + }, + { + "GMT": "0", + "cityId": 8319, + "codeIataCity": "XGA", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 10.333333, + "longitudeCity": -3.183333, + "nameCity": "Gaoua", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "1", + "cityId": 8320, + "codeIataCity": "XGC", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Lund", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 8321, + "codeIataCity": "XGD", + "codeIso2Country": "NO", + "geonameId": 3162955, + "latitudeCity": 58.4603, + "longitudeCity": 8.76667, + "nameCity": "Arendal", + "timezone": "Europe/Oslo" + }, + { + "GMT": "0", + "cityId": 8322, + "codeIataCity": "XGG", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 14.433333, + "longitudeCity": -0.233333, + "nameCity": "Gorom-Gorom", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "1", + "cityId": 8323, + "codeIataCity": "XGH", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Flam", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8324, + "codeIataCity": "XGI", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Andalsnes", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "cityId": 8325, + "codeIataCity": "XGJ", + "codeIso2Country": "CA", + "geonameId": 5924579, + "latitudeCity": 43.9668, + "longitudeCity": -78.1662, + "nameCity": "Cobourg", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8326, + "codeIataCity": "XGK", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 18.2, + "longitudeCity": -74.0333, + "nameCity": "Coteau", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "cityId": 8327, + "codeIataCity": "XGL", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 56.233334, + "longitudeCity": -100.55, + "nameCity": "Granville Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "0", + "cityId": 8328, + "codeIataCity": "XGM", + "codeIso2Country": "GB", + "geonameId": 2648208, + "latitudeCity": 52.91149, + "longitudeCity": -0.64184, + "nameCity": "Grantham", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 8329, + "codeIataCity": "XGN", + "codeIso2Country": "AO", + "geonameId": 0, + "latitudeCity": -16.75, + "longitudeCity": 14.972222, + "nameCity": "Xangongo", + "timezone": "Africa/Luanda" + }, + { + "GMT": "1", + "cityId": 8330, + "codeIataCity": "XGP", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Dombas", + "timezone": "Europe/Oslo" + }, + { + "GMT": "2", + "cityId": 8331, + "codeIataCity": "XGQ", + "codeIso2Country": "FI", + "geonameId": 7116868, + "latitudeCity": 68.41961, + "longitudeCity": 27.41475, + "nameCity": "Saariselka", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-5", + "cityId": 8332, + "codeIataCity": "XGR", + "codeIso2Country": "CA", + "geonameId": 5989203, + "latitudeCity": 58.5, + "longitudeCity": -65.98333, + "nameCity": "Kangiqsualujjuaq", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "cityId": 8333, + "codeIataCity": "XGS", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Gjerstad", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8334, + "codeIataCity": "XGU", + "codeIso2Country": "NO", + "geonameId": 3162657, + "latitudeCity": 59.83333, + "longitudeCity": 10.43721, + "nameCity": "Asker", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "cityId": 8335, + "codeIataCity": "XGW", + "codeIso2Country": "CA", + "geonameId": 5959326, + "latitudeCity": 44.3334, + "longitudeCity": -76.1661, + "nameCity": "Gananoque", + "timezone": "America/Toronto" + }, + { + "GMT": "2", + "cityId": 8336, + "codeIataCity": "XGX", + "codeIso2Country": "FI", + "geonameId": 7117281, + "latitudeCity": 67.80509, + "longitudeCity": 24.79614, + "nameCity": "Levi", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-5", + "cityId": 8337, + "codeIataCity": "XGY", + "codeIso2Country": "CA", + "geonameId": 5967149, + "latitudeCity": 43.2001, + "longitudeCity": -79.5663, + "nameCity": "Grimsby", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "cityId": 8338, + "codeIataCity": "XGZ", + "codeIso2Country": "AT", + "geonameId": 2781503, + "latitudeCity": 47.5, + "longitudeCity": 9.76667, + "nameCity": "Bregenz", + "timezone": "Europe/Vienna" + }, + { + "GMT": "2", + "cityId": 8339, + "codeIataCity": "XHA", + "codeIso2Country": "FI", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Yllasjarvi", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "2", + "cityId": 8340, + "codeIataCity": "XHC", + "codeIso2Country": "FI", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Akaslompolo", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "2", + "cityId": 8341, + "codeIataCity": "XHD", + "codeIso2Country": "FI", + "geonameId": 7289327, + "latitudeCity": 66.16342, + "longitudeCity": 29.12064, + "nameCity": "Ruka", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "1", + "cityId": 8342, + "codeIataCity": "XHF", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 60.1667, + "longitudeCity": 10.3, + "nameCity": "Honefoss", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8343, + "codeIataCity": "XHI", + "codeIso2Country": "DE", + "geonameId": 2905457, + "latitudeCity": 49.56798, + "longitudeCity": 10.88565, + "nameCity": "Herzogenaurach", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 8344, + "codeIataCity": "XHL", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Nelaug", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "cityId": 8345, + "codeIataCity": "XHM", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Georgetown", + "timezone": "America/Toronto" + }, + { + "GMT": "8", + "cityId": 8346, + "codeIataCity": "XHO", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Dongguan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "3", + "cityId": 8347, + "codeIataCity": "XHQ", + "codeIso2Country": "TR", + "geonameId": 751817, + "latitudeCity": 41.18222, + "longitudeCity": 41.81944, + "nameCity": "Artvin", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-8", + "cityId": 8348, + "codeIataCity": "XHS", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Chemainus", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "cityId": 8349, + "codeIataCity": "XHT", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Arna", + "timezone": "Europe/Oslo" + }, + { + "GMT": "0", + "cityId": 8350, + "codeIataCity": "XHU", + "codeIso2Country": "GB", + "geonameId": 2646393, + "latitudeCity": 52.3333, + "longitudeCity": -0.183333, + "nameCity": "Huntingdon", + "timezone": "Europe/London" + }, + { + "GMT": "2", + "cityId": 8351, + "codeIataCity": "XHV", + "codeIso2Country": "RO", + "geonameId": 0, + "latitudeCity": 45.6486, + "longitudeCity": 25.6061, + "nameCity": "Brasov", + "timezone": "Europe/Bucharest" + }, + { + "GMT": "-5", + "cityId": 8352, + "codeIataCity": "XIA", + "codeIso2Country": "CA", + "geonameId": 5967629, + "latitudeCity": 43.5501, + "longitudeCity": -80.2497, + "nameCity": "Guelph", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8353, + "codeIataCity": "XIB", + "codeIso2Country": "CA", + "geonameId": 5983175, + "latitudeCity": 43.0334, + "longitudeCity": -80.883, + "nameCity": "Ingersoll", + "timezone": "America/Toronto" + }, + { + "GMT": "8", + "cityId": 8354, + "codeIataCity": "XIC", + "codeIso2Country": "CN", + "geonameId": 1789647, + "latitudeCity": 27.981922, + "longitudeCity": 102.187645, + "nameCity": "Xichang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 8355, + "codeIataCity": "XID", + "codeIso2Country": "CA", + "geonameId": 6068242, + "latitudeCity": 35.9915, + "longitudeCity": -91.5757, + "nameCity": "Maxville", + "timezone": "America/Toronto" + }, + { + "GMT": "7", + "cityId": 8356, + "codeIataCity": "XIE", + "codeIso2Country": "LA", + "geonameId": 0, + "latitudeCity": 19.65, + "longitudeCity": 100.833336, + "nameCity": "Xienglom", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "-5", + "cityId": 8357, + "codeIataCity": "XIF", + "codeIso2Country": "CA", + "geonameId": 6085931, + "latitudeCity": 33.5062, + "longitudeCity": -90.8709, + "nameCity": "Napanee", + "timezone": "America/Toronto" + }, + { + "GMT": "-3", + "cityId": 8358, + "codeIataCity": "XIG", + "codeIso2Country": "BR", + "geonameId": 6318968, + "latitudeCity": -6.966667, + "longitudeCity": -48.8, + "nameCity": "Xinguara", + "timezone": "America/Belem" + }, + { + "GMT": "-5", + "cityId": 8359, + "codeIataCity": "XII", + "codeIso2Country": "CA", + "geonameId": 6113027, + "latitudeCity": 44.7168, + "longitudeCity": -75.516, + "nameCity": "Prescott", + "timezone": "America/Toronto" + }, + { + "GMT": "3", + "cityId": 8360, + "codeIataCity": "XIJ", + "codeIso2Country": "KW", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Ahmed Al Jaber", + "timezone": "Asia/Kuwait" + }, + { + "GMT": "8", + "cityId": 8361, + "codeIataCity": "XIL", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 43.918762, + "longitudeCity": 115.95924, + "nameCity": "Xilinhot", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 8362, + "codeIataCity": "XIM", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Saint Hyacinthe", + "timezone": "America/Montreal" + }, + { + "GMT": "8", + "cityId": 8363, + "codeIataCity": "XIN", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 24.0, + "longitudeCity": 116.0, + "nameCity": "Xingning", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 8364, + "codeIataCity": "XIO", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "St Marys", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8365, + "codeIataCity": "XIP", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 43.1334, + "longitudeCity": -80.7497, + "nameCity": "Woodstock", + "timezone": "America/Toronto" + }, + { + "GMT": "-3", + "cityId": 8366, + "codeIataCity": "XIQ", + "codeIso2Country": "GL", + "geonameId": 0, + "latitudeCity": 69.0, + "longitudeCity": -51.0, + "nameCity": "Ilimanaq", + "timezone": "America/Godthab" + }, + { + "GMT": "1", + "cityId": 8367, + "codeIataCity": "XJA", + "codeIso2Country": "NO", + "geonameId": 3163269, + "latitudeCity": 62.10766, + "longitudeCity": 10.63073, + "nameCity": "Alvdal", + "timezone": "Europe/Oslo" + }, + { + "GMT": "3", + "cityId": 8368, + "codeIataCity": "XJD", + "codeIso2Country": "QA", + "geonameId": 290030, + "latitudeCity": 25.11667, + "longitudeCity": 51.3, + "nameCity": "Al Udeid", + "timezone": "Asia/Qatar" + }, + { + "GMT": "-5", + "cityId": 8369, + "codeIataCity": "XJL", + "codeIso2Country": "CA", + "geonameId": 5987650, + "latitudeCity": 46.0168, + "longitudeCity": -73.4492, + "nameCity": "Joliette", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "cityId": 8370, + "codeIataCity": "XJO", + "codeIso2Country": "ES", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Soria", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-5", + "cityId": 8371, + "codeIataCity": "XJQ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Jonquiere", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "cityId": 8372, + "codeIataCity": "XJR", + "codeIso2Country": "ES", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Lorca", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "cityId": 8373, + "codeIataCity": "XJS", + "codeIso2Country": "AT", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Kitzbuehl", + "timezone": "Europe/Vienna" + }, + { + "GMT": "0", + "cityId": 8374, + "codeIataCity": "XKA", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 12.483333, + "longitudeCity": 1.516667, + "nameCity": "Kantchari", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "1", + "cityId": 8375, + "codeIataCity": "XKB", + "codeIso2Country": "NO", + "geonameId": 3149563, + "latitudeCity": 59.66858, + "longitudeCity": 9.65017, + "nameCity": "Kongsberg", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8376, + "codeIataCity": "XKC", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Sandnes", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8377, + "codeIataCity": "XKD", + "codeIso2Country": "NO", + "geonameId": 3154209, + "latitudeCity": 59.15, + "longitudeCity": 11.3833, + "nameCity": "Halden", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8378, + "codeIataCity": "XKE", + "codeIso2Country": "NO", + "geonameId": 3141982, + "latitudeCity": 61.13484, + "longitudeCity": 11.36409, + "nameCity": "Rena", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8379, + "codeIataCity": "XKF", + "codeIso2Country": "NO", + "geonameId": 3156529, + "latitudeCity": 59.2167, + "longitudeCity": 10.95, + "nameCity": "Fredrikstad", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8380, + "codeIataCity": "XKG", + "codeIso2Country": "NO", + "geonameId": 3154907, + "latitudeCity": 64.46543, + "longitudeCity": 12.31491, + "nameCity": "Grong", + "timezone": "Europe/Oslo" + }, + { + "GMT": "7", + "cityId": 8381, + "codeIataCity": "XKH", + "codeIso2Country": "LA", + "geonameId": 1655123, + "latitudeCity": 19.3, + "longitudeCity": 103.36667, + "nameCity": "Xieng Khouang", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "1", + "cityId": 8382, + "codeIataCity": "XKI", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 59.9571, + "longitudeCity": 11.0495, + "nameCity": "Lillestrom", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8383, + "codeIataCity": "XKJ", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 64.0167, + "longitudeCity": 11.5, + "nameCity": "Steinkjer", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8384, + "codeIataCity": "XKK", + "codeIso2Country": "NO", + "geonameId": 3148129, + "latitudeCity": 59.0566, + "longitudeCity": 10.0374, + "nameCity": "Larvik", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8385, + "codeIataCity": "XKM", + "codeIso2Country": "NO", + "geonameId": 3145375, + "latitudeCity": 59.4367, + "longitudeCity": 10.6692, + "nameCity": "Moss", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8386, + "codeIataCity": "XKN", + "codeIso2Country": "NO", + "geonameId": 3157520, + "latitudeCity": 60.6, + "longitudeCity": 7.5, + "nameCity": "Finse", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-8", + "cityId": 8387, + "codeIataCity": "XKO", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 53.566666, + "longitudeCity": -127.933334, + "nameCity": "Kemano", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "cityId": 8388, + "codeIataCity": "XKP", + "codeIso2Country": "NO", + "geonameId": 3142657, + "latitudeCity": 59.14054, + "longitudeCity": 9.6561, + "nameCity": "Porsgrunn", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8389, + "codeIataCity": "XKQ", + "codeIso2Country": "NO", + "geonameId": 3140084, + "latitudeCity": 59.2833, + "longitudeCity": 11.1167, + "nameCity": "Sarpsborg", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "cityId": 8390, + "codeIataCity": "XKS", + "codeIso2Country": "CA", + "geonameId": 5989463, + "latitudeCity": 53.52, + "longitudeCity": -88.64667, + "nameCity": "Kasabonika", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-4", + "cityId": 8391, + "codeIataCity": "XKV", + "codeIso2Country": "CA", + "geonameId": 6137063, + "latitudeCity": 45.9188, + "longitudeCity": -64.3845, + "nameCity": "Sackville", + "timezone": "America/Moncton" + }, + { + "GMT": "1", + "cityId": 8392, + "codeIataCity": "XKW", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Tonsberg", + "timezone": "Europe/Oslo" + }, + { + "GMT": "0", + "cityId": 8393, + "codeIataCity": "XKY", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 13.083333, + "longitudeCity": -1.083333, + "nameCity": "Kaya", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "1", + "cityId": 8394, + "codeIataCity": "XKZ", + "codeIso2Country": "NO", + "geonameId": 3131538, + "latitudeCity": 61.59515, + "longitudeCity": 9.75232, + "nameCity": "Vinstra", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "cityId": 8395, + "codeIataCity": "XLB", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 58.6, + "longitudeCity": -101.46667, + "nameCity": "Lac Brochet", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "cityId": 8396, + "codeIataCity": "XLF", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 59.0, + "longitudeCity": -69.0, + "nameCity": "Leaf Bay", + "timezone": "America/Montreal" + }, + { + "GMT": "7", + "cityId": 8397, + "codeIataCity": "XLO", + "codeIso2Country": "VN", + "geonameId": 1575626, + "latitudeCity": 10.333333, + "longitudeCity": 105.46667, + "nameCity": "Long Xuyen", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "-5", + "cityId": 8398, + "codeIataCity": "XLP", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Matapedia", + "timezone": "America/Montreal" + }, + { + "GMT": "0", + "cityId": 8399, + "codeIataCity": "XLS", + "codeIso2Country": "SN", + "geonameId": 2246452, + "latitudeCity": 16.050278, + "longitudeCity": -16.460278, + "nameCity": "St Louis", + "timezone": "Africa/Dakar" + }, + { + "GMT": "0", + "cityId": 8400, + "codeIataCity": "XLU", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 11.1, + "longitudeCity": -2.1, + "nameCity": "Leo", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-5", + "cityId": 8401, + "codeIataCity": "XLV", + "codeIso2Country": "CA", + "geonameId": 6087892, + "latitudeCity": 43.1001, + "longitudeCity": -79.0663, + "nameCity": "Niagara Falls", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "cityId": 8402, + "codeIataCity": "XLW", + "codeIso2Country": "DE", + "geonameId": 2878912, + "latitudeCity": 53.166668, + "longitudeCity": 8.6, + "nameCity": "Lemwerder", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "cityId": 8403, + "codeIataCity": "XLY", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": -25.4667, + "longitudeCity": 152.667, + "nameCity": "Aldershot", + "timezone": "America/Toronto" + }, + { + "GMT": "-4", + "cityId": 8404, + "codeIataCity": "XLZ", + "codeIso2Country": "CA", + "geonameId": 6169587, + "latitudeCity": -34.4167, + "longitudeCity": 139.117, + "nameCity": "Truro", + "timezone": "America/Halifax" + }, + { + "GMT": "8", + "cityId": 8405, + "codeIataCity": "XMA", + "codeIso2Country": "PH", + "geonameId": 1721080, + "latitudeCity": 7.766667, + "longitudeCity": 125.0, + "nameCity": "Maramag", + "timezone": "Asia/Manila" + }, + { + "GMT": "10", + "cityId": 8406, + "codeIataCity": "XMC", + "codeIso2Country": "AU", + "geonameId": 2158020, + "latitudeCity": -37.6, + "longitudeCity": 149.71666, + "nameCity": "Mallacoota", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-6", + "cityId": 8407, + "codeIataCity": "XMD", + "codeIso2Country": "US", + "geonameId": 5226534, + "latitudeCity": 44.0, + "longitudeCity": -97.11667, + "nameCity": "Madison", + "timezone": "America/Chicago" + }, + { + "GMT": "5.45", + "cityId": 8408, + "codeIataCity": "XMG", + "codeIso2Country": "NP", + "geonameId": 0, + "latitudeCity": 28.966667, + "longitudeCity": 80.2, + "nameCity": "Mahendranagar", + "timezone": "Asia/Kathmandu" + }, + { + "GMT": "-10", + "cityId": 8409, + "codeIataCity": "XMH", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -14.43795, + "longitudeCity": -146.07051, + "nameCity": "Manihi", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "3", + "cityId": 8410, + "codeIataCity": "XMI", + "codeIso2Country": "TZ", + "geonameId": 0, + "latitudeCity": -10.716667, + "longitudeCity": 38.8, + "nameCity": "Masasi", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "9.30", + "cityId": 8411, + "codeIataCity": "XML", + "codeIso2Country": "AU", + "geonameId": 2078025, + "latitudeCity": -35.0, + "longitudeCity": 137.5, + "nameCity": "Minlaton", + "timezone": "Australia/Adelaide" + }, + { + "GMT": "8", + "cityId": 8412, + "codeIataCity": "XMN", + "codeIso2Country": "CN", + "geonameId": 1790645, + "latitudeCity": 24.536882, + "longitudeCity": 118.1275, + "nameCity": "Xiamen", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-8", + "cityId": 8413, + "codeIataCity": "XMP", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 62.86667, + "longitudeCity": -135.91667, + "nameCity": "Macmillan Pass", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-5", + "cityId": 8414, + "codeIataCity": "XMS", + "codeIso2Country": "EC", + "geonameId": 3652350, + "latitudeCity": -2.316667, + "longitudeCity": -78.13333, + "nameCity": "Macas", + "timezone": "America/Guayaquil" + }, + { + "GMT": "10", + "cityId": 8415, + "codeIataCity": "XMY", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -10.483333, + "longitudeCity": 142.45, + "nameCity": "Yam Island", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "0", + "cityId": 8416, + "codeIataCity": "XMZ", + "codeIso2Country": "GB", + "geonameId": 2643266, + "latitudeCity": 53.26023, + "longitudeCity": -2.12564, + "nameCity": "Macclesfield", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 8417, + "codeIataCity": "XND", + "codeIso2Country": "NO", + "geonameId": 3159016, + "latitudeCity": 59.74389, + "longitudeCity": 10.20449, + "nameCity": "Drammen", + "timezone": "Europe/Oslo" + }, + { + "GMT": "0", + "cityId": 8418, + "codeIataCity": "XNE", + "codeIso2Country": "GB", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Newport", + "timezone": "Europe/London" + }, + { + "GMT": "7", + "cityId": 8419, + "codeIataCity": "XNG", + "codeIso2Country": "VN", + "geonameId": 1568770, + "latitudeCity": 15.113611, + "longitudeCity": 108.77583, + "nameCity": "Quang Ngai", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "8", + "cityId": 8420, + "codeIataCity": "XNN", + "codeIso2Country": "CN", + "geonameId": 1788852, + "latitudeCity": 36.525322, + "longitudeCity": 102.03754, + "nameCity": "Xining", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "0", + "cityId": 8421, + "codeIataCity": "XNO", + "codeIso2Country": "GB", + "geonameId": 2641435, + "latitudeCity": 54.33901, + "longitudeCity": -1.43243, + "nameCity": "Northallerton", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 8422, + "codeIataCity": "XNR", + "codeIso2Country": "DK", + "geonameId": 2625070, + "latitudeCity": 55.0333, + "longitudeCity": 9.43333, + "nameCity": "Aabenraa", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "8", + "cityId": 8423, + "codeIataCity": "XNT", + "codeIso2Country": "CN", + "geonameId": 1785294, + "latitudeCity": 37.1, + "longitudeCity": 114.5, + "nameCity": "Xingtai", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "0", + "cityId": 8424, + "codeIataCity": "XNU", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 12.733333, + "longitudeCity": -3.866667, + "nameCity": "Nouna", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "0", + "cityId": 8425, + "codeIataCity": "XNV", + "codeIso2Country": "GB", + "geonameId": 2641157, + "latitudeCity": 52.52323, + "longitudeCity": -1.46523, + "nameCity": "Nuneaton", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 8426, + "codeIataCity": "XOA", + "codeIso2Country": "DK", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Aalbaek", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "cityId": 8427, + "codeIataCity": "XOB", + "codeIso2Country": "NO", + "geonameId": 3159822, + "latitudeCity": 58.73536, + "longitudeCity": 5.64766, + "nameCity": "Bryne", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8428, + "codeIataCity": "XOD", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Oppdal", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8429, + "codeIataCity": "XOI", + "codeIso2Country": "AT", + "geonameId": 2775183, + "latitudeCity": 47.01257, + "longitudeCity": 10.29179, + "nameCity": "Ischgl", + "timezone": "Europe/Vienna" + }, + { + "GMT": "-5", + "cityId": 8430, + "codeIataCity": "XOK", + "codeIso2Country": "CA", + "geonameId": 6092122, + "latitudeCity": 43.4501, + "longitudeCity": -79.6829, + "nameCity": "Oakville", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "cityId": 8431, + "codeIataCity": "XOL", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Myrdal", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "cityId": 8432, + "codeIataCity": "XON", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 46.7001, + "longitudeCity": -64.1487, + "nameCity": "Carleton", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "cityId": 8433, + "codeIataCity": "XOO", + "codeIso2Country": "AT", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Soelden", + "timezone": "Europe/Vienna" + }, + { + "GMT": "1", + "cityId": 8434, + "codeIataCity": "XOQ", + "codeIso2Country": "NO", + "geonameId": 3139617, + "latitudeCity": 58.42068, + "longitudeCity": 6.66218, + "nameCity": "Sira", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8435, + "codeIataCity": "XOR", + "codeIso2Country": "NO", + "geonameId": 3143120, + "latitudeCity": 61.7667, + "longitudeCity": 9.53333, + "nameCity": "Otta", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8436, + "codeIataCity": "XOU", + "codeIso2Country": "ES", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Segovia", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "cityId": 8437, + "codeIataCity": "XOW", + "codeIso2Country": "AT", + "geonameId": 2765282, + "latitudeCity": 48.71667, + "longitudeCity": 16.16667, + "nameCity": "Seefeld", + "timezone": "Europe/Vienna" + }, + { + "GMT": "0", + "cityId": 8438, + "codeIataCity": "XPA", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 11.25, + "longitudeCity": 0.7, + "nameCity": "Pama", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-8", + "cityId": 8439, + "codeIataCity": "XPB", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 49.3163, + "longitudeCity": -124.319, + "nameCity": "Parksville", + "timezone": "America/Vancouver" + }, + { + "GMT": "0", + "cityId": 8440, + "codeIataCity": "XPF", + "codeIso2Country": "GB", + "geonameId": 2640416, + "latitudeCity": 54.66579, + "longitudeCity": -2.75757, + "nameCity": "Penrith", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "cityId": 8441, + "codeIataCity": "XPH", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 44.0168, + "longitudeCity": -78.3995, + "nameCity": "Port Hope", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "cityId": 8442, + "codeIataCity": "XPK", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 55.766666, + "longitudeCity": -101.23333, + "nameCity": "Pukatawagan", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-6", + "cityId": 8443, + "codeIataCity": "XPL", + "codeIso2Country": "HN", + "geonameId": 3613321, + "latitudeCity": 14.416667, + "longitudeCity": -87.61667, + "nameCity": "Comayagua", + "timezone": "America/Tegucigalpa" + }, + { + "GMT": "-5", + "cityId": 8444, + "codeIataCity": "XPN", + "codeIso2Country": "CA", + "geonameId": 5907364, + "latitudeCity": 43.6834, + "longitudeCity": -79.7663, + "nameCity": "Brampton", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "cityId": 8445, + "codeIataCity": "XPP", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 53.0, + "longitudeCity": -97.3, + "nameCity": "Poplar River", + "timezone": "America/Winnipeg" + }, + { + "GMT": "8", + "cityId": 8446, + "codeIataCity": "XPQ", + "codeIso2Country": "MY", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Port Klang", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "-7", + "cityId": 8447, + "codeIataCity": "XPR", + "codeIso2Country": "US", + "geonameId": 5765751, + "latitudeCity": 43.016666, + "longitudeCity": -102.51667, + "nameCity": "Pine Ridge", + "timezone": "America/Denver" + }, + { + "GMT": "0", + "cityId": 8448, + "codeIataCity": "XPT", + "codeIso2Country": "GB", + "geonameId": 0, + "latitudeCity": 53.7667, + "longitudeCity": -2.71667, + "nameCity": "Preston", + "timezone": "Europe/London" + }, + { + "GMT": "-9", + "cityId": 8449, + "codeIataCity": "XPU", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 70.333336, + "longitudeCity": -149.33333, + "nameCity": "West Kuparuk", + "timezone": "America/Anchorage" + }, + { + "GMT": "0", + "cityId": 8450, + "codeIataCity": "XPW", + "codeIso2Country": "GB", + "geonameId": 2651269, + "latitudeCity": 51.60928, + "longitudeCity": -1.24214, + "nameCity": "Didcot", + "timezone": "Europe/London" + }, + { + "GMT": "-5", + "cityId": 8451, + "codeIataCity": "XPX", + "codeIso2Country": "CA", + "geonameId": 6107171, + "latitudeCity": 45.65008, + "longitudeCity": -73.49917, + "nameCity": "Pointe-aux-Trembles", + "timezone": "America/Montreal" + }, + { + "GMT": "2", + "cityId": 8452, + "codeIataCity": "XPY", + "codeIso2Country": "FI", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Pyha", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "0", + "cityId": 8453, + "codeIataCity": "XQB", + "codeIso2Country": "GB", + "geonameId": 2656192, + "latitudeCity": 51.2667, + "longitudeCity": -1.08333, + "nameCity": "Basingstoke", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 8454, + "codeIataCity": "XQD", + "codeIso2Country": "GB", + "geonameId": 2656046, + "latitudeCity": 52.1346, + "longitudeCity": -0.466318, + "nameCity": "Bedford", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 8455, + "codeIataCity": "XQG", + "codeIso2Country": "GB", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Berwick-upon-Tweed", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 8456, + "codeIataCity": "XQH", + "codeIso2Country": "GB", + "geonameId": 2651347, + "latitudeCity": 52.9333, + "longitudeCity": -1.5, + "nameCity": "Derby", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 8457, + "codeIataCity": "XQI", + "codeIso2Country": "GB", + "geonameId": 2643567, + "latitudeCity": 52.76667, + "longitudeCity": -1.2, + "nameCity": "Loughborough", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 8458, + "codeIataCity": "XQL", + "codeIso2Country": "GB", + "geonameId": 2644972, + "latitudeCity": 54.06667, + "longitudeCity": -2.83333, + "nameCity": "Lancaster", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 8459, + "codeIataCity": "XQM", + "codeIso2Country": "GB", + "geonameId": 2643027, + "latitudeCity": 52.4776, + "longitudeCity": -0.92053, + "nameCity": "Market Harborough", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "cityId": 8460, + "codeIataCity": "XQP", + "codeIso2Country": "CR", + "geonameId": 3622193, + "latitudeCity": 9.439146, + "longitudeCity": -84.13335, + "nameCity": "Pavones", + "timezone": "America/Costa_Rica" + }, + { + "GMT": "2", + "cityId": 8461, + "codeIataCity": "XQS", + "codeIso2Country": "FI", + "geonameId": 636173, + "latitudeCity": 64.13333, + "longitudeCity": 28.41667, + "nameCity": "Sotkamo", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "0", + "cityId": 8462, + "codeIataCity": "XQT", + "codeIso2Country": "GB", + "geonameId": 2644531, + "latitudeCity": 52.68154, + "longitudeCity": -1.82549, + "nameCity": "Lichfield", + "timezone": "Europe/London" + }, + { + "GMT": "-8", + "cityId": 8463, + "codeIataCity": "XQU", + "codeIso2Country": "CA", + "geonameId": 6098642, + "latitudeCity": 49.340153, + "longitudeCity": -124.39587, + "nameCity": "Qualicum", + "timezone": "America/Vancouver" + }, + { + "GMT": "0", + "cityId": 8464, + "codeIataCity": "XQW", + "codeIso2Country": "GB", + "geonameId": 2642135, + "latitudeCity": 55.78924, + "longitudeCity": -3.99187, + "nameCity": "Motherwell", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 8465, + "codeIataCity": "XRA", + "codeIso2Country": "DK", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Graasten", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "0", + "cityId": 8466, + "codeIataCity": "XRC", + "codeIso2Country": "GB", + "geonameId": 2638960, + "latitudeCity": 53.34174, + "longitudeCity": -2.73124, + "nameCity": "Runcorn", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 8467, + "codeIataCity": "XRD", + "codeIso2Country": "NO", + "geonameId": 3158792, + "latitudeCity": 58.45133, + "longitudeCity": 5.9997, + "nameCity": "Egersund", + "timezone": "Europe/Oslo" + }, + { + "GMT": "0", + "cityId": 8468, + "codeIataCity": "XRE", + "codeIso2Country": "GB", + "geonameId": 2639577, + "latitudeCity": 51.4333, + "longitudeCity": -1.0, + "nameCity": "Reading", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 8469, + "codeIataCity": "XRG", + "codeIso2Country": "GB", + "geonameId": 2638977, + "latitudeCity": 52.7667, + "longitudeCity": -1.93333, + "nameCity": "Rugeley", + "timezone": "Europe/London" + }, + { + "GMT": "10", + "cityId": 8470, + "codeIataCity": "XRH", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -33.6, + "longitudeCity": 150.76889, + "nameCity": "Richmond", + "timezone": "Australia/Sydney" + }, + { + "GMT": "-5", + "cityId": 8471, + "codeIataCity": "XRP", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Riviere-a-Pierre", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "cityId": 8472, + "codeIataCity": "XRR", + "codeIso2Country": "CA", + "geonameId": 6127994, + "latitudeCity": 61.983334, + "longitudeCity": -132.45, + "nameCity": "Ross River", + "timezone": "America/Whitehorse" + }, + { + "GMT": "0", + "cityId": 8473, + "codeIataCity": "XRU", + "codeIso2Country": "GB", + "geonameId": 2638978, + "latitudeCity": 52.3667, + "longitudeCity": -1.25, + "nameCity": "Rugby", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 8474, + "codeIataCity": "XRY", + "codeIso2Country": "ES", + "geonameId": 2516326, + "latitudeCity": 36.686562, + "longitudeCity": -6.137173, + "nameCity": "Jerez De La Frontera", + "timezone": "Europe/Madrid" + }, + { + "GMT": "-4", + "cityId": 8475, + "codeIataCity": "XSC", + "codeIso2Country": "TC", + "geonameId": 8131575, + "latitudeCity": 21.515833, + "longitudeCity": -71.529724, + "nameCity": "South Caicos", + "timezone": "America/Grand_Turk" + }, + { + "GMT": "0", + "cityId": 8476, + "codeIataCity": "XSE", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 13.433333, + "longitudeCity": 0.533333, + "nameCity": "Sebba", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-6", + "cityId": 8477, + "codeIataCity": "XSI", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 56.8, + "longitudeCity": -98.916664, + "nameCity": "South Indian Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "cityId": 8478, + "codeIataCity": "XSM", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 38.283333, + "longitudeCity": -76.63333, + "nameCity": "St Marys", + "timezone": "America/New_York" + }, + { + "GMT": "8", + "cityId": 8479, + "codeIataCity": "XSO", + "codeIso2Country": "PH", + "geonameId": 1686123, + "latitudeCity": 7.7, + "longitudeCity": 122.15, + "nameCity": "Siocon", + "timezone": "Asia/Manila" + }, + { + "GMT": "0", + "cityId": 8480, + "codeIataCity": "XSR", + "codeIso2Country": "GB", + "geonameId": 2638664, + "latitudeCity": 51.0693, + "longitudeCity": -1.79569, + "nameCity": "Salisbury", + "timezone": "Europe/London" + }, + { + "GMT": "10", + "cityId": 8481, + "codeIataCity": "XTG", + "codeIso2Country": "AU", + "geonameId": 2146971, + "latitudeCity": -27.966667, + "longitudeCity": 143.76666, + "nameCity": "Thargomindah", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "1", + "cityId": 8482, + "codeIataCity": "XTJ", + "codeIso2Country": "ES", + "geonameId": 2510409, + "latitudeCity": 39.8581, + "longitudeCity": -4.02263, + "nameCity": "Toledo", + "timezone": "Europe/Madrid" + }, + { + "GMT": "0", + "cityId": 8483, + "codeIataCity": "XTK", + "codeIso2Country": "GB", + "geonameId": 2636021, + "latitudeCity": 54.23298, + "longitudeCity": -1.34411, + "nameCity": "Thirsk", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "cityId": 8484, + "codeIataCity": "XTL", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 58.716667, + "longitudeCity": -98.48333, + "nameCity": "Tadoule Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "10", + "cityId": 8485, + "codeIataCity": "XTO", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -25.433332, + "longitudeCity": 149.8, + "nameCity": "Taroom", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "10", + "cityId": 8486, + "codeIataCity": "XTR", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -27.283333, + "longitudeCity": 150.46666, + "nameCity": "Tara", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 8487, + "codeIataCity": "XTY", + "codeIso2Country": "CA", + "geonameId": 6158027, + "latitudeCity": -30.55, + "longitudeCity": 28.8833, + "nameCity": "Strathroy", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "cityId": 8488, + "codeIataCity": "XUB", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Berkak", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8489, + "codeIataCity": "XUC", + "codeIso2Country": "NO", + "geonameId": 3158300, + "latitudeCity": 60.88191, + "longitudeCity": 11.56231, + "nameCity": "Elverum", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8490, + "codeIataCity": "XUE", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Heimdal", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8491, + "codeIataCity": "XUF", + "codeIso2Country": "ES", + "geonameId": 2520058, + "latitudeCity": 37.60512, + "longitudeCity": -0.98623, + "nameCity": "Cartagena", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "cityId": 8492, + "codeIataCity": "XUG", + "codeIso2Country": "NO", + "geonameId": 3152132, + "latitudeCity": -19.05, + "longitudeCity": 23.066668, + "nameCity": "Holmestrand", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8493, + "codeIataCity": "XUH", + "codeIso2Country": "NO", + "geonameId": 3147698, + "latitudeCity": 63.74644, + "longitudeCity": 11.29963, + "nameCity": "Levanger", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8494, + "codeIataCity": "XUI", + "codeIso2Country": "NO", + "geonameId": 3146631, + "latitudeCity": 59.90994, + "longitudeCity": 10.63545, + "nameCity": "Lysaker", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8495, + "codeIataCity": "XUJ", + "codeIso2Country": "NO", + "geonameId": 3145689, + "latitudeCity": 60.93333, + "longitudeCity": 10.7, + "nameCity": "Moelv", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8496, + "codeIataCity": "XUL", + "codeIso2Country": "NO", + "geonameId": 3144733, + "latitudeCity": 60.56809, + "longitudeCity": 9.10274, + "nameCity": "Nesbyen", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8497, + "codeIataCity": "XUM", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Neslandsvatn", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8498, + "codeIataCity": "XUO", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Nordagutu", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8499, + "codeIataCity": "XUQ", + "codeIso2Country": "NO", + "geonameId": 3141850, + "latitudeCity": 61.51667, + "longitudeCity": 10.16667, + "nameCity": "Ringebu", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8500, + "codeIataCity": "XUR", + "codeIso2Country": "NO", + "geonameId": 3138624, + "latitudeCity": 59.38613, + "longitudeCity": 10.41078, + "nameCity": "Skoppum", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8501, + "codeIataCity": "XUS", + "codeIso2Country": "NO", + "geonameId": 3138079, + "latitudeCity": 58.33313, + "longitudeCity": 7.21252, + "nameCity": "Snartemo", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8502, + "codeIataCity": "XUU", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Stjordal", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8503, + "codeIataCity": "XUV", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Storekvina", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8504, + "codeIataCity": "XUW", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Storen", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8505, + "codeIataCity": "XUX", + "codeIso2Country": "NO", + "geonameId": 3133181, + "latitudeCity": 60.4983, + "longitudeCity": 8.04271, + "nameCity": "Ustaoset", + "timezone": "Europe/Oslo" + }, + { + "GMT": "8", + "cityId": 8506, + "codeIataCity": "XUZ", + "codeIso2Country": "CN", + "geonameId": 1549648, + "latitudeCity": 34.052925, + "longitudeCity": 117.55408, + "nameCity": "Xuzhou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "0", + "cityId": 8507, + "codeIataCity": "XVA", + "codeIso2Country": "GB", + "geonameId": 2636882, + "latitudeCity": 53.4098, + "longitudeCity": -2.15761, + "nameCity": "Stockport", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 8508, + "codeIataCity": "XVB", + "codeIso2Country": "GB", + "geonameId": 2637142, + "latitudeCity": 52.8, + "longitudeCity": -2.1, + "nameCity": "Stafford", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 8509, + "codeIataCity": "XVC", + "codeIso2Country": "GB", + "geonameId": 2652002, + "latitudeCity": 53.09787, + "longitudeCity": -2.44161, + "nameCity": "Crewe", + "timezone": "Europe/London" + }, + { + "GMT": "-6", + "cityId": 8510, + "codeIataCity": "XVG", + "codeIso2Country": "GB", + "geonameId": 5017822, + "latitudeCity": 47.05164, + "longitudeCity": -94.24, + "nameCity": "Darlington", + "timezone": "America/Chicago" + }, + { + "GMT": "0", + "cityId": 8511, + "codeIataCity": "XVH", + "codeIso2Country": "GB", + "geonameId": 2640354, + "latitudeCity": 52.5833, + "longitudeCity": -0.25, + "nameCity": "Peterborough", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 8512, + "codeIataCity": "XVJ", + "codeIso2Country": "GB", + "geonameId": 2636940, + "latitudeCity": 51.9167, + "longitudeCity": -0.216667, + "nameCity": "Stevenage", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 8513, + "codeIataCity": "XVK", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Voss", + "timezone": "Europe/Oslo" + }, + { + "GMT": "7", + "cityId": 8514, + "codeIataCity": "XVL", + "codeIso2Country": "VN", + "geonameId": 1566083, + "latitudeCity": 10.25, + "longitudeCity": 105.95, + "nameCity": "Vinh Long", + "timezone": "Asia/Ho_Chi_Minh" + }, + { + "GMT": "2", + "cityId": 8515, + "codeIataCity": "XVM", + "codeIso2Country": "FI", + "geonameId": 631204, + "latitudeCity": 64.11667, + "longitudeCity": 28.25, + "nameCity": "Vuokatti", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "1", + "cityId": 8516, + "codeIataCity": "XVS", + "codeIso2Country": "FR", + "geonameId": 2971041, + "latitudeCity": 50.35, + "longitudeCity": 3.53333, + "nameCity": "Valenciennes", + "timezone": "Europe/Paris" + }, + { + "GMT": "-5", + "cityId": 8517, + "codeIataCity": "XVV", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 44.1788, + "longitudeCity": -77.3705, + "nameCity": "Belleville", + "timezone": "America/Toronto" + }, + { + "GMT": "0", + "cityId": 8518, + "codeIataCity": "XVW", + "codeIso2Country": "GB", + "geonameId": 2633691, + "latitudeCity": 52.5833, + "longitudeCity": -2.13333, + "nameCity": "Wolverhampton", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 8519, + "codeIataCity": "XVX", + "codeIso2Country": "DK", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Vejle", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-5", + "cityId": 8520, + "codeIataCity": "XWA", + "codeIso2Country": "CA", + "geonameId": 6176902, + "latitudeCity": 52.3, + "longitudeCity": -1.11667, + "nameCity": "Watford", + "timezone": "America/Toronto" + }, + { + "GMT": "0", + "cityId": 8521, + "codeIataCity": "XWB", + "codeIso2Country": "GB", + "geonameId": 2636910, + "latitudeCity": 56.1167, + "longitudeCity": -3.95, + "nameCity": "Stirling", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 8522, + "codeIataCity": "XWD", + "codeIso2Country": "GB", + "geonameId": 2634910, + "latitudeCity": 53.68331, + "longitudeCity": -1.49768, + "nameCity": "Wakefield", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 8523, + "codeIataCity": "XWE", + "codeIso2Country": "GB", + "geonameId": 2634578, + "latitudeCity": 52.3, + "longitudeCity": -0.7, + "nameCity": "Wellingborough", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 8524, + "codeIataCity": "XWH", + "codeIso2Country": "GB", + "geonameId": 2636841, + "latitudeCity": 53.0, + "longitudeCity": -2.18333, + "nameCity": "Stoke-on-Trent", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 8525, + "codeIataCity": "XWI", + "codeIso2Country": "GB", + "geonameId": 2633948, + "latitudeCity": 53.5333, + "longitudeCity": -2.61667, + "nameCity": "Wigan", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 8526, + "codeIataCity": "XWM", + "codeIso2Country": "SE", + "geonameId": 2708511, + "latitudeCity": 59.0657, + "longitudeCity": 15.11174, + "nameCity": "Hallsberg", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "0", + "cityId": 8527, + "codeIataCity": "XWN", + "codeIso2Country": "GB", + "geonameId": 0, + "latitudeCity": 53.3833, + "longitudeCity": -2.6, + "nameCity": "Warrington", + "timezone": "Europe/London" + }, + { + "GMT": "0", + "cityId": 8528, + "codeIataCity": "XWO", + "codeIso2Country": "GB", + "geonameId": 2633709, + "latitudeCity": 51.3167, + "longitudeCity": -0.533333, + "nameCity": "Woking", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 8529, + "codeIataCity": "XWP", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 56.13, + "longitudeCity": 13.88, + "nameCity": "Hassleholm", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 8530, + "codeIataCity": "XWQ", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 59.63, + "longitudeCity": 17.07, + "nameCity": "Enkoping", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "0", + "cityId": 8531, + "codeIataCity": "XWS", + "codeIso2Country": "GB", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Swindon", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 8532, + "codeIataCity": "XWV", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 57.1, + "longitudeCity": 12.25, + "nameCity": "Varberg", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 8533, + "codeIataCity": "XWX", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Nassjo", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "-5", + "cityId": 8534, + "codeIataCity": "XWY", + "codeIso2Country": "CA", + "geonameId": 6185024, + "latitudeCity": 39.1182, + "longitudeCity": -75.5588, + "nameCity": "Wyoming", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "cityId": 8535, + "codeIataCity": "XWZ", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 58.753138, + "longitudeCity": 17.008533, + "nameCity": "Nykoping", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 8536, + "codeIataCity": "XXA", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 56.9, + "longitudeCity": 14.55, + "nameCity": "Alvesta", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 8537, + "codeIataCity": "XXC", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Bo", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8538, + "codeIataCity": "XXD", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 64.2, + "longitudeCity": 19.7167, + "nameCity": "Degerfors", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 8539, + "codeIataCity": "XXE", + "codeIso2Country": "NO", + "geonameId": 3132208, + "latitudeCity": 58.26936, + "longitudeCity": 7.97413, + "nameCity": "Vennesla", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8540, + "codeIataCity": "XXG", + "codeIso2Country": "NO", + "geonameId": 3132176, + "latitudeCity": 63.79332, + "longitudeCity": 11.4817, + "nameCity": "Verdal", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8541, + "codeIataCity": "XXI", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Koping", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 8542, + "codeIataCity": "XXK", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 58.995917, + "longitudeCity": 16.206177, + "nameCity": "Katrineholm", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 8543, + "codeIataCity": "XXL", + "codeIso2Country": "NO", + "geonameId": 3147474, + "latitudeCity": 61.11514, + "longitudeCity": 10.46628, + "nameCity": "Lillehammer", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8544, + "codeIataCity": "XXM", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 58.3167, + "longitudeCity": 15.1333, + "nameCity": "Mjolby", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "3", + "cityId": 8545, + "codeIataCity": "XXN", + "codeIso2Country": "SE", + "geonameId": 108410, + "latitudeCity": 24.70983, + "longitudeCity": 46.72517, + "nameCity": "Kil", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "1", + "cityId": 8546, + "codeIataCity": "XXO", + "codeIso2Country": "SE", + "geonameId": 2696650, + "latitudeCity": 60.73387, + "longitudeCity": 15.00316, + "nameCity": "Leksand", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 8547, + "codeIataCity": "XXR", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Al", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8548, + "codeIataCity": "XXT", + "codeIso2Country": "SE", + "geonameId": 2725471, + "latitudeCity": 59.39387, + "longitudeCity": 15.83882, + "nameCity": "Arboga", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 8549, + "codeIataCity": "XXU", + "codeIso2Country": "SE", + "geonameId": 2706982, + "latitudeCity": 60.27973, + "longitudeCity": 15.98855, + "nameCity": "Hedemora", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 8550, + "codeIataCity": "XXV", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Kumla", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "11", + "cityId": 8551, + "codeIataCity": "XYA", + "codeIso2Country": "SB", + "geonameId": 2108502, + "latitudeCity": -9.116667, + "longitudeCity": 159.21666, + "nameCity": "Yandina", + "timezone": "Pacific/Guadalcanal" + }, + { + "GMT": "1", + "cityId": 8552, + "codeIataCity": "XYC", + "codeIso2Country": "SE", + "geonameId": 2706523, + "latitudeCity": 58.083333, + "longitudeCity": 13.033333, + "nameCity": "Herrljunga", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "6.30", + "cityId": 8553, + "codeIataCity": "XYE", + "codeIso2Country": "MM", + "geonameId": 0, + "latitudeCity": 15.25, + "longitudeCity": 97.85, + "nameCity": "Ye", + "timezone": "Asia/Rangoon" + }, + { + "GMT": "1", + "cityId": 8554, + "codeIataCity": "XYF", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Falkoping", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 8555, + "codeIataCity": "XYI", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Flen", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 8556, + "codeIataCity": "XYM", + "codeIso2Country": "SE", + "geonameId": 2715573, + "latitudeCity": 56.90552, + "longitudeCity": 12.49118, + "nameCity": "Falkenberg", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 8557, + "codeIataCity": "XYN", + "codeIso2Country": "SE", + "geonameId": 2699282, + "latitudeCity": 59.3333, + "longitudeCity": 14.1167, + "nameCity": "Kristinehamn", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 8558, + "codeIataCity": "XYO", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Karlshamn", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 8559, + "codeIataCity": "XYP", + "codeIso2Country": "SE", + "geonameId": 2724231, + "latitudeCity": 60.14545, + "longitudeCity": 16.16785, + "nameCity": "Avesta Krylbo", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "10", + "cityId": 8560, + "codeIataCity": "XYR", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -3.883333, + "longitudeCity": 141.78334, + "nameCity": "Yellow River", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "1", + "cityId": 8561, + "codeIataCity": "XYU", + "codeIso2Country": "SE", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Solvesborg", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 8562, + "codeIataCity": "XYX", + "codeIso2Country": "SE", + "geonameId": 2680662, + "latitudeCity": 59.91993, + "longitudeCity": 16.60655, + "nameCity": "Sala", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "1", + "cityId": 8563, + "codeIataCity": "XYY", + "codeIso2Country": "SE", + "geonameId": 2725123, + "latitudeCity": 59.6667, + "longitudeCity": 12.5667, + "nameCity": "Arvika", + "timezone": "Europe/Stockholm" + }, + { + "GMT": "0", + "cityId": 8564, + "codeIataCity": "XZA", + "codeIso2Country": "BF", + "geonameId": 0, + "latitudeCity": 11.133333, + "longitudeCity": -1.0, + "nameCity": "Zabre", + "timezone": "Africa/Ouagadougou" + }, + { + "GMT": "-5", + "cityId": 8565, + "codeIataCity": "XZB", + "codeIso2Country": "CA", + "geonameId": 5918021, + "latitudeCity": 45.3168, + "longitudeCity": -75.0826, + "nameCity": "Casselman", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8566, + "codeIataCity": "XZC", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": -37.6667, + "longitudeCity": 140.583, + "nameCity": "Glencoe", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "cityId": 8567, + "codeIataCity": "XZD", + "codeIso2Country": "NO", + "geonameId": 3149533, + "latitudeCity": 60.1875, + "longitudeCity": 12.001667, + "nameCity": "Kongsvinger", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-4", + "cityId": 8568, + "codeIataCity": "XZK", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": -37.15, + "longitudeCity": 143.667, + "nameCity": "Amherst", + "timezone": "America/Halifax" + }, + { + "GMT": "-8", + "cityId": 8569, + "codeIataCity": "YAA", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.45, + "longitudeCity": -125.3, + "nameCity": "Anahim Lake", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8570, + "codeIataCity": "YAB", + "codeIso2Country": "CA", + "geonameId": 5886735, + "latitudeCity": 73.03333, + "longitudeCity": -85.183334, + "nameCity": "Arctic Bay", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-6", + "cityId": 8571, + "codeIataCity": "YAC", + "codeIso2Country": "CA", + "geonameId": 5918424, + "latitudeCity": 51.716667, + "longitudeCity": -91.816666, + "nameCity": "Cat Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-6", + "cityId": 8572, + "codeIataCity": "YAD", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 50.38333, + "longitudeCity": -105.53333, + "nameCity": "Moose Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-8", + "cityId": 8573, + "codeIataCity": "YAE", + "codeIso2Country": "CA", + "geonameId": 5884233, + "latitudeCity": 50.166668, + "longitudeCity": -123.0, + "nameCity": "Alta Lake", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8574, + "codeIataCity": "YAF", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 45.766666, + "longitudeCity": -71.95, + "nameCity": "Asbestos Hill", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "cityId": 8575, + "codeIataCity": "YAG", + "codeIso2Country": "CA", + "geonameId": 5955826, + "latitudeCity": 48.65278, + "longitudeCity": -93.44722, + "nameCity": "Fort Frances", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "cityId": 8576, + "codeIataCity": "YAH", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 53.75, + "longitudeCity": -73.65, + "nameCity": "Lagrande 4", + "timezone": "America/Montreal" + }, + { + "GMT": "-4", + "cityId": 8577, + "codeIataCity": "YAI", + "codeIso2Country": "CL", + "geonameId": 3895088, + "latitudeCity": -36.6, + "longitudeCity": -72.11667, + "nameCity": "Chillan", + "timezone": "America/Santiago" + }, + { + "GMT": "-8", + "cityId": 8578, + "codeIataCity": "YAJ", + "codeIso2Country": "CA", + "geonameId": 6174041, + "latitudeCity": 48.8, + "longitudeCity": -123.2, + "nameCity": "Lyall Harbour", + "timezone": "America/Vancouver" + }, + { + "GMT": "-9", + "cityId": 8579, + "codeIataCity": "YAK", + "codeIso2Country": "US", + "geonameId": 5558615, + "latitudeCity": 59.509167, + "longitudeCity": -139.65973, + "nameCity": "Yakutat", + "timezone": "America/Yakutat" + }, + { + "GMT": "-8", + "cityId": 8580, + "codeIataCity": "YAL", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 50.583332, + "longitudeCity": -126.916664, + "nameCity": "Alert Bay", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8581, + "codeIataCity": "YAM", + "codeIso2Country": "CA", + "geonameId": 6141439, + "latitudeCity": 46.485302, + "longitudeCity": -84.49995, + "nameCity": "Sault Sainte Marie", + "timezone": "America/Toronto" + }, + { + "GMT": "2", + "cityId": 8582, + "codeIataCity": "YAN", + "codeIso2Country": "CD", + "geonameId": 0, + "latitudeCity": 0.783333, + "longitudeCity": 24.4, + "nameCity": "Yangambi", + "timezone": "Africa/Lubumbashi" + }, + { + "GMT": "1", + "cityId": 8583, + "codeIataCity": "YAO", + "codeIso2Country": "CM", + "geonameId": 0, + "latitudeCity": 3.866667, + "longitudeCity": 11.516667, + "nameCity": "Yaounde", + "timezone": "Africa/Douala" + }, + { + "GMT": "10", + "cityId": 8584, + "codeIataCity": "YAP", + "codeIso2Country": "FM", + "geonameId": 7648112, + "latitudeCity": 9.497715, + "longitudeCity": 138.08673, + "nameCity": "Yap", + "timezone": "Pacific/Chuuk" + }, + { + "GMT": "-8", + "cityId": 8585, + "codeIataCity": "YAQ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 48.816666, + "longitudeCity": -123.61667, + "nameCity": "Maple Bay", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8586, + "codeIataCity": "YAR", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 53.55, + "longitudeCity": -76.2, + "nameCity": "Lagrande 3", + "timezone": "America/Montreal" + }, + { + "GMT": "12", + "cityId": 8587, + "codeIataCity": "YAS", + "codeIso2Country": "FJ", + "geonameId": 0, + "latitudeCity": -16.783333, + "longitudeCity": 177.51666, + "nameCity": "Yasawa Island", + "timezone": "Pacific/Fiji" + }, + { + "GMT": "-5", + "cityId": 8588, + "codeIataCity": "YAT", + "codeIso2Country": "CA", + "geonameId": 5888118, + "latitudeCity": 52.941666, + "longitudeCity": -82.4, + "nameCity": "Attawapiskat", + "timezone": "America/Toronto" + }, + { + "GMT": "-4", + "cityId": 8589, + "codeIataCity": "YAU", + "codeIso2Country": "CA", + "geonameId": 5885421, + "latitudeCity": 61.662777, + "longitudeCity": -73.31694, + "nameCity": "Kattiniq", + "timezone": "America/Halifax" + }, + { + "GMT": "-8", + "cityId": 8590, + "codeIataCity": "YAV", + "codeIso2Country": "CA", + "geonameId": 6183235, + "latitudeCity": 48.86667, + "longitudeCity": -123.3, + "nameCity": "Miners Bay", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 8591, + "codeIataCity": "YAX", + "codeIso2Country": "CA", + "geonameId": 5885242, + "latitudeCity": 53.251945, + "longitudeCity": -89.565, + "nameCity": "Angling Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-2:30", + "cityId": 8592, + "codeIataCity": "YAY", + "codeIso2Country": "CA", + "geonameId": 6064382, + "latitudeCity": 51.36667, + "longitudeCity": -55.583332, + "nameCity": "St Anthony", + "timezone": "America/St_Johns" + }, + { + "GMT": "-8", + "cityId": 8593, + "codeIataCity": "YAZ", + "codeIso2Country": "CA", + "geonameId": 6354950, + "latitudeCity": 49.152434, + "longitudeCity": -125.902493, + "nameCity": "Tofino", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "cityId": 8594, + "codeIataCity": "YBA", + "codeIso2Country": "CA", + "geonameId": 5892532, + "latitudeCity": 51.166668, + "longitudeCity": -115.566666, + "nameCity": "Banff", + "timezone": "America/Edmonton" + }, + { + "GMT": "-7", + "cityId": 8595, + "codeIataCity": "YBB", + "codeIso2Country": "CA", + "geonameId": 5994330, + "latitudeCity": 68.88333, + "longitudeCity": -89.85, + "nameCity": "Kugaaruk", + "timezone": "America/Cambridge_Bay" + }, + { + "GMT": "-5", + "cityId": 8596, + "codeIataCity": "YBC", + "codeIso2Country": "CA", + "geonameId": 5889745, + "latitudeCity": 49.2, + "longitudeCity": -68.26667, + "nameCity": "Baie Comeau", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "cityId": 8597, + "codeIataCity": "YBD", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 49.216667, + "longitudeCity": -122.9, + "nameCity": "New Westminster", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 8598, + "codeIataCity": "YBE", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 59.566666, + "longitudeCity": -108.48333, + "nameCity": "Uranium City", + "timezone": "America/Regina" + }, + { + "GMT": "-8", + "cityId": 8599, + "codeIataCity": "YBF", + "codeIso2Country": "CA", + "geonameId": 5892444, + "latitudeCity": 48.833332, + "longitudeCity": -125.13333, + "nameCity": "Bamfield", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8600, + "codeIataCity": "YBG", + "codeIso2Country": "CA", + "geonameId": 5921225, + "latitudeCity": 48.322224, + "longitudeCity": -70.98861, + "nameCity": "Bagotville", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "cityId": 8601, + "codeIataCity": "YBH", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 50.9, + "longitudeCity": -127.916664, + "nameCity": "Bull Harbour", + "timezone": "America/Vancouver" + }, + { + "GMT": "-4", + "cityId": 8602, + "codeIataCity": "YBI", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 53.45, + "longitudeCity": -55.733334, + "nameCity": "Black Tickle", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-5", + "cityId": 8603, + "codeIataCity": "YBJ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 50.5, + "longitudeCity": -62.916668, + "nameCity": "Baie Johan Beetz", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "cityId": 8604, + "codeIataCity": "YBK", + "codeIso2Country": "CA", + "geonameId": 5891871, + "latitudeCity": 64.3, + "longitudeCity": -96.083336, + "nameCity": "Baker Lake", + "timezone": "America/Rankin_Inlet" + }, + { + "GMT": "-8", + "cityId": 8605, + "codeIataCity": "YBL", + "codeIso2Country": "CA", + "geonameId": 5914132, + "latitudeCity": 50.029164, + "longitudeCity": -125.273987, + "nameCity": "Campbell River", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "cityId": 8606, + "codeIataCity": "YBM", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 56.7, + "longitudeCity": -131.0, + "nameCity": "Bronson Creek", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8607, + "codeIataCity": "YBN", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 46.3, + "longitudeCity": -63.783333, + "nameCity": "Borden", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "cityId": 8608, + "codeIataCity": "YBO", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 56.966667, + "longitudeCity": -130.25, + "nameCity": "Bobquinn Lake", + "timezone": "America/Vancouver" + }, + { + "GMT": "8", + "cityId": 8609, + "codeIataCity": "YBP", + "codeIso2Country": "CN", + "geonameId": 1786770, + "latitudeCity": 28.797659, + "longitudeCity": 104.54395, + "nameCity": "Yibin", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-8", + "cityId": 8610, + "codeIataCity": "YBQ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 48.983334, + "longitudeCity": -123.65, + "nameCity": "Telegraph Harbour", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 8611, + "codeIataCity": "YBR", + "codeIso2Country": "CA", + "geonameId": 5907896, + "latitudeCity": 49.9, + "longitudeCity": -99.95, + "nameCity": "Brandon", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "cityId": 8612, + "codeIataCity": "YBS", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.606667, + "longitudeCity": -90.376945, + "nameCity": "Opapamiska Lake", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "cityId": 8613, + "codeIataCity": "YBT", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 57.88333, + "longitudeCity": -101.666664, + "nameCity": "Brochet", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-6", + "cityId": 8614, + "codeIataCity": "YBV", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.355556, + "longitudeCity": -97.01667, + "nameCity": "Berens River", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-8", + "cityId": 8615, + "codeIataCity": "YBW", + "codeIso2Country": "CA", + "geonameId": 6174041, + "latitudeCity": 48.75, + "longitudeCity": -123.23333, + "nameCity": "Bedwell Harbor", + "timezone": "America/Vancouver" + }, + { + "GMT": "-4", + "cityId": 8616, + "codeIataCity": "YBX", + "codeIso2Country": "CA", + "geonameId": 6064382, + "latitudeCity": 51.433334, + "longitudeCity": -57.216667, + "nameCity": "Blanc Sablon", + "timezone": "America/Blanc-Sablon" + }, + { + "GMT": "-7", + "cityId": 8617, + "codeIataCity": "YBY", + "codeIso2Country": "CA", + "geonameId": 5905616, + "latitudeCity": 54.266666, + "longitudeCity": -110.73333, + "nameCity": "Bonnyville", + "timezone": "America/Edmonton" + }, + { + "GMT": "-8", + "cityId": 8618, + "codeIataCity": "YCA", + "codeIso2Country": "CA", + "geonameId": 5930890, + "latitudeCity": 49.683334, + "longitudeCity": -124.98333, + "nameCity": "Courtenay", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "cityId": 8619, + "codeIataCity": "YCB", + "codeIso2Country": "CA", + "geonameId": 5913698, + "latitudeCity": 69.1, + "longitudeCity": -105.13333, + "nameCity": "Cambridge Bay", + "timezone": "America/Cambridge_Bay" + }, + { + "GMT": "-5", + "cityId": 8620, + "codeIataCity": "YCC", + "codeIso2Country": "CA", + "geonameId": 5928065, + "latitudeCity": 45.1, + "longitudeCity": -74.566666, + "nameCity": "Cornwall", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "cityId": 8621, + "codeIataCity": "YCD", + "codeIso2Country": "CA", + "geonameId": 6085772, + "latitudeCity": 49.05, + "longitudeCity": -123.86667, + "nameCity": "Nanaimo", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8622, + "codeIataCity": "YCE", + "codeIso2Country": "CA", + "geonameId": 5913695, + "latitudeCity": 43.283333, + "longitudeCity": -81.48333, + "nameCity": "Centralia", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "cityId": 8623, + "codeIataCity": "YCF", + "codeIso2Country": "CA", + "geonameId": 5928196, + "latitudeCity": 50.066666, + "longitudeCity": -124.933334, + "nameCity": "Cortes Bay", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "cityId": 8624, + "codeIataCity": "YCG", + "codeIso2Country": "CA", + "geonameId": 5918118, + "latitudeCity": 49.295555, + "longitudeCity": -117.632225, + "nameCity": "Castlegar", + "timezone": "America/Vancouver" + }, + { + "GMT": "-4", + "cityId": 8625, + "codeIataCity": "YCH", + "codeIso2Country": "CA", + "geonameId": 6075081, + "latitudeCity": 47.014008, + "longitudeCity": -65.44744, + "nameCity": "Miramichi", + "timezone": "America/Moncton" + }, + { + "GMT": "-5", + "cityId": 8626, + "codeIataCity": "YCI", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 61.916668, + "longitudeCity": -113.25, + "nameCity": "Caribou Island", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "cityId": 8627, + "codeIataCity": "YCJ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 51.933334, + "longitudeCity": -131.01666, + "nameCity": "Cape St James", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "cityId": 8628, + "codeIataCity": "YCK", + "codeIso2Country": "CA", + "geonameId": 5926246, + "latitudeCity": 67.03993, + "longitudeCity": -126.09047, + "nameCity": "Colville Lake", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-4", + "cityId": 8629, + "codeIataCity": "YCL", + "codeIso2Country": "CA", + "geonameId": 6943599, + "latitudeCity": 47.983334, + "longitudeCity": -66.333336, + "nameCity": "Charlo", + "timezone": "America/Moncton" + }, + { + "GMT": "-5", + "cityId": 8630, + "codeIataCity": "YCM", + "codeIso2Country": "CA", + "geonameId": 6167865, + "latitudeCity": 43.2, + "longitudeCity": -79.166664, + "nameCity": "St Catharines", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8631, + "codeIataCity": "YCN", + "codeIso2Country": "CA", + "geonameId": 5924614, + "latitudeCity": 49.066666, + "longitudeCity": -81.01667, + "nameCity": "Cochrane", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "cityId": 8632, + "codeIataCity": "YCO", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 67.833336, + "longitudeCity": -115.083336, + "nameCity": "Kugluktuk", + "timezone": "America/Cambridge_Bay" + }, + { + "GMT": "-6", + "cityId": 8633, + "codeIataCity": "YCP", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 57.066666, + "longitudeCity": -102.03333, + "nameCity": "Co-op Point", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-7", + "cityId": 8634, + "codeIataCity": "YCQ", + "codeIso2Country": "CA", + "geonameId": 5921091, + "latitudeCity": 55.683334, + "longitudeCity": -121.63333, + "nameCity": "Chetwynd", + "timezone": "America/Dawson_Creek" + }, + { + "GMT": "-6", + "cityId": 8635, + "codeIataCity": "YCR", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 54.63333, + "longitudeCity": -97.8, + "nameCity": "Cross Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-6", + "cityId": 8636, + "codeIataCity": "YCS", + "codeIso2Country": "CA", + "geonameId": 5921048, + "latitudeCity": 63.333332, + "longitudeCity": -90.71667, + "nameCity": "Chesterfield Inlet", + "timezone": "America/Rankin_Inlet" + }, + { + "GMT": "-7", + "cityId": 8637, + "codeIataCity": "YCT", + "codeIso2Country": "CA", + "geonameId": 6156307, + "latitudeCity": 52.1, + "longitudeCity": -111.416664, + "nameCity": "Coronation", + "timezone": "America/Edmonton" + }, + { + "GMT": "8", + "cityId": 8638, + "codeIataCity": "YCU", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 35.018, + "longitudeCity": 110.993, + "nameCity": "Yun Cheng", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 8639, + "codeIataCity": "YCV", + "codeIso2Country": "CA", + "geonameId": 5917781, + "latitudeCity": 45.516666, + "longitudeCity": -73.75, + "nameCity": "Cartierville", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "cityId": 8640, + "codeIataCity": "YCW", + "codeIso2Country": "CA", + "geonameId": 5881791, + "latitudeCity": 49.166668, + "longitudeCity": -121.9, + "nameCity": "Chilliwack", + "timezone": "America/Vancouver" + }, + { + "GMT": "-4", + "cityId": 8641, + "codeIataCity": "YCX", + "codeIso2Country": "CA", + "geonameId": 5958945, + "latitudeCity": 45.766666, + "longitudeCity": -66.166664, + "nameCity": "Gagetown", + "timezone": "America/Moncton" + }, + { + "GMT": "-5", + "cityId": 8642, + "codeIataCity": "YCY", + "codeIso2Country": "CA", + "geonameId": 5924351, + "latitudeCity": 70.416664, + "longitudeCity": -68.5, + "nameCity": "Clyde River", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-7", + "cityId": 8643, + "codeIataCity": "YCZ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 50.331944, + "longitudeCity": -115.87361, + "nameCity": "Fairmont Hot Springs", + "timezone": "America/Edmonton" + }, + { + "GMT": "-8", + "cityId": 8644, + "codeIataCity": "YDA", + "codeIso2Country": "CA", + "geonameId": 6943713, + "latitudeCity": 64.041664, + "longitudeCity": -139.12083, + "nameCity": "Dawson City", + "timezone": "America/Dawson" + }, + { + "GMT": "-8", + "cityId": 8645, + "codeIataCity": "YDB", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 61.35, + "longitudeCity": -139.01666, + "nameCity": "Burwash Landings", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-7", + "cityId": 8646, + "codeIataCity": "YDC", + "codeIso2Country": "CA", + "geonameId": 5942547, + "latitudeCity": 53.2, + "longitudeCity": -114.96667, + "nameCity": "Drayton Valley", + "timezone": "America/Edmonton" + }, + { + "GMT": "-4", + "cityId": 8647, + "codeIataCity": "YDE", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 53.433334, + "longitudeCity": -57.233334, + "nameCity": "Paradise River", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-2:30", + "cityId": 8648, + "codeIataCity": "YDF", + "codeIso2Country": "CA", + "geonameId": 5937252, + "latitudeCity": 49.21027, + "longitudeCity": -57.399727, + "nameCity": "Deer Lake", + "timezone": "America/St_Johns" + }, + { + "GMT": "-4", + "cityId": 8649, + "codeIataCity": "YDG", + "codeIso2Country": "CA", + "geonameId": 5939236, + "latitudeCity": 44.61667, + "longitudeCity": -65.76667, + "nameCity": "Digby", + "timezone": "America/Halifax" + }, + { + "GMT": "-2:30", + "cityId": 8650, + "codeIataCity": "YDH", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 50.216667, + "longitudeCity": -57.583332, + "nameCity": "Daniels Harbour", + "timezone": "America/St_Johns" + }, + { + "GMT": "-4", + "cityId": 8651, + "codeIataCity": "YDI", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 55.933334, + "longitudeCity": -60.95, + "nameCity": "Davis Inlet", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-6", + "cityId": 8652, + "codeIataCity": "YDJ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 58.660557, + "longitudeCity": -102.539444, + "nameCity": "Hatchet Lake", + "timezone": "America/Regina" + }, + { + "GMT": "-5", + "cityId": 8653, + "codeIataCity": "YDK", + "codeIso2Country": "CA", + "geonameId": 5959326, + "latitudeCity": 43.933334, + "longitudeCity": -76.61667, + "nameCity": "Main Duck Island", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "cityId": 8654, + "codeIataCity": "YDL", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 58.583332, + "longitudeCity": -130.03334, + "nameCity": "Dease Lake", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 8655, + "codeIataCity": "YDN", + "codeIso2Country": "CA", + "geonameId": 5935341, + "latitudeCity": 51.1, + "longitudeCity": -100.05, + "nameCity": "Dauphin", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "cityId": 8656, + "codeIataCity": "YDO", + "codeIso2Country": "CA", + "geonameId": 6138201, + "latitudeCity": 48.86667, + "longitudeCity": -72.23333, + "nameCity": "Dolbeau", + "timezone": "America/Montreal" + }, + { + "GMT": "-4", + "cityId": 8657, + "codeIataCity": "YDP", + "codeIso2Country": "CA", + "geonameId": 6943610, + "latitudeCity": 56.533333, + "longitudeCity": -61.666668, + "nameCity": "Nain", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-7", + "cityId": 8658, + "codeIataCity": "YDQ", + "codeIso2Country": "CA", + "geonameId": 5935804, + "latitudeCity": 55.733334, + "longitudeCity": -120.183334, + "nameCity": "Dawson Creek", + "timezone": "America/Dawson_Creek" + }, + { + "GMT": "-6", + "cityId": 8659, + "codeIataCity": "YDR", + "codeIso2Country": "CA", + "geonameId": 5909230, + "latitudeCity": 50.36667, + "longitudeCity": -102.583336, + "nameCity": "Broadview", + "timezone": "America/Regina" + }, + { + "GMT": "-8", + "cityId": 8660, + "codeIataCity": "YDS", + "codeIso2Country": "CA", + "geonameId": 6062033, + "latitudeCity": 49.965996, + "longitudeCity": -124.72931, + "nameCity": "Desolation Sound", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "cityId": 8661, + "codeIataCity": "YDU", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 60.29028, + "longitudeCity": -102.503334, + "nameCity": "Kasba Lake", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-6", + "cityId": 8662, + "codeIataCity": "YDV", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 51.75, + "longitudeCity": -96.73333, + "nameCity": "Bloodvein", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-7", + "cityId": 8663, + "codeIataCity": "YDW", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 60.323055, + "longitudeCity": -103.13306, + "nameCity": "Obre Lake", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-8", + "cityId": 8664, + "codeIataCity": "YDX", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.05, + "longitudeCity": -128.08333, + "nameCity": "Doc Creek", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "cityId": 8665, + "codeIataCity": "YEA", + "codeIso2Country": "CA", + "geonameId": 5946768, + "latitudeCity": 53.548, + "longitudeCity": -113.49, + "nameCity": "Edmonton", + "timezone": "America/Edmonton" + }, + { + "GMT": "-5", + "cityId": 8666, + "codeIataCity": "YEB", + "codeIso2Country": "CA", + "geonameId": 6141439, + "latitudeCity": 46.4178, + "longitudeCity": -84.0933, + "nameCity": "Bar River", + "timezone": "America/Toronto" + }, + { + "GMT": "9", + "cityId": 8667, + "codeIataCity": "YEC", + "codeIso2Country": "KR", + "geonameId": 1845604, + "latitudeCity": 36.625, + "longitudeCity": 128.355, + "nameCity": "Yecheon", + "timezone": "Asia/Seoul" + }, + { + "GMT": "3", + "cityId": 8668, + "codeIataCity": "YEI", + "codeIso2Country": "TR", + "geonameId": 750269, + "latitudeCity": 40.233334, + "longitudeCity": 29.55, + "nameCity": "Bursa", + "timezone": "Europe/Istanbul" + }, + { + "GMT": "-6", + "cityId": 8669, + "codeIataCity": "YEK", + "codeIso2Country": "CA", + "geonameId": 5887448, + "latitudeCity": 61.11667, + "longitudeCity": -94.05, + "nameCity": "Arviat", + "timezone": "America/Rankin_Inlet" + }, + { + "GMT": "-5", + "cityId": 8670, + "codeIataCity": "YEL", + "codeIso2Country": "CA", + "geonameId": 5947866, + "latitudeCity": 46.352222, + "longitudeCity": -82.56306, + "nameCity": "Elliot Lake", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8671, + "codeIataCity": "YEM", + "codeIso2Country": "CA", + "geonameId": 5964700, + "latitudeCity": 45.842777, + "longitudeCity": -81.858055, + "nameCity": "Manitowaning", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "cityId": 8672, + "codeIataCity": "YEN", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 49.166668, + "longitudeCity": -102.98333, + "nameCity": "Estevan", + "timezone": "America/Regina" + }, + { + "GMT": "0", + "cityId": 8673, + "codeIataCity": "YEO", + "codeIso2Country": "GB", + "geonameId": 2633373, + "latitudeCity": 51.016666, + "longitudeCity": -2.55, + "nameCity": "Yeovilton", + "timezone": "Europe/London" + }, + { + "GMT": "-8", + "cityId": 8674, + "codeIataCity": "YEP", + "codeIso2Country": "CA", + "geonameId": 6171633, + "latitudeCity": 49.38333, + "longitudeCity": -126.53333, + "nameCity": "Estevan Point", + "timezone": "America/Vancouver" + }, + { + "GMT": "10", + "cityId": 8675, + "codeIataCity": "YEQ", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -5.1, + "longitudeCity": 143.91667, + "nameCity": "Yenkis", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-5", + "cityId": 8676, + "codeIataCity": "YER", + "codeIso2Country": "CA", + "geonameId": 5955950, + "latitudeCity": 56.033333, + "longitudeCity": -87.833336, + "nameCity": "Fort Severn", + "timezone": "America/Toronto" + }, + { + "GMT": "3.30", + "cityId": 8677, + "codeIataCity": "YES", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 30.699774, + "longitudeCity": 51.55276, + "nameCity": "Yasouj", + "timezone": "Asia/Tehran" + }, + { + "GMT": "-7", + "cityId": 8678, + "codeIataCity": "YET", + "codeIso2Country": "CA", + "geonameId": 5946820, + "latitudeCity": 53.583332, + "longitudeCity": -116.46667, + "nameCity": "Edson", + "timezone": "America/Edmonton" + }, + { + "GMT": "-6", + "cityId": 8679, + "codeIataCity": "YEU", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 80.0, + "longitudeCity": -85.933334, + "nameCity": "Eureka", + "timezone": "America/Rankin_Inlet" + }, + { + "GMT": "-7", + "cityId": 8680, + "codeIataCity": "YEV", + "codeIso2Country": "CA", + "geonameId": 5983607, + "latitudeCity": 68.30665, + "longitudeCity": -133.49767, + "nameCity": "Inuvik", + "timezone": "America/Inuvik" + }, + { + "GMT": "-5", + "cityId": 8681, + "codeIataCity": "YEY", + "codeIso2Country": "CA", + "geonameId": 5884588, + "latitudeCity": 48.552223, + "longitudeCity": -78.25, + "nameCity": "Amos", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8682, + "codeIataCity": "YFA", + "codeIso2Country": "CA", + "geonameId": 5955777, + "latitudeCity": 52.24167, + "longitudeCity": -81.59167, + "nameCity": "Fort Albany", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8683, + "codeIataCity": "YFB", + "codeIso2Country": "CA", + "geonameId": 5983720, + "latitudeCity": 63.75175, + "longitudeCity": -68.53658, + "nameCity": "Iqaluit", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-4", + "cityId": 8684, + "codeIataCity": "YFC", + "codeIso2Country": "CA", + "geonameId": 5957776, + "latitudeCity": 45.87316, + "longitudeCity": -66.52978, + "nameCity": "Fredericton", + "timezone": "America/Moncton" + }, + { + "GMT": "-5", + "cityId": 8685, + "codeIataCity": "YFE", + "codeIso2Country": "CA", + "geonameId": 5889745, + "latitudeCity": 48.75, + "longitudeCity": -69.066666, + "nameCity": "Forestville", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8686, + "codeIataCity": "YFG", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 54.55, + "longitudeCity": -71.183334, + "nameCity": "Fontanges", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8687, + "codeIataCity": "YFH", + "codeIso2Country": "CA", + "geonameId": 5955850, + "latitudeCity": 51.559345, + "longitudeCity": -87.89796, + "nameCity": "Fort Hope", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "cityId": 8688, + "codeIataCity": "YFJ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 64.19056, + "longitudeCity": -114.075554, + "nameCity": "Snare Lake", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-7", + "cityId": 8689, + "codeIataCity": "YFL", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 62.7, + "longitudeCity": -109.13333, + "nameCity": "Fort Reliance", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-6", + "cityId": 8690, + "codeIataCity": "YFO", + "codeIso2Country": "CA", + "geonameId": 5954718, + "latitudeCity": 54.683334, + "longitudeCity": -101.683334, + "nameCity": "Flin Flon", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-7", + "cityId": 8691, + "codeIataCity": "YFR", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 61.183334, + "longitudeCity": -113.683334, + "nameCity": "Fort Resolution", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-7", + "cityId": 8692, + "codeIataCity": "YFS", + "codeIso2Country": "CA", + "geonameId": 5955953, + "latitudeCity": 61.75, + "longitudeCity": -121.23333, + "nameCity": "Fort Simpson", + "timezone": "America/Yellowknife" + }, + { + "GMT": "8", + "cityId": 8693, + "codeIataCity": "YFT", + "codeIso2Country": "MO", + "geonameId": 1821263, + "latitudeCity": -18.178333, + "longitudeCity": 125.55417, + "nameCity": "Taipa", + "timezone": "Asia/Macau" + }, + { + "GMT": "-2:30", + "cityId": 8694, + "codeIataCity": "YFX", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.36667, + "longitudeCity": -55.683334, + "nameCity": "Fox Harbour (St Lewis)", + "timezone": "America/St_Johns" + }, + { + "GMT": "-5", + "cityId": 8695, + "codeIataCity": "YGA", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 51.95, + "longitudeCity": -68.13333, + "nameCity": "Gagnon", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "cityId": 8696, + "codeIataCity": "YGB", + "codeIso2Country": "CA", + "geonameId": 5961233, + "latitudeCity": 49.7, + "longitudeCity": -124.53333, + "nameCity": "Gillies Bay", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "cityId": 8697, + "codeIataCity": "YGC", + "codeIso2Country": "CA", + "geonameId": 5975503, + "latitudeCity": 53.916668, + "longitudeCity": -118.86667, + "nameCity": "Grande Cache", + "timezone": "America/Edmonton" + }, + { + "GMT": "-8", + "cityId": 8698, + "codeIataCity": "YGE", + "codeIso2Country": "CA", + "geonameId": 5914132, + "latitudeCity": 50.083332, + "longitudeCity": -124.95, + "nameCity": "Gorge Harbor", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "cityId": 8699, + "codeIataCity": "YGG", + "codeIso2Country": "CA", + "geonameId": 5959360, + "latitudeCity": 48.85, + "longitudeCity": -123.5, + "nameCity": "Ganges Harbor", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "cityId": 8700, + "codeIataCity": "YGH", + "codeIso2Country": "CA", + "geonameId": 5955840, + "latitudeCity": 66.26667, + "longitudeCity": -128.65, + "nameCity": "Fort Good Hope", + "timezone": "America/Yellowknife" + }, + { + "GMT": "9", + "cityId": 8701, + "codeIataCity": "YGJ", + "codeIso2Country": "JP", + "geonameId": 1848277, + "latitudeCity": 35.500652, + "longitudeCity": 133.24448, + "nameCity": "Yonago", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "-5", + "cityId": 8702, + "codeIataCity": "YGK", + "codeIso2Country": "CA", + "geonameId": 5992500, + "latitudeCity": 44.263565, + "longitudeCity": -76.50336, + "nameCity": "Kingston", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8703, + "codeIataCity": "YGL", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 53.629723, + "longitudeCity": -77.70639, + "nameCity": "La Grande", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "cityId": 8704, + "codeIataCity": "YGM", + "codeIso2Country": "CA", + "geonameId": 6183235, + "latitudeCity": 50.666668, + "longitudeCity": -97.0, + "nameCity": "Gimli", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-8", + "cityId": 8705, + "codeIataCity": "YGN", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 50.85, + "longitudeCity": -126.85, + "nameCity": "Greenway Sound", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 8706, + "codeIataCity": "YGO", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 54.55, + "longitudeCity": -94.48333, + "nameCity": "Gods Narrows", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "cityId": 8707, + "codeIataCity": "YGP", + "codeIso2Country": "CA", + "geonameId": 5959878, + "latitudeCity": 48.902945, + "longitudeCity": -64.478683, + "nameCity": "Gaspe", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8708, + "codeIataCity": "YGQ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 49.733334, + "longitudeCity": -86.95, + "nameCity": "Geraldton", + "timezone": "America/Toronto" + }, + { + "GMT": "-4", + "cityId": 8709, + "codeIataCity": "YGR", + "codeIso2Country": "CA", + "geonameId": 5915327, + "latitudeCity": 47.36667, + "longitudeCity": -61.9, + "nameCity": "Iles De La Madeleine", + "timezone": "America/Halifax" + }, + { + "GMT": "-8", + "cityId": 8710, + "codeIataCity": "YGS", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 55.783333, + "longitudeCity": -124.71667, + "nameCity": "Germansen", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8711, + "codeIataCity": "YGT", + "codeIso2Country": "CA", + "geonameId": 5979345, + "latitudeCity": 69.4, + "longitudeCity": -81.816666, + "nameCity": "Igloolik", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-5", + "cityId": 8712, + "codeIataCity": "YGV", + "codeIso2Country": "CA", + "geonameId": 6111957, + "latitudeCity": 50.25, + "longitudeCity": -63.583332, + "nameCity": "Havre St Pierre", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8713, + "codeIataCity": "YGW", + "codeIso2Country": "CA", + "geonameId": 5994519, + "latitudeCity": 55.279167, + "longitudeCity": -77.76667, + "nameCity": "Kuujjuarapik", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "cityId": 8714, + "codeIataCity": "YGX", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 56.35, + "longitudeCity": -94.7, + "nameCity": "Gillam", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "cityId": 8715, + "codeIataCity": "YGY", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 62.1, + "longitudeCity": -74.61667, + "nameCity": "Deception", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8716, + "codeIataCity": "YGZ", + "codeIso2Country": "CA", + "geonameId": 5967230, + "latitudeCity": 76.41778, + "longitudeCity": -82.95722, + "nameCity": "Grise Fiord", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-2:30", + "cityId": 8717, + "codeIataCity": "YHA", + "codeIso2Country": "CA", + "geonameId": 6111885, + "latitudeCity": 52.533333, + "longitudeCity": -56.3, + "nameCity": "Port Hope Simpson", + "timezone": "America/St_Johns" + }, + { + "GMT": "-6", + "cityId": 8718, + "codeIataCity": "YHB", + "codeIso2Country": "CA", + "geonameId": 5978133, + "latitudeCity": 52.86667, + "longitudeCity": -102.416664, + "nameCity": "Hudson Bay", + "timezone": "America/Regina" + }, + { + "GMT": "-8", + "cityId": 8719, + "codeIataCity": "YHC", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 51.733334, + "longitudeCity": -128.11667, + "nameCity": "Hakai Pass", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 8720, + "codeIataCity": "YHD", + "codeIso2Country": "CA", + "geonameId": 5942913, + "latitudeCity": 49.783333, + "longitudeCity": -92.833336, + "nameCity": "Dryden", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-8", + "cityId": 8721, + "codeIataCity": "YHE", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 49.416668, + "longitudeCity": -121.416664, + "nameCity": "Hope", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8722, + "codeIataCity": "YHF", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 49.716667, + "longitudeCity": -83.683334, + "nameCity": "Hearst", + "timezone": "America/Toronto" + }, + { + "GMT": "-2:30", + "cityId": 8723, + "codeIataCity": "YHG", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.766666, + "longitudeCity": -56.1, + "nameCity": "Charlottetown", + "timezone": "America/St_Johns" + }, + { + "GMT": "-7", + "cityId": 8724, + "codeIataCity": "YHI", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 70.71667, + "longitudeCity": -117.71667, + "nameCity": "Holman", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-7", + "cityId": 8725, + "codeIataCity": "YHK", + "codeIso2Country": "CA", + "geonameId": 5961560, + "latitudeCity": 68.63333, + "longitudeCity": -95.95, + "nameCity": "Gjoa Haven", + "timezone": "America/Cambridge_Bay" + }, + { + "GMT": "-5", + "cityId": 8726, + "codeIataCity": "YHN", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 49.216667, + "longitudeCity": -84.78333, + "nameCity": "Hornepayne", + "timezone": "America/Toronto" + }, + { + "GMT": "-4", + "cityId": 8727, + "codeIataCity": "YHO", + "codeIso2Country": "CA", + "geonameId": 6694966, + "latitudeCity": 55.448334, + "longitudeCity": -60.229443, + "nameCity": "Hopedale", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-6", + "cityId": 8728, + "codeIataCity": "YHP", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.083332, + "longitudeCity": -94.3, + "nameCity": "Poplar Hill", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-4", + "cityId": 8729, + "codeIataCity": "YHR", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 50.5, + "longitudeCity": -59.5, + "nameCity": "Chevery", + "timezone": "America/Blanc-Sablon" + }, + { + "GMT": "-8", + "cityId": 8730, + "codeIataCity": "YHS", + "codeIso2Country": "CA", + "geonameId": 6143367, + "latitudeCity": 49.466667, + "longitudeCity": -123.75, + "nameCity": "Sechelt", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "cityId": 8731, + "codeIataCity": "YHT", + "codeIso2Country": "CA", + "geonameId": 5934737, + "latitudeCity": 60.75, + "longitudeCity": -137.5, + "nameCity": "Haines Junction", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-7", + "cityId": 8732, + "codeIataCity": "YHY", + "codeIso2Country": "CA", + "geonameId": 5972762, + "latitudeCity": 60.845554, + "longitudeCity": -115.778336, + "nameCity": "Hay River", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-4", + "cityId": 8733, + "codeIataCity": "YHZ", + "codeIso2Country": "CA", + "geonameId": 6324729, + "latitudeCity": 44.648881, + "longitudeCity": -63.575312, + "nameCity": "Halifax", + "timezone": "America/Halifax" + }, + { + "GMT": "-5", + "cityId": 8734, + "codeIataCity": "YIB", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 48.75, + "longitudeCity": -91.61667, + "nameCity": "Atikokan", + "timezone": "America/Atikokan" + }, + { + "GMT": "8", + "cityId": 8735, + "codeIataCity": "YIE", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 47.31, + "longitudeCity": 119.910835, + "nameCity": "Aershan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-4", + "cityId": 8736, + "codeIataCity": "YIF", + "codeIso2Country": "CA", + "geonameId": 6943810, + "latitudeCity": 51.216667, + "longitudeCity": -58.666668, + "nameCity": "Pakuashipi", + "timezone": "America/Blanc-Sablon" + }, + { + "GMT": "-8", + "cityId": 8737, + "codeIataCity": "YIG", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 50.38333, + "longitudeCity": -125.13333, + "nameCity": "Big Bay Marina", + "timezone": "America/Vancouver" + }, + { + "GMT": "8", + "cityId": 8738, + "codeIataCity": "YIH", + "codeIso2Country": "CN", + "geonameId": 1786764, + "latitudeCity": 30.549934, + "longitudeCity": 111.478935, + "nameCity": "Yichang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 8739, + "codeIataCity": "YIK", + "codeIso2Country": "CA", + "geonameId": 5984875, + "latitudeCity": 62.416668, + "longitudeCity": -76.083336, + "nameCity": "Ivujivik", + "timezone": "America/Montreal" + }, + { + "GMT": "8", + "cityId": 8740, + "codeIataCity": "YIN", + "codeIso2Country": "CN", + "geonameId": 1529013, + "latitudeCity": 43.952, + "longitudeCity": 81.33144, + "nameCity": "Yining", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-5", + "cityId": 8741, + "codeIataCity": "YIO", + "codeIso2Country": "CA", + "geonameId": 6109205, + "latitudeCity": 72.683334, + "longitudeCity": -78.0, + "nameCity": "Pond Inlet", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-6", + "cityId": 8742, + "codeIataCity": "YIV", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 54.2, + "longitudeCity": -94.78333, + "nameCity": "Island Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "8", + "cityId": 8743, + "codeIataCity": "YIW", + "codeIso2Country": "CN", + "geonameId": 1814870, + "latitudeCity": 29.344563, + "longitudeCity": 120.02881, + "nameCity": "Yiwu", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-7", + "cityId": 8744, + "codeIataCity": "YJA", + "codeIso2Country": "CA", + "geonameId": 5975503, + "latitudeCity": 52.916668, + "longitudeCity": -118.083336, + "nameCity": "Jasper", + "timezone": "America/Edmonton" + }, + { + "GMT": "-7", + "cityId": 8745, + "codeIataCity": "YJF", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 60.25, + "longitudeCity": -123.46667, + "nameCity": "Fort Liard", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-5", + "cityId": 8746, + "codeIataCity": "YJN", + "codeIso2Country": "CA", + "geonameId": 6077243, + "latitudeCity": 45.333332, + "longitudeCity": -73.333336, + "nameCity": "St Jean", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "cityId": 8747, + "codeIataCity": "YJO", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 56.666668, + "longitudeCity": -131.11667, + "nameCity": "Johnny Mountain", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "cityId": 8748, + "codeIataCity": "YJP", + "codeIso2Country": "CA", + "geonameId": 5975503, + "latitudeCity": 53.319168, + "longitudeCity": -117.75306, + "nameCity": "Jasper-hinton", + "timezone": "America/Edmonton" + }, + { + "GMT": "8.30", + "cityId": 8749, + "codeIataCity": "YJS", + "codeIso2Country": "KP", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Samjiyon", + "timezone": "Asia/Pyongyang" + }, + { + "GMT": "-2:30", + "cityId": 8750, + "codeIataCity": "YJT", + "codeIso2Country": "CA", + "geonameId": 6156244, + "latitudeCity": 48.533333, + "longitudeCity": -58.55, + "nameCity": "Stephenville", + "timezone": "America/St_Johns" + }, + { + "GMT": "-8", + "cityId": 8751, + "codeIataCity": "YKA", + "codeIso2Country": "CA", + "geonameId": 5989045, + "latitudeCity": 50.70545, + "longitudeCity": -120.442024, + "nameCity": "Kamloops", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 8752, + "codeIataCity": "YKC", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 44.25, + "longitudeCity": -76.6, + "nameCity": "Collins Bay", + "timezone": "America/Regina" + }, + { + "GMT": "-5", + "cityId": 8753, + "codeIataCity": "YKD", + "codeIso2Country": "CA", + "geonameId": 5992144, + "latitudeCity": 44.20139, + "longitudeCity": -81.60667, + "nameCity": "Kincardine", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "cityId": 8754, + "codeIataCity": "YKE", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 53.05, + "longitudeCity": -94.666664, + "nameCity": "Knee Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "cityId": 8755, + "codeIataCity": "YKF", + "codeIso2Country": "CA", + "geonameId": 6167865, + "latitudeCity": 43.455223, + "longitudeCity": -80.37503, + "nameCity": "Kitchener-Waterloo", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8756, + "codeIataCity": "YKG", + "codeIso2Country": "CA", + "geonameId": 5989218, + "latitudeCity": 60.023083, + "longitudeCity": -70.0046, + "nameCity": "Kangirsuk", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "cityId": 8757, + "codeIataCity": "YKI", + "codeIso2Country": "CA", + "geonameId": 5907896, + "latitudeCity": 58.98, + "longitudeCity": 23.86, + "nameCity": "Kennosao Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-6", + "cityId": 8758, + "codeIataCity": "YKJ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 57.25, + "longitudeCity": -105.6, + "nameCity": "Key Lake", + "timezone": "America/Regina" + }, + { + "GMT": "-8", + "cityId": 8759, + "codeIataCity": "YKK", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 53.0, + "longitudeCity": -130.0, + "nameCity": "Kitkatla", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8760, + "codeIataCity": "YKL", + "codeIso2Country": "CA", + "geonameId": 6142001, + "latitudeCity": 54.783333, + "longitudeCity": -64.816666, + "nameCity": "Schefferville", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "cityId": 8761, + "codeIataCity": "YKM", + "codeIso2Country": "US", + "geonameId": 5816605, + "latitudeCity": 46.602071, + "longitudeCity": -120.505899, + "nameCity": "Yakima", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "-6", + "cityId": 8762, + "codeIataCity": "YKN", + "codeIso2Country": "US", + "geonameId": 5233053, + "latitudeCity": 42.916943, + "longitudeCity": -97.38639, + "nameCity": "Yankton", + "timezone": "America/Chicago" + }, + { + "GMT": "-5", + "cityId": 8763, + "codeIataCity": "YKQ", + "codeIso2Country": "CA", + "geonameId": 6176565, + "latitudeCity": 51.4875, + "longitudeCity": -78.75, + "nameCity": "Waskaganish", + "timezone": "America/Montreal" + }, + { + "GMT": "9", + "cityId": 8764, + "codeIataCity": "YKS", + "codeIso2Country": "RU", + "geonameId": 2013159, + "latitudeCity": 62.085606, + "longitudeCity": 129.75006, + "nameCity": "Yakutsk", + "timezone": "Asia/Yakutsk" + }, + { + "GMT": "-8", + "cityId": 8765, + "codeIataCity": "YKT", + "codeIso2Country": "CA", + "geonameId": 5993349, + "latitudeCity": 52.59403, + "longitudeCity": -128.52168, + "nameCity": "Klemtu", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8766, + "codeIataCity": "YKU", + "codeIso2Country": "CA", + "geonameId": 5921589, + "latitudeCity": 53.806824, + "longitudeCity": -78.924065, + "nameCity": "Chisasibi", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8767, + "codeIataCity": "YKX", + "codeIso2Country": "CA", + "geonameId": 6128577, + "latitudeCity": 48.15, + "longitudeCity": -80.03333, + "nameCity": "Kirkland Lake", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "cityId": 8768, + "codeIataCity": "YKY", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 51.45, + "longitudeCity": -109.166664, + "nameCity": "Kindersley", + "timezone": "America/Regina" + }, + { + "GMT": "-8", + "cityId": 8769, + "codeIataCity": "YLA", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 54.233334, + "longitudeCity": -133.01666, + "nameCity": "Langara", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "cityId": 8770, + "codeIataCity": "YLB", + "codeIso2Country": "CA", + "geonameId": 5887916, + "latitudeCity": 54.766666, + "longitudeCity": -112.01667, + "nameCity": "Lac Biche", + "timezone": "America/Edmonton" + }, + { + "GMT": "-5", + "cityId": 8771, + "codeIataCity": "YLC", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 62.85, + "longitudeCity": -69.88333, + "nameCity": "Kimmirut", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-5", + "cityId": 8772, + "codeIataCity": "YLD", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 47.819443, + "longitudeCity": -83.352776, + "nameCity": "Chapleau", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "cityId": 8773, + "codeIataCity": "YLE", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 63.15, + "longitudeCity": -117.26667, + "nameCity": "Wha Ti", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-5", + "cityId": 8774, + "codeIataCity": "YLF", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 54.183334, + "longitudeCity": -72.48333, + "nameCity": "LaForges", + "timezone": "America/Montreal" + }, + { + "GMT": "8", + "cityId": 8775, + "codeIataCity": "YLG", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -28.35, + "longitudeCity": 116.666664, + "nameCity": "Yalgoo", + "timezone": "Australia/Perth" + }, + { + "GMT": "-5", + "cityId": 8776, + "codeIataCity": "YLH", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.183334, + "longitudeCity": -87.93, + "nameCity": "Lansdowne House", + "timezone": "America/Toronto" + }, + { + "GMT": "2", + "cityId": 8777, + "codeIataCity": "YLI", + "codeIso2Country": "FI", + "geonameId": 630768, + "latitudeCity": 64.05444, + "longitudeCity": 24.72889, + "nameCity": "Ylivieska", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "-6", + "cityId": 8778, + "codeIataCity": "YLJ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 54.5, + "longitudeCity": -108.666664, + "nameCity": "Meadow Lake", + "timezone": "America/Regina" + }, + { + "GMT": "-5", + "cityId": 8779, + "codeIataCity": "YLK", + "codeIso2Country": "CA", + "geonameId": 6167865, + "latitudeCity": 44.4853, + "longitudeCity": -79.5556, + "nameCity": "Oro Station", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "cityId": 8780, + "codeIataCity": "YLL", + "codeIso2Country": "CA", + "geonameId": 6058024, + "latitudeCity": 53.31297, + "longitudeCity": -110.072716, + "nameCity": "Lloydminster", + "timezone": "America/Edmonton" + }, + { + "GMT": "-8", + "cityId": 8781, + "codeIataCity": "YLM", + "codeIso2Country": "CA", + "geonameId": 5924045, + "latitudeCity": 64.4, + "longitudeCity": -140.55, + "nameCity": "Clinton Creek", + "timezone": "America/Whitehorse" + }, + { + "GMT": "8", + "cityId": 8782, + "codeIataCity": "YLN", + "codeIso2Country": "CN", + "geonameId": 2036581, + "latitudeCity": 46.38333, + "longitudeCity": 129.5, + "nameCity": "Yilan", + "timezone": "Asia/Harbin" + }, + { + "GMT": "-6", + "cityId": 8783, + "codeIataCity": "YLO", + "codeIso2Country": "CA", + "geonameId": 6146393, + "latitudeCity": 49.781666, + "longitudeCity": -99.638336, + "nameCity": "Shilo", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "cityId": 8784, + "codeIataCity": "YLP", + "codeIso2Country": "CA", + "geonameId": 6074639, + "latitudeCity": 50.283333, + "longitudeCity": -64.15, + "nameCity": "Mingan", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8785, + "codeIataCity": "YLQ", + "codeIso2Country": "CA", + "geonameId": 6050416, + "latitudeCity": 47.5, + "longitudeCity": -72.833336, + "nameCity": "La Tuque", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "cityId": 8786, + "codeIataCity": "YLR", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 56.5, + "longitudeCity": -100.03333, + "nameCity": "Leaf Rapids", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "cityId": 8787, + "codeIataCity": "YLS", + "codeIso2Country": "CA", + "geonameId": 5884588, + "latitudeCity": 49.033333, + "longitudeCity": -77.01667, + "nameCity": "Lebel-Sur-Quevillon", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8788, + "codeIataCity": "YLT", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 82.51667, + "longitudeCity": -62.283333, + "nameCity": "Alert", + "timezone": "America/Pangnirtung" + }, + { + "GMT": "-8", + "cityId": 8789, + "codeIataCity": "YLW", + "codeIso2Country": "CA", + "geonameId": 5990579, + "latitudeCity": 49.95154, + "longitudeCity": -119.38139, + "nameCity": "Kelowna", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8790, + "codeIataCity": "YLX", + "codeIso2Country": "CA", + "geonameId": 5907990, + "latitudeCity": 59.35, + "longitudeCity": -94.68, + "nameCity": "Long Point", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "cityId": 8791, + "codeIataCity": "YLY", + "codeIso2Country": "CA", + "geonameId": 6049430, + "latitudeCity": 49.100834, + "longitudeCity": -122.63084, + "nameCity": "Langley", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "cityId": 8792, + "codeIataCity": "YMA", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 63.61639, + "longitudeCity": -135.87361, + "nameCity": "Mayo", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-8", + "cityId": 8793, + "codeIataCity": "YMB", + "codeIso2Country": "CA", + "geonameId": 6072350, + "latitudeCity": 50.11667, + "longitudeCity": -120.75, + "nameCity": "Merritt", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8794, + "codeIataCity": "YMC", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 56.566666, + "longitudeCity": -70.816666, + "nameCity": "Maricourt Airstrip", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "cityId": 8795, + "codeIataCity": "YMD", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 76.25, + "longitudeCity": -119.5, + "nameCity": "Mould Bay", + "timezone": "America/Rankin_Inlet" + }, + { + "GMT": "-5", + "cityId": 8796, + "codeIataCity": "YME", + "codeIso2Country": "CA", + "geonameId": 6696260, + "latitudeCity": 48.833332, + "longitudeCity": -67.51667, + "nameCity": "Matane", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "cityId": 8797, + "codeIataCity": "YMF", + "codeIso2Country": "CA", + "geonameId": 6174041, + "latitudeCity": 48.816666, + "longitudeCity": -123.2, + "nameCity": "Montagne Harbor", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8798, + "codeIataCity": "YMG", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 49.083332, + "longitudeCity": -85.86667, + "nameCity": "Manitouwadge", + "timezone": "America/Toronto" + }, + { + "GMT": "-2:30", + "cityId": 8799, + "codeIataCity": "YMH", + "codeIso2Country": "CA", + "geonameId": 6067456, + "latitudeCity": 52.3, + "longitudeCity": -55.833332, + "nameCity": "Mary's Harbour", + "timezone": "America/St_Johns" + }, + { + "GMT": "-6", + "cityId": 8800, + "codeIataCity": "YMI", + "codeIso2Country": "CA", + "geonameId": 6074440, + "latitudeCity": 50.0, + "longitudeCity": -94.666664, + "nameCity": "Minaki", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-6", + "cityId": 8801, + "codeIataCity": "YMJ", + "codeIso2Country": "CA", + "geonameId": 6078112, + "latitudeCity": 50.38333, + "longitudeCity": -105.53333, + "nameCity": "Moose Jaw", + "timezone": "America/Regina" + }, + { + "GMT": "5", + "cityId": 8802, + "codeIataCity": "YMK", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 68.46843, + "longitudeCity": 73.59573, + "nameCity": "Mys-Kamenny", + "timezone": "Asia/Yekaterinburg" + }, + { + "GMT": "-5", + "cityId": 8803, + "codeIataCity": "YML", + "codeIso2Country": "CA", + "geonameId": 6945986, + "latitudeCity": 47.65, + "longitudeCity": -70.166664, + "nameCity": "Murray Bay", + "timezone": "America/Montreal" + }, + { + "GMT": "-7", + "cityId": 8804, + "codeIataCity": "YMM", + "codeIso2Country": "CA", + "geonameId": 5955895, + "latitudeCity": 56.65659, + "longitudeCity": -111.22395, + "nameCity": "Fort Mcmurray", + "timezone": "America/Edmonton" + }, + { + "GMT": "-4", + "cityId": 8805, + "codeIataCity": "YMN", + "codeIso2Country": "CA", + "geonameId": 6943727, + "latitudeCity": 55.166668, + "longitudeCity": -59.166668, + "nameCity": "Makkovik", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-5", + "cityId": 8806, + "codeIataCity": "YMO", + "codeIso2Country": "CA", + "geonameId": 6078372, + "latitudeCity": 51.29111, + "longitudeCity": -80.604164, + "nameCity": "Moosonee", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "cityId": 8807, + "codeIataCity": "YMP", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 50.61111, + "longitudeCity": -127.09722, + "nameCity": "Port McNeil", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8808, + "codeIataCity": "YMQ", + "codeIso2Country": "CA", + "geonameId": 6077243, + "latitudeCity": 45.508889, + "longitudeCity": -73.554167, + "nameCity": "Montreal", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "cityId": 8809, + "codeIataCity": "YMR", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 55.483334, + "longitudeCity": -77.51667, + "nameCity": "Merry Island", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8810, + "codeIataCity": "YMS", + "codeIso2Country": "PE", + "geonameId": 3691474, + "latitudeCity": -5.9, + "longitudeCity": -76.1, + "nameCity": "Yurimaguas", + "timezone": "America/Lima" + }, + { + "GMT": "-5", + "cityId": 8811, + "codeIataCity": "YMT", + "codeIso2Country": "CA", + "geonameId": 5921147, + "latitudeCity": 49.916668, + "longitudeCity": -74.36667, + "nameCity": "Chibougamau", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "cityId": 8812, + "codeIataCity": "YMU", + "codeIso2Country": "CA", + "geonameId": 6065474, + "latitudeCity": 50.07145, + "longitudeCity": -124.98369, + "nameCity": "Mansons Landing", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8813, + "codeIataCity": "YMV", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 71.4914, + "longitudeCity": -79.3603, + "nameCity": "Mary River", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-5", + "cityId": 8814, + "codeIataCity": "YMW", + "codeIso2Country": "CA", + "geonameId": 6042690, + "latitudeCity": 46.38333, + "longitudeCity": -75.96667, + "nameCity": "Maniwaki", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8815, + "codeIataCity": "YNA", + "codeIso2Country": "CA", + "geonameId": 6086226, + "latitudeCity": 50.183334, + "longitudeCity": -61.8, + "nameCity": "Natashquan", + "timezone": "America/Montreal" + }, + { + "GMT": "3", + "cityId": 8816, + "codeIataCity": "YNB", + "codeIso2Country": "SA", + "geonameId": 100425, + "latitudeCity": 24.140734, + "longitudeCity": 38.06302, + "nameCity": "Yanbu", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-5", + "cityId": 8817, + "codeIataCity": "YNC", + "codeIso2Country": "CA", + "geonameId": 6178041, + "latitudeCity": 53.0, + "longitudeCity": -78.816666, + "nameCity": "Wemindji", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "cityId": 8818, + "codeIataCity": "YNE", + "codeIso2Country": "CA", + "geonameId": 7732488, + "latitudeCity": 53.954166, + "longitudeCity": -97.84583, + "nameCity": "Norway House", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-2:30", + "cityId": 8819, + "codeIataCity": "YNF", + "codeIso2Country": "CA", + "geonameId": 5927969, + "latitudeCity": 48.946945, + "longitudeCity": -57.94389, + "nameCity": "Corner Brook", + "timezone": "America/St_Johns" + }, + { + "GMT": "-5", + "cityId": 8820, + "codeIataCity": "YNG", + "codeIso2Country": "US", + "geonameId": 5158123, + "latitudeCity": 41.25611, + "longitudeCity": -80.66972, + "nameCity": "Youngstown", + "timezone": "America/New_York" + }, + { + "GMT": "-7", + "cityId": 8821, + "codeIataCity": "YNH", + "codeIso2Country": "CA", + "geonameId": 5978185, + "latitudeCity": 56.0, + "longitudeCity": -121.9, + "nameCity": "Hudson's Hope", + "timezone": "America/Dawson_Creek" + }, + { + "GMT": "-5", + "cityId": 8822, + "codeIataCity": "YNI", + "codeIso2Country": "CA", + "geonameId": 6088623, + "latitudeCity": 53.166668, + "longitudeCity": -70.96667, + "nameCity": "Nitchequon", + "timezone": "America/Montreal" + }, + { + "GMT": "8", + "cityId": 8823, + "codeIataCity": "YNJ", + "codeIso2Country": "CN", + "geonameId": 2033467, + "latitudeCity": 42.885662, + "longitudeCity": 129.43936, + "nameCity": "Yanji", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-8", + "cityId": 8824, + "codeIataCity": "YNK", + "codeIso2Country": "CA", + "geonameId": 5914132, + "latitudeCity": 50.083332, + "longitudeCity": -125.916664, + "nameCity": "Nootka Sound", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 8825, + "codeIataCity": "YNL", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 58.275, + "longitudeCity": -104.08111, + "nameCity": "Points North Landing", + "timezone": "America/Regina" + }, + { + "GMT": "-5", + "cityId": 8826, + "codeIataCity": "YNM", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 49.75, + "longitudeCity": -77.8, + "nameCity": "Matagami", + "timezone": "America/Montreal" + }, + { + "GMT": "8", + "cityId": 8827, + "codeIataCity": "YNN", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -22.766666, + "longitudeCity": 119.23333, + "nameCity": "Yandicoogina", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "cityId": 8828, + "codeIataCity": "YNO", + "codeIso2Country": "CA", + "geonameId": 6090650, + "latitudeCity": 52.5, + "longitudeCity": -92.416664, + "nameCity": "North Spirit Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-4", + "cityId": 8829, + "codeIataCity": "YNP", + "codeIso2Country": "CA", + "geonameId": 7910166, + "latitudeCity": 55.91389, + "longitudeCity": -61.184444, + "nameCity": "Natuashish", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-6", + "cityId": 8830, + "codeIataCity": "YNR", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 50.833332, + "longitudeCity": -97.0, + "nameCity": "Arnes", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "cityId": 8831, + "codeIataCity": "YNS", + "codeIso2Country": "CA", + "geonameId": 6087000, + "latitudeCity": 49.74167, + "longitudeCity": -76.74167, + "nameCity": "Nemiscau", + "timezone": "America/Montreal" + }, + { + "GMT": "8", + "cityId": 8832, + "codeIataCity": "YNT", + "codeIso2Country": "CN", + "geonameId": 1787093, + "latitudeCity": 37.407326, + "longitudeCity": 121.3711, + "nameCity": "Yantai", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-7", + "cityId": 8833, + "codeIataCity": "YNX", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 63.5936, + "longitudeCity": -110.905, + "nameCity": "Snap Lake", + "timezone": "America/Yellowknife" + }, + { + "GMT": "9", + "cityId": 8834, + "codeIataCity": "YNY", + "codeIso2Country": "KR", + "geonameId": 1832809, + "latitudeCity": 38.066666, + "longitudeCity": 128.6, + "nameCity": "Yangyang", + "timezone": "Asia/Seoul" + }, + { + "GMT": "8", + "cityId": 8835, + "codeIataCity": "YNZ", + "codeIso2Country": "CN", + "geonameId": 1787746, + "latitudeCity": 33.43468, + "longitudeCity": 120.20418, + "nameCity": "Yancheng", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-7", + "cityId": 8836, + "codeIataCity": "YOA", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 64.69945, + "longitudeCity": -110.61444, + "nameCity": "Ekati", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-8", + "cityId": 8837, + "codeIataCity": "YOC", + "codeIso2Country": "CA", + "geonameId": 6093114, + "latitudeCity": 67.583336, + "longitudeCity": -139.83333, + "nameCity": "Old Crow", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-7", + "cityId": 8838, + "codeIataCity": "YOD", + "codeIso2Country": "CA", + "geonameId": 5925024, + "latitudeCity": 54.466667, + "longitudeCity": -110.25, + "nameCity": "Cold Lake", + "timezone": "America/Edmonton" + }, + { + "GMT": "-7", + "cityId": 8839, + "codeIataCity": "YOE", + "codeIso2Country": "CA", + "geonameId": 5951224, + "latitudeCity": 55.733334, + "longitudeCity": -117.25, + "nameCity": "Falher", + "timezone": "America/Edmonton" + }, + { + "GMT": "-5", + "cityId": 8840, + "codeIataCity": "YOG", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 51.666668, + "longitudeCity": -85.916664, + "nameCity": "Ogoki", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "cityId": 8841, + "codeIataCity": "YOH", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 54.95, + "longitudeCity": -95.28333, + "nameCity": "Oxford House", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "cityId": 8842, + "codeIataCity": "YOI", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.2219, + "longitudeCity": -76.6125, + "nameCity": "Opinaca", + "timezone": "America/Montreal" + }, + { + "GMT": "-7", + "cityId": 8843, + "codeIataCity": "YOJ", + "codeIso2Country": "CA", + "geonameId": 5975004, + "latitudeCity": 58.618332, + "longitudeCity": -117.168335, + "nameCity": "High Level", + "timezone": "America/Edmonton" + }, + { + "GMT": "9", + "cityId": 8844, + "codeIataCity": "YOK", + "codeIso2Country": "JP", + "geonameId": 0, + "latitudeCity": 35.466667, + "longitudeCity": 139.46666, + "nameCity": "Yokohama", + "timezone": "Asia/Tokyo" + }, + { + "GMT": "1", + "cityId": 8845, + "codeIataCity": "YOL", + "codeIso2Country": "NG", + "geonameId": 0, + "latitudeCity": 9.266111, + "longitudeCity": 12.432222, + "nameCity": "Yola", + "timezone": "Africa/Lagos" + }, + { + "GMT": "-7", + "cityId": 8846, + "codeIataCity": "YOP", + "codeIso2Country": "CA", + "geonameId": 6116030, + "latitudeCity": 58.5, + "longitudeCity": -119.4, + "nameCity": "Rainbow Lake", + "timezone": "America/Edmonton" + }, + { + "GMT": "-5", + "cityId": 8847, + "codeIataCity": "YOS", + "codeIso2Country": "CA", + "geonameId": 6095645, + "latitudeCity": 44.59028, + "longitudeCity": -80.8375, + "nameCity": "Owen Sound", + "timezone": "America/Toronto" + }, + { + "GMT": "2", + "cityId": 8848, + "codeIataCity": "YOT", + "codeIso2Country": "IL", + "geonameId": 295277, + "latitudeCity": 29.9, + "longitudeCity": 35.066666, + "nameCity": "Yotvata", + "timezone": "Asia/Jerusalem" + }, + { + "GMT": "-5", + "cityId": 8849, + "codeIataCity": "YOW", + "codeIso2Country": "CA", + "geonameId": 6094817, + "latitudeCity": 45.411572, + "longitudeCity": -75.698194, + "nameCity": "Ottawa", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8850, + "codeIataCity": "YOY", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 45.0, + "longitudeCity": -72.0, + "nameCity": "Valcartier", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "cityId": 8851, + "codeIataCity": "YPA", + "codeIso2Country": "CA", + "geonameId": 6113335, + "latitudeCity": 53.216667, + "longitudeCity": -105.683334, + "nameCity": "Prince Albert", + "timezone": "America/Regina" + }, + { + "GMT": "-8", + "cityId": 8852, + "codeIataCity": "YPB", + "codeIso2Country": "CA", + "geonameId": 6111632, + "latitudeCity": 49.233334, + "longitudeCity": -124.8, + "nameCity": "Port Alberni", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "cityId": 8853, + "codeIataCity": "YPC", + "codeIso2Country": "CA", + "geonameId": 6099793, + "latitudeCity": 69.35514, + "longitudeCity": -124.07468, + "nameCity": "Paulatuk", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-5", + "cityId": 8854, + "codeIataCity": "YPD", + "codeIso2Country": "CA", + "geonameId": 6098747, + "latitudeCity": 45.416668, + "longitudeCity": -79.916664, + "nameCity": "Parry Sound", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "cityId": 8855, + "codeIataCity": "YPE", + "codeIso2Country": "CA", + "geonameId": 6100069, + "latitudeCity": 56.22778, + "longitudeCity": -117.44028, + "nameCity": "Peace River", + "timezone": "America/Edmonton" + }, + { + "GMT": "-8", + "cityId": 8856, + "codeIataCity": "YPF", + "codeIso2Country": "CA", + "geonameId": 5949512, + "latitudeCity": 48.433334, + "longitudeCity": -123.4, + "nameCity": "Esquimalt", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 8857, + "codeIataCity": "YPG", + "codeIso2Country": "CA", + "geonameId": 6183235, + "latitudeCity": 49.966667, + "longitudeCity": -98.3, + "nameCity": "Portage La Prairie", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "cityId": 8858, + "codeIataCity": "YPH", + "codeIso2Country": "CA", + "geonameId": 5983577, + "latitudeCity": 58.433334, + "longitudeCity": -78.166664, + "nameCity": "Inukjuak", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "cityId": 8859, + "codeIataCity": "YPI", + "codeIso2Country": "CA", + "geonameId": 6113406, + "latitudeCity": 54.5, + "longitudeCity": -130.33333, + "nameCity": "Port Simpson", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8860, + "codeIataCity": "YPJ", + "codeIso2Country": "CA", + "geonameId": 5888355, + "latitudeCity": 59.3, + "longitudeCity": -69.666664, + "nameCity": "Aupaluk", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8861, + "codeIataCity": "YPL", + "codeIso2Country": "CA", + "geonameId": 6104159, + "latitudeCity": 51.208332, + "longitudeCity": -90.208336, + "nameCity": "Pickle Lake", + "timezone": "America/Atikokan" + }, + { + "GMT": "-6", + "cityId": 8862, + "codeIataCity": "YPM", + "codeIso2Country": "CA", + "geonameId": 6104521, + "latitudeCity": 51.817375, + "longitudeCity": -93.97287, + "nameCity": "Pikangikum", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "cityId": 8863, + "codeIataCity": "YPN", + "codeIso2Country": "CA", + "geonameId": 6111957, + "latitudeCity": 49.833332, + "longitudeCity": -64.28333, + "nameCity": "Port Menier", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8864, + "codeIataCity": "YPO", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 54.983334, + "longitudeCity": -85.433334, + "nameCity": "Peawanuck", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "cityId": 8865, + "codeIataCity": "YPP", + "codeIso2Country": "CA", + "geonameId": 6105173, + "latitudeCity": 60.85, + "longitudeCity": -114.85, + "nameCity": "Pine Point", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-5", + "cityId": 8866, + "codeIataCity": "YPQ", + "codeIso2Country": "CA", + "geonameId": 6101645, + "latitudeCity": 44.3, + "longitudeCity": -78.316666, + "nameCity": "Peterborough", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "cityId": 8867, + "codeIataCity": "YPR", + "codeIso2Country": "CA", + "geonameId": 6113406, + "latitudeCity": 54.306145, + "longitudeCity": -130.310882, + "nameCity": "Prince Rupert", + "timezone": "America/Vancouver" + }, + { + "GMT": "-4", + "cityId": 8868, + "codeIataCity": "YPS", + "codeIso2Country": "CA", + "geonameId": 6111866, + "latitudeCity": 45.61667, + "longitudeCity": -61.35, + "nameCity": "Port Hawkesbury", + "timezone": "America/Halifax" + }, + { + "GMT": "-8", + "cityId": 8869, + "codeIataCity": "YPT", + "codeIso2Country": "CA", + "geonameId": 7290229, + "latitudeCity": 49.493492, + "longitudeCity": -123.98066, + "nameCity": "Pender Harbor", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "cityId": 8870, + "codeIataCity": "YPW", + "codeIso2Country": "CA", + "geonameId": 6112608, + "latitudeCity": 49.816666, + "longitudeCity": -124.5, + "nameCity": "Powell River", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8871, + "codeIataCity": "YPX", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 60.033333, + "longitudeCity": -77.166664, + "nameCity": "Povungnituk", + "timezone": "America/Montreal" + }, + { + "GMT": "-7", + "cityId": 8872, + "codeIataCity": "YPY", + "codeIso2Country": "CA", + "geonameId": 5955793, + "latitudeCity": 58.7625, + "longitudeCity": -111.120834, + "nameCity": "Fort Chipewyan", + "timezone": "America/Edmonton" + }, + { + "GMT": "-8", + "cityId": 8873, + "codeIataCity": "YPZ", + "codeIso2Country": "CA", + "geonameId": 5911745, + "latitudeCity": 54.233334, + "longitudeCity": -125.76667, + "nameCity": "Burns Lake", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8874, + "codeIataCity": "YQA", + "codeIso2Country": "CA", + "geonameId": 5907092, + "latitudeCity": 44.966667, + "longitudeCity": -79.3, + "nameCity": "Muskoka", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8875, + "codeIataCity": "YQB", + "codeIso2Country": "CA", + "geonameId": 6325494, + "latitudeCity": 46.803283, + "longitudeCity": -71.242796, + "nameCity": "Qu?bec City", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8876, + "codeIataCity": "YQC", + "codeIso2Country": "CA", + "geonameId": 6114894, + "latitudeCity": 61.333332, + "longitudeCity": -69.63333, + "nameCity": "Quaqtaq", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "cityId": 8877, + "codeIataCity": "YQD", + "codeIso2Country": "CA", + "geonameId": 6164499, + "latitudeCity": 53.97, + "longitudeCity": -101.09, + "nameCity": "The Pas", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-7", + "cityId": 8878, + "codeIataCity": "YQE", + "codeIso2Country": "CA", + "geonameId": 5992059, + "latitudeCity": 49.666668, + "longitudeCity": -115.98333, + "nameCity": "Kimberley", + "timezone": "America/Edmonton" + }, + { + "GMT": "-7", + "cityId": 8879, + "codeIataCity": "YQF", + "codeIso2Country": "CA", + "geonameId": 5913490, + "latitudeCity": 52.176945, + "longitudeCity": -113.89333, + "nameCity": "Red Deer", + "timezone": "America/Edmonton" + }, + { + "GMT": "-5", + "cityId": 8880, + "codeIataCity": "YQG", + "codeIso2Country": "CA", + "geonameId": 6182962, + "latitudeCity": 42.28, + "longitudeCity": -82.96, + "nameCity": "Windsor", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "cityId": 8881, + "codeIataCity": "YQH", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 60.12361, + "longitudeCity": -128.825, + "nameCity": "Watson Lake", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-4", + "cityId": 8882, + "codeIataCity": "YQI", + "codeIso2Country": "CA", + "geonameId": 6185217, + "latitudeCity": 43.833332, + "longitudeCity": -66.083336, + "nameCity": "Yarmouth", + "timezone": "America/Halifax" + }, + { + "GMT": "-8", + "cityId": 8883, + "codeIataCity": "YQJ", + "codeIso2Country": "CA", + "geonameId": 5914132, + "latitudeCity": 50.19675, + "longitudeCity": -125.26748, + "nameCity": "Quadra Island", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 8884, + "codeIataCity": "YQK", + "codeIso2Country": "CA", + "geonameId": 5991056, + "latitudeCity": 49.7875, + "longitudeCity": -94.35833, + "nameCity": "Kenora", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-7", + "cityId": 8885, + "codeIataCity": "YQL", + "codeIso2Country": "CA", + "geonameId": 6053154, + "latitudeCity": 49.631943, + "longitudeCity": -112.791664, + "nameCity": "Lethbridge", + "timezone": "America/Edmonton" + }, + { + "GMT": "-4", + "cityId": 8886, + "codeIataCity": "YQM", + "codeIso2Country": "CA", + "geonameId": 6076211, + "latitudeCity": 46.115833, + "longitudeCity": -64.803056, + "nameCity": "Moncton", + "timezone": "America/Moncton" + }, + { + "GMT": "-5", + "cityId": 8887, + "codeIataCity": "YQN", + "codeIso2Country": "CA", + "geonameId": 6085647, + "latitudeCity": 50.166668, + "longitudeCity": -86.7, + "nameCity": "Nakina", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "cityId": 8888, + "codeIataCity": "YQQ", + "codeIso2Country": "CA", + "geonameId": 5926432, + "latitudeCity": 49.705864, + "longitudeCity": -124.907814, + "nameCity": "Comox", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 8889, + "codeIataCity": "YQR", + "codeIso2Country": "CA", + "geonameId": 6119109, + "latitudeCity": 50.433327, + "longitudeCity": -104.65519, + "nameCity": "Regina", + "timezone": "America/Regina" + }, + { + "GMT": "-5", + "cityId": 8890, + "codeIataCity": "YQS", + "codeIso2Country": "CA", + "geonameId": 6058560, + "latitudeCity": 42.783333, + "longitudeCity": -81.2, + "nameCity": "St Thomas", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8891, + "codeIataCity": "YQT", + "codeIso2Country": "CA", + "geonameId": 6166142, + "latitudeCity": 48.37184, + "longitudeCity": -89.31167, + "nameCity": "Thunder Bay", + "timezone": "America/Thunder_Bay" + }, + { + "GMT": "-7", + "cityId": 8892, + "codeIataCity": "YQU", + "codeIso2Country": "CA", + "geonameId": 5964347, + "latitudeCity": 55.177074, + "longitudeCity": -118.873604, + "nameCity": "Grande Prairie", + "timezone": "America/Edmonton" + }, + { + "GMT": "-6", + "cityId": 8893, + "codeIataCity": "YQV", + "codeIso2Country": "CA", + "geonameId": 6185607, + "latitudeCity": 51.216667, + "longitudeCity": -102.46667, + "nameCity": "Yorkton", + "timezone": "America/Regina" + }, + { + "GMT": "-6", + "cityId": 8894, + "codeIataCity": "YQW", + "codeIso2Country": "CA", + "geonameId": 6089404, + "latitudeCity": 52.766666, + "longitudeCity": -108.25, + "nameCity": "North Battleford", + "timezone": "America/Regina" + }, + { + "GMT": "-2:30", + "cityId": 8895, + "codeIataCity": "YQX", + "codeIso2Country": "CA", + "geonameId": 5959335, + "latitudeCity": 48.946667, + "longitudeCity": -54.56333, + "nameCity": "Gander", + "timezone": "America/St_Johns" + }, + { + "GMT": "-4", + "cityId": 8896, + "codeIataCity": "YQY", + "codeIso2Country": "CA", + "geonameId": 6354908, + "latitudeCity": 46.166668, + "longitudeCity": -60.05, + "nameCity": "Sydney", + "timezone": "America/Glace_Bay" + }, + { + "GMT": "-8", + "cityId": 8897, + "codeIataCity": "YQZ", + "codeIso2Country": "CA", + "geonameId": 6115187, + "latitudeCity": 53.02667, + "longitudeCity": -122.50972, + "nameCity": "Quesnel", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "cityId": 8898, + "codeIataCity": "YRA", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 64.11667, + "longitudeCity": -117.35, + "nameCity": "Rae Lakes", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-6", + "cityId": 8899, + "codeIataCity": "YRB", + "codeIso2Country": "CA", + "geonameId": 6121522, + "latitudeCity": 74.71667, + "longitudeCity": -94.96667, + "nameCity": "Resolute", + "timezone": "America/Resolute" + }, + { + "GMT": "-8", + "cityId": 8900, + "codeIataCity": "YRC", + "codeIso2Country": "CA", + "geonameId": 6118978, + "latitudeCity": 48.526764, + "longitudeCity": -71.05734, + "nameCity": "Refuge Cove", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "cityId": 8901, + "codeIataCity": "YRD", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.833332, + "longitudeCity": -127.0, + "nameCity": "Dean River", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8902, + "codeIataCity": "YRE", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 61.5, + "longitudeCity": -65.0, + "nameCity": "Resolution Island", + "timezone": "America/Pangnirtung" + }, + { + "GMT": "-4", + "cityId": 8903, + "codeIataCity": "YRF", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 53.682606, + "longitudeCity": -57.03828, + "nameCity": "Cartwright", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-4", + "cityId": 8904, + "codeIataCity": "YRG", + "codeIso2Country": "CA", + "geonameId": 6947098, + "latitudeCity": 54.333332, + "longitudeCity": -58.416668, + "nameCity": "Rigolet", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-5", + "cityId": 8905, + "codeIataCity": "YRI", + "codeIso2Country": "CA", + "geonameId": 6354897, + "latitudeCity": 47.833332, + "longitudeCity": -69.53333, + "nameCity": "Riviere Du Loup", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8906, + "codeIataCity": "YRJ", + "codeIso2Country": "CA", + "geonameId": 6125653, + "latitudeCity": 48.516666, + "longitudeCity": -72.21667, + "nameCity": "Roberval", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "cityId": 8907, + "codeIataCity": "YRL", + "codeIso2Country": "CA", + "geonameId": 6118425, + "latitudeCity": 51.068764, + "longitudeCity": -93.80006, + "nameCity": "Red Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-7", + "cityId": 8908, + "codeIataCity": "YRM", + "codeIso2Country": "CA", + "geonameId": 6126749, + "latitudeCity": 52.36667, + "longitudeCity": -114.916664, + "nameCity": "Rocky Mountain House", + "timezone": "America/Edmonton" + }, + { + "GMT": "-8", + "cityId": 8909, + "codeIataCity": "YRN", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 51.466667, + "longitudeCity": -127.583336, + "nameCity": "Owekeno Village", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8910, + "codeIataCity": "YRQ", + "codeIso2Country": "CA", + "geonameId": 5897209, + "latitudeCity": 46.35, + "longitudeCity": -72.683334, + "nameCity": "Trois-Rivieres", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "cityId": 8911, + "codeIataCity": "YRR", + "codeIso2Country": "CA", + "geonameId": 6158388, + "latitudeCity": 50.416668, + "longitudeCity": -125.166664, + "nameCity": "Stuart Island", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 8912, + "codeIataCity": "YRS", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 54.166668, + "longitudeCity": -93.583336, + "nameCity": "Red Sucker Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-6", + "cityId": 8913, + "codeIataCity": "YRT", + "codeIso2Country": "CA", + "geonameId": 6116548, + "latitudeCity": 62.80998, + "longitudeCity": -92.10019, + "nameCity": "Rankin Inlet", + "timezone": "America/Rankin_Inlet" + }, + { + "GMT": "-8", + "cityId": 8914, + "codeIataCity": "YRV", + "codeIso2Country": "CA", + "geonameId": 6121621, + "latitudeCity": 51.0, + "longitudeCity": -118.166664, + "nameCity": "Revelstoke", + "timezone": "America/Vancouver" + }, + { + "GMT": "-4", + "cityId": 8915, + "codeIataCity": "YSA", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 44.0, + "longitudeCity": -60.0, + "nameCity": "Sable Island", + "timezone": "America/Halifax" + }, + { + "GMT": "-5", + "cityId": 8916, + "codeIataCity": "YSB", + "codeIso2Country": "CA", + "geonameId": 5964700, + "latitudeCity": 46.63, + "longitudeCity": -80.8, + "nameCity": "Sudbury", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8917, + "codeIataCity": "YSC", + "codeIso2Country": "CA", + "geonameId": 6146143, + "latitudeCity": 45.416668, + "longitudeCity": -71.9, + "nameCity": "Sherbrooke", + "timezone": "America/Montreal" + }, + { + "GMT": "-7", + "cityId": 8918, + "codeIataCity": "YSD", + "codeIso2Country": "CA", + "geonameId": 7931962, + "latitudeCity": 50.2, + "longitudeCity": -111.166664, + "nameCity": "Suffield", + "timezone": "America/Edmonton" + }, + { + "GMT": "-8", + "cityId": 8919, + "codeIataCity": "YSE", + "codeIso2Country": "CA", + "geonameId": 6154636, + "latitudeCity": 52.11667, + "longitudeCity": -101.23333, + "nameCity": "Squamish", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 8920, + "codeIataCity": "YSF", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 59.25, + "longitudeCity": -105.833336, + "nameCity": "Stony Rapids", + "timezone": "America/Regina" + }, + { + "GMT": "-7", + "cityId": 8921, + "codeIataCity": "YSG", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 62.41861, + "longitudeCity": -110.075554, + "nameCity": "Lutselke", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-5", + "cityId": 8922, + "codeIataCity": "YSH", + "codeIso2Country": "CA", + "geonameId": 6094817, + "latitudeCity": 44.94829, + "longitudeCity": -75.93959, + "nameCity": "Smith Falls", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8923, + "codeIataCity": "YSI", + "codeIso2Country": "CA", + "geonameId": 6098747, + "latitudeCity": 46.0, + "longitudeCity": -80.0, + "nameCity": "Sans Souci", + "timezone": "America/Toronto" + }, + { + "GMT": "-4", + "cityId": 8924, + "codeIataCity": "YSJ", + "codeIso2Country": "CA", + "geonameId": 6138517, + "latitudeCity": 45.32948, + "longitudeCity": -65.8902, + "nameCity": "Saint John", + "timezone": "America/Moncton" + }, + { + "GMT": "-5", + "cityId": 8925, + "codeIataCity": "YSK", + "codeIso2Country": "CA", + "geonameId": 6140995, + "latitudeCity": 56.55, + "longitudeCity": -79.21667, + "nameCity": "Sanikiluaq", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-4", + "cityId": 8926, + "codeIataCity": "YSL", + "codeIso2Country": "CA", + "geonameId": 6621033, + "latitudeCity": 47.183334, + "longitudeCity": -67.9, + "nameCity": "St Leonard", + "timezone": "America/Moncton" + }, + { + "GMT": "-7", + "cityId": 8927, + "codeIataCity": "YSM", + "codeIso2Country": "CA", + "geonameId": 5955954, + "latitudeCity": 60.016666, + "longitudeCity": -111.96667, + "nameCity": "Fort Smith", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-8", + "cityId": 8928, + "codeIataCity": "YSN", + "codeIso2Country": "CA", + "geonameId": 6139416, + "latitudeCity": 50.683334, + "longitudeCity": -119.23333, + "nameCity": "Salmon Arm", + "timezone": "America/Vancouver" + }, + { + "GMT": "-4", + "cityId": 8929, + "codeIataCity": "YSO", + "codeIso2Country": "CA", + "geonameId": 6943728, + "latitudeCity": 54.916668, + "longitudeCity": -59.966667, + "nameCity": "Postville", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-5", + "cityId": 8930, + "codeIataCity": "YSP", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 48.75, + "longitudeCity": -86.35, + "nameCity": "Marathon", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "cityId": 8931, + "codeIataCity": "YSQ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 59.45, + "longitudeCity": -1.78, + "nameCity": "Spring Island", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8932, + "codeIataCity": "YSR", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 73.75, + "longitudeCity": -84.5, + "nameCity": "Nanisivik", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-5", + "cityId": 8933, + "codeIataCity": "YSS", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": -33.932922, + "longitudeCity": 151.1799, + "nameCity": "Slate Island", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "cityId": 8934, + "codeIataCity": "YST", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 53.85, + "longitudeCity": -94.65, + "nameCity": "Ste Therese Point", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-4", + "cityId": 8935, + "codeIataCity": "YSU", + "codeIso2Country": "CA", + "geonameId": 6159244, + "latitudeCity": 49.0, + "longitudeCity": -57.983334, + "nameCity": "Summerside", + "timezone": "America/Halifax" + }, + { + "GMT": "-4", + "cityId": 8936, + "codeIataCity": "YSV", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 58.583332, + "longitudeCity": -62.5, + "nameCity": "Saglek", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-5", + "cityId": 8937, + "codeIataCity": "YSW", + "codeIso2Country": "CA", + "geonameId": 6139393, + "latitudeCity": 62.2, + "longitudeCity": -75.63333, + "nameCity": "Salluit", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "cityId": 8938, + "codeIataCity": "YSX", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.13333, + "longitudeCity": -128.06667, + "nameCity": "Shearwater", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "cityId": 8939, + "codeIataCity": "YSY", + "codeIso2Country": "CA", + "geonameId": 6137052, + "latitudeCity": 71.99145, + "longitudeCity": -125.24104, + "nameCity": "Sachs Harbour", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-8", + "cityId": 8940, + "codeIataCity": "YSZ", + "codeIso2Country": "CA", + "geonameId": 5914132, + "latitudeCity": 50.05, + "longitudeCity": -124.916664, + "nameCity": "Squirrel Cove", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8941, + "codeIataCity": "YTA", + "codeIso2Country": "CA", + "geonameId": 6100832, + "latitudeCity": 45.861668, + "longitudeCity": -77.24944, + "nameCity": "Pembroke", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "cityId": 8942, + "codeIataCity": "YTB", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 53.416668, + "longitudeCity": -129.25, + "nameCity": "Hartley Bay", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "cityId": 8943, + "codeIataCity": "YTC", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 57.2, + "longitudeCity": -127.15, + "nameCity": "Sturdee", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 8944, + "codeIataCity": "YTD", + "codeIso2Country": "CA", + "geonameId": 6165071, + "latitudeCity": 55.316666, + "longitudeCity": -97.7, + "nameCity": "Thicket Portage", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "cityId": 8945, + "codeIataCity": "YTE", + "codeIso2Country": "CA", + "geonameId": 5915732, + "latitudeCity": 64.23333, + "longitudeCity": -76.53333, + "nameCity": "Cape Dorset", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-5", + "cityId": 8946, + "codeIataCity": "YTF", + "codeIso2Country": "CA", + "geonameId": 5884083, + "latitudeCity": 48.533333, + "longitudeCity": -71.666664, + "nameCity": "Alma", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "cityId": 8947, + "codeIataCity": "YTG", + "codeIso2Country": "CA", + "geonameId": 6159080, + "latitudeCity": 50.88333, + "longitudeCity": -126.8, + "nameCity": "Sullivan Bay", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 8948, + "codeIataCity": "YTH", + "codeIso2Country": "CA", + "geonameId": 6165406, + "latitudeCity": 55.79753, + "longitudeCity": -97.8605, + "nameCity": "Thompson", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-8", + "cityId": 8949, + "codeIataCity": "YTI", + "codeIso2Country": "CA", + "geonameId": 6113406, + "latitudeCity": -29.456944, + "longitudeCity": 142.06223, + "nameCity": "Triple Island", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 8950, + "codeIataCity": "YTJ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 48.75, + "longitudeCity": -87.166664, + "nameCity": "Terrace Bay", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8951, + "codeIataCity": "YTK", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 59.5, + "longitudeCity": -77.75, + "nameCity": "Tulugak", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "cityId": 8952, + "codeIataCity": "YTL", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 53.81594, + "longitudeCity": -89.88952, + "nameCity": "Big Trout", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "cityId": 8953, + "codeIataCity": "YTM", + "codeIso2Country": "CA", + "geonameId": 6077445, + "latitudeCity": 46.515556, + "longitudeCity": -74.75528, + "nameCity": "Mont Tremblant", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8954, + "codeIataCity": "YTN", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 50.283333, + "longitudeCity": -64.75, + "nameCity": "Riviere Au Tonnerre", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8955, + "codeIataCity": "YTO", + "codeIso2Country": "CA", + "geonameId": 6167865, + "latitudeCity": 43.653524, + "longitudeCity": -79.383907, + "nameCity": "Toronto", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8956, + "codeIataCity": "YTQ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 58.6678, + "longitudeCity": -69.95633, + "nameCity": "Tasiujuaq", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8957, + "codeIataCity": "YTR", + "codeIso2Country": "CA", + "geonameId": 6168768, + "latitudeCity": 44.1, + "longitudeCity": -77.583336, + "nameCity": "Trenton", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8958, + "codeIataCity": "YTS", + "codeIso2Country": "CA", + "geonameId": 6166739, + "latitudeCity": 48.566372, + "longitudeCity": -81.37164, + "nameCity": "Timmins", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "cityId": 8959, + "codeIataCity": "YTT", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.85, + "longitudeCity": -104.066666, + "nameCity": "Tisdale", + "timezone": "America/Regina" + }, + { + "GMT": "-8", + "cityId": 8960, + "codeIataCity": "YTU", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 49.1, + "longitudeCity": -124.933334, + "nameCity": "Tasu", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "cityId": 8961, + "codeIataCity": "YTX", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 57.9, + "longitudeCity": -131.15, + "nameCity": "Telegraph Creek", + "timezone": "America/Vancouver" + }, + { + "GMT": "8", + "cityId": 8962, + "codeIataCity": "YTY", + "codeIso2Country": "CN", + "geonameId": 1793505, + "latitudeCity": 32.563057, + "longitudeCity": 119.71889, + "nameCity": "Yangzhou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 8963, + "codeIataCity": "YUA", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 25.65, + "longitudeCity": 101.916664, + "nameCity": "Yuanmou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-7", + "cityId": 8964, + "codeIataCity": "YUB", + "codeIso2Country": "CA", + "geonameId": 6170031, + "latitudeCity": 69.436386, + "longitudeCity": -133.025, + "nameCity": "Tuktoyaktuk", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-5", + "cityId": 8965, + "codeIataCity": "YUD", + "codeIso2Country": "CA", + "geonameId": 6171824, + "latitudeCity": 56.53611, + "longitudeCity": -76.51833, + "nameCity": "Umiujaq", + "timezone": "America/Montreal" + }, + { + "GMT": "9.30", + "cityId": 8966, + "codeIataCity": "YUE", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -22.266666, + "longitudeCity": 131.81667, + "nameCity": "Yuendumu", + "timezone": "Australia/Darwin" + }, + { + "GMT": "-7", + "cityId": 8967, + "codeIataCity": "YUM", + "codeIso2Country": "US", + "geonameId": 5322053, + "latitudeCity": 32.692651, + "longitudeCity": -114.627692, + "nameCity": "Yuma", + "timezone": "America/Phoenix" + }, + { + "GMT": "8", + "cityId": 8968, + "codeIataCity": "YUS", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 32.8399, + "longitudeCity": 97.0379, + "nameCity": "Yushu", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "cityId": 8969, + "codeIataCity": "YUT", + "codeIso2Country": "CA", + "geonameId": 6119528, + "latitudeCity": 66.53333, + "longitudeCity": -86.25, + "nameCity": "Repulse Bay", + "timezone": "America/Rankin_Inlet" + }, + { + "GMT": "-5", + "cityId": 8970, + "codeIataCity": "YUX", + "codeIso2Country": "CA", + "geonameId": 5969475, + "latitudeCity": 68.78333, + "longitudeCity": -81.25, + "nameCity": "Hall Beach", + "timezone": "America/Iqaluit" + }, + { + "GMT": "-5", + "cityId": 8971, + "codeIataCity": "YUY", + "codeIso2Country": "CA", + "geonameId": 6128577, + "latitudeCity": 48.205555, + "longitudeCity": -78.83056, + "nameCity": "Rouyn-Noranda", + "timezone": "America/Montreal" + }, + { + "GMT": "3", + "cityId": 8972, + "codeIataCity": "YVA", + "codeIso2Country": "KM", + "geonameId": 921772, + "latitudeCity": -11.531944, + "longitudeCity": 43.261112, + "nameCity": "Moroni", + "timezone": "Indian/Comoro" + }, + { + "GMT": "-5", + "cityId": 8973, + "codeIataCity": "YVB", + "codeIso2Country": "CA", + "geonameId": 6943825, + "latitudeCity": 48.05, + "longitudeCity": -65.48333, + "nameCity": "Bonaventure", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "cityId": 8974, + "codeIataCity": "YVC", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 55.083332, + "longitudeCity": -105.333336, + "nameCity": "La Ronge", + "timezone": "America/Regina" + }, + { + "GMT": "10", + "cityId": 8975, + "codeIataCity": "YVD", + "codeIso2Country": "PG", + "geonameId": 0, + "latitudeCity": -7.55, + "longitudeCity": 146.18889, + "nameCity": "Yeva", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "-8", + "cityId": 8976, + "codeIataCity": "YVE", + "codeIso2Country": "CA", + "geonameId": 6173864, + "latitudeCity": 50.25, + "longitudeCity": -119.333336, + "nameCity": "Vernon", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "cityId": 8977, + "codeIataCity": "YVG", + "codeIso2Country": "CA", + "geonameId": 6173801, + "latitudeCity": 53.35, + "longitudeCity": -110.816666, + "nameCity": "Vermilion", + "timezone": "America/Edmonton" + }, + { + "GMT": "1", + "cityId": 8978, + "codeIataCity": "YVH", + "codeIso2Country": "NO", + "geonameId": 3152538, + "latitudeCity": 62.22308, + "longitudeCity": 9.55049, + "nameCity": "Hjerkinn", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 8979, + "codeIataCity": "YVK", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Koppang", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-5", + "cityId": 8980, + "codeIataCity": "YVM", + "codeIso2Country": "CA", + "geonameId": 6114685, + "latitudeCity": 67.583336, + "longitudeCity": -63.833332, + "nameCity": "Qikiqtarjuaq", + "timezone": "America/Pangnirtung" + }, + { + "GMT": "-5", + "cityId": 8981, + "codeIataCity": "YVN", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 66.5919, + "longitudeCity": -61.5733, + "nameCity": "Cape Dyer", + "timezone": "America/Pangnirtung" + }, + { + "GMT": "-5", + "cityId": 8982, + "codeIataCity": "YVO", + "codeIso2Country": "CA", + "geonameId": 6128577, + "latitudeCity": 48.052605, + "longitudeCity": -77.78858, + "nameCity": "Val-d'or", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 8983, + "codeIataCity": "YVP", + "codeIso2Country": "CA", + "geonameId": 5994517, + "latitudeCity": 58.10024, + "longitudeCity": -68.41798, + "nameCity": "Kuujjuaq", + "timezone": "America/Montreal" + }, + { + "GMT": "-7", + "cityId": 8984, + "codeIataCity": "YVQ", + "codeIso2Country": "CA", + "geonameId": 6089245, + "latitudeCity": 65.277855, + "longitudeCity": -126.79337, + "nameCity": "Norman Wells", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-8", + "cityId": 8985, + "codeIataCity": "YVR", + "codeIso2Country": "CA", + "geonameId": 6173331, + "latitudeCity": 49.261226, + "longitudeCity": -123.113927, + "nameCity": "Vancouver", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "cityId": 8986, + "codeIataCity": "YVS", + "codeIso2Country": "NO", + "geonameId": 3139081, + "latitudeCity": 59.71949, + "longitudeCity": 10.83576, + "nameCity": "Ski", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "cityId": 8987, + "codeIataCity": "YVT", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 55.86667, + "longitudeCity": -108.46667, + "nameCity": "Buffalo Narrows", + "timezone": "America/Regina" + }, + { + "GMT": "-5", + "cityId": 8988, + "codeIataCity": "YVV", + "codeIso2Country": "CA", + "geonameId": 5904414, + "latitudeCity": 44.666668, + "longitudeCity": -81.166664, + "nameCity": "Wiarton", + "timezone": "America/Toronto" + }, + { + "GMT": "-6", + "cityId": 8989, + "codeIataCity": "YVZ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.666668, + "longitudeCity": -94.5, + "nameCity": "Deer Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-5", + "cityId": 8990, + "codeIataCity": "YWA", + "codeIso2Country": "CA", + "geonameId": 6100832, + "latitudeCity": 45.9, + "longitudeCity": -77.28333, + "nameCity": "Petawawa", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 8991, + "codeIataCity": "YWB", + "codeIso2Country": "CA", + "geonameId": 5989205, + "latitudeCity": 61.6, + "longitudeCity": -71.95, + "nameCity": "Kangiqsujuaq", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "cityId": 8992, + "codeIataCity": "YWG", + "codeIso2Country": "CA", + "geonameId": 6183235, + "latitudeCity": 49.886083, + "longitudeCity": -97.152921, + "nameCity": "Winnipeg", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-7", + "cityId": 8993, + "codeIataCity": "YWJ", + "codeIso2Country": "CA", + "geonameId": 6943714, + "latitudeCity": 65.166664, + "longitudeCity": -123.5, + "nameCity": "Deline", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-4", + "cityId": 8994, + "codeIataCity": "YWK", + "codeIso2Country": "CA", + "geonameId": 6174844, + "latitudeCity": 52.926315, + "longitudeCity": -66.874, + "nameCity": "Wabush", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-8", + "cityId": 8995, + "codeIataCity": "YWL", + "codeIso2Country": "CA", + "geonameId": 6182212, + "latitudeCity": 52.184723, + "longitudeCity": -122.04444, + "nameCity": "Williams Lake", + "timezone": "America/Vancouver" + }, + { + "GMT": "-2:30", + "cityId": 8996, + "codeIataCity": "YWM", + "codeIso2Country": "CA", + "geonameId": 6182172, + "latitudeCity": 52.335438, + "longitudeCity": -56.01282, + "nameCity": "Williams Harbour", + "timezone": "America/St_Johns" + }, + { + "GMT": "-5", + "cityId": 8997, + "codeIataCity": "YWN", + "codeIso2Country": "CA", + "geonameId": 6183190, + "latitudeCity": 55.25, + "longitudeCity": -85.11667, + "nameCity": "Winisk", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "cityId": 8998, + "codeIataCity": "YWO", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 65.75833, + "longitudeCity": -111.25, + "nameCity": "Lupin", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-5", + "cityId": 8999, + "codeIataCity": "YWP", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.95972, + "longitudeCity": -87.36889, + "nameCity": "Webequie", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 9000, + "codeIataCity": "YWQ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 49.887222, + "longitudeCity": -71.25389, + "nameCity": "Chute-Des-Passes", + "timezone": "America/Montreal" + }, + { + "GMT": "-5", + "cityId": 9001, + "codeIataCity": "YWR", + "codeIso2Country": "CA", + "geonameId": 6696813, + "latitudeCity": 48.583332, + "longitudeCity": -85.333336, + "nameCity": "White River", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "cityId": 9002, + "codeIataCity": "YWS", + "codeIso2Country": "CA", + "geonameId": 6180144, + "latitudeCity": 50.15, + "longitudeCity": -122.96667, + "nameCity": "Whistler", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "cityId": 9003, + "codeIataCity": "YWY", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 63.210556, + "longitudeCity": -123.438614, + "nameCity": "Wrigley", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-7", + "cityId": 9004, + "codeIataCity": "YXC", + "codeIso2Country": "CA", + "geonameId": 5931800, + "latitudeCity": 49.61437, + "longitudeCity": -115.787025, + "nameCity": "Cranbrook", + "timezone": "America/Edmonton" + }, + { + "GMT": "-6", + "cityId": 9005, + "codeIataCity": "YXE", + "codeIso2Country": "CA", + "geonameId": 6141256, + "latitudeCity": 52.169704, + "longitudeCity": -106.69037, + "nameCity": "Saskatoon", + "timezone": "America/Regina" + }, + { + "GMT": "-8", + "cityId": 9006, + "codeIataCity": "YXF", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 59.033333, + "longitudeCity": -122.433334, + "nameCity": "Snake River", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-7", + "cityId": 9007, + "codeIataCity": "YXH", + "codeIso2Country": "CA", + "geonameId": 6071618, + "latitudeCity": 50.015835, + "longitudeCity": -110.72083, + "nameCity": "Medicine Hat", + "timezone": "America/Edmonton" + }, + { + "GMT": "-5", + "cityId": 9008, + "codeIataCity": "YXI", + "codeIso2Country": "CA", + "geonameId": 5991882, + "latitudeCity": 45.55, + "longitudeCity": -77.416664, + "nameCity": "Killaloe", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "cityId": 9009, + "codeIataCity": "YXJ", + "codeIso2Country": "CA", + "geonameId": 5955960, + "latitudeCity": 56.247883, + "longitudeCity": -120.73437, + "nameCity": "Fort St John", + "timezone": "America/Dawson_Creek" + }, + { + "GMT": "-5", + "cityId": 9010, + "codeIataCity": "YXK", + "codeIso2Country": "CA", + "geonameId": 6354895, + "latitudeCity": 48.433334, + "longitudeCity": -68.55, + "nameCity": "Rimouski", + "timezone": "America/Montreal" + }, + { + "GMT": "-6", + "cityId": 9011, + "codeIataCity": "YXL", + "codeIso2Country": "CA", + "geonameId": 6148374, + "latitudeCity": 50.115208, + "longitudeCity": -91.903, + "nameCity": "Sioux Lookout", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-6", + "cityId": 9012, + "codeIataCity": "YXN", + "codeIso2Country": "CA", + "geonameId": 6179724, + "latitudeCity": 62.233334, + "longitudeCity": -92.6, + "nameCity": "Whale Cove", + "timezone": "America/Rankin_Inlet" + }, + { + "GMT": "-5", + "cityId": 9013, + "codeIataCity": "YXP", + "codeIso2Country": "CA", + "geonameId": 6096551, + "latitudeCity": 66.13333, + "longitudeCity": -65.73333, + "nameCity": "Pangnirtung", + "timezone": "America/Pangnirtung" + }, + { + "GMT": "-8", + "cityId": 9014, + "codeIataCity": "YXQ", + "codeIso2Country": "CA", + "geonameId": 6354909, + "latitudeCity": 62.0, + "longitudeCity": -141.0, + "nameCity": "Beaver Creek", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-5", + "cityId": 9015, + "codeIataCity": "YXR", + "codeIso2Country": "CA", + "geonameId": 6128577, + "latitudeCity": 47.697224, + "longitudeCity": -79.851944, + "nameCity": "Earlton", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "cityId": 9016, + "codeIataCity": "YXS", + "codeIso2Country": "CA", + "geonameId": 6113365, + "latitudeCity": 53.91848, + "longitudeCity": -122.776584, + "nameCity": "Prince George", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "cityId": 9017, + "codeIataCity": "YXT", + "codeIso2Country": "CA", + "geonameId": 6162949, + "latitudeCity": 54.465557, + "longitudeCity": -128.57445, + "nameCity": "Terrace", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 9018, + "codeIataCity": "YXU", + "codeIso2Country": "CA", + "geonameId": 6058560, + "latitudeCity": 42.987, + "longitudeCity": -81.251, + "nameCity": "London", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "cityId": 9019, + "codeIataCity": "YXX", + "codeIso2Country": "CA", + "geonameId": 5881791, + "latitudeCity": 49.025555, + "longitudeCity": -122.361946, + "nameCity": "Abbotsford", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "cityId": 9020, + "codeIataCity": "YXY", + "codeIso2Country": "CA", + "geonameId": 6180550, + "latitudeCity": 60.716667, + "longitudeCity": -135.06667, + "nameCity": "Whitehorse", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-5", + "cityId": 9021, + "codeIataCity": "YXZ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 47.9625, + "longitudeCity": -84.785835, + "nameCity": "Wawa", + "timezone": "America/Toronto" + }, + { + "GMT": "-8", + "cityId": 9022, + "codeIataCity": "YYA", + "codeIso2Country": "CA", + "geonameId": 6100799, + "latitudeCity": 50.4, + "longitudeCity": -123.13333, + "nameCity": "Big Bay Yacht Club", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 9023, + "codeIataCity": "YYB", + "codeIso2Country": "CA", + "geonameId": 6089426, + "latitudeCity": 46.356823, + "longitudeCity": -79.42725, + "nameCity": "North Bay", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "cityId": 9024, + "codeIataCity": "YYC", + "codeIso2Country": "CA", + "geonameId": 5913490, + "latitudeCity": 51.131393, + "longitudeCity": -114.01055, + "nameCity": "Calgary", + "timezone": "America/Edmonton" + }, + { + "GMT": "-8", + "cityId": 9025, + "codeIataCity": "YYD", + "codeIso2Country": "CA", + "geonameId": 6149996, + "latitudeCity": 54.825558, + "longitudeCity": -127.180275, + "nameCity": "Smithers", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "cityId": 9026, + "codeIataCity": "YYE", + "codeIso2Country": "CA", + "geonameId": 5955902, + "latitudeCity": 58.833332, + "longitudeCity": -122.583336, + "nameCity": "Fort Nelson", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "cityId": 9027, + "codeIataCity": "YYF", + "codeIso2Country": "CA", + "geonameId": 6101141, + "latitudeCity": 49.46472, + "longitudeCity": -119.6, + "nameCity": "Penticton", + "timezone": "America/Vancouver" + }, + { + "GMT": "-4", + "cityId": 9028, + "codeIataCity": "YYG", + "codeIso2Country": "CA", + "geonameId": 5920288, + "latitudeCity": 46.285896, + "longitudeCity": -63.131737, + "nameCity": "Charlottetown", + "timezone": "America/Halifax" + }, + { + "GMT": "-7", + "cityId": 9029, + "codeIataCity": "YYH", + "codeIso2Country": "CA", + "geonameId": 6161366, + "latitudeCity": 69.53333, + "longitudeCity": -93.51667, + "nameCity": "Taloyoak", + "timezone": "America/Cambridge_Bay" + }, + { + "GMT": "-6", + "cityId": 9030, + "codeIataCity": "YYI", + "codeIso2Country": "CA", + "geonameId": 6122707, + "latitudeCity": 50.033333, + "longitudeCity": -100.23333, + "nameCity": "Rivers", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-8", + "cityId": 9031, + "codeIataCity": "YYJ", + "codeIso2Country": "CA", + "geonameId": 6147439, + "latitudeCity": 48.428611, + "longitudeCity": -123.365556, + "nameCity": "Victoria", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 9032, + "codeIataCity": "YYL", + "codeIso2Country": "CA", + "geonameId": 6062335, + "latitudeCity": 56.86667, + "longitudeCity": -101.066666, + "nameCity": "Lynn Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-7", + "cityId": 9033, + "codeIataCity": "YYM", + "codeIso2Country": "CA", + "geonameId": 5903535, + "latitudeCity": 49.86667, + "longitudeCity": -114.166664, + "nameCity": "Cowley", + "timezone": "America/Edmonton" + }, + { + "GMT": "-6", + "cityId": 9034, + "codeIataCity": "YYN", + "codeIso2Country": "CA", + "geonameId": 6160603, + "latitudeCity": 50.283333, + "longitudeCity": -107.833336, + "nameCity": "Swift Current", + "timezone": "America/Swift_Current" + }, + { + "GMT": "-6", + "cityId": 9035, + "codeIataCity": "YYQ", + "codeIso2Country": "CA", + "geonameId": 5922111, + "latitudeCity": 58.755456, + "longitudeCity": -94.112469, + "nameCity": "Churchill", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-4", + "cityId": 9036, + "codeIataCity": "YYR", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 53.313534, + "longitudeCity": -60.4124, + "nameCity": "Happy Valley-Goose Bay", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "-2:30", + "cityId": 9037, + "codeIataCity": "YYT", + "codeIso2Country": "CA", + "geonameId": 6324733, + "latitudeCity": 47.61282, + "longitudeCity": -52.74334, + "nameCity": "St. John's", + "timezone": "America/St_Johns" + }, + { + "GMT": "-5", + "cityId": 9038, + "codeIataCity": "YYU", + "codeIso2Country": "CA", + "geonameId": 5989403, + "latitudeCity": 49.4125, + "longitudeCity": -82.47083, + "nameCity": "Kapuskasing", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 9039, + "codeIataCity": "YYW", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 50.283333, + "longitudeCity": -89.03333, + "nameCity": "Armstrong", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 9040, + "codeIataCity": "YYY", + "codeIso2Country": "CA", + "geonameId": 6354895, + "latitudeCity": 48.6, + "longitudeCity": -68.2, + "nameCity": "Mont Joli", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "cityId": 9041, + "codeIataCity": "YZA", + "codeIso2Country": "CA", + "geonameId": 5989045, + "latitudeCity": 50.666668, + "longitudeCity": -121.333336, + "nameCity": "Ashcroft", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "cityId": 9042, + "codeIataCity": "YZC", + "codeIso2Country": "CA", + "geonameId": 5955960, + "latitudeCity": 57.433334, + "longitudeCity": -121.333336, + "nameCity": "Beatton River", + "timezone": "America/Dawson_Creek" + }, + { + "GMT": "-5", + "cityId": 9043, + "codeIataCity": "YZE", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 45.885277, + "longitudeCity": -82.56778, + "nameCity": "Gore Bay", + "timezone": "America/Toronto" + }, + { + "GMT": "-7", + "cityId": 9044, + "codeIataCity": "YZF", + "codeIso2Country": "CA", + "geonameId": 6185377, + "latitudeCity": 62.470867, + "longitudeCity": -114.4375, + "nameCity": "Yellowknife", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-7", + "cityId": 9045, + "codeIataCity": "YZH", + "codeIso2Country": "CA", + "geonameId": 6149374, + "latitudeCity": 55.3, + "longitudeCity": -114.78333, + "nameCity": "Slave Lake", + "timezone": "America/Edmonton" + }, + { + "GMT": "-2:30", + "cityId": 9046, + "codeIataCity": "YZM", + "codeIso2Country": "CA", + "geonameId": 5927969, + "latitudeCity": 48.833332, + "longitudeCity": -56.86667, + "nameCity": "Buchans", + "timezone": "America/St_Johns" + }, + { + "GMT": "-8", + "cityId": 9047, + "codeIataCity": "YZP", + "codeIso2Country": "CA", + "geonameId": 6140529, + "latitudeCity": 53.254444, + "longitudeCity": -131.81277, + "nameCity": "Sandspit", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 9048, + "codeIataCity": "YZR", + "codeIso2Country": "CA", + "geonameId": 6141190, + "latitudeCity": 42.9848, + "longitudeCity": -82.36059, + "nameCity": "Sarnia", + "timezone": "America/Toronto" + }, + { + "GMT": "-5", + "cityId": 9049, + "codeIataCity": "YZS", + "codeIso2Country": "CA", + "geonameId": 5927708, + "latitudeCity": 64.2, + "longitudeCity": -83.36667, + "nameCity": "Coral Harbour", + "timezone": "America/Coral_Harbour" + }, + { + "GMT": "-8", + "cityId": 9050, + "codeIataCity": "YZT", + "codeIso2Country": "CA", + "geonameId": 6111862, + "latitudeCity": 50.680557, + "longitudeCity": -127.36389, + "nameCity": "Port Hardy", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "cityId": 9051, + "codeIataCity": "YZU", + "codeIso2Country": "CA", + "geonameId": 6180285, + "latitudeCity": 54.15, + "longitudeCity": -115.78333, + "nameCity": "Whitecourt", + "timezone": "America/Edmonton" + }, + { + "GMT": "-5", + "cityId": 9052, + "codeIataCity": "YZV", + "codeIso2Country": "CA", + "geonameId": 6144312, + "latitudeCity": 50.21751, + "longitudeCity": -66.26404, + "nameCity": "Sept-Iles", + "timezone": "America/Montreal" + }, + { + "GMT": "-8", + "cityId": 9053, + "codeIataCity": "YZW", + "codeIso2Country": "CA", + "geonameId": 8556286, + "latitudeCity": 60.166668, + "longitudeCity": -132.71666, + "nameCity": "Teslin", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-4", + "cityId": 9054, + "codeIataCity": "YZX", + "codeIso2Country": "CA", + "geonameId": 5966689, + "latitudeCity": 49.166668, + "longitudeCity": -118.666664, + "nameCity": "Greenwood", + "timezone": "America/Halifax" + }, + { + "GMT": "8", + "cityId": 9055, + "codeIataCity": "YZY", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 38.8075, + "longitudeCity": 100.660835, + "nameCity": "Zhangye", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-8", + "cityId": 9056, + "codeIataCity": "YZZ", + "codeIso2Country": "CA", + "geonameId": 6168326, + "latitudeCity": 49.066666, + "longitudeCity": -117.6, + "nameCity": "Trail", + "timezone": "America/Vancouver" + }, + { + "GMT": "-8", + "cityId": 9057, + "codeIataCity": "ZAA", + "codeIso2Country": "CA", + "geonameId": 5883655, + "latitudeCity": 55.483334, + "longitudeCity": -129.48334, + "nameCity": "Alice Arm", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 9058, + "codeIataCity": "ZAC", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 56.083332, + "longitudeCity": -96.1, + "nameCity": "York Landing", + "timezone": "America/Winnipeg" + }, + { + "GMT": "1", + "cityId": 9059, + "codeIataCity": "ZAD", + "codeIso2Country": "HR", + "geonameId": 3186952, + "latitudeCity": 44.09778, + "longitudeCity": 15.356667, + "nameCity": "Zadar", + "timezone": "Europe/Zagreb" + }, + { + "GMT": "1", + "cityId": 9060, + "codeIataCity": "ZAF", + "codeIso2Country": "FR", + "geonameId": 0, + "latitudeCity": 39.120277, + "longitudeCity": 30.116945, + "nameCity": "Arles", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "cityId": 9061, + "codeIataCity": "ZAG", + "codeIso2Country": "HR", + "geonameId": 3186886, + "latitudeCity": 45.733242, + "longitudeCity": 16.06152, + "nameCity": "Zagreb", + "timezone": "Europe/Zagreb" + }, + { + "GMT": "3.30", + "cityId": 9062, + "codeIataCity": "ZAH", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 29.475756, + "longitudeCity": 60.90033, + "nameCity": "Zahedan", + "timezone": "Asia/Tehran" + }, + { + "GMT": "4.30", + "cityId": 9063, + "codeIataCity": "ZAJ", + "codeIso2Country": "AF", + "geonameId": 1120985, + "latitudeCity": 31.1, + "longitudeCity": 61.983334, + "nameCity": "Zaranj", + "timezone": "Asia/Kabul" + }, + { + "GMT": "1", + "cityId": 9064, + "codeIataCity": "ZAK", + "codeIso2Country": "IT", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Chiusa/Klausen", + "timezone": "Europe/Rome" + }, + { + "GMT": "-4", + "cityId": 9065, + "codeIataCity": "ZAL", + "codeIso2Country": "CL", + "geonameId": 3868707, + "latitudeCity": -39.791668, + "longitudeCity": -73.23944, + "nameCity": "Valdivia", + "timezone": "America/Santiago" + }, + { + "GMT": "8", + "cityId": 9066, + "codeIataCity": "ZAM", + "codeIso2Country": "PH", + "geonameId": 0, + "latitudeCity": 6.919294, + "longitudeCity": 122.062256, + "nameCity": "Zamboanga", + "timezone": "Asia/Manila" + }, + { + "GMT": "1", + "cityId": 9067, + "codeIataCity": "ZAO", + "codeIso2Country": "FR", + "geonameId": 2972315, + "latitudeCity": 44.45, + "longitudeCity": 1.45, + "nameCity": "Cahors", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "cityId": 9068, + "codeIataCity": "ZAP", + "codeIso2Country": "CH", + "geonameId": 2661740, + "latitudeCity": 47.33103, + "longitudeCity": 9.40996, + "nameCity": "Appenzell", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9069, + "codeIataCity": "ZAR", + "codeIso2Country": "NG", + "geonameId": 0, + "latitudeCity": 11.0, + "longitudeCity": 7.666667, + "nameCity": "Zaria", + "timezone": "Africa/Lagos" + }, + { + "GMT": "8", + "cityId": 9070, + "codeIataCity": "ZAS", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Shunde", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 9071, + "codeIataCity": "ZAT", + "codeIso2Country": "CN", + "geonameId": 1784841, + "latitudeCity": 27.316668, + "longitudeCity": 103.8, + "nameCity": "Zhaotong", + "timezone": "Asia/Chongqing" + }, + { + "GMT": "1", + "cityId": 9072, + "codeIataCity": "ZAU", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Aue", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 9073, + "codeIataCity": "ZAW", + "codeIso2Country": "DK", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Nykobing Mors", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "8", + "cityId": 9074, + "codeIataCity": "ZAX", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Pan Yu", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 9075, + "codeIataCity": "ZAZ", + "codeIso2Country": "ES", + "geonameId": 3104324, + "latitudeCity": 41.66386, + "longitudeCity": -1.007466, + "nameCity": "Zaragoza", + "timezone": "Europe/Madrid" + }, + { + "GMT": "8", + "cityId": 9076, + "codeIataCity": "ZBD", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 29.705096, + "longitudeCity": 116.001982, + "nameCity": "Jiang Men", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 9077, + "codeIataCity": "ZBE", + "codeIso2Country": "CZ", + "geonameId": 3068799, + "latitudeCity": 49.88333, + "longitudeCity": 16.866667, + "nameCity": "Zabreh", + "timezone": "Europe/Prague" + }, + { + "GMT": "-4", + "cityId": 9078, + "codeIataCity": "ZBF", + "codeIso2Country": "CA", + "geonameId": 6696259, + "latitudeCity": 47.629166, + "longitudeCity": -65.73944, + "nameCity": "Bathurst", + "timezone": "America/Moncton" + }, + { + "GMT": "1", + "cityId": 9079, + "codeIataCity": "ZBH", + "codeIso2Country": "FR", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Severac-le-Chateau", + "timezone": "Europe/Paris" + }, + { + "GMT": "1", + "cityId": 9080, + "codeIataCity": "ZBJ", + "codeIso2Country": "DK", + "geonameId": 2621951, + "latitudeCity": 55.5833, + "longitudeCity": 9.76667, + "nameCity": "Fredericia", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "cityId": 9081, + "codeIataCity": "ZBK", + "codeIso2Country": "ME", + "geonameId": 3203106, + "latitudeCity": 43.15, + "longitudeCity": 19.116667, + "nameCity": "Zabljak", + "timezone": "Europe/Podgorica" + }, + { + "GMT": "10", + "cityId": 9082, + "codeIataCity": "ZBL", + "codeIso2Country": "AU", + "geonameId": 2175819, + "latitudeCity": -24.4, + "longitudeCity": 150.51666, + "nameCity": "Biloela", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "-5", + "cityId": 9083, + "codeIataCity": "ZBM", + "codeIso2Country": "CA", + "geonameId": 6077243, + "latitudeCity": 45.316666, + "longitudeCity": -72.833336, + "nameCity": "Bromont", + "timezone": "America/Montreal" + }, + { + "GMT": "10", + "cityId": 9084, + "codeIataCity": "ZBO", + "codeIso2Country": "AU", + "geonameId": 2174444, + "latitudeCity": -20.016666, + "longitudeCity": 148.21666, + "nameCity": "Bowen", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "3.30", + "cityId": 9085, + "codeIataCity": "ZBR", + "codeIso2Country": "IR", + "geonameId": 0, + "latitudeCity": 25.436478, + "longitudeCity": 60.379562, + "nameCity": "Chah-bahar", + "timezone": "Asia/Tehran" + }, + { + "GMT": "1", + "cityId": 9086, + "codeIataCity": "ZBT", + "codeIso2Country": "DK", + "geonameId": 2618528, + "latitudeCity": 39.122627, + "longitudeCity": 117.3399, + "nameCity": "Kolding", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "7", + "cityId": 9087, + "codeIataCity": "ZBY", + "codeIso2Country": "LA", + "geonameId": 1655559, + "latitudeCity": 19.25, + "longitudeCity": 101.7, + "nameCity": "Sayaboury", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "8", + "cityId": 9088, + "codeIataCity": "ZBZ", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 50.8167, + "longitudeCity": 10.2333, + "nameCity": "Xin Hui", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "8", + "cityId": 9089, + "codeIataCity": "ZCA", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 51.3833, + "longitudeCity": 8.08333, + "nameCity": "Tai Shan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 9090, + "codeIataCity": "ZCB", + "codeIso2Country": "DE", + "geonameId": 2955272, + "latitudeCity": 49.9739, + "longitudeCity": 9.14917, + "nameCity": "Aschaffenburg", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "cityId": 9091, + "codeIataCity": "ZCL", + "codeIso2Country": "MX", + "geonameId": 3979844, + "latitudeCity": 22.8, + "longitudeCity": -102.55, + "nameCity": "Zacatecas", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-4", + "cityId": 9092, + "codeIataCity": "ZCO", + "codeIso2Country": "CL", + "geonameId": 3870011, + "latitudeCity": -38.770355, + "longitudeCity": -72.63845, + "nameCity": "Temuco", + "timezone": "America/Santiago" + }, + { + "GMT": "1", + "cityId": 9093, + "codeIataCity": "ZDA", + "codeIso2Country": "CH", + "geonameId": 2661881, + "latitudeCity": 47.394167, + "longitudeCity": 8.045, + "nameCity": "Aarau", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9094, + "codeIataCity": "ZDB", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 46.4833, + "longitudeCity": 7.56667, + "nameCity": "Adelboden", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9095, + "codeIataCity": "ZDC", + "codeIso2Country": "CH", + "geonameId": 2661834, + "latitudeCity": 46.3181, + "longitudeCity": 6.96457, + "nameCity": "Aigle", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9096, + "codeIataCity": "ZDD", + "codeIso2Country": "CH", + "geonameId": 2661731, + "latitudeCity": 47.51667, + "longitudeCity": 9.43333, + "nameCity": "Arbon", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9097, + "codeIataCity": "ZDE", + "codeIso2Country": "CH", + "geonameId": 2661712, + "latitudeCity": 46.77793, + "longitudeCity": 9.67621, + "nameCity": "Arosa", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9098, + "codeIataCity": "ZDG", + "codeIso2Country": "CH", + "geonameId": 2661646, + "latitudeCity": 47.47333, + "longitudeCity": 8.30592, + "nameCity": "Baden", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9099, + "codeIataCity": "ZDI", + "codeIso2Country": "CH", + "geonameId": 2661567, + "latitudeCity": 46.19278, + "longitudeCity": 9.01703, + "nameCity": "Bellinzona", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9100, + "codeIataCity": "ZDK", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Biel/Bienne", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9101, + "codeIataCity": "ZDL", + "codeIso2Country": "CH", + "geonameId": 2661394, + "latitudeCity": 46.3167, + "longitudeCity": 7.98333, + "nameCity": "Brig", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9102, + "codeIataCity": "ZDO", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Buchs SG", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9103, + "codeIataCity": "ZDP", + "codeIso2Country": "CH", + "geonameId": 2661321, + "latitudeCity": 47.05901, + "longitudeCity": 7.62786, + "nameCity": "Burgdorf", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9104, + "codeIataCity": "ZDQ", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Champery", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9105, + "codeIataCity": "ZDR", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Chateau-d'Oex", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9106, + "codeIataCity": "ZDS", + "codeIso2Country": "CH", + "geonameId": 2661176, + "latitudeCity": 45.83203, + "longitudeCity": 9.03119, + "nameCity": "Chiasso", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9107, + "codeIataCity": "ZDT", + "codeIso2Country": "CH", + "geonameId": 2661169, + "latitudeCity": 46.8499, + "longitudeCity": 9.53287, + "nameCity": "Chur", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9108, + "codeIataCity": "ZDV", + "codeIso2Country": "CH", + "geonameId": 2661039, + "latitudeCity": 46.8043, + "longitudeCity": 9.83723, + "nameCity": "Davos", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9109, + "codeIataCity": "ZDW", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Delemont", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9110, + "codeIataCity": "ZDX", + "codeIso2Country": "CH", + "geonameId": 2661015, + "latitudeCity": 47.40165, + "longitudeCity": 8.40015, + "nameCity": "Dietikon", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9111, + "codeIataCity": "ZDZ", + "codeIso2Country": "CH", + "geonameId": 2660925, + "latitudeCity": 47.12849, + "longitudeCity": 8.74735, + "nameCity": "Einsiedeln", + "timezone": "Europe/Zurich" + }, + { + "GMT": "2", + "cityId": 9112, + "codeIataCity": "ZEC", + "codeIso2Country": "ZA", + "geonameId": 956767, + "latitudeCity": -27.0, + "longitudeCity": 28.0, + "nameCity": "Secunda", + "timezone": "Africa/Johannesburg" + }, + { + "GMT": "1", + "cityId": 9113, + "codeIataCity": "ZEE", + "codeIso2Country": "DE", + "geonameId": 2923822, + "latitudeCity": 50.5516, + "longitudeCity": 9.67518, + "nameCity": "Fulda", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "cityId": 9114, + "codeIataCity": "ZEF", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 36.28, + "longitudeCity": -80.79, + "nameCity": "Nanhai", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "9", + "cityId": 9115, + "codeIataCity": "ZEG", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -5.983333, + "longitudeCity": 139.36667, + "nameCity": "Senggo", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "cityId": 9116, + "codeIataCity": "ZEI", + "codeIso2Country": "DE", + "geonameId": 2922530, + "latitudeCity": 47.49209, + "longitudeCity": 11.09576, + "nameCity": "Garmisch-Partenkirchen", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 9117, + "codeIataCity": "ZEJ", + "codeIso2Country": "DE", + "geonameId": 2921466, + "latitudeCity": 51.5167, + "longitudeCity": 7.11667, + "nameCity": "Gelsenkirchen", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-8", + "cityId": 9118, + "codeIataCity": "ZEL", + "codeIso2Country": "CA", + "geonameId": 5897730, + "latitudeCity": 52.166668, + "longitudeCity": -128.1, + "nameCity": "Bella Bella", + "timezone": "America/Vancouver" + }, + { + "GMT": "-5", + "cityId": 9119, + "codeIataCity": "ZEM", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.25, + "longitudeCity": -78.51667, + "nameCity": "East Main", + "timezone": "America/Montreal" + }, + { + "GMT": "10", + "cityId": 9120, + "codeIataCity": "ZEN", + "codeIso2Country": "PG", + "geonameId": 2082758, + "latitudeCity": -6.95, + "longitudeCity": 146.61667, + "nameCity": "Zenag", + "timezone": "Pacific/Port_Moresby" + }, + { + "GMT": "0", + "cityId": 9121, + "codeIataCity": "ZEQ", + "codeIso2Country": "GB", + "geonameId": 2651286, + "latitudeCity": 53.69076, + "longitudeCity": -1.62907, + "nameCity": "Dewsbury", + "timezone": "Europe/London" + }, + { + "GMT": "5.30", + "cityId": 9122, + "codeIataCity": "ZER", + "codeIso2Country": "IN", + "geonameId": 0, + "latitudeCity": 27.633333, + "longitudeCity": 93.833336, + "nameCity": "Zero", + "timezone": "Asia/Kolkata" + }, + { + "GMT": "1", + "cityId": 9123, + "codeIataCity": "ZEU", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Goettingen", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 9124, + "codeIataCity": "ZEY", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 51.35, + "longitudeCity": 7.46667, + "nameCity": "Hagen", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-8", + "cityId": 9125, + "codeIataCity": "ZFA", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 63.216667, + "longitudeCity": -133.36667, + "nameCity": "Faro", + "timezone": "America/Whitehorse" + }, + { + "GMT": "-4", + "cityId": 9126, + "codeIataCity": "ZFB", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 51.583332, + "longitudeCity": -57.916668, + "nameCity": "Old Fort Bay", + "timezone": "America/Blanc-Sablon" + }, + { + "GMT": "-6", + "cityId": 9127, + "codeIataCity": "ZFD", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 59.316666, + "longitudeCity": -107.166664, + "nameCity": "Fond Du Lac", + "timezone": "America/Regina" + }, + { + "GMT": "0", + "cityId": 9128, + "codeIataCity": "ZFI", + "codeIso2Country": "GB", + "geonameId": 2653225, + "latitudeCity": 53.25, + "longitudeCity": -1.41667, + "nameCity": "Chesterfield", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 9129, + "codeIataCity": "ZFK", + "codeIso2Country": "DK", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Guderup", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-6", + "cityId": 9130, + "codeIataCity": "ZFL", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 50.833332, + "longitudeCity": -93.65, + "nameCity": "South Trout Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-7", + "cityId": 9131, + "codeIataCity": "ZFM", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 67.477776, + "longitudeCity": -134.95277, + "nameCity": "Fort Mcpherson", + "timezone": "America/Yellowknife" + }, + { + "GMT": "-7", + "cityId": 9132, + "codeIataCity": "ZFN", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 64.916664, + "longitudeCity": -125.566666, + "nameCity": "Tulita", + "timezone": "America/Yellowknife" + }, + { + "GMT": "1", + "cityId": 9133, + "codeIataCity": "ZFR", + "codeIso2Country": "DE", + "geonameId": 2925535, + "latitudeCity": 52.35, + "longitudeCity": 14.55, + "nameCity": "Frankfurt (Oder)", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-3", + "cityId": 9134, + "codeIataCity": "ZFU", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -23.396452, + "longitudeCity": -46.321444, + "nameCity": "Aruja", + "timezone": "America/Sao_Paulo" + }, + { + "GMT": "-7", + "cityId": 9135, + "codeIataCity": "ZFW", + "codeIso2Country": "CA", + "geonameId": 5922904, + "latitudeCity": 56.066666, + "longitudeCity": -118.38333, + "nameCity": "Fairview", + "timezone": "America/Edmonton" + }, + { + "GMT": "1", + "cityId": 9136, + "codeIataCity": "ZGA", + "codeIso2Country": "DE", + "geonameId": 2921232, + "latitudeCity": 50.8667, + "longitudeCity": 12.0833, + "nameCity": "Gera", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 9137, + "codeIataCity": "ZGE", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 51.1667, + "longitudeCity": 15.0, + "nameCity": "Goerlitz", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-8", + "cityId": 9138, + "codeIataCity": "ZGF", + "codeIso2Country": "CA", + "geonameId": 6086871, + "latitudeCity": 49.016666, + "longitudeCity": -118.433334, + "nameCity": "Grand Forks", + "timezone": "America/Vancouver" + }, + { + "GMT": "-6", + "cityId": 9139, + "codeIataCity": "ZGI", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 54.683334, + "longitudeCity": -94.166664, + "nameCity": "Gods River", + "timezone": "America/Winnipeg" + }, + { + "GMT": "10", + "cityId": 9140, + "codeIataCity": "ZGL", + "codeIso2Country": "AU", + "geonameId": 0, + "latitudeCity": -25.683332, + "longitudeCity": 142.11667, + "nameCity": "South Galway", + "timezone": "Australia/Brisbane" + }, + { + "GMT": "2", + "cityId": 9141, + "codeIataCity": "ZGM", + "codeIso2Country": "ZM", + "geonameId": 901116, + "latitudeCity": -15.958333, + "longitudeCity": 25.934444, + "nameCity": "Ngoma", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "8", + "cityId": 9142, + "codeIataCity": "ZGN", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 22.61321, + "longitudeCity": 108.1675, + "nameCity": "Zhongshan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 9143, + "codeIataCity": "ZGO", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 23.430237, + "longitudeCity": 116.75859, + "nameCity": "Gotha", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "cityId": 9144, + "codeIataCity": "ZGR", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.066666, + "longitudeCity": -95.46667, + "nameCity": "Little Grand Rapids", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-4", + "cityId": 9145, + "codeIataCity": "ZGS", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 50.333332, + "longitudeCity": -60.666668, + "nameCity": "Gethsemani", + "timezone": "America/Blanc-Sablon" + }, + { + "GMT": "11", + "cityId": 9146, + "codeIataCity": "ZGU", + "codeIso2Country": "VU", + "geonameId": 0, + "latitudeCity": -14.220086, + "longitudeCity": 167.58827, + "nameCity": "Gaua", + "timezone": "Pacific/Efate" + }, + { + "GMT": "1", + "cityId": 9147, + "codeIataCity": "ZGW", + "codeIso2Country": "DE", + "geonameId": 2917788, + "latitudeCity": 54.1, + "longitudeCity": 13.3833, + "nameCity": "Greifswald", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 9148, + "codeIataCity": "ZGX", + "codeIso2Country": "DK", + "geonameId": 2610319, + "latitudeCity": 56.45319, + "longitudeCity": 9.40201, + "nameCity": "Viborg", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "8", + "cityId": 9149, + "codeIataCity": "ZGY", + "codeIso2Country": "MY", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Kuching", + "timezone": "Asia/Kuching" + }, + { + "GMT": "8", + "cityId": 9150, + "codeIataCity": "ZHA", + "codeIso2Country": "CN", + "geonameId": 1784990, + "latitudeCity": 21.214727, + "longitudeCity": 110.36272, + "nameCity": "Zhanjiang", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 9151, + "codeIataCity": "ZHB", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Engelberg", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9152, + "codeIataCity": "ZHD", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Fluelen", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9153, + "codeIataCity": "ZHE", + "codeIso2Country": "CH", + "geonameId": 2660727, + "latitudeCity": 47.55816, + "longitudeCity": 8.89854, + "nameCity": "Frauenfeld", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9154, + "codeIataCity": "ZHF", + "codeIso2Country": "CH", + "geonameId": 2660718, + "latitudeCity": 46.8, + "longitudeCity": 7.15, + "nameCity": "Fribourg", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9155, + "codeIataCity": "ZHG", + "codeIso2Country": "CH", + "geonameId": 2660594, + "latitudeCity": 47.04057, + "longitudeCity": 9.06804, + "nameCity": "Glarus", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9156, + "codeIataCity": "ZHH", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 30.776598, + "longitudeCity": 114.209625, + "nameCity": "Gossau SG", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9157, + "codeIataCity": "ZHI", + "codeIso2Country": "CH", + "geonameId": 2660512, + "latitudeCity": 47.193585, + "longitudeCity": 7.395445, + "nameCity": "Grenchen", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9158, + "codeIataCity": "ZHJ", + "codeIso2Country": "CH", + "geonameId": 2660498, + "latitudeCity": 46.62396, + "longitudeCity": 8.03601, + "nameCity": "Grindelwald", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9159, + "codeIataCity": "ZHK", + "codeIso2Country": "CH", + "geonameId": 2660461, + "latitudeCity": 46.47215, + "longitudeCity": 7.28685, + "nameCity": "Gstaad", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9160, + "codeIataCity": "ZHL", + "codeIso2Country": "CH", + "geonameId": 2660395, + "latitudeCity": 34.736362, + "longitudeCity": 112.38541, + "nameCity": "Heerbrugg", + "timezone": "Europe/Zurich" + }, + { + "GMT": "6", + "cityId": 9161, + "codeIataCity": "ZHM", + "codeIso2Country": "BD", + "geonameId": 0, + "latitudeCity": 24.398611, + "longitudeCity": 91.92111, + "nameCity": "Shamshernagar", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "1", + "cityId": 9162, + "codeIataCity": "ZHN", + "codeIso2Country": "CH", + "geonameId": 2660355, + "latitudeCity": 32.9837, + "longitudeCity": 112.61305, + "nameCity": "Herzogenbuchsee", + "timezone": "Europe/Zurich" + }, + { + "GMT": "-8", + "cityId": 9163, + "codeIataCity": "ZHO", + "codeIso2Country": "CA", + "geonameId": 5977783, + "latitudeCity": 54.3998, + "longitudeCity": -126.67, + "nameCity": "Houston", + "timezone": "America/Vancouver" + }, + { + "GMT": "-7", + "cityId": 9164, + "codeIataCity": "ZHP", + "codeIso2Country": "CA", + "geonameId": 5975034, + "latitudeCity": 55.4, + "longitudeCity": -116.48333, + "nameCity": "High Prairie", + "timezone": "America/Edmonton" + }, + { + "GMT": "1", + "cityId": 9165, + "codeIataCity": "ZHR", + "codeIso2Country": "CH", + "geonameId": 2660191, + "latitudeCity": 46.4947, + "longitudeCity": 7.67326, + "nameCity": "Kandersteg", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9166, + "codeIataCity": "ZHS", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 46.8667, + "longitudeCity": 9.86667, + "nameCity": "Klosters", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9167, + "codeIataCity": "ZHU", + "codeIso2Country": "CH", + "geonameId": 2660108, + "latitudeCity": 22.011787, + "longitudeCity": 113.3706, + "nameCity": "Kreuzlingen", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9168, + "codeIataCity": "ZHV", + "codeIso2Country": "CH", + "geonameId": 2660076, + "latitudeCity": 47.09993, + "longitudeCity": 6.82586, + "nameCity": "La Chaux-de-Fonds", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9169, + "codeIataCity": "ZHW", + "codeIso2Country": "CH", + "geonameId": 2660034, + "latitudeCity": 47.21526, + "longitudeCity": 7.79607, + "nameCity": "Langenthal", + "timezone": "Europe/Zurich" + }, + { + "GMT": "8", + "cityId": 9170, + "codeIataCity": "ZHY", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 37.568935, + "longitudeCity": 105.15253, + "nameCity": "Zhongwei", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 9171, + "codeIataCity": "ZIB", + "codeIso2Country": "DK", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Nyborg", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-4", + "cityId": 9172, + "codeIataCity": "ZIC", + "codeIso2Country": "CL", + "geonameId": 3870011, + "latitudeCity": -38.216667, + "longitudeCity": -72.333336, + "nameCity": "Victoria", + "timezone": "America/Santiago" + }, + { + "GMT": "1", + "cityId": 9173, + "codeIataCity": "ZIE", + "codeIso2Country": "IT", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Vulcano", + "timezone": "Europe/Rome" + }, + { + "GMT": "0", + "cityId": 9174, + "codeIataCity": "ZIG", + "codeIso2Country": "SN", + "geonameId": 2243940, + "latitudeCity": 12.556111, + "longitudeCity": -16.275833, + "nameCity": "Ziguinchor", + "timezone": "Africa/Dakar" + }, + { + "GMT": "-6", + "cityId": 9175, + "codeIataCity": "ZIH", + "codeIso2Country": "MX", + "geonameId": 3979673, + "latitudeCity": 17.606783, + "longitudeCity": -101.464066, + "nameCity": "Ixtapa", + "timezone": "America/Mexico_City" + }, + { + "GMT": "1", + "cityId": 9176, + "codeIataCity": "ZIJ", + "codeIso2Country": "DK", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Nykobing Sjaelland", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "cityId": 9177, + "codeIataCity": "ZIL", + "codeIso2Country": "DK", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Horsens", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "cityId": 9178, + "codeIataCity": "ZIN", + "codeIso2Country": "CH", + "geonameId": 2660253, + "latitudeCity": 13.779444, + "longitudeCity": 8.983056, + "nameCity": "Interlaken", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9179, + "codeIataCity": "ZIO", + "codeIso2Country": "DE", + "geonameId": 2831580, + "latitudeCity": 51.17343, + "longitudeCity": 7.0845, + "nameCity": "Solingen", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 9180, + "codeIataCity": "ZIP", + "codeIso2Country": "IT", + "geonameId": 0, + "latitudeCity": 49.871666, + "longitudeCity": 11.646667, + "nameCity": "Lipari", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "cityId": 9181, + "codeIataCity": "ZIQ", + "codeIso2Country": "IT", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Salina Island", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "cityId": 9182, + "codeIataCity": "ZIR", + "codeIso2Country": "DK", + "geonameId": 2615006, + "latitudeCity": 24.963888, + "longitudeCity": 53.15278, + "nameCity": "Randers", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "cityId": 9183, + "codeIataCity": "ZIT", + "codeIso2Country": "DE", + "geonameId": 2804008, + "latitudeCity": 50.9, + "longitudeCity": 14.8333, + "nameCity": "Zittau", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "cityId": 9184, + "codeIataCity": "ZIY", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Lianhuashan", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "5", + "cityId": 9185, + "codeIataCity": "ZIZ", + "codeIso2Country": "PK", + "geonameId": 0, + "latitudeCity": 26.733334, + "longitudeCity": 67.666664, + "nameCity": "Zamzama", + "timezone": "Asia/Karachi" + }, + { + "GMT": "1", + "cityId": 9186, + "codeIataCity": "ZJA", + "codeIso2Country": "CH", + "geonameId": 2659960, + "latitudeCity": 47.05953, + "longitudeCity": 6.75228, + "nameCity": "Le Locle", + "timezone": "Europe/Zurich" + }, + { + "GMT": "8", + "cityId": 9187, + "codeIataCity": "ZJB", + "codeIso2Country": "MY", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Kuantan", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "1", + "cityId": 9188, + "codeIataCity": "ZJC", + "codeIso2Country": "CH", + "geonameId": 2659952, + "latitudeCity": 47.38853, + "longitudeCity": 8.17503, + "nameCity": "Lenzburg", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9189, + "codeIataCity": "ZJD", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Lenzerheide/Lai", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9190, + "codeIataCity": "ZJE", + "codeIso2Country": "IT", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Panarea", + "timezone": "Europe/Rome" + }, + { + "GMT": "-6", + "cityId": 9191, + "codeIataCity": "ZJG", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 54.519444, + "longitudeCity": -98.04611, + "nameCity": "Jenpeg", + "timezone": "America/Winnipeg" + }, + { + "GMT": "1", + "cityId": 9192, + "codeIataCity": "ZJI", + "codeIso2Country": "CH", + "geonameId": 2659869, + "latitudeCity": 46.1709, + "longitudeCity": 8.79953, + "nameCity": "Locarno", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9193, + "codeIataCity": "ZJJ", + "codeIso2Country": "IT", + "geonameId": 3169807, + "latitudeCity": 40.7569, + "longitudeCity": 14.0144, + "nameCity": "Procida", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "cityId": 9194, + "codeIataCity": "ZJL", + "codeIso2Country": "CH", + "geonameId": 2659808, + "latitudeCity": 47.0741, + "longitudeCity": 7.30655, + "nameCity": "Lyss", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9195, + "codeIataCity": "ZJM", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 46.1028, + "longitudeCity": 7.07245, + "nameCity": "Martigny", + "timezone": "Europe/Zurich" + }, + { + "GMT": "-6", + "cityId": 9196, + "codeIataCity": "ZJN", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.11667, + "longitudeCity": -101.23333, + "nameCity": "Swan River", + "timezone": "America/Winnipeg" + }, + { + "GMT": "1", + "cityId": 9197, + "codeIataCity": "ZJP", + "codeIso2Country": "CH", + "geonameId": 2659601, + "latitudeCity": 46.433, + "longitudeCity": 6.91143, + "nameCity": "Montreux", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9198, + "codeIataCity": "ZJQ", + "codeIso2Country": "CH", + "geonameId": 2659587, + "latitudeCity": 46.51127, + "longitudeCity": 6.49854, + "nameCity": "Morges", + "timezone": "Europe/Zurich" + }, + { + "GMT": "8", + "cityId": 9199, + "codeIataCity": "ZJR", + "codeIso2Country": "MY", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Penang", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "1", + "cityId": 9200, + "codeIataCity": "ZJS", + "codeIso2Country": "DE", + "geonameId": 2895044, + "latitudeCity": 18.31063, + "longitudeCity": 109.409706, + "nameCity": "Jena", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "cityId": 9201, + "codeIataCity": "ZJT", + "codeIso2Country": "MY", + "geonameId": 1732725, + "latitudeCity": 1.358, + "longitudeCity": 103.5468, + "nameCity": "Tanjung Pelepas", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "1", + "cityId": 9202, + "codeIataCity": "ZJU", + "codeIso2Country": "CH", + "geonameId": 2659297, + "latitudeCity": 47.34999, + "longitudeCity": 7.90329, + "nameCity": "Olten", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9203, + "codeIataCity": "ZJV", + "codeIso2Country": "CH", + "geonameId": 2659172, + "latitudeCity": 46.4955, + "longitudeCity": 9.90126, + "nameCity": "Pontresina", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9204, + "codeIataCity": "ZJW", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Rapperswil", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9205, + "codeIataCity": "ZJX", + "codeIso2Country": "IT", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Stromboli", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "cityId": 9206, + "codeIataCity": "ZJY", + "codeIso2Country": "IT", + "geonameId": 3170189, + "latitudeCity": 40.8938, + "longitudeCity": 12.9625, + "nameCity": "Ponza", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "cityId": 9207, + "codeIataCity": "ZJZ", + "codeIso2Country": "CH", + "geonameId": 2658969, + "latitudeCity": 47.478, + "longitudeCity": 9.4903, + "nameCity": "Rorschach", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9208, + "codeIataCity": "ZKA", + "codeIso2Country": "CH", + "geonameId": 2658793, + "latitudeCity": 47.04896, + "longitudeCity": 9.44103, + "nameCity": "Sargans", + "timezone": "Europe/Zurich" + }, + { + "GMT": "2", + "cityId": 9209, + "codeIataCity": "ZKB", + "codeIso2Country": "ZM", + "geonameId": 0, + "latitudeCity": -8.522222, + "longitudeCity": 30.659721, + "nameCity": "Kasaba Bay", + "timezone": "Africa/Lusaka" + }, + { + "GMT": "1", + "cityId": 9210, + "codeIataCity": "ZKC", + "codeIso2Country": "CH", + "geonameId": 2658786, + "latitudeCity": 46.89851, + "longitudeCity": 8.25068, + "nameCity": "Sarnen", + "timezone": "Europe/Zurich" + }, + { + "GMT": "-5", + "cityId": 9211, + "codeIataCity": "ZKE", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.333332, + "longitudeCity": -81.333336, + "nameCity": "Kaschechewan", + "timezone": "America/Toronto" + }, + { + "GMT": "1", + "cityId": 9212, + "codeIataCity": "ZKF", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "St Margrethen", + "timezone": "Europe/Zurich" + }, + { + "GMT": "-4", + "cityId": 9213, + "codeIataCity": "ZKG", + "codeIso2Country": "CA", + "geonameId": 5990251, + "latitudeCity": 50.18889, + "longitudeCity": -61.291668, + "nameCity": "Kegaska", + "timezone": "America/Blanc-Sablon" + }, + { + "GMT": "1", + "cityId": 9214, + "codeIataCity": "ZKI", + "codeIso2Country": "CH", + "geonameId": 2658898, + "latitudeCity": 46.10805, + "longitudeCity": 7.92741, + "nameCity": "Saas-Fee", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9215, + "codeIataCity": "ZKJ", + "codeIso2Country": "CH", + "geonameId": 2658761, + "latitudeCity": 47.69732, + "longitudeCity": 8.63493, + "nameCity": "Schaffhausen", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9216, + "codeIataCity": "ZKK", + "codeIso2Country": "CH", + "geonameId": 2658665, + "latitudeCity": 47.0167, + "longitudeCity": 8.65, + "nameCity": "Schwyz", + "timezone": "Europe/Zurich" + }, + { + "GMT": "9", + "cityId": 9217, + "codeIataCity": "ZKL", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -2.102778, + "longitudeCity": 133.51666, + "nameCity": "Steenkool", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "cityId": 9218, + "codeIataCity": "ZKM", + "codeIso2Country": "GA", + "geonameId": 0, + "latitudeCity": -2.533333, + "longitudeCity": 9.75, + "nameCity": "Sette Cama", + "timezone": "Africa/Libreville" + }, + { + "GMT": "1", + "cityId": 9219, + "codeIataCity": "ZKO", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 46.2919, + "longitudeCity": 7.53559, + "nameCity": "Sierre/Siders", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9220, + "codeIataCity": "ZKS", + "codeIso2Country": "CH", + "geonameId": 2658564, + "latitudeCity": 47.20791, + "longitudeCity": 7.53714, + "nameCity": "Solothurn", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9221, + "codeIataCity": "ZKU", + "codeIso2Country": "CH", + "geonameId": 2658440, + "latitudeCity": 47.16667, + "longitudeCity": 8.1, + "nameCity": "Sursee", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9222, + "codeIataCity": "ZKV", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Thalwil", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9223, + "codeIataCity": "ZKW", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 47.3264, + "longitudeCity": 8.79779, + "nameCity": "Wetzikon", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9224, + "codeIataCity": "ZKX", + "codeIso2Country": "CH", + "geonameId": 2658209, + "latitudeCity": 47.43813, + "longitudeCity": 9.13922, + "nameCity": "Uzwil", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9225, + "codeIataCity": "ZKY", + "codeIso2Country": "CH", + "geonameId": 2658168, + "latitudeCity": 46.09872, + "longitudeCity": 7.21621, + "nameCity": "Verbier", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9226, + "codeIataCity": "ZKZ", + "codeIso2Country": "CH", + "geonameId": 2658145, + "latitudeCity": 46.4612, + "longitudeCity": 6.84328, + "nameCity": "Vevey", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9227, + "codeIataCity": "ZLA", + "codeIso2Country": "CH", + "geonameId": 2658126, + "latitudeCity": 36.033333, + "longitudeCity": 103.86667, + "nameCity": "Villars-sur-Ollon", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9228, + "codeIataCity": "ZLB", + "codeIso2Country": "CH", + "geonameId": 2658112, + "latitudeCity": 46.2937, + "longitudeCity": 7.88149, + "nameCity": "Visp", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9229, + "codeIataCity": "ZLC", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Waedenswil", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9230, + "codeIataCity": "ZLD", + "codeIso2Country": "CH", + "geonameId": 2658036, + "latitudeCity": 40.2, + "longitudeCity": 94.683334, + "nameCity": "Weinfelden", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9231, + "codeIataCity": "ZLE", + "codeIso2Country": "CH", + "geonameId": 2658020, + "latitudeCity": 46.60542, + "longitudeCity": 7.92171, + "nameCity": "Wengen", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9232, + "codeIataCity": "ZLF", + "codeIso2Country": "CH", + "geonameId": 2658011, + "latitudeCity": 47.4705, + "longitudeCity": 8.31636, + "nameCity": "Wettingen", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9233, + "codeIataCity": "ZLG", + "codeIso2Country": "HU", + "geonameId": 0, + "latitudeCity": 20.842222, + "longitudeCity": -17.078333, + "nameCity": "El Gouera", + "timezone": "Europe/Budapest" + }, + { + "GMT": "1", + "cityId": 9234, + "codeIataCity": "ZLH", + "codeIso2Country": "CH", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Wil", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9235, + "codeIataCity": "ZLI", + "codeIso2Country": "CH", + "geonameId": 2657970, + "latitudeCity": 47.5, + "longitudeCity": 8.75, + "nameCity": "Winterthur", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9236, + "codeIataCity": "ZLJ", + "codeIso2Country": "CH", + "geonameId": 2657941, + "latitudeCity": 46.7833, + "longitudeCity": 6.65, + "nameCity": "Yverdon-les-Bains", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9237, + "codeIataCity": "ZLL", + "codeIso2Country": "CH", + "geonameId": 2657915, + "latitudeCity": 36.05, + "longitudeCity": 103.85, + "nameCity": "Zofingen", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9238, + "codeIataCity": "ZLM", + "codeIso2Country": "CH", + "geonameId": 2657908, + "latitudeCity": 47.17242, + "longitudeCity": 8.51744, + "nameCity": "Zug", + "timezone": "Europe/Zurich" + }, + { + "GMT": "-6", + "cityId": 9239, + "codeIataCity": "ZLO", + "codeIso2Country": "MX", + "geonameId": 3996663, + "latitudeCity": 19.113333, + "longitudeCity": -104.350555, + "nameCity": "Manzanillo", + "timezone": "America/Mexico_City" + }, + { + "GMT": "-4", + "cityId": 9240, + "codeIataCity": "ZLT", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 50.828056, + "longitudeCity": -58.97601, + "nameCity": "La Tabatiere", + "timezone": "America/Blanc-Sablon" + }, + { + "GMT": "1", + "cityId": 9241, + "codeIataCity": "ZLU", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 53.3167, + "longitudeCity": 11.5, + "nameCity": "Ludwigslust", + "timezone": "Europe/Berlin" + }, + { + "GMT": "2", + "cityId": 9242, + "codeIataCity": "ZLV", + "codeIso2Country": "FI", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Luosto", + "timezone": "Europe/Helsinki" + }, + { + "GMT": "8", + "cityId": 9243, + "codeIataCity": "ZLW", + "codeIso2Country": "MY", + "geonameId": 1732722, + "latitudeCity": 1.462, + "longitudeCity": 103.9053, + "nameCity": "Pasir Gudang", + "timezone": "Asia/Kuala_Lumpur" + }, + { + "GMT": "0", + "cityId": 9244, + "codeIataCity": "ZMA", + "codeIso2Country": "GB", + "geonameId": 2643097, + "latitudeCity": 53.1333, + "longitudeCity": -1.2, + "nameCity": "Mansfield", + "timezone": "Europe/London" + }, + { + "GMT": "1", + "cityId": 9245, + "codeIataCity": "ZMC", + "codeIso2Country": "PL", + "geonameId": 0, + "latitudeCity": 48.13333, + "longitudeCity": 114.9, + "nameCity": "Miedzyzdroje", + "timezone": "Europe/Warsaw" + }, + { + "GMT": "-5", + "cityId": 9246, + "codeIataCity": "ZMD", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -9.083333, + "longitudeCity": -68.75, + "nameCity": "Sena Madureira", + "timezone": "America/Rio_Branco" + }, + { + "GMT": "-8", + "cityId": 9247, + "codeIataCity": "ZMH", + "codeIso2Country": "CA", + "geonameId": 5881639, + "latitudeCity": 51.745556, + "longitudeCity": -121.339165, + "nameCity": "108 Mile Ranch", + "timezone": "America/Vancouver" + }, + { + "GMT": "8", + "cityId": 9248, + "codeIataCity": "ZMK", + "codeIso2Country": "MY", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Bintulu", + "timezone": "Asia/Kuching" + }, + { + "GMT": "-6", + "cityId": 9249, + "codeIataCity": "ZMM", + "codeIso2Country": "MX", + "geonameId": 0, + "latitudeCity": 19.983334, + "longitudeCity": -102.26667, + "nameCity": "Zamora", + "timezone": "America/Mexico_City" + }, + { + "GMT": "1", + "cityId": 9250, + "codeIataCity": "ZMO", + "codeIso2Country": "IT", + "geonameId": 3173331, + "latitudeCity": 44.6478, + "longitudeCity": 10.9254, + "nameCity": "Modena", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "cityId": 9251, + "codeIataCity": "ZMQ", + "codeIso2Country": "NO", + "geonameId": 3142228, + "latitudeCity": 60.72638, + "longitudeCity": 10.61718, + "nameCity": "Raufoss", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 9252, + "codeIataCity": "ZMR", + "codeIso2Country": "IT", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Merano/Meran", + "timezone": "Europe/Rome" + }, + { + "GMT": "-8", + "cityId": 9253, + "codeIataCity": "ZMT", + "codeIso2Country": "CA", + "geonameId": 6067676, + "latitudeCity": 54.016666, + "longitudeCity": -132.15, + "nameCity": "Masset", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "cityId": 9254, + "codeIataCity": "ZMW", + "codeIso2Country": "DK", + "geonameId": 2623554, + "latitudeCity": 55.93814, + "longitudeCity": 9.12178, + "nameCity": "Brande", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "1", + "cityId": 9255, + "codeIataCity": "ZMX", + "codeIso2Country": "NO", + "geonameId": 3133498, + "latitudeCity": 62.27594, + "longitudeCity": 10.78241, + "nameCity": "Tynset", + "timezone": "Europe/Oslo" + }, + { + "GMT": "8", + "cityId": 9256, + "codeIataCity": "ZMY", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 30.55, + "longitudeCity": 116.43333, + "nameCity": "Huangpu", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 9257, + "codeIataCity": "ZMZ", + "codeIso2Country": "NO", + "geonameId": 3161474, + "latitudeCity": 66.14908, + "longitudeCity": 13.83622, + "nameCity": "Bjerka", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 9258, + "codeIataCity": "ZNB", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 51.6803, + "longitudeCity": 7.82089, + "nameCity": "Hamm", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-9", + "cityId": 9259, + "codeIataCity": "ZNC", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 61.0, + "longitudeCity": -160.0, + "nameCity": "Nyac", + "timezone": "America/Anchorage" + }, + { + "GMT": "1", + "cityId": 9260, + "codeIataCity": "ZND", + "codeIso2Country": "NE", + "geonameId": 0, + "latitudeCity": 13.779444, + "longitudeCity": 8.983056, + "nameCity": "Zinder", + "timezone": "Africa/Niamey" + }, + { + "GMT": "8", + "cityId": 9261, + "codeIataCity": "ZNE", + "codeIso2Country": "AU", + "geonameId": 2064768, + "latitudeCity": -23.416517, + "longitudeCity": 119.80137, + "nameCity": "Newman", + "timezone": "Australia/Perth" + }, + { + "GMT": "-6", + "cityId": 9262, + "codeIataCity": "ZNG", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 53.0, + "longitudeCity": -97.26667, + "nameCity": "Negginan", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-8", + "cityId": 9263, + "codeIataCity": "ZNU", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 51.85, + "longitudeCity": -127.86667, + "nameCity": "Namu", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "cityId": 9264, + "codeIataCity": "ZNV", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 50.35, + "longitudeCity": 7.6, + "nameCity": "Koblenz", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 9265, + "codeIataCity": "ZNW", + "codeIso2Country": "DE", + "geonameId": 2877650, + "latitudeCity": 50.3833, + "longitudeCity": 8.05, + "nameCity": "Limburg", + "timezone": "Europe/Berlin" + }, + { + "GMT": "3", + "cityId": 9266, + "codeIataCity": "ZNZ", + "codeIso2Country": "TZ", + "geonameId": 148730, + "latitudeCity": -6.218466, + "longitudeCity": 39.221184, + "nameCity": "Zanzibar", + "timezone": "Africa/Dar_es_Salaam" + }, + { + "GMT": "-8", + "cityId": 9267, + "codeIataCity": "ZOF", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.36667, + "longitudeCity": -127.7, + "nameCity": "Ocean Falls", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "cityId": 9268, + "codeIataCity": "ZOG", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 41.457, + "longitudeCity": -84.1733, + "nameCity": "Lueneburg", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 9269, + "codeIataCity": "ZOM", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 52.2833, + "longitudeCity": 8.91667, + "nameCity": "Minden", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 9270, + "codeIataCity": "ZOO", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Muelheim an der Ruhr", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-4", + "cityId": 9271, + "codeIataCity": "ZOS", + "codeIso2Country": "CL", + "geonameId": 3877949, + "latitudeCity": -40.607777, + "longitudeCity": -73.05556, + "nameCity": "Osorno", + "timezone": "America/Santiago" + }, + { + "GMT": "1", + "cityId": 9272, + "codeIataCity": "ZOY", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 51.4667, + "longitudeCity": 6.85, + "nameCity": "Oberhausen", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 9273, + "codeIataCity": "ZPA", + "codeIso2Country": "DE", + "geonameId": 2857798, + "latitudeCity": 48.4833, + "longitudeCity": 7.93333, + "nameCity": "Offenburg", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "cityId": 9274, + "codeIataCity": "ZPB", + "codeIso2Country": "CA", + "geonameId": 6137043, + "latitudeCity": 53.890556, + "longitudeCity": -92.195274, + "nameCity": "Sachigo Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-4", + "cityId": 9275, + "codeIataCity": "ZPC", + "codeIso2Country": "CL", + "geonameId": 3875070, + "latitudeCity": -39.76389, + "longitudeCity": -71.63333, + "nameCity": "Pucon", + "timezone": "America/Santiago" + }, + { + "GMT": "1", + "cityId": 9276, + "codeIataCity": "ZPD", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 53.1667, + "longitudeCity": 8.2, + "nameCity": "Oldenburg", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 9277, + "codeIataCity": "ZPF", + "codeIso2Country": "DE", + "geonameId": 2855328, + "latitudeCity": 48.5746, + "longitudeCity": 13.4685, + "nameCity": "Passau", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "cityId": 9278, + "codeIataCity": "ZPH", + "codeIso2Country": "US", + "geonameId": 4167147, + "latitudeCity": 28.233334, + "longitudeCity": -82.183334, + "nameCity": "Zephyrhills", + "timezone": "America/New_York" + }, + { + "GMT": "1", + "cityId": 9279, + "codeIataCity": "ZPL", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 24.40528, + "longitudeCity": 98.5319, + "nameCity": "Recklinghausen", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 9280, + "codeIataCity": "ZPM", + "codeIso2Country": "DE", + "geonameId": 2849483, + "latitudeCity": 49.015, + "longitudeCity": 12.0956, + "nameCity": "Regensburg", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "cityId": 9281, + "codeIataCity": "ZPO", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 55.516666, + "longitudeCity": -106.583336, + "nameCity": "Pine House", + "timezone": "America/Regina" + }, + { + "GMT": "1", + "cityId": 9282, + "codeIataCity": "ZPY", + "codeIso2Country": "DE", + "geonameId": 2832521, + "latitudeCity": 50.80019, + "longitudeCity": 7.20769, + "nameCity": "Siegburg", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 9283, + "codeIataCity": "ZQF", + "codeIso2Country": "DE", + "geonameId": 2821164, + "latitudeCity": 49.864, + "longitudeCity": 6.787, + "nameCity": "Trier", + "timezone": "Europe/Berlin" + }, + { + "GMT": "12", + "cityId": 9284, + "codeIataCity": "ZQN", + "codeIso2Country": "NZ", + "geonameId": 6204696, + "latitudeCity": -45.022038, + "longitudeCity": 168.7391, + "nameCity": "Queenstown", + "timezone": "Pacific/Auckland" + }, + { + "GMT": "-8", + "cityId": 9285, + "codeIataCity": "ZQS", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 53.0, + "longitudeCity": -132.0, + "nameCity": "Queen Charlotte Island", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "cityId": 9286, + "codeIataCity": "ZQV", + "codeIso2Country": "DE", + "geonameId": 2806142, + "latitudeCity": 49.6356, + "longitudeCity": 8.35972, + "nameCity": "Worms", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 9287, + "codeIataCity": "ZQY", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Giessen", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "cityId": 9288, + "codeIataCity": "ZQZ", + "codeIso2Country": "CN", + "geonameId": 2033595, + "latitudeCity": 40.7392, + "longitudeCity": 114.931, + "nameCity": "Zhangjiakou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 9289, + "codeIataCity": "ZRC", + "codeIso2Country": "ES", + "geonameId": 0, + "latitudeCity": 36.4884, + "longitudeCity": -4.99123, + "nameCity": "San Pedro de Alcantara", + "timezone": "Europe/Madrid" + }, + { + "GMT": "1", + "cityId": 9290, + "codeIataCity": "ZRH", + "codeIso2Country": "CH", + "geonameId": 2657896, + "latitudeCity": 47.367347, + "longitudeCity": 8.550002, + "nameCity": "Zurich", + "timezone": "Europe/Zurich" + }, + { + "GMT": "9", + "cityId": 9291, + "codeIataCity": "ZRI", + "codeIso2Country": "ID", + "geonameId": 1627453, + "latitudeCity": -1.883333, + "longitudeCity": 136.23334, + "nameCity": "Serui", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "-6", + "cityId": 9292, + "codeIataCity": "ZRJ", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 52.95, + "longitudeCity": -91.316666, + "nameCity": "Round Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "9", + "cityId": 9293, + "codeIataCity": "ZRM", + "codeIso2Country": "ID", + "geonameId": 0, + "latitudeCity": -1.85, + "longitudeCity": 138.75, + "nameCity": "Sarmi", + "timezone": "Asia/Jayapura" + }, + { + "GMT": "1", + "cityId": 9294, + "codeIataCity": "ZRN", + "codeIso2Country": "CH", + "geonameId": 2659422, + "latitudeCity": 46.3832, + "longitudeCity": 6.23955, + "nameCity": "Nyon", + "timezone": "Europe/Zurich" + }, + { + "GMT": "1", + "cityId": 9295, + "codeIataCity": "ZRO", + "codeIso2Country": "IT", + "geonameId": 3169522, + "latitudeCity": 44.69825, + "longitudeCity": 10.63125, + "nameCity": "Reggio nell'Emilia", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "cityId": 9296, + "codeIataCity": "ZRR", + "codeIso2Country": "IT", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Fiumicino", + "timezone": "Europe/Rome" + }, + { + "GMT": "1", + "cityId": 9297, + "codeIataCity": "ZRS", + "codeIso2Country": "AT", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Zurs", + "timezone": "Europe/Vienna" + }, + { + "GMT": "1", + "cityId": 9298, + "codeIataCity": "ZRW", + "codeIso2Country": "DE", + "geonameId": 2850257, + "latitudeCity": 48.85, + "longitudeCity": 8.2, + "nameCity": "Rastatt", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 9299, + "codeIataCity": "ZRY", + "codeIso2Country": "DK", + "geonameId": 2620425, + "latitudeCity": 56.13932, + "longitudeCity": 8.97378, + "nameCity": "Herning", + "timezone": "Europe/Copenhagen" + }, + { + "GMT": "-5", + "cityId": 9300, + "codeIataCity": "ZSA", + "codeIso2Country": "BS", + "geonameId": 3571357, + "latitudeCity": 24.06, + "longitudeCity": -74.53306, + "nameCity": "San Salvador", + "timezone": "America/Nassau" + }, + { + "GMT": "1", + "cityId": 9301, + "codeIataCity": "ZSC", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Schoena", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 9302, + "codeIataCity": "ZSD", + "codeIso2Country": "DE", + "geonameId": 2835249, + "latitudeCity": 53.43333, + "longitudeCity": 10.68333, + "nameCity": "Schwanheide", + "timezone": "Europe/Berlin" + }, + { + "GMT": "4", + "cityId": 9303, + "codeIataCity": "ZSE", + "codeIso2Country": "RE", + "geonameId": 935214, + "latitudeCity": -21.333332, + "longitudeCity": 55.483334, + "nameCity": "St Pierre dela Reunion", + "timezone": "Indian/Reunion" + }, + { + "GMT": "1", + "cityId": 9304, + "codeIataCity": "ZSG", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 50.35, + "longitudeCity": 11.1667, + "nameCity": "Sonneberg", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-7", + "cityId": 9305, + "codeIataCity": "ZSH", + "codeIso2Country": "US", + "geonameId": 5490263, + "latitudeCity": 30.236935, + "longitudeCity": 120.43236, + "nameCity": "Santa Fe", + "timezone": "America/Denver" + }, + { + "GMT": "1", + "cityId": 9306, + "codeIataCity": "ZSI", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Sassnitz", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "cityId": 9307, + "codeIataCity": "ZSJ", + "codeIso2Country": "CA", + "geonameId": 6140792, + "latitudeCity": 53.033333, + "longitudeCity": -93.23333, + "nameCity": "Sandy Lake", + "timezone": "America/Winnipeg" + }, + { + "GMT": "1", + "cityId": 9308, + "codeIataCity": "ZSK", + "codeIso2Country": "DE", + "geonameId": 2855337, + "latitudeCity": 53.50627, + "longitudeCity": 13.98997, + "nameCity": "Pasewalk", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-8", + "cityId": 9309, + "codeIataCity": "ZSM", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 12.1333, + "longitudeCity": -68.2167, + "nameCity": "Santa Clara", + "timezone": "America/Los_Angeles" + }, + { + "GMT": "1", + "cityId": 9310, + "codeIataCity": "ZSN", + "codeIso2Country": "DE", + "geonameId": 2827479, + "latitudeCity": 52.6, + "longitudeCity": 11.85, + "nameCity": "Stendal", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 9311, + "codeIataCity": "ZSO", + "codeIso2Country": "DE", + "geonameId": 2824948, + "latitudeCity": 31.85, + "longitudeCity": 117.28333, + "nameCity": "Suhl", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-5", + "cityId": 9312, + "codeIataCity": "ZSP", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 47.916668, + "longitudeCity": -69.25, + "nameCity": "St Paul", + "timezone": "America/Montreal" + }, + { + "GMT": "1", + "cityId": 9313, + "codeIataCity": "ZSQ", + "codeIso2Country": "DE", + "geonameId": 2842112, + "latitudeCity": 36.265884, + "longitudeCity": 120.38236, + "nameCity": "Salzwedel", + "timezone": "Europe/Berlin" + }, + { + "GMT": "0", + "cityId": 9314, + "codeIataCity": "ZSS", + "codeIso2Country": "CI", + "geonameId": 0, + "latitudeCity": 4.924444, + "longitudeCity": -6.135556, + "nameCity": "Sassandra", + "timezone": "Africa/Abidjan" + }, + { + "GMT": "-8", + "cityId": 9315, + "codeIataCity": "ZST", + "codeIso2Country": "CA", + "geonameId": 6072596, + "latitudeCity": 55.933334, + "longitudeCity": -129.98334, + "nameCity": "Stewart", + "timezone": "America/Vancouver" + }, + { + "GMT": "1", + "cityId": 9316, + "codeIataCity": "ZSU", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 51.8333, + "longitudeCity": 12.25, + "nameCity": "Dessau", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-7", + "cityId": 9317, + "codeIataCity": "ZSY", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Scottsdale", + "timezone": "America/Phoenix" + }, + { + "GMT": "-10", + "cityId": 9318, + "codeIataCity": "ZTA", + "codeIso2Country": "PF", + "geonameId": 0, + "latitudeCity": -20.816668, + "longitudeCity": -138.5, + "nameCity": "Tureira", + "timezone": "Pacific/Tahiti" + }, + { + "GMT": "-4", + "cityId": 9319, + "codeIataCity": "ZTB", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 50.716667, + "longitudeCity": -59.333332, + "nameCity": "Tete-a-La Baleine", + "timezone": "America/Blanc-Sablon" + }, + { + "GMT": "-5", + "cityId": 9320, + "codeIataCity": "ZTF", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 41.05, + "longitudeCity": -73.54, + "nameCity": "Stamford", + "timezone": "America/New_York" + }, + { + "GMT": "2", + "cityId": 9321, + "codeIataCity": "ZTH", + "codeIso2Country": "GR", + "geonameId": 251280, + "latitudeCity": 37.755833, + "longitudeCity": 20.888332, + "nameCity": "Zakinthos", + "timezone": "Europe/Athens" + }, + { + "GMT": "8", + "cityId": 9322, + "codeIataCity": "ZTI", + "codeIso2Country": "CN", + "geonameId": 6973333, + "latitudeCity": 22.83, + "longitudeCity": 113.67, + "nameCity": "Humen", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "1", + "cityId": 9323, + "codeIataCity": "ZTK", + "codeIso2Country": "CH", + "geonameId": 2658377, + "latitudeCity": 46.75118, + "longitudeCity": 7.62166, + "nameCity": "Thun", + "timezone": "Europe/Zurich" + }, + { + "GMT": "-6", + "cityId": 9324, + "codeIataCity": "ZTM", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 55.858665, + "longitudeCity": -92.0864, + "nameCity": "Shamattawa", + "timezone": "America/Winnipeg" + }, + { + "GMT": "2", + "cityId": 9325, + "codeIataCity": "ZTR", + "codeIso2Country": "UA", + "geonameId": 690125, + "latitudeCity": 50.25, + "longitudeCity": 28.65, + "nameCity": "Zhitomir", + "timezone": "Europe/Kiev" + }, + { + "GMT": "-8", + "cityId": 9326, + "codeIataCity": "ZTS", + "codeIso2Country": "CA", + "geonameId": 6161139, + "latitudeCity": 49.933334, + "longitudeCity": -126.666664, + "nameCity": "Tahsis", + "timezone": "America/Vancouver" + }, + { + "GMT": "4", + "cityId": 9327, + "codeIataCity": "ZTU", + "codeIso2Country": "AZ", + "geonameId": 585170, + "latitudeCity": 41.56166, + "longitudeCity": 46.664787, + "nameCity": "Zaqatala", + "timezone": "Asia/Baku" + }, + { + "GMT": "-6", + "cityId": 9328, + "codeIataCity": "ZTV", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Sturtevant", + "timezone": "America/Chicago" + }, + { + "GMT": "8", + "cityId": 9329, + "codeIataCity": "ZTW", + "codeIso2Country": "HK", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Tsuen Wan", + "timezone": "Asia/Hong_Kong" + }, + { + "GMT": "1", + "cityId": 9330, + "codeIataCity": "ZTZ", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 50.8333, + "longitudeCity": 12.9167, + "nameCity": "Chemnitz", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "cityId": 9331, + "codeIataCity": "ZUC", + "codeIso2Country": "CA", + "geonameId": 5942913, + "latitudeCity": 49.5, + "longitudeCity": -91.833336, + "nameCity": "Ignace", + "timezone": "America/Winnipeg" + }, + { + "GMT": "-4", + "cityId": 9332, + "codeIataCity": "ZUD", + "codeIso2Country": "CL", + "geonameId": 3874930, + "latitudeCity": -42.0, + "longitudeCity": -73.833336, + "nameCity": "Ancud", + "timezone": "America/Santiago" + }, + { + "GMT": "8", + "cityId": 9333, + "codeIataCity": "ZUH", + "codeIso2Country": "CN", + "geonameId": 1795565, + "latitudeCity": 22.270715, + "longitudeCity": 113.576726, + "nameCity": "Zhuhai", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "-6", + "cityId": 9334, + "codeIataCity": "ZUK", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 30.1575, + "longitudeCity": 101.73472, + "nameCity": "Lake Cook Road", + "timezone": "America/Chicago" + }, + { + "GMT": "3", + "cityId": 9335, + "codeIataCity": "ZUL", + "codeIso2Country": "SA", + "geonameId": 107304, + "latitudeCity": 26.25, + "longitudeCity": 44.833332, + "nameCity": "Zilfi", + "timezone": "Asia/Riyadh" + }, + { + "GMT": "-4", + "cityId": 9336, + "codeIataCity": "ZUM", + "codeIso2Country": "CA", + "geonameId": 6957320, + "latitudeCity": 53.56278, + "longitudeCity": -64.10917, + "nameCity": "Churchill Falls", + "timezone": "America/Goose_Bay" + }, + { + "GMT": "3", + "cityId": 9337, + "codeIataCity": "ZVA", + "codeIso2Country": "MG", + "geonameId": 1059051, + "latitudeCity": -19.5, + "longitudeCity": 45.466667, + "nameCity": "Miandrivazo", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "1", + "cityId": 9338, + "codeIataCity": "ZVB", + "codeIso2Country": "NO", + "geonameId": 3159894, + "latitudeCity": 60.88095, + "longitudeCity": 10.93948, + "nameCity": "Brumunddal", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-4", + "cityId": 9339, + "codeIataCity": "ZVC", + "codeIso2Country": "CL", + "geonameId": 3868158, + "latitudeCity": -39.28569, + "longitudeCity": -72.2279, + "nameCity": "Villarrica", + "timezone": "America/Santiago" + }, + { + "GMT": "1", + "cityId": 9340, + "codeIataCity": "ZVD", + "codeIso2Country": "NO", + "geonameId": 3159007, + "latitudeCity": 59.1, + "longitudeCity": 9.06667, + "nameCity": "Drangedal", + "timezone": "Europe/Oslo" + }, + { + "GMT": "8", + "cityId": 9341, + "codeIataCity": "ZVG", + "codeIso2Country": "AU", + "geonameId": 2070176, + "latitudeCity": -17.866667, + "longitudeCity": 127.583336, + "nameCity": "Springvale", + "timezone": "Australia/Perth" + }, + { + "GMT": "7", + "cityId": 9342, + "codeIataCity": "ZVK", + "codeIso2Country": "LA", + "geonameId": 1653316, + "latitudeCity": 16.553612, + "longitudeCity": 104.7625, + "nameCity": "Savannakhet", + "timezone": "Asia/Vientiane" + }, + { + "GMT": "3", + "cityId": 9343, + "codeIataCity": "ZWA", + "codeIso2Country": "MG", + "geonameId": 0, + "latitudeCity": -14.65, + "longitudeCity": 49.61667, + "nameCity": "Andapa", + "timezone": "Indian/Antananarivo" + }, + { + "GMT": "1", + "cityId": 9344, + "codeIataCity": "ZWD", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Warnemuende", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 9345, + "codeIataCity": "ZWJ", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Haugastol", + "timezone": "Europe/Oslo" + }, + { + "GMT": "-6", + "cityId": 9346, + "codeIataCity": "ZWL", + "codeIso2Country": "CA", + "geonameId": 0, + "latitudeCity": 58.1, + "longitudeCity": -103.183334, + "nameCity": "Wollaston Lake", + "timezone": "America/Regina" + }, + { + "GMT": "1", + "cityId": 9347, + "codeIataCity": "ZWM", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 53.9, + "longitudeCity": 11.4667, + "nameCity": "Wismar", + "timezone": "Europe/Berlin" + }, + { + "GMT": "1", + "cityId": 9348, + "codeIataCity": "ZWN", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 53.0, + "longitudeCity": 11.75, + "nameCity": "Wittenberge", + "timezone": "Europe/Berlin" + }, + { + "GMT": "8", + "cityId": 9349, + "codeIataCity": "ZWR", + "codeIso2Country": "MY", + "geonameId": 0, + "latitudeCity": 5.976474, + "longitudeCity": 116.115777, + "nameCity": "Kota Kinabalu", + "timezone": "Asia/Kuching" + }, + { + "GMT": "1", + "cityId": 9350, + "codeIataCity": "ZWT", + "codeIso2Country": "DE", + "geonameId": 0, + "latitudeCity": 51.2667, + "longitudeCity": 5.46667, + "nameCity": "Lutherstadt Wittenberg", + "timezone": "Europe/Berlin" + }, + { + "GMT": "-6", + "cityId": 9351, + "codeIataCity": "ZWV", + "codeIso2Country": "US", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Glenview", + "timezone": "America/Chicago" + }, + { + "GMT": "1", + "cityId": 9352, + "codeIataCity": "ZXM", + "codeIso2Country": "NO", + "geonameId": 3141548, + "latitudeCity": 67.09528, + "longitudeCity": 15.38778, + "nameCity": "Rognan", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 9353, + "codeIataCity": "ZXO", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 67.2599, + "longitudeCity": 15.3843, + "nameCity": "Fauske", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 9354, + "codeIataCity": "ZXU", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 59.3833, + "longitudeCity": 10.7167, + "nameCity": "Rygge", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 9355, + "codeIataCity": "ZXX", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 41.8153, + "longitudeCity": 20.4833, + "nameCity": "Rade", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 9356, + "codeIataCity": "ZYG", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 0.0, + "longitudeCity": 0.0, + "nameCity": "Gjovik", + "timezone": "Europe/Oslo" + }, + { + "GMT": "8", + "cityId": 9357, + "codeIataCity": "ZYI", + "codeIso2Country": "CN", + "geonameId": 1783621, + "latitudeCity": 27.666668, + "longitudeCity": 106.833336, + "nameCity": "Zunyi", + "timezone": "Asia/Chongqing" + }, + { + "GMT": "8", + "cityId": 9358, + "codeIataCity": "ZYK", + "codeIso2Country": "CN", + "geonameId": 0, + "latitudeCity": 30.7, + "longitudeCity": 114.35, + "nameCity": "Shekou", + "timezone": "Asia/Shanghai" + }, + { + "GMT": "6", + "cityId": 9359, + "codeIataCity": "ZYL", + "codeIso2Country": "BD", + "geonameId": 1185099, + "latitudeCity": 24.957598, + "longitudeCity": 91.870476, + "nameCity": "Sylhet", + "timezone": "Asia/Dhaka" + }, + { + "GMT": "1", + "cityId": 9360, + "codeIataCity": "ZYM", + "codeIso2Country": "NL", + "geonameId": 2759661, + "latitudeCity": 51.98, + "longitudeCity": 5.91111, + "nameCity": "Arnhem", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "cityId": 9361, + "codeIataCity": "ZYO", + "codeIso2Country": "NL", + "geonameId": 2747930, + "latitudeCity": 51.5308, + "longitudeCity": 4.46528, + "nameCity": "Roosendaal", + "timezone": "Europe/Amsterdam" + }, + { + "GMT": "1", + "cityId": 9362, + "codeIataCity": "ZYS", + "codeIso2Country": "NO", + "geonameId": 3140390, + "latitudeCity": 59.1333, + "longitudeCity": 10.2333, + "nameCity": "Sandefjord", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 9363, + "codeIataCity": "ZYV", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 58.7667, + "longitudeCity": 8.8, + "nameCity": "Vegarshei", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 9364, + "codeIataCity": "ZYW", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 59.0, + "longitudeCity": 9.73333, + "nameCity": "Sandvika", + "timezone": "Europe/Oslo" + }, + { + "GMT": "1", + "cityId": 9365, + "codeIataCity": "ZYY", + "codeIso2Country": "NO", + "geonameId": 0, + "latitudeCity": 42.885662, + "longitudeCity": 129.43936, + "nameCity": "Marnardal", + "timezone": "Europe/Oslo" + }, + { + "GMT": "11", + "cityId": 9366, + "codeIataCity": "ZZO", + "codeIso2Country": "RU", + "geonameId": 0, + "latitudeCity": 50.666668, + "longitudeCity": 142.75, + "nameCity": "Zonalnoye", + "timezone": "Asia/Sakhalin" + }, + { + "GMT": "2", + "cityId": 9367, + "codeIataCity": "ZZU", + "codeIso2Country": "MW", + "geonameId": 925475, + "latitudeCity": -11.442778, + "longitudeCity": 34.01278, + "nameCity": "Mzuzu", + "timezone": "Africa/Blantyre" + }, + { + "GMT": "-5", + "cityId": 9368, + "codeIataCity": "ZZV", + "codeIso2Country": "US", + "geonameId": 4509177, + "latitudeCity": 39.933334, + "longitudeCity": -82.01667, + "nameCity": "Zanesville", + "timezone": "America/New_York" + }, + { + "GMT": "3", + "cityId": 9369, + "codeIataCity": null, + "codeIso2Country": "SA", + "geonameId": 0, + "latitudeCity": 21.42251, + "longitudeCity": 39.826168, + "nameCity": "Mecca", + "timezone": "Asia/Mecca" + }, + { + "GMT": "-3", + "cityId": 9370, + "codeIataCity": "JJD", + "codeIso2Country": "BR", + "geonameId": 0, + "latitudeCity": -2.87137, + "longitudeCity": -40.49161, + "nameCity": "Jijoca de Jericoacoara", + "timezone": "America/Fortaleza" + } +] \ No newline at end of file diff --git a/apps/api/data/countries.json b/apps/api/data/countries.json new file mode 100644 index 0000000..923e625 --- /dev/null +++ b/apps/api/data/countries.json @@ -0,0 +1,3530 @@ +[ + { + "capital": "Andorra la Vella", + "codeCurrency": "EUR", + "codeFips": "AN", + "codeIso2Country": "AD", + "codeIso3Country": "AND", + "continent": "EU", + "countryId": 1, + "nameCountry": "Andorra", + "nameCurrency": "Euro", + "numericIso": "20", + "phonePrefix": "376", + "population": "84000" + }, + { + "capital": "Abu Dhabi", + "codeCurrency": "AED", + "codeFips": "AE", + "codeIso2Country": "AE", + "codeIso3Country": "ARE", + "continent": "AS", + "countryId": 2, + "nameCountry": "United Arab Emirates", + "nameCurrency": "Dirham", + "numericIso": "784", + "phonePrefix": "971", + "population": "4975593" + }, + { + "capital": "Kabul", + "codeCurrency": "AFN", + "codeFips": "AF", + "codeIso2Country": "AF", + "codeIso3Country": "AFG", + "continent": "AS", + "countryId": 3, + "nameCountry": "Afghanistan", + "nameCurrency": "Afghani", + "numericIso": "4", + "phonePrefix": "93", + "population": "29121286" + }, + { + "capital": "St. John's", + "codeCurrency": "XCD", + "codeFips": "AC", + "codeIso2Country": "AG", + "codeIso3Country": "ATG", + "continent": "NA", + "countryId": 4, + "nameCountry": "Antigua and Barbuda", + "nameCurrency": "Dollar", + "numericIso": "28", + "phonePrefix": "+1-268", + "population": "86754" + }, + { + "capital": "The Valley", + "codeCurrency": "XCD", + "codeFips": "AV", + "codeIso2Country": "AI", + "codeIso3Country": "AIA", + "continent": "NA", + "countryId": 5, + "nameCountry": "Anguilla", + "nameCurrency": "Dollar", + "numericIso": "660", + "phonePrefix": "+1-264", + "population": "13254" + }, + { + "capital": "Tirana", + "codeCurrency": "ALL", + "codeFips": "AL", + "codeIso2Country": "AL", + "codeIso3Country": "ALB", + "continent": "EU", + "countryId": 6, + "nameCountry": "Albania", + "nameCurrency": "Lek", + "numericIso": "8", + "phonePrefix": "355", + "population": "2986952" + }, + { + "capital": "Yerevan", + "codeCurrency": "AMD", + "codeFips": "AM", + "codeIso2Country": "AM", + "codeIso3Country": "ARM", + "continent": "AS", + "countryId": 7, + "nameCountry": "Armenia", + "nameCurrency": "Dram", + "numericIso": "51", + "phonePrefix": "374", + "population": "2968000" + }, + { + "capital": "Willemstad", + "codeCurrency": "ANG", + "codeFips": "NT", + "codeIso2Country": "AN", + "codeIso3Country": "ANT", + "continent": "NA", + "countryId": 8, + "nameCountry": "Netherlands Antilles", + "nameCurrency": "Guilder", + "numericIso": "530", + "phonePrefix": "599", + "population": "136197" + }, + { + "capital": "Luanda", + "codeCurrency": "AOA", + "codeFips": "AO", + "codeIso2Country": "AO", + "codeIso3Country": "AGO", + "continent": "AF", + "countryId": 9, + "nameCountry": "Angola", + "nameCurrency": "Kwanza", + "numericIso": "24", + "phonePrefix": "244", + "population": "13068161" + }, + { + "capital": "", + "codeCurrency": "", + "codeFips": "AY", + "codeIso2Country": "AQ", + "codeIso3Country": "ATA", + "continent": "AN", + "countryId": 10, + "nameCountry": "Antarctica", + "nameCurrency": "", + "numericIso": "10", + "phonePrefix": "", + "population": "0" + }, + { + "capital": "Buenos Aires", + "codeCurrency": "ARS", + "codeFips": "AR", + "codeIso2Country": "AR", + "codeIso3Country": "ARG", + "continent": "SA", + "countryId": 11, + "nameCountry": "Argentina", + "nameCurrency": "Peso", + "numericIso": "32", + "phonePrefix": "54", + "population": "41343201" + }, + { + "capital": "Pago Pago", + "codeCurrency": "USD", + "codeFips": "AQ", + "codeIso2Country": "AS", + "codeIso3Country": "ASM", + "continent": "OC", + "countryId": 12, + "nameCountry": "American Samoa", + "nameCurrency": "Dollar", + "numericIso": "16", + "phonePrefix": "+1-684", + "population": "57881" + }, + { + "capital": "Vienna", + "codeCurrency": "EUR", + "codeFips": "AU", + "codeIso2Country": "AT", + "codeIso3Country": "AUT", + "continent": "EU", + "countryId": 13, + "nameCountry": "Austria", + "nameCurrency": "Euro", + "numericIso": "40", + "phonePrefix": "43", + "population": "8205000" + }, + { + "capital": "Canberra", + "codeCurrency": "AUD", + "codeFips": "AS", + "codeIso2Country": "AU", + "codeIso3Country": "AUS", + "continent": "OC", + "countryId": 14, + "nameCountry": "Australia", + "nameCurrency": "Dollar", + "numericIso": "36", + "phonePrefix": "61", + "population": "21515754" + }, + { + "capital": "Oranjestad", + "codeCurrency": "AWG", + "codeFips": "AA", + "codeIso2Country": "AW", + "codeIso3Country": "ABW", + "continent": "NA", + "countryId": 15, + "nameCountry": "Aruba", + "nameCurrency": "Guilder", + "numericIso": "533", + "phonePrefix": "297", + "population": "71566" + }, + { + "capital": "Mariehamn", + "codeCurrency": "EUR", + "codeFips": "", + "codeIso2Country": "AX", + "codeIso3Country": "ALA", + "continent": "EU", + "countryId": 16, + "nameCountry": "Aland Islands", + "nameCurrency": "Euro", + "numericIso": "248", + "phonePrefix": "+358-18", + "population": "26711" + }, + { + "capital": "Baku", + "codeCurrency": "AZN", + "codeFips": "AJ", + "codeIso2Country": "AZ", + "codeIso3Country": "AZE", + "continent": "AS", + "countryId": 17, + "nameCountry": "Azerbaijan", + "nameCurrency": "Manat", + "numericIso": "31", + "phonePrefix": "994", + "population": "8303512" + }, + { + "capital": "Sarajevo", + "codeCurrency": "BAM", + "codeFips": "BK", + "codeIso2Country": "BA", + "codeIso3Country": "BIH", + "continent": "EU", + "countryId": 18, + "nameCountry": "Bosnia and Herzegovina", + "nameCurrency": "Marka", + "numericIso": "70", + "phonePrefix": "387", + "population": "4590000" + }, + { + "capital": "Bridgetown", + "codeCurrency": "BBD", + "codeFips": "BB", + "codeIso2Country": "BB", + "codeIso3Country": "BRB", + "continent": "NA", + "countryId": 19, + "nameCountry": "Barbados", + "nameCurrency": "Dollar", + "numericIso": "52", + "phonePrefix": "+1-246", + "population": "285653" + }, + { + "capital": "Dhaka", + "codeCurrency": "BDT", + "codeFips": "BG", + "codeIso2Country": "BD", + "codeIso3Country": "BGD", + "continent": "AS", + "countryId": 20, + "nameCountry": "Bangladesh", + "nameCurrency": "Taka", + "numericIso": "50", + "phonePrefix": "880", + "population": "156118464" + }, + { + "capital": "Brussels", + "codeCurrency": "EUR", + "codeFips": "BE", + "codeIso2Country": "BE", + "codeIso3Country": "BEL", + "continent": "EU", + "countryId": 21, + "nameCountry": "Belgium", + "nameCurrency": "Euro", + "numericIso": "56", + "phonePrefix": "32", + "population": "10403000" + }, + { + "capital": "Ouagadougou", + "codeCurrency": "XOF", + "codeFips": "UV", + "codeIso2Country": "BF", + "codeIso3Country": "BFA", + "continent": "AF", + "countryId": 22, + "nameCountry": "Burkina Faso", + "nameCurrency": "Franc", + "numericIso": "854", + "phonePrefix": "226", + "population": "16241811" + }, + { + "capital": "Sofia", + "codeCurrency": "BGN", + "codeFips": "BU", + "codeIso2Country": "BG", + "codeIso3Country": "BGR", + "continent": "EU", + "countryId": 23, + "nameCountry": "Bulgaria", + "nameCurrency": "Lev", + "numericIso": "100", + "phonePrefix": "359", + "population": "7148785" + }, + { + "capital": "Manama", + "codeCurrency": "BHD", + "codeFips": "BA", + "codeIso2Country": "BH", + "codeIso3Country": "BHR", + "continent": "AS", + "countryId": 24, + "nameCountry": "Bahrain", + "nameCurrency": "Dinar", + "numericIso": "48", + "phonePrefix": "973", + "population": "738004" + }, + { + "capital": "Bujumbura", + "codeCurrency": "BIF", + "codeFips": "BY", + "codeIso2Country": "BI", + "codeIso3Country": "BDI", + "continent": "AF", + "countryId": 25, + "nameCountry": "Burundi", + "nameCurrency": "Franc", + "numericIso": "108", + "phonePrefix": "257", + "population": "9863117" + }, + { + "capital": "Porto-Novo", + "codeCurrency": "XOF", + "codeFips": "BN", + "codeIso2Country": "BJ", + "codeIso3Country": "BEN", + "continent": "AF", + "countryId": 26, + "nameCountry": "Benin", + "nameCurrency": "Franc", + "numericIso": "204", + "phonePrefix": "229", + "population": "9056010" + }, + { + "capital": "Gustavia", + "codeCurrency": "EUR", + "codeFips": "TB", + "codeIso2Country": "BL", + "codeIso3Country": "BLM", + "continent": "NA", + "countryId": 27, + "nameCountry": "Saint Barthélemy", + "nameCurrency": "Euro", + "numericIso": "652", + "phonePrefix": "590", + "population": "8450" + }, + { + "capital": "Hamilton", + "codeCurrency": "BMD", + "codeFips": "BD", + "codeIso2Country": "BM", + "codeIso3Country": "BMU", + "continent": "NA", + "countryId": 28, + "nameCountry": "Bermuda", + "nameCurrency": "Dollar", + "numericIso": "60", + "phonePrefix": "+1-441", + "population": "65365" + }, + { + "capital": "Bandar Seri Begawan", + "codeCurrency": "BND", + "codeFips": "BX", + "codeIso2Country": "BN", + "codeIso3Country": "BRN", + "continent": "AS", + "countryId": 29, + "nameCountry": "Brunei", + "nameCurrency": "Dollar", + "numericIso": "96", + "phonePrefix": "673", + "population": "395027" + }, + { + "capital": "Sucre", + "codeCurrency": "BOB", + "codeFips": "BL", + "codeIso2Country": "BO", + "codeIso3Country": "BOL", + "continent": "SA", + "countryId": 30, + "nameCountry": "Bolivia", + "nameCurrency": "Boliviano", + "numericIso": "68", + "phonePrefix": "591", + "population": "9947418" + }, + { + "capital": "", + "codeCurrency": "USD", + "codeFips": "", + "codeIso2Country": "BQ", + "codeIso3Country": "BES", + "continent": "NA", + "countryId": 31, + "nameCountry": "Bonaire, Saint Eustatius and Saba ", + "nameCurrency": "Dollar", + "numericIso": "535", + "phonePrefix": "599", + "population": "18012" + }, + { + "capital": "Brasilia", + "codeCurrency": "BRL", + "codeFips": "BR", + "codeIso2Country": "BR", + "codeIso3Country": "BRA", + "continent": "SA", + "countryId": 32, + "nameCountry": "Brazil", + "nameCurrency": "Real", + "numericIso": "76", + "phonePrefix": "55", + "population": "201103330" + }, + { + "capital": "Nassau", + "codeCurrency": "BSD", + "codeFips": "BF", + "codeIso2Country": "BS", + "codeIso3Country": "BHS", + "continent": "NA", + "countryId": 33, + "nameCountry": "Bahamas", + "nameCurrency": "Dollar", + "numericIso": "44", + "phonePrefix": "+1-242", + "population": "301790" + }, + { + "capital": "Thimphu", + "codeCurrency": "BTN", + "codeFips": "BT", + "codeIso2Country": "BT", + "codeIso3Country": "BTN", + "continent": "AS", + "countryId": 34, + "nameCountry": "Bhutan", + "nameCurrency": "Ngultrum", + "numericIso": "64", + "phonePrefix": "975", + "population": "699847" + }, + { + "capital": "", + "codeCurrency": "NOK", + "codeFips": "BV", + "codeIso2Country": "BV", + "codeIso3Country": "BVT", + "continent": "AN", + "countryId": 35, + "nameCountry": "Bouvet Island", + "nameCurrency": "Krone", + "numericIso": "74", + "phonePrefix": "", + "population": "0" + }, + { + "capital": "Gaborone", + "codeCurrency": "BWP", + "codeFips": "BC", + "codeIso2Country": "BW", + "codeIso3Country": "BWA", + "continent": "AF", + "countryId": 36, + "nameCountry": "Botswana", + "nameCurrency": "Pula", + "numericIso": "72", + "phonePrefix": "267", + "population": "2029307" + }, + { + "capital": "Minsk", + "codeCurrency": "BYR", + "codeFips": "BO", + "codeIso2Country": "BY", + "codeIso3Country": "BLR", + "continent": "EU", + "countryId": 37, + "nameCountry": "Belarus", + "nameCurrency": "Ruble", + "numericIso": "112", + "phonePrefix": "375", + "population": "9685000" + }, + { + "capital": "Belmopan", + "codeCurrency": "BZD", + "codeFips": "BH", + "codeIso2Country": "BZ", + "codeIso3Country": "BLZ", + "continent": "NA", + "countryId": 38, + "nameCountry": "Belize", + "nameCurrency": "Dollar", + "numericIso": "84", + "phonePrefix": "501", + "population": "314522" + }, + { + "capital": "Ottawa", + "codeCurrency": "CAD", + "codeFips": "CA", + "codeIso2Country": "CA", + "codeIso3Country": "CAN", + "continent": "NA", + "countryId": 39, + "nameCountry": "Canada", + "nameCurrency": "Dollar", + "numericIso": "124", + "phonePrefix": "1", + "population": "33679000" + }, + { + "capital": "West Island", + "codeCurrency": "AUD", + "codeFips": "CK", + "codeIso2Country": "CC", + "codeIso3Country": "CCK", + "continent": "AS", + "countryId": 40, + "nameCountry": "Cocos Islands", + "nameCurrency": "Dollar", + "numericIso": "166", + "phonePrefix": "61", + "population": "628" + }, + { + "capital": "Kinshasa", + "codeCurrency": "CDF", + "codeFips": "CG", + "codeIso2Country": "CD", + "codeIso3Country": "COD", + "continent": "AF", + "countryId": 41, + "nameCountry": "Democratic Republic of the Congo", + "nameCurrency": "Franc", + "numericIso": "180", + "phonePrefix": "243", + "population": "70916439" + }, + { + "capital": "Bangui", + "codeCurrency": "XAF", + "codeFips": "CT", + "codeIso2Country": "CF", + "codeIso3Country": "CAF", + "continent": "AF", + "countryId": 42, + "nameCountry": "Central African Republic", + "nameCurrency": "Franc", + "numericIso": "140", + "phonePrefix": "236", + "population": "4844927" + }, + { + "capital": "Brazzaville", + "codeCurrency": "XAF", + "codeFips": "CF", + "codeIso2Country": "CG", + "codeIso3Country": "COG", + "continent": "AF", + "countryId": 43, + "nameCountry": "Republic of the Congo", + "nameCurrency": "Franc", + "numericIso": "178", + "phonePrefix": "242", + "population": "3039126" + }, + { + "capital": "Berne", + "codeCurrency": "CHF", + "codeFips": "SZ", + "codeIso2Country": "CH", + "codeIso3Country": "CHE", + "continent": "EU", + "countryId": 44, + "nameCountry": "Switzerland", + "nameCurrency": "Franc", + "numericIso": "756", + "phonePrefix": "41", + "population": "7581000" + }, + { + "capital": "Yamoussoukro", + "codeCurrency": "XOF", + "codeFips": "IV", + "codeIso2Country": "CI", + "codeIso3Country": "CIV", + "continent": "AF", + "countryId": 45, + "nameCountry": "Ivory Coast", + "nameCurrency": "Franc", + "numericIso": "384", + "phonePrefix": "225", + "population": "21058798" + }, + { + "capital": "Avarua", + "codeCurrency": "NZD", + "codeFips": "CW", + "codeIso2Country": "CK", + "codeIso3Country": "COK", + "continent": "OC", + "countryId": 46, + "nameCountry": "Cook Islands", + "nameCurrency": "Dollar", + "numericIso": "184", + "phonePrefix": "682", + "population": "21388" + }, + { + "capital": "Santiago", + "codeCurrency": "CLP", + "codeFips": "CI", + "codeIso2Country": "CL", + "codeIso3Country": "CHL", + "continent": "SA", + "countryId": 47, + "nameCountry": "Chile", + "nameCurrency": "Peso", + "numericIso": "152", + "phonePrefix": "56", + "population": "16746491" + }, + { + "capital": "Yaounde", + "codeCurrency": "XAF", + "codeFips": "CM", + "codeIso2Country": "CM", + "codeIso3Country": "CMR", + "continent": "AF", + "countryId": 48, + "nameCountry": "Cameroon", + "nameCurrency": "Franc", + "numericIso": "120", + "phonePrefix": "237", + "population": "19294149" + }, + { + "capital": "Beijing", + "codeCurrency": "CNY", + "codeFips": "CH", + "codeIso2Country": "CN", + "codeIso3Country": "CHN", + "continent": "AS", + "countryId": 49, + "nameCountry": "China", + "nameCurrency": "Yuan Renminbi", + "numericIso": "156", + "phonePrefix": "86", + "population": "1330044000" + }, + { + "capital": "Bogota", + "codeCurrency": "COP", + "codeFips": "CO", + "codeIso2Country": "CO", + "codeIso3Country": "COL", + "continent": "SA", + "countryId": 50, + "nameCountry": "Colombia", + "nameCurrency": "Peso", + "numericIso": "170", + "phonePrefix": "57", + "population": "44205293" + }, + { + "capital": "San Jose", + "codeCurrency": "CRC", + "codeFips": "CS", + "codeIso2Country": "CR", + "codeIso3Country": "CRI", + "continent": "NA", + "countryId": 51, + "nameCountry": "Costa Rica", + "nameCurrency": "Colon", + "numericIso": "188", + "phonePrefix": "506", + "population": "4516220" + }, + { + "capital": "Belgrade", + "codeCurrency": "RSD", + "codeFips": "YI", + "codeIso2Country": "CS", + "codeIso3Country": "SCG", + "continent": "EU", + "countryId": 52, + "nameCountry": "Serbia and Montenegro", + "nameCurrency": "Dinar", + "numericIso": "891", + "phonePrefix": "381", + "population": "10829175" + }, + { + "capital": "Havana", + "codeCurrency": "CUP", + "codeFips": "CU", + "codeIso2Country": "CU", + "codeIso3Country": "CUB", + "continent": "NA", + "countryId": 53, + "nameCountry": "Cuba", + "nameCurrency": "Peso", + "numericIso": "192", + "phonePrefix": "53", + "population": "11423000" + }, + { + "capital": "Praia", + "codeCurrency": "CVE", + "codeFips": "CV", + "codeIso2Country": "CV", + "codeIso3Country": "CPV", + "continent": "AF", + "countryId": 54, + "nameCountry": "Cape Verde", + "nameCurrency": "Escudo", + "numericIso": "132", + "phonePrefix": "238", + "population": "508659" + }, + { + "capital": " Willemstad", + "codeCurrency": "ANG", + "codeFips": "UC", + "codeIso2Country": "CW", + "codeIso3Country": "CUW", + "continent": "NA", + "countryId": 55, + "nameCountry": "Curaçao", + "nameCurrency": "Guilder", + "numericIso": "531", + "phonePrefix": "599", + "population": "141766" + }, + { + "capital": "Flying Fish Cove", + "codeCurrency": "AUD", + "codeFips": "KT", + "codeIso2Country": "CX", + "codeIso3Country": "CXR", + "continent": "AS", + "countryId": 56, + "nameCountry": "Christmas Island", + "nameCurrency": "Dollar", + "numericIso": "162", + "phonePrefix": "61", + "population": "1500" + }, + { + "capital": "Nicosia", + "codeCurrency": "EUR", + "codeFips": "CY", + "codeIso2Country": "CY", + "codeIso3Country": "CYP", + "continent": "EU", + "countryId": 57, + "nameCountry": "Cyprus", + "nameCurrency": "Euro", + "numericIso": "196", + "phonePrefix": "357", + "population": "1102677" + }, + { + "capital": "Prague", + "codeCurrency": "CZK", + "codeFips": "EZ", + "codeIso2Country": "CZ", + "codeIso3Country": "CZE", + "continent": "EU", + "countryId": 58, + "nameCountry": "Czech Republic", + "nameCurrency": "Koruna", + "numericIso": "203", + "phonePrefix": "420", + "population": "10476000" + }, + { + "capital": "Berlin", + "codeCurrency": "EUR", + "codeFips": "GM", + "codeIso2Country": "DE", + "codeIso3Country": "DEU", + "continent": "EU", + "countryId": 59, + "nameCountry": "Germany", + "nameCurrency": "Euro", + "numericIso": "276", + "phonePrefix": "49", + "population": "81802257" + }, + { + "capital": "Djibouti", + "codeCurrency": "DJF", + "codeFips": "DJ", + "codeIso2Country": "DJ", + "codeIso3Country": "DJI", + "continent": "AF", + "countryId": 60, + "nameCountry": "Djibouti", + "nameCurrency": "Franc", + "numericIso": "262", + "phonePrefix": "253", + "population": "740528" + }, + { + "capital": "Copenhagen", + "codeCurrency": "DKK", + "codeFips": "DA", + "codeIso2Country": "DK", + "codeIso3Country": "DNK", + "continent": "EU", + "countryId": 61, + "nameCountry": "Denmark", + "nameCurrency": "Krone", + "numericIso": "208", + "phonePrefix": "45", + "population": "5484000" + }, + { + "capital": "Roseau", + "codeCurrency": "XCD", + "codeFips": "DO", + "codeIso2Country": "DM", + "codeIso3Country": "DMA", + "continent": "NA", + "countryId": 62, + "nameCountry": "Dominica", + "nameCurrency": "Dollar", + "numericIso": "212", + "phonePrefix": "+1-767", + "population": "72813" + }, + { + "capital": "Santo Domingo", + "codeCurrency": "DOP", + "codeFips": "DR", + "codeIso2Country": "DO", + "codeIso3Country": "DOM", + "continent": "NA", + "countryId": 63, + "nameCountry": "Dominican Republic", + "nameCurrency": "Peso", + "numericIso": "214", + "phonePrefix": "+1-809 and 1-829", + "population": "9823821" + }, + { + "capital": "Algiers", + "codeCurrency": "DZD", + "codeFips": "AG", + "codeIso2Country": "DZ", + "codeIso3Country": "DZA", + "continent": "AF", + "countryId": 64, + "nameCountry": "Algeria", + "nameCurrency": "Dinar", + "numericIso": "12", + "phonePrefix": "213", + "population": "34586184" + }, + { + "capital": "Quito", + "codeCurrency": "USD", + "codeFips": "EC", + "codeIso2Country": "EC", + "codeIso3Country": "ECU", + "continent": "SA", + "countryId": 65, + "nameCountry": "Ecuador", + "nameCurrency": "Dollar", + "numericIso": "218", + "phonePrefix": "593", + "population": "14790608" + }, + { + "capital": "Tallinn", + "codeCurrency": "EUR", + "codeFips": "EN", + "codeIso2Country": "EE", + "codeIso3Country": "EST", + "continent": "EU", + "countryId": 66, + "nameCountry": "Estonia", + "nameCurrency": "Euro", + "numericIso": "233", + "phonePrefix": "372", + "population": "1291170" + }, + { + "capital": "Cairo", + "codeCurrency": "EGP", + "codeFips": "EG", + "codeIso2Country": "EG", + "codeIso3Country": "EGY", + "continent": "AF", + "countryId": 67, + "nameCountry": "Egypt", + "nameCurrency": "Pound", + "numericIso": "818", + "phonePrefix": "20", + "population": "80471869" + }, + { + "capital": "El-Aaiun", + "codeCurrency": "MAD", + "codeFips": "WI", + "codeIso2Country": "EH", + "codeIso3Country": "ESH", + "continent": "AF", + "countryId": 68, + "nameCountry": "Western Sahara", + "nameCurrency": "Dirham", + "numericIso": "732", + "phonePrefix": "212", + "population": "273008" + }, + { + "capital": "Asmara", + "codeCurrency": "ERN", + "codeFips": "ER", + "codeIso2Country": "ER", + "codeIso3Country": "ERI", + "continent": "AF", + "countryId": 69, + "nameCountry": "Eritrea", + "nameCurrency": "Nakfa", + "numericIso": "232", + "phonePrefix": "291", + "population": "5792984" + }, + { + "capital": "Madrid", + "codeCurrency": "EUR", + "codeFips": "SP", + "codeIso2Country": "ES", + "codeIso3Country": "ESP", + "continent": "EU", + "countryId": 70, + "nameCountry": "Spain", + "nameCurrency": "Euro", + "numericIso": "724", + "phonePrefix": "34", + "population": "46505963" + }, + { + "capital": "Addis Ababa", + "codeCurrency": "ETB", + "codeFips": "ET", + "codeIso2Country": "ET", + "codeIso3Country": "ETH", + "continent": "AF", + "countryId": 71, + "nameCountry": "Ethiopia", + "nameCurrency": "Birr", + "numericIso": "231", + "phonePrefix": "251", + "population": "88013491" + }, + { + "capital": "Helsinki", + "codeCurrency": "EUR", + "codeFips": "FI", + "codeIso2Country": "FI", + "codeIso3Country": "FIN", + "continent": "EU", + "countryId": 72, + "nameCountry": "Finland", + "nameCurrency": "Euro", + "numericIso": "246", + "phonePrefix": "358", + "population": "5244000" + }, + { + "capital": "Suva", + "codeCurrency": "FJD", + "codeFips": "FJ", + "codeIso2Country": "FJ", + "codeIso3Country": "FJI", + "continent": "OC", + "countryId": 73, + "nameCountry": "Fiji", + "nameCurrency": "Dollar", + "numericIso": "242", + "phonePrefix": "679", + "population": "875983" + }, + { + "capital": "Stanley", + "codeCurrency": "FKP", + "codeFips": "FK", + "codeIso2Country": "FK", + "codeIso3Country": "FLK", + "continent": "SA", + "countryId": 74, + "nameCountry": "Falkland Islands", + "nameCurrency": "Pound", + "numericIso": "238", + "phonePrefix": "500", + "population": "2638" + }, + { + "capital": "Palikir", + "codeCurrency": "USD", + "codeFips": "FM", + "codeIso2Country": "FM", + "codeIso3Country": "FSM", + "continent": "OC", + "countryId": 75, + "nameCountry": "Micronesia", + "nameCurrency": "Dollar", + "numericIso": "583", + "phonePrefix": "691", + "population": "107708" + }, + { + "capital": "Torshavn", + "codeCurrency": "DKK", + "codeFips": "FO", + "codeIso2Country": "FO", + "codeIso3Country": "FRO", + "continent": "EU", + "countryId": 76, + "nameCountry": "Faroe Islands", + "nameCurrency": "Krone", + "numericIso": "234", + "phonePrefix": "298", + "population": "48228" + }, + { + "capital": "Paris", + "codeCurrency": "EUR", + "codeFips": "FR", + "codeIso2Country": "FR", + "codeIso3Country": "FRA", + "continent": "EU", + "countryId": 77, + "nameCountry": "France", + "nameCurrency": "Euro", + "numericIso": "250", + "phonePrefix": "33", + "population": "64768389" + }, + { + "capital": "Libreville", + "codeCurrency": "XAF", + "codeFips": "GB", + "codeIso2Country": "GA", + "codeIso3Country": "GAB", + "continent": "AF", + "countryId": 78, + "nameCountry": "Gabon", + "nameCurrency": "Franc", + "numericIso": "266", + "phonePrefix": "241", + "population": "1545255" + }, + { + "capital": "London", + "codeCurrency": "GBP", + "codeFips": "UK", + "codeIso2Country": "GB", + "codeIso3Country": "GBR", + "continent": "EU", + "countryId": 79, + "nameCountry": "United Kingdom", + "nameCurrency": "Pound", + "numericIso": "826", + "phonePrefix": "44", + "population": "62348447" + }, + { + "capital": "St. George's", + "codeCurrency": "XCD", + "codeFips": "GJ", + "codeIso2Country": "GD", + "codeIso3Country": "GRD", + "continent": "NA", + "countryId": 80, + "nameCountry": "Grenada", + "nameCurrency": "Dollar", + "numericIso": "308", + "phonePrefix": "+1-473", + "population": "107818" + }, + { + "capital": "Tbilisi", + "codeCurrency": "GEL", + "codeFips": "GG", + "codeIso2Country": "GE", + "codeIso3Country": "GEO", + "continent": "AS", + "countryId": 81, + "nameCountry": "Georgia", + "nameCurrency": "Lari", + "numericIso": "268", + "phonePrefix": "995", + "population": "4630000" + }, + { + "capital": "Cayenne", + "codeCurrency": "EUR", + "codeFips": "FG", + "codeIso2Country": "GF", + "codeIso3Country": "GUF", + "continent": "SA", + "countryId": 82, + "nameCountry": "French Guiana", + "nameCurrency": "Euro", + "numericIso": "254", + "phonePrefix": "594", + "population": "195506" + }, + { + "capital": "St Peter Port", + "codeCurrency": "GBP", + "codeFips": "GK", + "codeIso2Country": "GG", + "codeIso3Country": "GGY", + "continent": "EU", + "countryId": 83, + "nameCountry": "Guernsey", + "nameCurrency": "Pound", + "numericIso": "831", + "phonePrefix": "+44-1481", + "population": "65228" + }, + { + "capital": "Accra", + "codeCurrency": "GHS", + "codeFips": "GH", + "codeIso2Country": "GH", + "codeIso3Country": "GHA", + "continent": "AF", + "countryId": 84, + "nameCountry": "Ghana", + "nameCurrency": "Cedi", + "numericIso": "288", + "phonePrefix": "233", + "population": "24339838" + }, + { + "capital": "Gibraltar", + "codeCurrency": "GIP", + "codeFips": "GI", + "codeIso2Country": "GI", + "codeIso3Country": "GIB", + "continent": "EU", + "countryId": 85, + "nameCountry": "Gibraltar", + "nameCurrency": "Pound", + "numericIso": "292", + "phonePrefix": "350", + "population": "27884" + }, + { + "capital": "Nuuk", + "codeCurrency": "DKK", + "codeFips": "GL", + "codeIso2Country": "GL", + "codeIso3Country": "GRL", + "continent": "NA", + "countryId": 86, + "nameCountry": "Greenland", + "nameCurrency": "Krone", + "numericIso": "304", + "phonePrefix": "299", + "population": "56375" + }, + { + "capital": "Banjul", + "codeCurrency": "GMD", + "codeFips": "GA", + "codeIso2Country": "GM", + "codeIso3Country": "GMB", + "continent": "AF", + "countryId": 87, + "nameCountry": "Gambia", + "nameCurrency": "Dalasi", + "numericIso": "270", + "phonePrefix": "220", + "population": "1593256" + }, + { + "capital": "Conakry", + "codeCurrency": "GNF", + "codeFips": "GV", + "codeIso2Country": "GN", + "codeIso3Country": "GIN", + "continent": "AF", + "countryId": 88, + "nameCountry": "Guinea", + "nameCurrency": "Franc", + "numericIso": "324", + "phonePrefix": "224", + "population": "10324025" + }, + { + "capital": "Basse-Terre", + "codeCurrency": "EUR", + "codeFips": "GP", + "codeIso2Country": "GP", + "codeIso3Country": "GLP", + "continent": "NA", + "countryId": 89, + "nameCountry": "Guadeloupe", + "nameCurrency": "Euro", + "numericIso": "312", + "phonePrefix": "590", + "population": "443000" + }, + { + "capital": "Malabo", + "codeCurrency": "XAF", + "codeFips": "EK", + "codeIso2Country": "GQ", + "codeIso3Country": "GNQ", + "continent": "AF", + "countryId": 90, + "nameCountry": "Equatorial Guinea", + "nameCurrency": "Franc", + "numericIso": "226", + "phonePrefix": "240", + "population": "1014999" + }, + { + "capital": "Athens", + "codeCurrency": "EUR", + "codeFips": "GR", + "codeIso2Country": "GR", + "codeIso3Country": "GRC", + "continent": "EU", + "countryId": 91, + "nameCountry": "Greece", + "nameCurrency": "Euro", + "numericIso": "300", + "phonePrefix": "30", + "population": "11000000" + }, + { + "capital": "Grytviken", + "codeCurrency": "GBP", + "codeFips": "SX", + "codeIso2Country": "GS", + "codeIso3Country": "SGS", + "continent": "AN", + "countryId": 92, + "nameCountry": "South Georgia and the South Sandwich Islands", + "nameCurrency": "Pound", + "numericIso": "239", + "phonePrefix": "", + "population": "30" + }, + { + "capital": "Guatemala City", + "codeCurrency": "GTQ", + "codeFips": "GT", + "codeIso2Country": "GT", + "codeIso3Country": "GTM", + "continent": "NA", + "countryId": 93, + "nameCountry": "Guatemala", + "nameCurrency": "Quetzal", + "numericIso": "320", + "phonePrefix": "502", + "population": "13550440" + }, + { + "capital": "Hagatna", + "codeCurrency": "USD", + "codeFips": "GQ", + "codeIso2Country": "GU", + "codeIso3Country": "GUM", + "continent": "OC", + "countryId": 94, + "nameCountry": "Guam", + "nameCurrency": "Dollar", + "numericIso": "316", + "phonePrefix": "+1-671", + "population": "159358" + }, + { + "capital": "Bissau", + "codeCurrency": "XOF", + "codeFips": "PU", + "codeIso2Country": "GW", + "codeIso3Country": "GNB", + "continent": "AF", + "countryId": 95, + "nameCountry": "Guinea-Bissau", + "nameCurrency": "Franc", + "numericIso": "624", + "phonePrefix": "245", + "population": "1565126" + }, + { + "capital": "Georgetown", + "codeCurrency": "GYD", + "codeFips": "GY", + "codeIso2Country": "GY", + "codeIso3Country": "GUY", + "continent": "SA", + "countryId": 96, + "nameCountry": "Guyana", + "nameCurrency": "Dollar", + "numericIso": "328", + "phonePrefix": "592", + "population": "748486" + }, + { + "capital": "Hong Kong", + "codeCurrency": "HKD", + "codeFips": "HK", + "codeIso2Country": "HK", + "codeIso3Country": "HKG", + "continent": "AS", + "countryId": 97, + "nameCountry": "Hong Kong", + "nameCurrency": "Dollar", + "numericIso": "344", + "phonePrefix": "852", + "population": "6898686" + }, + { + "capital": "", + "codeCurrency": "AUD", + "codeFips": "HM", + "codeIso2Country": "HM", + "codeIso3Country": "HMD", + "continent": "AN", + "countryId": 98, + "nameCountry": "Heard Island and McDonald Islands", + "nameCurrency": "Dollar", + "numericIso": "334", + "phonePrefix": " ", + "population": "0" + }, + { + "capital": "Tegucigalpa", + "codeCurrency": "HNL", + "codeFips": "HO", + "codeIso2Country": "HN", + "codeIso3Country": "HND", + "continent": "NA", + "countryId": 99, + "nameCountry": "Honduras", + "nameCurrency": "Lempira", + "numericIso": "340", + "phonePrefix": "504", + "population": "7989415" + }, + { + "capital": "Zagreb", + "codeCurrency": "HRK", + "codeFips": "HR", + "codeIso2Country": "HR", + "codeIso3Country": "HRV", + "continent": "EU", + "countryId": 100, + "nameCountry": "Croatia", + "nameCurrency": "Kuna", + "numericIso": "191", + "phonePrefix": "385", + "population": "4491000" + }, + { + "capital": "Port-au-Prince", + "codeCurrency": "HTG", + "codeFips": "HA", + "codeIso2Country": "HT", + "codeIso3Country": "HTI", + "continent": "NA", + "countryId": 101, + "nameCountry": "Haiti", + "nameCurrency": "Gourde", + "numericIso": "332", + "phonePrefix": "509", + "population": "9648924" + }, + { + "capital": "Budapest", + "codeCurrency": "HUF", + "codeFips": "HU", + "codeIso2Country": "HU", + "codeIso3Country": "HUN", + "continent": "EU", + "countryId": 102, + "nameCountry": "Hungary", + "nameCurrency": "Forint", + "numericIso": "348", + "phonePrefix": "36", + "population": "9982000" + }, + { + "capital": "Jakarta", + "codeCurrency": "IDR", + "codeFips": "ID", + "codeIso2Country": "ID", + "codeIso3Country": "IDN", + "continent": "AS", + "countryId": 103, + "nameCountry": "Indonesia", + "nameCurrency": "Rupiah", + "numericIso": "360", + "phonePrefix": "62", + "population": "242968342" + }, + { + "capital": "Dublin", + "codeCurrency": "EUR", + "codeFips": "EI", + "codeIso2Country": "IE", + "codeIso3Country": "IRL", + "continent": "EU", + "countryId": 104, + "nameCountry": "Ireland", + "nameCurrency": "Euro", + "numericIso": "372", + "phonePrefix": "353", + "population": "4622917" + }, + { + "capital": "Jerusalem", + "codeCurrency": "ILS", + "codeFips": "IS", + "codeIso2Country": "IL", + "codeIso3Country": "ISR", + "continent": "AS", + "countryId": 105, + "nameCountry": "Israel", + "nameCurrency": "Shekel", + "numericIso": "376", + "phonePrefix": "972", + "population": "7353985" + }, + { + "capital": "Douglas, Isle of Man", + "codeCurrency": "GBP", + "codeFips": "IM", + "codeIso2Country": "IM", + "codeIso3Country": "IMN", + "continent": "EU", + "countryId": 106, + "nameCountry": "Isle of Man", + "nameCurrency": "Pound", + "numericIso": "833", + "phonePrefix": "+44-1624", + "population": "75049" + }, + { + "capital": "New Delhi", + "codeCurrency": "INR", + "codeFips": "IN", + "codeIso2Country": "IN", + "codeIso3Country": "IND", + "continent": "AS", + "countryId": 107, + "nameCountry": "India", + "nameCurrency": "Rupee", + "numericIso": "356", + "phonePrefix": "91", + "population": "1173108018" + }, + { + "capital": "Diego Garcia", + "codeCurrency": "USD", + "codeFips": "IO", + "codeIso2Country": "IO", + "codeIso3Country": "IOT", + "continent": "AS", + "countryId": 108, + "nameCountry": "British Indian Ocean Territory", + "nameCurrency": "Dollar", + "numericIso": "86", + "phonePrefix": "246", + "population": "4000" + }, + { + "capital": "Baghdad", + "codeCurrency": "IQD", + "codeFips": "IZ", + "codeIso2Country": "IQ", + "codeIso3Country": "IRQ", + "continent": "AS", + "countryId": 109, + "nameCountry": "Iraq", + "nameCurrency": "Dinar", + "numericIso": "368", + "phonePrefix": "964", + "population": "29671605" + }, + { + "capital": "Tehran", + "codeCurrency": "IRR", + "codeFips": "IR", + "codeIso2Country": "IR", + "codeIso3Country": "IRN", + "continent": "AS", + "countryId": 110, + "nameCountry": "Iran", + "nameCurrency": "Rial", + "numericIso": "364", + "phonePrefix": "98", + "population": "76923300" + }, + { + "capital": "Reykjavik", + "codeCurrency": "ISK", + "codeFips": "IC", + "codeIso2Country": "IS", + "codeIso3Country": "ISL", + "continent": "EU", + "countryId": 111, + "nameCountry": "Iceland", + "nameCurrency": "Krona", + "numericIso": "352", + "phonePrefix": "354", + "population": "308910" + }, + { + "capital": "Rome", + "codeCurrency": "EUR", + "codeFips": "IT", + "codeIso2Country": "IT", + "codeIso3Country": "ITA", + "continent": "EU", + "countryId": 112, + "nameCountry": "Italy", + "nameCurrency": "Euro", + "numericIso": "380", + "phonePrefix": "39", + "population": "60340328" + }, + { + "capital": "Saint Helier", + "codeCurrency": "GBP", + "codeFips": "JE", + "codeIso2Country": "JE", + "codeIso3Country": "JEY", + "continent": "EU", + "countryId": 113, + "nameCountry": "Jersey", + "nameCurrency": "Pound", + "numericIso": "832", + "phonePrefix": "+44-1534", + "population": "90812" + }, + { + "capital": "Kingston", + "codeCurrency": "JMD", + "codeFips": "JM", + "codeIso2Country": "JM", + "codeIso3Country": "JAM", + "continent": "NA", + "countryId": 114, + "nameCountry": "Jamaica", + "nameCurrency": "Dollar", + "numericIso": "388", + "phonePrefix": "+1-876", + "population": "2847232" + }, + { + "capital": "Amman", + "codeCurrency": "JOD", + "codeFips": "JO", + "codeIso2Country": "JO", + "codeIso3Country": "JOR", + "continent": "AS", + "countryId": 115, + "nameCountry": "Jordan", + "nameCurrency": "Dinar", + "numericIso": "400", + "phonePrefix": "962", + "population": "6407085" + }, + { + "capital": "Tokyo", + "codeCurrency": "JPY", + "codeFips": "JA", + "codeIso2Country": "JP", + "codeIso3Country": "JPN", + "continent": "AS", + "countryId": 116, + "nameCountry": "Japan", + "nameCurrency": "Yen", + "numericIso": "392", + "phonePrefix": "81", + "population": "127288000" + }, + { + "capital": "Nairobi", + "codeCurrency": "KES", + "codeFips": "KE", + "codeIso2Country": "KE", + "codeIso3Country": "KEN", + "continent": "AF", + "countryId": 117, + "nameCountry": "Kenya", + "nameCurrency": "Shilling", + "numericIso": "404", + "phonePrefix": "254", + "population": "40046566" + }, + { + "capital": "Bishkek", + "codeCurrency": "KGS", + "codeFips": "KG", + "codeIso2Country": "KG", + "codeIso3Country": "KGZ", + "continent": "AS", + "countryId": 118, + "nameCountry": "Kyrgyzstan", + "nameCurrency": "Som", + "numericIso": "417", + "phonePrefix": "996", + "population": "5508626" + }, + { + "capital": "Phnom Penh", + "codeCurrency": "KHR", + "codeFips": "CB", + "codeIso2Country": "KH", + "codeIso3Country": "KHM", + "continent": "AS", + "countryId": 119, + "nameCountry": "Cambodia", + "nameCurrency": "Riels", + "numericIso": "116", + "phonePrefix": "855", + "population": "14453680" + }, + { + "capital": "Tarawa", + "codeCurrency": "AUD", + "codeFips": "KR", + "codeIso2Country": "KI", + "codeIso3Country": "KIR", + "continent": "OC", + "countryId": 120, + "nameCountry": "Kiribati", + "nameCurrency": "Dollar", + "numericIso": "296", + "phonePrefix": "686", + "population": "92533" + }, + { + "capital": "Moroni", + "codeCurrency": "KMF", + "codeFips": "CN", + "codeIso2Country": "KM", + "codeIso3Country": "COM", + "continent": "AF", + "countryId": 121, + "nameCountry": "Comoros", + "nameCurrency": "Franc", + "numericIso": "174", + "phonePrefix": "269", + "population": "773407" + }, + { + "capital": "Basseterre", + "codeCurrency": "XCD", + "codeFips": "SC", + "codeIso2Country": "KN", + "codeIso3Country": "KNA", + "continent": "NA", + "countryId": 122, + "nameCountry": "Saint Kitts and Nevis", + "nameCurrency": "Dollar", + "numericIso": "659", + "phonePrefix": "+1-869", + "population": "49898" + }, + { + "capital": "Pyongyang", + "codeCurrency": "KPW", + "codeFips": "KN", + "codeIso2Country": "KP", + "codeIso3Country": "PRK", + "continent": "AS", + "countryId": 123, + "nameCountry": "North Korea", + "nameCurrency": "Won", + "numericIso": "408", + "phonePrefix": "850", + "population": "22912177" + }, + { + "capital": "Seoul", + "codeCurrency": "KRW", + "codeFips": "KS", + "codeIso2Country": "KR", + "codeIso3Country": "KOR", + "continent": "AS", + "countryId": 124, + "nameCountry": "South Korea", + "nameCurrency": "Won", + "numericIso": "410", + "phonePrefix": "82", + "population": "48422644" + }, + { + "capital": "Kuwait City", + "codeCurrency": "KWD", + "codeFips": "KU", + "codeIso2Country": "KW", + "codeIso3Country": "KWT", + "continent": "AS", + "countryId": 125, + "nameCountry": "Kuwait", + "nameCurrency": "Dinar", + "numericIso": "414", + "phonePrefix": "965", + "population": "2789132" + }, + { + "capital": "George Town", + "codeCurrency": "KYD", + "codeFips": "CJ", + "codeIso2Country": "KY", + "codeIso3Country": "CYM", + "continent": "NA", + "countryId": 126, + "nameCountry": "Cayman Islands", + "nameCurrency": "Dollar", + "numericIso": "136", + "phonePrefix": "+1-345", + "population": "44270" + }, + { + "capital": "Astana", + "codeCurrency": "KZT", + "codeFips": "KZ", + "codeIso2Country": "KZ", + "codeIso3Country": "KAZ", + "continent": "AS", + "countryId": 127, + "nameCountry": "Kazakhstan", + "nameCurrency": "Tenge", + "numericIso": "398", + "phonePrefix": "7", + "population": "15340000" + }, + { + "capital": "Vientiane", + "codeCurrency": "LAK", + "codeFips": "LA", + "codeIso2Country": "LA", + "codeIso3Country": "LAO", + "continent": "AS", + "countryId": 128, + "nameCountry": "Laos", + "nameCurrency": "Kip", + "numericIso": "418", + "phonePrefix": "856", + "population": "6368162" + }, + { + "capital": "Beirut", + "codeCurrency": "LBP", + "codeFips": "LE", + "codeIso2Country": "LB", + "codeIso3Country": "LBN", + "continent": "AS", + "countryId": 129, + "nameCountry": "Lebanon", + "nameCurrency": "Pound", + "numericIso": "422", + "phonePrefix": "961", + "population": "4125247" + }, + { + "capital": "Castries", + "codeCurrency": "XCD", + "codeFips": "ST", + "codeIso2Country": "LC", + "codeIso3Country": "LCA", + "continent": "NA", + "countryId": 130, + "nameCountry": "Saint Lucia", + "nameCurrency": "Dollar", + "numericIso": "662", + "phonePrefix": "+1-758", + "population": "160922" + }, + { + "capital": "Vaduz", + "codeCurrency": "CHF", + "codeFips": "LS", + "codeIso2Country": "LI", + "codeIso3Country": "LIE", + "continent": "EU", + "countryId": 131, + "nameCountry": "Liechtenstein", + "nameCurrency": "Franc", + "numericIso": "438", + "phonePrefix": "423", + "population": "35000" + }, + { + "capital": "Colombo", + "codeCurrency": "LKR", + "codeFips": "CE", + "codeIso2Country": "LK", + "codeIso3Country": "LKA", + "continent": "AS", + "countryId": 132, + "nameCountry": "Sri Lanka", + "nameCurrency": "Rupee", + "numericIso": "144", + "phonePrefix": "94", + "population": "21513990" + }, + { + "capital": "Monrovia", + "codeCurrency": "LRD", + "codeFips": "LI", + "codeIso2Country": "LR", + "codeIso3Country": "LBR", + "continent": "AF", + "countryId": 133, + "nameCountry": "Liberia", + "nameCurrency": "Dollar", + "numericIso": "430", + "phonePrefix": "231", + "population": "3685076" + }, + { + "capital": "Maseru", + "codeCurrency": "LSL", + "codeFips": "LT", + "codeIso2Country": "LS", + "codeIso3Country": "LSO", + "continent": "AF", + "countryId": 134, + "nameCountry": "Lesotho", + "nameCurrency": "Loti", + "numericIso": "426", + "phonePrefix": "266", + "population": "1919552" + }, + { + "capital": "Vilnius", + "codeCurrency": "LTL", + "codeFips": "LH", + "codeIso2Country": "LT", + "codeIso3Country": "LTU", + "continent": "EU", + "countryId": 135, + "nameCountry": "Lithuania", + "nameCurrency": "Litas", + "numericIso": "440", + "phonePrefix": "370", + "population": "3565000" + }, + { + "capital": "Luxembourg", + "codeCurrency": "EUR", + "codeFips": "LU", + "codeIso2Country": "LU", + "codeIso3Country": "LUX", + "continent": "EU", + "countryId": 136, + "nameCountry": "Luxembourg", + "nameCurrency": "Euro", + "numericIso": "442", + "phonePrefix": "352", + "population": "497538" + }, + { + "capital": "Riga", + "codeCurrency": "LVL", + "codeFips": "LG", + "codeIso2Country": "LV", + "codeIso3Country": "LVA", + "continent": "EU", + "countryId": 137, + "nameCountry": "Latvia", + "nameCurrency": "Lat", + "numericIso": "428", + "phonePrefix": "371", + "population": "2217969" + }, + { + "capital": "Tripolis", + "codeCurrency": "LYD", + "codeFips": "LY", + "codeIso2Country": "LY", + "codeIso3Country": "LBY", + "continent": "AF", + "countryId": 138, + "nameCountry": "Libya", + "nameCurrency": "Dinar", + "numericIso": "434", + "phonePrefix": "218", + "population": "6461454" + }, + { + "capital": "Rabat", + "codeCurrency": "MAD", + "codeFips": "MO", + "codeIso2Country": "MA", + "codeIso3Country": "MAR", + "continent": "AF", + "countryId": 139, + "nameCountry": "Morocco", + "nameCurrency": "Dirham", + "numericIso": "504", + "phonePrefix": "212", + "population": "31627428" + }, + { + "capital": "Monaco", + "codeCurrency": "EUR", + "codeFips": "MN", + "codeIso2Country": "MC", + "codeIso3Country": "MCO", + "continent": "EU", + "countryId": 140, + "nameCountry": "Monaco", + "nameCurrency": "Euro", + "numericIso": "492", + "phonePrefix": "377", + "population": "32965" + }, + { + "capital": "Chisinau", + "codeCurrency": "MDL", + "codeFips": "MD", + "codeIso2Country": "MD", + "codeIso3Country": "MDA", + "continent": "EU", + "countryId": 141, + "nameCountry": "Moldova", + "nameCurrency": "Leu", + "numericIso": "498", + "phonePrefix": "373", + "population": "4324000" + }, + { + "capital": "Podgorica", + "codeCurrency": "EUR", + "codeFips": "MJ", + "codeIso2Country": "ME", + "codeIso3Country": "MNE", + "continent": "EU", + "countryId": 142, + "nameCountry": "Montenegro", + "nameCurrency": "Euro", + "numericIso": "499", + "phonePrefix": "382", + "population": "666730" + }, + { + "capital": "Marigot", + "codeCurrency": "EUR", + "codeFips": "RN", + "codeIso2Country": "MF", + "codeIso3Country": "MAF", + "continent": "NA", + "countryId": 143, + "nameCountry": "Saint Martin", + "nameCurrency": "Euro", + "numericIso": "663", + "phonePrefix": "590", + "population": "35925" + }, + { + "capital": "Antananarivo", + "codeCurrency": "MGA", + "codeFips": "MA", + "codeIso2Country": "MG", + "codeIso3Country": "MDG", + "continent": "AF", + "countryId": 144, + "nameCountry": "Madagascar", + "nameCurrency": "Ariary", + "numericIso": "450", + "phonePrefix": "261", + "population": "21281844" + }, + { + "capital": "Majuro", + "codeCurrency": "USD", + "codeFips": "RM", + "codeIso2Country": "MH", + "codeIso3Country": "MHL", + "continent": "OC", + "countryId": 145, + "nameCountry": "Marshall Islands", + "nameCurrency": "Dollar", + "numericIso": "584", + "phonePrefix": "692", + "population": "65859" + }, + { + "capital": "Skopje", + "codeCurrency": "MKD", + "codeFips": "MK", + "codeIso2Country": "MK", + "codeIso3Country": "MKD", + "continent": "EU", + "countryId": 146, + "nameCountry": "Macedonia", + "nameCurrency": "Denar", + "numericIso": "807", + "phonePrefix": "389", + "population": "2061000" + }, + { + "capital": "Bamako", + "codeCurrency": "XOF", + "codeFips": "ML", + "codeIso2Country": "ML", + "codeIso3Country": "MLI", + "continent": "AF", + "countryId": 147, + "nameCountry": "Mali", + "nameCurrency": "Franc", + "numericIso": "466", + "phonePrefix": "223", + "population": "13796354" + }, + { + "capital": "Nay Pyi Taw", + "codeCurrency": "MMK", + "codeFips": "BM", + "codeIso2Country": "MM", + "codeIso3Country": "MMR", + "continent": "AS", + "countryId": 148, + "nameCountry": "Myanmar", + "nameCurrency": "Kyat", + "numericIso": "104", + "phonePrefix": "95", + "population": "53414374" + }, + { + "capital": "Ulan Bator", + "codeCurrency": "MNT", + "codeFips": "MG", + "codeIso2Country": "MN", + "codeIso3Country": "MNG", + "continent": "AS", + "countryId": 149, + "nameCountry": "Mongolia", + "nameCurrency": "Tugrik", + "numericIso": "496", + "phonePrefix": "976", + "population": "3086918" + }, + { + "capital": "Macao", + "codeCurrency": "MOP", + "codeFips": "MC", + "codeIso2Country": "MO", + "codeIso3Country": "MAC", + "continent": "AS", + "countryId": 150, + "nameCountry": "Macao", + "nameCurrency": "Pataca", + "numericIso": "446", + "phonePrefix": "853", + "population": "449198" + }, + { + "capital": "Saipan", + "codeCurrency": "USD", + "codeFips": "CQ", + "codeIso2Country": "MP", + "codeIso3Country": "MNP", + "continent": "OC", + "countryId": 151, + "nameCountry": "Northern Mariana Islands", + "nameCurrency": "Dollar", + "numericIso": "580", + "phonePrefix": "+1-670", + "population": "53883" + }, + { + "capital": "Fort-de-France", + "codeCurrency": "EUR", + "codeFips": "MB", + "codeIso2Country": "MQ", + "codeIso3Country": "MTQ", + "continent": "NA", + "countryId": 152, + "nameCountry": "Martinique", + "nameCurrency": "Euro", + "numericIso": "474", + "phonePrefix": "596", + "population": "432900" + }, + { + "capital": "Nouakchott", + "codeCurrency": "MRO", + "codeFips": "MR", + "codeIso2Country": "MR", + "codeIso3Country": "MRT", + "continent": "AF", + "countryId": 153, + "nameCountry": "Mauritania", + "nameCurrency": "Ouguiya", + "numericIso": "478", + "phonePrefix": "222", + "population": "3205060" + }, + { + "capital": "Plymouth", + "codeCurrency": "XCD", + "codeFips": "MH", + "codeIso2Country": "MS", + "codeIso3Country": "MSR", + "continent": "NA", + "countryId": 154, + "nameCountry": "Montserrat", + "nameCurrency": "Dollar", + "numericIso": "500", + "phonePrefix": "+1-664", + "population": "9341" + }, + { + "capital": "Valletta", + "codeCurrency": "EUR", + "codeFips": "MT", + "codeIso2Country": "MT", + "codeIso3Country": "MLT", + "continent": "EU", + "countryId": 155, + "nameCountry": "Malta", + "nameCurrency": "Euro", + "numericIso": "470", + "phonePrefix": "356", + "population": "403000" + }, + { + "capital": "Port Louis", + "codeCurrency": "MUR", + "codeFips": "MP", + "codeIso2Country": "MU", + "codeIso3Country": "MUS", + "continent": "AF", + "countryId": 156, + "nameCountry": "Mauritius", + "nameCurrency": "Rupee", + "numericIso": "480", + "phonePrefix": "230", + "population": "1294104" + }, + { + "capital": "Male", + "codeCurrency": "MVR", + "codeFips": "MV", + "codeIso2Country": "MV", + "codeIso3Country": "MDV", + "continent": "AS", + "countryId": 157, + "nameCountry": "Maldives", + "nameCurrency": "Rufiyaa", + "numericIso": "462", + "phonePrefix": "960", + "population": "395650" + }, + { + "capital": "Lilongwe", + "codeCurrency": "MWK", + "codeFips": "MI", + "codeIso2Country": "MW", + "codeIso3Country": "MWI", + "continent": "AF", + "countryId": 158, + "nameCountry": "Malawi", + "nameCurrency": "Kwacha", + "numericIso": "454", + "phonePrefix": "265", + "population": "15447500" + }, + { + "capital": "Mexico City", + "codeCurrency": "MXN", + "codeFips": "MX", + "codeIso2Country": "MX", + "codeIso3Country": "MEX", + "continent": "NA", + "countryId": 159, + "nameCountry": "Mexico", + "nameCurrency": "Peso", + "numericIso": "484", + "phonePrefix": "52", + "population": "112468855" + }, + { + "capital": "Kuala Lumpur", + "codeCurrency": "MYR", + "codeFips": "MY", + "codeIso2Country": "MY", + "codeIso3Country": "MYS", + "continent": "AS", + "countryId": 160, + "nameCountry": "Malaysia", + "nameCurrency": "Ringgit", + "numericIso": "458", + "phonePrefix": "60", + "population": "28274729" + }, + { + "capital": "Maputo", + "codeCurrency": "MZN", + "codeFips": "MZ", + "codeIso2Country": "MZ", + "codeIso3Country": "MOZ", + "continent": "AF", + "countryId": 161, + "nameCountry": "Mozambique", + "nameCurrency": "Metical", + "numericIso": "508", + "phonePrefix": "258", + "population": "22061451" + }, + { + "capital": "Windhoek", + "codeCurrency": "NAD", + "codeFips": "WA", + "codeIso2Country": "NA", + "codeIso3Country": "NAM", + "continent": "AF", + "countryId": 162, + "nameCountry": "Namibia", + "nameCurrency": "Dollar", + "numericIso": "516", + "phonePrefix": "264", + "population": "2128471" + }, + { + "capital": "Noumea", + "codeCurrency": "XPF", + "codeFips": "NC", + "codeIso2Country": "NC", + "codeIso3Country": "NCL", + "continent": "OC", + "countryId": 163, + "nameCountry": "New Caledonia", + "nameCurrency": "Franc", + "numericIso": "540", + "phonePrefix": "687", + "population": "216494" + }, + { + "capital": "Niamey", + "codeCurrency": "XOF", + "codeFips": "NG", + "codeIso2Country": "NE", + "codeIso3Country": "NER", + "continent": "AF", + "countryId": 164, + "nameCountry": "Niger", + "nameCurrency": "Franc", + "numericIso": "562", + "phonePrefix": "227", + "population": "15878271" + }, + { + "capital": "Kingston", + "codeCurrency": "AUD", + "codeFips": "NF", + "codeIso2Country": "NF", + "codeIso3Country": "NFK", + "continent": "OC", + "countryId": 165, + "nameCountry": "Norfolk Island", + "nameCurrency": "Dollar", + "numericIso": "574", + "phonePrefix": "672", + "population": "1828" + }, + { + "capital": "Abuja", + "codeCurrency": "NGN", + "codeFips": "NI", + "codeIso2Country": "NG", + "codeIso3Country": "NGA", + "continent": "AF", + "countryId": 166, + "nameCountry": "Nigeria", + "nameCurrency": "Naira", + "numericIso": "566", + "phonePrefix": "234", + "population": "154000000" + }, + { + "capital": "Managua", + "codeCurrency": "NIO", + "codeFips": "NU", + "codeIso2Country": "NI", + "codeIso3Country": "NIC", + "continent": "NA", + "countryId": 167, + "nameCountry": "Nicaragua", + "nameCurrency": "Cordoba", + "numericIso": "558", + "phonePrefix": "505", + "population": "5995928" + }, + { + "capital": "Amsterdam", + "codeCurrency": "EUR", + "codeFips": "NL", + "codeIso2Country": "NL", + "codeIso3Country": "NLD", + "continent": "EU", + "countryId": 168, + "nameCountry": "Netherlands", + "nameCurrency": "Euro", + "numericIso": "528", + "phonePrefix": "31", + "population": "16645000" + }, + { + "capital": "Oslo", + "codeCurrency": "NOK", + "codeFips": "NO", + "codeIso2Country": "NO", + "codeIso3Country": "NOR", + "continent": "EU", + "countryId": 169, + "nameCountry": "Norway", + "nameCurrency": "Krone", + "numericIso": "578", + "phonePrefix": "47", + "population": "5009150" + }, + { + "capital": "Kathmandu", + "codeCurrency": "NPR", + "codeFips": "NP", + "codeIso2Country": "NP", + "codeIso3Country": "NPL", + "continent": "AS", + "countryId": 170, + "nameCountry": "Nepal", + "nameCurrency": "Rupee", + "numericIso": "524", + "phonePrefix": "977", + "population": "28951852" + }, + { + "capital": "Yaren", + "codeCurrency": "AUD", + "codeFips": "NR", + "codeIso2Country": "NR", + "codeIso3Country": "NRU", + "continent": "OC", + "countryId": 171, + "nameCountry": "Nauru", + "nameCurrency": "Dollar", + "numericIso": "520", + "phonePrefix": "674", + "population": "10065" + }, + { + "capital": "Alofi", + "codeCurrency": "NZD", + "codeFips": "NE", + "codeIso2Country": "NU", + "codeIso3Country": "NIU", + "continent": "OC", + "countryId": 172, + "nameCountry": "Niue", + "nameCurrency": "Dollar", + "numericIso": "570", + "phonePrefix": "683", + "population": "2166" + }, + { + "capital": "Wellington", + "codeCurrency": "NZD", + "codeFips": "NZ", + "codeIso2Country": "NZ", + "codeIso3Country": "NZL", + "continent": "OC", + "countryId": 173, + "nameCountry": "New Zealand", + "nameCurrency": "Dollar", + "numericIso": "554", + "phonePrefix": "64", + "population": "4252277" + }, + { + "capital": "Muscat", + "codeCurrency": "OMR", + "codeFips": "MU", + "codeIso2Country": "OM", + "codeIso3Country": "OMN", + "continent": "AS", + "countryId": 174, + "nameCountry": "Oman", + "nameCurrency": "Rial", + "numericIso": "512", + "phonePrefix": "968", + "population": "2967717" + }, + { + "capital": "Panama City", + "codeCurrency": "PAB", + "codeFips": "PM", + "codeIso2Country": "PA", + "codeIso3Country": "PAN", + "continent": "NA", + "countryId": 175, + "nameCountry": "Panama", + "nameCurrency": "Balboa", + "numericIso": "591", + "phonePrefix": "507", + "population": "3410676" + }, + { + "capital": "Lima", + "codeCurrency": "PEN", + "codeFips": "PE", + "codeIso2Country": "PE", + "codeIso3Country": "PER", + "continent": "SA", + "countryId": 176, + "nameCountry": "Peru", + "nameCurrency": "Sol", + "numericIso": "604", + "phonePrefix": "51", + "population": "29907003" + }, + { + "capital": "Papeete", + "codeCurrency": "XPF", + "codeFips": "FP", + "codeIso2Country": "PF", + "codeIso3Country": "PYF", + "continent": "OC", + "countryId": 177, + "nameCountry": "French Polynesia", + "nameCurrency": "Franc", + "numericIso": "258", + "phonePrefix": "689", + "population": "270485" + }, + { + "capital": "Port Moresby", + "codeCurrency": "PGK", + "codeFips": "PP", + "codeIso2Country": "PG", + "codeIso3Country": "PNG", + "continent": "OC", + "countryId": 178, + "nameCountry": "Papua New Guinea", + "nameCurrency": "Kina", + "numericIso": "598", + "phonePrefix": "675", + "population": "6064515" + }, + { + "capital": "Manila", + "codeCurrency": "PHP", + "codeFips": "RP", + "codeIso2Country": "PH", + "codeIso3Country": "PHL", + "continent": "AS", + "countryId": 179, + "nameCountry": "Philippines", + "nameCurrency": "Peso", + "numericIso": "608", + "phonePrefix": "63", + "population": "99900177" + }, + { + "capital": "Islamabad", + "codeCurrency": "PKR", + "codeFips": "PK", + "codeIso2Country": "PK", + "codeIso3Country": "PAK", + "continent": "AS", + "countryId": 180, + "nameCountry": "Pakistan", + "nameCurrency": "Rupee", + "numericIso": "586", + "phonePrefix": "92", + "population": "184404791" + }, + { + "capital": "Warsaw", + "codeCurrency": "PLN", + "codeFips": "PL", + "codeIso2Country": "PL", + "codeIso3Country": "POL", + "continent": "EU", + "countryId": 181, + "nameCountry": "Poland", + "nameCurrency": "Zloty", + "numericIso": "616", + "phonePrefix": "48", + "population": "38500000" + }, + { + "capital": "Saint-Pierre", + "codeCurrency": "EUR", + "codeFips": "SB", + "codeIso2Country": "PM", + "codeIso3Country": "SPM", + "continent": "NA", + "countryId": 182, + "nameCountry": "Saint Pierre and Miquelon", + "nameCurrency": "Euro", + "numericIso": "666", + "phonePrefix": "508", + "population": "7012" + }, + { + "capital": "Adamstown", + "codeCurrency": "NZD", + "codeFips": "PC", + "codeIso2Country": "PN", + "codeIso3Country": "PCN", + "continent": "OC", + "countryId": 183, + "nameCountry": "Pitcairn", + "nameCurrency": "Dollar", + "numericIso": "612", + "phonePrefix": "870", + "population": "46" + }, + { + "capital": "San Juan", + "codeCurrency": "USD", + "codeFips": "RQ", + "codeIso2Country": "PR", + "codeIso3Country": "PRI", + "continent": "NA", + "countryId": 184, + "nameCountry": "Puerto Rico", + "nameCurrency": "Dollar", + "numericIso": "630", + "phonePrefix": "+1-787 and 1-939", + "population": "3916632" + }, + { + "capital": "East Jerusalem", + "codeCurrency": "ILS", + "codeFips": "WE", + "codeIso2Country": "PS", + "codeIso3Country": "PSE", + "continent": "AS", + "countryId": 185, + "nameCountry": "Palestinian Territory", + "nameCurrency": "Shekel", + "numericIso": "275", + "phonePrefix": "970", + "population": "3800000" + }, + { + "capital": "Lisbon", + "codeCurrency": "EUR", + "codeFips": "PO", + "codeIso2Country": "PT", + "codeIso3Country": "PRT", + "continent": "EU", + "countryId": 186, + "nameCountry": "Portugal", + "nameCurrency": "Euro", + "numericIso": "620", + "phonePrefix": "351", + "population": "10676000" + }, + { + "capital": "Melekeok", + "codeCurrency": "USD", + "codeFips": "PS", + "codeIso2Country": "PW", + "codeIso3Country": "PLW", + "continent": "OC", + "countryId": 187, + "nameCountry": "Palau", + "nameCurrency": "Dollar", + "numericIso": "585", + "phonePrefix": "680", + "population": "19907" + }, + { + "capital": "Asuncion", + "codeCurrency": "PYG", + "codeFips": "PA", + "codeIso2Country": "PY", + "codeIso3Country": "PRY", + "continent": "SA", + "countryId": 188, + "nameCountry": "Paraguay", + "nameCurrency": "Guarani", + "numericIso": "600", + "phonePrefix": "595", + "population": "6375830" + }, + { + "capital": "Doha", + "codeCurrency": "QAR", + "codeFips": "QA", + "codeIso2Country": "QA", + "codeIso3Country": "QAT", + "continent": "AS", + "countryId": 189, + "nameCountry": "Qatar", + "nameCurrency": "Rial", + "numericIso": "634", + "phonePrefix": "974", + "population": "840926" + }, + { + "capital": "Saint-Denis", + "codeCurrency": "EUR", + "codeFips": "RE", + "codeIso2Country": "RE", + "codeIso3Country": "REU", + "continent": "AF", + "countryId": 190, + "nameCountry": "Reunion", + "nameCurrency": "Euro", + "numericIso": "638", + "phonePrefix": "262", + "population": "776948" + }, + { + "capital": "Bucharest", + "codeCurrency": "RON", + "codeFips": "RO", + "codeIso2Country": "RO", + "codeIso3Country": "ROU", + "continent": "EU", + "countryId": 191, + "nameCountry": "Romania", + "nameCurrency": "Leu", + "numericIso": "642", + "phonePrefix": "40", + "population": "21959278" + }, + { + "capital": "Belgrade", + "codeCurrency": "RSD", + "codeFips": "RI", + "codeIso2Country": "RS", + "codeIso3Country": "SRB", + "continent": "EU", + "countryId": 192, + "nameCountry": "Serbia", + "nameCurrency": "Dinar", + "numericIso": "688", + "phonePrefix": "381", + "population": "7344847" + }, + { + "capital": "Moscow", + "codeCurrency": "RUB", + "codeFips": "RS", + "codeIso2Country": "RU", + "codeIso3Country": "RUS", + "continent": "EU", + "countryId": 193, + "nameCountry": "Russia", + "nameCurrency": "Ruble", + "numericIso": "643", + "phonePrefix": "7", + "population": "140702000" + }, + { + "capital": "Kigali", + "codeCurrency": "RWF", + "codeFips": "RW", + "codeIso2Country": "RW", + "codeIso3Country": "RWA", + "continent": "AF", + "countryId": 194, + "nameCountry": "Rwanda", + "nameCurrency": "Franc", + "numericIso": "646", + "phonePrefix": "250", + "population": "11055976" + }, + { + "capital": "Riyadh", + "codeCurrency": "SAR", + "codeFips": "SA", + "codeIso2Country": "SA", + "codeIso3Country": "SAU", + "continent": "AS", + "countryId": 195, + "nameCountry": "Saudi Arabia", + "nameCurrency": "Rial", + "numericIso": "682", + "phonePrefix": "966", + "population": "25731776" + }, + { + "capital": "Honiara", + "codeCurrency": "SBD", + "codeFips": "BP", + "codeIso2Country": "SB", + "codeIso3Country": "SLB", + "continent": "OC", + "countryId": 196, + "nameCountry": "Solomon Islands", + "nameCurrency": "Dollar", + "numericIso": "90", + "phonePrefix": "677", + "population": "559198" + }, + { + "capital": "Victoria", + "codeCurrency": "SCR", + "codeFips": "SE", + "codeIso2Country": "SC", + "codeIso3Country": "SYC", + "continent": "AF", + "countryId": 197, + "nameCountry": "Seychelles", + "nameCurrency": "Rupee", + "numericIso": "690", + "phonePrefix": "248", + "population": "88340" + }, + { + "capital": "Khartoum", + "codeCurrency": "SDG", + "codeFips": "SU", + "codeIso2Country": "SD", + "codeIso3Country": "SDN", + "continent": "AF", + "countryId": 198, + "nameCountry": "Sudan", + "nameCurrency": "Pound", + "numericIso": "729", + "phonePrefix": "249", + "population": "35000000" + }, + { + "capital": "Stockholm", + "codeCurrency": "SEK", + "codeFips": "SW", + "codeIso2Country": "SE", + "codeIso3Country": "SWE", + "continent": "EU", + "countryId": 199, + "nameCountry": "Sweden", + "nameCurrency": "Krona", + "numericIso": "752", + "phonePrefix": "46", + "population": "9555893" + }, + { + "capital": "Singapur", + "codeCurrency": "SGD", + "codeFips": "SN", + "codeIso2Country": "SG", + "codeIso3Country": "SGP", + "continent": "AS", + "countryId": 200, + "nameCountry": "Singapore", + "nameCurrency": "Dollar", + "numericIso": "702", + "phonePrefix": "65", + "population": "4701069" + }, + { + "capital": "Jamestown", + "codeCurrency": "SHP", + "codeFips": "SH", + "codeIso2Country": "SH", + "codeIso3Country": "SHN", + "continent": "AF", + "countryId": 201, + "nameCountry": "Saint Helena", + "nameCurrency": "Pound", + "numericIso": "654", + "phonePrefix": "290", + "population": "7460" + }, + { + "capital": "Ljubljana", + "codeCurrency": "EUR", + "codeFips": "SI", + "codeIso2Country": "SI", + "codeIso3Country": "SVN", + "continent": "EU", + "countryId": 202, + "nameCountry": "Slovenia", + "nameCurrency": "Euro", + "numericIso": "705", + "phonePrefix": "386", + "population": "2007000" + }, + { + "capital": "Longyearbyen", + "codeCurrency": "NOK", + "codeFips": "SV", + "codeIso2Country": "SJ", + "codeIso3Country": "SJM", + "continent": "EU", + "countryId": 203, + "nameCountry": "Svalbard and Jan Mayen", + "nameCurrency": "Krone", + "numericIso": "744", + "phonePrefix": "47", + "population": "2550" + }, + { + "capital": "Bratislava", + "codeCurrency": "EUR", + "codeFips": "LO", + "codeIso2Country": "SK", + "codeIso3Country": "SVK", + "continent": "EU", + "countryId": 204, + "nameCountry": "Slovakia", + "nameCurrency": "Euro", + "numericIso": "703", + "phonePrefix": "421", + "population": "5455000" + }, + { + "capital": "Freetown", + "codeCurrency": "SLL", + "codeFips": "SL", + "codeIso2Country": "SL", + "codeIso3Country": "SLE", + "continent": "AF", + "countryId": 205, + "nameCountry": "Sierra Leone", + "nameCurrency": "Leone", + "numericIso": "694", + "phonePrefix": "232", + "population": "5245695" + }, + { + "capital": "San Marino", + "codeCurrency": "EUR", + "codeFips": "SM", + "codeIso2Country": "SM", + "codeIso3Country": "SMR", + "continent": "EU", + "countryId": 206, + "nameCountry": "San Marino", + "nameCurrency": "Euro", + "numericIso": "674", + "phonePrefix": "378", + "population": "31477" + }, + { + "capital": "Dakar", + "codeCurrency": "XOF", + "codeFips": "SG", + "codeIso2Country": "SN", + "codeIso3Country": "SEN", + "continent": "AF", + "countryId": 207, + "nameCountry": "Senegal", + "nameCurrency": "Franc", + "numericIso": "686", + "phonePrefix": "221", + "population": "12323252" + }, + { + "capital": "Mogadishu", + "codeCurrency": "SOS", + "codeFips": "SO", + "codeIso2Country": "SO", + "codeIso3Country": "SOM", + "continent": "AF", + "countryId": 208, + "nameCountry": "Somalia", + "nameCurrency": "Shilling", + "numericIso": "706", + "phonePrefix": "252", + "population": "10112453" + }, + { + "capital": "Paramaribo", + "codeCurrency": "SRD", + "codeFips": "NS", + "codeIso2Country": "SR", + "codeIso3Country": "SUR", + "continent": "SA", + "countryId": 209, + "nameCountry": "Suriname", + "nameCurrency": "Dollar", + "numericIso": "740", + "phonePrefix": "597", + "population": "492829" + }, + { + "capital": "Juba", + "codeCurrency": "SSP", + "codeFips": "OD", + "codeIso2Country": "SS", + "codeIso3Country": "SSD", + "continent": "AF", + "countryId": 210, + "nameCountry": "South Sudan", + "nameCurrency": "Pound", + "numericIso": "728", + "phonePrefix": "211", + "population": "8260490" + }, + { + "capital": "Sao Tome", + "codeCurrency": "STD", + "codeFips": "TP", + "codeIso2Country": "ST", + "codeIso3Country": "STP", + "continent": "AF", + "countryId": 211, + "nameCountry": "Sao Tome and Principe", + "nameCurrency": "Dobra", + "numericIso": "678", + "phonePrefix": "239", + "population": "175808" + }, + { + "capital": "San Salvador", + "codeCurrency": "USD", + "codeFips": "ES", + "codeIso2Country": "SV", + "codeIso3Country": "SLV", + "continent": "NA", + "countryId": 212, + "nameCountry": "El Salvador", + "nameCurrency": "Dollar", + "numericIso": "222", + "phonePrefix": "503", + "population": "6052064" + }, + { + "capital": "Philipsburg", + "codeCurrency": "ANG", + "codeFips": "NN", + "codeIso2Country": "SX", + "codeIso3Country": "SXM", + "continent": "NA", + "countryId": 213, + "nameCountry": "Sint Maarten", + "nameCurrency": "Guilder", + "numericIso": "534", + "phonePrefix": "599", + "population": "37429" + }, + { + "capital": "Damascus", + "codeCurrency": "SYP", + "codeFips": "SY", + "codeIso2Country": "SY", + "codeIso3Country": "SYR", + "continent": "AS", + "countryId": 214, + "nameCountry": "Syria", + "nameCurrency": "Pound", + "numericIso": "760", + "phonePrefix": "963", + "population": "22198110" + }, + { + "capital": "Mbabane", + "codeCurrency": "SZL", + "codeFips": "WZ", + "codeIso2Country": "SZ", + "codeIso3Country": "SWZ", + "continent": "AF", + "countryId": 215, + "nameCountry": "Swaziland", + "nameCurrency": "Lilangeni", + "numericIso": "748", + "phonePrefix": "268", + "population": "1354051" + }, + { + "capital": "Cockburn Town", + "codeCurrency": "USD", + "codeFips": "TK", + "codeIso2Country": "TC", + "codeIso3Country": "TCA", + "continent": "NA", + "countryId": 216, + "nameCountry": "Turks and Caicos Islands", + "nameCurrency": "Dollar", + "numericIso": "796", + "phonePrefix": "+1-649", + "population": "20556" + }, + { + "capital": "N'Djamena", + "codeCurrency": "XAF", + "codeFips": "CD", + "codeIso2Country": "TD", + "codeIso3Country": "TCD", + "continent": "AF", + "countryId": 217, + "nameCountry": "Chad", + "nameCurrency": "Franc", + "numericIso": "148", + "phonePrefix": "235", + "population": "10543464" + }, + { + "capital": "Port-aux-Francais", + "codeCurrency": "EUR", + "codeFips": "FS", + "codeIso2Country": "TF", + "codeIso3Country": "ATF", + "continent": "AN", + "countryId": 218, + "nameCountry": "French Southern Territories", + "nameCurrency": "Euro", + "numericIso": "260", + "phonePrefix": "", + "population": "140" + }, + { + "capital": "Lome", + "codeCurrency": "XOF", + "codeFips": "TO", + "codeIso2Country": "TG", + "codeIso3Country": "TGO", + "continent": "AF", + "countryId": 219, + "nameCountry": "Togo", + "nameCurrency": "Franc", + "numericIso": "768", + "phonePrefix": "228", + "population": "6587239" + }, + { + "capital": "Bangkok", + "codeCurrency": "THB", + "codeFips": "TH", + "codeIso2Country": "TH", + "codeIso3Country": "THA", + "continent": "AS", + "countryId": 220, + "nameCountry": "Thailand", + "nameCurrency": "Baht", + "numericIso": "764", + "phonePrefix": "66", + "population": "67089500" + }, + { + "capital": "Dushanbe", + "codeCurrency": "TJS", + "codeFips": "TI", + "codeIso2Country": "TJ", + "codeIso3Country": "TJK", + "continent": "AS", + "countryId": 221, + "nameCountry": "Tajikistan", + "nameCurrency": "Somoni", + "numericIso": "762", + "phonePrefix": "992", + "population": "7487489" + }, + { + "capital": "", + "codeCurrency": "NZD", + "codeFips": "TL", + "codeIso2Country": "TK", + "codeIso3Country": "TKL", + "continent": "OC", + "countryId": 222, + "nameCountry": "Tokelau", + "nameCurrency": "Dollar", + "numericIso": "772", + "phonePrefix": "690", + "population": "1466" + }, + { + "capital": "Dili", + "codeCurrency": "USD", + "codeFips": "TT", + "codeIso2Country": "TL", + "codeIso3Country": "TLS", + "continent": "OC", + "countryId": 223, + "nameCountry": "East Timor", + "nameCurrency": "Dollar", + "numericIso": "626", + "phonePrefix": "670", + "population": "1154625" + }, + { + "capital": "Ashgabat", + "codeCurrency": "TMT", + "codeFips": "TX", + "codeIso2Country": "TM", + "codeIso3Country": "TKM", + "continent": "AS", + "countryId": 224, + "nameCountry": "Turkmenistan", + "nameCurrency": "Manat", + "numericIso": "795", + "phonePrefix": "993", + "population": "4940916" + }, + { + "capital": "Tunis", + "codeCurrency": "TND", + "codeFips": "TS", + "codeIso2Country": "TN", + "codeIso3Country": "TUN", + "continent": "AF", + "countryId": 225, + "nameCountry": "Tunisia", + "nameCurrency": "Dinar", + "numericIso": "788", + "phonePrefix": "216", + "population": "10589025" + }, + { + "capital": "Nuku'alofa", + "codeCurrency": "TOP", + "codeFips": "TN", + "codeIso2Country": "TO", + "codeIso3Country": "TON", + "continent": "OC", + "countryId": 226, + "nameCountry": "Tonga", + "nameCurrency": "Pa'anga", + "numericIso": "776", + "phonePrefix": "676", + "population": "122580" + }, + { + "capital": "Ankara", + "codeCurrency": "TRY", + "codeFips": "TU", + "codeIso2Country": "TR", + "codeIso3Country": "TUR", + "continent": "AS", + "countryId": 227, + "nameCountry": "Turkey", + "nameCurrency": "Lira", + "numericIso": "792", + "phonePrefix": "90", + "population": "77804122" + }, + { + "capital": "Port of Spain", + "codeCurrency": "TTD", + "codeFips": "TD", + "codeIso2Country": "TT", + "codeIso3Country": "TTO", + "continent": "NA", + "countryId": 228, + "nameCountry": "Trinidad and Tobago", + "nameCurrency": "Dollar", + "numericIso": "780", + "phonePrefix": "+1-868", + "population": "1228691" + }, + { + "capital": "Funafuti", + "codeCurrency": "AUD", + "codeFips": "TV", + "codeIso2Country": "TV", + "codeIso3Country": "TUV", + "continent": "OC", + "countryId": 229, + "nameCountry": "Tuvalu", + "nameCurrency": "Dollar", + "numericIso": "798", + "phonePrefix": "688", + "population": "10472" + }, + { + "capital": "Taipei", + "codeCurrency": "TWD", + "codeFips": "TW", + "codeIso2Country": "TW", + "codeIso3Country": "TWN", + "continent": "AS", + "countryId": 230, + "nameCountry": "Taiwan", + "nameCurrency": "Dollar", + "numericIso": "158", + "phonePrefix": "886", + "population": "22894384" + }, + { + "capital": "Dodoma", + "codeCurrency": "TZS", + "codeFips": "TZ", + "codeIso2Country": "TZ", + "codeIso3Country": "TZA", + "continent": "AF", + "countryId": 231, + "nameCountry": "Tanzania", + "nameCurrency": "Shilling", + "numericIso": "834", + "phonePrefix": "255", + "population": "41892895" + }, + { + "capital": "Kiev", + "codeCurrency": "UAH", + "codeFips": "UP", + "codeIso2Country": "UA", + "codeIso3Country": "UKR", + "continent": "EU", + "countryId": 232, + "nameCountry": "Ukraine", + "nameCurrency": "Hryvnia", + "numericIso": "804", + "phonePrefix": "380", + "population": "45415596" + }, + { + "capital": "Kampala", + "codeCurrency": "UGX", + "codeFips": "UG", + "codeIso2Country": "UG", + "codeIso3Country": "UGA", + "continent": "AF", + "countryId": 233, + "nameCountry": "Uganda", + "nameCurrency": "Shilling", + "numericIso": "800", + "phonePrefix": "256", + "population": "33398682" + }, + { + "capital": "", + "codeCurrency": "USD", + "codeFips": "", + "codeIso2Country": "UM", + "codeIso3Country": "UMI", + "continent": "OC", + "countryId": 234, + "nameCountry": "United States Minor Outlying Islands", + "nameCurrency": "Dollar", + "numericIso": "581", + "phonePrefix": "1", + "population": "0" + }, + { + "capital": "Washington", + "codeCurrency": "USD", + "codeFips": "US", + "codeIso2Country": "US", + "codeIso3Country": "USA", + "continent": "NA", + "countryId": 235, + "nameCountry": "United States", + "nameCurrency": "Dollar", + "numericIso": "840", + "phonePrefix": "1", + "population": "310232863" + }, + { + "capital": "Montevideo", + "codeCurrency": "UYU", + "codeFips": "UY", + "codeIso2Country": "UY", + "codeIso3Country": "URY", + "continent": "SA", + "countryId": 236, + "nameCountry": "Uruguay", + "nameCurrency": "Peso", + "numericIso": "858", + "phonePrefix": "598", + "population": "3477000" + }, + { + "capital": "Tashkent", + "codeCurrency": "UZS", + "codeFips": "UZ", + "codeIso2Country": "UZ", + "codeIso3Country": "UZB", + "continent": "AS", + "countryId": 237, + "nameCountry": "Uzbekistan", + "nameCurrency": "Som", + "numericIso": "860", + "phonePrefix": "998", + "population": "27865738" + }, + { + "capital": "Vatican City", + "codeCurrency": "EUR", + "codeFips": "VT", + "codeIso2Country": "VA", + "codeIso3Country": "VAT", + "continent": "EU", + "countryId": 238, + "nameCountry": "Vatican", + "nameCurrency": "Euro", + "numericIso": "336", + "phonePrefix": "379", + "population": "921" + }, + { + "capital": "Kingstown", + "codeCurrency": "XCD", + "codeFips": "VC", + "codeIso2Country": "VC", + "codeIso3Country": "VCT", + "continent": "NA", + "countryId": 239, + "nameCountry": "Saint Vincent and the Grenadines", + "nameCurrency": "Dollar", + "numericIso": "670", + "phonePrefix": "+1-784", + "population": "104217" + }, + { + "capital": "Caracas", + "codeCurrency": "VEF", + "codeFips": "VE", + "codeIso2Country": "VE", + "codeIso3Country": "VEN", + "continent": "SA", + "countryId": 240, + "nameCountry": "Venezuela", + "nameCurrency": "Bolivar", + "numericIso": "862", + "phonePrefix": "58", + "population": "27223228" + }, + { + "capital": "Road Town", + "codeCurrency": "USD", + "codeFips": "VI", + "codeIso2Country": "VG", + "codeIso3Country": "VGB", + "continent": "NA", + "countryId": 241, + "nameCountry": "British Virgin Islands", + "nameCurrency": "Dollar", + "numericIso": "92", + "phonePrefix": "+1-284", + "population": "21730" + }, + { + "capital": "Charlotte Amalie", + "codeCurrency": "USD", + "codeFips": "VQ", + "codeIso2Country": "VI", + "codeIso3Country": "VIR", + "continent": "NA", + "countryId": 242, + "nameCountry": "U.S. Virgin Islands", + "nameCurrency": "Dollar", + "numericIso": "850", + "phonePrefix": "+1-340", + "population": "108708" + }, + { + "capital": "Hanoi", + "codeCurrency": "VND", + "codeFips": "VM", + "codeIso2Country": "VN", + "codeIso3Country": "VNM", + "continent": "AS", + "countryId": 243, + "nameCountry": "Vietnam", + "nameCurrency": "Dong", + "numericIso": "704", + "phonePrefix": "84", + "population": "89571130" + }, + { + "capital": "Port Vila", + "codeCurrency": "VUV", + "codeFips": "NH", + "codeIso2Country": "VU", + "codeIso3Country": "VUT", + "continent": "OC", + "countryId": 244, + "nameCountry": "Vanuatu", + "nameCurrency": "Vatu", + "numericIso": "548", + "phonePrefix": "678", + "population": "221552" + }, + { + "capital": "Mata Utu", + "codeCurrency": "XPF", + "codeFips": "WF", + "codeIso2Country": "WF", + "codeIso3Country": "WLF", + "continent": "OC", + "countryId": 245, + "nameCountry": "Wallis and Futuna", + "nameCurrency": "Franc", + "numericIso": "876", + "phonePrefix": "681", + "population": "16025" + }, + { + "capital": "Apia", + "codeCurrency": "WST", + "codeFips": "WS", + "codeIso2Country": "WS", + "codeIso3Country": "WSM", + "continent": "OC", + "countryId": 246, + "nameCountry": "Samoa", + "nameCurrency": "Tala", + "numericIso": "882", + "phonePrefix": "685", + "population": "192001" + }, + { + "capital": "Pristina", + "codeCurrency": "EUR", + "codeFips": "KV", + "codeIso2Country": "XK", + "codeIso3Country": "XKX", + "continent": "EU", + "countryId": 247, + "nameCountry": "Kosovo", + "nameCurrency": "Euro", + "numericIso": "0", + "phonePrefix": "", + "population": "1800000" + }, + { + "capital": "Sanaa", + "codeCurrency": "YER", + "codeFips": "YM", + "codeIso2Country": "YE", + "codeIso3Country": "YEM", + "continent": "AS", + "countryId": 248, + "nameCountry": "Yemen", + "nameCurrency": "Rial", + "numericIso": "887", + "phonePrefix": "967", + "population": "23495361" + }, + { + "capital": "Mamoudzou", + "codeCurrency": "EUR", + "codeFips": "MF", + "codeIso2Country": "YT", + "codeIso3Country": "MYT", + "continent": "AF", + "countryId": 249, + "nameCountry": "Mayotte", + "nameCurrency": "Euro", + "numericIso": "175", + "phonePrefix": "262", + "population": "159042" + }, + { + "capital": "Pretoria", + "codeCurrency": "ZAR", + "codeFips": "SF", + "codeIso2Country": "ZA", + "codeIso3Country": "ZAF", + "continent": "AF", + "countryId": 250, + "nameCountry": "South Africa", + "nameCurrency": "Rand", + "numericIso": "710", + "phonePrefix": "27", + "population": "49000000" + }, + { + "capital": "Lusaka", + "codeCurrency": "ZMK", + "codeFips": "ZA", + "codeIso2Country": "ZM", + "codeIso3Country": "ZMB", + "continent": "AF", + "countryId": 251, + "nameCountry": "Zambia", + "nameCurrency": "Kwacha", + "numericIso": "894", + "phonePrefix": "260", + "population": "13460305" + }, + { + "capital": "Harare", + "codeCurrency": "ZWL", + "codeFips": "ZI", + "codeIso2Country": "ZW", + "codeIso3Country": "ZWE", + "continent": "AF", + "countryId": 252, + "nameCountry": "Zimbabwe", + "nameCurrency": "Dollar", + "numericIso": "716", + "phonePrefix": "263", + "population": "11651858" + } +] \ No newline at end of file diff --git a/apps/api/data/planeTypes.json b/apps/api/data/planeTypes.json new file mode 100644 index 0000000..a98eb8d --- /dev/null +++ b/apps/api/data/planeTypes.json @@ -0,0 +1,1567 @@ +[ + { + "codeIataAircraft": "100", + "nameAircraft": "Fokker 100", + "planeTypeId": 1 + }, + { + "codeIataAircraft": "141", + "nameAircraft": "British Aerospace BAe 146-100", + "planeTypeId": 2 + }, + { + "codeIataAircraft": "142", + "nameAircraft": "British Aerospace BAe 146-200", + "planeTypeId": 3 + }, + { + "codeIataAircraft": "143", + "nameAircraft": "British Aerospace BAe 146-300", + "planeTypeId": 4 + }, + { + "codeIataAircraft": "146", + "nameAircraft": "British Aerospace BAe 146", + "planeTypeId": 5 + }, + { + "codeIataAircraft": "14F", + "nameAircraft": "British Aerospace BAe 146 Freighter", + "planeTypeId": 6 + }, + { + "codeIataAircraft": "14X", + "nameAircraft": "British Aerospace BAe 146-100QT/QC", + "planeTypeId": 7 + }, + { + "codeIataAircraft": "14Y", + "nameAircraft": "British Aerospace BAe 146-200QT/QC", + "planeTypeId": 8 + }, + { + "codeIataAircraft": "14Z", + "nameAircraft": "British Aerospace BAe 146-300QT/QC", + "planeTypeId": 9 + }, + { + "codeIataAircraft": "310", + "nameAircraft": "Airbus Industrie A310", + "planeTypeId": 10 + }, + { + "codeIataAircraft": "312", + "nameAircraft": "Airbus Industrie A310-200", + "planeTypeId": 11 + }, + { + "codeIataAircraft": "313", + "nameAircraft": "Airbus Industrie A310-300", + "planeTypeId": 12 + }, + { + "codeIataAircraft": "318", + "nameAircraft": "Airbus Industrie A318", + "planeTypeId": 13 + }, + { + "codeIataAircraft": "319", + "nameAircraft": "Airbus Industrie A319", + "planeTypeId": 14 + }, + { + "codeIataAircraft": "31F", + "nameAircraft": "Airbus Industrie A310 Freighter", + "planeTypeId": 15 + }, + { + "codeIataAircraft": "31X", + "nameAircraft": "Airbus Industrie A310-200 Freighter", + "planeTypeId": 16 + }, + { + "codeIataAircraft": "31Y", + "nameAircraft": "Airbus Industrie A310-300 Freighter", + "planeTypeId": 17 + }, + { + "codeIataAircraft": "320", + "nameAircraft": "Airbus Industrie A320", + "planeTypeId": 18 + }, + { + "codeIataAircraft": "321", + "nameAircraft": "Airbus Industrie A321", + "planeTypeId": 19 + }, + { + "codeIataAircraft": "32S", + "nameAircraft": "Airbus Industrie A318/319/320/321", + "planeTypeId": 20 + }, + { + "codeIataAircraft": "330", + "nameAircraft": "Airbus Industrie A330", + "planeTypeId": 21 + }, + { + "codeIataAircraft": "332", + "nameAircraft": "Airbus Industrie A330-200", + "planeTypeId": 22 + }, + { + "codeIataAircraft": "333", + "nameAircraft": "Airbus Industrie A330-300", + "planeTypeId": 23 + }, + { + "codeIataAircraft": "340", + "nameAircraft": "Airbus Industrie A340", + "planeTypeId": 24 + }, + { + "codeIataAircraft": "342", + "nameAircraft": "Airbus Industrie A340-200", + "planeTypeId": 25 + }, + { + "codeIataAircraft": "343", + "nameAircraft": "Airbus Industrie A340-300", + "planeTypeId": 26 + }, + { + "codeIataAircraft": "345", + "nameAircraft": "Airbus Industrie A340-500", + "planeTypeId": 27 + }, + { + "codeIataAircraft": "346", + "nameAircraft": "Airbus Industrie A340-600", + "planeTypeId": 28 + }, + { + "codeIataAircraft": "380", + "nameAircraft": "Airbus Industrie A380", + "planeTypeId": 29 + }, + { + "codeIataAircraft": "388", + "nameAircraft": "Airbus Industrie A380-800", + "planeTypeId": 30 + }, + { + "codeIataAircraft": "38F", + "nameAircraft": "Airbus Industrie A380 Freighter", + "planeTypeId": 31 + }, + { + "codeIataAircraft": "703", + "nameAircraft": "Boeing 707-300", + "planeTypeId": 32 + }, + { + "codeIataAircraft": "707", + "nameAircraft": "Boeing 707/720", + "planeTypeId": 33 + }, + { + "codeIataAircraft": "70F", + "nameAircraft": "Boeing 707-300 Freighter", + "planeTypeId": 34 + }, + { + "codeIataAircraft": "70M", + "nameAircraft": "Boeing 707-300 Combi", + "planeTypeId": 35 + }, + { + "codeIataAircraft": "717", + "nameAircraft": "Boeing 717-200", + "planeTypeId": 36 + }, + { + "codeIataAircraft": "721", + "nameAircraft": "Boeing 727-100", + "planeTypeId": 37 + }, + { + "codeIataAircraft": "722", + "nameAircraft": "Boeing 727-200", + "planeTypeId": 38 + }, + { + "codeIataAircraft": "727", + "nameAircraft": "Boeing 727", + "planeTypeId": 39 + }, + { + "codeIataAircraft": "72A", + "nameAircraft": "Boeing 727-200 Advanced", + "planeTypeId": 40 + }, + { + "codeIataAircraft": "72B", + "nameAircraft": "Boeing 727-100 Combi", + "planeTypeId": 41 + }, + { + "codeIataAircraft": "72C", + "nameAircraft": "Boeing 727-200 Combi", + "planeTypeId": 42 + }, + { + "codeIataAircraft": "72F", + "nameAircraft": "Boeing 727 Freighter", + "planeTypeId": 43 + }, + { + "codeIataAircraft": "72M", + "nameAircraft": "Boeing 727 Combi", + "planeTypeId": 44 + }, + { + "codeIataAircraft": "72S", + "nameAircraft": "Boeing 727-200", + "planeTypeId": 45 + }, + { + "codeIataAircraft": "72X", + "nameAircraft": "Boeing 727-100 Freighter", + "planeTypeId": 46 + }, + { + "codeIataAircraft": "72Y", + "nameAircraft": "Boeing 727-200 Freighter", + "planeTypeId": 47 + }, + { + "codeIataAircraft": "731", + "nameAircraft": "Boeing 737-100", + "planeTypeId": 48 + }, + { + "codeIataAircraft": "732", + "nameAircraft": "Boeing 737-200", + "planeTypeId": 49 + }, + { + "codeIataAircraft": "733", + "nameAircraft": "Boeing 737-300", + "planeTypeId": 50 + }, + { + "codeIataAircraft": "734", + "nameAircraft": "Boeing 737-400", + "planeTypeId": 51 + }, + { + "codeIataAircraft": "735", + "nameAircraft": "Boeing 737-500", + "planeTypeId": 52 + }, + { + "codeIataAircraft": "736", + "nameAircraft": "Boeing 737-600", + "planeTypeId": 53 + }, + { + "codeIataAircraft": "737", + "nameAircraft": "Boeing 737", + "planeTypeId": 54 + }, + { + "codeIataAircraft": "738", + "nameAircraft": "Boeing 737-800", + "planeTypeId": 55 + }, + { + "codeIataAircraft": "739", + "nameAircraft": "Boeing 737-900", + "planeTypeId": 56 + }, + { + "codeIataAircraft": "73A", + "nameAircraft": "Boeing 737-200/200C Advanced", + "planeTypeId": 57 + }, + { + "codeIataAircraft": "73C", + "nameAircraft": "Boeing 737-300", + "planeTypeId": 58 + }, + { + "codeIataAircraft": "73E", + "nameAircraft": "Boeing 737-900ER", + "planeTypeId": 59 + }, + { + "codeIataAircraft": "73F", + "nameAircraft": "Boeing 737 Freighter", + "planeTypeId": 60 + }, + { + "codeIataAircraft": "73G", + "nameAircraft": "Boeing 737-700", + "planeTypeId": 61 + }, + { + "codeIataAircraft": "73H", + "nameAircraft": "Boeing 737-800 With Winglets", + "planeTypeId": 62 + }, + { + "codeIataAircraft": "73J", + "nameAircraft": "Boeing 737-900 With Winglets", + "planeTypeId": 63 + }, + { + "codeIataAircraft": "73M", + "nameAircraft": "Boeing 737-200 Combi", + "planeTypeId": 64 + }, + { + "codeIataAircraft": "73N", + "nameAircraft": "Boeing 737-300 Mixed Config", + "planeTypeId": 65 + }, + { + "codeIataAircraft": "73P", + "nameAircraft": "Boeing 737-400 Freighter", + "planeTypeId": 66 + }, + { + "codeIataAircraft": "73Q", + "nameAircraft": "Boeing 737-400 Mixed Config", + "planeTypeId": 67 + }, + { + "codeIataAircraft": "73S", + "nameAircraft": "Boeing 737 Advanced", + "planeTypeId": 68 + }, + { + "codeIataAircraft": "73W", + "nameAircraft": "Boeing 737-700 With Winglets", + "planeTypeId": 69 + }, + { + "codeIataAircraft": "73X", + "nameAircraft": "Boeing 737-200 Freighter", + "planeTypeId": 70 + }, + { + "codeIataAircraft": "73Y", + "nameAircraft": "Boeing 737-300 Freighter", + "planeTypeId": 71 + }, + { + "codeIataAircraft": "741", + "nameAircraft": "Boeing 747-100", + "planeTypeId": 72 + }, + { + "codeIataAircraft": "742", + "nameAircraft": "Boeing 747-200", + "planeTypeId": 73 + }, + { + "codeIataAircraft": "743", + "nameAircraft": "Boeing 747-300 (including -100SUD and -200SUD)", + "planeTypeId": 74 + }, + { + "codeIataAircraft": "744", + "nameAircraft": "Boeing 747-400", + "planeTypeId": 75 + }, + { + "codeIataAircraft": "747", + "nameAircraft": "Boeing 747", + "planeTypeId": 76 + }, + { + "codeIataAircraft": "74C", + "nameAircraft": "Boeing 747-200 Combi", + "planeTypeId": 77 + }, + { + "codeIataAircraft": "74D", + "nameAircraft": "Boeing 747-300 Combi (including -200SUD)", + "planeTypeId": 78 + }, + { + "codeIataAircraft": "74E", + "nameAircraft": "Boeing 747-400 Combi", + "planeTypeId": 79 + }, + { + "codeIataAircraft": "74F", + "nameAircraft": "Boeing 747 Freighter", + "planeTypeId": 80 + }, + { + "codeIataAircraft": "74J", + "nameAircraft": "Boeing 747-400 Domestic", + "planeTypeId": 81 + }, + { + "codeIataAircraft": "74L", + "nameAircraft": "Boeing 747SP", + "planeTypeId": 82 + }, + { + "codeIataAircraft": "74M", + "nameAircraft": "Boeing 747 Combi", + "planeTypeId": 83 + }, + { + "codeIataAircraft": "74T", + "nameAircraft": "Boeing 747-100 Freighter", + "planeTypeId": 84 + }, + { + "codeIataAircraft": "74U", + "nameAircraft": "Boeing 747-300 Freighter", + "planeTypeId": 85 + }, + { + "codeIataAircraft": "74V", + "nameAircraft": "Boeing 747SR Freighter", + "planeTypeId": 86 + }, + { + "codeIataAircraft": "74X", + "nameAircraft": "Boeing 747-200 Freighter", + "planeTypeId": 87 + }, + { + "codeIataAircraft": "74Y", + "nameAircraft": "Boeing 747-400 Freighter", + "planeTypeId": 88 + }, + { + "codeIataAircraft": "752", + "nameAircraft": "Boeing 757-200", + "planeTypeId": 89 + }, + { + "codeIataAircraft": "753", + "nameAircraft": "Boeing 757-300", + "planeTypeId": 90 + }, + { + "codeIataAircraft": "757", + "nameAircraft": "Boeing 757", + "planeTypeId": 91 + }, + { + "codeIataAircraft": "75F", + "nameAircraft": "Boeing 757-200 Freighter", + "planeTypeId": 92 + }, + { + "codeIataAircraft": "75M", + "nameAircraft": "Boeing 757-200 Combi", + "planeTypeId": 93 + }, + { + "codeIataAircraft": "75W", + "nameAircraft": "Boeing 757-200 With Winglets", + "planeTypeId": 94 + }, + { + "codeIataAircraft": "762", + "nameAircraft": "Boeing 767-200", + "planeTypeId": 95 + }, + { + "codeIataAircraft": "763", + "nameAircraft": "Boeing 767-300", + "planeTypeId": 96 + }, + { + "codeIataAircraft": "764", + "nameAircraft": "Boeing 767-400", + "planeTypeId": 97 + }, + { + "codeIataAircraft": "767", + "nameAircraft": "Boeing 767", + "planeTypeId": 98 + }, + { + "codeIataAircraft": "76F", + "nameAircraft": "Boeing 767 Freighter", + "planeTypeId": 99 + }, + { + "codeIataAircraft": "76X", + "nameAircraft": "Boeing 767-200 Freighter", + "planeTypeId": 100 + }, + { + "codeIataAircraft": "76Y", + "nameAircraft": "Boeing 767-300 Freighter", + "planeTypeId": 101 + }, + { + "codeIataAircraft": "772", + "nameAircraft": "Boeing 777-200/200ER", + "planeTypeId": 102 + }, + { + "codeIataAircraft": "773", + "nameAircraft": "Boeing 777-300", + "planeTypeId": 103 + }, + { + "codeIataAircraft": "777", + "nameAircraft": "Boeing 777", + "planeTypeId": 104 + }, + { + "codeIataAircraft": "77L", + "nameAircraft": "Boeing 777-200LR", + "planeTypeId": 105 + }, + { + "codeIataAircraft": "77W", + "nameAircraft": "Boeing 777-300ER", + "planeTypeId": 106 + }, + { + "codeIataAircraft": "A26", + "nameAircraft": "Antonov An-26", + "planeTypeId": 107 + }, + { + "codeIataAircraft": "A28", + "nameAircraft": "Antonov An-28", + "planeTypeId": 108 + }, + { + "codeIataAircraft": "A30", + "nameAircraft": "Antonov An-30", + "planeTypeId": 109 + }, + { + "codeIataAircraft": "A32", + "nameAircraft": "Antonov An-32", + "planeTypeId": 110 + }, + { + "codeIataAircraft": "A40", + "nameAircraft": "Antonov An-140", + "planeTypeId": 111 + }, + { + "codeIataAircraft": "A4F", + "nameAircraft": "Antonov An-124 Ruslan", + "planeTypeId": 112 + }, + { + "codeIataAircraft": "A81", + "nameAircraft": "Antonov An-148-100", + "planeTypeId": 113 + }, + { + "codeIataAircraft": "AB3", + "nameAircraft": "Airbus Industrie A300", + "planeTypeId": 114 + }, + { + "codeIataAircraft": "AB4", + "nameAircraft": "Airbus Industrie A300B2/B4/C4", + "planeTypeId": 115 + }, + { + "codeIataAircraft": "AB6", + "nameAircraft": "Airbus Industrie A300-600", + "planeTypeId": 116 + }, + { + "codeIataAircraft": "ABB", + "nameAircraft": "Airbus Industrie A300-600ST Beluga", + "planeTypeId": 117 + }, + { + "codeIataAircraft": "ABF", + "nameAircraft": "Airbus Industrie A300 Freighter", + "planeTypeId": 118 + }, + { + "codeIataAircraft": "ABX", + "nameAircraft": "Airbus Industrie A300B4/C4/F4 Freighter", + "planeTypeId": 119 + }, + { + "codeIataAircraft": "ABY", + "nameAircraft": "Airbus Industrie A300-600 Freighter", + "planeTypeId": 120 + }, + { + "codeIataAircraft": "ACD", + "nameAircraft": "Twin Aero Commander/Turbo/Jetprop", + "planeTypeId": 121 + }, + { + "codeIataAircraft": "AGH", + "nameAircraft": "Agusta A109", + "planeTypeId": 122 + }, + { + "codeIataAircraft": "AN4", + "nameAircraft": "Antonov An-24", + "planeTypeId": 123 + }, + { + "codeIataAircraft": "AN6", + "nameAircraft": "Antonov An-26/30/32", + "planeTypeId": 124 + }, + { + "codeIataAircraft": "AN7", + "nameAircraft": "Antonov An-72/74", + "planeTypeId": 125 + }, + { + "codeIataAircraft": "ANF", + "nameAircraft": "Antonov An-12", + "planeTypeId": 126 + }, + { + "codeIataAircraft": "AR1", + "nameAircraft": "Avro RJ100 Avroliner", + "planeTypeId": 127 + }, + { + "codeIataAircraft": "AR7", + "nameAircraft": "Avro RJ70 Avroliner", + "planeTypeId": 128 + }, + { + "codeIataAircraft": "AR8", + "nameAircraft": "Avro RJ85 Avroliner", + "planeTypeId": 129 + }, + { + "codeIataAircraft": "ARJ", + "nameAircraft": "Avro RJ Avroliner", + "planeTypeId": 130 + }, + { + "codeIataAircraft": "ARX", + "nameAircraft": "Avro RJX", + "planeTypeId": 131 + }, + { + "codeIataAircraft": "AT4", + "nameAircraft": "Aerospatiale/Alenia ATR 42-300/320", + "planeTypeId": 132 + }, + { + "codeIataAircraft": "AT5", + "nameAircraft": "Aerospatiale/Alenia ATR 42-500", + "planeTypeId": 133 + }, + { + "codeIataAircraft": "AT7", + "nameAircraft": "Aerospatiale/Alenia ATR 72", + "planeTypeId": 134 + }, + { + "codeIataAircraft": "ATP", + "nameAircraft": "British Aerospace ATP", + "planeTypeId": 135 + }, + { + "codeIataAircraft": "ATR", + "nameAircraft": "Aerospatiale/Alenia ATR", + "planeTypeId": 136 + }, + { + "codeIataAircraft": "AX1", + "nameAircraft": "Avro RJX100", + "planeTypeId": 137 + }, + { + "codeIataAircraft": "AX8", + "nameAircraft": "Avro RJX85", + "planeTypeId": 138 + }, + { + "codeIataAircraft": "B11", + "nameAircraft": "British Aerospace BAC One Eleven", + "planeTypeId": 139 + }, + { + "codeIataAircraft": "B12", + "nameAircraft": "British Aerospace BAC One Eleven 200", + "planeTypeId": 140 + }, + { + "codeIataAircraft": "B13", + "nameAircraft": "British Aerospace BAC One Eleven 300", + "planeTypeId": 141 + }, + { + "codeIataAircraft": "B14", + "nameAircraft": "British Aerospace BAC One Eleven 400", + "planeTypeId": 142 + }, + { + "codeIataAircraft": "B15", + "nameAircraft": "British Aerospace BAC One Eleven 500", + "planeTypeId": 143 + }, + { + "codeIataAircraft": "B72", + "nameAircraft": "Boeing 720B", + "planeTypeId": 144 + }, + { + "codeIataAircraft": "BE1", + "nameAircraft": "Beechcraft Beech 1900", + "planeTypeId": 145 + }, + { + "codeIataAircraft": "BE2", + "nameAircraft": "Beechcraft twin piston", + "planeTypeId": 146 + }, + { + "codeIataAircraft": "BE9", + "nameAircraft": "Beechcraft Airliner 99", + "planeTypeId": 147 + }, + { + "codeIataAircraft": "BEC", + "nameAircraft": "Beechcraft Light Aircraft", + "planeTypeId": 148 + }, + { + "codeIataAircraft": "BEH", + "nameAircraft": "Beechcraft Beech 1900D", + "planeTypeId": 149 + }, + { + "codeIataAircraft": "BES", + "nameAircraft": "Beechcraft Beech 1900C", + "planeTypeId": 150 + }, + { + "codeIataAircraft": "BET", + "nameAircraft": "Beechcraft Light Aircraft Twin Prop", + "planeTypeId": 151 + }, + { + "codeIataAircraft": "BH2", + "nameAircraft": "Bell Helicopters", + "planeTypeId": 152 + }, + { + "codeIataAircraft": "BNI", + "nameAircraft": "Pilatus Britten-Norman BN-2A/B", + "planeTypeId": 153 + }, + { + "codeIataAircraft": "BNT", + "nameAircraft": "Pilatus Britten-Norman BN-2A Trislander", + "planeTypeId": 154 + }, + { + "codeIataAircraft": "BUS", + "nameAircraft": "Non Aircraft - Bus", + "planeTypeId": 155 + }, + { + "codeIataAircraft": "CCJ", + "nameAircraft": "Canadair Challenger", + "planeTypeId": 156 + }, + { + "codeIataAircraft": "CD2", + "nameAircraft": "Government Aircraft Factories N22B/N24A Nomad", + "planeTypeId": 157 + }, + { + "codeIataAircraft": "CN1", + "nameAircraft": "Cessna light aircraft - single piston engine", + "planeTypeId": 158 + }, + { + "codeIataAircraft": "CNA", + "nameAircraft": "Cessna Light Aircraft", + "planeTypeId": 159 + }, + { + "codeIataAircraft": "CNC", + "nameAircraft": "Cessna light aircraft - single turboprop engine", + "planeTypeId": 160 + }, + { + "codeIataAircraft": "CNJ", + "nameAircraft": "Cessna Citation", + "planeTypeId": 161 + }, + { + "codeIataAircraft": "CNT", + "nameAircraft": "Cessna light aircraft - twin turboprop engines", + "planeTypeId": 162 + }, + { + "codeIataAircraft": "CR1", + "nameAircraft": "Canadair Regional Jet 100", + "planeTypeId": 163 + }, + { + "codeIataAircraft": "CR2", + "nameAircraft": "Canadair Regional Jet 200", + "planeTypeId": 164 + }, + { + "codeIataAircraft": "CR7", + "nameAircraft": "Canadair Regional Jet 700", + "planeTypeId": 165 + }, + { + "codeIataAircraft": "CR9", + "nameAircraft": "Canadair Regional Jet 900", + "planeTypeId": 166 + }, + { + "codeIataAircraft": "CRA", + "nameAircraft": "Canadair Regional Jet 705", + "planeTypeId": 167 + }, + { + "codeIataAircraft": "CRJ", + "nameAircraft": "Canadair Regional Jet", + "planeTypeId": 168 + }, + { + "codeIataAircraft": "CRV", + "nameAircraft": "Aerospatiale/SUD SE210 Caravelle", + "planeTypeId": 169 + }, + { + "codeIataAircraft": "CS2", + "nameAircraft": "CASA/IPTN CN-212 Aviocar", + "planeTypeId": 170 + }, + { + "codeIataAircraft": "CS5", + "nameAircraft": "CASA/IPTN CN-235", + "planeTypeId": 171 + }, + { + "codeIataAircraft": "CV5", + "nameAircraft": "Convair 580", + "planeTypeId": 172 + }, + { + "codeIataAircraft": "CVF", + "nameAircraft": "Convair 580/600/640 Freighter", + "planeTypeId": 173 + }, + { + "codeIataAircraft": "CVR", + "nameAircraft": "Convair 240/440/580", + "planeTypeId": 174 + }, + { + "codeIataAircraft": "CWC", + "nameAircraft": "Curtiss C-46 Commando", + "planeTypeId": 175 + }, + { + "codeIataAircraft": "D10", + "nameAircraft": "Boeing/McDonnell Douglas DC-10", + "planeTypeId": 176 + }, + { + "codeIataAircraft": "D11", + "nameAircraft": "Boeing/McDonnell Douglas DC-10-10/15", + "planeTypeId": 177 + }, + { + "codeIataAircraft": "D1C", + "nameAircraft": "Boeing/McDonnell Douglas DC-10-30/40", + "planeTypeId": 178 + }, + { + "codeIataAircraft": "D1F", + "nameAircraft": "Boeing/McDonnell Douglas DC-10 Freighter", + "planeTypeId": 179 + }, + { + "codeIataAircraft": "D1X", + "nameAircraft": "Boeing/McDonnell Douglas DC-10-10 Freighter", + "planeTypeId": 180 + }, + { + "codeIataAircraft": "D1Y", + "nameAircraft": "Boeing/McDonnell Douglas DC-10-30/40 Freighter", + "planeTypeId": 181 + }, + { + "codeIataAircraft": "D28", + "nameAircraft": "Fairchild Dornier Do-228", + "planeTypeId": 182 + }, + { + "codeIataAircraft": "D38", + "nameAircraft": "Fairchild Dornier Do-328", + "planeTypeId": 183 + }, + { + "codeIataAircraft": "D3F", + "nameAircraft": "Boeing/Douglas DC-3 Freighter", + "planeTypeId": 184 + }, + { + "codeIataAircraft": "D6F", + "nameAircraft": "Boeing/Douglas DC-6A/B/C Freighter", + "planeTypeId": 185 + }, + { + "codeIataAircraft": "D8F", + "nameAircraft": "Boeing/McDonnell Douglas DC-8 Freighter", + "planeTypeId": 186 + }, + { + "codeIataAircraft": "D8L", + "nameAircraft": "Boeing/McDonnell Douglas DC-8-62", + "planeTypeId": 187 + }, + { + "codeIataAircraft": "D8M", + "nameAircraft": "Boeing/McDonnell Douglas DC-8 Combi", + "planeTypeId": 188 + }, + { + "codeIataAircraft": "D8Q", + "nameAircraft": "Boeing/McDonnell Douglas DC-8-72", + "planeTypeId": 189 + }, + { + "codeIataAircraft": "D8T", + "nameAircraft": "Boeing/McDonnell Douglas DC-8-50 Freighter", + "planeTypeId": 190 + }, + { + "codeIataAircraft": "D8X", + "nameAircraft": "Boeing/McDonnell Douglas DC-8-61/62/63 Freighter", + "planeTypeId": 191 + }, + { + "codeIataAircraft": "D8Y", + "nameAircraft": "Boeing/McDonnell Douglas DC-8-71/72/73 Freighter", + "planeTypeId": 192 + }, + { + "codeIataAircraft": "D91", + "nameAircraft": "Boeing/McDonnell Douglas DC-9-10", + "planeTypeId": 193 + }, + { + "codeIataAircraft": "D92", + "nameAircraft": "Boeing/McDonnell Douglas DC-9-20", + "planeTypeId": 194 + }, + { + "codeIataAircraft": "D93", + "nameAircraft": "Boeing/McDonnell Douglas DC-9-30", + "planeTypeId": 195 + }, + { + "codeIataAircraft": "D94", + "nameAircraft": "Boeing/McDonnell Douglas DC-9-40", + "planeTypeId": 196 + }, + { + "codeIataAircraft": "D95", + "nameAircraft": "Boeing/McDonnell Douglas DC-9-50", + "planeTypeId": 197 + }, + { + "codeIataAircraft": "D9C", + "nameAircraft": "Boeing/McDonnell Douglas DC-9-30 Freighter", + "planeTypeId": 198 + }, + { + "codeIataAircraft": "D9F", + "nameAircraft": "Boeing/McDonnell Douglas DC-9-40 Freighter", + "planeTypeId": 199 + }, + { + "codeIataAircraft": "D9S", + "nameAircraft": "Boeing/McDonnell Douglas DC-9-30/40/50", + "planeTypeId": 200 + }, + { + "codeIataAircraft": "D9X", + "nameAircraft": "Boeing/McDonnell Douglas DC-9-10 Freighter", + "planeTypeId": 201 + }, + { + "codeIataAircraft": "DC3", + "nameAircraft": "Boeing/Douglas DC-3", + "planeTypeId": 202 + }, + { + "codeIataAircraft": "DC6", + "nameAircraft": "Boeing/Douglas DC-6", + "planeTypeId": 203 + }, + { + "codeIataAircraft": "DC8", + "nameAircraft": "Boeing/McDonnell Douglas DC-8", + "planeTypeId": 204 + }, + { + "codeIataAircraft": "DC9", + "nameAircraft": "Boeing/McDonnell Douglas DC-9", + "planeTypeId": 205 + }, + { + "codeIataAircraft": "DCF", + "nameAircraft": "Boeing/McDonnell Douglas DC-9 Freighter", + "planeTypeId": 206 + }, + { + "codeIataAircraft": "DH1", + "nameAircraft": "De Havilland Canada DHC-8-100 Dash 8/8Q", + "planeTypeId": 207 + }, + { + "codeIataAircraft": "DH2", + "nameAircraft": "De Havilland Canada DHC-8-200 Dash 8/8Q", + "planeTypeId": 208 + }, + { + "codeIataAircraft": "DH3", + "nameAircraft": "De Havilland Canada DHC-8-300 Dash 8/8Q", + "planeTypeId": 209 + }, + { + "codeIataAircraft": "DH4", + "nameAircraft": "De Havilland Canada DHC-8-400 Dash 8/8Q", + "planeTypeId": 210 + }, + { + "codeIataAircraft": "DH7", + "nameAircraft": "De Havilland Canada DHC-7 Dash 7", + "planeTypeId": 211 + }, + { + "codeIataAircraft": "DH8", + "nameAircraft": "De Havilland Canada DHC-8 Dash 8 All S.", + "planeTypeId": 212 + }, + { + "codeIataAircraft": "DHC", + "nameAircraft": "De Havilland Canada DHC-4 Caribou", + "planeTypeId": 213 + }, + { + "codeIataAircraft": "DHL", + "nameAircraft": "De Havilland Canada DHC-3 Turbo Otter", + "planeTypeId": 214 + }, + { + "codeIataAircraft": "DHP", + "nameAircraft": "De Havilland Canada DHC-2 Beaver", + "planeTypeId": 215 + }, + { + "codeIataAircraft": "DHS", + "nameAircraft": "De Havilland Canada DHC-3 Otter", + "planeTypeId": 216 + }, + { + "codeIataAircraft": "DHT", + "nameAircraft": "De Havilland Canada DHC-6 Twin Otter", + "planeTypeId": 217 + }, + { + "codeIataAircraft": "E70", + "nameAircraft": "Embraer ERJ-170", + "planeTypeId": 218 + }, + { + "codeIataAircraft": "E75", + "nameAircraft": "Embraer ERJ-175", + "planeTypeId": 219 + }, + { + "codeIataAircraft": "E90", + "nameAircraft": "Embraer ERJ-190", + "planeTypeId": 220 + }, + { + "codeIataAircraft": "E95", + "nameAircraft": "Embraer ERJ-195", + "planeTypeId": 221 + }, + { + "codeIataAircraft": "EM2", + "nameAircraft": "Embraer EMB-120 Brasilia", + "planeTypeId": 222 + }, + { + "codeIataAircraft": "EM9", + "nameAircraft": "Embraer E190", + "planeTypeId": 223 + }, + { + "codeIataAircraft": "EMB", + "nameAircraft": "Embraer EMB-110 Bandeirante", + "planeTypeId": 224 + }, + { + "codeIataAircraft": "EMJ", + "nameAircraft": "Embraer ERJ-170/190", + "planeTypeId": 225 + }, + { + "codeIataAircraft": "ER3", + "nameAircraft": "Embraer ERJ-135 Regional Jet", + "planeTypeId": 226 + }, + { + "codeIataAircraft": "ER4", + "nameAircraft": "Embraer ERJ-145 Regional Jet", + "planeTypeId": 227 + }, + { + "codeIataAircraft": "ERD", + "nameAircraft": "Embraer ERJ-140 Regional Jet", + "planeTypeId": 228 + }, + { + "codeIataAircraft": "ERJ", + "nameAircraft": "Embraer ERJ-135/140/145 Regional Jet", + "planeTypeId": 229 + }, + { + "codeIataAircraft": "F21", + "nameAircraft": "Fokker F28 Fellowship 1000", + "planeTypeId": 230 + }, + { + "codeIataAircraft": "F22", + "nameAircraft": "Fokker F28 Fellowship 2000", + "planeTypeId": 231 + }, + { + "codeIataAircraft": "F23", + "nameAircraft": "Fokker F28 Fellowship 3000", + "planeTypeId": 232 + }, + { + "codeIataAircraft": "F24", + "nameAircraft": "Fokker F28 Fellowship 4000", + "planeTypeId": 233 + }, + { + "codeIataAircraft": "F27", + "nameAircraft": "Fokker F27 Friendship/Fairchild F27", + "planeTypeId": 234 + }, + { + "codeIataAircraft": "F28", + "nameAircraft": "Fokker F28 Fellowship", + "planeTypeId": 235 + }, + { + "codeIataAircraft": "F50", + "nameAircraft": "Fokker 50", + "planeTypeId": 236 + }, + { + "codeIataAircraft": "F70", + "nameAircraft": "Fokker 70", + "planeTypeId": 237 + }, + { + "codeIataAircraft": "FA7", + "nameAircraft": "Fairchild Dornier 728JET", + "planeTypeId": 238 + }, + { + "codeIataAircraft": "FK7", + "nameAircraft": "Fairchild FH227", + "planeTypeId": 239 + }, + { + "codeIataAircraft": "FRJ", + "nameAircraft": "Fairchild Dornier 328JET", + "planeTypeId": 240 + }, + { + "codeIataAircraft": "GRG", + "nameAircraft": "Grumman G-21 Goose", + "planeTypeId": 241 + }, + { + "codeIataAircraft": "GRM", + "nameAircraft": "Grumman G-73 Turbo Mallard", + "planeTypeId": 242 + }, + { + "codeIataAircraft": "HEC", + "nameAircraft": "Helio H-250 Courier/H-295/395 Super Courier", + "planeTypeId": 243 + }, + { + "codeIataAircraft": "HS7", + "nameAircraft": "British Aerospace/Hawker Siddeley HS748", + "planeTypeId": 244 + }, + { + "codeIataAircraft": "I14", + "nameAircraft": "Ilyushin IL-114", + "planeTypeId": 245 + }, + { + "codeIataAircraft": "I93", + "nameAircraft": "Ilyushin IL-96-300", + "planeTypeId": 246 + }, + { + "codeIataAircraft": "I9F", + "nameAircraft": "Ilyushin IL-96 Freighter", + "planeTypeId": 247 + }, + { + "codeIataAircraft": "I9M", + "nameAircraft": "Ilyushin IL-96M", + "planeTypeId": 248 + }, + { + "codeIataAircraft": "I9Y", + "nameAircraft": "Ilyushin IL-96T", + "planeTypeId": 249 + }, + { + "codeIataAircraft": "IL6", + "nameAircraft": "Ilyushin IL-62", + "planeTypeId": 250 + }, + { + "codeIataAircraft": "IL7", + "nameAircraft": "Ilyushin IL-76", + "planeTypeId": 251 + }, + { + "codeIataAircraft": "IL8", + "nameAircraft": "Ilyushin IL-18", + "planeTypeId": 252 + }, + { + "codeIataAircraft": "IL9", + "nameAircraft": "Ilyushin IL-96", + "planeTypeId": 253 + }, + { + "codeIataAircraft": "ILW", + "nameAircraft": "Ilyushin IL-86", + "planeTypeId": 254 + }, + { + "codeIataAircraft": "J31", + "nameAircraft": "British Aerospace Jetstream 31", + "planeTypeId": 255 + }, + { + "codeIataAircraft": "J32", + "nameAircraft": "British Aerospace Jetstream 32", + "planeTypeId": 256 + }, + { + "codeIataAircraft": "J41", + "nameAircraft": "British Aerospace Jetstream 41", + "planeTypeId": 257 + }, + { + "codeIataAircraft": "JST", + "nameAircraft": "British Aerospace Jetstream 31/32/41", + "planeTypeId": 258 + }, + { + "codeIataAircraft": "JU5", + "nameAircraft": "Junkers Ju52", + "planeTypeId": 259 + }, + { + "codeIataAircraft": "L10", + "nameAircraft": "Lockheed L-1011 Tristar", + "planeTypeId": 260 + }, + { + "codeIataAircraft": "L11", + "nameAircraft": "Lockheed L-1011-1/50/100/150/200/250", + "planeTypeId": 261 + }, + { + "codeIataAircraft": "L15", + "nameAircraft": "Lockheed L-1011-500 Tristar", + "planeTypeId": 262 + }, + { + "codeIataAircraft": "L1F", + "nameAircraft": "Lockheed L-1011 Tristar Freighter", + "planeTypeId": 263 + }, + { + "codeIataAircraft": "L4T", + "nameAircraft": "Let 410 Turbolet", + "planeTypeId": 264 + }, + { + "codeIataAircraft": "LCH", + "nameAircraft": "Non Aircraft - Launch/Boat", + "planeTypeId": 265 + }, + { + "codeIataAircraft": "LMO", + "nameAircraft": "Non Aircraft - Limousine", + "planeTypeId": 266 + }, + { + "codeIataAircraft": "LOE", + "nameAircraft": "Lockheed L-188 Electra", + "planeTypeId": 267 + }, + { + "codeIataAircraft": "LOH", + "nameAircraft": "Lockheed L-100 Hercules", + "planeTypeId": 268 + }, + { + "codeIataAircraft": "LRJ", + "nameAircraft": "Learjet", + "planeTypeId": 269 + }, + { + "codeIataAircraft": "M11", + "nameAircraft": "Boeing/McDonnell Douglas MD-11", + "planeTypeId": 270 + }, + { + "codeIataAircraft": "M1F", + "nameAircraft": "Boeing/McDonnell Douglas MD-11 Freighter", + "planeTypeId": 271 + }, + { + "codeIataAircraft": "M1M", + "nameAircraft": "Boeing/McDonnell Douglas MD-11 Combi", + "planeTypeId": 272 + }, + { + "codeIataAircraft": "M80", + "nameAircraft": "Boeing/McDonnell Douglas MD-80", + "planeTypeId": 273 + }, + { + "codeIataAircraft": "M81", + "nameAircraft": "Boeing/McDonnell Douglas MD-81", + "planeTypeId": 274 + }, + { + "codeIataAircraft": "M82", + "nameAircraft": "Boeing/McDonnell Douglas MD-82", + "planeTypeId": 275 + }, + { + "codeIataAircraft": "M83", + "nameAircraft": "Boeing/McDonnell Douglas MD-83", + "planeTypeId": 276 + }, + { + "codeIataAircraft": "M87", + "nameAircraft": "Boeing/McDonnell Douglas MD-87", + "planeTypeId": 277 + }, + { + "codeIataAircraft": "M88", + "nameAircraft": "Boeing/McDonnell Douglas MD-88", + "planeTypeId": 278 + }, + { + "codeIataAircraft": "M90", + "nameAircraft": "Boeing/McDonnell Douglas MD-90", + "planeTypeId": 279 + }, + { + "codeIataAircraft": "MIH", + "nameAircraft": "Mil", + "planeTypeId": 280 + }, + { + "codeIataAircraft": "MU2", + "nameAircraft": "Mitsubishi MU-2", + "planeTypeId": 281 + }, + { + "codeIataAircraft": "ND2", + "nameAircraft": "Aerospatiale/Nord 262", + "planeTypeId": 282 + }, + { + "codeIataAircraft": "NDC", + "nameAircraft": "Aerospatiale SN601 Corvette", + "planeTypeId": 283 + }, + { + "codeIataAircraft": "NDE", + "nameAircraft": "Aerospatiale/Eurocopter Ecureuil AS350/AS355", + "planeTypeId": 284 + }, + { + "codeIataAircraft": "PA1", + "nameAircraft": "Piper light aircraft - single piston engine", + "planeTypeId": 285 + }, + { + "codeIataAircraft": "PA2", + "nameAircraft": "Piper light aircraft - twin piston engines", + "planeTypeId": 286 + }, + { + "codeIataAircraft": "PAG", + "nameAircraft": "Piper Light Aircraft", + "planeTypeId": 287 + }, + { + "codeIataAircraft": "PL2", + "nameAircraft": "Pilatus PC-12", + "planeTypeId": 288 + }, + { + "codeIataAircraft": "PN6", + "nameAircraft": "Partenavia P68", + "planeTypeId": 289 + }, + { + "codeIataAircraft": "S20", + "nameAircraft": "Saab 2000", + "planeTypeId": 290 + }, + { + "codeIataAircraft": "S58", + "nameAircraft": "Sikorsky S-58T", + "planeTypeId": 291 + }, + { + "codeIataAircraft": "S61", + "nameAircraft": "Sikorsky S-61", + "planeTypeId": 292 + }, + { + "codeIataAircraft": "S76", + "nameAircraft": "Sikorsky S-76", + "planeTypeId": 293 + }, + { + "codeIataAircraft": "SF3", + "nameAircraft": "Saab SF-340", + "planeTypeId": 294 + }, + { + "codeIataAircraft": "SFB", + "nameAircraft": "Saab SF-340B", + "planeTypeId": 295 + }, + { + "codeIataAircraft": "SH3", + "nameAircraft": "Shorts SD-330", + "planeTypeId": 296 + }, + { + "codeIataAircraft": "SH6", + "nameAircraft": "Shorts SD-360", + "planeTypeId": 297 + }, + { + "codeIataAircraft": "SSC", + "nameAircraft": "Aerospatiale/British Aerospace Concorde (discontinued)", + "planeTypeId": 298 + }, + { + "codeIataAircraft": "SWM", + "nameAircraft": "Fairchild Metro/Merlin", + "planeTypeId": 299 + }, + { + "codeIataAircraft": "T20", + "nameAircraft": "Tupolev Tu-204/214", + "planeTypeId": 300 + }, + { + "codeIataAircraft": "TRN", + "nameAircraft": "Non Aircraft - Train", + "planeTypeId": 301 + }, + { + "codeIataAircraft": "TU3", + "nameAircraft": "Tupolev Tu-134", + "planeTypeId": 302 + }, + { + "codeIataAircraft": "TU5", + "nameAircraft": "Tupolev Tu-154", + "planeTypeId": 303 + }, + { + "codeIataAircraft": "VCV", + "nameAircraft": "Vickers Viscount", + "planeTypeId": 304 + }, + { + "codeIataAircraft": "WWP", + "nameAircraft": "Israel Aircraft Industries 1124 Westwind", + "planeTypeId": 305 + }, + { + "codeIataAircraft": "YK2", + "nameAircraft": "Yakovlev Yak-42", + "planeTypeId": 306 + }, + { + "codeIataAircraft": "YK4", + "nameAircraft": "Yakovlev Yak-40", + "planeTypeId": 307 + }, + { + "codeIataAircraft": "YN2", + "nameAircraft": "Yunshuji Y-12/Xian Y-12", + "planeTypeId": 308 + }, + { + "codeIataAircraft": "YN7", + "nameAircraft": "Yunshuji Y-7/Harbin Y-7", + "planeTypeId": 309 + }, + { + "codeIataAircraft": "YS1", + "nameAircraft": "NAMC YS-11", + "planeTypeId": 310 + }, + { + "codeIataAircraft": "350", + "nameAircraft": "Airbus A350-100", + "planeTypeId": 311 + }, + { + "codeIataAircraft": "330", + "nameAircraft": "Airbus A330-200", + "planeTypeId": 312 + }, + { + "codeIataAircraft": "787", + "nameAircraft": "Boeing B787-900", + "planeTypeId": 313 + } +] \ No newline at end of file diff --git a/apps/api/data/routes.json b/apps/api/data/routes.json new file mode 100644 index 0000000..927aedc --- /dev/null +++ b/apps/api/data/routes.json @@ -0,0 +1,5417 @@ +[ + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "10:45:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "09:15:00", + "flightNumber": "101", + "regNumber": [ + "YR-BAP" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "FCO", + "arrivalIcao": "LIRF", + "arrivalTerminal": "3", + "arrivalTime": "07:45:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "06:30:00", + "flightNumber": "1015", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "12:10:00", + "codeshares": null, + "departureIata": "FCO", + "departureIcao": "LIRF", + "departureTerminal": "2", + "departureTime": "08:55:00", + "flightNumber": "1016", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "14:50:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "11:30:00", + "flightNumber": "102", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "MAD", + "arrivalIcao": "LEMD", + "arrivalTerminal": "1", + "arrivalTime": "21:50:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "18:40:00", + "flightNumber": "103", + "regNumber": [ + "ES-SAK", + "YR-BAF", + "YR-BAP", + "EC-MFS", + "YR-BAJ", + "YR-BAO", + "YR-BAQ", + "YR-BAR", + "YR-BAS", + "YR-BAU", + "YR-BMB", + "YR-BMC", + "YR-BMD", + "YR-BME", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "02:45:00", + "codeshares": null, + "departureIata": "LCA", + "departureIcao": "LCLK", + "departureTerminal": null, + "departureTime": "00:25:00", + "flightNumber": "1038", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "00:40:00", + "codeshares": null, + "departureIata": "MAD", + "departureIcao": "LEMD", + "departureTerminal": "1", + "departureTime": "19:55:00", + "flightNumber": "104", + "regNumber": [ + "ES-SAK", + "YR-BAP", + "EC-MFS", + "YR-BAJ", + "YR-BAO", + "YR-BAR", + "YR-BAS", + "YR-BAU", + "YR-BMB", + "YR-BMC", + "YR-BMD", + "YR-BME", + "YR-BMF", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BVA", + "arrivalIcao": "LFOB", + "arrivalTerminal": "1", + "arrivalTime": "10:05:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:55:00", + "flightNumber": "105", + "regNumber": [ + "ES-SAK", + "YL-LCD", + "YL-LCN", + "YR-BAC", + "YR-BAE", + "YR-BAJ", + "YR-BAR", + "YR-BAS", + "YR-BAU", + "YR-AMA", + "YR-BMB", + "YR-BME", + "YR-BMF", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "14:30:00", + "codeshares": null, + "departureIata": "BVA", + "departureIcao": "LFOB", + "departureTerminal": "1", + "departureTime": "10:40:00", + "flightNumber": "106", + "regNumber": [ + "ES-SAK", + "YL-LCD", + "YL-LCN", + "YR-BAC", + "YR-BAP", + "YR-BAE", + "YR-BAJ", + "YR-BAO", + "YR-BAR", + "YR-BAS", + "YR-BAU", + "YR-AMA", + "YR-BMB", + "YR-BMD", + "YR-BMF" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BCN", + "arrivalIcao": "LEBL", + "arrivalTerminal": "2", + "arrivalTime": "10:15:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:55:00", + "flightNumber": "107", + "regNumber": [ + "ES-SAK", + "YL-LCK", + "YL-LCN", + "YR-BAC", + "YR-BAF", + "YR-BAP", + "EC-MFS", + "YR-BAJ", + "YR-BAK", + "YR-BAO", + "YR-BAR", + "YR-BAS", + "YR-BAU", + "YR-BMB", + "YR-BMD", + "YR-BME" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "15:20:00", + "codeshares": null, + "departureIata": "BCN", + "departureIcao": "LEBL", + "departureTerminal": "2", + "departureTime": "11:10:00", + "flightNumber": "108", + "regNumber": [ + "ES-SAK", + "YL-LCN", + "YR-BAC", + "EC-MFS", + "YR-BAE", + "YR-BAJ", + "YR-BAO", + "YR-BAS", + "YR-BAU", + "YR-BMB", + "YR-BMD", + "YR-BME", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LYS", + "arrivalIcao": "LFLL", + "arrivalTerminal": "T1", + "arrivalTime": "09:30:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:45:00", + "flightNumber": "109", + "regNumber": [ + "YR-BAP", + "YR-BMF" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "13:50:00", + "codeshares": null, + "departureIata": "LYS", + "departureIcao": "LFLL", + "departureTerminal": "T1", + "departureTime": "10:15:00", + "flightNumber": "110", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BGY", + "arrivalIcao": "LIME", + "arrivalTerminal": null, + "arrivalTime": "08:15:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:00:00", + "flightNumber": "111", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "FCO", + "arrivalIcao": "LIRF", + "arrivalTerminal": "3", + "arrivalTime": "12:55:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "11:40:00", + "flightNumber": "1115", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "13:15:00", + "codeshares": null, + "departureIata": "BGY", + "departureIcao": "LIME", + "departureTerminal": null, + "departureTime": "10:05:00", + "flightNumber": "112", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "VLC", + "arrivalIcao": "LEVC", + "arrivalTerminal": null, + "arrivalTime": "09:40:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:00:00", + "flightNumber": "113", + "regNumber": [ + "LZ-BOO", + "YR-BAF", + "YR-BAP", + "YR-BAE", + "YR-BAJ", + "YR-BAK", + "YR-BAQ", + "YR-BAR", + "YR-BAS", + "YR-BAZ", + "YR-BMB", + "YR-BMD", + "YR-BME", + "YR-BMF", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LCA", + "arrivalIcao": "LCLK", + "arrivalTerminal": null, + "arrivalTime": "02:45:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "00:30:00", + "flightNumber": "1137", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "06:15:00", + "codeshares": null, + "departureIata": "LCA", + "departureIcao": "LCLK", + "departureTerminal": null, + "departureTime": "04:00:00", + "flightNumber": "1138", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "00:20:00", + "codeshares": null, + "departureIata": "VLC", + "departureIcao": "LEVC", + "departureTerminal": "1", + "departureTime": "20:00:00", + "flightNumber": "114", + "regNumber": [ + "YR-BAF", + "YR-BAP", + "YR-BAE", + "YR-BAJ", + "YR-BAK", + "YR-BAO", + "YR-BAR", + "YR-BAS", + "YR-BME", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "FCO", + "arrivalIcao": "LIRF", + "arrivalTerminal": "3", + "arrivalTime": "09:20:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "08:05:00", + "flightNumber": "115", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "13:45:00", + "codeshares": null, + "departureIata": "FCO", + "departureIcao": "LIRF", + "departureTerminal": "2", + "departureTime": "10:30:00", + "flightNumber": "116", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TLV", + "arrivalIcao": "LLBG", + "arrivalTerminal": null, + "arrivalTime": "10:25:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:35:00", + "flightNumber": "1169", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BLQ", + "arrivalIcao": "LIPE", + "arrivalTerminal": null, + "arrivalTime": "14:15:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "13:00:00", + "flightNumber": "117", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "01:10:00", + "codeshares": null, + "departureIata": "TLV", + "departureIcao": "LLBG", + "departureTerminal": null, + "departureTime": "22:20:00", + "flightNumber": "1170", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "17:55:00", + "codeshares": null, + "departureIata": "BLQ", + "departureIcao": "LIPE", + "departureTerminal": null, + "departureTime": "14:55:00", + "flightNumber": "118", + "regNumber": [ + "YR-BAC" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "FLR", + "arrivalIcao": "LIRQ", + "arrivalTerminal": null, + "arrivalTime": "09:15:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "08:00:00", + "flightNumber": "119", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "21:55:00", + "codeshares": null, + "departureIata": "FLR", + "departureIcao": "LIRQ", + "departureTerminal": null, + "departureTime": "18:55:00", + "flightNumber": "120", + "regNumber": [ + "YR-AMA" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CGN", + "arrivalIcao": "EDDK", + "arrivalTerminal": "2", + "arrivalTime": "08:55:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:10:00", + "flightNumber": "121", + "regNumber": [ + "ES-SAK", + "YR-BAP", + "YR-AMA", + "YR-AMB" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "FCO", + "arrivalIcao": "LIRF", + "arrivalTerminal": "3", + "arrivalTime": "18:05:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "16:50:00", + "flightNumber": "1215", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "22:25:00", + "codeshares": null, + "departureIata": "FCO", + "departureIcao": "LIRF", + "departureTerminal": "2", + "departureTime": "19:10:00", + "flightNumber": "1216", + "regNumber": [ + "ES-SAK", + "YL-LCN", + "YR-BAP" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "13:15:00", + "codeshares": null, + "departureIata": "CGN", + "departureIcao": "EDDK", + "departureTerminal": "2", + "departureTime": "09:35:00", + "flightNumber": "122", + "regNumber": [ + "YR-BAQ" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BRU", + "arrivalIcao": "EBBR", + "arrivalTerminal": null, + "arrivalTime": "09:00:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:05:00", + "flightNumber": "123", + "regNumber": [ + "YR-BAP", + "EC-MFS", + "YR-BAE", + "YR-BAJ", + "YR-BAU", + "YR-BMF" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LTN", + "arrivalIcao": "EGGW", + "arrivalTerminal": null, + "arrivalTime": "17:15:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "15:50:00", + "flightNumber": "1231", + "regNumber": [ + "ES-SAK", + "YL-LCD", + "YL-LCN", + "YR-BAC", + "YR-BAF", + "YR-BAP", + "EC-MFS", + "YR-BAE", + "YR-BAJ", + "YR-BAR", + "YR-BAU", + "YR-BMB", + "YR-BMC", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "23:10:00", + "codeshares": null, + "departureIata": "LTN", + "departureIcao": "EGGW", + "departureTerminal": null, + "departureTime": "18:00:00", + "flightNumber": "1232", + "regNumber": [ + "ES-SAK", + "YL-LCD", + "YL-LCN", + "YR-BAP", + "YR-BAE", + "YR-BAJ", + "YR-BAR", + "YR-BMB", + "YR-BMC", + "YR-BME", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LPL", + "arrivalIcao": "EGGP", + "arrivalTerminal": null, + "arrivalTime": "08:40:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "06:55:00", + "flightNumber": "1233", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LCA", + "arrivalIcao": "LCLK", + "arrivalTerminal": null, + "arrivalTime": "10:30:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "08:15:00", + "flightNumber": "1237", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "06:15:00", + "codeshares": null, + "departureIata": "LCA", + "departureIcao": "LCLK", + "departureTerminal": null, + "departureTime": "04:00:00", + "flightNumber": "1238", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "13:25:00", + "codeshares": null, + "departureIata": "BRU", + "departureIcao": "EBBR", + "departureTerminal": null, + "departureTime": "09:40:00", + "flightNumber": "124", + "regNumber": [ + "YR-BAC", + "YR-BAP", + "EC-MFS", + "YR-BAJ", + "YR-BAO" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "AGP", + "arrivalIcao": "LEMG", + "arrivalTerminal": "2", + "arrivalTime": "10:10:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "06:50:00", + "flightNumber": "125", + "regNumber": [ + "ES-SAK", + "YR-TIB", + "YR-BAE", + "YR-BAJ", + "YR-BAK", + "YR-BAO", + "YR-BAR", + "YR-BAS", + "YR-BAU", + "YR-BMB", + "YR-BMC", + "YR-BMD", + "YR-BME", + "YR-BMF", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "16:00:00", + "codeshares": null, + "departureIata": "AGP", + "departureIcao": "LEMG", + "departureTerminal": "2", + "departureTime": "11:10:00", + "flightNumber": "126", + "regNumber": [ + "ES-SAK", + "YR-TIB", + "YR-BAE", + "YR-BAJ", + "YR-BAK", + "YR-BAO", + "YR-BAR", + "YR-BAS", + "YR-BAU", + "YR-BMB", + "YR-BMC", + "YR-BMD", + "YR-BME", + "YR-BMF", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CDT", + "arrivalIcao": "LECH", + "arrivalTerminal": null, + "arrivalTime": "09:40:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:00:00", + "flightNumber": "127", + "regNumber": [ + "LZ-BOO", + "YR-BAP", + "YR-TIB", + "YR-BAE", + "YR-BAJ", + "YR-BAQ", + "YR-BME", + "YR-BMF", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "14:50:00", + "codeshares": null, + "departureIata": "CDT", + "departureIcao": "LECH", + "departureTerminal": null, + "departureTime": "10:30:00", + "flightNumber": "128", + "regNumber": [ + "YR-BAP", + "YR-TIB", + "YR-BAE", + "YR-BAJ", + "YR-BME", + "YR-BMF" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "STR", + "arrivalIcao": "EDDS", + "arrivalTerminal": "3", + "arrivalTime": "08:30:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:05:00", + "flightNumber": "129", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "17:25:00", + "codeshares": null, + "departureIata": "STR", + "departureIcao": "EDDS", + "departureTerminal": "3", + "departureTime": "14:10:00", + "flightNumber": "130", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LTN", + "arrivalIcao": "EGGW", + "arrivalTerminal": null, + "arrivalTime": "09:50:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "08:25:00", + "flightNumber": "131", + "regNumber": [ + "ES-SAK", + "YL-LCK", + "YL-LCN", + "YR-BAC", + "YR-BAF", + "YR-BAP", + "YR-BAE", + "YR-BAK", + "YR-BAO", + "YR-BAQ", + "YR-BAR", + "YR-BAS", + "YR-BAU", + "YR-BAG", + "YR-BMB", + "YR-BMC", + "YR-BME", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "15:45:00", + "codeshares": null, + "departureIata": "LTN", + "departureIcao": "EGGW", + "departureTerminal": null, + "departureTime": "10:35:00", + "flightNumber": "132", + "regNumber": [ + "ES-SAK", + "YL-LCK", + "YL-LCN", + "YR-BAC", + "YR-BAF", + "YR-BAP", + "YR-TIB", + "YR-BAE", + "YR-BAJ", + "YR-BAK", + "YR-BAR", + "YR-BAS", + "YR-BAU", + "YR-BAG", + "YR-BMB", + "YR-BMC", + "YR-BME", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LPL", + "arrivalIcao": "EGGP", + "arrivalTerminal": null, + "arrivalTime": "08:40:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "06:55:00", + "flightNumber": "133", + "regNumber": [ + "ES-SAK", + "YL-LCD", + "YL-LCK", + "YL-LCN", + "YR-BAF", + "YR-BAP", + "YR-BAE", + "YR-BAK", + "YR-BAR", + "YR-BAU", + "YR-BMB", + "YR-BMC", + "YR-BMD", + "YR-BME", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "14:55:00", + "codeshares": null, + "departureIata": "LPL", + "departureIcao": "EGGP", + "departureTerminal": null, + "departureTime": "09:25:00", + "flightNumber": "134", + "regNumber": [ + "ES-SAK", + "YL-LCD", + "YL-LCK", + "YL-LCN", + "YR-BAF", + "YR-BAP", + "YR-BAE", + "YR-BAK", + "YR-BAQ", + "YR-BAR", + "YR-BAU", + "YR-BMB", + "YR-BMC", + "YR-BMD", + "YR-BME", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LCA", + "arrivalIcao": "LCLK", + "arrivalTerminal": null, + "arrivalTime": "20:55:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "18:40:00", + "flightNumber": "137", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "23:50:00", + "codeshares": null, + "departureIata": "LCA", + "departureIcao": "LCLK", + "departureTerminal": null, + "departureTime": "21:30:00", + "flightNumber": "138", + "regNumber": [ + "YR-BAP" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "HAM", + "arrivalIcao": "EDDH", + "arrivalTerminal": "1", + "arrivalTime": "09:15:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:30:00", + "flightNumber": "139", + "regNumber": [ + "YL-LCN", + "YR-BME" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "13:40:00", + "codeshares": null, + "departureIata": "HAM", + "departureIcao": "EDDH", + "departureTerminal": "1", + "departureTime": "10:00:00", + "flightNumber": "140", + "regNumber": [ + "YL-LCN" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "GLA", + "arrivalIcao": "EGPF", + "arrivalTerminal": "2", + "arrivalTime": "09:25:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:25:00", + "flightNumber": "141", + "regNumber": [ + "ES-SAK", + "YR-BAC", + "YR-BAF", + "YR-BAP", + "EC-MFS", + "YR-BAE", + "YR-BAJ", + "YR-BAQ", + "YR-BAS", + "YR-BAU", + "YR-BMD", + "YR-BME", + "YR-BMF", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "15:45:00", + "codeshares": null, + "departureIata": "GLA", + "departureIcao": "EGPF", + "departureTerminal": "2", + "departureTime": "10:10:00", + "flightNumber": "142", + "regNumber": [ + "ES-SAK", + "YR-BAC", + "YR-BAF", + "YR-BAP", + "EC-MFS", + "YR-BAE", + "YR-BAJ", + "YR-BAQ", + "YR-BAS", + "YR-BAU", + "YR-BMD", + "YR-BME", + "YR-BMF", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "NAP", + "arrivalIcao": "LIRN", + "arrivalTerminal": null, + "arrivalTime": "09:25:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "08:20:00", + "flightNumber": "143", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "13:05:00", + "codeshares": null, + "departureIata": "NAP", + "departureIcao": "LIRN", + "departureTerminal": null, + "departureTime": "10:10:00", + "flightNumber": "144", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CTA", + "arrivalIcao": "LICC", + "arrivalTerminal": null, + "arrivalTime": "08:15:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:00:00", + "flightNumber": "145", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "12:05:00", + "codeshares": null, + "departureIata": "CTA", + "departureIcao": "LICC", + "departureTerminal": null, + "departureTime": "09:00:00", + "flightNumber": "146", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "ARN", + "arrivalIcao": "ESSA", + "arrivalTerminal": "5", + "arrivalTime": "09:10:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:15:00", + "flightNumber": "147", + "regNumber": [ + "YR-BAP" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "13:40:00", + "codeshares": null, + "departureIata": "ARN", + "departureIcao": "ESSA", + "departureTerminal": "5", + "departureTime": "09:55:00", + "flightNumber": "148", + "regNumber": [ + "YR-BAP" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "NCE", + "arrivalIcao": "LFMN", + "arrivalTerminal": "1", + "arrivalTime": "20:00:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "18:15:00", + "flightNumber": "149", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "00:10:00", + "codeshares": null, + "departureIata": "NCE", + "departureIcao": "LFMN", + "departureTerminal": "1", + "departureTime": "20:45:00", + "flightNumber": "150", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BHX", + "arrivalIcao": "EGBB", + "arrivalTerminal": null, + "arrivalTime": "09:15:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:45:00", + "flightNumber": "151", + "regNumber": [ + "ES-SAK", + "YR-BAC", + "YR-BAP", + "YR-BAE", + "YR-BAJ", + "YR-BAK", + "YR-BAR", + "YR-BAS", + "YR-BAU", + "YR-BMB", + "YR-BMD", + "YR-BME", + "YR-BMF" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "15:20:00", + "codeshares": null, + "departureIata": "BHX", + "departureIcao": "EGBB", + "departureTerminal": null, + "departureTime": "10:00:00", + "flightNumber": "152", + "regNumber": [ + "ES-SAK", + "YR-BAC", + "YR-BAP", + "YR-BAE", + "YR-BAJ", + "YR-BAK", + "YR-BAR", + "YR-BAS", + "YR-BAU", + "YR-BMB", + "YR-BMD", + "YR-BME" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CPH", + "arrivalIcao": "EKCH", + "arrivalTerminal": null, + "arrivalTime": "09:15:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:30:00", + "flightNumber": "153", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "13:45:00", + "codeshares": null, + "departureIata": "CPH", + "departureIcao": "EKCH", + "departureTerminal": null, + "departureTime": "10:00:00", + "flightNumber": "154", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "DUB", + "arrivalIcao": "EIDW", + "arrivalTerminal": "1", + "arrivalTime": "09:15:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:15:00", + "flightNumber": "155", + "regNumber": [ + "ES-SAK", + "YL-LCN", + "YR-BAF", + "YR-BAP", + "EC-MFS", + "YR-BAE", + "YR-BAJ", + "YR-BAK", + "YR-BAQ", + "YR-BAS", + "YR-BAU", + "YR-BAZ", + "YR-BAG", + "YR-BMB", + "YR-BMD", + "YR-BMF", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "15:40:00", + "codeshares": null, + "departureIata": "DUB", + "departureIcao": "EIDW", + "departureTerminal": "1", + "departureTime": "10:00:00", + "flightNumber": "156", + "regNumber": [ + "ES-SAK", + "YL-LCN", + "YR-BAF", + "YR-BAP", + "EC-MFS", + "YR-BAE", + "YR-BAJ", + "YR-BAK", + "YR-BAQ", + "YR-BAS", + "YR-BAU", + "YR-BAZ", + "YR-BAG", + "YR-BMB", + "YR-BMD", + "YR-BMF", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LIS", + "arrivalIcao": "LPPT", + "arrivalTerminal": "1", + "arrivalTime": "09:55:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:15:00", + "flightNumber": "157", + "regNumber": [ + "YR-BMB", + "YR-BMC", + "YR-BME", + "YR-BMF", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "05:10:00", + "codeshares": null, + "departureIata": "LIS", + "departureIcao": "LPPT", + "departureTerminal": "2", + "departureTime": "23:00:00", + "flightNumber": "158", + "regNumber": [ + "YR-BMB", + "YR-BMC", + "YR-BME", + "YR-BMF", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LIN", + "arrivalIcao": "LIML", + "arrivalTerminal": null, + "arrivalTime": "15:20:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "14:05:00", + "flightNumber": "159", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "19:20:00", + "codeshares": null, + "departureIata": "LIN", + "departureIcao": "LIML", + "departureTerminal": null, + "departureTime": "16:05:00", + "flightNumber": "160", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BOD", + "arrivalIcao": "LFBD", + "arrivalTerminal": "A", + "arrivalTime": "09:30:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:00:00", + "flightNumber": "167", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "14:30:00", + "codeshares": null, + "departureIata": "BOD", + "departureIcao": "LFBD", + "departureTerminal": "A", + "departureTime": "10:15:00", + "flightNumber": "168", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TLV", + "arrivalIcao": "LLBG", + "arrivalTerminal": null, + "arrivalTime": "09:50:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:00:00", + "flightNumber": "169", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "01:10:00", + "codeshares": null, + "departureIata": "TLV", + "departureIcao": "LLBG", + "departureTerminal": null, + "departureTime": "22:20:00", + "flightNumber": "170", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LCA", + "arrivalIcao": "LCLK", + "arrivalTerminal": null, + "arrivalTime": "02:55:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "171" + } + ], + "departureIata": "WAW", + "departureIcao": "EPWA", + "departureTerminal": "A", + "departureTime": "22:30:00", + "flightNumber": "171", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "WAW", + "arrivalIcao": "EPWA", + "arrivalTerminal": null, + "arrivalTime": "06:15:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "172" + } + ], + "departureIata": "LCA", + "departureIcao": "LCLK", + "departureTerminal": null, + "departureTime": "03:40:00", + "flightNumber": "172", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "HEL", + "arrivalIcao": "EFHK", + "arrivalTerminal": "2", + "arrivalTime": "11:25:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "08:30:00", + "flightNumber": "181", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "02:00:00", + "codeshares": null, + "departureIata": "HEL", + "departureIcao": "EFHK", + "departureTerminal": "2", + "departureTime": "23:10:00", + "flightNumber": "182", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OSL", + "arrivalIcao": "ENGM", + "arrivalTerminal": null, + "arrivalTime": "00:10:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "21:55:00", + "flightNumber": "183", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "02:50:00", + "codeshares": null, + "departureIata": "OSL", + "departureIcao": "ENGM", + "departureTerminal": null, + "departureTime": "22:40:00", + "flightNumber": "184", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LTN", + "arrivalIcao": "EGGW", + "arrivalTerminal": null, + "arrivalTime": "00:05:00", + "codeshares": null, + "departureIata": "BCM", + "departureIcao": "LRBC", + "departureTerminal": null, + "departureTime": "22:40:00", + "flightNumber": "2031", + "regNumber": [ + "YR-BAJ", + "YR-BAQ", + "YR-BAS" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BCM", + "arrivalIcao": "LRBC", + "arrivalTerminal": null, + "arrivalTime": "06:05:00", + "codeshares": null, + "departureIata": "LTN", + "departureIcao": "EGGW", + "departureTerminal": null, + "departureTime": "00:55:00", + "flightNumber": "2032", + "regNumber": [ + "YR-BAJ" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BCM", + "arrivalIcao": "LRBC", + "arrivalTerminal": null, + "arrivalTime": "11:05:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "10:25:00", + "flightNumber": "2101", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LIN", + "arrivalIcao": "LIML", + "arrivalTerminal": null, + "arrivalTime": "11:15:00", + "codeshares": [ + { + "airline_code": "IG", + "flight_number": "220" + } + ], + "departureIata": "CTA", + "departureIcao": "LICC", + "departureTerminal": null, + "departureTime": "09:25:00", + "flightNumber": "220", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "VIE", + "arrivalIcao": "LOWW", + "arrivalTerminal": null, + "arrivalTime": "08:45:00", + "codeshares": [ + { + "airline_code": "LG", + "flight_number": "1226" + }, + { + "airline_code": "OU", + "flight_number": "5853" + }, + { + "airline_code": "TK", + "flight_number": "8156" + }, + { + "airline_code": "LO", + "flight_number": "223" + } + ], + "departureIata": "WAW", + "departureIcao": "EPWA", + "departureTerminal": "A", + "departureTime": "07:20:00", + "flightNumber": "223", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "WAW", + "arrivalIcao": "EPWA", + "arrivalTerminal": null, + "arrivalTime": "10:40:00", + "codeshares": [ + { + "airline_code": "JP", + "flight_number": "9504" + }, + { + "airline_code": "LG", + "flight_number": "1227" + }, + { + "airline_code": "LO", + "flight_number": "224" + } + ], + "departureIata": "VIE", + "departureIcao": "LOWW", + "departureTerminal": null, + "departureTime": "09:25:00", + "flightNumber": "224", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CTA", + "arrivalIcao": "LICC", + "arrivalTerminal": null, + "arrivalTime": "08:45:00", + "codeshares": [ + { + "airline_code": "IG", + "flight_number": "227" + } + ], + "departureIata": "LIN", + "departureIcao": "LIML", + "departureTerminal": null, + "departureTime": "07:00:00", + "flightNumber": "227", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BRU", + "arrivalIcao": "EBBR", + "arrivalTerminal": null, + "arrivalTime": "09:25:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "235" + } + ], + "departureIata": "WAW", + "departureIcao": "EPWA", + "departureTerminal": "A", + "departureTime": "07:15:00", + "flightNumber": "235", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "WAW", + "arrivalIcao": "EPWA", + "arrivalTerminal": null, + "arrivalTime": "12:10:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "236" + } + ], + "departureIata": "BRU", + "departureIcao": "EBBR", + "departureTerminal": null, + "departureTime": "10:10:00", + "flightNumber": "236", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "MUC", + "arrivalIcao": "EDDM", + "arrivalTerminal": "1", + "arrivalTime": "08:20:00", + "codeshares": [ + { + "airline_code": "AB", + "flight_number": "5701" + }, + { + "airline_code": "IG", + "flight_number": "261" + } + ], + "departureIata": "LIN", + "departureIcao": "LIML", + "departureTerminal": null, + "departureTime": "07:10:00", + "flightNumber": "261", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LIN", + "arrivalIcao": "LIML", + "arrivalTerminal": null, + "arrivalTime": "11:00:00", + "codeshares": [ + { + "airline_code": "AB", + "flight_number": "5700" + }, + { + "airline_code": "IG", + "flight_number": "262" + } + ], + "departureIata": "MUC", + "departureIcao": "EDDM", + "departureTerminal": "1", + "departureTime": "09:45:00", + "flightNumber": "262", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "AMS", + "arrivalIcao": "EHAM", + "arrivalTerminal": null, + "arrivalTime": "09:35:00", + "codeshares": [ + { + "airline_code": "SQ", + "flight_number": "2365" + }, + { + "airline_code": "LO", + "flight_number": "265" + } + ], + "departureIata": "WAW", + "departureIcao": "EPWA", + "departureTerminal": "A", + "departureTime": "07:25:00", + "flightNumber": "265", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "WAW", + "arrivalIcao": "EPWA", + "arrivalTerminal": null, + "arrivalTime": "12:15:00", + "codeshares": [ + { + "airline_code": "SQ", + "flight_number": "2366" + }, + { + "airline_code": "LO", + "flight_number": "266" + } + ], + "departureIata": "AMS", + "departureIcao": "EHAM", + "departureTerminal": null, + "departureTime": "10:20:00", + "flightNumber": "266", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "JTR", + "arrivalIcao": "LGSR", + "arrivalTerminal": null, + "arrivalTime": "09:40:00", + "codeshares": [ + { + "airline_code": "IG", + "flight_number": "275" + } + ], + "departureIata": "LIN", + "departureIcao": "LIML", + "departureTerminal": null, + "departureTime": "06:10:00", + "flightNumber": "275", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LIN", + "arrivalIcao": "LIML", + "arrivalTerminal": null, + "arrivalTime": "11:55:00", + "codeshares": [ + { + "airline_code": "IG", + "flight_number": "276" + } + ], + "departureIata": "JTR", + "departureIcao": "LGSR", + "departureTerminal": null, + "departureTime": "10:20:00", + "flightNumber": "276", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "IBZ", + "arrivalIcao": "LEIB", + "arrivalTerminal": "1", + "arrivalTime": "08:50:00", + "codeshares": [ + { + "airline_code": "IB", + "flight_number": "7751" + }, + { + "airline_code": "IG", + "flight_number": "279" + } + ], + "departureIata": "LIN", + "departureIcao": "LIML", + "departureTerminal": null, + "departureTime": "07:00:00", + "flightNumber": "279", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LIN", + "arrivalIcao": "LIML", + "arrivalTerminal": null, + "arrivalTime": "11:20:00", + "codeshares": [ + { + "airline_code": "IB", + "flight_number": "7750" + }, + { + "airline_code": "IG", + "flight_number": "280" + } + ], + "departureIata": "IBZ", + "departureIcao": "LEIB", + "departureTerminal": "1", + "departureTime": "09:30:00", + "flightNumber": "280", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "08:40:00", + "codeshares": null, + "departureIata": "BCM", + "departureIcao": "LRBC", + "departureTerminal": null, + "departureTime": "07:00:00", + "flightNumber": "2901", + "regNumber": [ + "YR-BAS" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BCM", + "arrivalIcao": "LRBC", + "arrivalTerminal": null, + "arrivalTime": "12:50:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "09:25:00", + "flightNumber": "2902", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "MAD", + "arrivalIcao": "LEMD", + "arrivalTerminal": "1", + "arrivalTime": "00:20:00", + "codeshares": null, + "departureIata": "BCM", + "departureIcao": "LRBC", + "departureTerminal": null, + "departureTime": "21:20:00", + "flightNumber": "2903", + "regNumber": [ + "LZ-BOO", + "YR-BAC", + "YR-BAF", + "YR-BAP", + "YR-BAO", + "YR-BAQ", + "YR-BAS", + "YR-BAG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BCM", + "arrivalIcao": "LRBC", + "arrivalTerminal": null, + "arrivalTime": "06:00:00", + "codeshares": null, + "departureIata": "MAD", + "departureIcao": "LEMD", + "departureTerminal": "1", + "departureTime": "01:10:00", + "flightNumber": "2904", + "regNumber": [ + "YR-BAC", + "YR-BAF", + "YR-BAP", + "YR-BAO", + "YR-BAS", + "YR-BAG", + "LZ-DEO" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BGY", + "arrivalIcao": "LIME", + "arrivalTerminal": null, + "arrivalTime": "08:30:00", + "codeshares": null, + "departureIata": "BCM", + "departureIcao": "LRBC", + "departureTerminal": null, + "departureTime": "07:10:00", + "flightNumber": "2911", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BCM", + "arrivalIcao": "LRBC", + "arrivalTerminal": null, + "arrivalTime": "12:45:00", + "codeshares": null, + "departureIata": "BGY", + "departureIcao": "LIME", + "departureTerminal": null, + "departureTime": "09:30:00", + "flightNumber": "2912", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "FCO", + "arrivalIcao": "LIRF", + "arrivalTerminal": "3", + "arrivalTime": "15:50:00", + "codeshares": null, + "departureIata": "BCM", + "departureIcao": "LRBC", + "departureTerminal": null, + "departureTime": "14:30:00", + "flightNumber": "2915", + "regNumber": [ + "YR-BAE" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BCM", + "arrivalIcao": "LRBC", + "arrivalTerminal": null, + "arrivalTime": "19:50:00", + "codeshares": null, + "departureIata": "FCO", + "departureIcao": "LIRF", + "departureTerminal": "2", + "departureTime": "16:35:00", + "flightNumber": "2916", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BLQ", + "arrivalIcao": "LIPE", + "arrivalTerminal": null, + "arrivalTime": "19:05:00", + "codeshares": null, + "departureIata": "BCM", + "departureIcao": "LRBC", + "departureTerminal": null, + "departureTime": "17:50:00", + "flightNumber": "2917", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BCM", + "arrivalIcao": "LRBC", + "arrivalTerminal": null, + "arrivalTime": "22:50:00", + "codeshares": null, + "departureIata": "BLQ", + "departureIcao": "LIPE", + "departureTerminal": null, + "departureTime": "19:45:00", + "flightNumber": "2918", + "regNumber": [ + "YR-BAP" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BRU", + "arrivalIcao": "EBBR", + "arrivalTerminal": null, + "arrivalTime": "18:30:00", + "codeshares": null, + "departureIata": "BCM", + "departureIcao": "LRBC", + "departureTerminal": null, + "departureTime": "16:40:00", + "flightNumber": "2923", + "regNumber": [ + "YR-BAS" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BCM", + "arrivalIcao": "LRBC", + "arrivalTerminal": null, + "arrivalTime": "22:55:00", + "codeshares": null, + "departureIata": "BRU", + "departureIcao": "EBBR", + "departureTerminal": null, + "departureTime": "19:15:00", + "flightNumber": "2924", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LTN", + "arrivalIcao": "EGGW", + "arrivalTerminal": null, + "arrivalTime": "09:55:00", + "codeshares": null, + "departureIata": "BCM", + "departureIcao": "LRBC", + "departureTerminal": null, + "departureTime": "08:30:00", + "flightNumber": "2931", + "regNumber": [ + "LZ-BOO", + "LZ-BOT", + "YR-BAF", + "YR-BAE", + "YR-BAJ", + "YR-BAO", + "YR-BAQ", + "YR-BAS", + "LZ-DEO" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BCM", + "arrivalIcao": "LRBC", + "arrivalTerminal": null, + "arrivalTime": "15:50:00", + "codeshares": null, + "departureIata": "LTN", + "departureIcao": "EGGW", + "departureTerminal": null, + "departureTime": "10:40:00", + "flightNumber": "2932", + "regNumber": [ + "LZ-BOT", + "YR-BAJ", + "YR-BAO", + "YR-BAQ", + "YR-BAS" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LPL", + "arrivalIcao": "EGGP", + "arrivalTerminal": null, + "arrivalTime": "22:55:00", + "codeshares": null, + "departureIata": "BCM", + "departureIcao": "LRBC", + "departureTerminal": null, + "departureTime": "21:10:00", + "flightNumber": "2933", + "regNumber": [ + "LZ-BOT", + "YR-BAJ", + "YR-BAQ", + "YR-BAS", + "LZ-DEO" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BCM", + "arrivalIcao": "LRBC", + "arrivalTerminal": null, + "arrivalTime": "06:10:00", + "codeshares": null, + "departureIata": "LPL", + "departureIcao": "EGGP", + "departureTerminal": null, + "departureTime": "00:40:00", + "flightNumber": "2934", + "regNumber": [ + "LZ-BOT", + "YR-BAJ", + "YR-BAQ", + "YR-BAS" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CTA", + "arrivalIcao": "LICC", + "arrivalTerminal": null, + "arrivalTime": "11:15:00", + "codeshares": null, + "departureIata": "BCM", + "departureIcao": "LRBC", + "departureTerminal": null, + "departureTime": "09:50:00", + "flightNumber": "2945", + "regNumber": [ + "YR-BAP" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BCM", + "arrivalIcao": "LRBC", + "arrivalTerminal": null, + "arrivalTime": "18:55:00", + "codeshares": null, + "departureIata": "CTA", + "departureIcao": "LICC", + "departureTerminal": null, + "departureTime": "15:45:00", + "flightNumber": "2946", + "regNumber": [ + "YR-BAP" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "DUB", + "arrivalIcao": "EIDW", + "arrivalTerminal": "1", + "arrivalTime": "00:45:00", + "codeshares": null, + "departureIata": "BCM", + "departureIcao": "LRBC", + "departureTerminal": null, + "departureTime": "22:50:00", + "flightNumber": "2955", + "regNumber": [ + "LZ-BOO", + "LZ-BOT", + "YR-BAF", + "YR-BAJ", + "YR-BAO", + "YR-BAQ", + "YR-BAS", + "LZ-DEO" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BCM", + "arrivalIcao": "LRBC", + "arrivalTerminal": null, + "arrivalTime": "07:05:00", + "codeshares": null, + "departureIata": "DUB", + "departureIcao": "EIDW", + "departureTerminal": "1", + "departureTime": "01:30:00", + "flightNumber": "2956", + "regNumber": [ + "LZ-BOT", + "YR-BAF", + "YR-BAJ", + "YR-BAO", + "YR-BAQ", + "YR-BAS", + "LZ-DEO" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CLJ", + "arrivalIcao": "LRCL", + "arrivalTerminal": null, + "arrivalTime": "07:50:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:00:00", + "flightNumber": "3001", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "07:45:00", + "codeshares": null, + "departureIata": "CLJ", + "departureIcao": "LRCL", + "departureTerminal": null, + "departureTime": "07:00:00", + "flightNumber": "3002", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OMR", + "arrivalIcao": "LROD", + "arrivalTerminal": null, + "arrivalTime": "08:15:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:15:00", + "flightNumber": "3077", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "09:45:00", + "codeshares": null, + "departureIata": "OMR", + "departureIcao": "LROD", + "departureTerminal": null, + "departureTime": "08:45:00", + "flightNumber": "3078", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TSR", + "arrivalIcao": "LRTR", + "arrivalTerminal": null, + "arrivalTime": "01:35:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "00:40:00", + "flightNumber": "3087", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "VCE", + "arrivalIcao": "LIPZ", + "arrivalTerminal": null, + "arrivalTime": "12:20:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "309" + } + ], + "departureIata": "WAW", + "departureIcao": "EPWA", + "departureTerminal": "A", + "departureTime": "10:25:00", + "flightNumber": "309", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "18:00:00", + "codeshares": null, + "departureIata": "CLJ", + "departureIcao": "LRCL", + "departureTerminal": null, + "departureTime": "17:15:00", + "flightNumber": "3102", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "MXP", + "arrivalIcao": "LIMC", + "arrivalTerminal": "1", + "arrivalTime": "10:00:00", + "codeshares": [ + { + "airline_code": "SQ", + "flight_number": "2317" + }, + { + "airline_code": "TP", + "flight_number": "7111" + }, + { + "airline_code": "LO", + "flight_number": "317" + } + ], + "departureIata": "WAW", + "departureIcao": "EPWA", + "departureTerminal": "A", + "departureTime": "07:50:00", + "flightNumber": "317", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "WAW", + "arrivalIcao": "EPWA", + "arrivalTerminal": null, + "arrivalTime": "12:55:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "318" + } + ], + "departureIata": "MXP", + "departureIcao": "LIMC", + "departureTerminal": "1", + "departureTime": "10:45:00", + "flightNumber": "318", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CLJ", + "arrivalIcao": "LRCL", + "arrivalTerminal": null, + "arrivalTime": "09:15:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "08:30:00", + "flightNumber": "3201", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "06:45:00", + "codeshares": null, + "departureIata": "CLJ", + "departureIcao": "LRCL", + "departureTerminal": null, + "departureTime": "06:00:00", + "flightNumber": "3202", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "STR", + "arrivalIcao": "EDDS", + "arrivalTerminal": "3", + "arrivalTime": "13:40:00", + "codeshares": null, + "departureIata": "SBZ", + "departureIcao": "LRSB", + "departureTerminal": null, + "departureTime": "12:35:00", + "flightNumber": "329", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "SBZ", + "arrivalIcao": "LRSB", + "arrivalTerminal": null, + "arrivalTime": "12:00:00", + "codeshares": null, + "departureIata": "STR", + "departureIcao": "EDDS", + "departureTerminal": "3", + "departureTime": "09:00:00", + "flightNumber": "330", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CLJ", + "arrivalIcao": "LRCL", + "arrivalTerminal": null, + "arrivalTime": "09:20:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "08:30:00", + "flightNumber": "3301", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "10:35:00", + "codeshares": null, + "departureIata": "CLJ", + "departureIcao": "LRCL", + "departureTerminal": null, + "departureTime": "09:45:00", + "flightNumber": "3302", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CDG", + "arrivalIcao": "LFPG", + "arrivalTerminal": "1", + "arrivalTime": "09:55:00", + "codeshares": [ + { + "airline_code": "AC", + "flight_number": "6749" + }, + { + "airline_code": "LO", + "flight_number": "331" + } + ], + "departureIata": "WAW", + "departureIcao": "EPWA", + "departureTerminal": "A", + "departureTime": "07:25:00", + "flightNumber": "331", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "WAW", + "arrivalIcao": "EPWA", + "arrivalTerminal": null, + "arrivalTime": "12:55:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "332" + } + ], + "departureIata": "CDG", + "departureIcao": "LFPG", + "departureTerminal": "1", + "departureTime": "10:40:00", + "flightNumber": "332", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "MUC", + "arrivalIcao": "EDDM", + "arrivalTerminal": "2", + "arrivalTime": "09:05:00", + "codeshares": [ + { + "airline_code": "OU", + "flight_number": "5857" + }, + { + "airline_code": "TP", + "flight_number": "7113" + }, + { + "airline_code": "SQ", + "flight_number": "2351" + }, + { + "airline_code": "LH", + "flight_number": "5737" + }, + { + "airline_code": "JP", + "flight_number": "9511" + }, + { + "airline_code": "LO", + "flight_number": "351" + } + ], + "departureIata": "WAW", + "departureIcao": "EPWA", + "departureTerminal": "A", + "departureTime": "07:20:00", + "flightNumber": "351", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "WAW", + "arrivalIcao": "EPWA", + "arrivalTerminal": null, + "arrivalTime": "11:20:00", + "codeshares": [ + { + "airline_code": "JP", + "flight_number": "9512" + }, + { + "airline_code": "OU", + "flight_number": "5856" + }, + { + "airline_code": "LH", + "flight_number": "5736" + }, + { + "airline_code": "LG", + "flight_number": "1235" + }, + { + "airline_code": "SQ", + "flight_number": "2352" + }, + { + "airline_code": "LO", + "flight_number": "352" + } + ], + "departureIata": "MUC", + "departureIcao": "EDDM", + "departureTerminal": "2", + "departureTime": "09:45:00", + "flightNumber": "352", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LTN", + "arrivalIcao": "EGGW", + "arrivalTerminal": null, + "arrivalTime": "09:15:00", + "codeshares": null, + "departureIata": "CLJ", + "departureIcao": "LRCL", + "departureTerminal": null, + "departureTime": "08:00:00", + "flightNumber": "3731", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CLJ", + "arrivalIcao": "LRCL", + "arrivalTerminal": null, + "arrivalTime": "15:00:00", + "codeshares": null, + "departureIata": "LTN", + "departureIcao": "EGGW", + "departureTerminal": null, + "departureTime": "10:00:00", + "flightNumber": "3732", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LPL", + "arrivalIcao": "EGGP", + "arrivalTerminal": null, + "arrivalTime": "10:20:00", + "codeshares": null, + "departureIata": "CLJ", + "departureIcao": "LRCL", + "departureTerminal": null, + "departureTime": "09:00:00", + "flightNumber": "3733", + "regNumber": [ + "YR-BMB", + "YR-BMF", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CLJ", + "arrivalIcao": "LRCL", + "arrivalTerminal": null, + "arrivalTime": "16:25:00", + "codeshares": null, + "departureIata": "LPL", + "departureIcao": "EGGP", + "departureTerminal": null, + "departureTime": "11:05:00", + "flightNumber": "3734", + "regNumber": [ + "YR-BMB", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CLJ", + "arrivalIcao": "LRCL", + "arrivalTerminal": null, + "arrivalTime": "09:45:00", + "codeshares": null, + "departureIata": "LCA", + "departureIcao": "LCLK", + "departureTerminal": null, + "departureTime": "07:00:00", + "flightNumber": "3738", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "NCE", + "arrivalIcao": "LFMN", + "arrivalTerminal": "1", + "arrivalTime": "10:30:00", + "codeshares": null, + "departureIata": "CLJ", + "departureIcao": "LRCL", + "departureTerminal": null, + "departureTime": "09:00:00", + "flightNumber": "3749", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CLJ", + "arrivalIcao": "LRCL", + "arrivalTerminal": null, + "arrivalTime": "14:45:00", + "codeshares": null, + "departureIata": "NCE", + "departureIcao": "LFMN", + "departureTerminal": "1", + "departureTime": "11:15:00", + "flightNumber": "3750", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BHX", + "arrivalIcao": "EGBB", + "arrivalTerminal": null, + "arrivalTime": "11:30:00", + "codeshares": null, + "departureIata": "CLJ", + "departureIcao": "LRCL", + "departureTerminal": null, + "departureTime": "10:00:00", + "flightNumber": "3751", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CLJ", + "arrivalIcao": "LRCL", + "arrivalTerminal": null, + "arrivalTime": "14:15:00", + "codeshares": null, + "departureIata": "BHX", + "departureIcao": "EGBB", + "departureTerminal": null, + "departureTime": "09:15:00", + "flightNumber": "3752", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "DUB", + "arrivalIcao": "EIDW", + "arrivalTerminal": "1", + "arrivalTime": "10:10:00", + "codeshares": null, + "departureIata": "CLJ", + "departureIcao": "LRCL", + "departureTerminal": null, + "departureTime": "08:30:00", + "flightNumber": "3755", + "regNumber": [ + "YR-BMB", + "YR-BME", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CLJ", + "arrivalIcao": "LRCL", + "arrivalTerminal": null, + "arrivalTime": "16:35:00", + "codeshares": null, + "departureIata": "DUB", + "departureIcao": "EIDW", + "departureTerminal": "1", + "departureTime": "10:55:00", + "flightNumber": "3756", + "regNumber": [ + "YR-BMB", + "YR-BME", + "YR-BMG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TLV", + "arrivalIcao": "LLBG", + "arrivalTerminal": null, + "arrivalTime": "11:00:00", + "codeshares": null, + "departureIata": "CLJ", + "departureIcao": "LRCL", + "departureTerminal": null, + "departureTime": "08:00:00", + "flightNumber": "3769", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "RZE", + "arrivalIcao": "EPRZ", + "arrivalTerminal": null, + "arrivalTime": "11:30:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "3809" + } + ], + "departureIata": "WAW", + "departureIcao": "EPWA", + "departureTerminal": "A", + "departureTime": "10:35:00", + "flightNumber": "3809", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "FRA", + "arrivalIcao": "EDDF", + "arrivalTerminal": "1", + "arrivalTime": "09:45:00", + "codeshares": [ + { + "airline_code": "OU", + "flight_number": "5863" + }, + { + "airline_code": "LH", + "flight_number": "5715" + }, + { + "airline_code": "NH", + "flight_number": "6720" + }, + { + "airline_code": "OZ", + "flight_number": "6902" + }, + { + "airline_code": "SQ", + "flight_number": "2381" + }, + { + "airline_code": "LO", + "flight_number": "381" + } + ], + "departureIata": "WAW", + "departureIcao": "EPWA", + "departureTerminal": "A", + "departureTime": "07:45:00", + "flightNumber": "381", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "WAW", + "arrivalIcao": "EPWA", + "arrivalTerminal": null, + "arrivalTime": "12:15:00", + "codeshares": [ + { + "airline_code": "SQ", + "flight_number": "2382" + }, + { + "airline_code": "OU", + "flight_number": "5860" + }, + { + "airline_code": "NH", + "flight_number": "6719" + }, + { + "airline_code": "LH", + "flight_number": "5714" + }, + { + "airline_code": "LO", + "flight_number": "382" + } + ], + "departureIata": "FRA", + "departureIcao": "EDDF", + "departureTerminal": "1", + "departureTime": "10:30:00", + "flightNumber": "382", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LCA", + "arrivalIcao": "LCLK", + "arrivalTerminal": null, + "arrivalTime": "08:05:00", + "codeshares": null, + "departureIata": "CLJ", + "departureIcao": "LRCL", + "departureTerminal": null, + "departureTime": "05:25:00", + "flightNumber": "3837", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CLJ", + "arrivalIcao": "LRCL", + "arrivalTerminal": null, + "arrivalTime": "09:15:00", + "codeshares": null, + "departureIata": "LCA", + "departureIcao": "LCLK", + "departureTerminal": null, + "departureTime": "06:35:00", + "flightNumber": "3838", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "KRK", + "arrivalIcao": "EPKK", + "arrivalTerminal": null, + "arrivalTime": "08:25:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "3903" + } + ], + "departureIata": "WAW", + "departureIcao": "EPWA", + "departureTerminal": "A", + "departureTime": "07:30:00", + "flightNumber": "3903", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "WAW", + "arrivalIcao": "EPWA", + "arrivalTerminal": null, + "arrivalTime": "09:50:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "3904" + } + ], + "departureIata": "KRK", + "departureIcao": "EPKK", + "departureTerminal": null, + "departureTime": "08:55:00", + "flightNumber": "3904", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "KRK", + "arrivalIcao": "EPKK", + "arrivalTerminal": null, + "arrivalTime": "11:35:00", + "codeshares": [ + { + "airline_code": "SU", + "flight_number": "3705" + }, + { + "airline_code": "LO", + "flight_number": "3907" + } + ], + "departureIata": "WAW", + "departureIcao": "EPWA", + "departureTerminal": "A", + "departureTime": "10:40:00", + "flightNumber": "3907", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CTA", + "arrivalIcao": "LICC", + "arrivalTerminal": null, + "arrivalTime": "10:10:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "08:05:00", + "flightNumber": "4001", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "12:55:00", + "codeshares": null, + "departureIata": "CTA", + "departureIcao": "LICC", + "departureTerminal": null, + "departureTime": "10:55:00", + "flightNumber": "4002", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BRI", + "arrivalIcao": "LIBD", + "arrivalTerminal": null, + "arrivalTime": "15:05:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "13:30:00", + "flightNumber": "4003", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "17:25:00", + "codeshares": null, + "departureIata": "BRI", + "departureIcao": "LIBD", + "departureTerminal": null, + "departureTime": "15:50:00", + "flightNumber": "4004", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "SUF", + "arrivalIcao": "LICA", + "arrivalTerminal": null, + "arrivalTime": "09:15:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "07:30:00", + "flightNumber": "4005", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "11:45:00", + "codeshares": null, + "departureIata": "SUF", + "departureIcao": "LICA", + "departureTerminal": null, + "departureTime": "10:00:00", + "flightNumber": "4006", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "FCO", + "arrivalIcao": "LIRF", + "arrivalTerminal": "3", + "arrivalTime": "09:20:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "08:05:00", + "flightNumber": "4007", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "12:05:00", + "codeshares": null, + "departureIata": "FCO", + "departureIcao": "LIRF", + "departureTerminal": "2", + "departureTime": "10:50:00", + "flightNumber": "4008", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "AHO", + "arrivalIcao": "LIEA", + "arrivalTerminal": null, + "arrivalTime": "15:05:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "14:00:00", + "flightNumber": "4009", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "16:55:00", + "codeshares": null, + "departureIata": "AHO", + "departureIcao": "LIEA", + "departureTerminal": null, + "departureTime": "15:50:00", + "flightNumber": "4010", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LTN", + "arrivalIcao": "EGGW", + "arrivalTerminal": null, + "arrivalTime": "08:45:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "08:00:00", + "flightNumber": "4011", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "12:45:00", + "codeshares": null, + "departureIata": "LTN", + "departureIcao": "EGGW", + "departureTerminal": null, + "departureTime": "10:00:00", + "flightNumber": "4012", + "regNumber": [ + "YR-BAR" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "MAD", + "arrivalIcao": "LEMD", + "arrivalTerminal": "1", + "arrivalTime": "09:50:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "07:40:00", + "flightNumber": "4013", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "12:50:00", + "codeshares": null, + "departureIata": "MAD", + "departureIcao": "LEMD", + "departureTerminal": "1", + "departureTime": "10:40:00", + "flightNumber": "4014", + "regNumber": [ + "YR-BAK" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "ATH", + "arrivalIcao": "LGAV", + "arrivalTerminal": null, + "arrivalTime": "17:10:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "13:30:00", + "flightNumber": "4017", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "19:40:00", + "codeshares": null, + "departureIata": "ATH", + "departureIcao": "LGAV", + "departureTerminal": null, + "departureTime": "18:00:00", + "flightNumber": "4018", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TXL", + "arrivalIcao": "EDDT", + "arrivalTerminal": null, + "arrivalTime": "20:30:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "18:50:00", + "flightNumber": "4019", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "22:55:00", + "codeshares": null, + "departureIata": "TXL", + "departureIcao": "EDDT", + "departureTerminal": null, + "departureTime": "21:15:00", + "flightNumber": "4020", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "PSR", + "arrivalIcao": "LIBP", + "arrivalTerminal": null, + "arrivalTime": "12:05:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "10:45:00", + "flightNumber": "4021", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "12:55:00", + "codeshares": null, + "departureIata": "PSR", + "departureIcao": "LIBP", + "departureTerminal": null, + "departureTime": "11:30:00", + "flightNumber": "4022", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "NAP", + "arrivalIcao": "LIRN", + "arrivalTerminal": null, + "arrivalTime": "08:50:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "07:30:00", + "flightNumber": "4023", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "11:00:00", + "codeshares": null, + "departureIata": "NAP", + "departureIcao": "LIRN", + "departureTerminal": null, + "departureTime": "09:35:00", + "flightNumber": "4024", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CPH", + "arrivalIcao": "EKCH", + "arrivalTerminal": null, + "arrivalTime": "09:30:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "07:20:00", + "flightNumber": "4029", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "12:25:00", + "codeshares": null, + "departureIata": "CPH", + "departureIcao": "EKCH", + "departureTerminal": null, + "departureTime": "10:15:00", + "flightNumber": "4030", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "ARN", + "arrivalIcao": "ESSA", + "arrivalTerminal": "5", + "arrivalTime": "14:00:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "11:00:00", + "flightNumber": "4047", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "IBZ", + "arrivalIcao": "LEIB", + "arrivalTerminal": "1", + "arrivalTime": "15:10:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "13:40:00", + "flightNumber": "4051", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "17:25:00", + "codeshares": null, + "departureIata": "IBZ", + "departureIcao": "LEIB", + "departureTerminal": "1", + "departureTime": "15:55:00", + "flightNumber": "4052", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "PMI", + "arrivalIcao": "LEPA", + "arrivalTerminal": null, + "arrivalTime": "14:55:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "13:30:00", + "flightNumber": "4053", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "17:15:00", + "codeshares": null, + "departureIata": "PMI", + "departureIcao": "LEPA", + "departureTerminal": null, + "departureTime": "15:50:00", + "flightNumber": "4054", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "MAH", + "arrivalIcao": "LEMH", + "arrivalTerminal": "1", + "arrivalTime": "20:20:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "19:00:00", + "flightNumber": "4055", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "22:25:00", + "codeshares": null, + "departureIata": "MAH", + "departureIcao": "LEMH", + "departureTerminal": "1", + "departureTime": "21:05:00", + "flightNumber": "4056", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LIS", + "arrivalIcao": "LPPT", + "arrivalTerminal": "1", + "arrivalTime": "12:55:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "11:25:00", + "flightNumber": "4057", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "00:45:00", + "codeshares": null, + "departureIata": "LIS", + "departureIcao": "LPPT", + "departureTerminal": "2", + "departureTime": "21:15:00", + "flightNumber": "4058", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OMR", + "arrivalIcao": "LROD", + "arrivalTerminal": null, + "arrivalTime": "10:15:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "07:15:00", + "flightNumber": "4077", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "SVQ", + "arrivalIcao": "LEZL", + "arrivalTerminal": "1", + "arrivalTime": "12:45:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "10:15:00", + "flightNumber": "4079", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TPS", + "arrivalIcao": "LICT", + "arrivalTerminal": null, + "arrivalTime": "13:10:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "11:30:00", + "flightNumber": "4089", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "DUS", + "arrivalIcao": "EDDL", + "arrivalTerminal": null, + "arrivalTime": "09:35:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "409" + } + ], + "departureIata": "WAW", + "departureIcao": "EPWA", + "departureTerminal": "A", + "departureTime": "07:35:00", + "flightNumber": "409", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "11:35:00", + "codeshares": null, + "departureIata": "TPS", + "departureIcao": "LICT", + "departureTerminal": null, + "departureTime": "09:55:00", + "flightNumber": "4090", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CDG", + "arrivalIcao": "LFPG", + "arrivalTerminal": "3", + "arrivalTime": "09:30:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "08:15:00", + "flightNumber": "4095", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "11:35:00", + "codeshares": null, + "departureIata": "CDG", + "departureIcao": "LFPG", + "departureTerminal": "3", + "departureTime": "10:20:00", + "flightNumber": "4096", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "WAW", + "arrivalIcao": "EPWA", + "arrivalTerminal": null, + "arrivalTime": "12:05:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "410" + } + ], + "departureIata": "DUS", + "departureIcao": "EDDL", + "departureTerminal": null, + "departureTime": "10:15:00", + "flightNumber": "410", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CTA", + "arrivalIcao": "LICC", + "arrivalTerminal": null, + "arrivalTime": "20:10:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "18:10:00", + "flightNumber": "4101", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "22:55:00", + "codeshares": null, + "departureIata": "CTA", + "departureIcao": "LICC", + "departureTerminal": null, + "departureTime": "20:55:00", + "flightNumber": "4102", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "FCO", + "arrivalIcao": "LIRF", + "arrivalTerminal": "3", + "arrivalTime": "21:40:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "20:25:00", + "flightNumber": "4107", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "23:45:00", + "codeshares": null, + "departureIata": "FCO", + "departureIcao": "LIRF", + "departureTerminal": "2", + "departureTime": "22:30:00", + "flightNumber": "4108", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BGY", + "arrivalIcao": "LIME", + "arrivalTerminal": null, + "arrivalTime": "14:15:00", + "codeshares": null, + "departureIata": "CND", + "departureIcao": "LRCK", + "departureTerminal": null, + "departureTime": "12:45:00", + "flightNumber": "411", + "regNumber": [ + "YR-BAU" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LTN", + "arrivalIcao": "EGGW", + "arrivalTerminal": null, + "arrivalTime": "08:40:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "07:45:00", + "flightNumber": "4111", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "12:20:00", + "codeshares": null, + "departureIata": "LTN", + "departureIcao": "EGGW", + "departureTerminal": null, + "departureTime": "09:20:00", + "flightNumber": "4112", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CND", + "arrivalIcao": "LRCK", + "arrivalTerminal": null, + "arrivalTime": "12:15:00", + "codeshares": null, + "departureIata": "BGY", + "departureIcao": "LIME", + "departureTerminal": null, + "departureTime": "08:45:00", + "flightNumber": "412", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "NAP", + "arrivalIcao": "LIRN", + "arrivalTerminal": null, + "arrivalTime": "19:20:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "18:00:00", + "flightNumber": "4123", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "21:30:00", + "codeshares": null, + "departureIata": "NAP", + "departureIcao": "LIRN", + "departureTerminal": null, + "departureTime": "20:05:00", + "flightNumber": "4124", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "ARN", + "arrivalIcao": "ESSA", + "arrivalTerminal": "5", + "arrivalTime": "14:15:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "11:15:00", + "flightNumber": "4147", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "FCO", + "arrivalIcao": "LIRF", + "arrivalTerminal": "3", + "arrivalTime": "09:20:00", + "codeshares": null, + "departureIata": "CND", + "departureIcao": "LRCK", + "departureTerminal": null, + "departureTime": "08:00:00", + "flightNumber": "415", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CND", + "arrivalIcao": "LRCK", + "arrivalTerminal": null, + "arrivalTime": "14:05:00", + "codeshares": null, + "departureIata": "FCO", + "departureIcao": "LIRF", + "departureTerminal": "2", + "departureTime": "10:50:00", + "flightNumber": "416", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CTA", + "arrivalIcao": "LICC", + "arrivalTerminal": null, + "arrivalTime": "13:40:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "11:35:00", + "flightNumber": "4201", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BRU", + "arrivalIcao": "EBBR", + "arrivalTerminal": null, + "arrivalTime": "09:10:00", + "codeshares": null, + "departureIata": "CND", + "departureIcao": "LRCK", + "departureTerminal": null, + "departureTime": "07:00:00", + "flightNumber": "423", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CND", + "arrivalIcao": "LRCK", + "arrivalTerminal": null, + "arrivalTime": "13:55:00", + "codeshares": null, + "departureIata": "BRU", + "departureIcao": "EBBR", + "departureTerminal": null, + "departureTime": "10:00:00", + "flightNumber": "424", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "MAD", + "arrivalIcao": "LEMD", + "arrivalTerminal": "2", + "arrivalTime": "14:35:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "433" + } + ], + "departureIata": "WAW", + "departureIcao": "EPWA", + "departureTerminal": "A", + "departureTime": "10:40:00", + "flightNumber": "433", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BCN", + "arrivalIcao": "LEBL", + "arrivalTerminal": "1", + "arrivalTime": "12:25:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "437" + } + ], + "departureIata": "WAW", + "departureIcao": "EPWA", + "departureTerminal": "A", + "departureTime": "09:15:00", + "flightNumber": "437", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "FCO", + "arrivalIcao": "LIRF", + "arrivalTerminal": "3", + "arrivalTime": "07:50:00", + "codeshares": null, + "departureIata": "AHO", + "departureIcao": "LIEA", + "departureTerminal": null, + "departureTime": "07:00:00", + "flightNumber": "4501", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "AHO", + "arrivalIcao": "LIEA", + "arrivalTerminal": null, + "arrivalTime": "09:40:00", + "codeshares": null, + "departureIata": "FCO", + "departureIcao": "LIRF", + "departureTerminal": "3", + "departureTime": "08:50:00", + "flightNumber": "4502", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LIN", + "arrivalIcao": "LIML", + "arrivalTerminal": null, + "arrivalTime": "08:40:00", + "codeshares": null, + "departureIata": "AHO", + "departureIcao": "LIEA", + "departureTerminal": null, + "departureTime": "07:30:00", + "flightNumber": "4503", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "AHO", + "arrivalIcao": "LIEA", + "arrivalTerminal": null, + "arrivalTime": "10:40:00", + "codeshares": null, + "departureIata": "LIN", + "departureIcao": "LIML", + "departureTerminal": null, + "departureTime": "09:30:00", + "flightNumber": "4504", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LTN", + "arrivalIcao": "EGGW", + "arrivalTerminal": null, + "arrivalTime": "10:15:00", + "codeshares": null, + "departureIata": "LCA", + "departureIcao": "LCLK", + "departureTerminal": null, + "departureTime": "07:10:00", + "flightNumber": "5131", + "regNumber": [ + "YR-BMA" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LCA", + "arrivalIcao": "LCLK", + "arrivalTerminal": null, + "arrivalTime": "17:30:00", + "codeshares": null, + "departureIata": "LTN", + "departureIcao": "EGGW", + "departureTerminal": null, + "departureTime": "11:00:00", + "flightNumber": "5132", + "regNumber": [ + "YR-BMA" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LCA", + "arrivalIcao": "LCLK", + "arrivalTerminal": null, + "arrivalTime": "06:00:00", + "codeshares": null, + "departureIata": "LPL", + "departureIcao": "EGGP", + "departureTerminal": null, + "departureTime": "23:00:00", + "flightNumber": "5134", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BHX", + "arrivalIcao": "EGBB", + "arrivalTerminal": null, + "arrivalTime": "10:30:00", + "codeshares": null, + "departureIata": "LCA", + "departureIcao": "LCLK", + "departureTerminal": null, + "departureTime": "07:15:00", + "flightNumber": "5151", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LCA", + "arrivalIcao": "LCLK", + "arrivalTerminal": null, + "arrivalTime": "18:00:00", + "codeshares": null, + "departureIata": "BHX", + "departureIcao": "EGBB", + "departureTerminal": null, + "departureTime": "11:15:00", + "flightNumber": "5152", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "ATH", + "arrivalIcao": "LGAV", + "arrivalTerminal": null, + "arrivalTime": "09:15:00", + "codeshares": null, + "departureIata": "LCA", + "departureIcao": "LCLK", + "departureTerminal": null, + "departureTime": "07:30:00", + "flightNumber": "5161", + "regNumber": [ + "YR-BAR" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LCA", + "arrivalIcao": "LCLK", + "arrivalTerminal": null, + "arrivalTime": "11:45:00", + "codeshares": null, + "departureIata": "ATH", + "departureIcao": "LGAV", + "departureTerminal": null, + "departureTime": "10:00:00", + "flightNumber": "5162", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "SKG", + "arrivalIcao": "LGTS", + "arrivalTerminal": null, + "arrivalTime": "08:55:00", + "codeshares": null, + "departureIata": "LCA", + "departureIcao": "LCLK", + "departureTerminal": null, + "departureTime": "06:55:00", + "flightNumber": "5163", + "regNumber": [ + "YR-BMA" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LCA", + "arrivalIcao": "LCLK", + "arrivalTerminal": null, + "arrivalTime": "12:15:00", + "codeshares": null, + "departureIata": "SKG", + "departureIcao": "LGTS", + "departureTerminal": null, + "departureTime": "10:15:00", + "flightNumber": "5164", + "regNumber": [ + "YR-BMA" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "ATH", + "arrivalIcao": "LGAV", + "arrivalTerminal": null, + "arrivalTime": "14:05:00", + "codeshares": null, + "departureIata": "CND", + "departureIcao": "LRCK", + "departureTerminal": null, + "departureTime": "12:25:00", + "flightNumber": "5165", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CND", + "arrivalIcao": "LRCK", + "arrivalTerminal": null, + "arrivalTime": "11:30:00", + "codeshares": null, + "departureIata": "ATH", + "departureIcao": "LGAV", + "departureTerminal": null, + "departureTime": "10:00:00", + "flightNumber": "5166", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "ATH", + "arrivalIcao": "LGAV", + "arrivalTerminal": null, + "arrivalTime": "14:45:00", + "codeshares": null, + "departureIata": "LCA", + "departureIcao": "LCLK", + "departureTerminal": null, + "departureTime": "13:00:00", + "flightNumber": "5261", + "regNumber": [ + "YR-BMA" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LCA", + "arrivalIcao": "LCLK", + "arrivalTerminal": null, + "arrivalTime": "17:15:00", + "codeshares": null, + "departureIata": "ATH", + "departureIcao": "LGAV", + "departureTerminal": null, + "departureTime": "15:30:00", + "flightNumber": "5262", + "regNumber": [ + "YR-BMA" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "PRG", + "arrivalIcao": "LKPR", + "arrivalTerminal": "2", + "arrivalTime": "12:55:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "527" + } + ], + "departureIata": "WAW", + "departureIcao": "EPWA", + "departureTerminal": "A", + "departureTime": "11:30:00", + "flightNumber": "527", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "ATH", + "arrivalIcao": "LGAV", + "arrivalTerminal": null, + "arrivalTime": "20:00:00", + "codeshares": null, + "departureIata": "LCA", + "departureIcao": "LCLK", + "departureTerminal": null, + "departureTime": "18:15:00", + "flightNumber": "5361", + "regNumber": [ + "YR-BAR" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LCA", + "arrivalIcao": "LCLK", + "arrivalTerminal": null, + "arrivalTime": "22:30:00", + "codeshares": null, + "departureIata": "ATH", + "departureIcao": "LGAV", + "departureTerminal": null, + "departureTime": "20:45:00", + "flightNumber": "5362", + "regNumber": [ + "YR-BMA" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BGY", + "arrivalIcao": "LIME", + "arrivalTerminal": null, + "arrivalTime": "09:45:00", + "codeshares": null, + "departureIata": "LPL", + "departureIcao": "EGGP", + "departureTerminal": null, + "departureTime": "06:30:00", + "flightNumber": "5511", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LPL", + "arrivalIcao": "EGGP", + "arrivalTerminal": null, + "arrivalTime": "11:45:00", + "codeshares": null, + "departureIata": "BGY", + "departureIcao": "LIME", + "departureTerminal": null, + "departureTime": "10:30:00", + "flightNumber": "5512", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "FCO", + "arrivalIcao": "LIRF", + "arrivalTerminal": "3", + "arrivalTime": "11:00:00", + "codeshares": null, + "departureIata": "LPL", + "departureIcao": "EGGP", + "departureTerminal": null, + "departureTime": "07:15:00", + "flightNumber": "5515", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LPL", + "arrivalIcao": "EGGP", + "arrivalTerminal": null, + "arrivalTime": "13:45:00", + "codeshares": null, + "departureIata": "FCO", + "departureIcao": "LIRF", + "departureTerminal": "2", + "departureTime": "12:00:00", + "flightNumber": "5516", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "HAM", + "arrivalIcao": "EDDH", + "arrivalTerminal": "1", + "arrivalTime": "09:00:00", + "codeshares": null, + "departureIata": "LPL", + "departureIcao": "EGGP", + "departureTerminal": null, + "departureTime": "06:30:00", + "flightNumber": "5539", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LPL", + "arrivalIcao": "EGGP", + "arrivalTerminal": null, + "arrivalTime": "10:15:00", + "codeshares": null, + "departureIata": "HAM", + "departureIcao": "EDDH", + "departureTerminal": "1", + "departureTime": "09:45:00", + "flightNumber": "5540", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "ALC", + "arrivalIcao": "LEAL", + "arrivalTerminal": "N", + "arrivalTime": "13:00:00", + "codeshares": null, + "departureIata": "LPL", + "departureIcao": "EGGP", + "departureTerminal": null, + "departureTime": "09:00:00", + "flightNumber": "5573", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "SVQ", + "arrivalIcao": "LEZL", + "arrivalTerminal": "1", + "arrivalTime": "10:40:00", + "codeshares": null, + "departureIata": "LPL", + "departureIcao": "EGGP", + "departureTerminal": null, + "departureTime": "06:30:00", + "flightNumber": "5579", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LPL", + "arrivalIcao": "EGGP", + "arrivalTerminal": null, + "arrivalTime": "05:15:00", + "codeshares": null, + "departureIata": "FCO", + "departureIcao": "LIRF", + "departureTerminal": "3", + "departureTime": "03:30:00", + "flightNumber": "5616", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LCA", + "arrivalIcao": "LCLK", + "arrivalTerminal": null, + "arrivalTime": "02:10:00", + "codeshares": null, + "departureIata": "ATH", + "departureIcao": "LGAV", + "departureTerminal": "M", + "departureTime": "00:25:00", + "flightNumber": "5962", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "IAS", + "arrivalIcao": "LRIA", + "arrivalTerminal": null, + "arrivalTime": "08:30:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "07:30:00", + "flightNumber": "6001", + "regNumber": [ + "YR-BAP" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "07:30:00", + "codeshares": null, + "departureIata": "IAS", + "departureIcao": "LRIA", + "departureTerminal": null, + "departureTime": "06:30:00", + "flightNumber": "6002", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "IAS", + "arrivalIcao": "LRIA", + "arrivalTerminal": null, + "arrivalTime": "21:30:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "20:30:00", + "flightNumber": "6101", + "regNumber": [ + "EC-MFS" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "21:20:00", + "codeshares": null, + "departureIata": "IAS", + "departureIcao": "LRIA", + "departureTerminal": null, + "departureTime": "20:20:00", + "flightNumber": "6102", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "IAS", + "arrivalIcao": "LRIA", + "arrivalTerminal": null, + "arrivalTime": "18:30:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "17:30:00", + "flightNumber": "6201", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "13:30:00", + "codeshares": null, + "departureIata": "IAS", + "departureIcao": "LRIA", + "departureTerminal": null, + "departureTime": "12:30:00", + "flightNumber": "6202", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "IAS", + "arrivalIcao": "LRIA", + "arrivalTerminal": null, + "arrivalTime": "06:20:00", + "codeshares": null, + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "05:30:00", + "flightNumber": "6301", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "01:45:00", + "codeshares": null, + "departureIata": "IAS", + "departureIcao": "LRIA", + "departureTerminal": null, + "departureTime": "00:55:00", + "flightNumber": "6302", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TSR", + "arrivalIcao": "LRTR", + "arrivalTerminal": null, + "arrivalTime": "08:10:00", + "codeshares": null, + "departureIata": "IAS", + "departureIcao": "LRIA", + "departureTerminal": null, + "departureTime": "07:00:00", + "flightNumber": "6401", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "IAS", + "arrivalIcao": "LRIA", + "arrivalTerminal": null, + "arrivalTime": "10:45:00", + "codeshares": null, + "departureIata": "TSR", + "departureIcao": "LRTR", + "departureTerminal": null, + "departureTime": "09:35:00", + "flightNumber": "6402", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CLJ", + "arrivalIcao": "LRCL", + "arrivalTerminal": null, + "arrivalTime": "07:55:00", + "codeshares": null, + "departureIata": "IAS", + "departureIcao": "LRIA", + "departureTerminal": null, + "departureTime": "07:00:00", + "flightNumber": "6403", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "IAS", + "arrivalIcao": "LRIA", + "arrivalTerminal": null, + "arrivalTime": "10:45:00", + "codeshares": null, + "departureIata": "CLJ", + "departureIcao": "LRCL", + "departureTerminal": null, + "departureTime": "09:50:00", + "flightNumber": "6404", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CLJ", + "arrivalIcao": "LRCL", + "arrivalTerminal": null, + "arrivalTime": "09:20:00", + "codeshares": null, + "departureIata": "TSR", + "departureIcao": "LRTR", + "departureTerminal": null, + "departureTime": "08:40:00", + "flightNumber": "6405", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TSR", + "arrivalIcao": "LRTR", + "arrivalTerminal": null, + "arrivalTime": "09:05:00", + "codeshares": null, + "departureIata": "CLJ", + "departureIcao": "LRCL", + "departureTerminal": null, + "departureTime": "08:25:00", + "flightNumber": "6406", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "OTP", + "arrivalIcao": "LROP", + "arrivalTerminal": null, + "arrivalTime": "01:25:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "643" + } + ], + "departureIata": "WAW", + "departureIcao": "EPWA", + "departureTerminal": "A", + "departureTime": "22:40:00", + "flightNumber": "643", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "WAW", + "arrivalIcao": "EPWA", + "arrivalTerminal": null, + "arrivalTime": "06:25:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "644" + } + ], + "departureIata": "OTP", + "departureIcao": "LROP", + "departureTerminal": null, + "departureTime": "05:40:00", + "flightNumber": "644", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TRN", + "arrivalIcao": "LIMF", + "arrivalTerminal": null, + "arrivalTime": "08:25:00", + "codeshares": null, + "departureIata": "IAS", + "departureIcao": "LRIA", + "departureTerminal": null, + "departureTime": "06:45:00", + "flightNumber": "6801", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "IAS", + "arrivalIcao": "LRIA", + "arrivalTerminal": null, + "arrivalTime": "12:35:00", + "codeshares": null, + "departureIata": "TRN", + "departureIcao": "LIMF", + "departureTerminal": null, + "departureTime": "09:10:00", + "flightNumber": "6802", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BVA", + "arrivalIcao": "LFOB", + "arrivalTerminal": "1", + "arrivalTime": "11:45:00", + "codeshares": null, + "departureIata": "IAS", + "departureIcao": "LRIA", + "departureTerminal": null, + "departureTime": "09:30:00", + "flightNumber": "6805", + "regNumber": [ + "YR-BAC", + "YR-BAP", + "YR-BAJ", + "YR-BAU" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "IAS", + "arrivalIcao": "LRIA", + "arrivalTerminal": null, + "arrivalTime": "16:30:00", + "codeshares": null, + "departureIata": "BVA", + "departureIcao": "LFOB", + "departureTerminal": "1", + "departureTime": "12:30:00", + "flightNumber": "6806", + "regNumber": [ + "YR-BAC", + "YR-BAP", + "YR-BAJ", + "YR-BAO", + "YR-BAS" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BCN", + "arrivalIcao": "LEBL", + "arrivalTerminal": "2", + "arrivalTime": "09:35:00", + "codeshares": null, + "departureIata": "IAS", + "departureIcao": "LRIA", + "departureTerminal": null, + "departureTime": "07:00:00", + "flightNumber": "6807", + "regNumber": [ + "YR-BAE", + "YR-BAO", + "YR-BAQ", + "YR-BAU" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "IAS", + "arrivalIcao": "LRIA", + "arrivalTerminal": null, + "arrivalTime": "15:00:00", + "codeshares": null, + "departureIata": "BCN", + "departureIcao": "LEBL", + "departureTerminal": "2", + "departureTime": "10:35:00", + "flightNumber": "6808", + "regNumber": [ + "YR-BAE", + "YR-BAO", + "YR-BAU" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BGY", + "arrivalIcao": "LIME", + "arrivalTerminal": null, + "arrivalTime": "12:00:00", + "codeshares": null, + "departureIata": "IAS", + "departureIcao": "LRIA", + "departureTerminal": null, + "departureTime": "10:30:00", + "flightNumber": "6811", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "IAS", + "arrivalIcao": "LRIA", + "arrivalTerminal": null, + "arrivalTime": "14:15:00", + "codeshares": null, + "departureIata": "BGY", + "departureIcao": "LIME", + "departureTerminal": null, + "departureTime": "10:45:00", + "flightNumber": "6812", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "VLC", + "arrivalIcao": "LEVC", + "arrivalTerminal": "1", + "arrivalTime": "10:15:00", + "codeshares": null, + "departureIata": "IAS", + "departureIcao": "LRIA", + "departureTerminal": null, + "departureTime": "07:15:00", + "flightNumber": "6813", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "FCO", + "arrivalIcao": "LIRF", + "arrivalTerminal": "3", + "arrivalTime": "15:00:00", + "codeshares": null, + "departureIata": "IAS", + "departureIcao": "LRIA", + "departureTerminal": null, + "departureTime": "13:40:00", + "flightNumber": "6815", + "regNumber": [ + "YR-BAP", + "YR-AMA", + "YR-AME" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "IAS", + "arrivalIcao": "LRIA", + "arrivalTerminal": null, + "arrivalTime": "19:20:00", + "codeshares": null, + "departureIata": "FCO", + "departureIcao": "LIRF", + "departureTerminal": "2", + "departureTime": "16:00:00", + "flightNumber": "6816", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "FLR", + "arrivalIcao": "LIRQ", + "arrivalTerminal": null, + "arrivalTime": "11:25:00", + "codeshares": null, + "departureIata": "IAS", + "departureIcao": "LRIA", + "departureTerminal": null, + "departureTime": "10:05:00", + "flightNumber": "6819", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "CGN", + "arrivalIcao": "EDDK", + "arrivalTerminal": "2", + "arrivalTime": "08:45:00", + "codeshares": null, + "departureIata": "IAS", + "departureIcao": "LRIA", + "departureTerminal": null, + "departureTime": "07:00:00", + "flightNumber": "6821", + "regNumber": [ + "YR-BAO" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "IAS", + "arrivalIcao": "LRIA", + "arrivalTerminal": null, + "arrivalTime": "13:00:00", + "codeshares": null, + "departureIata": "CGN", + "departureIcao": "EDDK", + "departureTerminal": "2", + "departureTime": "09:30:00", + "flightNumber": "6822", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "BRU", + "arrivalIcao": "EBBR", + "arrivalTerminal": null, + "arrivalTime": "11:25:00", + "codeshares": null, + "departureIata": "IAS", + "departureIcao": "LRIA", + "departureTerminal": null, + "departureTime": "09:30:00", + "flightNumber": "6823", + "regNumber": [ + "YR-BAP", + "YR-BAJ", + "YR-BAO", + "YR-BAG" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "IAS", + "arrivalIcao": "LRIA", + "arrivalTerminal": null, + "arrivalTime": "16:00:00", + "codeshares": null, + "departureIata": "BRU", + "departureIcao": "EBBR", + "departureTerminal": null, + "departureTime": "12:10:00", + "flightNumber": "6824", + "regNumber": [ + "YR-BAP" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "LTN", + "arrivalIcao": "EGGW", + "arrivalTerminal": null, + "arrivalTime": "09:55:00", + "codeshares": null, + "departureIata": "IAS", + "departureIcao": "LRIA", + "departureTerminal": null, + "departureTime": "08:30:00", + "flightNumber": "6831", + "regNumber": [ + "YR-BAE", + "YR-BAK", + "YR-BAO", + "YR-BAS", + "YR-BAU" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "IAS", + "arrivalIcao": "LRIA", + "arrivalTerminal": null, + "arrivalTime": "15:50:00", + "codeshares": null, + "departureIata": "LTN", + "departureIcao": "EGGW", + "departureTerminal": null, + "departureTime": "10:40:00", + "flightNumber": "6832", + "regNumber": [ + "YR-BAE", + "YR-BAJ", + "YR-BAK", + "YR-BAO", + "YR-BAS", + "YR-BAU" + ] + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "IAS", + "arrivalIcao": "LRIA", + "arrivalTerminal": null, + "arrivalTime": "07:30:00", + "codeshares": null, + "departureIata": "GLA", + "departureIcao": "EGPF", + "departureTerminal": "2", + "departureTime": "01:50:00", + "flightNumber": "6842", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "TBS", + "arrivalIcao": "UGGG", + "arrivalTerminal": null, + "arrivalTime": "04:00:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "723" + } + ], + "departureIata": "WAW", + "departureIcao": "EPWA", + "departureTerminal": "A", + "departureTime": "22:30:00", + "flightNumber": "723", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "WAW", + "arrivalIcao": "EPWA", + "arrivalTerminal": null, + "arrivalTime": "06:40:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "724" + } + ], + "departureIata": "TBS", + "departureIcao": "UGGG", + "departureTerminal": null, + "departureTime": "04:55:00", + "flightNumber": "724", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "WAW", + "arrivalIcao": "EPWA", + "arrivalTerminal": null, + "arrivalTime": "06:30:00", + "codeshares": [ + { + "airline_code": "LO", + "flight_number": "728" + } + ], + "departureIata": "EVN", + "departureIcao": "UDYZ", + "departureTerminal": null, + "departureTime": "04:40:00", + "flightNumber": "728", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "JIK", + "arrivalIcao": "LGIK", + "arrivalTerminal": null, + "arrivalTime": "12:55:00", + "codeshares": null, + "departureIata": "ATH", + "departureIcao": "LGAV", + "departureTerminal": null, + "departureTime": "12:00:00", + "flightNumber": "8902", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "ATH", + "arrivalIcao": "LGAV", + "arrivalTerminal": null, + "arrivalTime": "11:30:00", + "codeshares": null, + "departureIata": "KIT", + "departureIcao": "LGKC", + "departureTerminal": null, + "departureTime": "10:40:00", + "flightNumber": "8903", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "KIT", + "arrivalIcao": "LGKC", + "arrivalTerminal": null, + "arrivalTime": "11:05:00", + "codeshares": null, + "departureIata": "ATH", + "departureIcao": "LGAV", + "departureTerminal": null, + "departureTime": "10:10:00", + "flightNumber": "8904", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "ATH", + "arrivalIcao": "LGAV", + "arrivalTerminal": null, + "arrivalTime": "08:30:00", + "codeshares": null, + "departureIata": "JSY", + "departureIcao": "LGSO", + "departureTerminal": null, + "departureTime": "07:55:00", + "flightNumber": "8905", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "ATH", + "arrivalIcao": "LGAV", + "arrivalTerminal": null, + "arrivalTime": "08:30:00", + "codeshares": null, + "departureIata": "PAS", + "departureIcao": "LGPA", + "departureTerminal": null, + "departureTime": "07:50:00", + "flightNumber": "8907", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "ATH", + "arrivalIcao": "LGAV", + "arrivalTerminal": null, + "arrivalTime": "11:40:00", + "codeshares": null, + "departureIata": "AOK", + "departureIcao": "LGKP", + "departureTerminal": null, + "departureTime": "10:30:00", + "flightNumber": "8913", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "AOK", + "arrivalIcao": "LGKP", + "arrivalTerminal": null, + "arrivalTime": "12:55:00", + "codeshares": null, + "departureIata": "ATH", + "departureIcao": "LGAV", + "departureTerminal": null, + "departureTime": "11:45:00", + "flightNumber": "8914", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "ATH", + "arrivalIcao": "LGAV", + "arrivalTerminal": null, + "arrivalTime": "10:40:00", + "codeshares": null, + "departureIata": "AOK", + "departureIcao": "LGKP", + "departureTerminal": null, + "departureTime": "09:30:00", + "flightNumber": "8915", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "JSI", + "arrivalIcao": "LGSK", + "arrivalTerminal": null, + "arrivalTime": "12:30:00", + "codeshares": null, + "departureIata": "ATH", + "departureIcao": "LGAV", + "departureTerminal": null, + "departureTime": "11:50:00", + "flightNumber": "8918", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "ATH", + "arrivalIcao": "LGAV", + "arrivalTerminal": null, + "arrivalTime": "09:40:00", + "codeshares": null, + "departureIata": "JNX", + "departureIcao": "LGNX", + "departureTerminal": null, + "departureTime": "09:00:00", + "flightNumber": "8919", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "ATH", + "arrivalIcao": "LGAV", + "arrivalTerminal": null, + "arrivalTime": "11:15:00", + "codeshares": null, + "departureIata": "ZTH", + "departureIcao": "LGZA", + "departureTerminal": null, + "departureTime": "10:20:00", + "flightNumber": "8921", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "ATH", + "arrivalIcao": "LGAV", + "arrivalTerminal": null, + "arrivalTime": "11:50:00", + "codeshares": null, + "departureIata": "MLO", + "departureIcao": "LGML", + "departureTerminal": null, + "departureTime": "11:10:00", + "flightNumber": "8923", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "ATH", + "arrivalIcao": "LGAV", + "arrivalTerminal": null, + "arrivalTime": "11:20:00", + "codeshares": null, + "departureIata": "ZTH", + "departureIcao": "LGZA", + "departureTerminal": null, + "departureTime": "10:25:00", + "flightNumber": "8928", + "regNumber": null + }, + { + "airlineIata": "0B", + "airlineIcao": "BMS", + "arrivalIata": "HER", + "arrivalIcao": "LGIR", + "arrivalTerminal": null, + "arrivalTime": "12:45:00", + "codeshares": null, + "departureIata": "ATH", + "departureIcao": "LGAV", + "departureTerminal": null, + "departureTime": "11:45:00", + "flightNumber": "8933", + "regNumber": null + } +] \ No newline at end of file diff --git a/apps/api/src/index.ts b/apps/api/src/index.ts index 3a9e758..3c04c66 100644 --- a/apps/api/src/index.ts +++ b/apps/api/src/index.ts @@ -6,6 +6,7 @@ import compression from "compression"; import { API_CONFIG } from "@flight-tracker/config"; import { flightsRouter } from "./routes/flights.routes.js"; import { airportsRouter } from "./routes/airports.routes.js"; +import { airlinesRouter } from "./routes/airlines.routes.js"; const app = express(); const port = process.env.PORT ?? API_CONFIG.defaultPort; @@ -18,6 +19,7 @@ app.use(express.json()); app.use("/api/flights", flightsRouter); app.use("/api/airports", airportsRouter); +app.use("/api/airlines", airlinesRouter); app.get("/api/health", (_req, res) => { res.json({ status: "ok", timestamp: new Date().toISOString() }); diff --git a/apps/api/src/routes/airlines.routes.ts b/apps/api/src/routes/airlines.routes.ts new file mode 100644 index 0000000..946960b --- /dev/null +++ b/apps/api/src/routes/airlines.routes.ts @@ -0,0 +1,26 @@ +import { Router } from "express"; +import { airlines } from "../services/static-data.service.js"; + +export const airlinesRouter = Router(); + +// GET /api/airlines?limit=&q= +airlinesRouter.get("/", (req, res) => { + const { limit, q } = req.query; + + if (q && typeof q === "string") { + const query = q.toLowerCase(); + const results = (airlines as Record[]).filter( + (a) => + a.nameAirline?.toLowerCase().includes(query) || + a.codeIataAirline?.toLowerCase().includes(query) || + a.codeIcaoAirline?.toLowerCase().includes(query) + ); + return res.json(limit ? results.slice(0, Number(limit)) : results); + } + + if (limit) { + return res.json(airlines.slice(0, Number(limit))); + } + + res.json(airlines); +}); diff --git a/apps/api/src/routes/airports.routes.ts b/apps/api/src/routes/airports.routes.ts index 554361a..ca495fd 100644 --- a/apps/api/src/routes/airports.routes.ts +++ b/apps/api/src/routes/airports.routes.ts @@ -1,29 +1,36 @@ import { Router } from "express"; -import type { AirportData } from "@flight-tracker/types"; +import { + airports, + findAirport, + searchAirports, +} from "../services/static-data.service.js"; export const airportsRouter = Router(); -// GET /api/airports?limit= -airportsRouter.get("/", async (req, res) => { - try { - const { limit } = req.query; - // TODO: Integrate airport data source (OurAirports CSV or DB) - const airports: AirportData[] = []; - res.json(airports); - } catch (error) { - console.error("Error fetching airports:", error); - res.status(500).json({ error: "Failed to fetch airports" }); +// GET /api/airports?limit=&q= +airportsRouter.get("/", (req, res) => { + const { limit, q } = req.query; + + if (q && typeof q === "string") { + const results = searchAirports(q, limit ? Number(limit) : 50); + return res.json(results); + } + + if (limit) { + return res.json(airports.slice(0, Number(limit))); } + + res.json(airports); }); // GET /api/airports/:code -airportsRouter.get("/:code", async (req, res) => { - try { - const { code } = req.params; - // TODO: Fetch single airport detail - res.json({ message: `Airport ${code} detail — not yet implemented` }); - } catch (error) { - console.error("Error fetching airport:", error); - res.status(500).json({ error: "Failed to fetch airport" }); +airportsRouter.get("/:code", (req, res) => { + const { code } = req.params; + const airport = findAirport(code); + + if (!airport) { + return res.status(404).json({ error: `Airport ${code} not found` }); } + + res.json(airport); }); diff --git a/apps/api/src/services/static-data.service.ts b/apps/api/src/services/static-data.service.ts new file mode 100644 index 0000000..8f7756c --- /dev/null +++ b/apps/api/src/services/static-data.service.ts @@ -0,0 +1,55 @@ +import { readFileSync } from "fs"; +import { join } from "path"; +import type { AirportData } from "@flight-tracker/types"; + +const DATA_DIR = join(process.cwd(), "data"); + +function loadJSON(filename: string): T { + const raw = readFileSync(join(DATA_DIR, filename), "utf-8"); + return JSON.parse(raw); +} + +// Load once at startup — 10K airports, 13K airlines, etc. +export const airports: AirportData[] = loadJSON("airports.json"); +export const airlines: unknown[] = loadJSON("airlines.json"); +export const countries: unknown[] = loadJSON("countries.json"); +export const cities: unknown[] = loadJSON("cities.json"); +export const planeTypes: unknown[] = loadJSON("planeTypes.json"); +export const routes: unknown[] = loadJSON("routes.json"); + +// Index airports by IATA and ICAO for O(1) lookup +const airportByIata = new Map(); +const airportByIcao = new Map(); + +for (const a of airports) { + if (a.codeIataAirport) airportByIata.set(a.codeIataAirport.toUpperCase(), a); + if (a.codeIcaoAirport) airportByIcao.set(a.codeIcaoAirport.toUpperCase(), a); +} + +export function findAirport(code: string): AirportData | undefined { + const upper = code.toUpperCase(); + return airportByIata.get(upper) ?? airportByIcao.get(upper); +} + +export function searchAirports(query: string, limit = 50): AirportData[] { + const q = query.toLowerCase(); + const results: AirportData[] = []; + + for (const a of airports) { + if ( + a.codeIataAirport?.toLowerCase().includes(q) || + a.codeIcaoAirport?.toLowerCase().includes(q) || + a.nameAirport?.toLowerCase().includes(q) || + a.nameCountry?.toLowerCase().includes(q) + ) { + results.push(a); + if (results.length >= limit) break; + } + } + + return results; +} + +console.log( + `Loaded static data: ${airports.length} airports, ${airlines.length} airlines, ${countries.length} countries, ${cities.length} cities` +); From 49e4a2c4855e477499438e676fd92082cb7999d2 Mon Sep 17 00:00:00 2001 From: nhatvu148 Date: Sat, 21 Feb 2026 19:05:03 +0700 Subject: [PATCH 04/14] feat: add FlightRadar24-style dark UI overlays --- apps/web/src/app/globals.css | 41 +++++++ apps/web/src/app/layout.tsx | 2 +- apps/web/src/app/page.tsx | 8 ++ apps/web/src/components/map/FlightMap.tsx | 5 +- apps/web/src/components/map/FlightMarkers.tsx | 65 +++++----- apps/web/src/components/ui/BottomToolbar.tsx | 29 +++++ .../src/components/ui/FlightDetailPanel.tsx | 93 +++++++++++++++ apps/web/src/components/ui/FlightSidebar.tsx | 112 ++++++++++++++++++ apps/web/src/components/ui/TopBar.tsx | 66 +++++++++++ apps/web/src/stores/map-store.ts | 13 ++ packages/config/src/index.ts | 2 +- 11 files changed, 403 insertions(+), 33 deletions(-) create mode 100644 apps/web/src/components/ui/BottomToolbar.tsx create mode 100644 apps/web/src/components/ui/FlightDetailPanel.tsx create mode 100644 apps/web/src/components/ui/FlightSidebar.tsx create mode 100644 apps/web/src/components/ui/TopBar.tsx diff --git a/apps/web/src/app/globals.css b/apps/web/src/app/globals.css index f1d8c73..f3b01d6 100644 --- a/apps/web/src/app/globals.css +++ b/apps/web/src/app/globals.css @@ -1 +1,42 @@ @import "tailwindcss"; + +/* Dark theme overrides for Leaflet controls */ +.leaflet-control-zoom a { + background-color: #1a1d21 !important; + color: #e2e8f0 !important; + border-color: #2d3139 !important; +} + +.leaflet-control-zoom a:hover { + background-color: #2d3139 !important; +} + +.leaflet-control-layers { + background-color: #1a1d21 !important; + color: #e2e8f0 !important; + border-color: #2d3139 !important; +} + +.leaflet-control-layers-toggle { + background-color: #1a1d21 !important; +} + +.leaflet-control-layers label { + color: #e2e8f0 !important; +} + +.leaflet-control-scale-line { + background-color: #1a1d21cc !important; + color: #e2e8f0 !important; + border-color: #e2e8f0 !important; +} + +.leaflet-popup-content-wrapper, +.leaflet-popup-tip { + background-color: #1a1d21 !important; + color: #e2e8f0 !important; +} + +.leaflet-popup-close-button { + color: #94a3b8 !important; +} diff --git a/apps/web/src/app/layout.tsx b/apps/web/src/app/layout.tsx index 8d87ef8..6559578 100644 --- a/apps/web/src/app/layout.tsx +++ b/apps/web/src/app/layout.tsx @@ -14,7 +14,7 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - + {children} diff --git a/apps/web/src/app/page.tsx b/apps/web/src/app/page.tsx index 8a7bc75..248b352 100644 --- a/apps/web/src/app/page.tsx +++ b/apps/web/src/app/page.tsx @@ -1,9 +1,17 @@ import { MapLoader } from "@/components/map/MapLoader"; +import { TopBar } from "@/components/ui/TopBar"; +import { FlightSidebar } from "@/components/ui/FlightSidebar"; +import { FlightDetailPanel } from "@/components/ui/FlightDetailPanel"; +import { BottomToolbar } from "@/components/ui/BottomToolbar"; export default function Home() { return (
+ + + +
); } diff --git a/apps/web/src/components/map/FlightMap.tsx b/apps/web/src/components/map/FlightMap.tsx index dc6b7a3..d0b5e28 100644 --- a/apps/web/src/components/map/FlightMap.tsx +++ b/apps/web/src/components/map/FlightMap.tsx @@ -15,7 +15,7 @@ import { useMapStore } from "@/stores/map-store"; import { FlightMarkers } from "./FlightMarkers"; function MapEventHandler() { - const { setCenter, setZoom, setBounds } = useMapStore(); + const { setCenter, setZoom, setBounds, selectFlight } = useMapStore(); const map = useMapEvents({ moveend(e) { @@ -33,6 +33,9 @@ function MapEventHandler() { zoomend(e) { setZoom(e.target.getZoom()); }, + click() { + selectFlight(null); + }, }); // Set initial bounds on mount so flights load immediately diff --git a/apps/web/src/components/map/FlightMarkers.tsx b/apps/web/src/components/map/FlightMarkers.tsx index 8c1d9b8..4c38a3a 100644 --- a/apps/web/src/components/map/FlightMarkers.tsx +++ b/apps/web/src/components/map/FlightMarkers.tsx @@ -7,42 +7,26 @@ import "leaflet-markers-canvas"; import { useFlights } from "@/hooks/useFlights"; import { getClosest } from "@flight-tracker/utils"; import { ANGLE_STEPS } from "@flight-tracker/config"; +import { useMapStore } from "@/stores/map-store"; import type { FlightData } from "@flight-tracker/types"; // Pre-create icon cache — one L.icon per angle (image-based, not divIcon) -const iconCache = new Map(); -function getAircraftIcon(angle: number): L.Icon { - if (!iconCache.has(angle)) { +const iconCache = new Map(); +function getAircraftIcon(angle: number, selected = false): L.Icon { + const key = `${angle}-${selected ? "sel" : "def"}`; + if (!iconCache.has(key)) { + const size = selected ? 30 : 20; + const anchor = size / 2; iconCache.set( - angle, + key, L.icon({ iconUrl: `/aircraft-icons/aircraft-${angle}.svg`, - iconSize: [20, 20], - iconAnchor: [10, 10], + iconSize: [size, size], + iconAnchor: [anchor, anchor], }) ); } - return iconCache.get(angle)!; -} - -function buildMarkers(flights: FlightData[]): L.Marker[] { - const markers: L.Marker[] = []; - - for (const flight of flights) { - const { latitude, longitude, direction } = flight.geography; - if (latitude == null || longitude == null) continue; - - const { icaoNumber } = flight.flight; - const angle = getClosest(ANGLE_STEPS, direction); - - const marker = L.marker([latitude, longitude], { - icon: getAircraftIcon(angle), - }).bindPopup(icaoNumber || flight.aircraft.icao24); - - markers.push(marker); - } - - return markers; + return iconCache.get(key)!; } export function FlightMarkers() { @@ -50,6 +34,8 @@ export function FlightMarkers() { // eslint-disable-next-line @typescript-eslint/no-explicit-any const canvasRef = useRef(null); const { data: flights } = useFlights(); + const selectedFlight = useMapStore((s) => s.selectedFlight); + const selectFlight = useMapStore((s) => s.selectFlight); useEffect(() => { if (!map) return; @@ -66,12 +52,31 @@ export function FlightMarkers() { // Clear previous markers canvas.clear(); - // Draw flights on canvas (single world — worldCopyJump handles wrapping) + // Draw flights on canvas if (flights?.length) { - const markers = buildMarkers(flights); + const markers: L.Marker[] = []; + const selectedIcao24 = selectedFlight?.aircraft.icao24; + + for (const flight of flights) { + const { latitude, longitude, direction } = flight.geography; + if (latitude == null || longitude == null) continue; + + const angle = getClosest(ANGLE_STEPS, direction); + const isSelected = flight.aircraft.icao24 === selectedIcao24; + + const marker = L.marker([latitude, longitude], { + icon: getAircraftIcon(angle, isSelected), + }); + + // leaflet-markers-canvas fires "click" on individual markers + marker.on("click", () => selectFlight(flight)); + + markers.push(marker); + } + canvas.addMarkers(markers); } - }, [map, flights]); + }, [map, flights, selectedFlight, selectFlight]); return null; } diff --git a/apps/web/src/components/ui/BottomToolbar.tsx b/apps/web/src/components/ui/BottomToolbar.tsx new file mode 100644 index 0000000..9791eb1 --- /dev/null +++ b/apps/web/src/components/ui/BottomToolbar.tsx @@ -0,0 +1,29 @@ +"use client"; + +export function BottomToolbar() { + return ( +
+ + + + +
+ + Flight Tracker v1.0 +
+ ); +} diff --git a/apps/web/src/components/ui/FlightDetailPanel.tsx b/apps/web/src/components/ui/FlightDetailPanel.tsx new file mode 100644 index 0000000..f03305e --- /dev/null +++ b/apps/web/src/components/ui/FlightDetailPanel.tsx @@ -0,0 +1,93 @@ +"use client"; + +import { useMapStore } from "@/stores/map-store"; + +function DataRow({ label, value }: { label: string; value: string | number }) { + return ( +
+ {label} + {value} +
+ ); +} + +export function FlightDetailPanel() { + const selectedFlight = useMapStore((s) => s.selectedFlight); + const selectFlight = useMapStore((s) => s.selectFlight); + + const isOpen = selectedFlight !== null; + + const callsign = selectedFlight + ? selectedFlight.flight.icaoNumber || + selectedFlight.flight.iataNumber || + selectedFlight.aircraft.icao24 + : ""; + + const isGrounded = selectedFlight?.speed.isGround === 1; + const altFt = selectedFlight + ? Math.round(selectedFlight.geography.altitude * 3.28084) + : 0; + const speedKts = selectedFlight + ? Math.round(selectedFlight.speed.horizontal * 1.94384) + : 0; + const vspeedFpm = selectedFlight + ? Math.round(selectedFlight.speed.vspeed * 196.85) + : 0; + const heading = selectedFlight + ? Math.round(selectedFlight.geography.direction) + : 0; + const lastSeen = selectedFlight + ? new Date(selectedFlight.system.updated * 1000).toISOString().slice(11, 19) + + " UTC" + : ""; + + return ( +
+ {/* Header */} +
+
+

{callsign}

+ + {isGrounded ? "GROUNDED" : "EN ROUTE"} + +
+ +
+ + {/* Data rows */} + {selectedFlight && ( +
+ + + + + + + + + + +
+ )} +
+ ); +} diff --git a/apps/web/src/components/ui/FlightSidebar.tsx b/apps/web/src/components/ui/FlightSidebar.tsx new file mode 100644 index 0000000..ea5a924 --- /dev/null +++ b/apps/web/src/components/ui/FlightSidebar.tsx @@ -0,0 +1,112 @@ +"use client"; + +import React, { useMemo } from "react"; +import { useMapStore } from "@/stores/map-store"; +import { useFlights } from "@/hooks/useFlights"; +import type { FlightData } from "@flight-tracker/types"; + +const FlightRow = React.memo(function FlightRow({ + flight, + isSelected, + onClick, +}: { + flight: FlightData; + isSelected: boolean; + onClick: () => void; +}) { + const callsign = + flight.flight.icaoNumber || flight.flight.iataNumber || flight.aircraft.icao24; + const altFt = Math.round(flight.geography.altitude * 3.28084); + const speedKts = Math.round(flight.speed.horizontal * 1.94384); + + return ( + + ); +}, (prev, next) => + prev.flight.aircraft.icao24 === next.flight.aircraft.icao24 && + prev.flight.geography.altitude === next.flight.geography.altitude && + prev.flight.speed.horizontal === next.flight.speed.horizontal && + prev.isSelected === next.isSelected +); + +export function FlightSidebar() { + const sidebarOpen = useMapStore((s) => s.sidebarOpen); + const setSidebarOpen = useMapStore((s) => s.setSidebarOpen); + const searchQuery = useMapStore((s) => s.searchQuery); + const selectedFlight = useMapStore((s) => s.selectedFlight); + const selectFlight = useMapStore((s) => s.selectFlight); + const { data: flights } = useFlights(); + + const filtered = useMemo(() => { + if (!flights) return []; + if (!searchQuery.trim()) return flights; + const q = searchQuery.toLowerCase(); + return flights.filter((f) => { + const callsign = + f.flight.icaoNumber || f.flight.iataNumber || f.aircraft.icao24; + return callsign.toLowerCase().includes(q); + }); + }, [flights, searchQuery]); + + return ( + <> +
+ {/* Header */} +
+ + Flights ({filtered.length}) + + +
+ + {/* Flight list */} +
+ {filtered.map((flight) => ( + selectFlight(flight)} + /> + ))} +
+
+ + {/* Expand toggle (visible when sidebar is closed) */} + {!sidebarOpen && ( + + )} + + ); +} diff --git a/apps/web/src/components/ui/TopBar.tsx b/apps/web/src/components/ui/TopBar.tsx new file mode 100644 index 0000000..6934e38 --- /dev/null +++ b/apps/web/src/components/ui/TopBar.tsx @@ -0,0 +1,66 @@ +"use client"; + +import { useEffect, useState } from "react"; +import { useMapStore } from "@/stores/map-store"; + +export function TopBar() { + const searchQuery = useMapStore((s) => s.searchQuery); + const setSearchQuery = useMapStore((s) => s.setSearchQuery); + const [utc, setUtc] = useState(""); + + useEffect(() => { + function tick() { + const now = new Date(); + setUtc( + now.toISOString().slice(11, 19) + " UTC" + ); + } + tick(); + const id = setInterval(tick, 1000); + return () => clearInterval(id); + }, []); + + return ( +
+ {/* Logo */} +
+ + + + FlightTracker +
+ + {/* Search */} +
+ setSearchQuery(e.target.value)} + placeholder="Search flights..." + className="w-full h-8 px-3 rounded bg-slate-800/80 border border-slate-600/50 text-sm text-slate-200 placeholder-slate-500 outline-none focus:border-sky-500/50 transition-colors" + /> +
+ + {/* Spacer */} +
+ + {/* UTC Clock */} +
+ {utc} +
+
+ ); +} diff --git a/apps/web/src/stores/map-store.ts b/apps/web/src/stores/map-store.ts index 964dbfe..56e6dbf 100644 --- a/apps/web/src/stores/map-store.ts +++ b/apps/web/src/stores/map-store.ts @@ -1,5 +1,6 @@ import { create } from "zustand"; import { MAP_DEFAULTS } from "@flight-tracker/config"; +import type { FlightData } from "@flight-tracker/types"; interface MapBounds { north: number; @@ -13,10 +14,16 @@ interface MapState { zoom: number; bounds: MapBounds | null; activeLayer: string; + selectedFlight: FlightData | null; + sidebarOpen: boolean; + searchQuery: string; setCenter: (center: { lat: number; lng: number }) => void; setZoom: (zoom: number) => void; setBounds: (bounds: MapBounds) => void; setActiveLayer: (layer: string) => void; + selectFlight: (flight: FlightData | null) => void; + setSidebarOpen: (open: boolean) => void; + setSearchQuery: (query: string) => void; } export const useMapStore = create((set) => ({ @@ -24,8 +31,14 @@ export const useMapStore = create((set) => ({ zoom: MAP_DEFAULTS.zoom, bounds: null, activeLayer: MAP_DEFAULTS.defaultLayer, + selectedFlight: null, + sidebarOpen: true, + searchQuery: "", setCenter: (center) => set({ center }), setZoom: (zoom) => set({ zoom }), setBounds: (bounds) => set({ bounds }), setActiveLayer: (activeLayer) => set({ activeLayer }), + selectFlight: (flight) => set({ selectedFlight: flight }), + setSidebarOpen: (open) => set({ sidebarOpen: open }), + setSearchQuery: (query) => set({ searchQuery: query }), })); diff --git a/packages/config/src/index.ts b/packages/config/src/index.ts index 084207a..fc55976 100644 --- a/packages/config/src/index.ts +++ b/packages/config/src/index.ts @@ -3,7 +3,7 @@ export const MAP_DEFAULTS = { zoom: 4, minZoom: 2, maxZoom: 15, - defaultLayer: "Mapnik", + defaultLayer: "AlidadeSmoothDark", } as const; export const ANGLE_STEPS = [ From 0980987499ed71307f7bf3adacb8e012eceab95f Mon Sep 17 00:00:00 2001 From: nhatvu148 Date: Sat, 21 Feb 2026 22:49:41 +0700 Subject: [PATCH 05/14] feat: FR24-style UI, icons, and API resilience --- apps/api/src/routes/flights.routes.ts | 14 +++--- apps/web/public/aircraft-icons/aircraft-0.svg | 9 ++-- .../public/aircraft-icons/aircraft-105.svg | 9 ++-- .../public/aircraft-icons/aircraft-120.svg | 9 ++-- .../public/aircraft-icons/aircraft-135.svg | 9 ++-- .../web/public/aircraft-icons/aircraft-15.svg | 9 ++-- .../public/aircraft-icons/aircraft-150.svg | 9 ++-- .../public/aircraft-icons/aircraft-165.svg | 9 ++-- .../public/aircraft-icons/aircraft-180.svg | 9 ++-- .../public/aircraft-icons/aircraft-195.svg | 9 ++-- .../public/aircraft-icons/aircraft-210.svg | 9 ++-- .../public/aircraft-icons/aircraft-225.svg | 9 ++-- .../public/aircraft-icons/aircraft-240.svg | 9 ++-- .../public/aircraft-icons/aircraft-255.svg | 9 ++-- .../public/aircraft-icons/aircraft-270.svg | 9 ++-- .../public/aircraft-icons/aircraft-285.svg | 9 ++-- .../web/public/aircraft-icons/aircraft-30.svg | 9 ++-- .../public/aircraft-icons/aircraft-300.svg | 9 ++-- .../public/aircraft-icons/aircraft-315.svg | 9 ++-- .../public/aircraft-icons/aircraft-330.svg | 9 ++-- .../public/aircraft-icons/aircraft-345.svg | 9 ++-- .../public/aircraft-icons/aircraft-360.svg | 9 ++-- .../web/public/aircraft-icons/aircraft-45.svg | 9 ++-- .../web/public/aircraft-icons/aircraft-60.svg | 9 ++-- .../web/public/aircraft-icons/aircraft-75.svg | 9 ++-- .../web/public/aircraft-icons/aircraft-90.svg | 9 ++-- apps/web/src/app/globals.css | 50 +++++++++---------- apps/web/src/app/layout.tsx | 2 +- apps/web/src/components/map/FlightMarkers.tsx | 43 +++++++++++----- apps/web/src/hooks/useFlights.ts | 42 ++++++++++++++-- packages/config/src/index.ts | 8 ++- 31 files changed, 207 insertions(+), 177 deletions(-) diff --git a/apps/api/src/routes/flights.routes.ts b/apps/api/src/routes/flights.routes.ts index 06cfe4d..ce00d4c 100644 --- a/apps/api/src/routes/flights.routes.ts +++ b/apps/api/src/routes/flights.routes.ts @@ -5,7 +5,7 @@ export const flightsRouter = Router(); // Keyed cache: "all" for global, "bounds:..." for bounded queries const cacheMap = new Map(); -const CACHE_TTL = 15_000; // 15 seconds +const CACHE_TTL = 30_000; // 30 seconds — avoids hammering OpenSky's rate limit // GET /api/flights/live?north=&south=&east=&west= flightsRouter.get("/live", async (req, res) => { @@ -50,13 +50,13 @@ flightsRouter.get("/live", async (req, res) => { res.json(flights); } catch (error) { - console.error("Error fetching flights:", error); - // On error, return any cached data as fallback - const anyCached = cacheMap.values().next().value; - if (anyCached) { - return res.json(anyCached.data); + // On error, return stale cached data as fallback + for (const entry of cacheMap.values()) { + return res.json(entry.data); } - res.status(500).json({ error: "Failed to fetch flights" }); + // No cache at all — return empty array instead of 500 + console.warn("OpenSky unavailable, no cache:", (error as Error).message); + res.json([]); } }); diff --git a/apps/web/public/aircraft-icons/aircraft-0.svg b/apps/web/public/aircraft-icons/aircraft-0.svg index 3d2993d..52f545d 100644 --- a/apps/web/public/aircraft-icons/aircraft-0.svg +++ b/apps/web/public/aircraft-icons/aircraft-0.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-105.svg b/apps/web/public/aircraft-icons/aircraft-105.svg index 9c09adc..d64a5e1 100644 --- a/apps/web/public/aircraft-icons/aircraft-105.svg +++ b/apps/web/public/aircraft-icons/aircraft-105.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-120.svg b/apps/web/public/aircraft-icons/aircraft-120.svg index 1ce04e8..11cd098 100644 --- a/apps/web/public/aircraft-icons/aircraft-120.svg +++ b/apps/web/public/aircraft-icons/aircraft-120.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-135.svg b/apps/web/public/aircraft-icons/aircraft-135.svg index 176383a..09fda4f 100644 --- a/apps/web/public/aircraft-icons/aircraft-135.svg +++ b/apps/web/public/aircraft-icons/aircraft-135.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-15.svg b/apps/web/public/aircraft-icons/aircraft-15.svg index a2fce9e..9bd4cc8 100644 --- a/apps/web/public/aircraft-icons/aircraft-15.svg +++ b/apps/web/public/aircraft-icons/aircraft-15.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-150.svg b/apps/web/public/aircraft-icons/aircraft-150.svg index 57de492..215de39 100644 --- a/apps/web/public/aircraft-icons/aircraft-150.svg +++ b/apps/web/public/aircraft-icons/aircraft-150.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-165.svg b/apps/web/public/aircraft-icons/aircraft-165.svg index 22ab60d..77dbd9a 100644 --- a/apps/web/public/aircraft-icons/aircraft-165.svg +++ b/apps/web/public/aircraft-icons/aircraft-165.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-180.svg b/apps/web/public/aircraft-icons/aircraft-180.svg index 81be83f..ed38e10 100644 --- a/apps/web/public/aircraft-icons/aircraft-180.svg +++ b/apps/web/public/aircraft-icons/aircraft-180.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-195.svg b/apps/web/public/aircraft-icons/aircraft-195.svg index 5407fe1..649f9d1 100644 --- a/apps/web/public/aircraft-icons/aircraft-195.svg +++ b/apps/web/public/aircraft-icons/aircraft-195.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-210.svg b/apps/web/public/aircraft-icons/aircraft-210.svg index 8892539..497babe 100644 --- a/apps/web/public/aircraft-icons/aircraft-210.svg +++ b/apps/web/public/aircraft-icons/aircraft-210.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-225.svg b/apps/web/public/aircraft-icons/aircraft-225.svg index 174fe8f..3153210 100644 --- a/apps/web/public/aircraft-icons/aircraft-225.svg +++ b/apps/web/public/aircraft-icons/aircraft-225.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-240.svg b/apps/web/public/aircraft-icons/aircraft-240.svg index 575ae59..b3b16c6 100644 --- a/apps/web/public/aircraft-icons/aircraft-240.svg +++ b/apps/web/public/aircraft-icons/aircraft-240.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-255.svg b/apps/web/public/aircraft-icons/aircraft-255.svg index c2d61cc..029e1a0 100644 --- a/apps/web/public/aircraft-icons/aircraft-255.svg +++ b/apps/web/public/aircraft-icons/aircraft-255.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-270.svg b/apps/web/public/aircraft-icons/aircraft-270.svg index 3a80378..d61eb9d 100644 --- a/apps/web/public/aircraft-icons/aircraft-270.svg +++ b/apps/web/public/aircraft-icons/aircraft-270.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-285.svg b/apps/web/public/aircraft-icons/aircraft-285.svg index 01c179b..25a1beb 100644 --- a/apps/web/public/aircraft-icons/aircraft-285.svg +++ b/apps/web/public/aircraft-icons/aircraft-285.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-30.svg b/apps/web/public/aircraft-icons/aircraft-30.svg index b5b71b3..443940e 100644 --- a/apps/web/public/aircraft-icons/aircraft-30.svg +++ b/apps/web/public/aircraft-icons/aircraft-30.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-300.svg b/apps/web/public/aircraft-icons/aircraft-300.svg index 3992fd1..ee8b9c1 100644 --- a/apps/web/public/aircraft-icons/aircraft-300.svg +++ b/apps/web/public/aircraft-icons/aircraft-300.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-315.svg b/apps/web/public/aircraft-icons/aircraft-315.svg index 8fbdb19..3b64493 100644 --- a/apps/web/public/aircraft-icons/aircraft-315.svg +++ b/apps/web/public/aircraft-icons/aircraft-315.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-330.svg b/apps/web/public/aircraft-icons/aircraft-330.svg index 53a2365..a50f0c6 100644 --- a/apps/web/public/aircraft-icons/aircraft-330.svg +++ b/apps/web/public/aircraft-icons/aircraft-330.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-345.svg b/apps/web/public/aircraft-icons/aircraft-345.svg index e68555e..f543203 100644 --- a/apps/web/public/aircraft-icons/aircraft-345.svg +++ b/apps/web/public/aircraft-icons/aircraft-345.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-360.svg b/apps/web/public/aircraft-icons/aircraft-360.svg index 3d2993d..52f545d 100644 --- a/apps/web/public/aircraft-icons/aircraft-360.svg +++ b/apps/web/public/aircraft-icons/aircraft-360.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-45.svg b/apps/web/public/aircraft-icons/aircraft-45.svg index 710bf4b..26ecd16 100644 --- a/apps/web/public/aircraft-icons/aircraft-45.svg +++ b/apps/web/public/aircraft-icons/aircraft-45.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-60.svg b/apps/web/public/aircraft-icons/aircraft-60.svg index ffd2793..617059e 100644 --- a/apps/web/public/aircraft-icons/aircraft-60.svg +++ b/apps/web/public/aircraft-icons/aircraft-60.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-75.svg b/apps/web/public/aircraft-icons/aircraft-75.svg index 8b43653..34a0db3 100644 --- a/apps/web/public/aircraft-icons/aircraft-75.svg +++ b/apps/web/public/aircraft-icons/aircraft-75.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/public/aircraft-icons/aircraft-90.svg b/apps/web/public/aircraft-icons/aircraft-90.svg index fef79e5..824acf9 100644 --- a/apps/web/public/aircraft-icons/aircraft-90.svg +++ b/apps/web/public/aircraft-icons/aircraft-90.svg @@ -1,10 +1,9 @@ - + Created with Fabric.js 3.6.3 - - - - + + + \ No newline at end of file diff --git a/apps/web/src/app/globals.css b/apps/web/src/app/globals.css index f3b01d6..900dd87 100644 --- a/apps/web/src/app/globals.css +++ b/apps/web/src/app/globals.css @@ -1,42 +1,40 @@ @import "tailwindcss"; -/* Dark theme overrides for Leaflet controls */ +/* FR24-style dark rounded controls on light map */ .leaflet-control-zoom a { - background-color: #1a1d21 !important; - color: #e2e8f0 !important; - border-color: #2d3139 !important; + background-color: rgba(60, 64, 67, 0.85) !important; + color: #fff !important; + border-color: transparent !important; + border-radius: 50% !important; + width: 40px !important; + height: 40px !important; + line-height: 40px !important; + font-size: 18px !important; + margin-bottom: 4px !important; + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important; } .leaflet-control-zoom a:hover { - background-color: #2d3139 !important; + background-color: rgba(60, 64, 67, 1) !important; +} + +.leaflet-control-zoom { + border: none !important; + box-shadow: none !important; } .leaflet-control-layers { - background-color: #1a1d21 !important; - color: #e2e8f0 !important; - border-color: #2d3139 !important; + background-color: rgba(60, 64, 67, 0.85) !important; + color: #fff !important; + border: none !important; + border-radius: 8px !important; + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important; } .leaflet-control-layers-toggle { - background-color: #1a1d21 !important; + background-color: transparent !important; } .leaflet-control-layers label { - color: #e2e8f0 !important; -} - -.leaflet-control-scale-line { - background-color: #1a1d21cc !important; - color: #e2e8f0 !important; - border-color: #e2e8f0 !important; -} - -.leaflet-popup-content-wrapper, -.leaflet-popup-tip { - background-color: #1a1d21 !important; - color: #e2e8f0 !important; -} - -.leaflet-popup-close-button { - color: #94a3b8 !important; + color: #fff !important; } diff --git a/apps/web/src/app/layout.tsx b/apps/web/src/app/layout.tsx index 6559578..8d87ef8 100644 --- a/apps/web/src/app/layout.tsx +++ b/apps/web/src/app/layout.tsx @@ -14,7 +14,7 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - + {children} diff --git a/apps/web/src/components/map/FlightMarkers.tsx b/apps/web/src/components/map/FlightMarkers.tsx index 4c38a3a..163b7d9 100644 --- a/apps/web/src/components/map/FlightMarkers.tsx +++ b/apps/web/src/components/map/FlightMarkers.tsx @@ -10,12 +10,15 @@ import { ANGLE_STEPS } from "@flight-tracker/config"; import { useMapStore } from "@/stores/map-store"; import type { FlightData } from "@flight-tracker/types"; -// Pre-create icon cache — one L.icon per angle (image-based, not divIcon) +const ICON_SIZE = 22; +const ICON_SIZE_SELECTED = 30; + +// Cache icons by angle + selected state const iconCache = new Map(); function getAircraftIcon(angle: number, selected = false): L.Icon { const key = `${angle}-${selected ? "sel" : "def"}`; if (!iconCache.has(key)) { - const size = selected ? 30 : 20; + const size = selected ? ICON_SIZE_SELECTED : ICON_SIZE; const anchor = size / 2; iconCache.set( key, @@ -33,14 +36,15 @@ export function FlightMarkers() { const map = useMap(); // eslint-disable-next-line @typescript-eslint/no-explicit-any const canvasRef = useRef(null); + const markerMapRef = useRef>(new Map()); const { data: flights } = useFlights(); const selectedFlight = useMapStore((s) => s.selectedFlight); const selectFlight = useMapStore((s) => s.selectFlight); + // Main effect: rebuild markers only when flight data changes useEffect(() => { if (!map) return; - // Initialize canvas layer once if (!canvasRef.current) { // @ts-expect-error leaflet-markers-canvas extends L canvasRef.current = new L.MarkersCanvas(); @@ -48,35 +52,50 @@ export function FlightMarkers() { } const canvas = canvasRef.current; - - // Clear previous markers canvas.clear(); + markerMapRef.current.clear(); - // Draw flights on canvas if (flights?.length) { const markers: L.Marker[] = []; - const selectedIcao24 = selectedFlight?.aircraft.icao24; for (const flight of flights) { const { latitude, longitude, direction } = flight.geography; if (latitude == null || longitude == null) continue; const angle = getClosest(ANGLE_STEPS, direction); - const isSelected = flight.aircraft.icao24 === selectedIcao24; const marker = L.marker([latitude, longitude], { - icon: getAircraftIcon(angle, isSelected), + icon: getAircraftIcon(angle), }); - // leaflet-markers-canvas fires "click" on individual markers marker.on("click", () => selectFlight(flight)); - + markerMapRef.current.set(flight.aircraft.icao24, { marker, flight, angle }); markers.push(marker); } canvas.addMarkers(markers); } - }, [map, flights, selectedFlight, selectFlight]); + }, [map, flights, selectFlight]); + + // Separate effect: highlight/unhighlight selected marker without full rebuild + useEffect(() => { + const canvas = canvasRef.current; + if (!canvas) return; + + const selectedIcao24 = selectedFlight?.aircraft.icao24; + + for (const [icao24, entry] of markerMapRef.current) { + const shouldBeSelected = icao24 === selectedIcao24; + const currentIcon = entry.marker.getIcon() as L.Icon; + const targetIcon = getAircraftIcon(entry.angle, shouldBeSelected); + + if (currentIcon !== targetIcon) { + entry.marker.setIcon(targetIcon); + canvas.removeMarker(entry.marker); + canvas.addMarker(entry.marker); + } + } + }, [selectedFlight]); return null; } diff --git a/apps/web/src/hooks/useFlights.ts b/apps/web/src/hooks/useFlights.ts index 6b2d49d..5d8baa3 100644 --- a/apps/web/src/hooks/useFlights.ts +++ b/apps/web/src/hooks/useFlights.ts @@ -1,23 +1,55 @@ "use client"; -import { useQuery } from "@tanstack/react-query"; +import { useRef, useMemo } from "react"; +import { useQuery, keepPreviousData } from "@tanstack/react-query"; import { getFlights, getAirports } from "@flight-tracker/api-client"; import { useMapStore } from "@/stores/map-store"; import { WEB_CONFIG } from "@flight-tracker/config"; +/** + * Snap bounds to a coarse grid so small pans reuse the same query key. + * At zoom < 6 we fetch globally (no bounds). + * The grid cell size (1°) means a fetch only triggers when the viewport + * crosses a full degree boundary — eliminates most re-fetches on drag. + */ +function snapBounds(bounds: { north: number; south: number; east: number; west: number }) { + return { + north: Math.ceil(bounds.north), + south: Math.floor(bounds.south), + east: Math.ceil(bounds.east), + west: Math.floor(bounds.west), + }; +} + export function useFlights() { const bounds = useMapStore((s) => s.bounds); const zoom = useMapStore((s) => s.zoom); // At low zoom (world view), fetch ALL flights without bounds - // At higher zoom, use viewport bounds to limit the query - const useBounds = zoom >= 6 ? bounds : undefined; + const useBounds = zoom >= 6 && bounds ? bounds : undefined; + + // Snap to coarse grid — same snapped value = same queryKey = no re-fetch + const snapped = useBounds ? snapBounds(useBounds) : undefined; + + // Stable reference: only changes when snapped values actually change + const prevRef = useRef(snapped); + const stableSnapped = useMemo(() => { + if (!snapped) { prevRef.current = undefined; return undefined; } + const prev = prevRef.current; + if (prev && prev.north === snapped.north && prev.south === snapped.south && + prev.east === snapped.east && prev.west === snapped.west) { + return prev; + } + prevRef.current = snapped; + return snapped; + }, [snapped]); return useQuery({ - queryKey: ["flights", zoom >= 6 ? "bounded" : "global", useBounds], + queryKey: ["flights", zoom >= 6 ? "bounded" : "global", stableSnapped], queryFn: () => getFlights(useBounds ?? undefined), refetchInterval: WEB_CONFIG.pollInterval, - enabled: !!bounds, // wait until map has initialized bounds + enabled: !!bounds, + placeholderData: keepPreviousData, }); } diff --git a/packages/config/src/index.ts b/packages/config/src/index.ts index fc55976..5a632f7 100644 --- a/packages/config/src/index.ts +++ b/packages/config/src/index.ts @@ -3,7 +3,7 @@ export const MAP_DEFAULTS = { zoom: 4, minZoom: 2, maxZoom: 15, - defaultLayer: "AlidadeSmoothDark", + defaultLayer: "CartoVoyager", } as const; export const ANGLE_STEPS = [ @@ -19,6 +19,12 @@ export interface TileLayerConfig { export function getTileLayers(mapTilerToken?: string): TileLayerConfig[] { return [ + { + name: "CartoVoyager", + attribution: + '© OpenStreetMap contributors © CARTO', + url: "https://{s}.basemaps.cartocdn.com/rastertiles/voyager/{z}/{x}/{y}{r}.png", + }, { name: "Mapnik", attribution: From 0f388631fbee501d38165168dd1dada9d2624af0 Mon Sep 17 00:00:00 2001 From: nhatvu148 Date: Sat, 21 Feb 2026 23:11:57 +0700 Subject: [PATCH 06/14] feat: add OpenSky OAuth2 authentication --- apps/api/package.json | 9 +++-- apps/api/src/index.ts | 2 + apps/api/src/services/opensky.service.ts | 49 +++++++++++++++++++++++- package-lock.json | 13 +++++++ 4 files changed, 68 insertions(+), 5 deletions(-) diff --git a/apps/api/package.json b/apps/api/package.json index 964b344..a225916 100644 --- a/apps/api/package.json +++ b/apps/api/package.json @@ -9,19 +9,20 @@ "clean": "rm -rf dist" }, "dependencies": { - "@flight-tracker/types": "*", "@flight-tracker/config": "*", + "@flight-tracker/types": "*", + "compression": "^1.7.5", "cors": "^2.8.5", + "dotenv": "^17.3.1", "express": "^4.21.0", "helmet": "^8.0.0", - "morgan": "^1.10.0", - "compression": "^1.7.5" + "morgan": "^1.10.0" }, "devDependencies": { + "@types/compression": "^1.7.5", "@types/cors": "^2.8.17", "@types/express": "^5.0.0", "@types/morgan": "^1.9.9", - "@types/compression": "^1.7.5", "@types/node": "^22.0.0", "tsx": "^4.19.0", "typescript": "^5.7.0" diff --git a/apps/api/src/index.ts b/apps/api/src/index.ts index 3c04c66..394bd61 100644 --- a/apps/api/src/index.ts +++ b/apps/api/src/index.ts @@ -1,3 +1,5 @@ +import dotenv from "dotenv"; +dotenv.config({ path: "../../.env.local" }); import express from "express"; import cors from "cors"; import helmet from "helmet"; diff --git a/apps/api/src/services/opensky.service.ts b/apps/api/src/services/opensky.service.ts index 2a91fb4..a923d84 100644 --- a/apps/api/src/services/opensky.service.ts +++ b/apps/api/src/services/opensky.service.ts @@ -1,6 +1,45 @@ import type { FlightData } from "@flight-tracker/types"; const OPENSKY_API = "https://opensky-network.org/api"; +const OPENSKY_TOKEN_URL = + "https://auth.opensky-network.org/auth/realms/opensky-network/protocol/openid-connect/token"; + +// OAuth2 token cache +let cachedToken: { token: string; expiresAt: number } | null = null; + +async function getAccessToken(): Promise { + const clientId = process.env.OPENSKY_CLIENT_ID; + const clientSecret = process.env.OPENSKY_CLIENT_SECRET; + if (!clientId || !clientSecret) return null; + + // Reuse token if still valid (with 60s buffer) + if (cachedToken && Date.now() < cachedToken.expiresAt - 60_000) { + return cachedToken.token; + } + + const res = await fetch(OPENSKY_TOKEN_URL, { + method: "POST", + headers: { "Content-Type": "application/x-www-form-urlencoded" }, + body: new URLSearchParams({ + grant_type: "client_credentials", + client_id: clientId, + client_secret: clientSecret, + }), + }); + + if (!res.ok) { + console.warn(`OpenSky token request failed: ${res.status}`); + return null; + } + + const data = await res.json(); + cachedToken = { + token: data.access_token, + expiresAt: Date.now() + data.expires_in * 1000, + }; + console.log("OpenSky OAuth2 token acquired"); + return cachedToken.token; +} interface OpenSkyState { // [0] icao24, [1] callsign, [2] origin_country, [3] time_position, @@ -106,9 +145,17 @@ export async function fetchLiveFlights( url += `?${params}`; } - const res = await fetch(url); + const headers: Record = {}; + const token = await getAccessToken(); + if (token) { + headers["Authorization"] = `Bearer ${token}`; + } + + const res = await fetch(url, { headers }); if (!res.ok) { + // Invalidate token on 401 so next call re-authenticates + if (res.status === 401) cachedToken = null; throw new Error(`OpenSky API error: ${res.status} ${res.statusText}`); } diff --git a/package-lock.json b/package-lock.json index 711fc87..9d4b4c8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -26,6 +26,7 @@ "@flight-tracker/types": "*", "compression": "^1.7.5", "cors": "^2.8.5", + "dotenv": "^17.3.1", "express": "^4.21.0", "helmet": "^8.0.0", "morgan": "^1.10.0" @@ -2805,6 +2806,18 @@ "node": ">=8" } }, + "node_modules/dotenv": { + "version": "17.3.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.3.1.tgz", + "integrity": "sha512-IO8C/dzEb6O3F9/twg6ZLXz164a2fhTnEWb95H23Dm4OuN+92NmEAlTrupP9VW6Jm3sO26tQlqyvyi4CsnY9GA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, "node_modules/dunder-proto": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", From 704035f23fd7a73d3133cdaac0b24bd0dd8127b8 Mon Sep 17 00:00:00 2001 From: nhatvu148 Date: Sun, 22 Feb 2026 00:03:22 +0700 Subject: [PATCH 07/14] fix: aircraft click-to-select deselect race --- apps/web/src/components/map/FlightMap.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/apps/web/src/components/map/FlightMap.tsx b/apps/web/src/components/map/FlightMap.tsx index d0b5e28..74f285c 100644 --- a/apps/web/src/components/map/FlightMap.tsx +++ b/apps/web/src/components/map/FlightMap.tsx @@ -34,7 +34,14 @@ function MapEventHandler() { setZoom(e.target.getZoom()); }, click() { - selectFlight(null); + // Defer deselect so marker click (which fires in the same tick) takes priority + const current = useMapStore.getState().selectedFlight; + setTimeout(() => { + // Only deselect if no marker click changed the selection in this tick + if (useMapStore.getState().selectedFlight === current) { + selectFlight(null); + } + }, 0); }, }); From 5b34e197682fa4568dcbb004eca8e9feaa59e978 Mon Sep 17 00:00:00 2001 From: nhatvu148 Date: Sun, 22 Feb 2026 00:54:14 +0700 Subject: [PATCH 08/14] feat: aircraft photo and callsign label --- apps/web/src/components/map/FlightMarkers.tsx | 76 +++++++++++++------ .../src/components/ui/FlightDetailPanel.tsx | 47 ++++++++++++ 2 files changed, 100 insertions(+), 23 deletions(-) diff --git a/apps/web/src/components/map/FlightMarkers.tsx b/apps/web/src/components/map/FlightMarkers.tsx index 163b7d9..47697ea 100644 --- a/apps/web/src/components/map/FlightMarkers.tsx +++ b/apps/web/src/components/map/FlightMarkers.tsx @@ -36,12 +36,12 @@ export function FlightMarkers() { const map = useMap(); // eslint-disable-next-line @typescript-eslint/no-explicit-any const canvasRef = useRef(null); - const markerMapRef = useRef>(new Map()); + const labelMarkerRef = useRef(null); const { data: flights } = useFlights(); const selectedFlight = useMapStore((s) => s.selectedFlight); const selectFlight = useMapStore((s) => s.selectFlight); - // Main effect: rebuild markers only when flight data changes + // Single effect: rebuild all markers when flights or selection changes useEffect(() => { if (!map) return; @@ -53,49 +53,79 @@ export function FlightMarkers() { const canvas = canvasRef.current; canvas.clear(); - markerMapRef.current.clear(); + + // Remove previous callsign label + if (labelMarkerRef.current) { + labelMarkerRef.current.remove(); + labelMarkerRef.current = null; + } if (flights?.length) { const markers: L.Marker[] = []; + const selectedIcao24 = selectedFlight?.aircraft.icao24; for (const flight of flights) { const { latitude, longitude, direction } = flight.geography; if (latitude == null || longitude == null) continue; const angle = getClosest(ANGLE_STEPS, direction); + const isSelected = flight.aircraft.icao24 === selectedIcao24; const marker = L.marker([latitude, longitude], { - icon: getAircraftIcon(angle), + icon: getAircraftIcon(angle, isSelected), }); marker.on("click", () => selectFlight(flight)); - markerMapRef.current.set(flight.aircraft.icao24, { marker, flight, angle }); markers.push(marker); } canvas.addMarkers(markers); } - }, [map, flights, selectFlight]); - - // Separate effect: highlight/unhighlight selected marker without full rebuild - useEffect(() => { - const canvas = canvasRef.current; - if (!canvas) return; - const selectedIcao24 = selectedFlight?.aircraft.icao24; - - for (const [icao24, entry] of markerMapRef.current) { - const shouldBeSelected = icao24 === selectedIcao24; - const currentIcon = entry.marker.getIcon() as L.Icon; - const targetIcon = getAircraftIcon(entry.angle, shouldBeSelected); - - if (currentIcon !== targetIcon) { - entry.marker.setIcon(targetIcon); - canvas.removeMarker(entry.marker); - canvas.addMarker(entry.marker); + // Add callsign label above selected aircraft + if (selectedFlight) { + const { latitude, longitude } = selectedFlight.geography; + if (latitude != null && longitude != null) { + const callsign = + selectedFlight.flight.icaoNumber || + selectedFlight.flight.iataNumber || + selectedFlight.aircraft.icao24; + + labelMarkerRef.current = L.marker([latitude, longitude], { + icon: L.divIcon({ + className: "", + html: `
${callsign}
`, + iconSize: [0, 0], + iconAnchor: [0, 0], + }), + interactive: false, + zIndexOffset: 1000, + }).addTo(map); } } - }, [selectedFlight]); + + return () => { + if (labelMarkerRef.current) { + labelMarkerRef.current.remove(); + labelMarkerRef.current = null; + } + }; + }, [map, flights, selectedFlight, selectFlight]); return null; } diff --git a/apps/web/src/components/ui/FlightDetailPanel.tsx b/apps/web/src/components/ui/FlightDetailPanel.tsx index f03305e..a924371 100644 --- a/apps/web/src/components/ui/FlightDetailPanel.tsx +++ b/apps/web/src/components/ui/FlightDetailPanel.tsx @@ -1,5 +1,6 @@ "use client"; +import { useEffect, useState } from "react"; import { useMapStore } from "@/stores/map-store"; function DataRow({ label, value }: { label: string; value: string | number }) { @@ -11,6 +12,47 @@ function DataRow({ label, value }: { label: string; value: string | number }) { ); } +function AircraftPhoto({ icao24 }: { icao24: string }) { + const [photoUrl, setPhotoUrl] = useState(null); + const [photographer, setPhotographer] = useState(""); + + useEffect(() => { + setPhotoUrl(null); + setPhotographer(""); + + fetch(`https://api.planespotters.net/pub/photos/hex/${icao24}`) + .then((r) => r.json()) + .then((data) => { + if (data.photos?.length) { + setPhotoUrl(data.photos[0].thumbnail_large?.src || data.photos[0].thumbnail?.src); + setPhotographer(data.photos[0].photographer || ""); + } + }) + .catch(() => {}); + }, [icao24]); + + if (!photoUrl) { + return ( +
+ + + +
+ ); + } + + return ( +
+ Aircraft + {photographer && ( + + {photographer} + + )} +
+ ); +} + export function FlightDetailPanel() { const selectedFlight = useMapStore((s) => s.selectedFlight); const selectFlight = useMapStore((s) => s.selectFlight); @@ -73,6 +115,11 @@ export function FlightDetailPanel() {
+ {/* Aircraft photo */} + {selectedFlight && ( + + )} + {/* Data rows */} {selectedFlight && (
From c843ad99eb48ef1a56b8987ac0e8e83b028c61ac Mon Sep 17 00:00:00 2001 From: nhatvu148 Date: Sun, 22 Feb 2026 00:54:21 +0700 Subject: [PATCH 09/14] fix: marker click deselect race with flag --- apps/web/src/components/map/FlightMap.tsx | 14 +++++--------- apps/web/src/components/map/FlightMarkers.tsx | 10 +++++++++- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/apps/web/src/components/map/FlightMap.tsx b/apps/web/src/components/map/FlightMap.tsx index 74f285c..1594086 100644 --- a/apps/web/src/components/map/FlightMap.tsx +++ b/apps/web/src/components/map/FlightMap.tsx @@ -12,7 +12,7 @@ import { import "leaflet/dist/leaflet.css"; import { getTileLayers, MAP_DEFAULTS } from "@flight-tracker/config"; import { useMapStore } from "@/stores/map-store"; -import { FlightMarkers } from "./FlightMarkers"; +import { FlightMarkers, getMarkerClicked } from "./FlightMarkers"; function MapEventHandler() { const { setCenter, setZoom, setBounds, selectFlight } = useMapStore(); @@ -34,14 +34,10 @@ function MapEventHandler() { setZoom(e.target.getZoom()); }, click() { - // Defer deselect so marker click (which fires in the same tick) takes priority - const current = useMapStore.getState().selectedFlight; - setTimeout(() => { - // Only deselect if no marker click changed the selection in this tick - if (useMapStore.getState().selectedFlight === current) { - selectFlight(null); - } - }, 0); + // Skip deselect if a marker was just clicked (both fire on same map click) + if (!getMarkerClicked()) { + selectFlight(null); + } }, }); diff --git a/apps/web/src/components/map/FlightMarkers.tsx b/apps/web/src/components/map/FlightMarkers.tsx index 47697ea..a2366fb 100644 --- a/apps/web/src/components/map/FlightMarkers.tsx +++ b/apps/web/src/components/map/FlightMarkers.tsx @@ -32,6 +32,10 @@ function getAircraftIcon(angle: number, selected = false): L.Icon { return iconCache.get(key)!; } +// Set by marker click, checked by map background click to prevent deselect race +let _markerClicked = false; +export function getMarkerClicked() { return _markerClicked; } + export function FlightMarkers() { const map = useMap(); // eslint-disable-next-line @typescript-eslint/no-explicit-any @@ -75,7 +79,11 @@ export function FlightMarkers() { icon: getAircraftIcon(angle, isSelected), }); - marker.on("click", () => selectFlight(flight)); + marker.on("click", () => { + _markerClicked = true; + selectFlight(flight); + setTimeout(() => { _markerClicked = false; }, 0); + }); markers.push(marker); } From d008ae47a5127954fd19aed178ec3709cc4ba365 Mon Sep 17 00:00:00 2001 From: nhatvu148 Date: Sun, 22 Feb 2026 09:24:31 +0700 Subject: [PATCH 10/14] feat: altitude colors, filters, airports pages --- apps/api/src/services/opensky.service.ts | 1 + .../airport/[code]/AirportDetailClient.tsx | 87 +++++++++++ apps/web/src/app/airport/[code]/page.tsx | 14 ++ .../src/app/airports/AirportsPageClient.tsx | 130 ++++++++++++++++ apps/web/src/app/airports/page.tsx | 9 ++ apps/web/src/app/globals.css | 25 +++ .../web/src/components/map/AirportMarkers.tsx | 78 ++++++++++ apps/web/src/components/map/FlightMap.tsx | 2 + apps/web/src/components/map/FlightMarkers.tsx | 85 ++++++---- apps/web/src/components/ui/BottomToolbar.tsx | 78 +++++++--- apps/web/src/components/ui/FilterPanel.tsx | 145 ++++++++++++++++++ .../src/components/ui/FlightDetailPanel.tsx | 54 ++++++- apps/web/src/components/ui/FlightSidebar.tsx | 4 +- apps/web/src/components/ui/TopBar.tsx | 50 ++++-- apps/web/src/hooks/useFilteredFlights.ts | 38 +++++ apps/web/src/stores/map-store.ts | 46 ++++++ packages/config/src/index.ts | 32 ++++ packages/types/src/flight.ts | 1 + 18 files changed, 814 insertions(+), 65 deletions(-) create mode 100644 apps/web/src/app/airport/[code]/AirportDetailClient.tsx create mode 100644 apps/web/src/app/airport/[code]/page.tsx create mode 100644 apps/web/src/app/airports/AirportsPageClient.tsx create mode 100644 apps/web/src/app/airports/page.tsx create mode 100644 apps/web/src/components/map/AirportMarkers.tsx create mode 100644 apps/web/src/components/ui/FilterPanel.tsx create mode 100644 apps/web/src/hooks/useFilteredFlights.ts diff --git a/apps/api/src/services/opensky.service.ts b/apps/api/src/services/opensky.service.ts index a923d84..e6c85b7 100644 --- a/apps/api/src/services/opensky.service.ts +++ b/apps/api/src/services/opensky.service.ts @@ -111,6 +111,7 @@ function toFlightData(state: OpenSkyState): FlightData | null { icaoNumber: callsign || state[0], number: callsign, }, + originCountry: state[2] || undefined, geography: { altitude: state[7] ?? state[13] ?? 0, direction: heading ?? 0, diff --git a/apps/web/src/app/airport/[code]/AirportDetailClient.tsx b/apps/web/src/app/airport/[code]/AirportDetailClient.tsx new file mode 100644 index 0000000..56e1582 --- /dev/null +++ b/apps/web/src/app/airport/[code]/AirportDetailClient.tsx @@ -0,0 +1,87 @@ +"use client"; + +import Link from "next/link"; +import { useQuery } from "@tanstack/react-query"; +import { getAirport } from "@flight-tracker/api-client"; +import { TopBar } from "@/components/ui/TopBar"; + +export function AirportDetailClient({ code }: { code: string }) { + const { data: airport, isLoading, error } = useQuery({ + queryKey: ["airport", code], + queryFn: () => getAirport(code), + }); + + return ( +
+ +
+
+ + ← All Airports + +
+ + {isLoading ? ( +
Loading airport...
+ ) : error ? ( +
+ Airport not found +
+ ) : airport ? ( +
+
+ + {airport.codeIataAirport} + + + {airport.codeIcaoAirport} + +
+ +

{airport.nameAirport}

+ +
+ + + + + + + {airport.phone && ( + + )} +
+ +
+ + + + + + View on Map + +
+
+ ) : null} +
+
+ ); +} + +function DetailRow({ label, value }: { label: string; value: string }) { + return ( +
+ {label} + {value} +
+ ); +} diff --git a/apps/web/src/app/airport/[code]/page.tsx b/apps/web/src/app/airport/[code]/page.tsx new file mode 100644 index 0000000..2b55401 --- /dev/null +++ b/apps/web/src/app/airport/[code]/page.tsx @@ -0,0 +1,14 @@ +import { AirportDetailClient } from "./AirportDetailClient"; + +export const metadata = { + title: "Airport Detail — Flight Tracker", +}; + +export default async function AirportDetailPage({ + params, +}: { + params: Promise<{ code: string }>; +}) { + const { code } = await params; + return ; +} diff --git a/apps/web/src/app/airports/AirportsPageClient.tsx b/apps/web/src/app/airports/AirportsPageClient.tsx new file mode 100644 index 0000000..05bf55b --- /dev/null +++ b/apps/web/src/app/airports/AirportsPageClient.tsx @@ -0,0 +1,130 @@ +"use client"; + +import { useState, useMemo } from "react"; +import Link from "next/link"; +import { useAirports } from "@/hooks/useFlights"; +import { TopBar } from "@/components/ui/TopBar"; + +const PAGE_SIZE = 25; + +export function AirportsPageClient() { + const { data: airports, isLoading } = useAirports(); + const [search, setSearch] = useState(""); + const [page, setPage] = useState(0); + + const filtered = useMemo(() => { + if (!airports) return []; + if (!search.trim()) return airports; + const q = search.toLowerCase(); + return airports.filter( + (a) => + a.codeIataAirport.toLowerCase().includes(q) || + a.nameAirport.toLowerCase().includes(q) || + a.nameCountry.toLowerCase().includes(q) || + a.codeIataCity.toLowerCase().includes(q) + ); + }, [airports, search]); + + const totalPages = Math.ceil(filtered.length / PAGE_SIZE); + const pageData = filtered.slice(page * PAGE_SIZE, (page + 1) * PAGE_SIZE); + + return ( +
+ +
+
+

Airports

+ + {filtered.length.toLocaleString()} airports + +
+ + {/* Search */} + { + setSearch(e.target.value); + setPage(0); + }} + placeholder="Search by IATA, name, city, or country..." + className="w-full h-9 px-3 mb-4 rounded bg-slate-800/80 border border-slate-600/50 text-sm text-slate-200 placeholder-slate-500 outline-none focus:border-sky-500/50 transition-colors" + /> + + {isLoading ? ( +
Loading airports...
+ ) : ( + <> + {/* Table */} +
+ + + + + + + + + + + {pageData.map((airport) => ( + + + + + + + ))} + {pageData.length === 0 && ( + + + + )} + +
IATANameCityCountry
+ + {airport.codeIataAirport} + + {airport.nameAirport} + {airport.codeIataCity} + + {airport.nameCountry} +
+ No airports found +
+
+ + {/* Pagination */} + {totalPages > 1 && ( +
+ + + Page {page + 1} of {totalPages} + + +
+ )} + + )} +
+
+ ); +} diff --git a/apps/web/src/app/airports/page.tsx b/apps/web/src/app/airports/page.tsx new file mode 100644 index 0000000..72c4c02 --- /dev/null +++ b/apps/web/src/app/airports/page.tsx @@ -0,0 +1,9 @@ +import { AirportsPageClient } from "./AirportsPageClient"; + +export const metadata = { + title: "Airports — Flight Tracker", +}; + +export default function AirportsPage() { + return ; +} diff --git a/apps/web/src/app/globals.css b/apps/web/src/app/globals.css index 900dd87..e4108f9 100644 --- a/apps/web/src/app/globals.css +++ b/apps/web/src/app/globals.css @@ -38,3 +38,28 @@ .leaflet-control-layers label { color: #fff !important; } + +/* Airport tooltip */ +.airport-tooltip { + background: rgba(26, 29, 33, 0.92) !important; + color: #e2e8f0 !important; + border: 1px solid rgba(100, 116, 139, 0.4) !important; + border-radius: 6px !important; + padding: 4px 8px !important; + font-size: 12px !important; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important; +} + +.airport-tooltip .leaflet-tooltip-tip { + border-top-color: rgba(26, 29, 33, 0.92) !important; +} + +/* Airport IATA label */ +.airport-label { + font-size: 10px; + font-weight: 600; + color: #22c55e; + text-shadow: 0 0 3px rgba(0, 0, 0, 0.8), 0 0 6px rgba(0, 0, 0, 0.5); + white-space: nowrap; + pointer-events: none; +} diff --git a/apps/web/src/components/map/AirportMarkers.tsx b/apps/web/src/components/map/AirportMarkers.tsx new file mode 100644 index 0000000..663d905 --- /dev/null +++ b/apps/web/src/components/map/AirportMarkers.tsx @@ -0,0 +1,78 @@ +"use client"; + +import { useEffect, useRef } from "react"; +import { useMap } from "react-leaflet"; +import L from "leaflet"; +import { useAirports } from "@/hooks/useFlights"; +import { useMapStore } from "@/stores/map-store"; +import type { AirportData } from "@flight-tracker/types"; + +const AIRPORT_COLOR = "#22c55e"; +const MIN_ZOOM_DOTS = 7; +const MIN_ZOOM_LABELS = 9; + +export function AirportMarkers() { + const map = useMap(); + const zoom = useMapStore((s) => s.zoom); + const bounds = useMapStore((s) => s.bounds); + const { data: airports } = useAirports(); + const layerRef = useRef(L.layerGroup()); + + useEffect(() => { + layerRef.current.addTo(map); + return () => { + layerRef.current.remove(); + }; + }, [map]); + + useEffect(() => { + const layer = layerRef.current; + layer.clearLayers(); + + if (zoom < MIN_ZOOM_DOTS || !airports?.length || !bounds) return; + + // Filter airports to viewport + const visible = airports.filter( + (a: AirportData) => + a.latitudeAirport >= bounds.south && + a.latitudeAirport <= bounds.north && + a.longitudeAirport >= bounds.west && + a.longitudeAirport <= bounds.east + ); + + const showLabels = zoom >= MIN_ZOOM_LABELS; + + for (const airport of visible) { + const latlng: L.LatLngExpression = [airport.latitudeAirport, airport.longitudeAirport]; + + // Green dot + L.circleMarker(latlng, { + radius: 4, + fillColor: AIRPORT_COLOR, + fillOpacity: 0.8, + color: AIRPORT_COLOR, + weight: 1, + }) + .bindTooltip( + `${airport.codeIataAirport}
${airport.nameAirport}`, + { className: "airport-tooltip" } + ) + .addTo(layer); + + // IATA label at higher zoom + if (showLabels && airport.codeIataAirport) { + L.marker(latlng, { + icon: L.divIcon({ + className: "airport-label", + html: airport.codeIataAirport, + iconSize: [40, 14], + iconAnchor: [-6, 7], + }), + interactive: false, + }).addTo(layer); + } + } + }, [zoom, bounds, airports]); + + return null; +} diff --git a/apps/web/src/components/map/FlightMap.tsx b/apps/web/src/components/map/FlightMap.tsx index 1594086..15713a1 100644 --- a/apps/web/src/components/map/FlightMap.tsx +++ b/apps/web/src/components/map/FlightMap.tsx @@ -13,6 +13,7 @@ import "leaflet/dist/leaflet.css"; import { getTileLayers, MAP_DEFAULTS } from "@flight-tracker/config"; import { useMapStore } from "@/stores/map-store"; import { FlightMarkers, getMarkerClicked } from "./FlightMarkers"; +import { AirportMarkers } from "./AirportMarkers"; function MapEventHandler() { const { setCenter, setZoom, setBounds, selectFlight } = useMapStore(); @@ -86,6 +87,7 @@ export default function FlightMap() { ))} + diff --git a/apps/web/src/components/map/FlightMarkers.tsx b/apps/web/src/components/map/FlightMarkers.tsx index a2366fb..7b1b2e7 100644 --- a/apps/web/src/components/map/FlightMarkers.tsx +++ b/apps/web/src/components/map/FlightMarkers.tsx @@ -1,35 +1,60 @@ "use client"; -import { useEffect, useRef } from "react"; +import { useEffect, useRef, useState } from "react"; import { useMap } from "react-leaflet"; import L from "leaflet"; import "leaflet-markers-canvas"; -import { useFlights } from "@/hooks/useFlights"; +import { useFilteredFlights } from "@/hooks/useFilteredFlights"; import { getClosest } from "@flight-tracker/utils"; -import { ANGLE_STEPS } from "@flight-tracker/config"; +import { ANGLE_STEPS, ALTITUDE_BANDS, getAltitudeBand } from "@flight-tracker/config"; import { useMapStore } from "@/stores/map-store"; -import type { FlightData } from "@flight-tracker/types"; const ICON_SIZE = 22; const ICON_SIZE_SELECTED = 30; -// Cache icons by angle + selected state +// Original SVG colors to replace +const ORIG_FILL = "rgb(242,204,39)"; +const ORIG_STROKE = "rgb(80,60,0)"; + +// Cache: raw SVG text per angle +const svgTextCache = new Map(); +// Cache: data URL icons keyed by "angle-bandIndex-selected" const iconCache = new Map(); -function getAircraftIcon(angle: number, selected = false): L.Icon { - const key = `${angle}-${selected ? "sel" : "def"}`; - if (!iconCache.has(key)) { - const size = selected ? ICON_SIZE_SELECTED : ICON_SIZE; - const anchor = size / 2; - iconCache.set( - key, - L.icon({ - iconUrl: `/aircraft-icons/aircraft-${angle}.svg`, - iconSize: [size, size], - iconAnchor: [anchor, anchor], - }) - ); - } - return iconCache.get(key)!; + +async function preloadSvgs(): Promise { + const fetches = ANGLE_STEPS.map(async (angle) => { + if (svgTextCache.has(angle)) return; + const res = await fetch(`/aircraft-icons/aircraft-${angle}.svg`); + const text = await res.text(); + svgTextCache.set(angle, text); + }); + await Promise.all(fetches); +} + +function getColoredIcon(angle: number, bandIndex: number, selected: boolean): L.Icon { + const key = `${angle}-${bandIndex}-${selected ? "sel" : "def"}`; + if (iconCache.has(key)) return iconCache.get(key)!; + + const band = ALTITUDE_BANDS[bandIndex]; + let svgText = svgTextCache.get(angle) ?? ""; + svgText = svgText.replace(new RegExp(escapeRegex(ORIG_FILL), "g"), band.fill); + svgText = svgText.replace(new RegExp(escapeRegex(ORIG_STROKE), "g"), band.stroke); + + const dataUrl = `data:image/svg+xml;base64,${btoa(svgText)}`; + const size = selected ? ICON_SIZE_SELECTED : ICON_SIZE; + const anchor = size / 2; + + const icon = L.icon({ + iconUrl: dataUrl, + iconSize: [size, size], + iconAnchor: [anchor, anchor], + }); + iconCache.set(key, icon); + return icon; +} + +function escapeRegex(s: string): string { + return s.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); } // Set by marker click, checked by map background click to prevent deselect race @@ -41,13 +66,20 @@ export function FlightMarkers() { // eslint-disable-next-line @typescript-eslint/no-explicit-any const canvasRef = useRef(null); const labelMarkerRef = useRef(null); - const { data: flights } = useFlights(); + const { data: flights } = useFilteredFlights(); const selectedFlight = useMapStore((s) => s.selectedFlight); const selectFlight = useMapStore((s) => s.selectFlight); + const [svgsReady, setSvgsReady] = useState(svgTextCache.size > 0); + + // Preload SVG text on mount + useEffect(() => { + if (svgTextCache.size > 0) return; + preloadSvgs().then(() => setSvgsReady(true)); + }, []); - // Single effect: rebuild all markers when flights or selection changes + // Rebuild all markers when flights, selection, or SVG readiness changes useEffect(() => { - if (!map) return; + if (!map || !svgsReady) return; if (!canvasRef.current) { // @ts-expect-error leaflet-markers-canvas extends L @@ -69,14 +101,15 @@ export function FlightMarkers() { const selectedIcao24 = selectedFlight?.aircraft.icao24; for (const flight of flights) { - const { latitude, longitude, direction } = flight.geography; + const { latitude, longitude, direction, altitude } = flight.geography; if (latitude == null || longitude == null) continue; const angle = getClosest(ANGLE_STEPS, direction); const isSelected = flight.aircraft.icao24 === selectedIcao24; + const bandIndex = getAltitudeBand(altitude, flight.speed.isGround === 1); const marker = L.marker([latitude, longitude], { - icon: getAircraftIcon(angle, isSelected), + icon: getColoredIcon(angle, bandIndex, isSelected), }); marker.on("click", () => { @@ -133,7 +166,7 @@ export function FlightMarkers() { labelMarkerRef.current = null; } }; - }, [map, flights, selectedFlight, selectFlight]); + }, [map, flights, selectedFlight, selectFlight, svgsReady]); return null; } diff --git a/apps/web/src/components/ui/BottomToolbar.tsx b/apps/web/src/components/ui/BottomToolbar.tsx index 9791eb1..c990cd3 100644 --- a/apps/web/src/components/ui/BottomToolbar.tsx +++ b/apps/web/src/components/ui/BottomToolbar.tsx @@ -1,29 +1,67 @@ "use client"; +import { useFilteredFlights } from "@/hooks/useFilteredFlights"; +import { useMapStore } from "@/stores/map-store"; +import { FilterPanel } from "./FilterPanel"; + export function BottomToolbar() { + const { data: flights, unfilteredCount } = useFilteredFlights(); + const filtersActive = useMapStore((s) => s.filtersActive); + const filterPanelOpen = useMapStore((s) => s.filterPanelOpen); + const setFilterPanelOpen = useMapStore((s) => s.setFilterPanelOpen); + + const total = flights?.length ?? 0; + const airborne = flights?.filter((f) => f.speed.isGround !== 1).length ?? 0; + const ground = total - airborne; + return ( -
- + <> + +
+ - + -
+
- Flight Tracker v1.0 -
+ {/* Live flight stats */} +
+ + {total.toLocaleString()} flights + + {airborne.toLocaleString()} airborne + {ground.toLocaleString()} ground + {filtersActive && ( + + ({unfilteredCount.toLocaleString()} unfiltered) + + )} +
+
+ ); } diff --git a/apps/web/src/components/ui/FilterPanel.tsx b/apps/web/src/components/ui/FilterPanel.tsx new file mode 100644 index 0000000..edccbb4 --- /dev/null +++ b/apps/web/src/components/ui/FilterPanel.tsx @@ -0,0 +1,145 @@ +"use client"; + +import { useMapStore } from "@/stores/map-store"; + +function RangeRow({ + label, + min, + max, + valueMin, + valueMax, + step, + unit, + onChangeMin, + onChangeMax, +}: { + label: string; + min: number; + max: number; + valueMin: number; + valueMax: number; + step: number; + unit: string; + onChangeMin: (v: number) => void; + onChangeMax: (v: number) => void; +}) { + return ( +
+
+ {label} + + {valueMin.toLocaleString()} – {valueMax.toLocaleString()} {unit} + +
+
+ { + const v = Number(e.target.value); + onChangeMin(Math.min(v, valueMax)); + }} + className="flex-1 accent-sky-500 h-1" + /> + { + const v = Number(e.target.value); + onChangeMax(Math.max(v, valueMin)); + }} + className="flex-1 accent-sky-500 h-1" + /> +
+
+ ); +} + +export function FilterPanel() { + const filters = useMapStore((s) => s.filters); + const setFilters = useMapStore((s) => s.setFilters); + const resetFilters = useMapStore((s) => s.resetFilters); + const filterPanelOpen = useMapStore((s) => s.filterPanelOpen); + const setFilterPanelOpen = useMapStore((s) => s.setFilterPanelOpen); + + if (!filterPanelOpen) return null; + + return ( +
+
+ Filters +
+ + +
+
+ + setFilters({ altMinFt: v })} + onChangeMax={(v) => setFilters({ altMaxFt: v })} + /> + + setFilters({ speedMinKts: v })} + onChangeMax={(v) => setFilters({ speedMaxKts: v })} + /> + +
+ + +
+
+ ); +} diff --git a/apps/web/src/components/ui/FlightDetailPanel.tsx b/apps/web/src/components/ui/FlightDetailPanel.tsx index a924371..63120d5 100644 --- a/apps/web/src/components/ui/FlightDetailPanel.tsx +++ b/apps/web/src/components/ui/FlightDetailPanel.tsx @@ -2,12 +2,37 @@ import { useEffect, useState } from "react"; import { useMapStore } from "@/stores/map-store"; +import { ALTITUDE_BANDS, getAltitudeBand } from "@flight-tracker/config"; -function DataRow({ label, value }: { label: string; value: string | number }) { +function SectionHeader({ title }: { title: string }) { + return ( +
+ {title} +
+ ); +} + +function DataRow({ + label, + value, + dot, +}: { + label: string; + value: string | number; + dot?: string; +}) { return (
{label} - {value} + + {dot && ( + + )} + {value} +
); } @@ -83,6 +108,11 @@ export function FlightDetailPanel() { " UTC" : ""; + const bandIndex = selectedFlight + ? getAltitudeBand(selectedFlight.geography.altitude, isGrounded) + : 0; + const altColor = ALTITUDE_BANDS[bandIndex].fill; + return (
)} - {/* Data rows */} + {/* Data sections */} {selectedFlight && (
- - + + + + + + + + - - + {selectedFlight.originCountry && ( + + )}
)} diff --git a/apps/web/src/components/ui/FlightSidebar.tsx b/apps/web/src/components/ui/FlightSidebar.tsx index ea5a924..108a574 100644 --- a/apps/web/src/components/ui/FlightSidebar.tsx +++ b/apps/web/src/components/ui/FlightSidebar.tsx @@ -2,7 +2,7 @@ import React, { useMemo } from "react"; import { useMapStore } from "@/stores/map-store"; -import { useFlights } from "@/hooks/useFlights"; +import { useFilteredFlights } from "@/hooks/useFilteredFlights"; import type { FlightData } from "@flight-tracker/types"; const FlightRow = React.memo(function FlightRow({ @@ -46,7 +46,7 @@ export function FlightSidebar() { const searchQuery = useMapStore((s) => s.searchQuery); const selectedFlight = useMapStore((s) => s.selectedFlight); const selectFlight = useMapStore((s) => s.selectFlight); - const { data: flights } = useFlights(); + const { data: flights } = useFilteredFlights(); const filtered = useMemo(() => { if (!flights) return []; diff --git a/apps/web/src/components/ui/TopBar.tsx b/apps/web/src/components/ui/TopBar.tsx index 6934e38..4fa8776 100644 --- a/apps/web/src/components/ui/TopBar.tsx +++ b/apps/web/src/components/ui/TopBar.tsx @@ -1,12 +1,16 @@ "use client"; import { useEffect, useState } from "react"; +import Link from "next/link"; +import { usePathname } from "next/navigation"; import { useMapStore } from "@/stores/map-store"; export function TopBar() { const searchQuery = useMapStore((s) => s.searchQuery); const setSearchQuery = useMapStore((s) => s.setSearchQuery); const [utc, setUtc] = useState(""); + const pathname = usePathname(); + const isMapPage = pathname === "/"; useEffect(() => { function tick() { @@ -43,16 +47,42 @@ export function TopBar() { FlightTracker
- {/* Search */} -
- setSearchQuery(e.target.value)} - placeholder="Search flights..." - className="w-full h-8 px-3 rounded bg-slate-800/80 border border-slate-600/50 text-sm text-slate-200 placeholder-slate-500 outline-none focus:border-sky-500/50 transition-colors" - /> -
+ {/* Nav links */} + + + {/* Search (map page only) */} + {isMapPage && ( +
+ setSearchQuery(e.target.value)} + placeholder="Search flights..." + className="w-full h-8 px-3 rounded bg-slate-800/80 border border-slate-600/50 text-sm text-slate-200 placeholder-slate-500 outline-none focus:border-sky-500/50 transition-colors" + /> +
+ )} {/* Spacer */}
diff --git a/apps/web/src/hooks/useFilteredFlights.ts b/apps/web/src/hooks/useFilteredFlights.ts new file mode 100644 index 0000000..b624992 --- /dev/null +++ b/apps/web/src/hooks/useFilteredFlights.ts @@ -0,0 +1,38 @@ +"use client"; + +import { useMemo } from "react"; +import { useFlights } from "./useFlights"; +import { useMapStore } from "@/stores/map-store"; +import type { FlightData } from "@flight-tracker/types"; + +export function useFilteredFlights() { + const query = useFlights(); + const filters = useMapStore((s) => s.filters); + const filtersActive = useMapStore((s) => s.filtersActive); + + const filtered = useMemo(() => { + const flights = query.data; + if (!flights) return undefined; + if (!filtersActive) return flights; + + return flights.filter((f: FlightData) => { + const isGround = f.speed.isGround === 1; + if (isGround && !filters.showGround) return false; + if (!isGround && !filters.showAirborne) return false; + + const altFt = f.geography.altitude * 3.28084; + if (altFt < filters.altMinFt || altFt > filters.altMaxFt) return false; + + const speedKts = f.speed.horizontal * 1.94384; + if (speedKts < filters.speedMinKts || speedKts > filters.speedMaxKts) return false; + + return true; + }); + }, [query.data, filters, filtersActive]); + + return { + ...query, + data: filtered, + unfilteredCount: query.data?.length ?? 0, + }; +} diff --git a/apps/web/src/stores/map-store.ts b/apps/web/src/stores/map-store.ts index 56e6dbf..7e13945 100644 --- a/apps/web/src/stores/map-store.ts +++ b/apps/web/src/stores/map-store.ts @@ -9,6 +9,24 @@ interface MapBounds { west: number; } +export interface FlightFilters { + altMinFt: number; + altMaxFt: number; + speedMinKts: number; + speedMaxKts: number; + showGround: boolean; + showAirborne: boolean; +} + +const DEFAULT_FILTERS: FlightFilters = { + altMinFt: 0, + altMaxFt: 60000, + speedMinKts: 0, + speedMaxKts: 700, + showGround: true, + showAirborne: true, +}; + interface MapState { center: { lat: number; lng: number }; zoom: number; @@ -17,6 +35,9 @@ interface MapState { selectedFlight: FlightData | null; sidebarOpen: boolean; searchQuery: string; + filters: FlightFilters; + filtersActive: boolean; + filterPanelOpen: boolean; setCenter: (center: { lat: number; lng: number }) => void; setZoom: (zoom: number) => void; setBounds: (bounds: MapBounds) => void; @@ -24,6 +45,20 @@ interface MapState { selectFlight: (flight: FlightData | null) => void; setSidebarOpen: (open: boolean) => void; setSearchQuery: (query: string) => void; + setFilters: (filters: Partial) => void; + resetFilters: () => void; + setFilterPanelOpen: (open: boolean) => void; +} + +function isFiltersActive(f: FlightFilters): boolean { + return ( + f.altMinFt !== DEFAULT_FILTERS.altMinFt || + f.altMaxFt !== DEFAULT_FILTERS.altMaxFt || + f.speedMinKts !== DEFAULT_FILTERS.speedMinKts || + f.speedMaxKts !== DEFAULT_FILTERS.speedMaxKts || + !f.showGround || + !f.showAirborne + ); } export const useMapStore = create((set) => ({ @@ -34,6 +69,9 @@ export const useMapStore = create((set) => ({ selectedFlight: null, sidebarOpen: true, searchQuery: "", + filters: { ...DEFAULT_FILTERS }, + filtersActive: false, + filterPanelOpen: false, setCenter: (center) => set({ center }), setZoom: (zoom) => set({ zoom }), setBounds: (bounds) => set({ bounds }), @@ -41,4 +79,12 @@ export const useMapStore = create((set) => ({ selectFlight: (flight) => set({ selectedFlight: flight }), setSidebarOpen: (open) => set({ sidebarOpen: open }), setSearchQuery: (query) => set({ searchQuery: query }), + setFilters: (partial) => + set((state) => { + const filters = { ...state.filters, ...partial }; + return { filters, filtersActive: isFiltersActive(filters) }; + }), + resetFilters: () => + set({ filters: { ...DEFAULT_FILTERS }, filtersActive: false }), + setFilterPanelOpen: (open) => set({ filterPanelOpen: open }), })); diff --git a/packages/config/src/index.ts b/packages/config/src/index.ts index 5a632f7..ecffc18 100644 --- a/packages/config/src/index.ts +++ b/packages/config/src/index.ts @@ -62,6 +62,38 @@ export function getTileLayers(mapTilerToken?: string): TileLayerConfig[] { ]; } +// Altitude bands for color-coded aircraft markers (altitude in feet) +export interface AltitudeBand { + label: string; + minFt: number; + maxFt: number; + fill: string; + stroke: string; +} + +export const ALTITUDE_BANDS: AltitudeBand[] = [ + { label: "Ground", minFt: -Infinity, maxFt: 0, fill: "rgb(150,150,150)", stroke: "rgb(80,80,80)" }, + { label: "0-5K", minFt: 0, maxFt: 5000, fill: "rgb(220,60,60)", stroke: "rgb(120,20,20)" }, + { label: "5-15K", minFt: 5000, maxFt: 15000, fill: "rgb(230,140,30)", stroke: "rgb(130,70,0)" }, + { label: "15-25K", minFt: 15000, maxFt: 25000, fill: "rgb(242,204,39)", stroke: "rgb(80,60,0)" }, + { label: "25-35K", minFt: 25000, maxFt: 35000, fill: "rgb(60,180,75)", stroke: "rgb(20,100,30)" }, + { label: "35-45K", minFt: 35000, maxFt: 45000, fill: "rgb(60,120,216)", stroke: "rgb(20,50,120)" }, + { label: "45K+", minFt: 45000, maxFt: Infinity, fill: "rgb(150,60,200)", stroke: "rgb(80,20,110)" }, +]; + +/** + * Get the altitude band index for a given altitude in meters. + * Returns 0 (ground) for on-ground aircraft. + */ +export function getAltitudeBand(altitudeMeters: number, isGround: boolean): number { + if (isGround) return 0; + const altFt = altitudeMeters * 3.28084; + for (let i = ALTITUDE_BANDS.length - 1; i >= 0; i--) { + if (altFt >= ALTITUDE_BANDS[i].minFt) return i; + } + return 0; +} + export const API_CONFIG = { defaultPort: 5001, flightCacheTTL: 30, // seconds diff --git a/packages/types/src/flight.ts b/packages/types/src/flight.ts index e01166e..258b570 100644 --- a/packages/types/src/flight.ts +++ b/packages/types/src/flight.ts @@ -39,6 +39,7 @@ export interface FlightData { departure: ICode; flight: FlightIdentifier; geography: Geography; + originCountry?: string; speed: Speed; status: string; system: FlightSystem; From 522f3ff1adba116e6c7a61464b3b990a1360a175 Mon Sep 17 00:00:00 2001 From: nhatvu148 Date: Sun, 22 Feb 2026 09:33:27 +0700 Subject: [PATCH 11/14] fix: airport markers, popup, map nav, null guard --- .../src/app/airports/AirportsPageClient.tsx | 8 +- apps/web/src/app/globals.css | 56 +- .../web/src/components/map/AirportMarkers.tsx | 59 +- apps/web/src/components/map/FlightMap.tsx | 16 + docs/flight-tracker-plan.md | 538 +++++++++++++++++ docs/flight-tracker.md | 548 ++++++++++++++++++ 6 files changed, 1185 insertions(+), 40 deletions(-) create mode 100644 docs/flight-tracker-plan.md create mode 100644 docs/flight-tracker.md diff --git a/apps/web/src/app/airports/AirportsPageClient.tsx b/apps/web/src/app/airports/AirportsPageClient.tsx index 05bf55b..cfe4521 100644 --- a/apps/web/src/app/airports/AirportsPageClient.tsx +++ b/apps/web/src/app/airports/AirportsPageClient.tsx @@ -18,10 +18,10 @@ export function AirportsPageClient() { const q = search.toLowerCase(); return airports.filter( (a) => - a.codeIataAirport.toLowerCase().includes(q) || - a.nameAirport.toLowerCase().includes(q) || - a.nameCountry.toLowerCase().includes(q) || - a.codeIataCity.toLowerCase().includes(q) + a.codeIataAirport?.toLowerCase().includes(q) || + a.nameAirport?.toLowerCase().includes(q) || + a.nameCountry?.toLowerCase().includes(q) || + a.codeIataCity?.toLowerCase().includes(q) ); }, [airports, search]); diff --git a/apps/web/src/app/globals.css b/apps/web/src/app/globals.css index e4108f9..558d00e 100644 --- a/apps/web/src/app/globals.css +++ b/apps/web/src/app/globals.css @@ -54,12 +54,54 @@ border-top-color: rgba(26, 29, 33, 0.92) !important; } -/* Airport IATA label */ -.airport-label { - font-size: 10px; +/* Airport popup */ +.airport-popup-container .leaflet-popup-content-wrapper { + background: rgba(26, 29, 33, 0.95) !important; + color: #e2e8f0 !important; + border-radius: 8px !important; + box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4) !important; + border: 1px solid rgba(100, 116, 139, 0.3) !important; +} + +.airport-popup-container .leaflet-popup-tip { + background: rgba(26, 29, 33, 0.95) !important; +} + +.airport-popup-container .leaflet-popup-close-button { + color: #94a3b8 !important; +} + +.airport-popup-container .leaflet-popup-close-button:hover { + color: #e2e8f0 !important; +} + +.airport-popup-name { + font-size: 13px; font-weight: 600; - color: #22c55e; - text-shadow: 0 0 3px rgba(0, 0, 0, 0.8), 0 0 6px rgba(0, 0, 0, 0.5); - white-space: nowrap; - pointer-events: none; + margin-bottom: 2px; +} + +.airport-popup-codes { + font-size: 12px; + font-family: ui-monospace, monospace; + color: #38bdf8; +} + +.airport-popup-country { + font-size: 11px; + color: #94a3b8; + margin-top: 2px; +} + +.airport-popup-link { + display: inline-block; + margin-top: 6px; + font-size: 11px; + color: #38bdf8 !important; + text-decoration: none !important; +} + +.airport-popup-link:hover { + color: #7dd3fc !important; + text-decoration: underline !important; } diff --git a/apps/web/src/components/map/AirportMarkers.tsx b/apps/web/src/components/map/AirportMarkers.tsx index 663d905..e1d5efe 100644 --- a/apps/web/src/components/map/AirportMarkers.tsx +++ b/apps/web/src/components/map/AirportMarkers.tsx @@ -7,9 +7,7 @@ import { useAirports } from "@/hooks/useFlights"; import { useMapStore } from "@/stores/map-store"; import type { AirportData } from "@flight-tracker/types"; -const AIRPORT_COLOR = "#22c55e"; const MIN_ZOOM_DOTS = 7; -const MIN_ZOOM_LABELS = 9; export function AirportMarkers() { const map = useMap(); @@ -40,37 +38,40 @@ export function AirportMarkers() { a.longitudeAirport <= bounds.east ); - const showLabels = zoom >= MIN_ZOOM_LABELS; - for (const airport of visible) { const latlng: L.LatLngExpression = [airport.latitudeAirport, airport.longitudeAirport]; + const iata = airport.codeIataAirport || ""; + const icao = airport.codeIcaoAirport || ""; + const name = airport.nameAirport || ""; + const country = airport.nameCountry || ""; + + const marker = L.circleMarker(latlng, { + radius: 5, + fillColor: "#3b82f6", + fillOpacity: 0.9, + color: "#fff", + weight: 1.5, + }); + + // Tooltip on hover — name + codes + marker.bindTooltip( + `
${name}
` + + `
${iata}${icao ? " / " + icao : ""}
`, + { className: "airport-tooltip", direction: "top", offset: [0, -6] } + ); - // Green dot - L.circleMarker(latlng, { - radius: 4, - fillColor: AIRPORT_COLOR, - fillOpacity: 0.8, - color: AIRPORT_COLOR, - weight: 1, - }) - .bindTooltip( - `${airport.codeIataAirport}
${airport.nameAirport}`, - { className: "airport-tooltip" } - ) - .addTo(layer); + // Popup on click — airport info + link + marker.bindPopup( + `
` + + `
${name}
` + + `
${iata}${icao ? " / " + icao : ""}
` + + (country ? `
${country}
` : "") + + `View details →` + + `
`, + { className: "airport-popup-container", maxWidth: 220 } + ); - // IATA label at higher zoom - if (showLabels && airport.codeIataAirport) { - L.marker(latlng, { - icon: L.divIcon({ - className: "airport-label", - html: airport.codeIataAirport, - iconSize: [40, 14], - iconAnchor: [-6, 7], - }), - interactive: false, - }).addTo(layer); - } + marker.addTo(layer); } }, [zoom, bounds, airports]); diff --git a/apps/web/src/components/map/FlightMap.tsx b/apps/web/src/components/map/FlightMap.tsx index 15713a1..4369929 100644 --- a/apps/web/src/components/map/FlightMap.tsx +++ b/apps/web/src/components/map/FlightMap.tsx @@ -9,6 +9,7 @@ import { ScaleControl, useMapEvents, } from "react-leaflet"; +import { useSearchParams } from "next/navigation"; import "leaflet/dist/leaflet.css"; import { getTileLayers, MAP_DEFAULTS } from "@flight-tracker/config"; import { useMapStore } from "@/stores/map-store"; @@ -17,6 +18,7 @@ import { AirportMarkers } from "./AirportMarkers"; function MapEventHandler() { const { setCenter, setZoom, setBounds, selectFlight } = useMapStore(); + const searchParams = useSearchParams(); const map = useMapEvents({ moveend(e) { @@ -53,6 +55,20 @@ function MapEventHandler() { }); }, [map, setBounds]); + // Fly to coordinates from URL params (e.g. /?lat=10.81&lng=106.66&zoom=12) + useEffect(() => { + const lat = searchParams.get("lat"); + const lng = searchParams.get("lng"); + const z = searchParams.get("zoom"); + if (lat && lng) { + map.flyTo( + [parseFloat(lat), parseFloat(lng)], + z ? parseInt(z, 10) : 12, + { duration: 1.5 } + ); + } + }, [map, searchParams]); + return null; } diff --git a/docs/flight-tracker-plan.md b/docs/flight-tracker-plan.md new file mode 100644 index 0000000..6065b63 --- /dev/null +++ b/docs/flight-tracker-plan.md @@ -0,0 +1,538 @@ +# Flight Tracker v2 — Fresh Build Plan + +> Rewrite from scratch using your current monorepo patterns (Han Nom Dict architecture). +> Carry over only the proven assets from the 2022 prototype. + +--- + +## Table of Contents + +1. [Architecture Overview](#1-architecture-overview) +2. [Monorepo Structure](#2-monorepo-structure) +3. [Assets to Carry Over](#3-assets-to-carry-over) +4. [Tech Stack](#4-tech-stack) +5. [Phase 1 — MVP (Weeks 1-4)](#5-phase-1--mvp-weeks-14) +6. [Phase 2 — AI + Premium (Weeks 5-8)](#6-phase-2--ai--premium-weeks-58) +7. [Phase 3 — Mobile + 3D (Weeks 9-12)](#7-phase-3--mobile--3d-weeks-912) +8. [Phase 4 — Launch + Monetize (Weeks 13-16)](#8-phase-4--launch--monetize-weeks-1316) +9. [Data Sources & API Strategy](#9-data-sources--api-strategy) +10. [Monetization](#10-monetization) +11. [Marketing & Distribution](#11-marketing--distribution) +12. [Risk Mitigation](#12-risk-mitigation) + +--- + +## 1. Architecture Overview + +``` +┌─────────────────────────────────────────────────────────────────┐ +│ flight-tracker/ │ +├──────────┬──────────┬──────────┬────────────────────────────────┤ +│ apps/web │ apps/api │apps/mobile│ packages/ │ +│ Next.js │ Express │ Vite SPA │ types, ui, api-client, │ +│ 16 │ + Pg │ + Cap │ config, utils │ +└──────────┴──────────┴──────────┴────────────────────────────────┘ + │ │ │ + │ ┌────┴────┐ │ + │ │ PostgreSQL│ │ Vite alias bridge + │ │ + Redis │ │ (same pattern as Han Nom Dict) + │ └────┬────┘ │ + │ │ │ + └────────────┴───────────┘ + ↓ + External APIs: FlightAware AeroAPI, OpenSky, Weather +``` + +**Core principle**: Web and mobile share 95% of source code via the Vite alias bridge pattern you already perfected in Han Nom Dict. + +--- + +## 2. Monorepo Structure + +``` +flight-tracker/ +├── package.json # npm workspaces + turbo +├── Taskfile.yml # task runner (same pattern as han-nom-dict) +├── turbo.json +├── .env # API keys (FLIGHTAWARE_KEY, MAPTILER_TOKEN, etc.) +├── apps/ +│ ├── web/ # Next.js 16 (App Router, i18n, SSR) +│ │ ├── package.json +│ │ ├── next.config.ts # transpilePackages, next-intl +│ │ ├── capacitor.config.dev.ts +│ │ ├── capacitor.config.prod.ts +│ │ ├── src/ +│ │ │ ├── app/ +│ │ │ │ └── [locale]/ +│ │ │ │ ├── page.tsx # Landing / map view +│ │ │ │ ├── search/page.tsx # Flight search +│ │ │ │ ├── flight/[id]/page.tsx # Flight detail +│ │ │ │ ├── airports/page.tsx # Airport browser +│ │ │ │ ├── airport/[code]/page.tsx +│ │ │ │ ├── airlines/page.tsx +│ │ │ │ ├── stats/page.tsx # Personal travel stats +│ │ │ │ └── profile/page.tsx +│ │ │ ├── components/ +│ │ │ │ ├── map/ +│ │ │ │ │ ├── FlightMap.tsx # Leaflet map (carry over logic) +│ │ │ │ │ ├── FlightMarkers.tsx # Canvas markers (carry over) +│ │ │ │ │ ├── AirportMarkers.tsx # Airport markers (carry over) +│ │ │ │ │ ├── MapControls.tsx # Zoom, layers, fullscreen +│ │ │ │ │ └── Globe3D.tsx # React Three Fiber (Phase 3) +│ │ │ │ ├── flight/ +│ │ │ │ │ ├── FlightCard.tsx +│ │ │ │ │ ├── FlightDetail.tsx +│ │ │ │ │ └── FlightSearch.tsx +│ │ │ │ ├── ai/ +│ │ │ │ │ ├── AIChatPanel.tsx # AI assistant sidebar +│ │ │ │ │ └── DelayPredictor.tsx +│ │ │ │ └── shared/ +│ │ │ │ ├── Header.tsx +│ │ │ │ ├── Footer.tsx +│ │ │ │ └── ThemeToggle.tsx +│ │ │ ├── hooks/ +│ │ │ │ ├── useFlights.ts # TanStack Query for flights +│ │ │ │ ├── useAirports.ts +│ │ │ │ └── useMapState.ts # Zustand map store +│ │ │ ├── lib/ +│ │ │ │ ├── map-helpers.ts # getClosest, drawOnEachWorld, layerMap +│ │ │ │ ├── config.ts +│ │ │ │ └── offline-storage.ts # IndexedDB for offline flight data +│ │ │ └── stores/ +│ │ │ └── map-store.ts # Zustand: center, zoom, bounds, layer +│ │ ├── public/ +│ │ │ ├── aircraft-icons/ # 25 SVGs from old project +│ │ │ └── landing.svg +│ │ └── messages/ # i18n: en.json, vi.json, fr.json, zh.json +│ │ +│ ├── api/ # Express API server +│ │ ├── package.json +│ │ ├── src/ +│ │ │ ├── index.ts +│ │ │ ├── routes/ +│ │ │ │ ├── flights.routes.ts # proxy + cache FlightAware/OpenSky +│ │ │ │ ├── airports.routes.ts +│ │ │ │ ├── airlines.routes.ts +│ │ │ │ ├── weather.routes.ts +│ │ │ │ ├── ai.routes.ts # AI assistant endpoint +│ │ │ │ └── user.routes.ts # auth, saved flights, stats +│ │ │ ├── services/ +│ │ │ │ ├── flightaware.service.ts # FlightAware AeroAPI client +│ │ │ │ ├── opensky.service.ts # OpenSky fallback +│ │ │ │ ├── weather.service.ts +│ │ │ │ ├── ai.service.ts # Claude API integration +│ │ │ │ └── cache.service.ts # Redis caching layer +│ │ │ └── db/ +│ │ │ └── migrations/ +│ │ +│ └── mobile/ # Vite SPA + Capacitor (same bridge as Han Nom Dict) +│ ├── package.json +│ ├── vite.config.ts # Alias bridge: @/ → ../web/src/ +│ ├── capacitor.config.ts # webDir: 'dist', NO server.url +│ └── src/ +│ ├── main.tsx # BrowserRouter entry +│ ├── App.tsx # Routes → @/app/[locale]/*/page +│ ├── shims/ # next/navigation, next-intl, next-auth, etc. +│ ├── stubs/ # Header → mobile nav, Footer → null +│ └── lib/ # offline-storage, data-layer overrides +│ +└── packages/ + ├── types/ # @flight-tracker/types + │ └── src/ + │ ├── flight.ts # FlightData, AirportData (carry over) + │ ├── user.ts + │ └── index.ts + ├── ui/ # @flight-tracker/ui (main: src/index.ts, NOT compiled) + │ └── src/ + │ ├── FlightCard.tsx + │ ├── AirportBadge.tsx + │ └── index.ts + ├── api-client/ # @flight-tracker/api-client (main: src/index.ts) + │ └── src/ + │ ├── flights.ts + │ ├── airports.ts + │ └── index.ts + ├── config/ # @flight-tracker/config + │ └── src/ + │ └── index.ts # API URLs, map defaults, tile layer configs + └── utils/ # @flight-tracker/utils + └── src/ + ├── map.ts # getClosest, isInsideMapBound, angle helpers + └── index.ts +``` + +--- + +## 3. Assets to Carry Over + +From `/Users/nhatvu148/Work/my-apps/flight-tracker/`: + +| Asset | Source | Destination | Changes needed | +|-------|--------|-------------|----------------| +| 25 aircraft SVGs | `public/aircrafts-type-1/` | `apps/web/public/aircraft-icons/` | None — copy as-is | +| `landing.svg` | `public/landing.svg` | `apps/web/public/` | None | +| `FlightData` interface | `components/types.ts` | `packages/types/src/flight.ts` | None | +| `AirportData` interface | `components/types.ts` | `packages/types/src/flight.ts` | None | +| `getClosest()` | `helpers/index.ts` | `packages/utils/src/map.ts` | None | +| `layerMap()` | `helpers/index.ts` | `packages/config/src/index.ts` | Swap `publicRuntimeConfig` → env vars | +| `drawAircraftOnEachWorld()` | `helpers/index.ts` | `apps/web/src/lib/map-helpers.ts` | Replace `declare const L` → proper import | +| `drawAirportsOnEachWorld()` | `helpers/index.ts` | `apps/web/src/lib/map-helpers.ts` | Same | +| Map event sync logic | `components/ZoomLevel.tsx` | `apps/web/src/hooks/useMapState.ts` | Replace Redux → Zustand | +| MapContainer config | `components/main.tsx` | `apps/web/src/components/map/FlightMap.tsx` | Replace Redux → Zustand | +| Canvas marker rendering | `components/Popup.tsx` | `apps/web/src/components/map/FlightMarkers.tsx` | Replace react-query v3 → TanStack v5 | + +**Everything else is rewritten** using your modern stack. + +--- + +## 4. Tech Stack + +### Web (`apps/web`) +| Layer | Technology | Why | +|-------|-----------|-----| +| Framework | Next.js 16 (App Router) | SSR, SEO, your current expertise | +| Styling | Tailwind CSS + shadcn/ui | Consistent with Han Nom Dict | +| State | Zustand | Lightweight, replace Redux | +| Data fetching | TanStack Query v5 | Auto-cache, refetch intervals | +| Map (2D) | Leaflet + react-leaflet v4 | Proven in prototype, performant | +| Map (3D) | React Three Fiber | Phase 3 globe visualization | +| i18n | next-intl | 4 languages (en, vi, fr, zh) | +| Auth | NextAuth (Google OAuth) | Same pattern as Han Nom Dict | + +### API (`apps/api`) +| Layer | Technology | Why | +|-------|-----------|-----| +| Server | Express + TypeScript | Your current stack | +| Database | PostgreSQL | Users, saved flights, historical data | +| Cache | Redis | Flight data cache (60s TTL), rate limit | +| AI | Claude API (Anthropic SDK) | AI assistant for travel queries | +| Real-time | WebSocket (ws) | Live flight position updates | +| Dev runner | tsx watch | Hot reload | + +### Mobile (`apps/mobile`) +| Layer | Technology | Why | +|-------|-----------|-----| +| Build | Vite + React | SPA for Capacitor | +| Routing | react-router-dom v7 | Alias bridge shims next/navigation | +| i18n | i18next + react-i18next | Shimmed from next-intl | +| Offline | IndexedDB (idb) | Cache airports + recent flights | +| Native | Capacitor (iOS + Android) | Same pattern as Han Nom Dict | +| Push | @capacitor/push-notifications | Delay alerts, gate changes | + +--- + +## 5. Phase 1 — MVP (Weeks 1-4) + +**Goal**: Working flight map with search. Deployable web app. + +### Week 1: Monorepo scaffold + Map +- [ ] Initialize monorepo (npm workspaces + turbo) +- [ ] Set up `apps/web` (Next.js 16, Tailwind, shadcn/ui, next-intl) +- [ ] Set up `apps/api` (Express, PostgreSQL, Redis) +- [ ] Set up `packages/` (types, config, utils, ui, api-client) +- [ ] Copy aircraft SVGs + types from old project +- [ ] Port `FlightMap.tsx` — Leaflet MapContainer with layer switcher +- [ ] Port `FlightMarkers.tsx` — canvas markers with directional icons +- [ ] Port `AirportMarkers.tsx` — green airport dots +- [ ] Port `map-helpers.ts` — getClosest, drawOnEachWorld, layerMap +- [ ] Zustand store for map state (center, zoom, bounds, layer) +- [ ] URL-encoded map state (`/map/51,-2/4`) with shareable links + +### Week 2: Flight data pipeline +- [ ] `flightaware.service.ts` — FlightAware AeroAPI v3 integration +- [ ] `opensky.service.ts` — OpenSky Network fallback (free) +- [ ] `cache.service.ts` — Redis caching (flight positions: 30s TTL, airports: 24h TTL) +- [ ] `flights.routes.ts` — `GET /api/flights/live` (positions in bounding box) +- [ ] `flights.routes.ts` — `GET /api/flights/:id` (single flight detail) +- [ ] `airports.routes.ts` — `GET /api/airports` (full list, cached) +- [ ] `airports.routes.ts` — `GET /api/airports/:code` (single airport) +- [ ] Auto-refetch: TanStack Query polls `/api/flights/live` every 30s +- [ ] Flight markers update in real-time on map + +### Week 3: Search + Flight detail +- [ ] `FlightSearch.tsx` — search by flight number, route, or airline +- [ ] Search auto-detect: "AA123" → flight number, "CDG" → airport, "Delta" → airline +- [ ] `/flight/[id]` page — departure, arrival, aircraft type, altitude, speed, status +- [ ] Flight path trail on map (great-circle arc from dep → arr) +- [ ] `/airports` page — browse/search airports with map pins +- [ ] `/airport/[code]` page — airport info, current departures/arrivals +- [ ] Header with nav: Map, Search, Airports, Airlines + +### Week 4: Auth + saved flights +- [ ] NextAuth setup (Google OAuth, same as Han Nom Dict) +- [ ] DB schema: users, saved_flights, tracked_routes +- [ ] "Track this flight" button → saves to user profile +- [ ] `/profile` page — saved flights, tracked routes +- [ ] Basic push notification setup (web: service worker) +- [ ] Deploy: Vercel (web) + Railway/Fly.io (API) + Supabase (DB) +- [ ] **MVP LAUNCH**: Share on X, Reddit r/aviation, r/travel + +--- + +## 6. Phase 2 — AI + Premium (Weeks 5-8) + +**Goal**: AI assistant, delay predictions, Stripe payments. + +### Week 5: AI assistant +- [ ] `ai.service.ts` — Claude API integration with system prompt +- [ ] `ai.routes.ts` — `POST /api/ai/chat` (SSE streaming response) +- [ ] `AIChatPanel.tsx` — slide-out sidebar chat panel +- [ ] Context-aware: panel knows which flight/airport user is viewing +- [ ] Example queries: + - "When does my flight land?" + - "Is there a delay risk for AA123?" + - "Best coffee shop in CDG Terminal 2E?" + - "What's the minimum connection time at LAX?" + +### Week 6: Delay prediction + weather +- [ ] `weather.service.ts` — weather data for departure/arrival airports +- [ ] Weather overlay on map (rain, storms, visibility zones) +- [ ] Simple delay prediction model: + - Historical on-time data (FlightAware stats) + - Current weather at dep/arr + - Time of day + day of week patterns + - Output: "Low/Medium/High delay risk" with explanation +- [ ] `DelayPredictor.tsx` — visual indicator on flight detail page + +### Week 7: Premium features + Stripe +- [ ] Stripe integration (same pattern as standard SaaS) +- [ ] Free tier: 3 tracked flights, 5 AI queries/day, ads +- [ ] Premium ($6.99/mo or $59/yr): + - Unlimited tracking + AI queries + - Delay predictions + - Price alerts (via affiliate links) + - Ad-free + - SMS/push notifications +- [ ] Paywall UI: soft gate on premium features +- [ ] Webhook handler for subscription lifecycle + +### Week 8: Notifications + polish +- [ ] Push notifications: delay alerts, gate changes, landing +- [ ] Email notifications (optional, Resend/SendGrid) +- [ ] SMS notifications (Twilio, premium only) +- [ ] Landing page: hero with map demo, feature grid, pricing table +- [ ] SEO: meta tags, OG images, structured data for flights +- [ ] Performance audit: Lighthouse 95+, map load < 2s + +--- + +## 7. Phase 3 — Mobile + 3D (Weeks 9-12) + +**Goal**: iOS/Android app + 3D globe visualization. + +### Week 9: Mobile app (Vite alias bridge) +- [ ] Set up `apps/mobile` (Vite + Capacitor, same bridge as Han Nom Dict) +- [ ] Shims: next/navigation → react-router-dom, next-intl → i18next +- [ ] Mobile-specific: bottom tab nav, touch-optimized map controls +- [ ] Offline mode: cache airports + recent flight lookups in IndexedDB +- [ ] Push notifications via Capacitor plugin +- [ ] Test on iOS simulator + Android emulator + +### Week 10: 3D globe +- [ ] `Globe3D.tsx` — React Three Fiber earth globe +- [ ] Plot flights as animated arcs on globe surface +- [ ] Aircraft models with proper 3D orientation (heading + pitch) +- [ ] Smooth transition: 2D map ↔ 3D globe toggle +- [ ] Color-coded altitude visualization +- [ ] Weather overlay (optional: turbulence zones) + +### Week 11: Social + gamification +- [ ] Travel diary: auto-log flights from tracking history +- [ ] Annual "Year in Flights" summary (shareable card) +- [ ] Stats: miles flown, countries visited, airlines used, airports visited +- [ ] Share live tracking links (branded: `fly.yourapp.com/track/AA123`) +- [ ] `/stats` page with visual charts (distance, frequency, map of routes) + +### Week 12: App Store launch +- [ ] iOS: App Store Connect, screenshots, description +- [ ] Android: Google Play Console, listing +- [ ] App Store Optimization (ASO): keywords, screenshots, preview video +- [ ] TestFlight beta with 50 users +- [ ] Fix critical bugs from beta feedback + +--- + +## 8. Phase 4 — Launch + Monetize (Weeks 13-16) + +**Goal**: Public launch, first paying customers, content marketing engine. + +### Week 13: Product Hunt launch +- [ ] Product Hunt listing: "Flight Tracker with AI — built by an aerospace engineer" +- [ ] Demo video (90s): map → search flight → AI chat → delay prediction → 3D globe +- [ ] Lifetime deal for early adopters ($99 = forever premium) +- [ ] Reddit posts: r/travel, r/aviation, r/digitalnomad, r/SideProject +- [ ] Hacker News "Show HN" post + +### Week 14: Content marketing +- [ ] Blog post: "I'm an aerospace engineer who built a flight tracker — here's why existing ones suck" +- [ ] YouTube video: "Building a Flight Tracker with AI" (pilot episode) +- [ ] Short-form: TikTok/Reels showing the 3D globe + AI assistant +- [ ] SEO articles: + - "Best apps to track flights in 2026" + - "How flight delay predictions actually work" + - "Understanding aircraft types — a visual guide" + +### Week 15: Affiliate + B2B foundations +- [ ] Affiliate links: Skyscanner, Booking.com, travel insurance +- [ ] "Book alternative flight" button when delays detected +- [ ] Airport lounge finder with affiliate booking +- [ ] B2B inquiry page: white-label widget for travel agencies +- [ ] API documentation for enterprise customers + +### Week 16: Iterate + scale +- [ ] Analyze: conversion rates, churn, feature usage, AI query patterns +- [ ] Top user requests → prioritize next features +- [ ] A/B test: pricing, paywall placement, onboarding flow +- [ ] Target: 1,000 users, 50 paying customers +- [ ] Plan YouTube series: "Building a Flight Tracker" (10 episodes) + +--- + +## 9. Data Sources & API Strategy + +### Primary: FlightAware AeroAPI v3 +- **Endpoint**: `https://aeroapi.flightaware.com/aeroapi/` +- **Pricing**: Pay-per-query (~$0.005/query for flight positions) +- **Data**: Live positions, flight details, historical, delay stats +- **Caching strategy**: Redis with 30s TTL for positions, 5min for details + +### Fallback: OpenSky Network (free) +- **Endpoint**: `https://opensky-network.org/api/` +- **Pricing**: Free (rate-limited: 100 req/10s anonymous, 4000/10s authenticated) +- **Data**: Live positions only (no flight details, no delay stats) +- **Use case**: Free tier users, fallback when FlightAware quota exceeded + +### Weather: OpenWeatherMap or WeatherAPI +- **Data**: Current conditions at airports, forecasts for delay prediction +- **Caching**: 15min TTL + +### Static: OurAirports dataset +- **Source**: `ourairports.com/data/` (CSV, public domain) +- **Data**: 70K+ airports with lat/lng, name, IATA/ICAO, country +- **Import once** into PostgreSQL, update monthly + +### Cost management +| Scenario | FlightAware queries/day | Monthly cost | +|----------|------------------------|--------------| +| 100 free users | ~5,000 | ~$750 | +| 500 free + 50 premium | ~15,000 | ~$2,250 | +| 2,000 free + 200 premium | ~40,000 | ~$6,000 | + +**Mitigation**: Aggressive Redis caching, OpenSky for free tier, batch position updates (1 query returns all flights in viewport), only query when map is active. + +--- + +## 10. Monetization + +### Subscription tiers + +| Tier | Price | Features | +|------|-------|----------| +| **Free** | $0 | 3 tracked flights, 5 AI queries/day, OpenSky data, ads | +| **Premium** | $6.99/mo or $59/yr | Unlimited tracking + AI, FlightAware data, delay predictions, push/SMS alerts, ad-free, offline mode | +| **Family** | $14.99/mo | 5 users, shared trips, group tracking | +| **Business** | $49/mo | API access (10K req/mo), team dashboard, bulk tracking | + +### Additional revenue streams +- **Affiliate**: Flight bookings (Skyscanner 3-5%), hotels (Booking.com 4-7%), insurance ($20-50/sale), airport lounges +- **B2B white-label**: Travel agency widget ($99-499/mo) +- **Data licensing**: Anonymized travel patterns to airlines/airports +- **Lifetime deals**: $99 early-bird (cap at 200 seats) + +### Revenue targets +| Period | Users | Paying | MRR | ARR | +|--------|-------|--------|-----|-----| +| Month 3 | 1,000 | 50 | $350 | $4.2K | +| Month 6 | 5,000 | 300 | $2.1K | $25K | +| Year 1 | 10,000 | 500 | $3.5K | $42K | +| Year 2 | 50,000 | 3,000 | $21K | $250K | + +--- + +## 11. Marketing & Distribution + +### Launch channels (ranked by expected ROI) + +1. **Reddit** — r/travel (5M), r/aviation (800K), r/digitalnomad (2M), r/SideProject + - Post: "I'm an aerospace engineer who built a flight tracker with AI. Here's the story." + - Genuine, not spammy. Show the 3D globe + AI demo. + +2. **X/Twitter** — Build in public from day 1 + - Daily progress tweets with screenshots/videos + - Tag #buildinpublic, #indiehackers, #aviation + - Thread: "Why I left aerospace to build a flight tracker (and what I know that FlightRadar24 doesn't)" + +3. **YouTube (Vuporvita)** — 10-episode "Building a Flight Tracker" series + - Ep 1: Why existing trackers suck (aerospace engineer's view) + - Ep 2-4: Building the real-time map (Leaflet + WebSocket) + - Ep 5-7: Adding AI (Claude API, delay prediction) + - Ep 8-9: 3D globe with React Three Fiber + - Ep 10: Launch day + revenue reveal + +4. **Product Hunt** — Coordinated launch day +5. **Hacker News** — "Show HN" post +6. **TikTok/Reels** — Short demos of 3D globe, AI assistant, delay alerts + +### SEO strategy +- Target keywords: "flight tracker", "live flight tracking", "flight delay prediction", "AI flight assistant" +- Blog posts targeting long-tail: "how to track a flight in real time", "best flight tracker app 2026" +- Each airport page = SEO-indexed (`/airport/CDG`, `/airport/LAX`) + +--- + +## 12. Risk Mitigation + +| Risk | Impact | Mitigation | +|------|--------|-----------| +| FlightAware API costs exceed revenue | High | OpenSky free fallback, aggressive caching (30s TTL), viewport-only queries, free tier uses OpenSky only | +| FlightRadar24 competition | Medium | Differentiate with AI assistant + 3D globe + aerospace credibility. Don't compete on data — compete on UX + intelligence | +| Low conversion to paid | Medium | Soft paywall (show premium features grayed out), annual discount (30% off), lifetime early-bird deal | +| Leaflet perf with 10K+ markers | Low | Already solved: `leaflet-markers-canvas` renders 50K+ markers at 60fps | +| Mobile app rejection | Low | No private APIs used, standard Capacitor/WKWebView, follow Apple/Google guidelines | +| Data privacy concerns | Medium | Only use public ADS-B data, GDPR-compliant, transparent privacy policy, no military/private flight tracking | + +--- + +## Quick Start Commands + +```bash +# Create the monorepo +mkdir -p ~/Work/my-apps/flight-tracker +cd ~/Work/my-apps/flight-tracker + +# Initialize +npm init -y +# Set up workspaces in package.json: ["apps/*", "packages/*"] + +# Copy assets from old project +cp -r ~/Work/my-apps/flight-tracker-old/public/aircrafts-type-1/ apps/web/public/aircraft-icons/ +cp ~/Work/my-apps/flight-tracker-old/public/landing.svg apps/web/public/ + +# Development +task dev # Start web (3000) + api (5001) +task dev:web # Web only +task dev:api # API only + +# Mobile +task build:mobile # Vite build + cap sync +task ios # Run in iOS simulator + +# Deploy +task deploy:web # Vercel +task deploy:api # Railway/Fly.io +``` + +--- + +## Success Criteria + +- [ ] **Week 4**: Working flight map with real-time data, deployed at a public URL +- [ ] **Week 8**: AI assistant + Stripe payments live, 10 beta users +- [ ] **Week 12**: iOS app in TestFlight, 3D globe working +- [ ] **Week 16**: 1,000 users, 50 paying customers, Product Hunt launched +- [ ] **Month 6**: $2K MRR, YouTube series started, 5K users +- [ ] **Year 1**: $3.5K MRR, mobile app in App Store + Play Store + +--- + +*Last updated: 2026-02-20* diff --git a/docs/flight-tracker.md b/docs/flight-tracker.md new file mode 100644 index 0000000..f2527fe --- /dev/null +++ b/docs/flight-tracker.md @@ -0,0 +1,548 @@ +# Flight Tracking App with AI Assistant +*Leveraging Aerospace Engineering Expertise + Full-Stack Development + Content Creation* + +--- + +## Overview + +Real-time flight tracking platform with AI-powered travel assistance, leveraging aerospace engineering expertise to provide unique insights unavailable in existing solutions. + +--- + +## Why It Fits Your Skills + +### Domain Expertise +- **Aerospace Engineering Background**: Deep understanding of aircraft systems, flight dynamics, performance metrics +- **Credibility Factor**: Unlike competitors built by pure software developers, you can explain WHY things happen (aerodynamics, weather impacts, technical delays) +- **Content Authority**: Can create educational content that competitors can't match + +### Technical Stack Alignment +- **Rust Backend**: High-performance real-time data processing, WebSocket server +- **TypeScript + React**: Modern web interface +- **React Three Fiber**: 3D globe visualization (leverages your existing portfolio project) +- **Python**: ML models for delay prediction, data processing +- **API Integration**: Experience with external data sources + +### Unique Advantages +- **Vuporvita Channel**: Built-in marketing platform (travel content + tech tutorials) +- **Multilingual**: Can create content in 7 languages for global reach +- **Frequent Traveler**: Dog-food your own product constantly +- **Por's Perspective**: Multi-cultural travel insights (Asian airports, layover tips) + +--- + +## Target Market + +### Primary Users +- **Frequent Business Travelers**: Track flights, optimize connections, delay predictions +- **Aviation Enthusiasts**: Deep aircraft data, flight path analysis, historical playback +- **Travel Families**: Share tracking links, coordinate pickups, real-time notifications +- **Digital Nomads**: Multi-city planning, price tracking, alternative routes + +### Secondary Markets +- **B2B**: Travel agencies, corporate travel managers, aviation companies +- **Data Consumers**: Airlines, airports, tourism boards (anonymized analytics) + +--- + +## Core Features (MVP - 4-6 weeks) + +### Week 1-2: Real-Time Tracking +- FlightAware/OpenSky API integration +- Live flight position on 2D map +- Basic search by flight number/route +- Flight status (departed, delayed, landed) +- Aircraft type, altitude, speed display + +### Week 3-4: AI Assistant +- Natural language queries: "When does my flight land?" +- Delay prediction (simple ML model) +- Alternative flight suggestions +- Airport navigation tips +- Weather impact analysis + +### Week 5-6: User Features +- User authentication (email + OAuth) +- Save favorite routes +- Push notifications (delays, gate changes) +- Basic price tracking integration +- Stripe subscription setup + +--- + +## Advanced Features (Post-MVP) + +### 3D Visualization +- Interactive globe with React Three Fiber +- Aircraft models with proper orientation +- Flight path trails +- Altitude visualization (color-coded) +- Weather overlay (turbulence zones) + +### Enhanced AI Features +- "Should I book now or wait?" predictor +- Connection optimizer (minimum safe layover) +- Seat recommendation (based on aircraft type) +- Airport amenities finder ("Best coffee in Terminal B?") +- Immigration wait time predictions + +### Social/Gamification +- Flight diary (personal travel history) +- Travel statistics (miles flown, countries visited) +- Share live tracking links +- Leaderboards (most flights, longest route) +- Trip reports and tips community + +### Power User Tools +- Historical flight playback +- Fleet tracking (follow specific aircraft) +- Route profitability analysis +- Aircraft performance comparison +- Maintenance schedule insights + +--- + +## Tech Stack + +### Frontend Web +- Next.js 14 (App Router) +- React Three Fiber (3D globe) +- Tailwind CSS + shadcn/ui +- WebSocket client +- PWA support + +### Mobile +- React Native (Expo) +- Push notifications +- Background updates +- Offline mode +- Home screen widgets + +### Backend +- Rust (Actix-web) - API + WebSocket server +- Python - ML models, data processing +- PostgreSQL - User data, historical flights +- TimescaleDB - Time-series optimization +- Redis - Live positions, caching +- RabbitMQ - Notification queue + +### Data Sources +- FlightAware API (primary) +- OpenSky Network (free fallback) +- Weather APIs +- Airport data APIs +- Airline APIs (where available) + +### ML/AI +- Claude API - AI assistant +- Pinecone/Weaviate - Vector DB for RAG +- Scikit-learn - Delay prediction +- Prophet - Time series forecasting + +### Infrastructure +- Vercel/Railway - Frontend hosting +- Fly.io - Rust backend +- Supabase - Auth + database +- CloudFlare - CDN + DDoS protection + +--- + +## Monetization Strategy + +| Tier | Price | Features | +|------|-------|----------| +| **Free** | $0 | 3 active flights, Basic tracking, 5 AI queries/day, Ads | +| **Premium** | $6.99/mo or $59/year | Unlimited tracking, Unlimited AI, Delay predictions, Price alerts, Ad-free, Offline mode, SMS notifications | +| **Family** | $14.99/mo | 5 users, Shared trips, Group tracking, Family travel history | +| **Business** | $49/mo | Bulk tracking, Team collaboration, API access (limited), Client management, Custom alerts | +| **Enterprise** | Custom | Full API, White-label, Custom integrations, SLA, Dedicated support | + +--- + +## Additional Revenue Streams + +### Affiliate Marketing +- **Flight Bookings**: Skyscanner, Kayak (3-5% commission) +- **Hotels**: Booking.com, Hotels.com (4-7%) +- **Car Rentals**: Rentalcars.com (5-10%) +- **Travel Insurance**: $20-50 per sale +- **Airport Services**: Parking, lounges (10-15%) +- **Travel Gear**: Amazon Associates + +**Potential**: 100K users × 10% conversion × $500 avg booking × 4% commission = $200K/year + +### B2B Services +- **Travel Agencies**: White-label widget ($99-499/mo) +- **Airlines**: Customer service tool ($2,000-10,000/mo) +- **Corporate Travel**: Enterprise tracking ($500-2,000/mo per company) + +### Data Licensing +- Anonymized travel patterns +- Delay statistics by route/airline +- Airport efficiency metrics +- Sell to airlines, airports, tourism boards + +--- + +## Growth Strategy + +### Phase 1: Launch (Month 1-3) +**Target**: 1,000-5,000 users + +1. **Product Hunt Launch** + - "Flight Tracking + AI Assistant" + - Demo video showing AI features + - Special lifetime deal for early adopters + +2. **Reddit Strategy** + - r/travel, r/digitalnomad, r/aviation + - Share: "I'm an aerospace engineer who built a flight tracker..." + - Genuine engagement, not spam + +3. **Travel Influencers** + - Send free Premium accounts + - Ask for honest reviews + - Provide affiliate codes + +4. **Vuporvita Integration** + - Film every flight using the app + - "How I track all our flights" tutorial + - Behind-the-scenes development vlogs + +### Phase 2: Growth (Month 4-12) +**Target**: 10,000-50,000 users + +**Content Marketing:** +- **Blog**: SEO-optimized guides + - "How to never miss a connection" + - "Best airports for long layovers" + - "Flight delay statistics 2025" + - "Understanding aircraft types" + +- **YouTube Series**: "Building a Flight Tracker" + - Episode 1: Architecture overview + - Episode 2-4: Rust WebSocket server + - Episode 5-7: React Three Fiber 3D globe + - Episode 8-10: AI integration with Claude + +- **Short-Form Content**: + - TikTok/Instagram Reels + - Quick airport hacks + - "POV: Your flight is delayed" + - Visual flight tracking demos + +**Viral Features:** +- Annual "Year in Flights" summary +- Share live tracking links (branded) +- Leaderboard (gamification) + +### Phase 3: Scale (Year 2+) +**Target**: 100,000+ users + +- Official airline partnerships +- B2B expansion (travel agencies) +- International localization (7 languages!) +- Enterprise features (API, white-label) + +--- + +## Revenue Projections (Conservative) + +### Year 1 +- Users: 10,000 free, 500 paid ($6.99/mo) +- Subscription: $42,000/year +- Affiliate: $20,000/year +- **Total: ~$62,000 ARR** + +### Year 2 +- Users: 50,000 free, 3,000 paid +- Subscription: $250,000/year +- Affiliate: $100,000/year +- B2B: $50,000/year +- **Total: ~$400,000 ARR** + +### Year 3 +- Users: 200,000 free, 15,000 paid +- Subscription: $1,250,000/year +- Affiliate: $500,000/year +- B2B/Enterprise: $250,000/year +- **Total: ~$2,000,000 ARR** + +*Assumptions: 5% free-to-paid conversion, conservative affiliate rates* + +--- + +## Competitive Analysis + +| Competitor | Price | Weakness | Your Advantage | +|------------|-------|----------|----------------| +| **FlightRadar24** | $12.99/mo | Clunky UI, no AI, desktop-focused | Modern UI, AI assistant, lower price | +| **FlightAware** | $39.99/mo | Complex, B2B focus, expensive | Simpler, consumer-friendly, $6.99 | +| **Flighty** | $9.99/mo | iOS only, no AI, limited features | Cross-platform, AI, 3D visualization | +| **App in the Air** | $49.99/year | Dated design, slow updates | Modern stack, rapid iteration | + +### Market Gap +**No competitor combines**: Real-time tracking + AI assistant + 3D visualization + travel planning + aerospace expertise + +--- + +## Competitive Advantage + +1. **Aerospace Engineering Credibility**: Only flight tracker built by someone who actually understands aviation +2. **AI-Powered Features**: No competitor has AI assistant for travel planning +3. **Modern Tech Stack**: React Three Fiber 3D visualization vs. competitors' 2D maps +4. **Content Marketing Moat**: YouTube channel with aviation expertise +5. **Multilingual Support**: 7 languages from day one +6. **Lower Price Point**: $6.99 vs. $10-40 competitors +7. **Cross-Platform**: Web + iOS + Android simultaneously +8. **Build in Public**: Community engagement from day one + +--- + +## Risks & Mitigation + +### Risk 1: API Costs +- FlightAware charges per query +- **Mitigation**: Aggressive caching, use OpenSky (free) as fallback, optimize queries, CDN + +### Risk 2: FlightRadar24 Competition +- Established brand, large user base +- **Mitigation**: AI differentiation, better UX, lower price, content marketing moat + +### Risk 3: Customer Acquisition Cost +- Paid ads expensive in travel niche +- **Mitigation**: Content marketing (free), YouTube channel, viral features, SEO + +### Risk 4: Data Privacy/Security +- Aviation data regulations +- **Mitigation**: Only use public ADS-B data, GDPR/CCPA compliance, transparent privacy policy + +### Risk 5: Seasonality +- Travel fluctuates (holidays vs off-season) +- **Mitigation**: B2B revenue stabilizes, annual subscriptions, global markets + +--- + +## Why This is Perfect for You + +1. ✅ **Aerospace Background**: Unique credibility competitors can't match +2. ✅ **Frequent Traveler**: Dog-food your own product constantly +3. ✅ **YouTube Channel**: Built-in marketing + content engine +4. ✅ **Por's Input**: Multi-cultural perspective, Asian airport expertise +5. ✅ **Tech Stack Match**: Rust + React + Three.js + AI +6. ✅ **Passion Project**: You love aviation/mechanical systems +7. ✅ **Global Market**: Not region-locked like Hán Nôm +8. ✅ **Clear Monetization**: Subscription + affiliate proven model +9. ✅ **Scalable**: Start simple, layer features over time +10. ✅ **Defensible Moat**: Technical complexity + content authority + aerospace knowledge + +--- + +## MVP Validation Roadmap + +### Week 1: Demand Validation +- Post in r/travel: "Flight tracker with AI - would you use this?" +- Create simple landing page (Vercel + Tailwind) +- Target: 50 email signups +- Survey: "What features matter most?" + +### Week 2-6: Build MVP +- Core tracking functionality +- Basic AI assistant +- Stripe integration +- Deploy beta version + +### Week 7: Soft Launch +- Product Hunt launch +- Reddit announcement +- YouTube announcement video +- Target: 1,000 users, 20 paying + +### Week 8-12: Iterate +- Weekly user interviews +- Add most-requested features +- Fix critical bugs +- Improve onboarding + +--- + +## Quick MVP Roadmap (6 Weeks) + +#### Week 1-2: Core Tracking Engine +- FlightAware API integration (Rust) +- WebSocket server for real-time updates +- Basic flight data parsing and caching +- Simple search functionality + +#### Week 3-4: Web Interface +- Next.js app with Tailwind UI +- 2D map with flight markers (Leaflet/Mapbox) +- Flight details panel +- Real-time position updates + +#### Week 5-6: AI & Monetization +- Claude API integration for AI assistant +- Basic delay prediction model +- User authentication (Supabase) +- Stripe subscription setup +- Push notification system + +--- + +## Validation Strategy + +### Social Proof Campaign +1. **Tweet Announcement**: "I'm an aerospace engineer building a flight tracker with AI. Who wants early access?" (Include mockups) +2. **Target**: 1,000 views + 50 email signups = validated +3. **Beta Program**: Offer free Premium to 20 frequent travelers +4. **Feedback Loop**: Weekly user interviews +5. **Launch**: Product Hunt + Reddit r/travel + +### First Customer Acquisition +- **Target**: Frequent business travelers (easier to close than casual users) +- **Offer**: $4.99/mo for early adopters (30% lifetime discount) +- **Goal**: 20 paying customers in first 3 months +- **Validation**: If achieved, consider going full-time on this project + +--- + +## YouTube Content Series: "Building a Flight Tracker" + +### Episode 1: Introduction & Architecture +- Why build another flight tracker? +- Aerospace engineer's perspective +- Tech stack overview +- Demo of final vision + +### Episode 2-4: Rust Backend +- Setting up Actix-web +- FlightAware API integration +- WebSocket server for real-time updates +- Caching strategy with Redis + +### Episode 5-7: React Three Fiber Globe +- 3D globe setup +- Plotting flights in 3D space +- Aircraft models and orientation +- Smooth animations between updates + +### Episode 8-10: AI Integration +- Claude API setup +- RAG pipeline for airport data +- Delay prediction ML model +- Natural language query processing + +### Bonus Episodes +- Mobile app with React Native +- Push notification system +- Deployment to production +- Scaling considerations + +--- + +## Next Steps + +### Immediate Actions (This Week) +1. **Create Landing Page**: Simple one-pager with email signup (Vercel + Tailwind) +2. **Write Launch Tweet**: Draft announcement with problem statement and mockups +3. **Research API Costs**: FlightAware pricing, OpenSky limitations +4. **Design Database Schema**: Flights, users, tracking, notifications + +### Week 1-2: Validation +1. **Post on Social Media**: X, LinkedIn, r/travel, r/aviation +2. **Target**: 50+ email signups or 20+ genuine interest DMs +3. **User Interviews**: Talk to 10 frequent travelers about their pain points +4. **Refine Scope**: Based on feedback, adjust MVP features + +### Week 3-6: MVP Development +1. **Set Up Tech Stack**: Initialize monorepo with Rust + Next.js +2. **Build Core Feature**: Real-time tracking + basic AI +3. **Deploy Alpha**: Get something working end-to-end on Fly.io +4. **Test Internally**: Use it yourself for real flights + +### Week 7-12: Beta Launch +1. **Invite Beta Users**: 20-50 people for early access +2. **Gather Feedback**: Weekly surveys + usage analytics +3. **Iterate Rapidly**: Fix bugs, add must-have features +4. **Prepare Pricing**: Finalize subscription tiers + +### Month 4: Public Launch +1. **Product Hunt Launch**: Coordinate launch day activities +2. **YouTube Announcement**: "I built a flight tracker - here's how" +3. **First Paid Customers**: Convert beta users or new signups +4. **Track Metrics**: MRR, churn, feature usage, CAC + +--- + +## Resources & Tools + +### Market Research +- **Aviation Forums**: Airliners.net, PPRuNe, Aviation Stack Exchange +- **Competitor Analysis**: App Store reviews, Reddit complaints +- **Pricing Research**: Competitor pricing pages, indie hacker case studies + +### Development +- **Boilerplates**: Rust web starters, Next.js SaaS templates +- **Design**: Tailwind UI, shadcn/ui components +- **Analytics**: PostHog (open-source), Plausible +- **Payments**: Stripe (standard for subscriptions) + +### Marketing +- **Build in Public**: X/Twitter daily updates +- **Content**: Technical blog posts (aviation + software) +- **Community**: r/travel, r/aviation, travel Facebook groups +- **Partnerships**: Travel bloggers, points/miles influencers + +### Learning +- **Real-Time Systems**: Study FlightRadar24's architecture +- **Aviation APIs**: FlightAware, OpenSky, ADS-B Exchange docs +- **Business Models**: How Flightradar24 monetizes (freemium + B2B) + +--- + +## Evaluation Criteria Matrix + +| Criteria | Flight Tracker | CAE Workflow | Digital Twin | Obsidian Plugin | +|----------|---------------|--------------|--------------|-----------------| +| **Domain Expertise** | ⭐⭐⭐⭐⭐ | ⭐⭐⭐⭐⭐ | ⭐⭐⭐⭐⭐ | ⭐⭐⭐ | +| **Market Size** | ⭐⭐⭐⭐⭐ | ⭐⭐⭐ | ⭐⭐⭐⭐ | ⭐⭐⭐ | +| **Competition** | ⭐⭐⭐ | ⭐⭐⭐⭐⭐ | ⭐⭐⭐⭐ | ⭐⭐⭐ | +| **Willingness to Pay** | ⭐⭐⭐⭐ | ⭐⭐⭐⭐⭐ | ⭐⭐⭐⭐⭐ | ⭐⭐⭐ | +| **Time to MVP** | ⭐⭐⭐⭐ | ⭐⭐⭐⭐ | ⭐⭐ | ⭐⭐⭐⭐⭐ | +| **Scalability** | ⭐⭐⭐⭐⭐ | ⭐⭐⭐⭐ | ⭐⭐⭐ | ⭐⭐⭐⭐⭐ | +| **Content Marketing Fit** | ⭐⭐⭐⭐⭐ | ⭐⭐⭐ | ⭐⭐⭐ | ⭐⭐⭐⭐ | +| **Personal Interest** | ⭐⭐⭐⭐⭐ | ⭐⭐⭐⭐⭐ | ⭐⭐⭐⭐⭐ | ⭐⭐⭐ | +| **Total Score** | 36/40 | 37/40 | 35/40 | 29/40 | + +--- + +## Final Thoughts + +The Flight Tracker app combines your aerospace expertise, software skills, travel lifestyle, and content creation abilities into a single compelling product. Unlike the CAE Workflow Orchestrator which targets a niche B2B market, this has mass consumer appeal while still offering B2B opportunities. + +**Key Advantages Over CAE Apps:** +- Larger addressable market (millions of travelers vs. thousands of engineers) +- Natural fit for Vuporvita content (travel + tech) +- Built-in dog-fooding (you fly frequently) +- Multiple revenue streams (subscription + affiliate + B2B) +- Global market from day one (not industry-specific) + +**Key Advantages Over Generic Flight Trackers:** +- Aerospace engineering credibility +- AI-powered features (unique in this space) +- Modern 3D visualization +- Content marketing moat (YouTube tutorials) + +The best idea is the one you're excited to work on for 2-3 years. Choose based on: +1. **Passion**: Does tracking flights and helping travelers excite you? +2. **Access**: Can you reach travelers through Vuporvita? +3. **Skills**: Does this maximize your aerospace + software + content combo? + +--- + +**Ready to take the next step?** I can help you: +- Draft your validation tweet and landing page copy +- Design the complete system architecture +- Plan your first 100 customer acquisition strategies +- Create the YouTube series outline with scripts +- Build the database schema and API design From b2cdf77ab19962f9f18fe1041f136ba6ae1e8c7b Mon Sep 17 00:00:00 2001 From: nhatvu148 Date: Sun, 22 Feb 2026 12:34:26 +0700 Subject: [PATCH 12/14] feat: legend, flight page, search, trail, URLs --- apps/api/src/routes/flights.routes.ts | 25 ++- apps/web/next-env.d.ts | 2 +- .../app/flight/[id]/FlightDetailClient.tsx | 202 ++++++++++++++++++ apps/web/src/app/flight/[id]/page.tsx | 14 ++ apps/web/src/app/page.tsx | 2 + .../web/src/components/map/AltitudeLegend.tsx | 56 +++++ apps/web/src/components/map/FlightMap.tsx | 23 +- apps/web/src/components/map/FlightTrail.tsx | 83 +++++++ .../src/components/ui/FlightDetailPanel.tsx | 10 + apps/web/src/components/ui/SmartSearch.tsx | 149 +++++++++++++ apps/web/src/components/ui/TopBar.tsx | 18 +- docs/flight-tracker-plan.md | 26 ++- 12 files changed, 586 insertions(+), 24 deletions(-) create mode 100644 apps/web/src/app/flight/[id]/FlightDetailClient.tsx create mode 100644 apps/web/src/app/flight/[id]/page.tsx create mode 100644 apps/web/src/components/map/AltitudeLegend.tsx create mode 100644 apps/web/src/components/map/FlightTrail.tsx create mode 100644 apps/web/src/components/ui/SmartSearch.tsx diff --git a/apps/api/src/routes/flights.routes.ts b/apps/api/src/routes/flights.routes.ts index ce00d4c..be14e1d 100644 --- a/apps/api/src/routes/flights.routes.ts +++ b/apps/api/src/routes/flights.routes.ts @@ -60,12 +60,31 @@ flightsRouter.get("/live", async (req, res) => { } }); -// GET /api/flights/:id +// GET /api/flights/:id — find a flight by icao24 from cached live data flightsRouter.get("/:id", async (req, res) => { try { const { id } = req.params; - // TODO: Fetch single flight detail from FlightAware - res.json({ message: `Flight ${id} detail — not yet implemented` }); + const icao24 = id.toLowerCase(); + + // Search all cached flight lists for the matching icao24 + for (const entry of cacheMap.values()) { + const flights = entry.data as Array<{ aircraft: { icao24: string } }>; + const found = flights.find( + (f) => f.aircraft.icao24.toLowerCase() === icao24 + ); + if (found) return res.json(found); + } + + // Not in cache — fetch global and search + const flights = await fetchLiveFlights(); + cacheMap.set("all", { data: flights, timestamp: Date.now() }); + + const found = flights.find( + (f) => f.aircraft.icao24.toLowerCase() === icao24 + ); + if (found) return res.json(found); + + res.status(404).json({ error: "Flight not found" }); } catch (error) { console.error("Error fetching flight:", error); res.status(500).json({ error: "Failed to fetch flight" }); diff --git a/apps/web/next-env.d.ts b/apps/web/next-env.d.ts index c4b7818..9edff1c 100644 --- a/apps/web/next-env.d.ts +++ b/apps/web/next-env.d.ts @@ -1,6 +1,6 @@ /// /// -import "./.next/dev/types/routes.d.ts"; +import "./.next/types/routes.d.ts"; // NOTE: This file should not be edited // see https://nextjs.org/docs/app/api-reference/config/typescript for more information. diff --git a/apps/web/src/app/flight/[id]/FlightDetailClient.tsx b/apps/web/src/app/flight/[id]/FlightDetailClient.tsx new file mode 100644 index 0000000..fe37be0 --- /dev/null +++ b/apps/web/src/app/flight/[id]/FlightDetailClient.tsx @@ -0,0 +1,202 @@ +"use client"; + +import { useEffect, useState } from "react"; +import Link from "next/link"; +import { useQuery } from "@tanstack/react-query"; +import { getFlight } from "@flight-tracker/api-client"; +import { ALTITUDE_BANDS, getAltitudeBand } from "@flight-tracker/config"; +import { TopBar } from "@/components/ui/TopBar"; + +export function FlightDetailClient({ id }: { id: string }) { + const { data: flight, isLoading, error } = useQuery({ + queryKey: ["flight", id], + queryFn: () => getFlight(id), + refetchInterval: 30_000, + }); + + const [photoUrl, setPhotoUrl] = useState(null); + const [photographer, setPhotographer] = useState(""); + + useEffect(() => { + if (!id) return; + setPhotoUrl(null); + setPhotographer(""); + fetch(`https://api.planespotters.net/pub/photos/hex/${id}`) + .then((r) => r.json()) + .then((data) => { + if (data.photos?.length) { + setPhotoUrl(data.photos[0].thumbnail_large?.src || data.photos[0].thumbnail?.src); + setPhotographer(data.photos[0].photographer || ""); + } + }) + .catch(() => {}); + }, [id]); + + if (isLoading) { + return ( +
+ +
+
Loading flight...
+
+
+ ); + } + + if (error || !flight) { + return ( +
+ +
+
+ + ← Back to Map + +
+
+ Flight not found. It may no longer be transmitting. +
+
+
+ ); + } + + const callsign = + flight.flight.icaoNumber || flight.flight.iataNumber || flight.aircraft.icao24; + const isGrounded = flight.speed.isGround === 1; + const altFt = Math.round(flight.geography.altitude * 3.28084); + const speedKts = Math.round(flight.speed.horizontal * 1.94384); + const vspeedFpm = Math.round(flight.speed.vspeed * 196.85); + const heading = Math.round(flight.geography.direction); + const lastSeen = + new Date(flight.system.updated * 1000).toISOString().slice(11, 19) + " UTC"; + const bandIndex = getAltitudeBand(flight.geography.altitude, isGrounded); + const altColor = ALTITUDE_BANDS[bandIndex].fill; + + return ( +
+ +
+
+ + ← Back to Map + +
+ +
+ {/* Photo */} + {photoUrl ? ( +
+ Aircraft + {photographer && ( + + {photographer} + + )} +
+ ) : ( +
+ + + +
+ )} + + {/* Header */} +
+
+

{callsign}

+ + {isGrounded ? "GROUNDED" : "EN ROUTE"} + +
+

ICAO24: {flight.aircraft.icao24}

+
+ + {/* Data sections */} +
+
+ + + +
+ +
+ + + +
+ +
+ + + {flight.originCountry && ( + + )} + +
+
+ + {/* Actions */} +
+ + + + + + View on Map + +
+
+
+
+ ); +} + +function Section({ title, children }: { title: string; children: React.ReactNode }) { + return ( +
+
+ {title} +
+ {children} +
+ ); +} + +function DataRow({ + label, + value, + dot, +}: { + label: string; + value: string | number; + dot?: string; +}) { + return ( +
+ {label} + + {dot && ( + + )} + {value} + +
+ ); +} diff --git a/apps/web/src/app/flight/[id]/page.tsx b/apps/web/src/app/flight/[id]/page.tsx new file mode 100644 index 0000000..a4f0ad8 --- /dev/null +++ b/apps/web/src/app/flight/[id]/page.tsx @@ -0,0 +1,14 @@ +import { FlightDetailClient } from "./FlightDetailClient"; + +export const metadata = { + title: "Flight Detail — Flight Tracker", +}; + +export default async function FlightDetailPage({ + params, +}: { + params: Promise<{ id: string }>; +}) { + const { id } = await params; + return ; +} diff --git a/apps/web/src/app/page.tsx b/apps/web/src/app/page.tsx index 248b352..41283e3 100644 --- a/apps/web/src/app/page.tsx +++ b/apps/web/src/app/page.tsx @@ -1,4 +1,5 @@ import { MapLoader } from "@/components/map/MapLoader"; +import { AltitudeLegend } from "@/components/map/AltitudeLegend"; import { TopBar } from "@/components/ui/TopBar"; import { FlightSidebar } from "@/components/ui/FlightSidebar"; import { FlightDetailPanel } from "@/components/ui/FlightDetailPanel"; @@ -9,6 +10,7 @@ export default function Home() {
+ diff --git a/apps/web/src/components/map/AltitudeLegend.tsx b/apps/web/src/components/map/AltitudeLegend.tsx new file mode 100644 index 0000000..9910220 --- /dev/null +++ b/apps/web/src/components/map/AltitudeLegend.tsx @@ -0,0 +1,56 @@ +"use client"; + +import { useState } from "react"; +import { ALTITUDE_BANDS } from "@flight-tracker/config"; + +export function AltitudeLegend() { + const [collapsed, setCollapsed] = useState(false); + + return ( +
+ + + {!collapsed && ( +
+ {[...ALTITUDE_BANDS].reverse().map((band, i) => ( +
+ + + {band.label === "Ground" + ? "Ground" + : band.label === "45K+" + ? "45,000+ ft" + : `${band.label.replace("-", "–").replace("K", ",000")} ft`} + +
+ ))} +
+ )} +
+ ); +} diff --git a/apps/web/src/components/map/FlightMap.tsx b/apps/web/src/components/map/FlightMap.tsx index 4369929..fbf9e2c 100644 --- a/apps/web/src/components/map/FlightMap.tsx +++ b/apps/web/src/components/map/FlightMap.tsx @@ -1,6 +1,6 @@ "use client"; -import { useEffect } from "react"; +import { useEffect, useRef } from "react"; import { MapContainer, TileLayer, @@ -15,10 +15,20 @@ import { getTileLayers, MAP_DEFAULTS } from "@flight-tracker/config"; import { useMapStore } from "@/stores/map-store"; import { FlightMarkers, getMarkerClicked } from "./FlightMarkers"; import { AirportMarkers } from "./AirportMarkers"; +import { FlightTrail } from "./FlightTrail"; + +function updateUrlState(lat: number, lng: number, z: number) { + const url = new URL(window.location.href); + url.searchParams.set("lat", lat.toFixed(4)); + url.searchParams.set("lng", lng.toFixed(4)); + url.searchParams.set("zoom", String(z)); + window.history.replaceState(null, "", url.toString()); +} function MapEventHandler() { const { setCenter, setZoom, setBounds, selectFlight } = useMapStore(); const searchParams = useSearchParams(); + const initialFlyDone = useRef(false); const map = useMapEvents({ moveend(e) { @@ -32,9 +42,13 @@ function MapEventHandler() { east: b.getEast(), west: b.getWest(), }); + updateUrlState(c.lat, c.lng, m.getZoom()); }, zoomend(e) { - setZoom(e.target.getZoom()); + const z = e.target.getZoom(); + setZoom(z); + const c = e.target.getCenter(); + updateUrlState(c.lat, c.lng, z); }, click() { // Skip deselect if a marker was just clicked (both fire on same map click) @@ -55,12 +69,14 @@ function MapEventHandler() { }); }, [map, setBounds]); - // Fly to coordinates from URL params (e.g. /?lat=10.81&lng=106.66&zoom=12) + // Fly to coordinates from URL params on initial load only useEffect(() => { + if (initialFlyDone.current) return; const lat = searchParams.get("lat"); const lng = searchParams.get("lng"); const z = searchParams.get("zoom"); if (lat && lng) { + initialFlyDone.current = true; map.flyTo( [parseFloat(lat), parseFloat(lng)], z ? parseInt(z, 10) : 12, @@ -105,6 +121,7 @@ export default function FlightMap() { + diff --git a/apps/web/src/components/map/FlightTrail.tsx b/apps/web/src/components/map/FlightTrail.tsx new file mode 100644 index 0000000..b17f07c --- /dev/null +++ b/apps/web/src/components/map/FlightTrail.tsx @@ -0,0 +1,83 @@ +"use client"; + +import { useEffect, useRef } from "react"; +import { useMap } from "react-leaflet"; +import L from "leaflet"; +import { useMapStore } from "@/stores/map-store"; + +// Project a point along a bearing from a given lat/lng (Haversine forward) +function projectPoint( + lat: number, + lng: number, + bearingDeg: number, + distanceKm: number +): [number, number] { + const R = 6371; // Earth radius in km + const d = distanceKm / R; + const brng = (bearingDeg * Math.PI) / 180; + const lat1 = (lat * Math.PI) / 180; + const lng1 = (lng * Math.PI) / 180; + + const lat2 = Math.asin( + Math.sin(lat1) * Math.cos(d) + Math.cos(lat1) * Math.sin(d) * Math.cos(brng) + ); + const lng2 = + lng1 + + Math.atan2( + Math.sin(brng) * Math.sin(d) * Math.cos(lat1), + Math.cos(d) - Math.sin(lat1) * Math.sin(lat2) + ); + + return [(lat2 * 180) / Math.PI, (lng2 * 180) / Math.PI]; +} + +export function FlightTrail() { + const map = useMap(); + const selectedFlight = useMapStore((s) => s.selectedFlight); + const trailRef = useRef(null); + + useEffect(() => { + if (trailRef.current) { + trailRef.current.remove(); + trailRef.current = null; + } + + if (!selectedFlight || !map) return; + + const { latitude, longitude, direction } = selectedFlight.geography; + if (latitude == null || longitude == null || direction === 0) return; + + // Don't show trail for grounded aircraft + if (selectedFlight.speed.isGround === 1) return; + + // Project ahead: use speed to estimate ~10 min of travel, min 50km max 300km + const speedKmh = selectedFlight.speed.horizontal * 3.6; // m/s to km/h + const distanceKm = Math.min(300, Math.max(50, (speedKmh * 10) / 60)); + + const ahead = projectPoint(latitude, longitude, direction, distanceKm); + + // Draw a dashed line from current position along the heading + trailRef.current = L.polyline( + [ + [latitude, longitude], + ahead, + ], + { + color: "#38bdf8", + weight: 2, + opacity: 0.6, + dashArray: "6, 8", + interactive: false, + } + ).addTo(map); + + return () => { + if (trailRef.current) { + trailRef.current.remove(); + trailRef.current = null; + } + }; + }, [map, selectedFlight]); + + return null; +} diff --git a/apps/web/src/components/ui/FlightDetailPanel.tsx b/apps/web/src/components/ui/FlightDetailPanel.tsx index 63120d5..c200109 100644 --- a/apps/web/src/components/ui/FlightDetailPanel.tsx +++ b/apps/web/src/components/ui/FlightDetailPanel.tsx @@ -1,6 +1,7 @@ "use client"; import { useEffect, useState } from "react"; +import Link from "next/link"; import { useMapStore } from "@/stores/map-store"; import { ALTITUDE_BANDS, getAltitudeBand } from "@flight-tracker/config"; @@ -173,6 +174,15 @@ export function FlightDetailPanel() { )} + +
+ + Open full detail page → + +
)}
diff --git a/apps/web/src/components/ui/SmartSearch.tsx b/apps/web/src/components/ui/SmartSearch.tsx new file mode 100644 index 0000000..8294da1 --- /dev/null +++ b/apps/web/src/components/ui/SmartSearch.tsx @@ -0,0 +1,149 @@ +"use client"; + +import { useState, useMemo, useRef, useEffect } from "react"; +import { useRouter } from "next/navigation"; +import { useFilteredFlights } from "@/hooks/useFilteredFlights"; +import { useAirports } from "@/hooks/useFlights"; +import { useMapStore } from "@/stores/map-store"; +import type { FlightData } from "@flight-tracker/types"; +import type { AirportData } from "@flight-tracker/types"; + +interface SearchResult { + type: "flight" | "airport"; + label: string; + sublabel: string; + data: FlightData | AirportData; +} + +export function SmartSearch() { + const [query, setQuery] = useState(""); + const [open, setOpen] = useState(false); + const searchQuery = useMapStore((s) => s.searchQuery); + const setSearchQuery = useMapStore((s) => s.setSearchQuery); + const selectFlight = useMapStore((s) => s.selectFlight); + const { data: flights } = useFilteredFlights(); + const { data: airports } = useAirports(); + const router = useRouter(); + const wrapperRef = useRef(null); + + // Close dropdown on click outside + useEffect(() => { + function handleClick(e: MouseEvent) { + if (wrapperRef.current && !wrapperRef.current.contains(e.target as Node)) { + setOpen(false); + } + } + document.addEventListener("mousedown", handleClick); + return () => document.removeEventListener("mousedown", handleClick); + }, []); + + const results = useMemo(() => { + const q = query.trim().toLowerCase(); + if (!q || q.length < 2) return []; + + const items: SearchResult[] = []; + + // Search flights by callsign / icao24 + if (flights) { + for (const f of flights) { + if (items.length >= 5) break; + const callsign = (f.flight.icaoNumber || f.flight.iataNumber || f.aircraft.icao24).toLowerCase(); + const icao24 = f.aircraft.icao24.toLowerCase(); + if (callsign.includes(q) || icao24.includes(q)) { + const altFt = Math.round(f.geography.altitude * 3.28084); + items.push({ + type: "flight", + label: callsign.toUpperCase(), + sublabel: `${altFt.toLocaleString()} ft · ${f.originCountry || ""}`, + data: f, + }); + } + } + } + + // Search airports by IATA, ICAO, name + if (airports) { + let count = 0; + for (const a of airports) { + if (count >= 5) break; + if ( + a.codeIataAirport?.toLowerCase().includes(q) || + a.codeIcaoAirport?.toLowerCase().includes(q) || + a.nameAirport?.toLowerCase().includes(q) + ) { + items.push({ + type: "airport", + label: `${a.codeIataAirport} — ${a.nameAirport}`, + sublabel: `${a.nameCountry || ""} · ${a.codeIcaoAirport || ""}`, + data: a, + }); + count++; + } + } + } + + return items; + }, [query, flights, airports]); + + function handleSelect(result: SearchResult) { + setOpen(false); + setQuery(""); + + if (result.type === "flight") { + const flight = result.data as FlightData; + selectFlight(flight); + setSearchQuery( + flight.flight.icaoNumber || flight.flight.iataNumber || flight.aircraft.icao24 + ); + } else { + const airport = result.data as AirportData; + router.push(`/airport/${airport.codeIataAirport}`); + } + } + + return ( +
+ { + setQuery(e.target.value); + setSearchQuery(e.target.value); + setOpen(true); + }} + onFocus={() => query.length >= 2 && setOpen(true)} + placeholder="Search flights, airports..." + className="w-full h-8 px-3 rounded bg-slate-800/80 border border-slate-600/50 text-sm text-slate-200 placeholder-slate-500 outline-none focus:border-sky-500/50 transition-colors" + /> + + {open && results.length > 0 && ( +
+ {results.map((r, i) => ( + + ))} +
+ )} +
+ ); +} diff --git a/apps/web/src/components/ui/TopBar.tsx b/apps/web/src/components/ui/TopBar.tsx index 4fa8776..45e996f 100644 --- a/apps/web/src/components/ui/TopBar.tsx +++ b/apps/web/src/components/ui/TopBar.tsx @@ -3,11 +3,9 @@ import { useEffect, useState } from "react"; import Link from "next/link"; import { usePathname } from "next/navigation"; -import { useMapStore } from "@/stores/map-store"; +import { SmartSearch } from "./SmartSearch"; export function TopBar() { - const searchQuery = useMapStore((s) => s.searchQuery); - const setSearchQuery = useMapStore((s) => s.setSearchQuery); const [utc, setUtc] = useState(""); const pathname = usePathname(); const isMapPage = pathname === "/"; @@ -71,18 +69,8 @@ export function TopBar() { - {/* Search (map page only) */} - {isMapPage && ( -
- setSearchQuery(e.target.value)} - placeholder="Search flights..." - className="w-full h-8 px-3 rounded bg-slate-800/80 border border-slate-600/50 text-sm text-slate-200 placeholder-slate-500 outline-none focus:border-sky-500/50 transition-colors" - /> -
- )} + {/* Smart search (map page only) */} + {isMapPage && } {/* Spacer */}
diff --git a/docs/flight-tracker-plan.md b/docs/flight-tracker-plan.md index 6065b63..22f61e2 100644 --- a/docs/flight-tracker-plan.md +++ b/docs/flight-tracker-plan.md @@ -258,6 +258,14 @@ From `/Users/nhatvu148/Work/my-apps/flight-tracker/`: - [ ] `/airport/[code]` page — airport info, current departures/arrivals - [ ] Header with nav: Map, Search, Airports, Airlines +### Week 3.5: Distance measurement tool +- [ ] **Aircraft → Airport distance**: when a flight is selected, clicking an airport shows distance + ETA based on current ground speed +- [ ] **Airport → Airport distance**: measure great-circle route distance between two airports +- [ ] **Aircraft → Aircraft distance**: separation distance between two selected flights (niche, for enthusiasts) +- [ ] Visual: dashed line on map between the two points with distance label (km/nm) +- [ ] Uses `L.latLng.distanceTo()` + `L.polyline` for the connecting line +- [ ] Priority: Aircraft→Airport first (highest user value), others later + ### Week 4: Auth + saved flights - [ ] NextAuth setup (Google OAuth, same as Han Nom Dict) - [ ] DB schema: users, saved_flights, tracked_routes @@ -294,11 +302,25 @@ From `/Users/nhatvu148/Work/my-apps/flight-tracker/`: - Output: "Low/Medium/High delay risk" with explanation - [ ] `DelayPredictor.tsx` — visual indicator on flight detail page -### Week 7: Premium features + Stripe +### Week 7: AI flight cost estimation + Premium features + Stripe +- [ ] **AI-powered flight cost estimation** (unique differentiator — no competitor combines tracking + price AI): + - [ ] Price data service: integrate Amadeus Self-Service API or Tequila (Kiwi.com) API for fare lookups + - [ ] `price.service.ts` — query flight prices by route, date range, cabin class + - [ ] `price.routes.ts` — `GET /api/prices/search` (route + dates), `GET /api/prices/trends` (historical) + - [ ] Claude tool-use integration: AI can call price APIs as tools to answer user queries + - [ ] `FlightPricePanel.tsx` — price trend chart (sparkline of last 30 days) on flight/route detail + - [ ] AI assistant queries: + - "Should I buy now or wait?" — analyze price trend + seasonality for a route + - "Cheapest day to fly SFO→SGN in March?" — compare fares across dates + - "Alternative routes that are cheaper?" — suggest nearby airports or indirect flights + - "Is this flight price good?" — compare against historical average for the route + - [ ] Price alerts: notify when fare drops below user-set threshold (premium feature) + - [ ] Affiliate integration: "Book this flight" links to Skyscanner/Kiwi (revenue share) - [ ] Stripe integration (same pattern as standard SaaS) -- [ ] Free tier: 3 tracked flights, 5 AI queries/day, ads +- [ ] Free tier: 3 tracked flights, 5 AI queries/day, 1 price check/day, ads - [ ] Premium ($6.99/mo or $59/yr): - Unlimited tracking + AI queries + - Unlimited price checks + price alerts - Delay predictions - Price alerts (via affiliate links) - Ad-free From 002c21caccf50fff9b251c55482615cd881778f2 Mon Sep 17 00:00:00 2001 From: nhatvu148 Date: Sun, 22 Feb 2026 20:59:52 +0700 Subject: [PATCH 13/14] =?UTF-8?q?changed=20API=20port=20from=205001=20?= =?UTF-8?q?=E2=86=92=205005?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.example | 2 +- packages/api-client/src/index.ts | 4 ++-- packages/config/src/index.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.env.example b/.env.example index 365dc74..5eded0c 100644 --- a/.env.example +++ b/.env.example @@ -5,7 +5,7 @@ FLIGHTAWARE_API_KEY=your-key-here NEXT_PUBLIC_MAPTILER_TOKEN=your-token-here # API URL (used by web app) -NEXT_PUBLIC_API_URL=http://localhost:5001 +NEXT_PUBLIC_API_URL=http://localhost:5005 # Database (for future use) DATABASE_URL=postgresql://postgres:postgres@localhost:5432/flight_tracker diff --git a/packages/api-client/src/index.ts b/packages/api-client/src/index.ts index 751b014..8bc55d6 100644 --- a/packages/api-client/src/index.ts +++ b/packages/api-client/src/index.ts @@ -2,9 +2,9 @@ import type { FlightData, AirportData } from "@flight-tracker/types"; const getBaseUrl = () => { if (typeof window !== "undefined") { - return process.env.NEXT_PUBLIC_API_URL ?? "http://localhost:5001"; + return process.env.NEXT_PUBLIC_API_URL ?? "http://localhost:5005"; } - return process.env.API_URL ?? "http://localhost:5001"; + return process.env.API_URL ?? "http://localhost:5005"; }; export async function getFlights( diff --git a/packages/config/src/index.ts b/packages/config/src/index.ts index ecffc18..0a6858e 100644 --- a/packages/config/src/index.ts +++ b/packages/config/src/index.ts @@ -95,7 +95,7 @@ export function getAltitudeBand(altitudeMeters: number, isGround: boolean): numb } export const API_CONFIG = { - defaultPort: 5001, + defaultPort: 5005, flightCacheTTL: 30, // seconds airportCacheTTL: 86400, // 24 hours weatherCacheTTL: 900, // 15 minutes From f807f4e857d7194292cb72dc282f6820eea19424 Mon Sep 17 00:00:00 2001 From: nhatvu148 Date: Sun, 1 Mar 2026 12:14:15 +0700 Subject: [PATCH 14/14] change port 3589 --- apps/web/next-env.d.ts | 2 +- apps/web/package.json | 2 +- packages/config/src/index.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/web/next-env.d.ts b/apps/web/next-env.d.ts index 9edff1c..c4b7818 100644 --- a/apps/web/next-env.d.ts +++ b/apps/web/next-env.d.ts @@ -1,6 +1,6 @@ /// /// -import "./.next/types/routes.d.ts"; +import "./.next/dev/types/routes.d.ts"; // NOTE: This file should not be edited // see https://nextjs.org/docs/app/api-reference/config/typescript for more information. diff --git a/apps/web/package.json b/apps/web/package.json index 798dc97..95e46ae 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "private": true, "scripts": { - "dev": "next dev -p 3000", + "dev": "next dev -p 3589", "build": "next build", "start": "next start", "lint": "next lint", diff --git a/packages/config/src/index.ts b/packages/config/src/index.ts index 0a6858e..9869768 100644 --- a/packages/config/src/index.ts +++ b/packages/config/src/index.ts @@ -102,6 +102,6 @@ export const API_CONFIG = { } as const; export const WEB_CONFIG = { - defaultPort: 3000, + defaultPort: 3589, pollInterval: 30_000, // 30s for live flight updates } as const;